blob: b902794bbf07b6c349924b866fe9aa6bfab40794 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/timer.h>
24#include <linux/wait.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/tty.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/netdevice.h>
27#include <linux/ppp_defs.h>
Paul Mackerras4b32da2b2012-03-04 12:56:55 +000028#include <linux/ppp-ioctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/skbuff.h>
30#include <linux/proc_fs.h>
Alexey Dobriyan9a58a802010-01-14 03:10:54 -080031#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/isdn/capiutil.h>
39#include <linux/isdn/capicmd.h>
Jan Kiszka90926f02010-02-08 10:12:06 +000040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041MODULE_DESCRIPTION("CAPI4Linux: Userspace /dev/capi20 interface");
42MODULE_AUTHOR("Carsten Paeth");
43MODULE_LICENSE("GPL");
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045/* -------- driver information -------------------------------------- */
46
Arnd Bergmann76a64922010-07-11 11:18:53 +000047static DEFINE_MUTEX(capi_mutex);
gregkh@suse.de56b22932005-03-23 10:01:41 -080048static struct class *capi_class;
Adrian Bunk408b6642005-05-01 08:59:29 -070049static int capi_major = 68; /* allocated */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51module_param_named(major, capi_major, uint, 0);
Jan Kiszka501c87a2010-02-08 10:12:16 +000052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
Jan Kiszka501c87a2010-02-08 10:12:16 +000054#define CAPINC_NR_PORTS 32
55#define CAPINC_MAX_PORTS 256
56
Jan Kiszka501c87a2010-02-08 10:12:16 +000057static int capi_ttyminors = CAPINC_NR_PORTS;
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059module_param_named(ttyminors, capi_ttyminors, uint, 0);
60#endif /* CONFIG_ISDN_CAPI_MIDDLEWARE */
61
62/* -------- defines ------------------------------------------------- */
63
64#define CAPINC_MAX_RECVQUEUE 10
65#define CAPINC_MAX_SENDQUEUE 10
66#define CAPI_MAX_BLKSIZE 2048
67
68/* -------- data structures ----------------------------------------- */
69
70struct capidev;
71struct capincci;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072struct capiminor;
73
Jan Kiszka42651b52010-02-08 10:12:37 +000074struct ackqueue_entry {
Michael Buesch6aa65472006-06-26 00:25:30 -070075 struct list_head list;
76 u16 datahandle;
77};
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079struct capiminor {
Jan Kiszka0159d542010-02-08 10:12:27 +000080 struct kref kref;
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 unsigned int minor;
83
Jan Kiszka42792712010-02-08 10:12:38 +000084 struct capi20_appl *ap;
85 u32 ncci;
86 atomic_t datahandle;
87 atomic_t msgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Jan Kiszkafb4b4882010-02-08 10:12:29 +000089 struct tty_port port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 int ttyinstop;
91 int ttyoutstop;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Jan Kiszkadfbb84f2010-02-08 10:12:40 +000093 struct sk_buff_head inqueue;
94
95 struct sk_buff_head outqueue;
96 int outbytes;
97 struct sk_buff *outskb;
98 spinlock_t outlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 /* transmit path */
Michael Buesch6aa65472006-06-26 00:25:30 -0700101 struct list_head ackqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 int nack;
Michael Buesch6aa65472006-06-26 00:25:30 -0700103 spinlock_t ackqlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106struct capincci {
Jan Kiszka884f5c42010-02-08 10:12:22 +0000107 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 u32 ncci;
109 struct capidev *cdev;
110#ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
111 struct capiminor *minorp;
112#endif /* CONFIG_ISDN_CAPI_MIDDLEWARE */
113};
114
115struct capidev {
116 struct list_head list;
117 struct capi20_appl ap;
118 u16 errcode;
119 unsigned userflags;
120
121 struct sk_buff_head recvqueue;
122 wait_queue_head_t recvwait;
123
Jan Kiszka884f5c42010-02-08 10:12:22 +0000124 struct list_head nccis;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Jan Kiszka05b41492010-02-08 10:12:19 +0000126 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127};
128
129/* -------- global variables ---------------------------------------- */
130
Jan Kiszkab8f433d2010-02-08 10:12:17 +0000131static DEFINE_MUTEX(capidev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132static LIST_HEAD(capidev_list);
133
134#ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
Jan Kiszka501c87a2010-02-08 10:12:16 +0000135
Jan Kiszka3d5d30f2010-02-08 10:12:33 +0000136static DEFINE_SPINLOCK(capiminors_lock);
Jan Kiszka81d17fe2010-02-08 10:12:23 +0000137static struct capiminor **capiminors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Jan Kiszka40fb2d02010-02-08 10:12:25 +0000139static struct tty_driver *capinc_tty_driver;
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141/* -------- datahandles --------------------------------------------- */
142
Jan Kiszka501c87a2010-02-08 10:12:16 +0000143static int capiminor_add_ack(struct capiminor *mp, u16 datahandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Jan Kiszka42651b52010-02-08 10:12:37 +0000145 struct ackqueue_entry *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 n = kmalloc(sizeof(*n), GFP_ATOMIC);
Michael Buesch6aa65472006-06-26 00:25:30 -0700148 if (unlikely(!n)) {
149 printk(KERN_ERR "capi: alloc datahandle failed\n");
150 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 n->datahandle = datahandle;
Michael Buesch6aa65472006-06-26 00:25:30 -0700153 INIT_LIST_HEAD(&n->list);
Jan Kiszka2b72b5b2010-02-08 10:12:41 +0000154 spin_lock_bh(&mp->ackqlock);
Michael Buesch6aa65472006-06-26 00:25:30 -0700155 list_add_tail(&n->list, &mp->ackqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 mp->nack++;
Jan Kiszka2b72b5b2010-02-08 10:12:41 +0000157 spin_unlock_bh(&mp->ackqlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 return 0;
159}
160
161static int capiminor_del_ack(struct capiminor *mp, u16 datahandle)
162{
Jan Kiszka42651b52010-02-08 10:12:37 +0000163 struct ackqueue_entry *p, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Jan Kiszka2b72b5b2010-02-08 10:12:41 +0000165 spin_lock_bh(&mp->ackqlock);
Michael Buesch6aa65472006-06-26 00:25:30 -0700166 list_for_each_entry_safe(p, tmp, &mp->ackqueue, list) {
Joe Perches475be4d2012-02-19 19:52:38 -0800167 if (p->datahandle == datahandle) {
Michael Buesch6aa65472006-06-26 00:25:30 -0700168 list_del(&p->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 mp->nack--;
Jan Kiszka2b72b5b2010-02-08 10:12:41 +0000170 spin_unlock_bh(&mp->ackqlock);
171 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return 0;
173 }
174 }
Jan Kiszka2b72b5b2010-02-08 10:12:41 +0000175 spin_unlock_bh(&mp->ackqlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 return -1;
177}
178
179static void capiminor_del_all_ack(struct capiminor *mp)
180{
Jan Kiszka42651b52010-02-08 10:12:37 +0000181 struct ackqueue_entry *p, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Michael Buesch6aa65472006-06-26 00:25:30 -0700183 list_for_each_entry_safe(p, tmp, &mp->ackqueue, list) {
184 list_del(&p->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 kfree(p);
186 mp->nack--;
187 }
188}
189
190
191/* -------- struct capiminor ---------------------------------------- */
192
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000193static const struct tty_port_operations capiminor_port_ops; /* we have none */
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195static struct capiminor *capiminor_alloc(struct capi20_appl *ap, u32 ncci)
196{
Jan Kiszka81d17fe2010-02-08 10:12:23 +0000197 struct capiminor *mp;
Jan Kiszka40fb2d02010-02-08 10:12:25 +0000198 struct device *dev;
Jan Kiszka81d17fe2010-02-08 10:12:23 +0000199 unsigned int minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Jan Kiszka54f0fad2010-02-08 10:12:20 +0000201 mp = kzalloc(sizeof(*mp), GFP_KERNEL);
Joe Perches475be4d2012-02-19 19:52:38 -0800202 if (!mp) {
203 printk(KERN_ERR "capi: can't alloc capiminor\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return NULL;
205 }
206
Jan Kiszka0159d542010-02-08 10:12:27 +0000207 kref_init(&mp->kref);
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 mp->ap = ap;
210 mp->ncci = ncci;
Michael Buesch6aa65472006-06-26 00:25:30 -0700211 INIT_LIST_HEAD(&mp->ackqueue);
212 spin_lock_init(&mp->ackqlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 skb_queue_head_init(&mp->inqueue);
215 skb_queue_head_init(&mp->outqueue);
Jan Kiszkadfbb84f2010-02-08 10:12:40 +0000216 spin_lock_init(&mp->outlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000218 tty_port_init(&mp->port);
219 mp->port.ops = &capiminor_port_ops;
220
Jan Kiszka81d17fe2010-02-08 10:12:23 +0000221 /* Allocate the least unused minor number. */
Jan Kiszka3d5d30f2010-02-08 10:12:33 +0000222 spin_lock(&capiminors_lock);
Jan Kiszka81d17fe2010-02-08 10:12:23 +0000223 for (minor = 0; minor < capi_ttyminors; minor++)
224 if (!capiminors[minor]) {
225 capiminors[minor] = mp;
226 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 }
Jan Kiszka3d5d30f2010-02-08 10:12:33 +0000228 spin_unlock(&capiminors_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Jan Kiszka81d17fe2010-02-08 10:12:23 +0000230 if (minor == capi_ttyminors) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 printk(KERN_NOTICE "capi: out of minors\n");
Jan Kiszka40fb2d02010-02-08 10:12:25 +0000232 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 }
234
Jan Kiszka81d17fe2010-02-08 10:12:23 +0000235 mp->minor = minor;
236
Jan Kiszka40fb2d02010-02-08 10:12:25 +0000237 dev = tty_register_device(capinc_tty_driver, minor, NULL);
238 if (IS_ERR(dev))
239 goto err_out2;
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return mp;
Jan Kiszka40fb2d02010-02-08 10:12:25 +0000242
243err_out2:
Jan Kiszka3d5d30f2010-02-08 10:12:33 +0000244 spin_lock(&capiminors_lock);
Jan Kiszka40fb2d02010-02-08 10:12:25 +0000245 capiminors[minor] = NULL;
Jan Kiszka3d5d30f2010-02-08 10:12:33 +0000246 spin_unlock(&capiminors_lock);
Jan Kiszka40fb2d02010-02-08 10:12:25 +0000247
248err_out1:
249 kfree(mp);
250 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
Jan Kiszka0159d542010-02-08 10:12:27 +0000253static void capiminor_destroy(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Jan Kiszka0159d542010-02-08 10:12:27 +0000255 struct capiminor *mp = container_of(kref, struct capiminor, kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Jan Kiszkadfbb84f2010-02-08 10:12:40 +0000257 kfree_skb(mp->outskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 skb_queue_purge(&mp->inqueue);
259 skb_queue_purge(&mp->outqueue);
260 capiminor_del_all_ack(mp);
261 kfree(mp);
262}
263
Jan Kiszka40fb2d02010-02-08 10:12:25 +0000264static struct capiminor *capiminor_get(unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Jan Kiszka81d17fe2010-02-08 10:12:23 +0000266 struct capiminor *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Jan Kiszka3d5d30f2010-02-08 10:12:33 +0000268 spin_lock(&capiminors_lock);
Jan Kiszka81d17fe2010-02-08 10:12:23 +0000269 mp = capiminors[minor];
Jan Kiszka0159d542010-02-08 10:12:27 +0000270 if (mp)
271 kref_get(&mp->kref);
Jan Kiszka3d5d30f2010-02-08 10:12:33 +0000272 spin_unlock(&capiminors_lock);
Jan Kiszka81d17fe2010-02-08 10:12:23 +0000273
274 return mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Jan Kiszka0159d542010-02-08 10:12:27 +0000277static inline void capiminor_put(struct capiminor *mp)
278{
279 kref_put(&mp->kref, capiminor_destroy);
280}
281
282static void capiminor_free(struct capiminor *mp)
283{
Jan Kiszka0159d542010-02-08 10:12:27 +0000284 tty_unregister_device(capinc_tty_driver, mp->minor);
285
Jan Kiszka3d5d30f2010-02-08 10:12:33 +0000286 spin_lock(&capiminors_lock);
Jan Kiszka0159d542010-02-08 10:12:27 +0000287 capiminors[mp->minor] = NULL;
Jan Kiszka3d5d30f2010-02-08 10:12:33 +0000288 spin_unlock(&capiminors_lock);
Jan Kiszka0159d542010-02-08 10:12:27 +0000289
290 capiminor_put(mp);
291}
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293/* -------- struct capincci ----------------------------------------- */
294
Jan Kiszka501c87a2010-02-08 10:12:16 +0000295static void capincci_alloc_minor(struct capidev *cdev, struct capincci *np)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
Jan Kiszka1f90d662011-04-06 10:58:37 +0000297 if (cdev->userflags & CAPIFLAG_HIGHJACKING)
298 np->minorp = capiminor_alloc(&cdev->ap, np->ncci);
Jan Kiszka501c87a2010-02-08 10:12:16 +0000299}
300
301static void capincci_free_minor(struct capincci *np)
302{
303 struct capiminor *mp = np->minorp;
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000304 struct tty_struct *tty;
Jan Kiszka501c87a2010-02-08 10:12:16 +0000305
306 if (mp) {
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000307 tty = tty_port_tty_get(&mp->port);
308 if (tty) {
Jan Kiszka30bced92010-02-08 10:12:31 +0000309 tty_vhangup(tty);
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000310 tty_kref_put(tty);
Jan Kiszka501c87a2010-02-08 10:12:16 +0000311 }
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000312
313 capiminor_free(mp);
Jan Kiszka501c87a2010-02-08 10:12:16 +0000314 }
315}
316
317static inline unsigned int capincci_minor_opencount(struct capincci *np)
318{
319 struct capiminor *mp = np->minorp;
Jan Kiszkaa84fdf42010-02-08 10:12:34 +0000320 unsigned int count = 0;
321 struct tty_struct *tty;
Jan Kiszka501c87a2010-02-08 10:12:16 +0000322
Jan Kiszkaa84fdf42010-02-08 10:12:34 +0000323 if (mp) {
324 tty = tty_port_tty_get(&mp->port);
325 if (tty) {
326 count = tty->count;
327 tty_kref_put(tty);
328 }
329 }
330 return count;
Jan Kiszka501c87a2010-02-08 10:12:16 +0000331}
332
333#else /* !CONFIG_ISDN_CAPI_MIDDLEWARE */
334
335static inline void
336capincci_alloc_minor(struct capidev *cdev, struct capincci *np) { }
337static inline void capincci_free_minor(struct capincci *np) { }
338
339static inline unsigned int capincci_minor_opencount(struct capincci *np)
340{
341 return 0;
342}
343
344#endif /* !CONFIG_ISDN_CAPI_MIDDLEWARE */
345
346static struct capincci *capincci_alloc(struct capidev *cdev, u32 ncci)
347{
Jan Kiszka884f5c42010-02-08 10:12:22 +0000348 struct capincci *np;
Jan Kiszka501c87a2010-02-08 10:12:16 +0000349
Jan Kiszka54f0fad2010-02-08 10:12:20 +0000350 np = kzalloc(sizeof(*np), GFP_KERNEL);
Jan Kiszka501c87a2010-02-08 10:12:16 +0000351 if (!np)
352 return NULL;
353 np->ncci = ncci;
354 np->cdev = cdev;
355
356 capincci_alloc_minor(cdev, np);
357
Jan Kiszka884f5c42010-02-08 10:12:22 +0000358 list_add_tail(&np->list, &cdev->nccis);
359
360 return np;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
362
363static void capincci_free(struct capidev *cdev, u32 ncci)
364{
Jan Kiszka884f5c42010-02-08 10:12:22 +0000365 struct capincci *np, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Jan Kiszka884f5c42010-02-08 10:12:22 +0000367 list_for_each_entry_safe(np, tmp, &cdev->nccis, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 if (ncci == 0xffffffff || np->ncci == ncci) {
Jan Kiszka501c87a2010-02-08 10:12:16 +0000369 capincci_free_minor(np);
Jan Kiszka884f5c42010-02-08 10:12:22 +0000370 list_del(&np->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 kfree(np);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
375static struct capincci *capincci_find(struct capidev *cdev, u32 ncci)
376{
Jan Kiszka884f5c42010-02-08 10:12:22 +0000377 struct capincci *np;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Jan Kiszka884f5c42010-02-08 10:12:22 +0000379 list_for_each_entry(np, &cdev->nccis, list)
380 if (np->ncci == ncci)
381 return np;
382 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385#ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
386/* -------- handle data queue --------------------------------------- */
387
388static struct sk_buff *
389gen_data_b3_resp_for(struct capiminor *mp, struct sk_buff *skb)
390{
391 struct sk_buff *nskb;
Jan Kiszkadfbb84f2010-02-08 10:12:40 +0000392 nskb = alloc_skb(CAPI_DATA_B3_RESP_LEN, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (nskb) {
Joe Perches475be4d2012-02-19 19:52:38 -0800394 u16 datahandle = CAPIMSG_U16(skb->data, CAPIMSG_BASELEN + 4 + 4 + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 unsigned char *s = skb_put(nskb, CAPI_DATA_B3_RESP_LEN);
396 capimsg_setu16(s, 0, CAPI_DATA_B3_RESP_LEN);
397 capimsg_setu16(s, 2, mp->ap->applid);
398 capimsg_setu8 (s, 4, CAPI_DATA_B3);
399 capimsg_setu8 (s, 5, CAPI_RESP);
Jan Kiszka42792712010-02-08 10:12:38 +0000400 capimsg_setu16(s, 6, atomic_inc_return(&mp->msgid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 capimsg_setu32(s, 8, mp->ncci);
402 capimsg_setu16(s, 12, datahandle);
403 }
404 return nskb;
405}
406
407static int handle_recv_skb(struct capiminor *mp, struct sk_buff *skb)
408{
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000409 unsigned int datalen = skb->len - CAPIMSG_LEN(skb->data);
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000410 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 struct sk_buff *nskb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 u16 errcode, datahandle;
413 struct tty_ldisc *ld;
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000414 int ret = -1;
415
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000416 tty = tty_port_tty_get(&mp->port);
417 if (!tty) {
David S. Miller8fb53b92011-05-19 18:20:29 -0400418 pr_debug("capi: currently no receiver\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 return -1;
420 }
Joe Perches475be4d2012-02-19 19:52:38 -0800421
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000422 ld = tty_ldisc_ref(tty);
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000423 if (!ld) {
424 /* fatal error, do not requeue */
425 ret = 0;
426 kfree_skb(skb);
427 goto deref_tty;
428 }
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000429
Alan Coxa352def2008-07-16 21:53:12 +0100430 if (ld->ops->receive_buf == NULL) {
David S. Miller8fb53b92011-05-19 18:20:29 -0400431 pr_debug("capi: ldisc has no receive_buf function\n");
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000432 /* fatal error, do not requeue */
433 goto free_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
435 if (mp->ttyinstop) {
David S. Miller8fb53b92011-05-19 18:20:29 -0400436 pr_debug("capi: recv tty throttled\n");
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000437 goto deref_ldisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000439
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000440 if (tty->receive_room < datalen) {
David S. Miller8fb53b92011-05-19 18:20:29 -0400441 pr_debug("capi: no room in tty\n");
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000442 goto deref_ldisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000444
445 nskb = gen_data_b3_resp_for(mp, skb);
446 if (!nskb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 printk(KERN_ERR "capi: gen_data_b3_resp failed\n");
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000448 goto deref_ldisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000450
451 datahandle = CAPIMSG_U16(skb->data, CAPIMSG_BASELEN + 4);
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 errcode = capi20_put_message(mp->ap, nskb);
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000454
455 if (errcode == CAPI_NOERROR) {
456 skb_pull(skb, CAPIMSG_LEN(skb->data));
David S. Miller8fb53b92011-05-19 18:20:29 -0400457 pr_debug("capi: DATA_B3_RESP %u len=%d => ldisc\n",
458 datahandle, skb->len);
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000459 ld->ops->receive_buf(tty, skb->data, NULL, skb->len);
460 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 printk(KERN_ERR "capi: send DATA_B3_RESP failed=%x\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800462 errcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 kfree_skb(nskb);
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000464
465 if (errcode == CAPI_SENDQUEUEFULL)
466 goto deref_ldisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 }
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000468
469free_skb:
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000470 ret = 0;
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000471 kfree_skb(skb);
472
473deref_ldisc:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 tty_ldisc_deref(ld);
Jan Kiszkaa11ef7b2010-02-08 10:12:36 +0000475
476deref_tty:
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000477 tty_kref_put(tty);
478 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
481static void handle_minor_recv(struct capiminor *mp)
482{
483 struct sk_buff *skb;
Jan Kiszka68d73472010-02-08 10:12:39 +0000484
485 while ((skb = skb_dequeue(&mp->inqueue)) != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 if (handle_recv_skb(mp, skb) < 0) {
487 skb_queue_head(&mp->inqueue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 return;
489 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
Jan Kiszkaeef0ced2010-02-08 10:12:42 +0000492static void handle_minor_send(struct capiminor *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000494 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 struct sk_buff *skb;
496 u16 len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 u16 errcode;
498 u16 datahandle;
499
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000500 tty = tty_port_tty_get(&mp->port);
501 if (!tty)
Jan Kiszkaeef0ced2010-02-08 10:12:42 +0000502 return;
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000503
504 if (mp->ttyoutstop) {
David S. Miller8fb53b92011-05-19 18:20:29 -0400505 pr_debug("capi: send: tty stopped\n");
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000506 tty_kref_put(tty);
Jan Kiszkaeef0ced2010-02-08 10:12:42 +0000507 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 }
509
Jan Kiszkadfbb84f2010-02-08 10:12:40 +0000510 while (1) {
511 spin_lock_bh(&mp->outlock);
512 skb = __skb_dequeue(&mp->outqueue);
513 if (!skb) {
514 spin_unlock_bh(&mp->outlock);
515 break;
516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 len = (u16)skb->len;
Jan Kiszkadfbb84f2010-02-08 10:12:40 +0000518 mp->outbytes -= len;
519 spin_unlock_bh(&mp->outlock);
520
521 datahandle = atomic_inc_return(&mp->datahandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 skb_push(skb, CAPI_DATA_B3_REQ_LEN);
523 memset(skb->data, 0, CAPI_DATA_B3_REQ_LEN);
524 capimsg_setu16(skb->data, 0, CAPI_DATA_B3_REQ_LEN);
525 capimsg_setu16(skb->data, 2, mp->ap->applid);
526 capimsg_setu8 (skb->data, 4, CAPI_DATA_B3);
527 capimsg_setu8 (skb->data, 5, CAPI_REQ);
Jan Kiszka42792712010-02-08 10:12:38 +0000528 capimsg_setu16(skb->data, 6, atomic_inc_return(&mp->msgid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 capimsg_setu32(skb->data, 8, mp->ncci); /* NCCI */
Andrew Morton5e6c20a2007-07-17 04:04:22 -0700530 capimsg_setu32(skb->data, 12, (u32)(long)skb->data);/* Data32 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 capimsg_setu16(skb->data, 16, len); /* Data length */
532 capimsg_setu16(skb->data, 18, datahandle);
533 capimsg_setu16(skb->data, 20, 0); /* Flags */
534
Jan Kiszka501c87a2010-02-08 10:12:16 +0000535 if (capiminor_add_ack(mp, datahandle) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 skb_pull(skb, CAPI_DATA_B3_REQ_LEN);
Jan Kiszkadfbb84f2010-02-08 10:12:40 +0000537
538 spin_lock_bh(&mp->outlock);
539 __skb_queue_head(&mp->outqueue, skb);
540 mp->outbytes += len;
541 spin_unlock_bh(&mp->outlock);
542
Jan Kiszkaeef0ced2010-02-08 10:12:42 +0000543 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 }
545 errcode = capi20_put_message(mp->ap, skb);
546 if (errcode == CAPI_NOERROR) {
David S. Miller8fb53b92011-05-19 18:20:29 -0400547 pr_debug("capi: DATA_B3_REQ %u len=%u\n",
548 datahandle, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 continue;
550 }
551 capiminor_del_ack(mp, datahandle);
552
553 if (errcode == CAPI_SENDQUEUEFULL) {
554 skb_pull(skb, CAPI_DATA_B3_REQ_LEN);
Jan Kiszkadfbb84f2010-02-08 10:12:40 +0000555
556 spin_lock_bh(&mp->outlock);
557 __skb_queue_head(&mp->outqueue, skb);
558 mp->outbytes += len;
559 spin_unlock_bh(&mp->outlock);
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 break;
562 }
563
564 /* ups, drop packet */
565 printk(KERN_ERR "capi: put_message = %x\n", errcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 kfree_skb(skb);
567 }
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000568 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
571#endif /* CONFIG_ISDN_CAPI_MIDDLEWARE */
572/* -------- function called by lower level -------------------------- */
573
574static void capi_recv_message(struct capi20_appl *ap, struct sk_buff *skb)
575{
576 struct capidev *cdev = ap->private;
577#ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000578 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 struct capiminor *mp;
580 u16 datahandle;
581#endif /* CONFIG_ISDN_CAPI_MIDDLEWARE */
582 struct capincci *np;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Jan Kiszka05b41492010-02-08 10:12:19 +0000584 mutex_lock(&cdev->lock);
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (CAPIMSG_CMD(skb->data) == CAPI_CONNECT_B3_CONF) {
587 u16 info = CAPIMSG_U16(skb->data, 12); // Info field
Jan Kiszka05b41492010-02-08 10:12:19 +0000588 if ((info & 0xff00) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 capincci_alloc(cdev, CAPIMSG_NCCI(skb->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 }
Jan Kiszka05b41492010-02-08 10:12:19 +0000591 if (CAPIMSG_CMD(skb->data) == CAPI_CONNECT_B3_IND)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 capincci_alloc(cdev, CAPIMSG_NCCI(skb->data));
Jan Kiszka05b41492010-02-08 10:12:19 +0000593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 if (CAPIMSG_COMMAND(skb->data) != CAPI_DATA_B3) {
595 skb_queue_tail(&cdev->recvqueue, skb);
596 wake_up_interruptible(&cdev->recvwait);
Jan Kiszka05b41492010-02-08 10:12:19 +0000597 goto unlock_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 }
Jan Kiszka05b41492010-02-08 10:12:19 +0000599
600 np = capincci_find(cdev, CAPIMSG_CONTROL(skb->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (!np) {
602 printk(KERN_ERR "BUG: capi_signal: ncci not found\n");
603 skb_queue_tail(&cdev->recvqueue, skb);
604 wake_up_interruptible(&cdev->recvwait);
Jan Kiszka05b41492010-02-08 10:12:19 +0000605 goto unlock_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
Jan Kiszka501c87a2010-02-08 10:12:16 +0000607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608#ifndef CONFIG_ISDN_CAPI_MIDDLEWARE
609 skb_queue_tail(&cdev->recvqueue, skb);
610 wake_up_interruptible(&cdev->recvwait);
Jan Kiszka501c87a2010-02-08 10:12:16 +0000611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612#else /* CONFIG_ISDN_CAPI_MIDDLEWARE */
Jan Kiszka501c87a2010-02-08 10:12:16 +0000613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 mp = np->minorp;
615 if (!mp) {
616 skb_queue_tail(&cdev->recvqueue, skb);
617 wake_up_interruptible(&cdev->recvwait);
Jan Kiszka05b41492010-02-08 10:12:19 +0000618 goto unlock_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if (CAPIMSG_SUBCOMMAND(skb->data) == CAPI_IND) {
Joe Perches475be4d2012-02-19 19:52:38 -0800621 datahandle = CAPIMSG_U16(skb->data, CAPIMSG_BASELEN + 4 + 4 + 2);
David S. Miller8fb53b92011-05-19 18:20:29 -0400622 pr_debug("capi_signal: DATA_B3_IND %u len=%d\n",
623 datahandle, skb->len-CAPIMSG_LEN(skb->data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 skb_queue_tail(&mp->inqueue, skb);
Jan Kiszka68d73472010-02-08 10:12:39 +0000625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 handle_minor_recv(mp);
627
628 } else if (CAPIMSG_SUBCOMMAND(skb->data) == CAPI_CONF) {
629
Joe Perches475be4d2012-02-19 19:52:38 -0800630 datahandle = CAPIMSG_U16(skb->data, CAPIMSG_BASELEN + 4);
David S. Miller8fb53b92011-05-19 18:20:29 -0400631 pr_debug("capi_signal: DATA_B3_CONF %u 0x%x\n",
632 datahandle,
Joe Perches475be4d2012-02-19 19:52:38 -0800633 CAPIMSG_U16(skb->data, CAPIMSG_BASELEN + 4 + 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 kfree_skb(skb);
Jan Kiszka2b72b5b2010-02-08 10:12:41 +0000635 capiminor_del_ack(mp, datahandle);
Jan Kiszkafb4b4882010-02-08 10:12:29 +0000636 tty = tty_port_tty_get(&mp->port);
637 if (tty) {
638 tty_wakeup(tty);
639 tty_kref_put(tty);
640 }
Jan Kiszkaeef0ced2010-02-08 10:12:42 +0000641 handle_minor_send(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 } else {
644 /* ups, let capi application handle it :-) */
645 skb_queue_tail(&cdev->recvqueue, skb);
646 wake_up_interruptible(&cdev->recvwait);
647 }
648#endif /* CONFIG_ISDN_CAPI_MIDDLEWARE */
Jan Kiszka501c87a2010-02-08 10:12:16 +0000649
Jan Kiszka05b41492010-02-08 10:12:19 +0000650unlock_out:
Jan Kiszka05b41492010-02-08 10:12:19 +0000651 mutex_unlock(&cdev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
654/* -------- file_operations for capidev ----------------------------- */
655
656static ssize_t
657capi_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
658{
Joe Perches54cbb1c2010-07-12 10:50:02 +0000659 struct capidev *cdev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 struct sk_buff *skb;
661 size_t copied;
Jan Kiszka28a1dbb2010-02-08 10:12:21 +0000662 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664 if (!cdev->ap.applid)
665 return -ENODEV;
666
Jan Kiszka28a1dbb2010-02-08 10:12:21 +0000667 skb = skb_dequeue(&cdev->recvqueue);
668 if (!skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (file->f_flags & O_NONBLOCK)
670 return -EAGAIN;
Jan Kiszka28a1dbb2010-02-08 10:12:21 +0000671 err = wait_event_interruptible(cdev->recvwait,
Joe Perches475be4d2012-02-19 19:52:38 -0800672 (skb = skb_dequeue(&cdev->recvqueue)));
Jan Kiszka28a1dbb2010-02-08 10:12:21 +0000673 if (err)
674 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 }
676 if (skb->len > count) {
677 skb_queue_head(&cdev->recvqueue, skb);
678 return -EMSGSIZE;
679 }
680 if (copy_to_user(buf, skb->data, skb->len)) {
681 skb_queue_head(&cdev->recvqueue, skb);
682 return -EFAULT;
683 }
684 copied = skb->len;
685
686 kfree_skb(skb);
687
688 return copied;
689}
690
691static ssize_t
692capi_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
693{
Joe Perches54cbb1c2010-07-12 10:50:02 +0000694 struct capidev *cdev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 struct sk_buff *skb;
696 u16 mlen;
697
698 if (!cdev->ap.applid)
699 return -ENODEV;
700
701 skb = alloc_skb(count, GFP_USER);
702 if (!skb)
703 return -ENOMEM;
704
705 if (copy_from_user(skb_put(skb, count), buf, count)) {
706 kfree_skb(skb);
707 return -EFAULT;
708 }
709 mlen = CAPIMSG_LEN(skb->data);
710 if (CAPIMSG_CMD(skb->data) == CAPI_DATA_B3_REQ) {
711 if ((size_t)(mlen + CAPIMSG_DATALEN(skb->data)) != count) {
712 kfree_skb(skb);
713 return -EINVAL;
714 }
715 } else {
716 if (mlen != count) {
717 kfree_skb(skb);
718 return -EINVAL;
719 }
720 }
721 CAPIMSG_SETAPPID(skb->data, cdev->ap.applid);
722
723 if (CAPIMSG_CMD(skb->data) == CAPI_DISCONNECT_B3_RESP) {
Jan Kiszka05b41492010-02-08 10:12:19 +0000724 mutex_lock(&cdev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 capincci_free(cdev, CAPIMSG_NCCI(skb->data));
Jan Kiszka05b41492010-02-08 10:12:19 +0000726 mutex_unlock(&cdev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 }
728
729 cdev->errcode = capi20_put_message(&cdev->ap, skb);
730
731 if (cdev->errcode) {
732 kfree_skb(skb);
733 return -EIO;
734 }
735 return count;
736}
737
738static unsigned int
Joe Perches475be4d2012-02-19 19:52:38 -0800739capi_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
Joe Perches54cbb1c2010-07-12 10:50:02 +0000741 struct capidev *cdev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 unsigned int mask = 0;
743
744 if (!cdev->ap.applid)
745 return POLLERR;
746
747 poll_wait(file, &(cdev->recvwait), wait);
748 mask = POLLOUT | POLLWRNORM;
749 if (!skb_queue_empty(&cdev->recvqueue))
750 mask |= POLLIN | POLLRDNORM;
751 return mask;
752}
753
754static int
Arnd Bergmann703c6312010-04-27 00:24:02 +0200755capi_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
757 struct capidev *cdev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 capi_ioctl_struct data;
759 int retval = -EINVAL;
760 void __user *argp = (void __user *)arg;
761
762 switch (cmd) {
763 case CAPI_REGISTER:
Jan Kiszka05b41492010-02-08 10:12:19 +0000764 mutex_lock(&cdev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Jan Kiszka05b41492010-02-08 10:12:19 +0000766 if (cdev->ap.applid) {
767 retval = -EEXIST;
768 goto register_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
Jan Kiszka05b41492010-02-08 10:12:19 +0000770 if (copy_from_user(&cdev->ap.rparam, argp,
771 sizeof(struct capi_register_params))) {
772 retval = -EFAULT;
773 goto register_out;
774 }
775 cdev->ap.private = cdev;
776 cdev->ap.recv_message = capi_recv_message;
777 cdev->errcode = capi20_register(&cdev->ap);
778 retval = (int)cdev->ap.applid;
779 if (cdev->errcode) {
780 cdev->ap.applid = 0;
781 retval = -EIO;
782 }
783
784register_out:
785 mutex_unlock(&cdev->lock);
786 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 case CAPI_GET_VERSION:
Joe Perches475be4d2012-02-19 19:52:38 -0800789 {
790 if (copy_from_user(&data.contr, argp,
791 sizeof(data.contr)))
792 return -EFAULT;
793 cdev->errcode = capi20_get_version(data.contr, &data.version);
794 if (cdev->errcode)
795 return -EIO;
796 if (copy_to_user(argp, &data.version,
797 sizeof(data.version)))
798 return -EFAULT;
799 }
800 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802 case CAPI_GET_SERIAL:
Joe Perches475be4d2012-02-19 19:52:38 -0800803 {
804 if (copy_from_user(&data.contr, argp,
805 sizeof(data.contr)))
806 return -EFAULT;
807 cdev->errcode = capi20_get_serial(data.contr, data.serial);
808 if (cdev->errcode)
809 return -EIO;
810 if (copy_to_user(argp, data.serial,
811 sizeof(data.serial)))
812 return -EFAULT;
813 }
814 return 0;
815 case CAPI_GET_PROFILE:
816 {
817 if (copy_from_user(&data.contr, argp,
818 sizeof(data.contr)))
819 return -EFAULT;
820
821 if (data.contr == 0) {
822 cdev->errcode = capi20_get_profile(data.contr, &data.profile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 if (cdev->errcode)
824 return -EIO;
Joe Perches475be4d2012-02-19 19:52:38 -0800825
826 retval = copy_to_user(argp,
827 &data.profile.ncontroller,
828 sizeof(data.profile.ncontroller));
829
830 } else {
831 cdev->errcode = capi20_get_profile(data.contr, &data.profile);
832 if (cdev->errcode)
833 return -EIO;
834
835 retval = copy_to_user(argp, &data.profile,
836 sizeof(data.profile));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
Joe Perches475be4d2012-02-19 19:52:38 -0800838 if (retval)
839 return -EFAULT;
840 }
841 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843 case CAPI_GET_MANUFACTURER:
Joe Perches475be4d2012-02-19 19:52:38 -0800844 {
845 if (copy_from_user(&data.contr, argp,
846 sizeof(data.contr)))
847 return -EFAULT;
848 cdev->errcode = capi20_get_manufacturer(data.contr, data.manufacturer);
849 if (cdev->errcode)
850 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Joe Perches475be4d2012-02-19 19:52:38 -0800852 if (copy_to_user(argp, data.manufacturer,
853 sizeof(data.manufacturer)))
854 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Joe Perches475be4d2012-02-19 19:52:38 -0800856 }
857 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 case CAPI_GET_ERRCODE:
859 data.errcode = cdev->errcode;
860 cdev->errcode = CAPI_NOERROR;
861 if (arg) {
862 if (copy_to_user(argp, &data.errcode,
863 sizeof(data.errcode)))
864 return -EFAULT;
865 }
866 return data.errcode;
867
868 case CAPI_INSTALLED:
869 if (capi20_isinstalled() == CAPI_NOERROR)
870 return 0;
871 return -ENXIO;
872
873 case CAPI_MANUFACTURER_CMD:
Joe Perches475be4d2012-02-19 19:52:38 -0800874 {
875 struct capi_manufacturer_cmd mcmd;
876 if (!capable(CAP_SYS_ADMIN))
877 return -EPERM;
878 if (copy_from_user(&mcmd, argp, sizeof(mcmd)))
879 return -EFAULT;
880 return capi20_manufacturer(mcmd.cmd, mcmd.data);
881 }
882 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 case CAPI_SET_FLAGS:
Jan Kiszka05b41492010-02-08 10:12:19 +0000885 case CAPI_CLR_FLAGS: {
886 unsigned userflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Jan Kiszka05b41492010-02-08 10:12:19 +0000888 if (copy_from_user(&userflags, argp, sizeof(userflags)))
889 return -EFAULT;
890
891 mutex_lock(&cdev->lock);
892 if (cmd == CAPI_SET_FLAGS)
893 cdev->userflags |= userflags;
894 else
895 cdev->userflags &= ~userflags;
896 mutex_unlock(&cdev->lock);
897 return 0;
898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 case CAPI_GET_FLAGS:
900 if (copy_to_user(argp, &cdev->userflags,
901 sizeof(cdev->userflags)))
902 return -EFAULT;
903 return 0;
904
Jan Kiszka05b41492010-02-08 10:12:19 +0000905 case CAPI_NCCI_OPENCOUNT: {
906 struct capincci *nccip;
907 unsigned ncci;
908 int count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Jan Kiszka05b41492010-02-08 10:12:19 +0000910 if (copy_from_user(&ncci, argp, sizeof(ncci)))
911 return -EFAULT;
912
913 mutex_lock(&cdev->lock);
914 nccip = capincci_find(cdev, (u32)ncci);
915 if (nccip)
916 count = capincci_minor_opencount(nccip);
917 mutex_unlock(&cdev->lock);
918 return count;
919 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
921#ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
Jan Kiszka05b41492010-02-08 10:12:19 +0000922 case CAPI_NCCI_GETUNIT: {
923 struct capincci *nccip;
924 struct capiminor *mp;
925 unsigned ncci;
926 int unit = -ESRCH;
927
928 if (copy_from_user(&ncci, argp, sizeof(ncci)))
929 return -EFAULT;
930
931 mutex_lock(&cdev->lock);
932 nccip = capincci_find(cdev, (u32)ncci);
933 if (nccip) {
934 mp = nccip->minorp;
935 if (mp)
936 unit = mp->minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 }
Jan Kiszka05b41492010-02-08 10:12:19 +0000938 mutex_unlock(&cdev->lock);
939 return unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 }
Jan Kiszka05b41492010-02-08 10:12:19 +0000941#endif /* CONFIG_ISDN_CAPI_MIDDLEWARE */
942
943 default:
944 return -EINVAL;
945 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946}
947
Arnd Bergmann703c6312010-04-27 00:24:02 +0200948static long
949capi_unlocked_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
950{
951 int ret;
952
Arnd Bergmann76a64922010-07-11 11:18:53 +0000953 mutex_lock(&capi_mutex);
Arnd Bergmann703c6312010-04-27 00:24:02 +0200954 ret = capi_ioctl(file, cmd, arg);
Arnd Bergmann76a64922010-07-11 11:18:53 +0000955 mutex_unlock(&capi_mutex);
Arnd Bergmann703c6312010-04-27 00:24:02 +0200956
957 return ret;
958}
959
Jan Kiszkaeca39dd2010-02-08 10:12:18 +0000960static int capi_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961{
Jan Kiszkaeca39dd2010-02-08 10:12:18 +0000962 struct capidev *cdev;
963
964 cdev = kzalloc(sizeof(*cdev), GFP_KERNEL);
965 if (!cdev)
966 return -ENOMEM;
967
Jan Kiszka05b41492010-02-08 10:12:19 +0000968 mutex_init(&cdev->lock);
Jan Kiszkaeca39dd2010-02-08 10:12:18 +0000969 skb_queue_head_init(&cdev->recvqueue);
970 init_waitqueue_head(&cdev->recvwait);
Jan Kiszka884f5c42010-02-08 10:12:22 +0000971 INIT_LIST_HEAD(&cdev->nccis);
Jan Kiszkaeca39dd2010-02-08 10:12:18 +0000972 file->private_data = cdev;
973
974 mutex_lock(&capidev_list_lock);
975 list_add_tail(&cdev->list, &capidev_list);
976 mutex_unlock(&capidev_list_lock);
977
978 return nonseekable_open(inode, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979}
980
Jan Kiszkaeca39dd2010-02-08 10:12:18 +0000981static int capi_release(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
Jan Kiszkaeca39dd2010-02-08 10:12:18 +0000983 struct capidev *cdev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Jan Kiszkaeca39dd2010-02-08 10:12:18 +0000985 mutex_lock(&capidev_list_lock);
986 list_del(&cdev->list);
987 mutex_unlock(&capidev_list_lock);
988
Jan Kiszka05b41492010-02-08 10:12:19 +0000989 if (cdev->ap.applid)
Jan Kiszkaeca39dd2010-02-08 10:12:18 +0000990 capi20_release(&cdev->ap);
Jan Kiszkaeca39dd2010-02-08 10:12:18 +0000991 skb_queue_purge(&cdev->recvqueue);
Jan Kiszkaeca39dd2010-02-08 10:12:18 +0000992 capincci_free(cdev, 0xffffffff);
Jan Kiszkaeca39dd2010-02-08 10:12:18 +0000993
994 kfree(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 return 0;
996}
997
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800998static const struct file_operations capi_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
1000 .owner = THIS_MODULE,
1001 .llseek = no_llseek,
1002 .read = capi_read,
1003 .write = capi_write,
1004 .poll = capi_poll,
Arnd Bergmann703c6312010-04-27 00:24:02 +02001005 .unlocked_ioctl = capi_unlocked_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 .open = capi_open,
1007 .release = capi_release,
1008};
1009
1010#ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
1011/* -------- tty_operations for capincci ----------------------------- */
1012
Jan Kiszka46324512010-02-08 10:12:28 +00001013static int
1014capinc_tty_install(struct tty_driver *driver, struct tty_struct *tty)
1015{
Jiri Slaby410235f2012-03-05 14:52:01 +01001016 struct capiminor *mp = capiminor_get(tty->index);
Jiri Slaby81f58352012-01-30 21:14:30 +01001017 int ret = tty_standard_install(driver, tty);
Jan Kiszka46324512010-02-08 10:12:28 +00001018
Jiri Slaby81f58352012-01-30 21:14:30 +01001019 if (ret == 0)
Jan Kiszka46324512010-02-08 10:12:28 +00001020 tty->driver_data = mp;
Jiri Slaby81f58352012-01-30 21:14:30 +01001021 else
Jan Kiszka46324512010-02-08 10:12:28 +00001022 capiminor_put(mp);
1023 return ret;
1024}
1025
1026static void capinc_tty_cleanup(struct tty_struct *tty)
1027{
1028 struct capiminor *mp = tty->driver_data;
1029 tty->driver_data = NULL;
1030 capiminor_put(mp);
1031}
1032
Jan Kiszkafb4b4882010-02-08 10:12:29 +00001033static int capinc_tty_open(struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
Jan Kiszka46324512010-02-08 10:12:28 +00001035 struct capiminor *mp = tty->driver_data;
Jan Kiszkafb4b4882010-02-08 10:12:29 +00001036 int err;
1037
1038 err = tty_port_open(&mp->port, tty, filp);
1039 if (err)
1040 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 handle_minor_recv(mp);
1043 return 0;
1044}
1045
Jan Kiszkafb4b4882010-02-08 10:12:29 +00001046static void capinc_tty_close(struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
Jan Kiszka46324512010-02-08 10:12:28 +00001048 struct capiminor *mp = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
Jan Kiszkafb4b4882010-02-08 10:12:29 +00001050 tty_port_close(&mp->port, tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051}
1052
Jan Kiszka6576c282010-02-08 10:12:32 +00001053static int capinc_tty_write(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 const unsigned char *buf, int count)
1055{
Jan Kiszka2c8df722010-02-08 10:12:30 +00001056 struct capiminor *mp = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 struct sk_buff *skb;
1058
David S. Miller8fb53b92011-05-19 18:20:29 -04001059 pr_debug("capinc_tty_write(count=%d)\n", count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Jan Kiszkadfbb84f2010-02-08 10:12:40 +00001061 spin_lock_bh(&mp->outlock);
1062 skb = mp->outskb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (skb) {
Jan Kiszkadfbb84f2010-02-08 10:12:40 +00001064 mp->outskb = NULL;
1065 __skb_queue_tail(&mp->outqueue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 mp->outbytes += skb->len;
1067 }
1068
Joe Perches475be4d2012-02-19 19:52:38 -08001069 skb = alloc_skb(CAPI_DATA_B3_REQ_LEN + count, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 if (!skb) {
1071 printk(KERN_ERR "capinc_tty_write: alloc_skb failed\n");
Jan Kiszkadfbb84f2010-02-08 10:12:40 +00001072 spin_unlock_bh(&mp->outlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 return -ENOMEM;
1074 }
1075
1076 skb_reserve(skb, CAPI_DATA_B3_REQ_LEN);
1077 memcpy(skb_put(skb, count), buf, count);
1078
Jan Kiszkadfbb84f2010-02-08 10:12:40 +00001079 __skb_queue_tail(&mp->outqueue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 mp->outbytes += skb->len;
Jan Kiszkadfbb84f2010-02-08 10:12:40 +00001081 spin_unlock_bh(&mp->outlock);
1082
Jan Kiszkaeef0ced2010-02-08 10:12:42 +00001083 handle_minor_send(mp);
Jan Kiszkadfbb84f2010-02-08 10:12:40 +00001084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 return count;
1086}
1087
Alan Coxf2545a72008-04-30 00:54:09 -07001088static int capinc_tty_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
Jan Kiszka2c8df722010-02-08 10:12:30 +00001090 struct capiminor *mp = tty->driver_data;
Jan Kiszkadfbb84f2010-02-08 10:12:40 +00001091 bool invoke_send = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 struct sk_buff *skb;
Alan Coxf2545a72008-04-30 00:54:09 -07001093 int ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
David S. Miller8fb53b92011-05-19 18:20:29 -04001095 pr_debug("capinc_put_char(%u)\n", ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Jan Kiszkadfbb84f2010-02-08 10:12:40 +00001097 spin_lock_bh(&mp->outlock);
1098 skb = mp->outskb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 if (skb) {
1100 if (skb_tailroom(skb) > 0) {
1101 *(skb_put(skb, 1)) = ch;
Jan Kiszkadfbb84f2010-02-08 10:12:40 +00001102 goto unlock_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 }
Jan Kiszkadfbb84f2010-02-08 10:12:40 +00001104 mp->outskb = NULL;
1105 __skb_queue_tail(&mp->outqueue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 mp->outbytes += skb->len;
Jan Kiszkadfbb84f2010-02-08 10:12:40 +00001107 invoke_send = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 }
Jan Kiszkadfbb84f2010-02-08 10:12:40 +00001109
Joe Perches475be4d2012-02-19 19:52:38 -08001110 skb = alloc_skb(CAPI_DATA_B3_REQ_LEN + CAPI_MAX_BLKSIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 if (skb) {
1112 skb_reserve(skb, CAPI_DATA_B3_REQ_LEN);
1113 *(skb_put(skb, 1)) = ch;
Jan Kiszkadfbb84f2010-02-08 10:12:40 +00001114 mp->outskb = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 } else {
1116 printk(KERN_ERR "capinc_put_char: char %u lost\n", ch);
Alan Coxf2545a72008-04-30 00:54:09 -07001117 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 }
Jan Kiszkadfbb84f2010-02-08 10:12:40 +00001119
1120unlock_out:
1121 spin_unlock_bh(&mp->outlock);
1122
1123 if (invoke_send)
Jan Kiszkaeef0ced2010-02-08 10:12:42 +00001124 handle_minor_send(mp);
Jan Kiszkadfbb84f2010-02-08 10:12:40 +00001125
Alan Coxf2545a72008-04-30 00:54:09 -07001126 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127}
1128
1129static void capinc_tty_flush_chars(struct tty_struct *tty)
1130{
Jan Kiszka2c8df722010-02-08 10:12:30 +00001131 struct capiminor *mp = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 struct sk_buff *skb;
1133
David S. Miller8fb53b92011-05-19 18:20:29 -04001134 pr_debug("capinc_tty_flush_chars\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Jan Kiszkadfbb84f2010-02-08 10:12:40 +00001136 spin_lock_bh(&mp->outlock);
1137 skb = mp->outskb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 if (skb) {
Jan Kiszkadfbb84f2010-02-08 10:12:40 +00001139 mp->outskb = NULL;
1140 __skb_queue_tail(&mp->outqueue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 mp->outbytes += skb->len;
Jan Kiszkadfbb84f2010-02-08 10:12:40 +00001142 spin_unlock_bh(&mp->outlock);
1143
Jan Kiszkaeef0ced2010-02-08 10:12:42 +00001144 handle_minor_send(mp);
Jan Kiszkadfbb84f2010-02-08 10:12:40 +00001145 } else
1146 spin_unlock_bh(&mp->outlock);
1147
1148 handle_minor_recv(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149}
1150
1151static int capinc_tty_write_room(struct tty_struct *tty)
1152{
Jan Kiszka2c8df722010-02-08 10:12:30 +00001153 struct capiminor *mp = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 int room;
Jan Kiszka2c8df722010-02-08 10:12:30 +00001155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 room = CAPINC_MAX_SENDQUEUE-skb_queue_len(&mp->outqueue);
1157 room *= CAPI_MAX_BLKSIZE;
David S. Miller8fb53b92011-05-19 18:20:29 -04001158 pr_debug("capinc_tty_write_room = %d\n", room);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 return room;
1160}
1161
Adrian Bunk408b6642005-05-01 08:59:29 -07001162static int capinc_tty_chars_in_buffer(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
Jan Kiszka2c8df722010-02-08 10:12:30 +00001164 struct capiminor *mp = tty->driver_data;
1165
David S. Miller8fb53b92011-05-19 18:20:29 -04001166 pr_debug("capinc_tty_chars_in_buffer = %d nack=%d sq=%d rq=%d\n",
1167 mp->outbytes, mp->nack,
1168 skb_queue_len(&mp->outqueue),
1169 skb_queue_len(&mp->inqueue));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 return mp->outbytes;
1171}
1172
Alan Cox6caa76b2011-02-14 16:27:22 +00001173static int capinc_tty_ioctl(struct tty_struct *tty,
Joe Perches475be4d2012-02-19 19:52:38 -08001174 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175{
Alan Cox6caa76b2011-02-14 16:27:22 +00001176 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177}
1178
Joe Perches475be4d2012-02-19 19:52:38 -08001179static void capinc_tty_set_termios(struct tty_struct *tty, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180{
David S. Miller8fb53b92011-05-19 18:20:29 -04001181 pr_debug("capinc_tty_set_termios\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182}
1183
Jan Kiszka2c8df722010-02-08 10:12:30 +00001184static void capinc_tty_throttle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
Jan Kiszka2c8df722010-02-08 10:12:30 +00001186 struct capiminor *mp = tty->driver_data;
David S. Miller8fb53b92011-05-19 18:20:29 -04001187 pr_debug("capinc_tty_throttle\n");
Jan Kiszka2c8df722010-02-08 10:12:30 +00001188 mp->ttyinstop = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189}
1190
Jan Kiszka2c8df722010-02-08 10:12:30 +00001191static void capinc_tty_unthrottle(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192{
Jan Kiszka2c8df722010-02-08 10:12:30 +00001193 struct capiminor *mp = tty->driver_data;
Jan Kiszka2c8df722010-02-08 10:12:30 +00001194
David S. Miller8fb53b92011-05-19 18:20:29 -04001195 pr_debug("capinc_tty_unthrottle\n");
Jan Kiszka2c8df722010-02-08 10:12:30 +00001196 mp->ttyinstop = 0;
1197 handle_minor_recv(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198}
1199
1200static void capinc_tty_stop(struct tty_struct *tty)
1201{
Jan Kiszka2c8df722010-02-08 10:12:30 +00001202 struct capiminor *mp = tty->driver_data;
1203
David S. Miller8fb53b92011-05-19 18:20:29 -04001204 pr_debug("capinc_tty_stop\n");
Jan Kiszka2c8df722010-02-08 10:12:30 +00001205 mp->ttyoutstop = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206}
1207
1208static void capinc_tty_start(struct tty_struct *tty)
1209{
Jan Kiszka2c8df722010-02-08 10:12:30 +00001210 struct capiminor *mp = tty->driver_data;
Jan Kiszka2c8df722010-02-08 10:12:30 +00001211
David S. Miller8fb53b92011-05-19 18:20:29 -04001212 pr_debug("capinc_tty_start\n");
Jan Kiszka2c8df722010-02-08 10:12:30 +00001213 mp->ttyoutstop = 0;
Jan Kiszkaeef0ced2010-02-08 10:12:42 +00001214 handle_minor_send(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215}
1216
1217static void capinc_tty_hangup(struct tty_struct *tty)
1218{
Jan Kiszkafb4b4882010-02-08 10:12:29 +00001219 struct capiminor *mp = tty->driver_data;
1220
David S. Miller8fb53b92011-05-19 18:20:29 -04001221 pr_debug("capinc_tty_hangup\n");
Jan Kiszkafb4b4882010-02-08 10:12:29 +00001222 tty_port_hangup(&mp->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223}
1224
Alan Cox9e989662008-07-22 11:18:03 +01001225static int capinc_tty_break_ctl(struct tty_struct *tty, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226{
David S. Miller8fb53b92011-05-19 18:20:29 -04001227 pr_debug("capinc_tty_break_ctl(%d)\n", state);
Alan Cox9e989662008-07-22 11:18:03 +01001228 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229}
1230
1231static void capinc_tty_flush_buffer(struct tty_struct *tty)
1232{
David S. Miller8fb53b92011-05-19 18:20:29 -04001233 pr_debug("capinc_tty_flush_buffer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234}
1235
1236static void capinc_tty_set_ldisc(struct tty_struct *tty)
1237{
David S. Miller8fb53b92011-05-19 18:20:29 -04001238 pr_debug("capinc_tty_set_ldisc\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239}
1240
1241static void capinc_tty_send_xchar(struct tty_struct *tty, char ch)
1242{
David S. Miller8fb53b92011-05-19 18:20:29 -04001243 pr_debug("capinc_tty_send_xchar(%d)\n", ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244}
1245
Jeff Dikeb68e31d2006-10-02 02:17:18 -07001246static const struct tty_operations capinc_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 .open = capinc_tty_open,
1248 .close = capinc_tty_close,
1249 .write = capinc_tty_write,
1250 .put_char = capinc_tty_put_char,
1251 .flush_chars = capinc_tty_flush_chars,
1252 .write_room = capinc_tty_write_room,
1253 .chars_in_buffer = capinc_tty_chars_in_buffer,
1254 .ioctl = capinc_tty_ioctl,
1255 .set_termios = capinc_tty_set_termios,
1256 .throttle = capinc_tty_throttle,
1257 .unthrottle = capinc_tty_unthrottle,
1258 .stop = capinc_tty_stop,
1259 .start = capinc_tty_start,
1260 .hangup = capinc_tty_hangup,
1261 .break_ctl = capinc_tty_break_ctl,
1262 .flush_buffer = capinc_tty_flush_buffer,
1263 .set_ldisc = capinc_tty_set_ldisc,
1264 .send_xchar = capinc_tty_send_xchar,
Jan Kiszka46324512010-02-08 10:12:28 +00001265 .install = capinc_tty_install,
1266 .cleanup = capinc_tty_cleanup,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267};
1268
Jan Kiszkae76b1542010-02-08 10:12:24 +00001269static int __init capinc_tty_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
1271 struct tty_driver *drv;
Jan Kiszkae76b1542010-02-08 10:12:24 +00001272 int err;
1273
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 if (capi_ttyminors > CAPINC_MAX_PORTS)
1275 capi_ttyminors = CAPINC_MAX_PORTS;
1276 if (capi_ttyminors <= 0)
1277 capi_ttyminors = CAPINC_NR_PORTS;
1278
Jan Kiszka81d17fe2010-02-08 10:12:23 +00001279 capiminors = kzalloc(sizeof(struct capi_minor *) * capi_ttyminors,
1280 GFP_KERNEL);
1281 if (!capiminors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 return -ENOMEM;
1283
Jan Kiszka81d17fe2010-02-08 10:12:23 +00001284 drv = alloc_tty_driver(capi_ttyminors);
1285 if (!drv) {
1286 kfree(capiminors);
1287 return -ENOMEM;
1288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 drv->driver_name = "capi_nc";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 drv->name = "capi";
Jan Kiszkae95ac142010-02-08 10:12:26 +00001291 drv->major = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 drv->minor_start = 0;
1293 drv->type = TTY_DRIVER_TYPE_SERIAL;
1294 drv->subtype = SERIAL_TYPE_NORMAL;
1295 drv->init_termios = tty_std_termios;
1296 drv->init_termios.c_iflag = ICRNL;
1297 drv->init_termios.c_oflag = OPOST | ONLCR;
1298 drv->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
1299 drv->init_termios.c_lflag = 0;
Jan Kiszka40fb2d02010-02-08 10:12:25 +00001300 drv->flags =
1301 TTY_DRIVER_REAL_RAW | TTY_DRIVER_RESET_TERMIOS |
1302 TTY_DRIVER_DYNAMIC_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 tty_set_operations(drv, &capinc_ops);
Jan Kiszkae76b1542010-02-08 10:12:24 +00001304
1305 err = tty_register_driver(drv);
1306 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 put_tty_driver(drv);
Jan Kiszka81d17fe2010-02-08 10:12:23 +00001308 kfree(capiminors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 printk(KERN_ERR "Couldn't register capi_nc driver\n");
Jan Kiszkae76b1542010-02-08 10:12:24 +00001310 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 }
1312 capinc_tty_driver = drv;
1313 return 0;
1314}
1315
Jan Kiszkae76b1542010-02-08 10:12:24 +00001316static void __exit capinc_tty_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
Jan Kiszkae76b1542010-02-08 10:12:24 +00001318 tty_unregister_driver(capinc_tty_driver);
1319 put_tty_driver(capinc_tty_driver);
Jan Kiszka81d17fe2010-02-08 10:12:23 +00001320 kfree(capiminors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321}
1322
Jan Kiszka501c87a2010-02-08 10:12:16 +00001323#else /* !CONFIG_ISDN_CAPI_MIDDLEWARE */
1324
1325static inline int capinc_tty_init(void)
1326{
1327 return 0;
1328}
1329
1330static inline void capinc_tty_exit(void) { }
1331
1332#endif /* !CONFIG_ISDN_CAPI_MIDDLEWARE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334/* -------- /proc functions ----------------------------------------- */
1335
1336/*
1337 * /proc/capi/capi20:
1338 * minor applid nrecvctlpkt nrecvdatapkt nsendctlpkt nsenddatapkt
1339 */
Alexey Dobriyan9a58a802010-01-14 03:10:54 -08001340static int capi20_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341{
Joe Perches475be4d2012-02-19 19:52:38 -08001342 struct capidev *cdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 struct list_head *l;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Jan Kiszkab8f433d2010-02-08 10:12:17 +00001345 mutex_lock(&capidev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 list_for_each(l, &capidev_list) {
1347 cdev = list_entry(l, struct capidev, list);
Alexey Dobriyan9a58a802010-01-14 03:10:54 -08001348 seq_printf(m, "0 %d %lu %lu %lu %lu\n",
Joe Perches475be4d2012-02-19 19:52:38 -08001349 cdev->ap.applid,
1350 cdev->ap.nrecvctlpkt,
1351 cdev->ap.nrecvdatapkt,
1352 cdev->ap.nsentctlpkt,
1353 cdev->ap.nsentdatapkt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 }
Jan Kiszkab8f433d2010-02-08 10:12:17 +00001355 mutex_unlock(&capidev_list_lock);
Alexey Dobriyan9a58a802010-01-14 03:10:54 -08001356 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357}
1358
Alexey Dobriyan9a58a802010-01-14 03:10:54 -08001359static int capi20_proc_open(struct inode *inode, struct file *file)
1360{
1361 return single_open(file, capi20_proc_show, NULL);
1362}
1363
1364static const struct file_operations capi20_proc_fops = {
1365 .owner = THIS_MODULE,
1366 .open = capi20_proc_open,
1367 .read = seq_read,
1368 .llseek = seq_lseek,
1369 .release = single_release,
1370};
1371
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372/*
1373 * /proc/capi/capi20ncci:
1374 * applid ncci
1375 */
Alexey Dobriyan9a58a802010-01-14 03:10:54 -08001376static int capi20ncci_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377{
Jan Kiszka884f5c42010-02-08 10:12:22 +00001378 struct capidev *cdev;
1379 struct capincci *np;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Jan Kiszkab8f433d2010-02-08 10:12:17 +00001381 mutex_lock(&capidev_list_lock);
Jan Kiszka884f5c42010-02-08 10:12:22 +00001382 list_for_each_entry(cdev, &capidev_list, list) {
Jan Kiszka05b41492010-02-08 10:12:19 +00001383 mutex_lock(&cdev->lock);
Jan Kiszka884f5c42010-02-08 10:12:22 +00001384 list_for_each_entry(np, &cdev->nccis, list)
1385 seq_printf(m, "%d 0x%x\n", cdev->ap.applid, np->ncci);
Jan Kiszka05b41492010-02-08 10:12:19 +00001386 mutex_unlock(&cdev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 }
Jan Kiszkab8f433d2010-02-08 10:12:17 +00001388 mutex_unlock(&capidev_list_lock);
Alexey Dobriyan9a58a802010-01-14 03:10:54 -08001389 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390}
1391
Alexey Dobriyan9a58a802010-01-14 03:10:54 -08001392static int capi20ncci_proc_open(struct inode *inode, struct file *file)
1393{
1394 return single_open(file, capi20ncci_proc_show, NULL);
1395}
1396
1397static const struct file_operations capi20ncci_proc_fops = {
1398 .owner = THIS_MODULE,
1399 .open = capi20ncci_proc_open,
1400 .read = seq_read,
1401 .llseek = seq_lseek,
1402 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403};
1404
1405static void __init proc_init(void)
1406{
Alexey Dobriyan9a58a802010-01-14 03:10:54 -08001407 proc_create("capi/capi20", 0, NULL, &capi20_proc_fops);
1408 proc_create("capi/capi20ncci", 0, NULL, &capi20ncci_proc_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409}
1410
1411static void __exit proc_exit(void)
1412{
Alexey Dobriyan9a58a802010-01-14 03:10:54 -08001413 remove_proc_entry("capi/capi20", NULL);
1414 remove_proc_entry("capi/capi20ncci", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415}
1416
1417/* -------- init function and module interface ---------------------- */
1418
1419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420static int __init capi_init(void)
1421{
Jan Kiszka88549d62010-02-08 10:12:09 +00001422 const char *compileinfo;
Andrew Morton6d9eac32006-03-28 01:56:19 -08001423 int major_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Andrew Morton6d9eac32006-03-28 01:56:19 -08001425 major_ret = register_chrdev(capi_major, "capi20", &capi_fops);
1426 if (major_ret < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 printk(KERN_ERR "capi20: unable to get major %d\n", capi_major);
Andrew Morton6d9eac32006-03-28 01:56:19 -08001428 return major_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 }
gregkh@suse.de56b22932005-03-23 10:01:41 -08001430 capi_class = class_create(THIS_MODULE, "capi");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 if (IS_ERR(capi_class)) {
1432 unregister_chrdev(capi_major, "capi20");
1433 return PTR_ERR(capi_class);
1434 }
1435
Greg Kroah-Hartmana9b12612008-07-21 20:03:34 -07001436 device_create(capi_class, NULL, MKDEV(capi_major, 0), NULL, "capi");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 if (capinc_tty_init() < 0) {
Tony Jonesd78b0362007-09-25 02:03:03 +02001439 device_destroy(capi_class, MKDEV(capi_major, 0));
gregkh@suse.de56b22932005-03-23 10:01:41 -08001440 class_destroy(capi_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 unregister_chrdev(capi_major, "capi20");
1442 return -ENOMEM;
1443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
1445 proc_init();
1446
Jan Kiszka1f90d662011-04-06 10:58:37 +00001447#ifdef CONFIG_ISDN_CAPI_MIDDLEWARE
Joe Perches475be4d2012-02-19 19:52:38 -08001448 compileinfo = " (middleware)";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449#else
Joe Perches475be4d2012-02-19 19:52:38 -08001450 compileinfo = " (no middleware)";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451#endif
Jan Kiszka88549d62010-02-08 10:12:09 +00001452 printk(KERN_NOTICE "CAPI 2.0 started up with major %d%s\n",
1453 capi_major, compileinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
1455 return 0;
1456}
1457
1458static void __exit capi_exit(void)
1459{
1460 proc_exit();
1461
Tony Jonesd78b0362007-09-25 02:03:03 +02001462 device_destroy(capi_class, MKDEV(capi_major, 0));
gregkh@suse.de56b22932005-03-23 10:01:41 -08001463 class_destroy(capi_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 unregister_chrdev(capi_major, "capi20");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 capinc_tty_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467}
1468
1469module_init(capi_init);
1470module_exit(capi_exit);