1 /* $Id: capi.c,v 1.1.2.7 2004/04/28 09:48:59 armin Exp $
3 * CAPI 2.0 Interface for Linux
5 * Copyright 1996 by Carsten Paeth <calle@calle.de>
7 * This software may be used and distributed according to the terms
8 * of the GNU General Public License, incorporated herein by reference.
12 #include <linux/module.h>
13 #include <linux/errno.h>
14 #include <linux/kernel.h>
15 #include <linux/major.h>
16 #include <linux/sched.h>
17 #include <linux/slab.h>
18 #include <linux/fcntl.h>
20 #include <linux/signal.h>
21 #include <linux/mutex.h>
23 #include <linux/timer.h>
24 #include <linux/wait.h>
25 #include <linux/tty.h>
26 #include <linux/netdevice.h>
27 #include <linux/ppp_defs.h>
28 #include <linux/ppp-ioctl.h>
29 #include <linux/skbuff.h>
30 #include <linux/proc_fs.h>
31 #include <linux/seq_file.h>
32 #include <linux/poll.h>
33 #include <linux/capi.h>
34 #include <linux/kernelcapi.h>
35 #include <linux/init.h>
36 #include <linux/device.h>
37 #include <linux/moduleparam.h>
38 #include <linux/isdn/capiutil.h>
39 #include <linux/isdn/capicmd.h>
41 MODULE_DESCRIPTION("CAPI4Linux: Userspace /dev/capi20 interface");
42 MODULE_AUTHOR("Carsten Paeth");
43 MODULE_LICENSE("GPL");
45 /* -------- driver information -------------------------------------- */
47 static DEFINE_MUTEX(capi_mutex
);
48 static struct class *capi_class
;
49 static int capi_major
= 68; /* allocated */
51 module_param_named(major
, capi_major
, uint
, 0);
53 #ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
54 #define CAPINC_NR_PORTS 32
55 #define CAPINC_MAX_PORTS 256
57 static int capi_ttyminors
= CAPINC_NR_PORTS
;
59 module_param_named(ttyminors
, capi_ttyminors
, uint
, 0);
60 #endif /* CONFIG_ISDN_CAPI_MIDDLEWARE */
62 /* -------- defines ------------------------------------------------- */
64 #define CAPINC_MAX_RECVQUEUE 10
65 #define CAPINC_MAX_SENDQUEUE 10
66 #define CAPI_MAX_BLKSIZE 2048
68 /* -------- data structures ----------------------------------------- */
74 struct ackqueue_entry
{
75 struct list_head list
;
82 struct capi20_appl
*ap
;
91 struct sk_buff_head inqueue
;
93 struct sk_buff_head outqueue
;
95 struct sk_buff
*outskb
;
99 struct list_head ackqueue
;
105 struct list_head list
;
107 struct capidev
*cdev
;
108 #ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
109 struct capiminor
*minorp
;
110 #endif /* CONFIG_ISDN_CAPI_MIDDLEWARE */
114 struct list_head list
;
115 struct capi20_appl ap
;
119 struct sk_buff_head recvqueue
;
120 wait_queue_head_t recvwait
;
122 struct list_head nccis
;
127 /* -------- global variables ---------------------------------------- */
129 static DEFINE_MUTEX(capidev_list_lock
);
130 static LIST_HEAD(capidev_list
);
132 #ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
134 static DEFINE_SPINLOCK(capiminors_lock
);
135 static struct capiminor
**capiminors
;
137 static struct tty_driver
*capinc_tty_driver
;
139 /* -------- datahandles --------------------------------------------- */
141 static int capiminor_add_ack(struct capiminor
*mp
, u16 datahandle
)
143 struct ackqueue_entry
*n
;
145 n
= kmalloc(sizeof(*n
), GFP_ATOMIC
);
147 printk(KERN_ERR
"capi: alloc datahandle failed\n");
150 n
->datahandle
= datahandle
;
151 INIT_LIST_HEAD(&n
->list
);
152 spin_lock_bh(&mp
->ackqlock
);
153 list_add_tail(&n
->list
, &mp
->ackqueue
);
155 spin_unlock_bh(&mp
->ackqlock
);
159 static int capiminor_del_ack(struct capiminor
*mp
, u16 datahandle
)
161 struct ackqueue_entry
*p
, *tmp
;
163 spin_lock_bh(&mp
->ackqlock
);
164 list_for_each_entry_safe(p
, tmp
, &mp
->ackqueue
, list
) {
165 if (p
->datahandle
== datahandle
) {
168 spin_unlock_bh(&mp
->ackqlock
);
173 spin_unlock_bh(&mp
->ackqlock
);
177 static void capiminor_del_all_ack(struct capiminor
*mp
)
179 struct ackqueue_entry
*p
, *tmp
;
181 list_for_each_entry_safe(p
, tmp
, &mp
->ackqueue
, list
) {
189 /* -------- struct capiminor ---------------------------------------- */
191 static void capiminor_destroy(struct tty_port
*port
)
193 struct capiminor
*mp
= container_of(port
, struct capiminor
, port
);
195 kfree_skb(mp
->outskb
);
196 skb_queue_purge(&mp
->inqueue
);
197 skb_queue_purge(&mp
->outqueue
);
198 capiminor_del_all_ack(mp
);
202 static const struct tty_port_operations capiminor_port_ops
= {
203 .destruct
= capiminor_destroy
,
206 static struct capiminor
*capiminor_alloc(struct capi20_appl
*ap
, u32 ncci
)
208 struct capiminor
*mp
;
212 mp
= kzalloc(sizeof(*mp
), GFP_KERNEL
);
214 printk(KERN_ERR
"capi: can't alloc capiminor\n");
220 INIT_LIST_HEAD(&mp
->ackqueue
);
221 spin_lock_init(&mp
->ackqlock
);
223 skb_queue_head_init(&mp
->inqueue
);
224 skb_queue_head_init(&mp
->outqueue
);
225 spin_lock_init(&mp
->outlock
);
227 tty_port_init(&mp
->port
);
228 mp
->port
.ops
= &capiminor_port_ops
;
230 /* Allocate the least unused minor number. */
231 spin_lock(&capiminors_lock
);
232 for (minor
= 0; minor
< capi_ttyminors
; minor
++)
233 if (!capiminors
[minor
]) {
234 capiminors
[minor
] = mp
;
237 spin_unlock(&capiminors_lock
);
239 if (minor
== capi_ttyminors
) {
240 printk(KERN_NOTICE
"capi: out of minors\n");
246 dev
= tty_port_register_device(&mp
->port
, capinc_tty_driver
, minor
,
254 spin_lock(&capiminors_lock
);
255 capiminors
[minor
] = NULL
;
256 spin_unlock(&capiminors_lock
);
259 tty_port_put(&mp
->port
);
263 static struct capiminor
*capiminor_get(unsigned int minor
)
265 struct capiminor
*mp
;
267 spin_lock(&capiminors_lock
);
268 mp
= capiminors
[minor
];
270 tty_port_get(&mp
->port
);
271 spin_unlock(&capiminors_lock
);
276 static inline void capiminor_put(struct capiminor
*mp
)
278 tty_port_put(&mp
->port
);
281 static void capiminor_free(struct capiminor
*mp
)
283 tty_unregister_device(capinc_tty_driver
, mp
->minor
);
285 spin_lock(&capiminors_lock
);
286 capiminors
[mp
->minor
] = NULL
;
287 spin_unlock(&capiminors_lock
);
292 /* -------- struct capincci ----------------------------------------- */
294 static void capincci_alloc_minor(struct capidev
*cdev
, struct capincci
*np
)
296 if (cdev
->userflags
& CAPIFLAG_HIGHJACKING
)
297 np
->minorp
= capiminor_alloc(&cdev
->ap
, np
->ncci
);
300 static void capincci_free_minor(struct capincci
*np
)
302 struct capiminor
*mp
= np
->minorp
;
303 struct tty_struct
*tty
;
306 tty
= tty_port_tty_get(&mp
->port
);
316 static inline unsigned int capincci_minor_opencount(struct capincci
*np
)
318 struct capiminor
*mp
= np
->minorp
;
319 unsigned int count
= 0;
320 struct tty_struct
*tty
;
323 tty
= tty_port_tty_get(&mp
->port
);
332 #else /* !CONFIG_ISDN_CAPI_MIDDLEWARE */
335 capincci_alloc_minor(struct capidev
*cdev
, struct capincci
*np
) { }
336 static inline void capincci_free_minor(struct capincci
*np
) { }
338 #endif /* !CONFIG_ISDN_CAPI_MIDDLEWARE */
340 static struct capincci
*capincci_alloc(struct capidev
*cdev
, u32 ncci
)
344 np
= kzalloc(sizeof(*np
), GFP_KERNEL
);
350 capincci_alloc_minor(cdev
, np
);
352 list_add_tail(&np
->list
, &cdev
->nccis
);
357 static void capincci_free(struct capidev
*cdev
, u32 ncci
)
359 struct capincci
*np
, *tmp
;
361 list_for_each_entry_safe(np
, tmp
, &cdev
->nccis
, list
)
362 if (ncci
== 0xffffffff || np
->ncci
== ncci
) {
363 capincci_free_minor(np
);
369 #ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
370 static struct capincci
*capincci_find(struct capidev
*cdev
, u32 ncci
)
374 list_for_each_entry(np
, &cdev
->nccis
, list
)
375 if (np
->ncci
== ncci
)
380 /* -------- handle data queue --------------------------------------- */
382 static struct sk_buff
*
383 gen_data_b3_resp_for(struct capiminor
*mp
, struct sk_buff
*skb
)
385 struct sk_buff
*nskb
;
386 nskb
= alloc_skb(CAPI_DATA_B3_RESP_LEN
, GFP_KERNEL
);
388 u16 datahandle
= CAPIMSG_U16(skb
->data
, CAPIMSG_BASELEN
+ 4 + 4 + 2);
389 unsigned char *s
= skb_put(nskb
, CAPI_DATA_B3_RESP_LEN
);
390 capimsg_setu16(s
, 0, CAPI_DATA_B3_RESP_LEN
);
391 capimsg_setu16(s
, 2, mp
->ap
->applid
);
392 capimsg_setu8 (s
, 4, CAPI_DATA_B3
);
393 capimsg_setu8 (s
, 5, CAPI_RESP
);
394 capimsg_setu16(s
, 6, atomic_inc_return(&mp
->msgid
));
395 capimsg_setu32(s
, 8, mp
->ncci
);
396 capimsg_setu16(s
, 12, datahandle
);
401 static int handle_recv_skb(struct capiminor
*mp
, struct sk_buff
*skb
)
403 unsigned int datalen
= skb
->len
- CAPIMSG_LEN(skb
->data
);
404 struct tty_struct
*tty
;
405 struct sk_buff
*nskb
;
406 u16 errcode
, datahandle
;
407 struct tty_ldisc
*ld
;
410 tty
= tty_port_tty_get(&mp
->port
);
412 pr_debug("capi: currently no receiver\n");
416 ld
= tty_ldisc_ref(tty
);
418 /* fatal error, do not requeue */
424 if (ld
->ops
->receive_buf
== NULL
) {
425 pr_debug("capi: ldisc has no receive_buf function\n");
426 /* fatal error, do not requeue */
430 pr_debug("capi: recv tty throttled\n");
434 if (tty
->receive_room
< datalen
) {
435 pr_debug("capi: no room in tty\n");
439 nskb
= gen_data_b3_resp_for(mp
, skb
);
441 printk(KERN_ERR
"capi: gen_data_b3_resp failed\n");
445 datahandle
= CAPIMSG_U16(skb
->data
, CAPIMSG_BASELEN
+ 4);
447 errcode
= capi20_put_message(mp
->ap
, nskb
);
449 if (errcode
== CAPI_NOERROR
) {
450 skb_pull(skb
, CAPIMSG_LEN(skb
->data
));
451 pr_debug("capi: DATA_B3_RESP %u len=%d => ldisc\n",
452 datahandle
, skb
->len
);
453 ld
->ops
->receive_buf(tty
, skb
->data
, NULL
, skb
->len
);
455 printk(KERN_ERR
"capi: send DATA_B3_RESP failed=%x\n",
459 if (errcode
== CAPI_SENDQUEUEFULL
)
475 static void handle_minor_recv(struct capiminor
*mp
)
479 while ((skb
= skb_dequeue(&mp
->inqueue
)) != NULL
)
480 if (handle_recv_skb(mp
, skb
) < 0) {
481 skb_queue_head(&mp
->inqueue
, skb
);
486 static void handle_minor_send(struct capiminor
*mp
)
488 struct tty_struct
*tty
;
494 tty
= tty_port_tty_get(&mp
->port
);
498 if (mp
->ttyoutstop
) {
499 pr_debug("capi: send: tty stopped\n");
505 spin_lock_bh(&mp
->outlock
);
506 skb
= __skb_dequeue(&mp
->outqueue
);
508 spin_unlock_bh(&mp
->outlock
);
513 spin_unlock_bh(&mp
->outlock
);
515 datahandle
= atomic_inc_return(&mp
->datahandle
);
516 skb_push(skb
, CAPI_DATA_B3_REQ_LEN
);
517 memset(skb
->data
, 0, CAPI_DATA_B3_REQ_LEN
);
518 capimsg_setu16(skb
->data
, 0, CAPI_DATA_B3_REQ_LEN
);
519 capimsg_setu16(skb
->data
, 2, mp
->ap
->applid
);
520 capimsg_setu8 (skb
->data
, 4, CAPI_DATA_B3
);
521 capimsg_setu8 (skb
->data
, 5, CAPI_REQ
);
522 capimsg_setu16(skb
->data
, 6, atomic_inc_return(&mp
->msgid
));
523 capimsg_setu32(skb
->data
, 8, mp
->ncci
); /* NCCI */
524 capimsg_setu32(skb
->data
, 12, (u32
)(long)skb
->data
);/* Data32 */
525 capimsg_setu16(skb
->data
, 16, len
); /* Data length */
526 capimsg_setu16(skb
->data
, 18, datahandle
);
527 capimsg_setu16(skb
->data
, 20, 0); /* Flags */
529 if (capiminor_add_ack(mp
, datahandle
) < 0) {
530 skb_pull(skb
, CAPI_DATA_B3_REQ_LEN
);
532 spin_lock_bh(&mp
->outlock
);
533 __skb_queue_head(&mp
->outqueue
, skb
);
535 spin_unlock_bh(&mp
->outlock
);
539 errcode
= capi20_put_message(mp
->ap
, skb
);
540 if (errcode
== CAPI_NOERROR
) {
541 pr_debug("capi: DATA_B3_REQ %u len=%u\n",
545 capiminor_del_ack(mp
, datahandle
);
547 if (errcode
== CAPI_SENDQUEUEFULL
) {
548 skb_pull(skb
, CAPI_DATA_B3_REQ_LEN
);
550 spin_lock_bh(&mp
->outlock
);
551 __skb_queue_head(&mp
->outqueue
, skb
);
553 spin_unlock_bh(&mp
->outlock
);
558 /* ups, drop packet */
559 printk(KERN_ERR
"capi: put_message = %x\n", errcode
);
565 #endif /* CONFIG_ISDN_CAPI_MIDDLEWARE */
566 /* -------- function called by lower level -------------------------- */
568 static void capi_recv_message(struct capi20_appl
*ap
, struct sk_buff
*skb
)
570 struct capidev
*cdev
= ap
->private;
571 #ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
572 struct capiminor
*mp
;
575 #endif /* CONFIG_ISDN_CAPI_MIDDLEWARE */
577 mutex_lock(&cdev
->lock
);
579 if (CAPIMSG_CMD(skb
->data
) == CAPI_CONNECT_B3_CONF
) {
580 u16 info
= CAPIMSG_U16(skb
->data
, 12); // Info field
581 if ((info
& 0xff00) == 0)
582 capincci_alloc(cdev
, CAPIMSG_NCCI(skb
->data
));
584 if (CAPIMSG_CMD(skb
->data
) == CAPI_CONNECT_B3_IND
)
585 capincci_alloc(cdev
, CAPIMSG_NCCI(skb
->data
));
587 if (CAPIMSG_COMMAND(skb
->data
) != CAPI_DATA_B3
) {
588 skb_queue_tail(&cdev
->recvqueue
, skb
);
589 wake_up_interruptible(&cdev
->recvwait
);
593 #ifndef CONFIG_ISDN_CAPI_MIDDLEWARE
594 skb_queue_tail(&cdev
->recvqueue
, skb
);
595 wake_up_interruptible(&cdev
->recvwait
);
597 #else /* CONFIG_ISDN_CAPI_MIDDLEWARE */
599 np
= capincci_find(cdev
, CAPIMSG_CONTROL(skb
->data
));
601 printk(KERN_ERR
"BUG: capi_signal: ncci not found\n");
602 skb_queue_tail(&cdev
->recvqueue
, skb
);
603 wake_up_interruptible(&cdev
->recvwait
);
609 skb_queue_tail(&cdev
->recvqueue
, skb
);
610 wake_up_interruptible(&cdev
->recvwait
);
613 if (CAPIMSG_SUBCOMMAND(skb
->data
) == CAPI_IND
) {
614 datahandle
= CAPIMSG_U16(skb
->data
, CAPIMSG_BASELEN
+ 4 + 4 + 2);
615 pr_debug("capi_signal: DATA_B3_IND %u len=%d\n",
616 datahandle
, skb
->len
-CAPIMSG_LEN(skb
->data
));
617 skb_queue_tail(&mp
->inqueue
, skb
);
619 handle_minor_recv(mp
);
621 } else if (CAPIMSG_SUBCOMMAND(skb
->data
) == CAPI_CONF
) {
623 datahandle
= CAPIMSG_U16(skb
->data
, CAPIMSG_BASELEN
+ 4);
624 pr_debug("capi_signal: DATA_B3_CONF %u 0x%x\n",
626 CAPIMSG_U16(skb
->data
, CAPIMSG_BASELEN
+ 4 + 2));
628 capiminor_del_ack(mp
, datahandle
);
629 tty_port_tty_wakeup(&mp
->port
);
630 handle_minor_send(mp
);
633 /* ups, let capi application handle it :-) */
634 skb_queue_tail(&cdev
->recvqueue
, skb
);
635 wake_up_interruptible(&cdev
->recvwait
);
637 #endif /* CONFIG_ISDN_CAPI_MIDDLEWARE */
640 mutex_unlock(&cdev
->lock
);
643 /* -------- file_operations for capidev ----------------------------- */
646 capi_read(struct file
*file
, char __user
*buf
, size_t count
, loff_t
*ppos
)
648 struct capidev
*cdev
= file
->private_data
;
653 if (!cdev
->ap
.applid
)
656 skb
= skb_dequeue(&cdev
->recvqueue
);
658 if (file
->f_flags
& O_NONBLOCK
)
660 err
= wait_event_interruptible(cdev
->recvwait
,
661 (skb
= skb_dequeue(&cdev
->recvqueue
)));
665 if (skb
->len
> count
) {
666 skb_queue_head(&cdev
->recvqueue
, skb
);
669 if (copy_to_user(buf
, skb
->data
, skb
->len
)) {
670 skb_queue_head(&cdev
->recvqueue
, skb
);
681 capi_write(struct file
*file
, const char __user
*buf
, size_t count
, loff_t
*ppos
)
683 struct capidev
*cdev
= file
->private_data
;
687 if (!cdev
->ap
.applid
)
690 skb
= alloc_skb(count
, GFP_USER
);
694 if (copy_from_user(skb_put(skb
, count
), buf
, count
)) {
698 mlen
= CAPIMSG_LEN(skb
->data
);
699 if (CAPIMSG_CMD(skb
->data
) == CAPI_DATA_B3_REQ
) {
700 if ((size_t)(mlen
+ CAPIMSG_DATALEN(skb
->data
)) != count
) {
710 CAPIMSG_SETAPPID(skb
->data
, cdev
->ap
.applid
);
712 if (CAPIMSG_CMD(skb
->data
) == CAPI_DISCONNECT_B3_RESP
) {
713 mutex_lock(&cdev
->lock
);
714 capincci_free(cdev
, CAPIMSG_NCCI(skb
->data
));
715 mutex_unlock(&cdev
->lock
);
718 cdev
->errcode
= capi20_put_message(&cdev
->ap
, skb
);
728 capi_poll(struct file
*file
, poll_table
*wait
)
730 struct capidev
*cdev
= file
->private_data
;
731 unsigned int mask
= 0;
733 if (!cdev
->ap
.applid
)
736 poll_wait(file
, &(cdev
->recvwait
), wait
);
737 mask
= POLLOUT
| POLLWRNORM
;
738 if (!skb_queue_empty(&cdev
->recvqueue
))
739 mask
|= POLLIN
| POLLRDNORM
;
744 capi_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
746 struct capidev
*cdev
= file
->private_data
;
747 capi_ioctl_struct data
;
748 int retval
= -EINVAL
;
749 void __user
*argp
= (void __user
*)arg
;
753 mutex_lock(&cdev
->lock
);
755 if (cdev
->ap
.applid
) {
759 if (copy_from_user(&cdev
->ap
.rparam
, argp
,
760 sizeof(struct capi_register_params
))) {
764 cdev
->ap
.private = cdev
;
765 cdev
->ap
.recv_message
= capi_recv_message
;
766 cdev
->errcode
= capi20_register(&cdev
->ap
);
767 retval
= (int)cdev
->ap
.applid
;
774 mutex_unlock(&cdev
->lock
);
777 case CAPI_GET_VERSION
:
778 if (copy_from_user(&data
.contr
, argp
,
781 cdev
->errcode
= capi20_get_version(data
.contr
, &data
.version
);
784 if (copy_to_user(argp
, &data
.version
,
785 sizeof(data
.version
)))
789 case CAPI_GET_SERIAL
:
790 if (copy_from_user(&data
.contr
, argp
,
793 cdev
->errcode
= capi20_get_serial(data
.contr
, data
.serial
);
796 if (copy_to_user(argp
, data
.serial
,
797 sizeof(data
.serial
)))
801 case CAPI_GET_PROFILE
:
802 if (copy_from_user(&data
.contr
, argp
,
806 if (data
.contr
== 0) {
807 cdev
->errcode
= capi20_get_profile(data
.contr
, &data
.profile
);
811 retval
= copy_to_user(argp
,
812 &data
.profile
.ncontroller
,
813 sizeof(data
.profile
.ncontroller
));
816 cdev
->errcode
= capi20_get_profile(data
.contr
, &data
.profile
);
820 retval
= copy_to_user(argp
, &data
.profile
,
821 sizeof(data
.profile
));
827 case CAPI_GET_MANUFACTURER
:
828 if (copy_from_user(&data
.contr
, argp
,
831 cdev
->errcode
= capi20_get_manufacturer(data
.contr
, data
.manufacturer
);
835 if (copy_to_user(argp
, data
.manufacturer
,
836 sizeof(data
.manufacturer
)))
841 case CAPI_GET_ERRCODE
:
842 data
.errcode
= cdev
->errcode
;
843 cdev
->errcode
= CAPI_NOERROR
;
845 if (copy_to_user(argp
, &data
.errcode
,
846 sizeof(data
.errcode
)))
852 if (capi20_isinstalled() == CAPI_NOERROR
)
856 case CAPI_MANUFACTURER_CMD
: {
857 struct capi_manufacturer_cmd mcmd
;
858 if (!capable(CAP_SYS_ADMIN
))
860 if (copy_from_user(&mcmd
, argp
, sizeof(mcmd
)))
862 return capi20_manufacturer(mcmd
.cmd
, mcmd
.data
);
865 case CAPI_CLR_FLAGS
: {
868 if (copy_from_user(&userflags
, argp
, sizeof(userflags
)))
871 mutex_lock(&cdev
->lock
);
872 if (cmd
== CAPI_SET_FLAGS
)
873 cdev
->userflags
|= userflags
;
875 cdev
->userflags
&= ~userflags
;
876 mutex_unlock(&cdev
->lock
);
880 if (copy_to_user(argp
, &cdev
->userflags
,
881 sizeof(cdev
->userflags
)))
885 #ifndef CONFIG_ISDN_CAPI_MIDDLEWARE
886 case CAPI_NCCI_OPENCOUNT
:
889 #else /* CONFIG_ISDN_CAPI_MIDDLEWARE */
890 case CAPI_NCCI_OPENCOUNT
: {
891 struct capincci
*nccip
;
895 if (copy_from_user(&ncci
, argp
, sizeof(ncci
)))
898 mutex_lock(&cdev
->lock
);
899 nccip
= capincci_find(cdev
, (u32
)ncci
);
901 count
= capincci_minor_opencount(nccip
);
902 mutex_unlock(&cdev
->lock
);
906 case CAPI_NCCI_GETUNIT
: {
907 struct capincci
*nccip
;
908 struct capiminor
*mp
;
912 if (copy_from_user(&ncci
, argp
, sizeof(ncci
)))
915 mutex_lock(&cdev
->lock
);
916 nccip
= capincci_find(cdev
, (u32
)ncci
);
922 mutex_unlock(&cdev
->lock
);
925 #endif /* CONFIG_ISDN_CAPI_MIDDLEWARE */
933 capi_unlocked_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
937 mutex_lock(&capi_mutex
);
938 ret
= capi_ioctl(file
, cmd
, arg
);
939 mutex_unlock(&capi_mutex
);
944 static int capi_open(struct inode
*inode
, struct file
*file
)
946 struct capidev
*cdev
;
948 cdev
= kzalloc(sizeof(*cdev
), GFP_KERNEL
);
952 mutex_init(&cdev
->lock
);
953 skb_queue_head_init(&cdev
->recvqueue
);
954 init_waitqueue_head(&cdev
->recvwait
);
955 INIT_LIST_HEAD(&cdev
->nccis
);
956 file
->private_data
= cdev
;
958 mutex_lock(&capidev_list_lock
);
959 list_add_tail(&cdev
->list
, &capidev_list
);
960 mutex_unlock(&capidev_list_lock
);
962 return nonseekable_open(inode
, file
);
965 static int capi_release(struct inode
*inode
, struct file
*file
)
967 struct capidev
*cdev
= file
->private_data
;
969 mutex_lock(&capidev_list_lock
);
970 list_del(&cdev
->list
);
971 mutex_unlock(&capidev_list_lock
);
974 capi20_release(&cdev
->ap
);
975 skb_queue_purge(&cdev
->recvqueue
);
976 capincci_free(cdev
, 0xffffffff);
982 static const struct file_operations capi_fops
=
984 .owner
= THIS_MODULE
,
989 .unlocked_ioctl
= capi_unlocked_ioctl
,
991 .release
= capi_release
,
994 #ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
995 /* -------- tty_operations for capincci ----------------------------- */
998 capinc_tty_install(struct tty_driver
*driver
, struct tty_struct
*tty
)
1000 struct capiminor
*mp
= capiminor_get(tty
->index
);
1001 int ret
= tty_standard_install(driver
, tty
);
1004 tty
->driver_data
= mp
;
1010 static void capinc_tty_cleanup(struct tty_struct
*tty
)
1012 struct capiminor
*mp
= tty
->driver_data
;
1013 tty
->driver_data
= NULL
;
1017 static int capinc_tty_open(struct tty_struct
*tty
, struct file
*filp
)
1019 struct capiminor
*mp
= tty
->driver_data
;
1022 err
= tty_port_open(&mp
->port
, tty
, filp
);
1026 handle_minor_recv(mp
);
1030 static void capinc_tty_close(struct tty_struct
*tty
, struct file
*filp
)
1032 struct capiminor
*mp
= tty
->driver_data
;
1034 tty_port_close(&mp
->port
, tty
, filp
);
1037 static int capinc_tty_write(struct tty_struct
*tty
,
1038 const unsigned char *buf
, int count
)
1040 struct capiminor
*mp
= tty
->driver_data
;
1041 struct sk_buff
*skb
;
1043 pr_debug("capinc_tty_write(count=%d)\n", count
);
1045 spin_lock_bh(&mp
->outlock
);
1049 __skb_queue_tail(&mp
->outqueue
, skb
);
1050 mp
->outbytes
+= skb
->len
;
1053 skb
= alloc_skb(CAPI_DATA_B3_REQ_LEN
+ count
, GFP_ATOMIC
);
1055 printk(KERN_ERR
"capinc_tty_write: alloc_skb failed\n");
1056 spin_unlock_bh(&mp
->outlock
);
1060 skb_reserve(skb
, CAPI_DATA_B3_REQ_LEN
);
1061 memcpy(skb_put(skb
, count
), buf
, count
);
1063 __skb_queue_tail(&mp
->outqueue
, skb
);
1064 mp
->outbytes
+= skb
->len
;
1065 spin_unlock_bh(&mp
->outlock
);
1067 handle_minor_send(mp
);
1072 static int capinc_tty_put_char(struct tty_struct
*tty
, unsigned char ch
)
1074 struct capiminor
*mp
= tty
->driver_data
;
1075 bool invoke_send
= false;
1076 struct sk_buff
*skb
;
1079 pr_debug("capinc_put_char(%u)\n", ch
);
1081 spin_lock_bh(&mp
->outlock
);
1084 if (skb_tailroom(skb
) > 0) {
1085 *(skb_put(skb
, 1)) = ch
;
1089 __skb_queue_tail(&mp
->outqueue
, skb
);
1090 mp
->outbytes
+= skb
->len
;
1094 skb
= alloc_skb(CAPI_DATA_B3_REQ_LEN
+ CAPI_MAX_BLKSIZE
, GFP_ATOMIC
);
1096 skb_reserve(skb
, CAPI_DATA_B3_REQ_LEN
);
1097 *(skb_put(skb
, 1)) = ch
;
1100 printk(KERN_ERR
"capinc_put_char: char %u lost\n", ch
);
1105 spin_unlock_bh(&mp
->outlock
);
1108 handle_minor_send(mp
);
1113 static void capinc_tty_flush_chars(struct tty_struct
*tty
)
1115 struct capiminor
*mp
= tty
->driver_data
;
1116 struct sk_buff
*skb
;
1118 pr_debug("capinc_tty_flush_chars\n");
1120 spin_lock_bh(&mp
->outlock
);
1124 __skb_queue_tail(&mp
->outqueue
, skb
);
1125 mp
->outbytes
+= skb
->len
;
1126 spin_unlock_bh(&mp
->outlock
);
1128 handle_minor_send(mp
);
1130 spin_unlock_bh(&mp
->outlock
);
1132 handle_minor_recv(mp
);
1135 static int capinc_tty_write_room(struct tty_struct
*tty
)
1137 struct capiminor
*mp
= tty
->driver_data
;
1140 room
= CAPINC_MAX_SENDQUEUE
-skb_queue_len(&mp
->outqueue
);
1141 room
*= CAPI_MAX_BLKSIZE
;
1142 pr_debug("capinc_tty_write_room = %d\n", room
);
1146 static int capinc_tty_chars_in_buffer(struct tty_struct
*tty
)
1148 struct capiminor
*mp
= tty
->driver_data
;
1150 pr_debug("capinc_tty_chars_in_buffer = %d nack=%d sq=%d rq=%d\n",
1151 mp
->outbytes
, mp
->nack
,
1152 skb_queue_len(&mp
->outqueue
),
1153 skb_queue_len(&mp
->inqueue
));
1154 return mp
->outbytes
;
1157 static int capinc_tty_ioctl(struct tty_struct
*tty
,
1158 unsigned int cmd
, unsigned long arg
)
1160 return -ENOIOCTLCMD
;
1163 static void capinc_tty_set_termios(struct tty_struct
*tty
, struct ktermios
*old
)
1165 pr_debug("capinc_tty_set_termios\n");
1168 static void capinc_tty_throttle(struct tty_struct
*tty
)
1170 struct capiminor
*mp
= tty
->driver_data
;
1171 pr_debug("capinc_tty_throttle\n");
1175 static void capinc_tty_unthrottle(struct tty_struct
*tty
)
1177 struct capiminor
*mp
= tty
->driver_data
;
1179 pr_debug("capinc_tty_unthrottle\n");
1181 handle_minor_recv(mp
);
1184 static void capinc_tty_stop(struct tty_struct
*tty
)
1186 struct capiminor
*mp
= tty
->driver_data
;
1188 pr_debug("capinc_tty_stop\n");
1192 static void capinc_tty_start(struct tty_struct
*tty
)
1194 struct capiminor
*mp
= tty
->driver_data
;
1196 pr_debug("capinc_tty_start\n");
1198 handle_minor_send(mp
);
1201 static void capinc_tty_hangup(struct tty_struct
*tty
)
1203 struct capiminor
*mp
= tty
->driver_data
;
1205 pr_debug("capinc_tty_hangup\n");
1206 tty_port_hangup(&mp
->port
);
1209 static int capinc_tty_break_ctl(struct tty_struct
*tty
, int state
)
1211 pr_debug("capinc_tty_break_ctl(%d)\n", state
);
1215 static void capinc_tty_flush_buffer(struct tty_struct
*tty
)
1217 pr_debug("capinc_tty_flush_buffer\n");
1220 static void capinc_tty_set_ldisc(struct tty_struct
*tty
)
1222 pr_debug("capinc_tty_set_ldisc\n");
1225 static void capinc_tty_send_xchar(struct tty_struct
*tty
, char ch
)
1227 pr_debug("capinc_tty_send_xchar(%d)\n", ch
);
1230 static const struct tty_operations capinc_ops
= {
1231 .open
= capinc_tty_open
,
1232 .close
= capinc_tty_close
,
1233 .write
= capinc_tty_write
,
1234 .put_char
= capinc_tty_put_char
,
1235 .flush_chars
= capinc_tty_flush_chars
,
1236 .write_room
= capinc_tty_write_room
,
1237 .chars_in_buffer
= capinc_tty_chars_in_buffer
,
1238 .ioctl
= capinc_tty_ioctl
,
1239 .set_termios
= capinc_tty_set_termios
,
1240 .throttle
= capinc_tty_throttle
,
1241 .unthrottle
= capinc_tty_unthrottle
,
1242 .stop
= capinc_tty_stop
,
1243 .start
= capinc_tty_start
,
1244 .hangup
= capinc_tty_hangup
,
1245 .break_ctl
= capinc_tty_break_ctl
,
1246 .flush_buffer
= capinc_tty_flush_buffer
,
1247 .set_ldisc
= capinc_tty_set_ldisc
,
1248 .send_xchar
= capinc_tty_send_xchar
,
1249 .install
= capinc_tty_install
,
1250 .cleanup
= capinc_tty_cleanup
,
1253 static int __init
capinc_tty_init(void)
1255 struct tty_driver
*drv
;
1258 if (capi_ttyminors
> CAPINC_MAX_PORTS
)
1259 capi_ttyminors
= CAPINC_MAX_PORTS
;
1260 if (capi_ttyminors
<= 0)
1261 capi_ttyminors
= CAPINC_NR_PORTS
;
1263 capiminors
= kzalloc(sizeof(struct capi_minor
*) * capi_ttyminors
,
1268 drv
= alloc_tty_driver(capi_ttyminors
);
1273 drv
->driver_name
= "capi_nc";
1276 drv
->minor_start
= 0;
1277 drv
->type
= TTY_DRIVER_TYPE_SERIAL
;
1278 drv
->subtype
= SERIAL_TYPE_NORMAL
;
1279 drv
->init_termios
= tty_std_termios
;
1280 drv
->init_termios
.c_iflag
= ICRNL
;
1281 drv
->init_termios
.c_oflag
= OPOST
| ONLCR
;
1282 drv
->init_termios
.c_cflag
= B9600
| CS8
| CREAD
| HUPCL
| CLOCAL
;
1283 drv
->init_termios
.c_lflag
= 0;
1285 TTY_DRIVER_REAL_RAW
| TTY_DRIVER_RESET_TERMIOS
|
1286 TTY_DRIVER_DYNAMIC_DEV
;
1287 tty_set_operations(drv
, &capinc_ops
);
1289 err
= tty_register_driver(drv
);
1291 put_tty_driver(drv
);
1293 printk(KERN_ERR
"Couldn't register capi_nc driver\n");
1296 capinc_tty_driver
= drv
;
1300 static void __exit
capinc_tty_exit(void)
1302 tty_unregister_driver(capinc_tty_driver
);
1303 put_tty_driver(capinc_tty_driver
);
1307 #else /* !CONFIG_ISDN_CAPI_MIDDLEWARE */
1309 static inline int capinc_tty_init(void)
1314 static inline void capinc_tty_exit(void) { }
1316 #endif /* !CONFIG_ISDN_CAPI_MIDDLEWARE */
1318 /* -------- /proc functions ----------------------------------------- */
1321 * /proc/capi/capi20:
1322 * minor applid nrecvctlpkt nrecvdatapkt nsendctlpkt nsenddatapkt
1324 static int capi20_proc_show(struct seq_file
*m
, void *v
)
1326 struct capidev
*cdev
;
1327 struct list_head
*l
;
1329 mutex_lock(&capidev_list_lock
);
1330 list_for_each(l
, &capidev_list
) {
1331 cdev
= list_entry(l
, struct capidev
, list
);
1332 seq_printf(m
, "0 %d %lu %lu %lu %lu\n",
1334 cdev
->ap
.nrecvctlpkt
,
1335 cdev
->ap
.nrecvdatapkt
,
1336 cdev
->ap
.nsentctlpkt
,
1337 cdev
->ap
.nsentdatapkt
);
1339 mutex_unlock(&capidev_list_lock
);
1343 static int capi20_proc_open(struct inode
*inode
, struct file
*file
)
1345 return single_open(file
, capi20_proc_show
, NULL
);
1348 static const struct file_operations capi20_proc_fops
= {
1349 .owner
= THIS_MODULE
,
1350 .open
= capi20_proc_open
,
1352 .llseek
= seq_lseek
,
1353 .release
= single_release
,
1357 * /proc/capi/capi20ncci:
1360 static int capi20ncci_proc_show(struct seq_file
*m
, void *v
)
1362 struct capidev
*cdev
;
1363 struct capincci
*np
;
1365 mutex_lock(&capidev_list_lock
);
1366 list_for_each_entry(cdev
, &capidev_list
, list
) {
1367 mutex_lock(&cdev
->lock
);
1368 list_for_each_entry(np
, &cdev
->nccis
, list
)
1369 seq_printf(m
, "%d 0x%x\n", cdev
->ap
.applid
, np
->ncci
);
1370 mutex_unlock(&cdev
->lock
);
1372 mutex_unlock(&capidev_list_lock
);
1376 static int capi20ncci_proc_open(struct inode
*inode
, struct file
*file
)
1378 return single_open(file
, capi20ncci_proc_show
, NULL
);
1381 static const struct file_operations capi20ncci_proc_fops
= {
1382 .owner
= THIS_MODULE
,
1383 .open
= capi20ncci_proc_open
,
1385 .llseek
= seq_lseek
,
1386 .release
= single_release
,
1389 static void __init
proc_init(void)
1391 proc_create("capi/capi20", 0, NULL
, &capi20_proc_fops
);
1392 proc_create("capi/capi20ncci", 0, NULL
, &capi20ncci_proc_fops
);
1395 static void __exit
proc_exit(void)
1397 remove_proc_entry("capi/capi20", NULL
);
1398 remove_proc_entry("capi/capi20ncci", NULL
);
1401 /* -------- init function and module interface ---------------------- */
1404 static int __init
capi_init(void)
1406 const char *compileinfo
;
1409 major_ret
= register_chrdev(capi_major
, "capi20", &capi_fops
);
1410 if (major_ret
< 0) {
1411 printk(KERN_ERR
"capi20: unable to get major %d\n", capi_major
);
1414 capi_class
= class_create(THIS_MODULE
, "capi");
1415 if (IS_ERR(capi_class
)) {
1416 unregister_chrdev(capi_major
, "capi20");
1417 return PTR_ERR(capi_class
);
1420 device_create(capi_class
, NULL
, MKDEV(capi_major
, 0), NULL
, "capi");
1422 if (capinc_tty_init() < 0) {
1423 device_destroy(capi_class
, MKDEV(capi_major
, 0));
1424 class_destroy(capi_class
);
1425 unregister_chrdev(capi_major
, "capi20");
1431 #ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
1432 compileinfo
= " (middleware)";
1434 compileinfo
= " (no middleware)";
1436 printk(KERN_NOTICE
"CAPI 2.0 started up with major %d%s\n",
1437 capi_major
, compileinfo
);
1442 static void __exit
capi_exit(void)
1446 device_destroy(capi_class
, MKDEV(capi_major
, 0));
1447 class_destroy(capi_class
);
1448 unregister_chrdev(capi_major
, "capi20");
1453 module_init(capi_init
);
1454 module_exit(capi_exit
);