blob: c5c54fab50ebccd77b505045799c398f726ff156 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* $Id: capi.c,v 1.1.2.7 2004/04/28 09:48:59 armin Exp $
2 *
3 * CAPI 2.0 Interface for Linux
4 *
5 * Copyright 1996 by Carsten Paeth <calle@calle.de>
6 *
7 * This software may be used and distributed according to the terms
8 * of the GNU General Public License, incorporated herein by reference.
9 *
10 */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#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>
19#include <linux/fs.h>
20#include <linux/signal.h>
Matthias Kaehlcke9ea6e5d2007-05-08 00:32:43 -070021#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/mm.h>
Jonathan Corbeta237f3b2008-05-16 14:15:33 -060023#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/timer.h>
25#include <linux/wait.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/tty.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/netdevice.h>
28#include <linux/ppp_defs.h>
29#include <linux/if_ppp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/skbuff.h>
31#include <linux/proc_fs.h>
Alexey Dobriyan9a58a802010-01-14 03:10:54 -080032#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/poll.h>
34#include <linux/capi.h>
35#include <linux/kernelcapi.h>
36#include <linux/init.h>
37#include <linux/device.h>
38#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/isdn/capiutil.h>
40#include <linux/isdn/capicmd.h>
Jan Kiszka90926f02010-02-08 10:12:06 +000041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "capifs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044MODULE_DESCRIPTION("CAPI4Linux: Userspace /dev/capi20 interface");
45MODULE_AUTHOR("Carsten Paeth");
46MODULE_LICENSE("GPL");
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#undef _DEBUG_TTYFUNCS /* call to tty_driver */
49#undef _DEBUG_DATAFLOW /* data flow */
50
51/* -------- driver information -------------------------------------- */
52
gregkh@suse.de56b22932005-03-23 10:01:41 -080053static struct class *capi_class;
Adrian Bunk408b6642005-05-01 08:59:29 -070054static int capi_major = 68; /* allocated */
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56module_param_named(major, capi_major, uint, 0);
Jan Kiszka501c87a2010-02-08 10:12:16 +000057
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
Jan Kiszka501c87a2010-02-08 10:12:16 +000059#define CAPINC_NR_PORTS 32
60#define CAPINC_MAX_PORTS 256
61
Jan Kiszka501c87a2010-02-08 10:12:16 +000062static int capi_ttyminors = CAPINC_NR_PORTS;
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064module_param_named(ttyminors, capi_ttyminors, uint, 0);
65#endif /* CONFIG_ISDN_CAPI_MIDDLEWARE */
66
67/* -------- defines ------------------------------------------------- */
68
69#define CAPINC_MAX_RECVQUEUE 10
70#define CAPINC_MAX_SENDQUEUE 10
71#define CAPI_MAX_BLKSIZE 2048
72
73/* -------- data structures ----------------------------------------- */
74
75struct capidev;
76struct capincci;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077struct capiminor;
78
Michael Buesch6aa65472006-06-26 00:25:30 -070079struct datahandle_queue {
80 struct list_head list;
81 u16 datahandle;
82};
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084struct capiminor {
Jan Kiszka0159d542010-02-08 10:12:27 +000085 struct kref kref;
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 unsigned int minor;
Jan Kiszka90926f02010-02-08 10:12:06 +000088 struct dentry *capifs_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 struct capi20_appl *ap;
91 u32 ncci;
92 u16 datahandle;
93 u16 msgid;
94
Jan Kiszkafb4b4882010-02-08 10:12:29 +000095 struct tty_port port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 int ttyinstop;
97 int ttyoutstop;
98 struct sk_buff *ttyskb;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 struct sk_buff_head inqueue;
101 int inbytes;
102 struct sk_buff_head outqueue;
103 int outbytes;
104
105 /* transmit path */
Michael Buesch6aa65472006-06-26 00:25:30 -0700106 struct list_head ackqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 int nack;
Michael Buesch6aa65472006-06-26 00:25:30 -0700108 spinlock_t ackqlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Michael Buesch053b47f2007-02-12 00:53:26 -0800111/* FIXME: The following lock is a sledgehammer-workaround to a
112 * locking issue with the capiminor (and maybe other) data structure(s).
113 * Access to this data is done in a racy way and crashes the machine with
114 * a FritzCard DSL driver; sooner or later. This is a workaround
115 * which trades scalability vs stability, so it doesn't crash the kernel anymore.
116 * The correct (and scalable) fix for the issue seems to require
117 * an API change to the drivers... . */
118static DEFINE_SPINLOCK(workaround_lock);
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120struct capincci {
Jan Kiszka884f5c42010-02-08 10:12:22 +0000121 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 u32 ncci;
123 struct capidev *cdev;
124#ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
125 struct capiminor *minorp;
126#endif /* CONFIG_ISDN_CAPI_MIDDLEWARE */
127};
128
129struct capidev {
130 struct list_head list;
131 struct capi20_appl ap;
132 u16 errcode;
133 unsigned userflags;
134
135 struct sk_buff_head recvqueue;
136 wait_queue_head_t recvwait;
137
Jan Kiszka884f5c42010-02-08 10:12:22 +0000138 struct list_head nccis;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Jan Kiszka05b41492010-02-08 10:12:19 +0000140 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141};
142
143/* -------- global variables ---------------------------------------- */
144
Jan Kiszkab8f433d2010-02-08 10:12:17 +0000145static DEFINE_MUTEX(capidev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146static LIST_HEAD(capidev_list);
147
148#ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
Jan Kiszka501c87a2010-02-08 10:12:16 +0000149
Jan Kiszka3d5d30f2010-02-08 10:12:33 +0000150static DEFINE_SPINLOCK(capiminors_lock);
Jan Kiszka81d17fe2010-02-08 10:12:23 +0000151static struct capiminor **capiminors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Jan Kiszka40fb2d02010-02-08 10:12:25 +0000153static struct tty_driver *capinc_tty_driver;
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155/* -------- datahandles --------------------------------------------- */
156
Jan Kiszka501c87a2010-02-08 10:12:16 +0000157static int capiminor_add_ack(struct capiminor *mp, u16 datahandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Michael Buesch6aa65472006-06-26 00:25:30 -0700159 struct datahandle_queue *n;
160 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 n = kmalloc(sizeof(*n), GFP_ATOMIC);
Michael Buesch6aa65472006-06-26 00:25:30 -0700163 if (unlikely(!n)) {
164 printk(KERN_ERR "capi: alloc datahandle failed\n");
165 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 n->datahandle = datahandle;
Michael Buesch6aa65472006-06-26 00:25:30 -0700168 INIT_LIST_HEAD(&n->list);
169 spin_lock_irqsave(&mp->ackqlock, flags);
170 list_add_tail(&n->list, &mp->ackqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 mp->nack++;
Michael Buesch6aa65472006-06-26 00:25:30 -0700172 spin_unlock_irqrestore(&mp->ackqlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 return 0;
174}
175
176static int capiminor_del_ack(struct capiminor *mp, u16 datahandle)
177{
Michael Buesch6aa65472006-06-26 00:25:30 -0700178 struct datahandle_queue *p, *tmp;
179 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Michael Buesch6aa65472006-06-26 00:25:30 -0700181 spin_lock_irqsave(&mp->ackqlock, flags);
182 list_for_each_entry_safe(p, tmp, &mp->ackqueue, list) {
183 if (p->datahandle == datahandle) {
184 list_del(&p->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 kfree(p);
186 mp->nack--;
Michael Buesch6aa65472006-06-26 00:25:30 -0700187 spin_unlock_irqrestore(&mp->ackqlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 return 0;
189 }
190 }
Michael Buesch6aa65472006-06-26 00:25:30 -0700191 spin_unlock_irqrestore(&mp->ackqlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return -1;
193}
194
195static void capiminor_del_all_ack(struct capiminor *mp)
196{
Michael Buesch6aa65472006-06-26 00:25:30 -0700197 struct datahandle_queue *p, *tmp;
198 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Michael Buesch6aa65472006-06-26 00:25:30 -0700200 spin_lock_irqsave(&mp->ackqlock, flags);
201 list_for_each_entry_safe(p, tmp, &mp->ackqueue, list) {
202 list_del(&p->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 kfree(p);
204 mp->nack--;
205 }
Michael Buesch6aa65472006-06-26 00:25:30 -0700206 spin_unlock_irqrestore(&mp->ackqlock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
209
210/* -------- struct capiminor ---------------------------------------- */
211
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000212static const struct tty_port_operations capiminor_port_ops; /* we have none */
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214static struct capiminor *capiminor_alloc(struct capi20_appl *ap, u32 ncci)
215{
Jan Kiszka81d17fe2010-02-08 10:12:23 +0000216 struct capiminor *mp;
Jan Kiszka40fb2d02010-02-08 10:12:25 +0000217 struct device *dev;
Jan Kiszka81d17fe2010-02-08 10:12:23 +0000218 unsigned int minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Jan Kiszka54f0fad2010-02-08 10:12:20 +0000220 mp = kzalloc(sizeof(*mp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 if (!mp) {
222 printk(KERN_ERR "capi: can't alloc capiminor\n");
223 return NULL;
224 }
225
Jan Kiszka0159d542010-02-08 10:12:27 +0000226 kref_init(&mp->kref);
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 mp->ap = ap;
229 mp->ncci = ncci;
230 mp->msgid = 0;
Michael Buesch6aa65472006-06-26 00:25:30 -0700231 INIT_LIST_HEAD(&mp->ackqueue);
232 spin_lock_init(&mp->ackqlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 skb_queue_head_init(&mp->inqueue);
235 skb_queue_head_init(&mp->outqueue);
236
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000237 tty_port_init(&mp->port);
238 mp->port.ops = &capiminor_port_ops;
239
Jan Kiszka81d17fe2010-02-08 10:12:23 +0000240 /* Allocate the least unused minor number. */
Jan Kiszka3d5d30f2010-02-08 10:12:33 +0000241 spin_lock(&capiminors_lock);
Jan Kiszka81d17fe2010-02-08 10:12:23 +0000242 for (minor = 0; minor < capi_ttyminors; minor++)
243 if (!capiminors[minor]) {
244 capiminors[minor] = mp;
245 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
Jan Kiszka3d5d30f2010-02-08 10:12:33 +0000247 spin_unlock(&capiminors_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Jan Kiszka81d17fe2010-02-08 10:12:23 +0000249 if (minor == capi_ttyminors) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 printk(KERN_NOTICE "capi: out of minors\n");
Jan Kiszka40fb2d02010-02-08 10:12:25 +0000251 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
253
Jan Kiszka81d17fe2010-02-08 10:12:23 +0000254 mp->minor = minor;
255
Jan Kiszka40fb2d02010-02-08 10:12:25 +0000256 dev = tty_register_device(capinc_tty_driver, minor, NULL);
257 if (IS_ERR(dev))
258 goto err_out2;
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 return mp;
Jan Kiszka40fb2d02010-02-08 10:12:25 +0000261
262err_out2:
Jan Kiszka3d5d30f2010-02-08 10:12:33 +0000263 spin_lock(&capiminors_lock);
Jan Kiszka40fb2d02010-02-08 10:12:25 +0000264 capiminors[minor] = NULL;
Jan Kiszka3d5d30f2010-02-08 10:12:33 +0000265 spin_unlock(&capiminors_lock);
Jan Kiszka40fb2d02010-02-08 10:12:25 +0000266
267err_out1:
268 kfree(mp);
269 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
Jan Kiszka0159d542010-02-08 10:12:27 +0000272static void capiminor_destroy(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Jan Kiszka0159d542010-02-08 10:12:27 +0000274 struct capiminor *mp = container_of(kref, struct capiminor, kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Wei Yongjund46604e2009-02-25 00:12:09 +0000276 kfree_skb(mp->ttyskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 skb_queue_purge(&mp->inqueue);
278 skb_queue_purge(&mp->outqueue);
279 capiminor_del_all_ack(mp);
280 kfree(mp);
281}
282
Jan Kiszka40fb2d02010-02-08 10:12:25 +0000283static struct capiminor *capiminor_get(unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
Jan Kiszka81d17fe2010-02-08 10:12:23 +0000285 struct capiminor *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Jan Kiszka3d5d30f2010-02-08 10:12:33 +0000287 spin_lock(&capiminors_lock);
Jan Kiszka81d17fe2010-02-08 10:12:23 +0000288 mp = capiminors[minor];
Jan Kiszka0159d542010-02-08 10:12:27 +0000289 if (mp)
290 kref_get(&mp->kref);
Jan Kiszka3d5d30f2010-02-08 10:12:33 +0000291 spin_unlock(&capiminors_lock);
Jan Kiszka81d17fe2010-02-08 10:12:23 +0000292
293 return mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Jan Kiszka0159d542010-02-08 10:12:27 +0000296static inline void capiminor_put(struct capiminor *mp)
297{
298 kref_put(&mp->kref, capiminor_destroy);
299}
300
301static void capiminor_free(struct capiminor *mp)
302{
Jan Kiszka0159d542010-02-08 10:12:27 +0000303 tty_unregister_device(capinc_tty_driver, mp->minor);
304
Jan Kiszka3d5d30f2010-02-08 10:12:33 +0000305 spin_lock(&capiminors_lock);
Jan Kiszka0159d542010-02-08 10:12:27 +0000306 capiminors[mp->minor] = NULL;
Jan Kiszka3d5d30f2010-02-08 10:12:33 +0000307 spin_unlock(&capiminors_lock);
Jan Kiszka0159d542010-02-08 10:12:27 +0000308
309 capiminor_put(mp);
310}
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312/* -------- struct capincci ----------------------------------------- */
313
Jan Kiszka501c87a2010-02-08 10:12:16 +0000314static void capincci_alloc_minor(struct capidev *cdev, struct capincci *np)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Jan Kiszka501c87a2010-02-08 10:12:16 +0000316 struct capiminor *mp;
Jan Kiszkae95ac142010-02-08 10:12:26 +0000317 dev_t device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Jan Kiszka501c87a2010-02-08 10:12:16 +0000319 if (!(cdev->userflags & CAPIFLAG_HIGHJACKING))
320 return;
321
322 mp = np->minorp = capiminor_alloc(&cdev->ap, np->ncci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (mp) {
Jan Kiszkae95ac142010-02-08 10:12:26 +0000324 device = MKDEV(capinc_tty_driver->major, mp->minor);
325 mp->capifs_dentry = capifs_new_ncci(mp->minor, device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 }
Jan Kiszka501c87a2010-02-08 10:12:16 +0000327}
328
329static void capincci_free_minor(struct capincci *np)
330{
331 struct capiminor *mp = np->minorp;
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000332 struct tty_struct *tty;
Jan Kiszka501c87a2010-02-08 10:12:16 +0000333
334 if (mp) {
335 capifs_free_ncci(mp->capifs_dentry);
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000336
337 tty = tty_port_tty_get(&mp->port);
338 if (tty) {
Jan Kiszka30bced92010-02-08 10:12:31 +0000339 tty_vhangup(tty);
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000340 tty_kref_put(tty);
Jan Kiszka501c87a2010-02-08 10:12:16 +0000341 }
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000342
343 capiminor_free(mp);
Jan Kiszka501c87a2010-02-08 10:12:16 +0000344 }
345}
346
347static inline unsigned int capincci_minor_opencount(struct capincci *np)
348{
349 struct capiminor *mp = np->minorp;
Jan Kiszkaa84fdf42010-02-08 10:12:34 +0000350 unsigned int count = 0;
351 struct tty_struct *tty;
Jan Kiszka501c87a2010-02-08 10:12:16 +0000352
Jan Kiszkaa84fdf42010-02-08 10:12:34 +0000353 if (mp) {
354 tty = tty_port_tty_get(&mp->port);
355 if (tty) {
356 count = tty->count;
357 tty_kref_put(tty);
358 }
359 }
360 return count;
Jan Kiszka501c87a2010-02-08 10:12:16 +0000361}
362
363#else /* !CONFIG_ISDN_CAPI_MIDDLEWARE */
364
365static inline void
366capincci_alloc_minor(struct capidev *cdev, struct capincci *np) { }
367static inline void capincci_free_minor(struct capincci *np) { }
368
369static inline unsigned int capincci_minor_opencount(struct capincci *np)
370{
371 return 0;
372}
373
374#endif /* !CONFIG_ISDN_CAPI_MIDDLEWARE */
375
376static struct capincci *capincci_alloc(struct capidev *cdev, u32 ncci)
377{
Jan Kiszka884f5c42010-02-08 10:12:22 +0000378 struct capincci *np;
Jan Kiszka501c87a2010-02-08 10:12:16 +0000379
Jan Kiszka54f0fad2010-02-08 10:12:20 +0000380 np = kzalloc(sizeof(*np), GFP_KERNEL);
Jan Kiszka501c87a2010-02-08 10:12:16 +0000381 if (!np)
382 return NULL;
383 np->ncci = ncci;
384 np->cdev = cdev;
385
386 capincci_alloc_minor(cdev, np);
387
Jan Kiszka884f5c42010-02-08 10:12:22 +0000388 list_add_tail(&np->list, &cdev->nccis);
389
390 return np;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
393static void capincci_free(struct capidev *cdev, u32 ncci)
394{
Jan Kiszka884f5c42010-02-08 10:12:22 +0000395 struct capincci *np, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Jan Kiszka884f5c42010-02-08 10:12:22 +0000397 list_for_each_entry_safe(np, tmp, &cdev->nccis, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 if (ncci == 0xffffffff || np->ncci == ncci) {
Jan Kiszka501c87a2010-02-08 10:12:16 +0000399 capincci_free_minor(np);
Jan Kiszka884f5c42010-02-08 10:12:22 +0000400 list_del(&np->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 kfree(np);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
405static struct capincci *capincci_find(struct capidev *cdev, u32 ncci)
406{
Jan Kiszka884f5c42010-02-08 10:12:22 +0000407 struct capincci *np;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Jan Kiszka884f5c42010-02-08 10:12:22 +0000409 list_for_each_entry(np, &cdev->nccis, list)
410 if (np->ncci == ncci)
411 return np;
412 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415#ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
416/* -------- handle data queue --------------------------------------- */
417
418static struct sk_buff *
419gen_data_b3_resp_for(struct capiminor *mp, struct sk_buff *skb)
420{
421 struct sk_buff *nskb;
422 nskb = alloc_skb(CAPI_DATA_B3_RESP_LEN, GFP_ATOMIC);
423 if (nskb) {
424 u16 datahandle = CAPIMSG_U16(skb->data,CAPIMSG_BASELEN+4+4+2);
425 unsigned char *s = skb_put(nskb, CAPI_DATA_B3_RESP_LEN);
426 capimsg_setu16(s, 0, CAPI_DATA_B3_RESP_LEN);
427 capimsg_setu16(s, 2, mp->ap->applid);
428 capimsg_setu8 (s, 4, CAPI_DATA_B3);
429 capimsg_setu8 (s, 5, CAPI_RESP);
430 capimsg_setu16(s, 6, mp->msgid++);
431 capimsg_setu32(s, 8, mp->ncci);
432 capimsg_setu16(s, 12, datahandle);
433 }
434 return nskb;
435}
436
437static int handle_recv_skb(struct capiminor *mp, struct sk_buff *skb)
438{
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000439 unsigned int datalen = skb->len - CAPIMSG_LEN(skb->data);
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000440 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 struct sk_buff *nskb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 u16 errcode, datahandle;
443 struct tty_ldisc *ld;
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000444 int ret = -1;
445
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000446 tty = tty_port_tty_get(&mp->port);
447 if (!tty) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448#ifdef _DEBUG_DATAFLOW
449 printk(KERN_DEBUG "capi: currently no receiver\n");
450#endif
451 return -1;
452 }
453
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000454 ld = tty_ldisc_ref(tty);
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000455 if (!ld) {
456 /* fatal error, do not requeue */
457 ret = 0;
458 kfree_skb(skb);
459 goto deref_tty;
460 }
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000461
Alan Coxa352def2008-07-16 21:53:12 +0100462 if (ld->ops->receive_buf == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463#if defined(_DEBUG_DATAFLOW) || defined(_DEBUG_TTYFUNCS)
464 printk(KERN_DEBUG "capi: ldisc has no receive_buf function\n");
465#endif
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000466 /* fatal error, do not requeue */
467 goto free_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
469 if (mp->ttyinstop) {
470#if defined(_DEBUG_DATAFLOW) || defined(_DEBUG_TTYFUNCS)
471 printk(KERN_DEBUG "capi: recv tty throttled\n");
472#endif
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000473 goto deref_ldisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 }
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000475
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000476 if (tty->receive_room < datalen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477#if defined(_DEBUG_DATAFLOW) || defined(_DEBUG_TTYFUNCS)
478 printk(KERN_DEBUG "capi: no room in tty\n");
479#endif
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000480 goto deref_ldisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000482
483 nskb = gen_data_b3_resp_for(mp, skb);
484 if (!nskb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 printk(KERN_ERR "capi: gen_data_b3_resp failed\n");
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000486 goto deref_ldisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 }
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000488
489 datahandle = CAPIMSG_U16(skb->data, CAPIMSG_BASELEN + 4);
490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 errcode = capi20_put_message(mp->ap, nskb);
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000492
493 if (errcode == CAPI_NOERROR) {
494 skb_pull(skb, CAPIMSG_LEN(skb->data));
495#ifdef _DEBUG_DATAFLOW
496 printk(KERN_DEBUG "capi: DATA_B3_RESP %u len=%d => ldisc\n",
497 datahandle, skb->len);
498#endif
499 ld->ops->receive_buf(tty, skb->data, NULL, skb->len);
500 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 printk(KERN_ERR "capi: send DATA_B3_RESP failed=%x\n",
502 errcode);
503 kfree_skb(nskb);
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000504
505 if (errcode == CAPI_SENDQUEUEFULL)
506 goto deref_ldisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000508
509free_skb:
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000510 ret = 0;
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000511 kfree_skb(skb);
512
513deref_ldisc:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 tty_ldisc_deref(ld);
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000515
516deref_tty:
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000517 tty_kref_put(tty);
518 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519}
520
521static void handle_minor_recv(struct capiminor *mp)
522{
523 struct sk_buff *skb;
Harvey Harrison2f9e9b62008-04-28 02:14:37 -0700524 while ((skb = skb_dequeue(&mp->inqueue)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 unsigned int len = skb->len;
526 mp->inbytes -= len;
527 if (handle_recv_skb(mp, skb) < 0) {
528 skb_queue_head(&mp->inqueue, skb);
529 mp->inbytes += len;
530 return;
531 }
532 }
533}
534
535static int handle_minor_send(struct capiminor *mp)
536{
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000537 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 struct sk_buff *skb;
539 u16 len;
540 int count = 0;
541 u16 errcode;
542 u16 datahandle;
543
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000544 tty = tty_port_tty_get(&mp->port);
545 if (!tty)
546 return 0;
547
548 if (mp->ttyoutstop) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549#if defined(_DEBUG_DATAFLOW) || defined(_DEBUG_TTYFUNCS)
550 printk(KERN_DEBUG "capi: send: tty stopped\n");
551#endif
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000552 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 return 0;
554 }
555
Harvey Harrison2f9e9b62008-04-28 02:14:37 -0700556 while ((skb = skb_dequeue(&mp->outqueue)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 datahandle = mp->datahandle;
558 len = (u16)skb->len;
559 skb_push(skb, CAPI_DATA_B3_REQ_LEN);
560 memset(skb->data, 0, CAPI_DATA_B3_REQ_LEN);
561 capimsg_setu16(skb->data, 0, CAPI_DATA_B3_REQ_LEN);
562 capimsg_setu16(skb->data, 2, mp->ap->applid);
563 capimsg_setu8 (skb->data, 4, CAPI_DATA_B3);
564 capimsg_setu8 (skb->data, 5, CAPI_REQ);
565 capimsg_setu16(skb->data, 6, mp->msgid++);
566 capimsg_setu32(skb->data, 8, mp->ncci); /* NCCI */
Andrew Morton5e6c20a2007-07-17 04:04:22 -0700567 capimsg_setu32(skb->data, 12, (u32)(long)skb->data);/* Data32 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 capimsg_setu16(skb->data, 16, len); /* Data length */
569 capimsg_setu16(skb->data, 18, datahandle);
570 capimsg_setu16(skb->data, 20, 0); /* Flags */
571
Jan Kiszka501c87a2010-02-08 10:12:16 +0000572 if (capiminor_add_ack(mp, datahandle) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 skb_pull(skb, CAPI_DATA_B3_REQ_LEN);
574 skb_queue_head(&mp->outqueue, skb);
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000575 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 return count;
577 }
578 errcode = capi20_put_message(mp->ap, skb);
579 if (errcode == CAPI_NOERROR) {
580 mp->datahandle++;
581 count++;
582 mp->outbytes -= len;
583#ifdef _DEBUG_DATAFLOW
584 printk(KERN_DEBUG "capi: DATA_B3_REQ %u len=%u\n",
585 datahandle, len);
586#endif
587 continue;
588 }
589 capiminor_del_ack(mp, datahandle);
590
591 if (errcode == CAPI_SENDQUEUEFULL) {
592 skb_pull(skb, CAPI_DATA_B3_REQ_LEN);
593 skb_queue_head(&mp->outqueue, skb);
594 break;
595 }
596
597 /* ups, drop packet */
598 printk(KERN_ERR "capi: put_message = %x\n", errcode);
599 mp->outbytes -= len;
600 kfree_skb(skb);
601 }
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000602 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return count;
604}
605
606#endif /* CONFIG_ISDN_CAPI_MIDDLEWARE */
607/* -------- function called by lower level -------------------------- */
608
609static void capi_recv_message(struct capi20_appl *ap, struct sk_buff *skb)
610{
611 struct capidev *cdev = ap->private;
612#ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000613 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 struct capiminor *mp;
615 u16 datahandle;
616#endif /* CONFIG_ISDN_CAPI_MIDDLEWARE */
617 struct capincci *np;
Michael Buesch053b47f2007-02-12 00:53:26 -0800618 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Jan Kiszka05b41492010-02-08 10:12:19 +0000620 mutex_lock(&cdev->lock);
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 if (CAPIMSG_CMD(skb->data) == CAPI_CONNECT_B3_CONF) {
623 u16 info = CAPIMSG_U16(skb->data, 12); // Info field
Jan Kiszka05b41492010-02-08 10:12:19 +0000624 if ((info & 0xff00) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 capincci_alloc(cdev, CAPIMSG_NCCI(skb->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 }
Jan Kiszka05b41492010-02-08 10:12:19 +0000627 if (CAPIMSG_CMD(skb->data) == CAPI_CONNECT_B3_IND)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 capincci_alloc(cdev, CAPIMSG_NCCI(skb->data));
Jan Kiszka05b41492010-02-08 10:12:19 +0000629
Michael Buesch053b47f2007-02-12 00:53:26 -0800630 spin_lock_irqsave(&workaround_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 if (CAPIMSG_COMMAND(skb->data) != CAPI_DATA_B3) {
632 skb_queue_tail(&cdev->recvqueue, skb);
633 wake_up_interruptible(&cdev->recvwait);
Jan Kiszka05b41492010-02-08 10:12:19 +0000634 goto unlock_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 }
Jan Kiszka05b41492010-02-08 10:12:19 +0000636
637 np = capincci_find(cdev, CAPIMSG_CONTROL(skb->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 if (!np) {
639 printk(KERN_ERR "BUG: capi_signal: ncci not found\n");
640 skb_queue_tail(&cdev->recvqueue, skb);
641 wake_up_interruptible(&cdev->recvwait);
Jan Kiszka05b41492010-02-08 10:12:19 +0000642 goto unlock_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 }
Jan Kiszka501c87a2010-02-08 10:12:16 +0000644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645#ifndef CONFIG_ISDN_CAPI_MIDDLEWARE
646 skb_queue_tail(&cdev->recvqueue, skb);
647 wake_up_interruptible(&cdev->recvwait);
Jan Kiszka501c87a2010-02-08 10:12:16 +0000648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649#else /* CONFIG_ISDN_CAPI_MIDDLEWARE */
Jan Kiszka501c87a2010-02-08 10:12:16 +0000650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 mp = np->minorp;
652 if (!mp) {
653 skb_queue_tail(&cdev->recvqueue, skb);
654 wake_up_interruptible(&cdev->recvwait);
Jan Kiszka05b41492010-02-08 10:12:19 +0000655 goto unlock_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 if (CAPIMSG_SUBCOMMAND(skb->data) == CAPI_IND) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 datahandle = CAPIMSG_U16(skb->data, CAPIMSG_BASELEN+4+4+2);
659#ifdef _DEBUG_DATAFLOW
660 printk(KERN_DEBUG "capi_signal: DATA_B3_IND %u len=%d\n",
661 datahandle, skb->len-CAPIMSG_LEN(skb->data));
662#endif
663 skb_queue_tail(&mp->inqueue, skb);
664 mp->inbytes += skb->len;
665 handle_minor_recv(mp);
666
667 } else if (CAPIMSG_SUBCOMMAND(skb->data) == CAPI_CONF) {
668
669 datahandle = CAPIMSG_U16(skb->data, CAPIMSG_BASELEN+4);
670#ifdef _DEBUG_DATAFLOW
671 printk(KERN_DEBUG "capi_signal: DATA_B3_CONF %u 0x%x\n",
672 datahandle,
673 CAPIMSG_U16(skb->data, CAPIMSG_BASELEN+4+2));
674#endif
675 kfree_skb(skb);
676 (void)capiminor_del_ack(mp, datahandle);
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000677 tty = tty_port_tty_get(&mp->port);
678 if (tty) {
679 tty_wakeup(tty);
680 tty_kref_put(tty);
681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 (void)handle_minor_send(mp);
683
684 } else {
685 /* ups, let capi application handle it :-) */
686 skb_queue_tail(&cdev->recvqueue, skb);
687 wake_up_interruptible(&cdev->recvwait);
688 }
689#endif /* CONFIG_ISDN_CAPI_MIDDLEWARE */
Jan Kiszka501c87a2010-02-08 10:12:16 +0000690
Jan Kiszka05b41492010-02-08 10:12:19 +0000691unlock_out:
Michael Buesch053b47f2007-02-12 00:53:26 -0800692 spin_unlock_irqrestore(&workaround_lock, flags);
Jan Kiszka05b41492010-02-08 10:12:19 +0000693 mutex_unlock(&cdev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694}
695
696/* -------- file_operations for capidev ----------------------------- */
697
698static ssize_t
699capi_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
700{
701 struct capidev *cdev = (struct capidev *)file->private_data;
702 struct sk_buff *skb;
703 size_t copied;
Jan Kiszka28a1dbb2010-02-08 10:12:21 +0000704 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 if (!cdev->ap.applid)
707 return -ENODEV;
708
Jan Kiszka28a1dbb2010-02-08 10:12:21 +0000709 skb = skb_dequeue(&cdev->recvqueue);
710 if (!skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 if (file->f_flags & O_NONBLOCK)
712 return -EAGAIN;
Jan Kiszka28a1dbb2010-02-08 10:12:21 +0000713 err = wait_event_interruptible(cdev->recvwait,
714 (skb = skb_dequeue(&cdev->recvqueue)));
715 if (err)
716 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 }
718 if (skb->len > count) {
719 skb_queue_head(&cdev->recvqueue, skb);
720 return -EMSGSIZE;
721 }
722 if (copy_to_user(buf, skb->data, skb->len)) {
723 skb_queue_head(&cdev->recvqueue, skb);
724 return -EFAULT;
725 }
726 copied = skb->len;
727
728 kfree_skb(skb);
729
730 return copied;
731}
732
733static ssize_t
734capi_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
735{
736 struct capidev *cdev = (struct capidev *)file->private_data;
737 struct sk_buff *skb;
738 u16 mlen;
739
740 if (!cdev->ap.applid)
741 return -ENODEV;
742
743 skb = alloc_skb(count, GFP_USER);
744 if (!skb)
745 return -ENOMEM;
746
747 if (copy_from_user(skb_put(skb, count), buf, count)) {
748 kfree_skb(skb);
749 return -EFAULT;
750 }
751 mlen = CAPIMSG_LEN(skb->data);
752 if (CAPIMSG_CMD(skb->data) == CAPI_DATA_B3_REQ) {
753 if ((size_t)(mlen + CAPIMSG_DATALEN(skb->data)) != count) {
754 kfree_skb(skb);
755 return -EINVAL;
756 }
757 } else {
758 if (mlen != count) {
759 kfree_skb(skb);
760 return -EINVAL;
761 }
762 }
763 CAPIMSG_SETAPPID(skb->data, cdev->ap.applid);
764
765 if (CAPIMSG_CMD(skb->data) == CAPI_DISCONNECT_B3_RESP) {
Jan Kiszka05b41492010-02-08 10:12:19 +0000766 mutex_lock(&cdev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 capincci_free(cdev, CAPIMSG_NCCI(skb->data));
Jan Kiszka05b41492010-02-08 10:12:19 +0000768 mutex_unlock(&cdev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
770
771 cdev->errcode = capi20_put_message(&cdev->ap, skb);
772
773 if (cdev->errcode) {
774 kfree_skb(skb);
775 return -EIO;
776 }
777 return count;
778}
779
780static unsigned int
781capi_poll(struct file *file, poll_table * wait)
782{
783 struct capidev *cdev = (struct capidev *)file->private_data;
784 unsigned int mask = 0;
785
786 if (!cdev->ap.applid)
787 return POLLERR;
788
789 poll_wait(file, &(cdev->recvwait), wait);
790 mask = POLLOUT | POLLWRNORM;
791 if (!skb_queue_empty(&cdev->recvqueue))
792 mask |= POLLIN | POLLRDNORM;
793 return mask;
794}
795
796static int
797capi_ioctl(struct inode *inode, struct file *file,
798 unsigned int cmd, unsigned long arg)
799{
800 struct capidev *cdev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 capi_ioctl_struct data;
802 int retval = -EINVAL;
803 void __user *argp = (void __user *)arg;
804
805 switch (cmd) {
806 case CAPI_REGISTER:
Jan Kiszka05b41492010-02-08 10:12:19 +0000807 mutex_lock(&cdev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Jan Kiszka05b41492010-02-08 10:12:19 +0000809 if (cdev->ap.applid) {
810 retval = -EEXIST;
811 goto register_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 }
Jan Kiszka05b41492010-02-08 10:12:19 +0000813 if (copy_from_user(&cdev->ap.rparam, argp,
814 sizeof(struct capi_register_params))) {
815 retval = -EFAULT;
816 goto register_out;
817 }
818 cdev->ap.private = cdev;
819 cdev->ap.recv_message = capi_recv_message;
820 cdev->errcode = capi20_register(&cdev->ap);
821 retval = (int)cdev->ap.applid;
822 if (cdev->errcode) {
823 cdev->ap.applid = 0;
824 retval = -EIO;
825 }
826
827register_out:
828 mutex_unlock(&cdev->lock);
829 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831 case CAPI_GET_VERSION:
832 {
833 if (copy_from_user(&data.contr, argp,
834 sizeof(data.contr)))
835 return -EFAULT;
836 cdev->errcode = capi20_get_version(data.contr, &data.version);
837 if (cdev->errcode)
838 return -EIO;
839 if (copy_to_user(argp, &data.version,
840 sizeof(data.version)))
841 return -EFAULT;
842 }
843 return 0;
844
845 case CAPI_GET_SERIAL:
846 {
847 if (copy_from_user(&data.contr, argp,
848 sizeof(data.contr)))
849 return -EFAULT;
850 cdev->errcode = capi20_get_serial (data.contr, data.serial);
851 if (cdev->errcode)
852 return -EIO;
853 if (copy_to_user(argp, data.serial,
854 sizeof(data.serial)))
855 return -EFAULT;
856 }
857 return 0;
858 case CAPI_GET_PROFILE:
859 {
860 if (copy_from_user(&data.contr, argp,
861 sizeof(data.contr)))
862 return -EFAULT;
863
864 if (data.contr == 0) {
865 cdev->errcode = capi20_get_profile(data.contr, &data.profile);
866 if (cdev->errcode)
867 return -EIO;
868
869 retval = copy_to_user(argp,
870 &data.profile.ncontroller,
871 sizeof(data.profile.ncontroller));
872
873 } else {
874 cdev->errcode = capi20_get_profile(data.contr, &data.profile);
875 if (cdev->errcode)
876 return -EIO;
877
878 retval = copy_to_user(argp, &data.profile,
879 sizeof(data.profile));
880 }
881 if (retval)
882 return -EFAULT;
883 }
884 return 0;
885
886 case CAPI_GET_MANUFACTURER:
887 {
888 if (copy_from_user(&data.contr, argp,
889 sizeof(data.contr)))
890 return -EFAULT;
891 cdev->errcode = capi20_get_manufacturer(data.contr, data.manufacturer);
892 if (cdev->errcode)
893 return -EIO;
894
895 if (copy_to_user(argp, data.manufacturer,
896 sizeof(data.manufacturer)))
897 return -EFAULT;
898
899 }
900 return 0;
901 case CAPI_GET_ERRCODE:
902 data.errcode = cdev->errcode;
903 cdev->errcode = CAPI_NOERROR;
904 if (arg) {
905 if (copy_to_user(argp, &data.errcode,
906 sizeof(data.errcode)))
907 return -EFAULT;
908 }
909 return data.errcode;
910
911 case CAPI_INSTALLED:
912 if (capi20_isinstalled() == CAPI_NOERROR)
913 return 0;
914 return -ENXIO;
915
916 case CAPI_MANUFACTURER_CMD:
917 {
918 struct capi_manufacturer_cmd mcmd;
919 if (!capable(CAP_SYS_ADMIN))
920 return -EPERM;
921 if (copy_from_user(&mcmd, argp, sizeof(mcmd)))
922 return -EFAULT;
923 return capi20_manufacturer(mcmd.cmd, mcmd.data);
924 }
925 return 0;
926
927 case CAPI_SET_FLAGS:
Jan Kiszka05b41492010-02-08 10:12:19 +0000928 case CAPI_CLR_FLAGS: {
929 unsigned userflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Jan Kiszka05b41492010-02-08 10:12:19 +0000931 if (copy_from_user(&userflags, argp, sizeof(userflags)))
932 return -EFAULT;
933
934 mutex_lock(&cdev->lock);
935 if (cmd == CAPI_SET_FLAGS)
936 cdev->userflags |= userflags;
937 else
938 cdev->userflags &= ~userflags;
939 mutex_unlock(&cdev->lock);
940 return 0;
941 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 case CAPI_GET_FLAGS:
943 if (copy_to_user(argp, &cdev->userflags,
944 sizeof(cdev->userflags)))
945 return -EFAULT;
946 return 0;
947
Jan Kiszka05b41492010-02-08 10:12:19 +0000948 case CAPI_NCCI_OPENCOUNT: {
949 struct capincci *nccip;
950 unsigned ncci;
951 int count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Jan Kiszka05b41492010-02-08 10:12:19 +0000953 if (copy_from_user(&ncci, argp, sizeof(ncci)))
954 return -EFAULT;
955
956 mutex_lock(&cdev->lock);
957 nccip = capincci_find(cdev, (u32)ncci);
958 if (nccip)
959 count = capincci_minor_opencount(nccip);
960 mutex_unlock(&cdev->lock);
961 return count;
962 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
964#ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
Jan Kiszka05b41492010-02-08 10:12:19 +0000965 case CAPI_NCCI_GETUNIT: {
966 struct capincci *nccip;
967 struct capiminor *mp;
968 unsigned ncci;
969 int unit = -ESRCH;
970
971 if (copy_from_user(&ncci, argp, sizeof(ncci)))
972 return -EFAULT;
973
974 mutex_lock(&cdev->lock);
975 nccip = capincci_find(cdev, (u32)ncci);
976 if (nccip) {
977 mp = nccip->minorp;
978 if (mp)
979 unit = mp->minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 }
Jan Kiszka05b41492010-02-08 10:12:19 +0000981 mutex_unlock(&cdev->lock);
982 return unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 }
Jan Kiszka05b41492010-02-08 10:12:19 +0000984#endif /* CONFIG_ISDN_CAPI_MIDDLEWARE */
985
986 default:
987 return -EINVAL;
988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989}
990
Jan Kiszkaeca39dd2010-02-08 10:12:18 +0000991static int capi_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
Jan Kiszkaeca39dd2010-02-08 10:12:18 +0000993 struct capidev *cdev;
994
995 cdev = kzalloc(sizeof(*cdev), GFP_KERNEL);
996 if (!cdev)
997 return -ENOMEM;
998
Jan Kiszka05b41492010-02-08 10:12:19 +0000999 mutex_init(&cdev->lock);
Jan Kiszkaeca39dd2010-02-08 10:12:18 +00001000 skb_queue_head_init(&cdev->recvqueue);
1001 init_waitqueue_head(&cdev->recvwait);
Jan Kiszka884f5c42010-02-08 10:12:22 +00001002 INIT_LIST_HEAD(&cdev->nccis);
Jan Kiszkaeca39dd2010-02-08 10:12:18 +00001003 file->private_data = cdev;
1004
1005 mutex_lock(&capidev_list_lock);
1006 list_add_tail(&cdev->list, &capidev_list);
1007 mutex_unlock(&capidev_list_lock);
1008
1009 return nonseekable_open(inode, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010}
1011
Jan Kiszkaeca39dd2010-02-08 10:12:18 +00001012static int capi_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
Jan Kiszkaeca39dd2010-02-08 10:12:18 +00001014 struct capidev *cdev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Jan Kiszkaeca39dd2010-02-08 10:12:18 +00001016 mutex_lock(&capidev_list_lock);
1017 list_del(&cdev->list);
1018 mutex_unlock(&capidev_list_lock);
1019
Jan Kiszka05b41492010-02-08 10:12:19 +00001020 if (cdev->ap.applid)
Jan Kiszkaeca39dd2010-02-08 10:12:18 +00001021 capi20_release(&cdev->ap);
Jan Kiszkaeca39dd2010-02-08 10:12:18 +00001022 skb_queue_purge(&cdev->recvqueue);
Jan Kiszkaeca39dd2010-02-08 10:12:18 +00001023 capincci_free(cdev, 0xffffffff);
Jan Kiszkaeca39dd2010-02-08 10:12:18 +00001024
1025 kfree(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 return 0;
1027}
1028
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08001029static const struct file_operations capi_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
1031 .owner = THIS_MODULE,
1032 .llseek = no_llseek,
1033 .read = capi_read,
1034 .write = capi_write,
1035 .poll = capi_poll,
1036 .ioctl = capi_ioctl,
1037 .open = capi_open,
1038 .release = capi_release,
1039};
1040
1041#ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
1042/* -------- tty_operations for capincci ----------------------------- */
1043
Jan Kiszka46324512010-02-08 10:12:28 +00001044static int
1045capinc_tty_install(struct tty_driver *driver, struct tty_struct *tty)
1046{
1047 int idx = tty->index;
1048 struct capiminor *mp = capiminor_get(idx);
1049 int ret = tty_init_termios(tty);
1050
1051 if (ret == 0) {
1052 tty_driver_kref_get(driver);
1053 tty->count++;
1054 tty->driver_data = mp;
1055 driver->ttys[idx] = tty;
1056 } else
1057 capiminor_put(mp);
1058 return ret;
1059}
1060
1061static void capinc_tty_cleanup(struct tty_struct *tty)
1062{
1063 struct capiminor *mp = tty->driver_data;
1064 tty->driver_data = NULL;
1065 capiminor_put(mp);
1066}
1067
Jan Kiszkafb4b4882010-02-08 10:12:29 +00001068static int capinc_tty_open(struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069{
Jan Kiszka46324512010-02-08 10:12:28 +00001070 struct capiminor *mp = tty->driver_data;
Michael Buesch053b47f2007-02-12 00:53:26 -08001071 unsigned long flags;
Jan Kiszkafb4b4882010-02-08 10:12:29 +00001072 int err;
1073
1074 err = tty_port_open(&mp->port, tty, filp);
1075 if (err)
1076 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
Michael Buesch053b47f2007-02-12 00:53:26 -08001078 spin_lock_irqsave(&workaround_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 handle_minor_recv(mp);
Michael Buesch053b47f2007-02-12 00:53:26 -08001080 spin_unlock_irqrestore(&workaround_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 return 0;
1082}
1083
Jan Kiszkafb4b4882010-02-08 10:12:29 +00001084static void capinc_tty_close(struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
Jan Kiszka46324512010-02-08 10:12:28 +00001086 struct capiminor *mp = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Jan Kiszkafb4b4882010-02-08 10:12:29 +00001088 tty_port_close(&mp->port, tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089}
1090
Jan Kiszka6576c282010-02-08 10:12:32 +00001091static int capinc_tty_write(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 const unsigned char *buf, int count)
1093{
Jan Kiszka2c8df722010-02-08 10:12:30 +00001094 struct capiminor *mp = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 struct sk_buff *skb;
Michael Buesch053b47f2007-02-12 00:53:26 -08001096 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
1098#ifdef _DEBUG_TTYFUNCS
1099 printk(KERN_DEBUG "capinc_tty_write(count=%d)\n", count);
1100#endif
1101
Michael Buesch053b47f2007-02-12 00:53:26 -08001102 spin_lock_irqsave(&workaround_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 skb = mp->ttyskb;
1104 if (skb) {
1105 mp->ttyskb = NULL;
1106 skb_queue_tail(&mp->outqueue, skb);
1107 mp->outbytes += skb->len;
1108 }
1109
1110 skb = alloc_skb(CAPI_DATA_B3_REQ_LEN+count, GFP_ATOMIC);
1111 if (!skb) {
1112 printk(KERN_ERR "capinc_tty_write: alloc_skb failed\n");
Michael Buesch053b47f2007-02-12 00:53:26 -08001113 spin_unlock_irqrestore(&workaround_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 return -ENOMEM;
1115 }
1116
1117 skb_reserve(skb, CAPI_DATA_B3_REQ_LEN);
1118 memcpy(skb_put(skb, count), buf, count);
1119
1120 skb_queue_tail(&mp->outqueue, skb);
1121 mp->outbytes += skb->len;
1122 (void)handle_minor_send(mp);
Michael Buesch053b47f2007-02-12 00:53:26 -08001123 spin_unlock_irqrestore(&workaround_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 return count;
1125}
1126
Alan Coxf2545a72008-04-30 00:54:09 -07001127static int capinc_tty_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
Jan Kiszka2c8df722010-02-08 10:12:30 +00001129 struct capiminor *mp = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 struct sk_buff *skb;
Michael Buesch053b47f2007-02-12 00:53:26 -08001131 unsigned long flags;
Alan Coxf2545a72008-04-30 00:54:09 -07001132 int ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
1134#ifdef _DEBUG_TTYFUNCS
1135 printk(KERN_DEBUG "capinc_put_char(%u)\n", ch);
1136#endif
1137
Michael Buesch053b47f2007-02-12 00:53:26 -08001138 spin_lock_irqsave(&workaround_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 skb = mp->ttyskb;
1140 if (skb) {
1141 if (skb_tailroom(skb) > 0) {
1142 *(skb_put(skb, 1)) = ch;
Michael Buesch053b47f2007-02-12 00:53:26 -08001143 spin_unlock_irqrestore(&workaround_lock, flags);
Alan Coxf2545a72008-04-30 00:54:09 -07001144 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 }
1146 mp->ttyskb = NULL;
1147 skb_queue_tail(&mp->outqueue, skb);
1148 mp->outbytes += skb->len;
1149 (void)handle_minor_send(mp);
1150 }
1151 skb = alloc_skb(CAPI_DATA_B3_REQ_LEN+CAPI_MAX_BLKSIZE, GFP_ATOMIC);
1152 if (skb) {
1153 skb_reserve(skb, CAPI_DATA_B3_REQ_LEN);
1154 *(skb_put(skb, 1)) = ch;
1155 mp->ttyskb = skb;
1156 } else {
1157 printk(KERN_ERR "capinc_put_char: char %u lost\n", ch);
Alan Coxf2545a72008-04-30 00:54:09 -07001158 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 }
Michael Buesch053b47f2007-02-12 00:53:26 -08001160 spin_unlock_irqrestore(&workaround_lock, flags);
Alan Coxf2545a72008-04-30 00:54:09 -07001161 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162}
1163
1164static void capinc_tty_flush_chars(struct tty_struct *tty)
1165{
Jan Kiszka2c8df722010-02-08 10:12:30 +00001166 struct capiminor *mp = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 struct sk_buff *skb;
Michael Buesch053b47f2007-02-12 00:53:26 -08001168 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
1170#ifdef _DEBUG_TTYFUNCS
1171 printk(KERN_DEBUG "capinc_tty_flush_chars\n");
1172#endif
1173
Michael Buesch053b47f2007-02-12 00:53:26 -08001174 spin_lock_irqsave(&workaround_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 skb = mp->ttyskb;
1176 if (skb) {
1177 mp->ttyskb = NULL;
1178 skb_queue_tail(&mp->outqueue, skb);
1179 mp->outbytes += skb->len;
1180 (void)handle_minor_send(mp);
1181 }
1182 (void)handle_minor_recv(mp);
Michael Buesch053b47f2007-02-12 00:53:26 -08001183 spin_unlock_irqrestore(&workaround_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184}
1185
1186static int capinc_tty_write_room(struct tty_struct *tty)
1187{
Jan Kiszka2c8df722010-02-08 10:12:30 +00001188 struct capiminor *mp = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 int room;
Jan Kiszka2c8df722010-02-08 10:12:30 +00001190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 room = CAPINC_MAX_SENDQUEUE-skb_queue_len(&mp->outqueue);
1192 room *= CAPI_MAX_BLKSIZE;
1193#ifdef _DEBUG_TTYFUNCS
1194 printk(KERN_DEBUG "capinc_tty_write_room = %d\n", room);
1195#endif
1196 return room;
1197}
1198
Adrian Bunk408b6642005-05-01 08:59:29 -07001199static int capinc_tty_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200{
Jan Kiszka2c8df722010-02-08 10:12:30 +00001201 struct capiminor *mp = tty->driver_data;
1202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203#ifdef _DEBUG_TTYFUNCS
1204 printk(KERN_DEBUG "capinc_tty_chars_in_buffer = %d nack=%d sq=%d rq=%d\n",
1205 mp->outbytes, mp->nack,
1206 skb_queue_len(&mp->outqueue),
1207 skb_queue_len(&mp->inqueue));
1208#endif
1209 return mp->outbytes;
1210}
1211
1212static int capinc_tty_ioctl(struct tty_struct *tty, struct file * file,
1213 unsigned int cmd, unsigned long arg)
1214{
1215 int error = 0;
1216 switch (cmd) {
1217 default:
Stephen Rothwell53e86312008-10-13 10:44:33 +01001218 error = n_tty_ioctl_helper(tty, file, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 break;
1220 }
1221 return error;
1222}
1223
Alan Cox606d0992006-12-08 02:38:45 -08001224static void capinc_tty_set_termios(struct tty_struct *tty, struct ktermios * old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225{
1226#ifdef _DEBUG_TTYFUNCS
1227 printk(KERN_DEBUG "capinc_tty_set_termios\n");
1228#endif
1229}
1230
Jan Kiszka2c8df722010-02-08 10:12:30 +00001231static void capinc_tty_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232{
Jan Kiszka2c8df722010-02-08 10:12:30 +00001233 struct capiminor *mp = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234#ifdef _DEBUG_TTYFUNCS
1235 printk(KERN_DEBUG "capinc_tty_throttle\n");
1236#endif
Jan Kiszka2c8df722010-02-08 10:12:30 +00001237 mp->ttyinstop = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238}
1239
Jan Kiszka2c8df722010-02-08 10:12:30 +00001240static void capinc_tty_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241{
Jan Kiszka2c8df722010-02-08 10:12:30 +00001242 struct capiminor *mp = tty->driver_data;
Michael Buesch053b47f2007-02-12 00:53:26 -08001243 unsigned long flags;
Jan Kiszka2c8df722010-02-08 10:12:30 +00001244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245#ifdef _DEBUG_TTYFUNCS
1246 printk(KERN_DEBUG "capinc_tty_unthrottle\n");
1247#endif
Jan Kiszka2c8df722010-02-08 10:12:30 +00001248 spin_lock_irqsave(&workaround_lock, flags);
1249 mp->ttyinstop = 0;
1250 handle_minor_recv(mp);
1251 spin_unlock_irqrestore(&workaround_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252}
1253
1254static void capinc_tty_stop(struct tty_struct *tty)
1255{
Jan Kiszka2c8df722010-02-08 10:12:30 +00001256 struct capiminor *mp = tty->driver_data;
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258#ifdef _DEBUG_TTYFUNCS
1259 printk(KERN_DEBUG "capinc_tty_stop\n");
1260#endif
Jan Kiszka2c8df722010-02-08 10:12:30 +00001261 mp->ttyoutstop = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262}
1263
1264static void capinc_tty_start(struct tty_struct *tty)
1265{
Jan Kiszka2c8df722010-02-08 10:12:30 +00001266 struct capiminor *mp = tty->driver_data;
Michael Buesch053b47f2007-02-12 00:53:26 -08001267 unsigned long flags;
Jan Kiszka2c8df722010-02-08 10:12:30 +00001268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269#ifdef _DEBUG_TTYFUNCS
1270 printk(KERN_DEBUG "capinc_tty_start\n");
1271#endif
Jan Kiszka2c8df722010-02-08 10:12:30 +00001272 spin_lock_irqsave(&workaround_lock, flags);
1273 mp->ttyoutstop = 0;
1274 (void)handle_minor_send(mp);
1275 spin_unlock_irqrestore(&workaround_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276}
1277
1278static void capinc_tty_hangup(struct tty_struct *tty)
1279{
Jan Kiszkafb4b4882010-02-08 10:12:29 +00001280 struct capiminor *mp = tty->driver_data;
1281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282#ifdef _DEBUG_TTYFUNCS
1283 printk(KERN_DEBUG "capinc_tty_hangup\n");
1284#endif
Jan Kiszkafb4b4882010-02-08 10:12:29 +00001285 tty_port_hangup(&mp->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286}
1287
Alan Cox9e989662008-07-22 11:18:03 +01001288static int capinc_tty_break_ctl(struct tty_struct *tty, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
1290#ifdef _DEBUG_TTYFUNCS
1291 printk(KERN_DEBUG "capinc_tty_break_ctl(%d)\n", state);
1292#endif
Alan Cox9e989662008-07-22 11:18:03 +01001293 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294}
1295
1296static void capinc_tty_flush_buffer(struct tty_struct *tty)
1297{
1298#ifdef _DEBUG_TTYFUNCS
1299 printk(KERN_DEBUG "capinc_tty_flush_buffer\n");
1300#endif
1301}
1302
1303static void capinc_tty_set_ldisc(struct tty_struct *tty)
1304{
1305#ifdef _DEBUG_TTYFUNCS
1306 printk(KERN_DEBUG "capinc_tty_set_ldisc\n");
1307#endif
1308}
1309
1310static void capinc_tty_send_xchar(struct tty_struct *tty, char ch)
1311{
1312#ifdef _DEBUG_TTYFUNCS
1313 printk(KERN_DEBUG "capinc_tty_send_xchar(%d)\n", ch);
1314#endif
1315}
1316
Jeff Dikeb68e31d2006-10-02 02:17:18 -07001317static const struct tty_operations capinc_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 .open = capinc_tty_open,
1319 .close = capinc_tty_close,
1320 .write = capinc_tty_write,
1321 .put_char = capinc_tty_put_char,
1322 .flush_chars = capinc_tty_flush_chars,
1323 .write_room = capinc_tty_write_room,
1324 .chars_in_buffer = capinc_tty_chars_in_buffer,
1325 .ioctl = capinc_tty_ioctl,
1326 .set_termios = capinc_tty_set_termios,
1327 .throttle = capinc_tty_throttle,
1328 .unthrottle = capinc_tty_unthrottle,
1329 .stop = capinc_tty_stop,
1330 .start = capinc_tty_start,
1331 .hangup = capinc_tty_hangup,
1332 .break_ctl = capinc_tty_break_ctl,
1333 .flush_buffer = capinc_tty_flush_buffer,
1334 .set_ldisc = capinc_tty_set_ldisc,
1335 .send_xchar = capinc_tty_send_xchar,
Jan Kiszka46324512010-02-08 10:12:28 +00001336 .install = capinc_tty_install,
1337 .cleanup = capinc_tty_cleanup,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338};
1339
Jan Kiszkae76b1542010-02-08 10:12:24 +00001340static int __init capinc_tty_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341{
1342 struct tty_driver *drv;
Jan Kiszkae76b1542010-02-08 10:12:24 +00001343 int err;
1344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 if (capi_ttyminors > CAPINC_MAX_PORTS)
1346 capi_ttyminors = CAPINC_MAX_PORTS;
1347 if (capi_ttyminors <= 0)
1348 capi_ttyminors = CAPINC_NR_PORTS;
1349
Jan Kiszka81d17fe2010-02-08 10:12:23 +00001350 capiminors = kzalloc(sizeof(struct capi_minor *) * capi_ttyminors,
1351 GFP_KERNEL);
1352 if (!capiminors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 return -ENOMEM;
1354
Jan Kiszka81d17fe2010-02-08 10:12:23 +00001355 drv = alloc_tty_driver(capi_ttyminors);
1356 if (!drv) {
1357 kfree(capiminors);
1358 return -ENOMEM;
1359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 drv->owner = THIS_MODULE;
1361 drv->driver_name = "capi_nc";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 drv->name = "capi";
Jan Kiszkae95ac142010-02-08 10:12:26 +00001363 drv->major = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 drv->minor_start = 0;
1365 drv->type = TTY_DRIVER_TYPE_SERIAL;
1366 drv->subtype = SERIAL_TYPE_NORMAL;
1367 drv->init_termios = tty_std_termios;
1368 drv->init_termios.c_iflag = ICRNL;
1369 drv->init_termios.c_oflag = OPOST | ONLCR;
1370 drv->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
1371 drv->init_termios.c_lflag = 0;
Jan Kiszka40fb2d02010-02-08 10:12:25 +00001372 drv->flags =
1373 TTY_DRIVER_REAL_RAW | TTY_DRIVER_RESET_TERMIOS |
1374 TTY_DRIVER_DYNAMIC_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 tty_set_operations(drv, &capinc_ops);
Jan Kiszkae76b1542010-02-08 10:12:24 +00001376
1377 err = tty_register_driver(drv);
1378 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 put_tty_driver(drv);
Jan Kiszka81d17fe2010-02-08 10:12:23 +00001380 kfree(capiminors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 printk(KERN_ERR "Couldn't register capi_nc driver\n");
Jan Kiszkae76b1542010-02-08 10:12:24 +00001382 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 }
1384 capinc_tty_driver = drv;
1385 return 0;
1386}
1387
Jan Kiszkae76b1542010-02-08 10:12:24 +00001388static void __exit capinc_tty_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389{
Jan Kiszkae76b1542010-02-08 10:12:24 +00001390 tty_unregister_driver(capinc_tty_driver);
1391 put_tty_driver(capinc_tty_driver);
Jan Kiszka81d17fe2010-02-08 10:12:23 +00001392 kfree(capiminors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393}
1394
Jan Kiszka501c87a2010-02-08 10:12:16 +00001395#else /* !CONFIG_ISDN_CAPI_MIDDLEWARE */
1396
1397static inline int capinc_tty_init(void)
1398{
1399 return 0;
1400}
1401
1402static inline void capinc_tty_exit(void) { }
1403
1404#endif /* !CONFIG_ISDN_CAPI_MIDDLEWARE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
1406/* -------- /proc functions ----------------------------------------- */
1407
1408/*
1409 * /proc/capi/capi20:
1410 * minor applid nrecvctlpkt nrecvdatapkt nsendctlpkt nsenddatapkt
1411 */
Alexey Dobriyan9a58a802010-01-14 03:10:54 -08001412static int capi20_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413{
1414 struct capidev *cdev;
1415 struct list_head *l;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
Jan Kiszkab8f433d2010-02-08 10:12:17 +00001417 mutex_lock(&capidev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 list_for_each(l, &capidev_list) {
1419 cdev = list_entry(l, struct capidev, list);
Alexey Dobriyan9a58a802010-01-14 03:10:54 -08001420 seq_printf(m, "0 %d %lu %lu %lu %lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 cdev->ap.applid,
1422 cdev->ap.nrecvctlpkt,
1423 cdev->ap.nrecvdatapkt,
1424 cdev->ap.nsentctlpkt,
1425 cdev->ap.nsentdatapkt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 }
Jan Kiszkab8f433d2010-02-08 10:12:17 +00001427 mutex_unlock(&capidev_list_lock);
Alexey Dobriyan9a58a802010-01-14 03:10:54 -08001428 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429}
1430
Alexey Dobriyan9a58a802010-01-14 03:10:54 -08001431static int capi20_proc_open(struct inode *inode, struct file *file)
1432{
1433 return single_open(file, capi20_proc_show, NULL);
1434}
1435
1436static const struct file_operations capi20_proc_fops = {
1437 .owner = THIS_MODULE,
1438 .open = capi20_proc_open,
1439 .read = seq_read,
1440 .llseek = seq_lseek,
1441 .release = single_release,
1442};
1443
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444/*
1445 * /proc/capi/capi20ncci:
1446 * applid ncci
1447 */
Alexey Dobriyan9a58a802010-01-14 03:10:54 -08001448static int capi20ncci_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449{
Jan Kiszka884f5c42010-02-08 10:12:22 +00001450 struct capidev *cdev;
1451 struct capincci *np;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Jan Kiszkab8f433d2010-02-08 10:12:17 +00001453 mutex_lock(&capidev_list_lock);
Jan Kiszka884f5c42010-02-08 10:12:22 +00001454 list_for_each_entry(cdev, &capidev_list, list) {
Jan Kiszka05b41492010-02-08 10:12:19 +00001455 mutex_lock(&cdev->lock);
Jan Kiszka884f5c42010-02-08 10:12:22 +00001456 list_for_each_entry(np, &cdev->nccis, list)
1457 seq_printf(m, "%d 0x%x\n", cdev->ap.applid, np->ncci);
Jan Kiszka05b41492010-02-08 10:12:19 +00001458 mutex_unlock(&cdev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 }
Jan Kiszkab8f433d2010-02-08 10:12:17 +00001460 mutex_unlock(&capidev_list_lock);
Alexey Dobriyan9a58a802010-01-14 03:10:54 -08001461 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462}
1463
Alexey Dobriyan9a58a802010-01-14 03:10:54 -08001464static int capi20ncci_proc_open(struct inode *inode, struct file *file)
1465{
1466 return single_open(file, capi20ncci_proc_show, NULL);
1467}
1468
1469static const struct file_operations capi20ncci_proc_fops = {
1470 .owner = THIS_MODULE,
1471 .open = capi20ncci_proc_open,
1472 .read = seq_read,
1473 .llseek = seq_lseek,
1474 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475};
1476
1477static void __init proc_init(void)
1478{
Alexey Dobriyan9a58a802010-01-14 03:10:54 -08001479 proc_create("capi/capi20", 0, NULL, &capi20_proc_fops);
1480 proc_create("capi/capi20ncci", 0, NULL, &capi20ncci_proc_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481}
1482
1483static void __exit proc_exit(void)
1484{
Alexey Dobriyan9a58a802010-01-14 03:10:54 -08001485 remove_proc_entry("capi/capi20", NULL);
1486 remove_proc_entry("capi/capi20ncci", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487}
1488
1489/* -------- init function and module interface ---------------------- */
1490
1491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492static int __init capi_init(void)
1493{
Jan Kiszka88549d62010-02-08 10:12:09 +00001494 const char *compileinfo;
Andrew Morton6d9eac32006-03-28 01:56:19 -08001495 int major_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Andrew Morton6d9eac32006-03-28 01:56:19 -08001497 major_ret = register_chrdev(capi_major, "capi20", &capi_fops);
1498 if (major_ret < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 printk(KERN_ERR "capi20: unable to get major %d\n", capi_major);
Andrew Morton6d9eac32006-03-28 01:56:19 -08001500 return major_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 }
gregkh@suse.de56b22932005-03-23 10:01:41 -08001502 capi_class = class_create(THIS_MODULE, "capi");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 if (IS_ERR(capi_class)) {
1504 unregister_chrdev(capi_major, "capi20");
1505 return PTR_ERR(capi_class);
1506 }
1507
Greg Kroah-Hartmana9b12612008-07-21 20:03:34 -07001508 device_create(capi_class, NULL, MKDEV(capi_major, 0), NULL, "capi");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 if (capinc_tty_init() < 0) {
Tony Jonesd78b0362007-09-25 02:03:03 +02001511 device_destroy(capi_class, MKDEV(capi_major, 0));
gregkh@suse.de56b22932005-03-23 10:01:41 -08001512 class_destroy(capi_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 unregister_chrdev(capi_major, "capi20");
1514 return -ENOMEM;
1515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
1517 proc_init();
1518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519#if defined(CONFIG_ISDN_CAPI_CAPIFS) || defined(CONFIG_ISDN_CAPI_CAPIFS_MODULE)
1520 compileinfo = " (middleware+capifs)";
Jan Kiszka501c87a2010-02-08 10:12:16 +00001521#elif defined(CONFIG_ISDN_CAPI_MIDDLEWARE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 compileinfo = " (no capifs)";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523#else
1524 compileinfo = " (no middleware)";
1525#endif
Jan Kiszka88549d62010-02-08 10:12:09 +00001526 printk(KERN_NOTICE "CAPI 2.0 started up with major %d%s\n",
1527 capi_major, compileinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
1529 return 0;
1530}
1531
1532static void __exit capi_exit(void)
1533{
1534 proc_exit();
1535
Tony Jonesd78b0362007-09-25 02:03:03 +02001536 device_destroy(capi_class, MKDEV(capi_major, 0));
gregkh@suse.de56b22932005-03-23 10:01:41 -08001537 class_destroy(capi_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 unregister_chrdev(capi_major, "capi20");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 capinc_tty_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541}
1542
1543module_init(capi_init);
1544module_exit(capi_exit);