blob: 89b09c51ab7cff64d20e24ff43fff8bd720d1ef3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* $Id: isdn_common.c,v 1.1.2.3 2004/02/10 01:07:13 keil Exp $
2 *
3 * Linux ISDN subsystem, common used functions (linklevel).
4 *
5 * Copyright 1994-1999 by Fritz Elfert (fritz@isdn4linux.de)
6 * Copyright 1995,96 Thinking Objects Software GmbH Wuerzburg
7 * Copyright 1995,96 by Michael Hipp (Michael.Hipp@student.uni-tuebingen.de)
8 *
9 * This software may be used and distributed according to the terms
10 * of the GNU General Public License, incorporated herein by reference.
11 *
12 */
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
15#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/poll.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/vmalloc.h>
19#include <linux/isdn.h>
Arnd Bergmann76a64922010-07-11 11:18:53 +000020#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "isdn_common.h"
22#include "isdn_tty.h"
23#include "isdn_net.h"
24#include "isdn_ppp.h"
25#ifdef CONFIG_ISDN_AUDIO
26#include "isdn_audio.h"
27#endif
28#ifdef CONFIG_ISDN_DIVERSION_MODULE
29#define CONFIG_ISDN_DIVERSION
30#endif
31#ifdef CONFIG_ISDN_DIVERSION
32#include <linux/isdn_divertif.h>
33#endif /* CONFIG_ISDN_DIVERSION */
34#include "isdn_v110.h"
35
36/* Debugflags */
37#undef ISDN_DEBUG_STATCALLB
38
39MODULE_DESCRIPTION("ISDN4Linux: link layer");
40MODULE_AUTHOR("Fritz Elfert");
41MODULE_LICENSE("GPL");
42
43isdn_dev *dev;
44
Arnd Bergmann76a64922010-07-11 11:18:53 +000045static DEFINE_MUTEX(isdn_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static char *isdn_revision = "$Revision: 1.1.2.3 $";
47
48extern char *isdn_net_revision;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#ifdef CONFIG_ISDN_PPP
50extern char *isdn_ppp_revision;
51#else
52static char *isdn_ppp_revision = ": none $";
53#endif
54#ifdef CONFIG_ISDN_AUDIO
55extern char *isdn_audio_revision;
56#else
57static char *isdn_audio_revision = ": none $";
58#endif
59extern char *isdn_v110_revision;
60
61#ifdef CONFIG_ISDN_DIVERSION
62static isdn_divert_if *divert_if; /* = NULL */
63#endif /* CONFIG_ISDN_DIVERSION */
64
65
66static int isdn_writebuf_stub(int, int, const u_char __user *, int);
67static void set_global_features(void);
68static int isdn_wildmat(char *s, char *p);
Adrian Bunk3e206b02005-06-25 14:58:35 -070069static int isdn_add_channels(isdn_driver_t *d, int drvidx, int n, int adding);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71static inline void
72isdn_lock_driver(isdn_driver_t *drv)
73{
74 try_module_get(drv->interface->owner);
75 drv->locks++;
76}
77
78void
79isdn_lock_drivers(void)
80{
81 int i;
82
83 for (i = 0; i < ISDN_MAX_DRIVERS; i++) {
84 if (!dev->drv[i])
85 continue;
86 isdn_lock_driver(dev->drv[i]);
87 }
88}
89
90static inline void
91isdn_unlock_driver(isdn_driver_t *drv)
92{
93 if (drv->locks > 0) {
94 drv->locks--;
95 module_put(drv->interface->owner);
96 }
97}
98
99void
100isdn_unlock_drivers(void)
101{
102 int i;
103
104 for (i = 0; i < ISDN_MAX_DRIVERS; i++) {
105 if (!dev->drv[i])
106 continue;
107 isdn_unlock_driver(dev->drv[i]);
108 }
109}
110
111#if defined(ISDN_DEBUG_NET_DUMP) || defined(ISDN_DEBUG_MODEM_DUMP)
112void
Joe Perches475be4d2012-02-19 19:52:38 -0800113isdn_dumppkt(char *s, u_char *p, int len, int dumplen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
115 int dumpc;
116
117 printk(KERN_DEBUG "%s(%d) ", s, len);
118 for (dumpc = 0; (dumpc < dumplen) && (len); len--, dumpc++)
119 printk(" %02x", *p++);
120 printk("\n");
121}
122#endif
123
124/*
125 * I picked the pattern-matching-functions from an old GNU-tar version (1.10)
126 * It was originally written and put to PD by rs@mirror.TMC.COM (Rich Salz)
127 */
128static int
129isdn_star(char *s, char *p)
130{
131 while (isdn_wildmat(s, p)) {
132 if (*++s == '\0')
133 return (2);
134 }
135 return (0);
136}
137
138/*
139 * Shell-type Pattern-matching for incoming caller-Ids
140 * This function gets a string in s and checks, if it matches the pattern
141 * given in p.
142 *
143 * Return:
144 * 0 = match.
145 * 1 = no match.
146 * 2 = no match. Would eventually match, if s would be longer.
147 *
148 * Possible Patterns:
149 *
150 * '?' matches one character
151 * '*' matches zero or more characters
152 * [xyz] matches the set of characters in brackets.
153 * [^xyz] matches any single character not in the set of characters
154 */
155
156static int
157isdn_wildmat(char *s, char *p)
158{
159 register int last;
160 register int matched;
161 register int reverse;
162 register int nostar = 1;
163
164 if (!(*s) && !(*p))
Joe Perches475be4d2012-02-19 19:52:38 -0800165 return (1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 for (; *p; s++, p++)
167 switch (*p) {
Joe Perches475be4d2012-02-19 19:52:38 -0800168 case '\\':
169 /*
170 * Literal match with following character,
171 * fall through.
172 */
173 p++;
174 default:
175 if (*s != *p)
176 return (*s == '\0') ? 2 : 1;
177 continue;
178 case '?':
179 /* Match anything. */
180 if (*s == '\0')
181 return (2);
182 continue;
183 case '*':
184 nostar = 0;
185 /* Trailing star matches everything. */
186 return (*++p ? isdn_star(s, p) : 0);
187 case '[':
188 /* [^....] means inverse character class. */
189 if ((reverse = (p[1] == '^')))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 p++;
Joe Perches475be4d2012-02-19 19:52:38 -0800191 for (last = 0, matched = 0; *++p && (*p != ']'); last = *p)
192 /* This next line requires a good C compiler. */
193 if (*p == '-' ? *s <= *++p && *s >= last : *s == *p)
194 matched = 1;
195 if (matched == reverse)
196 return (1);
197 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
Joe Perches475be4d2012-02-19 19:52:38 -0800199 return (*s == '\0') ? 0 : nostar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
Joe Perches475be4d2012-02-19 19:52:38 -0800202int isdn_msncmp(const char *msn1, const char *msn2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Joe Perches475be4d2012-02-19 19:52:38 -0800204 char TmpMsn1[ISDN_MSNLEN];
205 char TmpMsn2[ISDN_MSNLEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 char *p;
207
Joe Perches475be4d2012-02-19 19:52:38 -0800208 for (p = TmpMsn1; *msn1 && *msn1 != ':';) // Strip off a SPID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 *p++ = *msn1++;
210 *p = '\0';
211
Joe Perches475be4d2012-02-19 19:52:38 -0800212 for (p = TmpMsn2; *msn2 && *msn2 != ':';) // Strip off a SPID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 *p++ = *msn2++;
214 *p = '\0';
215
Joe Perches475be4d2012-02-19 19:52:38 -0800216 return isdn_wildmat(TmpMsn1, TmpMsn2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
218
219int
220isdn_dc2minor(int di, int ch)
221{
222 int i;
223 for (i = 0; i < ISDN_MAX_CHANNELS; i++)
224 if (dev->chanmap[i] == ch && dev->drvmap[i] == di)
225 return i;
226 return -1;
227}
228
229static int isdn_timer_cnt1 = 0;
230static int isdn_timer_cnt2 = 0;
231static int isdn_timer_cnt3 = 0;
232
233static void
234isdn_timer_funct(ulong dummy)
235{
236 int tf = dev->tflags;
237 if (tf & ISDN_TIMER_FAST) {
238 if (tf & ISDN_TIMER_MODEMREAD)
239 isdn_tty_readmodem();
240 if (tf & ISDN_TIMER_MODEMPLUS)
241 isdn_tty_modem_escape();
242 if (tf & ISDN_TIMER_MODEMXMIT)
243 isdn_tty_modem_xmit();
244 }
245 if (tf & ISDN_TIMER_SLOW) {
246 if (++isdn_timer_cnt1 >= ISDN_TIMER_02SEC) {
247 isdn_timer_cnt1 = 0;
248 if (tf & ISDN_TIMER_NETDIAL)
249 isdn_net_dial();
250 }
251 if (++isdn_timer_cnt2 >= ISDN_TIMER_1SEC) {
252 isdn_timer_cnt2 = 0;
253 if (tf & ISDN_TIMER_NETHANGUP)
254 isdn_net_autohup();
255 if (++isdn_timer_cnt3 >= ISDN_TIMER_RINGING) {
256 isdn_timer_cnt3 = 0;
257 if (tf & ISDN_TIMER_MODEMRING)
258 isdn_tty_modem_ring();
259 }
260 if (tf & ISDN_TIMER_CARRIER)
261 isdn_tty_carrier_timeout();
262 }
263 }
Joe Perches475be4d2012-02-19 19:52:38 -0800264 if (tf)
265 mod_timer(&dev->timer, jiffies + ISDN_TIMER_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
268void
269isdn_timer_ctrl(int tf, int onoff)
270{
271 unsigned long flags;
272 int old_tflags;
273
274 spin_lock_irqsave(&dev->timerlock, flags);
275 if ((tf & ISDN_TIMER_SLOW) && (!(dev->tflags & ISDN_TIMER_SLOW))) {
276 /* If the slow-timer wasn't activated until now */
277 isdn_timer_cnt1 = 0;
278 isdn_timer_cnt2 = 0;
279 }
280 old_tflags = dev->tflags;
281 if (onoff)
282 dev->tflags |= tf;
283 else
284 dev->tflags &= ~tf;
285 if (dev->tflags && !old_tflags)
Joe Perches475be4d2012-02-19 19:52:38 -0800286 mod_timer(&dev->timer, jiffies + ISDN_TIMER_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 spin_unlock_irqrestore(&dev->timerlock, flags);
288}
289
290/*
291 * Receive a packet from B-Channel. (Called from low-level-module)
292 */
293static void
294isdn_receive_skb_callback(int di, int channel, struct sk_buff *skb)
295{
296 int i;
297
298 if ((i = isdn_dc2minor(di, channel)) == -1) {
299 dev_kfree_skb(skb);
300 return;
301 }
302 /* Update statistics */
303 dev->ibytes[i] += skb->len;
Joe Perches475be4d2012-02-19 19:52:38 -0800304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 /* First, try to deliver data to network-device */
306 if (isdn_net_rcv_skb(i, skb))
307 return;
308
309 /* V.110 handling
310 * makes sense for async streams only, so it is
311 * called after possible net-device delivery.
312 */
313 if (dev->v110[i]) {
314 atomic_inc(&dev->v110use[i]);
315 skb = isdn_v110_decode(dev->v110[i], skb);
316 atomic_dec(&dev->v110use[i]);
317 if (!skb)
318 return;
319 }
320
321 /* No network-device found, deliver to tty or raw-channel */
322 if (skb->len) {
323 if (isdn_tty_rcv_skb(i, di, channel, skb))
324 return;
325 wake_up_interruptible(&dev->drv[di]->rcv_waitq[channel]);
326 } else
327 dev_kfree_skb(skb);
328}
329
330/*
331 * Intercept command from Linklevel to Lowlevel.
332 * If layer 2 protocol is V.110 and this is not supported by current
333 * lowlevel-driver, use driver's transparent mode and handle V.110 in
334 * linklevel instead.
335 */
336int
337isdn_command(isdn_ctrl *cmd)
338{
339 if (cmd->driver == -1) {
340 printk(KERN_WARNING "isdn_command command(%x) driver -1\n", cmd->command);
Joe Perches475be4d2012-02-19 19:52:38 -0800341 return (1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
Karsten Keil09fca292006-06-29 13:16:29 +0200343 if (!dev->drv[cmd->driver]) {
344 printk(KERN_WARNING "isdn_command command(%x) dev->drv[%d] NULL\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800345 cmd->command, cmd->driver);
346 return (1);
Karsten Keil09fca292006-06-29 13:16:29 +0200347 }
348 if (!dev->drv[cmd->driver]->interface) {
349 printk(KERN_WARNING "isdn_command command(%x) dev->drv[%d]->interface NULL\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800350 cmd->command, cmd->driver);
351 return (1);
Karsten Keil09fca292006-06-29 13:16:29 +0200352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 if (cmd->command == ISDN_CMD_SETL2) {
354 int idx = isdn_dc2minor(cmd->driver, cmd->arg & 255);
355 unsigned long l2prot = (cmd->arg >> 8) & 255;
356 unsigned long features = (dev->drv[cmd->driver]->interface->features
Joe Perches475be4d2012-02-19 19:52:38 -0800357 >> ISDN_FEATURE_L2_SHIFT) &
358 ISDN_FEATURE_L2_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 unsigned long l2_feature = (1 << l2prot);
360
361 switch (l2prot) {
Joe Perches475be4d2012-02-19 19:52:38 -0800362 case ISDN_PROTO_L2_V11096:
363 case ISDN_PROTO_L2_V11019:
364 case ISDN_PROTO_L2_V11038:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 /* If V.110 requested, but not supported by
366 * HL-driver, set emulator-flag and change
367 * Layer-2 to transparent
368 */
Joe Perches475be4d2012-02-19 19:52:38 -0800369 if (!(features & l2_feature)) {
370 dev->v110emu[idx] = l2prot;
371 cmd->arg = (cmd->arg & 255) |
372 (ISDN_PROTO_L2_TRANS << 8);
373 } else
374 dev->v110emu[idx] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
376 }
377 return dev->drv[cmd->driver]->interface->command(cmd);
378}
379
380void
381isdn_all_eaz(int di, int ch)
382{
383 isdn_ctrl cmd;
384
385 if (di < 0)
386 return;
387 cmd.driver = di;
388 cmd.arg = ch;
389 cmd.command = ISDN_CMD_SETEAZ;
390 cmd.parm.num[0] = '\0';
391 isdn_command(&cmd);
392}
393
394/*
Joe Perches475be4d2012-02-19 19:52:38 -0800395 * Begin of a CAPI like LL<->HL interface, currently used only for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 * supplementary service (CAPI 2.0 part III)
397 */
398#include <linux/isdn/capicmd.h>
399
Adrian Bunk3e206b02005-06-25 14:58:35 -0700400static int
David S. Miller50a7c112011-04-17 16:45:51 -0700401isdn_capi_rec_hl_msg(capi_msg *cm)
402{
Joe Perches475be4d2012-02-19 19:52:38 -0800403 switch (cm->Command) {
404 case CAPI_FACILITY:
405 /* in the moment only handled in tty */
406 return (isdn_tty_capi_facility(cm));
407 default:
408 return (-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
410}
411
412static int
Joe Perches475be4d2012-02-19 19:52:38 -0800413isdn_status_callback(isdn_ctrl *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
415 int di;
416 u_long flags;
417 int i;
418 int r;
419 int retval = 0;
420 isdn_ctrl cmd;
421 isdn_net_dev *p;
422
423 di = c->driver;
424 i = isdn_dc2minor(di, c->arg);
425 switch (c->command) {
Joe Perches475be4d2012-02-19 19:52:38 -0800426 case ISDN_STAT_BSENT:
427 if (i < 0)
428 return -1;
429 if (dev->global_flags & ISDN_GLOBAL_STOPPED)
430 return 0;
431 if (isdn_net_stat_callback(i, c))
432 return 0;
433 if (isdn_v110_stat_callback(i, c))
434 return 0;
435 if (isdn_tty_stat_callback(i, c))
436 return 0;
437 wake_up_interruptible(&dev->drv[di]->snd_waitq[c->arg]);
438 break;
439 case ISDN_STAT_STAVAIL:
440 dev->drv[di]->stavail += c->arg;
441 wake_up_interruptible(&dev->drv[di]->st_waitq);
442 break;
443 case ISDN_STAT_RUN:
444 dev->drv[di]->flags |= DRV_FLAG_RUNNING;
445 for (i = 0; i < ISDN_MAX_CHANNELS; i++)
446 if (dev->drvmap[i] == di)
447 isdn_all_eaz(di, dev->chanmap[i]);
448 set_global_features();
449 break;
450 case ISDN_STAT_STOP:
451 dev->drv[di]->flags &= ~DRV_FLAG_RUNNING;
452 break;
453 case ISDN_STAT_ICALL:
454 if (i < 0)
455 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456#ifdef ISDN_DEBUG_STATCALLB
Joe Perches475be4d2012-02-19 19:52:38 -0800457 printk(KERN_DEBUG "ICALL (net): %d %ld %s\n", di, c->arg, c->parm.num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458#endif
Joe Perches475be4d2012-02-19 19:52:38 -0800459 if (dev->global_flags & ISDN_GLOBAL_STOPPED) {
460 cmd.driver = di;
461 cmd.arg = c->arg;
462 cmd.command = ISDN_CMD_HANGUP;
463 isdn_command(&cmd);
464 return 0;
465 }
466 /* Try to find a network-interface which will accept incoming call */
467 r = ((c->command == ISDN_STAT_ICALLW) ? 0 : isdn_net_find_icall(di, c->arg, i, &c->parm.setup));
468 switch (r) {
469 case 0:
470 /* No network-device replies.
471 * Try ttyI's.
472 * These return 0 on no match, 1 on match and
473 * 3 on eventually match, if CID is longer.
474 */
475 if (c->command == ISDN_STAT_ICALL)
476 if ((retval = isdn_tty_find_icall(di, c->arg, &c->parm.setup))) return (retval);
477#ifdef CONFIG_ISDN_DIVERSION
478 if (divert_if)
479 if ((retval = divert_if->stat_callback(c)))
480 return (retval); /* processed */
481#endif /* CONFIG_ISDN_DIVERSION */
482 if ((!retval) && (dev->drv[di]->flags & DRV_FLAG_REJBUS)) {
483 /* No tty responding */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 cmd.driver = di;
485 cmd.arg = c->arg;
486 cmd.command = ISDN_CMD_HANGUP;
487 isdn_command(&cmd);
Joe Perches475be4d2012-02-19 19:52:38 -0800488 retval = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 }
Joe Perches475be4d2012-02-19 19:52:38 -0800490 break;
491 case 1:
492 /* Schedule connection-setup */
493 isdn_net_dial();
494 cmd.driver = di;
495 cmd.arg = c->arg;
496 cmd.command = ISDN_CMD_ACCEPTD;
497 for (p = dev->netdev; p; p = p->next)
498 if (p->local->isdn_channel == cmd.arg)
499 {
500 strcpy(cmd.parm.setup.eazmsn, p->local->msn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 isdn_command(&cmd);
Joe Perches475be4d2012-02-19 19:52:38 -0800502 retval = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 break;
Joe Perches475be4d2012-02-19 19:52:38 -0800506
507 case 2: /* For calling back, first reject incoming call ... */
508 case 3: /* Interface found, but down, reject call actively */
509 retval = 2;
510 printk(KERN_INFO "isdn: Rejecting Call\n");
511 cmd.driver = di;
512 cmd.arg = c->arg;
513 cmd.command = ISDN_CMD_HANGUP;
514 isdn_command(&cmd);
515 if (r == 3)
516 break;
517 /* Fall through */
518 case 4:
519 /* ... then start callback. */
520 isdn_net_dial();
521 break;
522 case 5:
523 /* Number would eventually match, if longer */
524 retval = 3;
525 break;
526 }
527#ifdef ISDN_DEBUG_STATCALLB
528 printk(KERN_DEBUG "ICALL: ret=%d\n", retval);
529#endif
530 return retval;
531 break;
532 case ISDN_STAT_CINF:
533 if (i < 0)
534 return -1;
535#ifdef ISDN_DEBUG_STATCALLB
536 printk(KERN_DEBUG "CINF: %ld %s\n", c->arg, c->parm.num);
537#endif
538 if (dev->global_flags & ISDN_GLOBAL_STOPPED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return 0;
Joe Perches475be4d2012-02-19 19:52:38 -0800540 if (strcmp(c->parm.num, "0"))
541 isdn_net_stat_callback(i, c);
542 isdn_tty_stat_callback(i, c);
543 break;
544 case ISDN_STAT_CAUSE:
545#ifdef ISDN_DEBUG_STATCALLB
546 printk(KERN_DEBUG "CAUSE: %ld %s\n", c->arg, c->parm.num);
547#endif
548 printk(KERN_INFO "isdn: %s,ch%ld cause: %s\n",
549 dev->drvid[di], c->arg, c->parm.num);
550 isdn_tty_stat_callback(i, c);
551#ifdef CONFIG_ISDN_DIVERSION
552 if (divert_if)
553 divert_if->stat_callback(c);
554#endif /* CONFIG_ISDN_DIVERSION */
555 break;
556 case ISDN_STAT_DISPLAY:
557#ifdef ISDN_DEBUG_STATCALLB
558 printk(KERN_DEBUG "DISPLAY: %ld %s\n", c->arg, c->parm.display);
559#endif
560 isdn_tty_stat_callback(i, c);
561#ifdef CONFIG_ISDN_DIVERSION
562 if (divert_if)
563 divert_if->stat_callback(c);
564#endif /* CONFIG_ISDN_DIVERSION */
565 break;
566 case ISDN_STAT_DCONN:
567 if (i < 0)
568 return -1;
569#ifdef ISDN_DEBUG_STATCALLB
570 printk(KERN_DEBUG "DCONN: %ld\n", c->arg);
571#endif
572 if (dev->global_flags & ISDN_GLOBAL_STOPPED)
573 return 0;
574 /* Find any net-device, waiting for D-channel setup */
575 if (isdn_net_stat_callback(i, c))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 break;
Joe Perches475be4d2012-02-19 19:52:38 -0800577 isdn_v110_stat_callback(i, c);
578 /* Find any ttyI, waiting for D-channel setup */
579 if (isdn_tty_stat_callback(i, c)) {
580 cmd.driver = di;
581 cmd.arg = c->arg;
582 cmd.command = ISDN_CMD_ACCEPTB;
583 isdn_command(&cmd);
584 break;
585 }
586 break;
587 case ISDN_STAT_DHUP:
588 if (i < 0)
589 return -1;
590#ifdef ISDN_DEBUG_STATCALLB
591 printk(KERN_DEBUG "DHUP: %ld\n", c->arg);
592#endif
593 if (dev->global_flags & ISDN_GLOBAL_STOPPED)
594 return 0;
595 dev->drv[di]->online &= ~(1 << (c->arg));
596 isdn_info_update();
597 /* Signal hangup to network-devices */
598 if (isdn_net_stat_callback(i, c))
599 break;
600 isdn_v110_stat_callback(i, c);
601 if (isdn_tty_stat_callback(i, c))
602 break;
603#ifdef CONFIG_ISDN_DIVERSION
604 if (divert_if)
605 divert_if->stat_callback(c);
606#endif /* CONFIG_ISDN_DIVERSION */
607 break;
608 break;
609 case ISDN_STAT_BCONN:
610 if (i < 0)
611 return -1;
612#ifdef ISDN_DEBUG_STATCALLB
613 printk(KERN_DEBUG "BCONN: %ld\n", c->arg);
614#endif
615 /* Signal B-channel-connect to network-devices */
616 if (dev->global_flags & ISDN_GLOBAL_STOPPED)
617 return 0;
618 dev->drv[di]->online |= (1 << (c->arg));
619 isdn_info_update();
620 if (isdn_net_stat_callback(i, c))
621 break;
622 isdn_v110_stat_callback(i, c);
623 if (isdn_tty_stat_callback(i, c))
624 break;
625 break;
626 case ISDN_STAT_BHUP:
627 if (i < 0)
628 return -1;
629#ifdef ISDN_DEBUG_STATCALLB
630 printk(KERN_DEBUG "BHUP: %ld\n", c->arg);
631#endif
632 if (dev->global_flags & ISDN_GLOBAL_STOPPED)
633 return 0;
634 dev->drv[di]->online &= ~(1 << (c->arg));
635 isdn_info_update();
636#ifdef CONFIG_ISDN_X25
637 /* Signal hangup to network-devices */
638 if (isdn_net_stat_callback(i, c))
639 break;
640#endif
641 isdn_v110_stat_callback(i, c);
642 if (isdn_tty_stat_callback(i, c))
643 break;
644 break;
645 case ISDN_STAT_NODCH:
646 if (i < 0)
647 return -1;
648#ifdef ISDN_DEBUG_STATCALLB
649 printk(KERN_DEBUG "NODCH: %ld\n", c->arg);
650#endif
651 if (dev->global_flags & ISDN_GLOBAL_STOPPED)
652 return 0;
653 if (isdn_net_stat_callback(i, c))
654 break;
655 if (isdn_tty_stat_callback(i, c))
656 break;
657 break;
658 case ISDN_STAT_ADDCH:
659 spin_lock_irqsave(&dev->lock, flags);
660 if (isdn_add_channels(dev->drv[di], di, c->arg, 1)) {
661 spin_unlock_irqrestore(&dev->lock, flags);
662 return -1;
663 }
664 spin_unlock_irqrestore(&dev->lock, flags);
665 isdn_info_update();
666 break;
667 case ISDN_STAT_DISCH:
668 spin_lock_irqsave(&dev->lock, flags);
669 for (i = 0; i < ISDN_MAX_CHANNELS; i++)
670 if ((dev->drvmap[i] == di) &&
671 (dev->chanmap[i] == c->arg)) {
672 if (c->parm.num[0])
673 dev->usage[i] &= ~ISDN_USAGE_DISABLED;
674 else
675 if (USG_NONE(dev->usage[i])) {
676 dev->usage[i] |= ISDN_USAGE_DISABLED;
677 }
678 else
679 retval = -1;
680 break;
681 }
682 spin_unlock_irqrestore(&dev->lock, flags);
683 isdn_info_update();
684 break;
685 case ISDN_STAT_UNLOAD:
686 while (dev->drv[di]->locks > 0) {
687 isdn_unlock_driver(dev->drv[di]);
688 }
689 spin_lock_irqsave(&dev->lock, flags);
690 isdn_tty_stat_callback(i, c);
691 for (i = 0; i < ISDN_MAX_CHANNELS; i++)
692 if (dev->drvmap[i] == di) {
693 dev->drvmap[i] = -1;
694 dev->chanmap[i] = -1;
695 dev->usage[i] &= ~ISDN_USAGE_DISABLED;
696 }
697 dev->drivers--;
698 dev->channels -= dev->drv[di]->channels;
699 kfree(dev->drv[di]->rcverr);
700 kfree(dev->drv[di]->rcvcount);
701 for (i = 0; i < dev->drv[di]->channels; i++)
702 skb_queue_purge(&dev->drv[di]->rpqueue[i]);
703 kfree(dev->drv[di]->rpqueue);
704 kfree(dev->drv[di]->rcv_waitq);
705 kfree(dev->drv[di]);
706 dev->drv[di] = NULL;
707 dev->drvid[di][0] = '\0';
708 isdn_info_update();
709 set_global_features();
710 spin_unlock_irqrestore(&dev->lock, flags);
711 return 0;
712 case ISDN_STAT_L1ERR:
713 break;
714 case CAPI_PUT_MESSAGE:
715 return (isdn_capi_rec_hl_msg(&c->parm.cmsg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716#ifdef CONFIG_ISDN_TTY_FAX
Joe Perches475be4d2012-02-19 19:52:38 -0800717 case ISDN_STAT_FAXIND:
718 isdn_tty_stat_callback(i, c);
719 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720#endif
721#ifdef CONFIG_ISDN_AUDIO
Joe Perches475be4d2012-02-19 19:52:38 -0800722 case ISDN_STAT_AUDIO:
723 isdn_tty_stat_callback(i, c);
724 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725#endif
726#ifdef CONFIG_ISDN_DIVERSION
Joe Perches475be4d2012-02-19 19:52:38 -0800727 case ISDN_STAT_PROT:
728 case ISDN_STAT_REDIR:
729 if (divert_if)
730 return (divert_if->stat_callback(c));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731#endif /* CONFIG_ISDN_DIVERSION */
Joe Perches475be4d2012-02-19 19:52:38 -0800732 default:
733 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 }
735 return 0;
736}
737
738/*
739 * Get integer from char-pointer, set pointer to end of number
740 */
741int
742isdn_getnum(char **p)
743{
744 int v = -1;
745
746 while (*p[0] >= '0' && *p[0] <= '9')
747 v = ((v < 0) ? 0 : (v * 10)) + (int) ((*p[0]++) - '0');
748 return v;
749}
750
751#define DLE 0x10
752
753/*
754 * isdn_readbchan() tries to get data from the read-queue.
755 * It MUST be called with interrupts off.
756 *
Joe Perches475be4d2012-02-19 19:52:38 -0800757 * Be aware that this is not an atomic operation when sleep != 0, even though
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 * interrupts are turned off! Well, like that we are currently only called
759 * on behalf of a read system call on raw device files (which are documented
Anand Gadiyar411c9402009-07-07 15:24:23 +0530760 * to be dangerous and for debugging purpose only). The inode semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 * takes care that this is not called for the same minor device number while
762 * we are sleeping, but access is not serialized against simultaneous read()
763 * from the corresponding ttyI device. Can other ugly events, like changes
Joe Perches475be4d2012-02-19 19:52:38 -0800764 * of the mapping (di,ch)<->minor, happen during the sleep? --he
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 */
766int
Joe Perches475be4d2012-02-19 19:52:38 -0800767isdn_readbchan(int di, int channel, u_char *buf, u_char *fp, int len, wait_queue_head_t *sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
769 int count;
770 int count_pull;
771 int count_put;
772 int dflag;
773 struct sk_buff *skb;
774 u_char *cp;
775
776 if (!dev->drv[di])
777 return 0;
778 if (skb_queue_empty(&dev->drv[di]->rpqueue[channel])) {
779 if (sleep)
Arnd Bergmann94fcf692014-02-26 12:01:55 +0100780 wait_event_interruptible(*sleep,
781 !skb_queue_empty(&dev->drv[di]->rpqueue[channel]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 else
783 return 0;
784 }
785 if (len > dev->drv[di]->rcvcount[channel])
786 len = dev->drv[di]->rcvcount[channel];
787 cp = buf;
788 count = 0;
789 while (len) {
790 if (!(skb = skb_peek(&dev->drv[di]->rpqueue[channel])))
791 break;
792#ifdef CONFIG_ISDN_AUDIO
793 if (ISDN_AUDIO_SKB_LOCK(skb))
794 break;
795 ISDN_AUDIO_SKB_LOCK(skb) = 1;
796 if ((ISDN_AUDIO_SKB_DLECOUNT(skb)) || (dev->drv[di]->DLEflag & (1 << channel))) {
797 char *p = skb->data;
798 unsigned long DLEmask = (1 << channel);
799
800 dflag = 0;
801 count_pull = count_put = 0;
802 while ((count_pull < skb->len) && (len > 0)) {
803 len--;
804 if (dev->drv[di]->DLEflag & DLEmask) {
805 *cp++ = DLE;
806 dev->drv[di]->DLEflag &= ~DLEmask;
807 } else {
808 *cp++ = *p;
809 if (*p == DLE) {
810 dev->drv[di]->DLEflag |= DLEmask;
811 (ISDN_AUDIO_SKB_DLECOUNT(skb))--;
812 }
813 p++;
814 count_pull++;
815 }
816 count_put++;
817 }
818 if (count_pull >= skb->len)
819 dflag = 1;
820 } else {
821#endif
822 /* No DLE's in buff, so simply copy it */
823 dflag = 1;
824 if ((count_pull = skb->len) > len) {
825 count_pull = len;
826 dflag = 0;
827 }
828 count_put = count_pull;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300829 skb_copy_from_linear_data(skb, cp, count_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 cp += count_put;
831 len -= count_put;
832#ifdef CONFIG_ISDN_AUDIO
833 }
834#endif
835 count += count_put;
836 if (fp) {
837 memset(fp, 0, count_put);
838 fp += count_put;
839 }
840 if (dflag) {
841 /* We got all the data in this buff.
842 * Now we can dequeue it.
843 */
844 if (fp)
845 *(fp - 1) = 0xff;
846#ifdef CONFIG_ISDN_AUDIO
847 ISDN_AUDIO_SKB_LOCK(skb) = 0;
848#endif
849 skb = skb_dequeue(&dev->drv[di]->rpqueue[channel]);
850 dev_kfree_skb(skb);
851 } else {
852 /* Not yet emptied this buff, so it
853 * must stay in the queue, for further calls
854 * but we pull off the data we got until now.
855 */
856 skb_pull(skb, count_pull);
857#ifdef CONFIG_ISDN_AUDIO
858 ISDN_AUDIO_SKB_LOCK(skb) = 0;
859#endif
860 }
861 dev->drv[di]->rcvcount[channel] -= count_put;
862 }
863 return count;
864}
865
Alan Cox33f0f882006-01-09 20:54:13 -0800866/*
867 * isdn_readbchan_tty() tries to get data from the read-queue.
868 * It MUST be called with interrupts off.
869 *
870 * Be aware that this is not an atomic operation when sleep != 0, even though
871 * interrupts are turned off! Well, like that we are currently only called
872 * on behalf of a read system call on raw device files (which are documented
Anand Gadiyar411c9402009-07-07 15:24:23 +0530873 * to be dangerous and for debugging purpose only). The inode semaphore
Alan Cox33f0f882006-01-09 20:54:13 -0800874 * takes care that this is not called for the same minor device number while
875 * we are sleeping, but access is not serialized against simultaneous read()
876 * from the corresponding ttyI device. Can other ugly events, like changes
877 * of the mapping (di,ch)<->minor, happen during the sleep? --he
878 */
879int
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100880isdn_readbchan_tty(int di, int channel, struct tty_port *port, int cisco_hack)
Alan Cox33f0f882006-01-09 20:54:13 -0800881{
882 int count;
883 int count_pull;
884 int count_put;
885 int dflag;
886 struct sk_buff *skb;
887 char last = 0;
888 int len;
889
890 if (!dev->drv[di])
891 return 0;
892 if (skb_queue_empty(&dev->drv[di]->rpqueue[channel]))
Joe Perches475be4d2012-02-19 19:52:38 -0800893 return 0;
Alan Cox33f0f882006-01-09 20:54:13 -0800894
Jiri Slaby227434f2013-01-03 15:53:01 +0100895 len = tty_buffer_request_room(port, dev->drv[di]->rcvcount[channel]);
Joe Perches475be4d2012-02-19 19:52:38 -0800896 if (len == 0)
Alan Cox33f0f882006-01-09 20:54:13 -0800897 return len;
898
899 count = 0;
900 while (len) {
901 if (!(skb = skb_peek(&dev->drv[di]->rpqueue[channel])))
902 break;
903#ifdef CONFIG_ISDN_AUDIO
904 if (ISDN_AUDIO_SKB_LOCK(skb))
905 break;
906 ISDN_AUDIO_SKB_LOCK(skb) = 1;
907 if ((ISDN_AUDIO_SKB_DLECOUNT(skb)) || (dev->drv[di]->DLEflag & (1 << channel))) {
908 char *p = skb->data;
909 unsigned long DLEmask = (1 << channel);
910
911 dflag = 0;
912 count_pull = count_put = 0;
913 while ((count_pull < skb->len) && (len > 0)) {
Matthias Goebl7fde4d72008-01-04 03:45:28 -0800914 /* push every character but the last to the tty buffer directly */
Joe Perches475be4d2012-02-19 19:52:38 -0800915 if (count_put)
Jiri Slaby92a19f92013-01-03 15:53:03 +0100916 tty_insert_flip_char(port, last, TTY_NORMAL);
Alan Cox33f0f882006-01-09 20:54:13 -0800917 len--;
918 if (dev->drv[di]->DLEflag & DLEmask) {
919 last = DLE;
920 dev->drv[di]->DLEflag &= ~DLEmask;
921 } else {
922 last = *p;
923 if (last == DLE) {
924 dev->drv[di]->DLEflag |= DLEmask;
925 (ISDN_AUDIO_SKB_DLECOUNT(skb))--;
926 }
927 p++;
928 count_pull++;
929 }
930 count_put++;
931 }
932 if (count_pull >= skb->len)
933 dflag = 1;
934 } else {
935#endif
936 /* No DLE's in buff, so simply copy it */
937 dflag = 1;
938 if ((count_pull = skb->len) > len) {
939 count_pull = len;
940 dflag = 0;
941 }
942 count_put = count_pull;
Joe Perches475be4d2012-02-19 19:52:38 -0800943 if (count_put > 1)
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100944 tty_insert_flip_string(port, skb->data, count_put - 1);
Karsten Keil916d1542006-06-26 20:21:01 +0200945 last = skb->data[count_put - 1];
Alan Cox33f0f882006-01-09 20:54:13 -0800946 len -= count_put;
947#ifdef CONFIG_ISDN_AUDIO
948 }
949#endif
950 count += count_put;
951 if (dflag) {
952 /* We got all the data in this buff.
953 * Now we can dequeue it.
954 */
Joe Perches475be4d2012-02-19 19:52:38 -0800955 if (cisco_hack)
Jiri Slaby92a19f92013-01-03 15:53:03 +0100956 tty_insert_flip_char(port, last, 0xFF);
Alan Cox33f0f882006-01-09 20:54:13 -0800957 else
Jiri Slaby92a19f92013-01-03 15:53:03 +0100958 tty_insert_flip_char(port, last, TTY_NORMAL);
Alan Cox33f0f882006-01-09 20:54:13 -0800959#ifdef CONFIG_ISDN_AUDIO
960 ISDN_AUDIO_SKB_LOCK(skb) = 0;
961#endif
962 skb = skb_dequeue(&dev->drv[di]->rpqueue[channel]);
963 dev_kfree_skb(skb);
964 } else {
Jiri Slaby92a19f92013-01-03 15:53:03 +0100965 tty_insert_flip_char(port, last, TTY_NORMAL);
Alan Cox33f0f882006-01-09 20:54:13 -0800966 /* Not yet emptied this buff, so it
967 * must stay in the queue, for further calls
968 * but we pull off the data we got until now.
969 */
970 skb_pull(skb, count_pull);
971#ifdef CONFIG_ISDN_AUDIO
972 ISDN_AUDIO_SKB_LOCK(skb) = 0;
973#endif
974 }
975 dev->drv[di]->rcvcount[channel] -= count_put;
976 }
977 return count;
978}
979
980
Harvey Harrisond4f77512008-03-05 18:37:39 -0800981static inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982isdn_minor2drv(int minor)
983{
984 return (dev->drvmap[minor]);
985}
986
Harvey Harrisond4f77512008-03-05 18:37:39 -0800987static inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988isdn_minor2chan(int minor)
989{
990 return (dev->chanmap[minor]);
991}
992
993static char *
994isdn_statstr(void)
995{
996 static char istatbuf[2048];
997 char *p;
998 int i;
999
1000 sprintf(istatbuf, "idmap:\t");
1001 p = istatbuf + strlen(istatbuf);
1002 for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
1003 sprintf(p, "%s ", (dev->drvmap[i] < 0) ? "-" : dev->drvid[dev->drvmap[i]]);
1004 p = istatbuf + strlen(istatbuf);
1005 }
1006 sprintf(p, "\nchmap:\t");
1007 p = istatbuf + strlen(istatbuf);
1008 for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
1009 sprintf(p, "%d ", dev->chanmap[i]);
1010 p = istatbuf + strlen(istatbuf);
1011 }
1012 sprintf(p, "\ndrmap:\t");
1013 p = istatbuf + strlen(istatbuf);
1014 for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
1015 sprintf(p, "%d ", dev->drvmap[i]);
1016 p = istatbuf + strlen(istatbuf);
1017 }
1018 sprintf(p, "\nusage:\t");
1019 p = istatbuf + strlen(istatbuf);
1020 for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
1021 sprintf(p, "%d ", dev->usage[i]);
1022 p = istatbuf + strlen(istatbuf);
1023 }
1024 sprintf(p, "\nflags:\t");
1025 p = istatbuf + strlen(istatbuf);
1026 for (i = 0; i < ISDN_MAX_DRIVERS; i++) {
1027 if (dev->drv[i]) {
1028 sprintf(p, "%ld ", dev->drv[i]->online);
1029 p = istatbuf + strlen(istatbuf);
1030 } else {
1031 sprintf(p, "? ");
1032 p = istatbuf + strlen(istatbuf);
1033 }
1034 }
1035 sprintf(p, "\nphone:\t");
1036 p = istatbuf + strlen(istatbuf);
1037 for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
1038 sprintf(p, "%s ", dev->num[i]);
1039 p = istatbuf + strlen(istatbuf);
1040 }
1041 sprintf(p, "\n");
1042 return istatbuf;
1043}
1044
1045/* Module interface-code */
1046
1047void
1048isdn_info_update(void)
1049{
1050 infostruct *p = dev->infochain;
1051
1052 while (p) {
1053 *(p->private) = 1;
1054 p = (infostruct *) p->next;
1055 }
1056 wake_up_interruptible(&(dev->info_waitq));
1057}
1058
1059static ssize_t
Joe Perches475be4d2012-02-19 19:52:38 -08001060isdn_read(struct file *file, char __user *buf, size_t count, loff_t *off)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061{
Al Viro496ad9a2013-01-23 17:07:38 -05001062 uint minor = iminor(file_inode(file));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 int len = 0;
1064 int drvidx;
1065 int chidx;
1066 int retval;
1067 char *p;
1068
Arnd Bergmann76a64922010-07-11 11:18:53 +00001069 mutex_lock(&isdn_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 if (minor == ISDN_MINOR_STATUS) {
1071 if (!file->private_data) {
1072 if (file->f_flags & O_NONBLOCK) {
1073 retval = -EAGAIN;
1074 goto out;
1075 }
Arnd Bergmann94fcf692014-02-26 12:01:55 +01001076 wait_event_interruptible(dev->info_waitq,
1077 file->private_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 }
1079 p = isdn_statstr();
1080 file->private_data = NULL;
1081 if ((len = strlen(p)) <= count) {
1082 if (copy_to_user(buf, p, len)) {
1083 retval = -EFAULT;
1084 goto out;
1085 }
1086 *off += len;
1087 retval = len;
1088 goto out;
1089 }
1090 retval = 0;
1091 goto out;
1092 }
1093 if (!dev->drivers) {
1094 retval = -ENODEV;
1095 goto out;
1096 }
1097 if (minor <= ISDN_MINOR_BMAX) {
1098 printk(KERN_WARNING "isdn_read minor %d obsolete!\n", minor);
1099 drvidx = isdn_minor2drv(minor);
1100 if (drvidx < 0) {
1101 retval = -ENODEV;
1102 goto out;
1103 }
1104 if (!(dev->drv[drvidx]->flags & DRV_FLAG_RUNNING)) {
1105 retval = -ENODEV;
1106 goto out;
1107 }
1108 chidx = isdn_minor2chan(minor);
1109 if (!(p = kmalloc(count, GFP_KERNEL))) {
1110 retval = -ENOMEM;
1111 goto out;
1112 }
1113 len = isdn_readbchan(drvidx, chidx, p, NULL, count,
1114 &dev->drv[drvidx]->rcv_waitq[chidx]);
1115 *off += len;
Joe Perches475be4d2012-02-19 19:52:38 -08001116 if (copy_to_user(buf, p, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 len = -EFAULT;
1118 kfree(p);
1119 retval = len;
1120 goto out;
1121 }
1122 if (minor <= ISDN_MINOR_CTRLMAX) {
1123 drvidx = isdn_minor2drv(minor - ISDN_MINOR_CTRL);
1124 if (drvidx < 0) {
1125 retval = -ENODEV;
1126 goto out;
1127 }
1128 if (!dev->drv[drvidx]->stavail) {
1129 if (file->f_flags & O_NONBLOCK) {
1130 retval = -EAGAIN;
1131 goto out;
1132 }
Arnd Bergmann94fcf692014-02-26 12:01:55 +01001133 wait_event_interruptible(dev->drv[drvidx]->st_waitq,
1134 dev->drv[drvidx]->stavail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 }
1136 if (dev->drv[drvidx]->interface->readstat) {
1137 if (count > dev->drv[drvidx]->stavail)
1138 count = dev->drv[drvidx]->stavail;
Jeff Garzik04518bf2006-10-17 00:10:39 -07001139 len = dev->drv[drvidx]->interface->readstat(buf, count,
Joe Perches475be4d2012-02-19 19:52:38 -08001140 drvidx, isdn_minor2chan(minor - ISDN_MINOR_CTRL));
Jeff Garzik04518bf2006-10-17 00:10:39 -07001141 if (len < 0) {
1142 retval = len;
1143 goto out;
1144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 } else {
1146 len = 0;
1147 }
1148 if (len)
1149 dev->drv[drvidx]->stavail -= len;
1150 else
1151 dev->drv[drvidx]->stavail = 0;
1152 *off += len;
1153 retval = len;
1154 goto out;
1155 }
1156#ifdef CONFIG_ISDN_PPP
1157 if (minor <= ISDN_MINOR_PPPMAX) {
1158 retval = isdn_ppp_read(minor - ISDN_MINOR_PPP, file, buf, count);
1159 goto out;
1160 }
1161#endif
1162 retval = -ENODEV;
Joe Perches475be4d2012-02-19 19:52:38 -08001163out:
Arnd Bergmann76a64922010-07-11 11:18:53 +00001164 mutex_unlock(&isdn_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 return retval;
1166}
1167
1168static ssize_t
Joe Perches475be4d2012-02-19 19:52:38 -08001169isdn_write(struct file *file, const char __user *buf, size_t count, loff_t *off)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170{
Al Viro496ad9a2013-01-23 17:07:38 -05001171 uint minor = iminor(file_inode(file));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 int drvidx;
1173 int chidx;
1174 int retval;
1175
1176 if (minor == ISDN_MINOR_STATUS)
1177 return -EPERM;
1178 if (!dev->drivers)
1179 return -ENODEV;
1180
Arnd Bergmann76a64922010-07-11 11:18:53 +00001181 mutex_lock(&isdn_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 if (minor <= ISDN_MINOR_BMAX) {
1183 printk(KERN_WARNING "isdn_write minor %d obsolete!\n", minor);
1184 drvidx = isdn_minor2drv(minor);
1185 if (drvidx < 0) {
1186 retval = -ENODEV;
1187 goto out;
1188 }
1189 if (!(dev->drv[drvidx]->flags & DRV_FLAG_RUNNING)) {
1190 retval = -ENODEV;
1191 goto out;
1192 }
1193 chidx = isdn_minor2chan(minor);
Arnd Bergmann94fcf692014-02-26 12:01:55 +01001194 wait_event_interruptible(dev->drv[drvidx]->snd_waitq[chidx],
1195 (retval = isdn_writebuf_stub(drvidx, chidx, buf, count)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 goto out;
1197 }
1198 if (minor <= ISDN_MINOR_CTRLMAX) {
1199 drvidx = isdn_minor2drv(minor - ISDN_MINOR_CTRL);
1200 if (drvidx < 0) {
1201 retval = -ENODEV;
1202 goto out;
1203 }
1204 /*
1205 * We want to use the isdnctrl device to load the firmware
1206 *
1207 if (!(dev->drv[drvidx]->flags & DRV_FLAG_RUNNING))
1208 return -ENODEV;
Joe Perches475be4d2012-02-19 19:52:38 -08001209 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 if (dev->drv[drvidx]->interface->writecmd)
1211 retval = dev->drv[drvidx]->interface->
Karsten Keild39d5ed2007-10-08 12:52:09 +02001212 writecmd(buf, count, drvidx,
Joe Perches475be4d2012-02-19 19:52:38 -08001213 isdn_minor2chan(minor - ISDN_MINOR_CTRL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 else
1215 retval = count;
1216 goto out;
1217 }
1218#ifdef CONFIG_ISDN_PPP
1219 if (minor <= ISDN_MINOR_PPPMAX) {
1220 retval = isdn_ppp_write(minor - ISDN_MINOR_PPP, file, buf, count);
1221 goto out;
1222 }
1223#endif
1224 retval = -ENODEV;
Joe Perches475be4d2012-02-19 19:52:38 -08001225out:
Arnd Bergmann76a64922010-07-11 11:18:53 +00001226 mutex_unlock(&isdn_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 return retval;
1228}
1229
1230static unsigned int
Joe Perches475be4d2012-02-19 19:52:38 -08001231isdn_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232{
1233 unsigned int mask = 0;
Al Viro496ad9a2013-01-23 17:07:38 -05001234 unsigned int minor = iminor(file_inode(file));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 int drvidx = isdn_minor2drv(minor - ISDN_MINOR_CTRL);
1236
Arnd Bergmann76a64922010-07-11 11:18:53 +00001237 mutex_lock(&isdn_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 if (minor == ISDN_MINOR_STATUS) {
1239 poll_wait(file, &(dev->info_waitq), wait);
1240 /* mask = POLLOUT | POLLWRNORM; */
1241 if (file->private_data) {
1242 mask |= POLLIN | POLLRDNORM;
1243 }
1244 goto out;
1245 }
1246 if (minor >= ISDN_MINOR_CTRL && minor <= ISDN_MINOR_CTRLMAX) {
1247 if (drvidx < 0) {
1248 /* driver deregistered while file open */
1249 mask = POLLHUP;
1250 goto out;
1251 }
1252 poll_wait(file, &(dev->drv[drvidx]->st_waitq), wait);
1253 mask = POLLOUT | POLLWRNORM;
1254 if (dev->drv[drvidx]->stavail) {
1255 mask |= POLLIN | POLLRDNORM;
1256 }
1257 goto out;
1258 }
1259#ifdef CONFIG_ISDN_PPP
1260 if (minor <= ISDN_MINOR_PPPMAX) {
1261 mask = isdn_ppp_poll(file, wait);
1262 goto out;
1263 }
1264#endif
1265 mask = POLLERR;
Joe Perches475be4d2012-02-19 19:52:38 -08001266out:
Arnd Bergmann76a64922010-07-11 11:18:53 +00001267 mutex_unlock(&isdn_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 return mask;
1269}
1270
1271
1272static int
Arnd Bergmann703c6312010-04-27 00:24:02 +02001273isdn_ioctl(struct file *file, uint cmd, ulong arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274{
Al Viro496ad9a2013-01-23 17:07:38 -05001275 uint minor = iminor(file_inode(file));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 isdn_ctrl c;
1277 int drvidx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 int ret;
1279 int i;
1280 char __user *p;
1281 char *s;
1282 union iocpar {
1283 char name[10];
1284 char bname[22];
1285 isdn_ioctl_struct iocts;
1286 isdn_net_ioctl_phone phone;
1287 isdn_net_ioctl_cfg cfg;
1288 } iocpar;
1289 void __user *argp = (void __user *)arg;
1290
1291#define name iocpar.name
1292#define bname iocpar.bname
1293#define iocts iocpar.iocts
1294#define phone iocpar.phone
1295#define cfg iocpar.cfg
1296
1297 if (minor == ISDN_MINOR_STATUS) {
1298 switch (cmd) {
Joe Perches475be4d2012-02-19 19:52:38 -08001299 case IIOCGETDVR:
1300 return (TTY_DV +
1301 (NET_DV << 8) +
1302 (INF_DV << 16));
1303 case IIOCGETCPS:
1304 if (arg) {
1305 ulong __user *p = argp;
1306 int i;
Joe Perches475be4d2012-02-19 19:52:38 -08001307 for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
1308 put_user(dev->ibytes[i], p++);
1309 put_user(dev->obytes[i], p++);
1310 }
1311 return 0;
1312 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 return -EINVAL;
Joe Perches475be4d2012-02-19 19:52:38 -08001314 break;
Joe Perches475be4d2012-02-19 19:52:38 -08001315 case IIOCNETGPN:
1316 /* Get peer phone number of a connected
1317 * isdn network interface */
1318 if (arg) {
1319 if (copy_from_user(&phone, argp, sizeof(phone)))
1320 return -EFAULT;
1321 return isdn_net_getpeer(&phone, argp);
1322 } else
1323 return -EINVAL;
Joe Perches475be4d2012-02-19 19:52:38 -08001324 default:
1325 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 }
1327 }
1328 if (!dev->drivers)
1329 return -ENODEV;
1330 if (minor <= ISDN_MINOR_BMAX) {
1331 drvidx = isdn_minor2drv(minor);
1332 if (drvidx < 0)
1333 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 if (!(dev->drv[drvidx]->flags & DRV_FLAG_RUNNING))
1335 return -ENODEV;
1336 return 0;
1337 }
1338 if (minor <= ISDN_MINOR_CTRLMAX) {
1339/*
1340 * isdn net devices manage lots of configuration variables as linked lists.
1341 * Those lists must only be manipulated from user space. Some of the ioctl's
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08001342 * service routines access user space and are not atomic. Therefore, ioctl's
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 * manipulating the lists and ioctl's sleeping while accessing the lists
1344 * are serialized by means of a semaphore.
1345 */
1346 switch (cmd) {
Joe Perches475be4d2012-02-19 19:52:38 -08001347 case IIOCNETDWRSET:
1348 printk(KERN_INFO "INFO: ISDN_DW_ABC_EXTENSION not enabled\n");
1349 return (-EINVAL);
1350 case IIOCNETLCR:
1351 printk(KERN_INFO "INFO: ISDN_ABC_LCR_SUPPORT not enabled\n");
1352 return -ENODEV;
Joe Perches475be4d2012-02-19 19:52:38 -08001353 case IIOCNETAIF:
1354 /* Add a network-interface */
1355 if (arg) {
1356 if (copy_from_user(name, argp, sizeof(name)))
1357 return -EFAULT;
1358 s = name;
1359 } else {
1360 s = NULL;
1361 }
1362 ret = mutex_lock_interruptible(&dev->mtx);
1363 if (ret) return ret;
1364 if ((s = isdn_net_new(s, NULL))) {
1365 if (copy_to_user(argp, s, strlen(s) + 1)) {
1366 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 } else {
Joe Perches475be4d2012-02-19 19:52:38 -08001368 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 }
Joe Perches475be4d2012-02-19 19:52:38 -08001370 } else
1371 ret = -ENODEV;
1372 mutex_unlock(&dev->mtx);
1373 return ret;
1374 case IIOCNETASL:
1375 /* Add a slave to a network-interface */
1376 if (arg) {
1377 if (copy_from_user(bname, argp, sizeof(bname) - 1))
1378 return -EFAULT;
1379 } else
1380 return -EINVAL;
1381 ret = mutex_lock_interruptible(&dev->mtx);
1382 if (ret) return ret;
1383 if ((s = isdn_net_newslave(bname))) {
1384 if (copy_to_user(argp, s, strlen(s) + 1)) {
1385 ret = -EFAULT;
1386 } else {
1387 ret = 0;
1388 }
1389 } else
1390 ret = -ENODEV;
1391 mutex_unlock(&dev->mtx);
1392 return ret;
1393 case IIOCNETDIF:
1394 /* Delete a network-interface */
1395 if (arg) {
1396 if (copy_from_user(name, argp, sizeof(name)))
1397 return -EFAULT;
Matthias Kaehlcke4e3dfac2007-10-16 01:27:50 -07001398 ret = mutex_lock_interruptible(&dev->mtx);
Joe Perches475be4d2012-02-19 19:52:38 -08001399 if (ret) return ret;
1400 ret = isdn_net_rm(name);
Matthias Kaehlcke4e3dfac2007-10-16 01:27:50 -07001401 mutex_unlock(&dev->mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 return ret;
Joe Perches475be4d2012-02-19 19:52:38 -08001403 } else
1404 return -EINVAL;
1405 case IIOCNETSCF:
1406 /* Set configurable parameters of a network-interface */
1407 if (arg) {
1408 if (copy_from_user(&cfg, argp, sizeof(cfg)))
1409 return -EFAULT;
1410 return isdn_net_setcfg(&cfg);
1411 } else
1412 return -EINVAL;
1413 case IIOCNETGCF:
1414 /* Get configurable parameters of a network-interface */
1415 if (arg) {
1416 if (copy_from_user(&cfg, argp, sizeof(cfg)))
1417 return -EFAULT;
1418 if (!(ret = isdn_net_getcfg(&cfg))) {
1419 if (copy_to_user(argp, &cfg, sizeof(cfg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 return -EFAULT;
Joe Perches475be4d2012-02-19 19:52:38 -08001421 }
1422 return ret;
1423 } else
1424 return -EINVAL;
1425 case IIOCNETANM:
1426 /* Add a phone-number to a network-interface */
1427 if (arg) {
1428 if (copy_from_user(&phone, argp, sizeof(phone)))
1429 return -EFAULT;
Matthias Kaehlcke4e3dfac2007-10-16 01:27:50 -07001430 ret = mutex_lock_interruptible(&dev->mtx);
Joe Perches475be4d2012-02-19 19:52:38 -08001431 if (ret) return ret;
1432 ret = isdn_net_addphone(&phone);
Matthias Kaehlcke4e3dfac2007-10-16 01:27:50 -07001433 mutex_unlock(&dev->mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 return ret;
Joe Perches475be4d2012-02-19 19:52:38 -08001435 } else
1436 return -EINVAL;
1437 case IIOCNETGNM:
1438 /* Get list of phone-numbers of a network-interface */
1439 if (arg) {
1440 if (copy_from_user(&phone, argp, sizeof(phone)))
1441 return -EFAULT;
1442 ret = mutex_lock_interruptible(&dev->mtx);
1443 if (ret) return ret;
1444 ret = isdn_net_getphones(&phone, argp);
1445 mutex_unlock(&dev->mtx);
1446 return ret;
1447 } else
1448 return -EINVAL;
1449 case IIOCNETDNM:
1450 /* Delete a phone-number of a network-interface */
1451 if (arg) {
1452 if (copy_from_user(&phone, argp, sizeof(phone)))
1453 return -EFAULT;
1454 ret = mutex_lock_interruptible(&dev->mtx);
1455 if (ret) return ret;
1456 ret = isdn_net_delphone(&phone);
1457 mutex_unlock(&dev->mtx);
1458 return ret;
1459 } else
1460 return -EINVAL;
1461 case IIOCNETDIL:
1462 /* Force dialing of a network-interface */
1463 if (arg) {
1464 if (copy_from_user(name, argp, sizeof(name)))
1465 return -EFAULT;
1466 return isdn_net_force_dial(name);
1467 } else
1468 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469#ifdef CONFIG_ISDN_PPP
Joe Perches475be4d2012-02-19 19:52:38 -08001470 case IIOCNETALN:
1471 if (!arg)
1472 return -EINVAL;
1473 if (copy_from_user(name, argp, sizeof(name)))
1474 return -EFAULT;
1475 return isdn_ppp_dial_slave(name);
1476 case IIOCNETDLN:
1477 if (!arg)
1478 return -EINVAL;
1479 if (copy_from_user(name, argp, sizeof(name)))
1480 return -EFAULT;
1481 return isdn_ppp_hangup_slave(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482#endif
Joe Perches475be4d2012-02-19 19:52:38 -08001483 case IIOCNETHUP:
1484 /* Force hangup of a network-interface */
1485 if (!arg)
1486 return -EINVAL;
1487 if (copy_from_user(name, argp, sizeof(name)))
1488 return -EFAULT;
1489 return isdn_net_force_hangup(name);
1490 break;
Joe Perches475be4d2012-02-19 19:52:38 -08001491 case IIOCSETVER:
1492 dev->net_verbose = arg;
1493 printk(KERN_INFO "isdn: Verbose-Level is %d\n", dev->net_verbose);
1494 return 0;
1495 case IIOCSETGST:
1496 if (arg)
1497 dev->global_flags |= ISDN_GLOBAL_STOPPED;
1498 else
1499 dev->global_flags &= ~ISDN_GLOBAL_STOPPED;
1500 printk(KERN_INFO "isdn: Global Mode %s\n",
1501 (dev->global_flags & ISDN_GLOBAL_STOPPED) ? "stopped" : "running");
1502 return 0;
1503 case IIOCSETBRJ:
1504 drvidx = -1;
1505 if (arg) {
1506 int i;
1507 char *p;
1508 if (copy_from_user(&iocts, argp,
1509 sizeof(isdn_ioctl_struct)))
1510 return -EFAULT;
1511 iocts.drvid[sizeof(iocts.drvid) - 1] = 0;
1512 if (strlen(iocts.drvid)) {
1513 if ((p = strchr(iocts.drvid, ',')))
1514 *p = 0;
1515 drvidx = -1;
1516 for (i = 0; i < ISDN_MAX_DRIVERS; i++)
1517 if (!(strcmp(dev->drvid[i], iocts.drvid))) {
1518 drvidx = i;
1519 break;
1520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 }
Joe Perches475be4d2012-02-19 19:52:38 -08001522 }
1523 if (drvidx == -1)
1524 return -ENODEV;
1525 if (iocts.arg)
1526 dev->drv[drvidx]->flags |= DRV_FLAG_REJBUS;
1527 else
1528 dev->drv[drvidx]->flags &= ~DRV_FLAG_REJBUS;
1529 return 0;
1530 case IIOCSIGPRF:
1531 dev->profd = current;
1532 return 0;
1533 break;
1534 case IIOCGETPRF:
1535 /* Get all Modem-Profiles */
1536 if (arg) {
1537 char __user *p = argp;
1538 int i;
1539
Joe Perches475be4d2012-02-19 19:52:38 -08001540 for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
1541 if (copy_to_user(p, dev->mdm.info[i].emu.profile,
1542 ISDN_MODEM_NUMREG))
1543 return -EFAULT;
1544 p += ISDN_MODEM_NUMREG;
1545 if (copy_to_user(p, dev->mdm.info[i].emu.pmsn, ISDN_MSNLEN))
1546 return -EFAULT;
1547 p += ISDN_MSNLEN;
1548 if (copy_to_user(p, dev->mdm.info[i].emu.plmsn, ISDN_LMSNLEN))
1549 return -EFAULT;
1550 p += ISDN_LMSNLEN;
1551 }
1552 return (ISDN_MODEM_NUMREG + ISDN_MSNLEN + ISDN_LMSNLEN) * ISDN_MAX_CHANNELS;
1553 } else
1554 return -EINVAL;
1555 break;
1556 case IIOCSETPRF:
1557 /* Set all Modem-Profiles */
1558 if (arg) {
1559 char __user *p = argp;
1560 int i;
1561
Joe Perches475be4d2012-02-19 19:52:38 -08001562 for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
1563 if (copy_from_user(dev->mdm.info[i].emu.profile, p,
1564 ISDN_MODEM_NUMREG))
1565 return -EFAULT;
1566 p += ISDN_MODEM_NUMREG;
1567 if (copy_from_user(dev->mdm.info[i].emu.plmsn, p, ISDN_LMSNLEN))
1568 return -EFAULT;
1569 p += ISDN_LMSNLEN;
1570 if (copy_from_user(dev->mdm.info[i].emu.pmsn, p, ISDN_MSNLEN))
1571 return -EFAULT;
1572 p += ISDN_MSNLEN;
1573 }
1574 return 0;
1575 } else
1576 return -EINVAL;
1577 break;
1578 case IIOCSETMAP:
1579 case IIOCGETMAP:
1580 /* Set/Get MSN->EAZ-Mapping for a driver */
1581 if (arg) {
1582
1583 if (copy_from_user(&iocts, argp,
1584 sizeof(isdn_ioctl_struct)))
1585 return -EFAULT;
1586 iocts.drvid[sizeof(iocts.drvid) - 1] = 0;
1587 if (strlen(iocts.drvid)) {
1588 drvidx = -1;
1589 for (i = 0; i < ISDN_MAX_DRIVERS; i++)
1590 if (!(strcmp(dev->drvid[i], iocts.drvid))) {
1591 drvidx = i;
1592 break;
1593 }
1594 } else
1595 drvidx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 if (drvidx == -1)
1597 return -ENODEV;
Joe Perches475be4d2012-02-19 19:52:38 -08001598 if (cmd == IIOCSETMAP) {
1599 int loop = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Joe Perches475be4d2012-02-19 19:52:38 -08001601 p = (char __user *) iocts.arg;
1602 i = 0;
1603 while (loop) {
1604 int j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Joe Perches475be4d2012-02-19 19:52:38 -08001606 while (1) {
Joe Perches475be4d2012-02-19 19:52:38 -08001607 get_user(bname[j], p++);
1608 switch (bname[j]) {
1609 case '\0':
1610 loop = 0;
1611 /* Fall through */
1612 case ',':
1613 bname[j] = '\0';
1614 strcpy(dev->drv[drvidx]->msn2eaz[i], bname);
1615 j = ISDN_MSNLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 break;
Joe Perches475be4d2012-02-19 19:52:38 -08001617 default:
1618 j++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 }
Joe Perches475be4d2012-02-19 19:52:38 -08001620 if (j >= ISDN_MSNLEN)
1621 break;
1622 }
1623 if (++i > 9)
1624 break;
1625 }
1626 } else {
1627 p = (char __user *) iocts.arg;
1628 for (i = 0; i < 10; i++) {
1629 snprintf(bname, sizeof(bname), "%s%s",
1630 strlen(dev->drv[drvidx]->msn2eaz[i]) ?
1631 dev->drv[drvidx]->msn2eaz[i] : "_",
1632 (i < 9) ? "," : "\0");
1633 if (copy_to_user(p, bname, strlen(bname) + 1))
1634 return -EFAULT;
1635 p += strlen(bname);
1636 }
1637 }
1638 return 0;
1639 } else
1640 return -EINVAL;
1641 case IIOCDBGVAR:
1642 if (arg) {
1643 if (copy_to_user(argp, &dev, sizeof(ulong)))
1644 return -EFAULT;
1645 return 0;
1646 } else
1647 return -EINVAL;
1648 break;
1649 default:
1650 if ((cmd & IIOCDRVCTL) == IIOCDRVCTL)
1651 cmd = ((cmd >> _IOC_NRSHIFT) & _IOC_NRMASK) & ISDN_DRVIOCTL_MASK;
1652 else
1653 return -EINVAL;
1654 if (arg) {
1655 int i;
1656 char *p;
1657 if (copy_from_user(&iocts, argp, sizeof(isdn_ioctl_struct)))
1658 return -EFAULT;
1659 iocts.drvid[sizeof(iocts.drvid) - 1] = 0;
1660 if (strlen(iocts.drvid)) {
1661 if ((p = strchr(iocts.drvid, ',')))
1662 *p = 0;
1663 drvidx = -1;
1664 for (i = 0; i < ISDN_MAX_DRIVERS; i++)
1665 if (!(strcmp(dev->drvid[i], iocts.drvid))) {
1666 drvidx = i;
1667 break;
1668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 } else
Joe Perches475be4d2012-02-19 19:52:38 -08001670 drvidx = 0;
1671 if (drvidx == -1)
1672 return -ENODEV;
Joe Perches475be4d2012-02-19 19:52:38 -08001673 c.driver = drvidx;
1674 c.command = ISDN_CMD_IOCTL;
1675 c.arg = cmd;
1676 memcpy(c.parm.num, &iocts.arg, sizeof(ulong));
1677 ret = isdn_command(&c);
1678 memcpy(&iocts.arg, c.parm.num, sizeof(ulong));
1679 if (copy_to_user(argp, &iocts, sizeof(isdn_ioctl_struct)))
1680 return -EFAULT;
1681 return ret;
1682 } else
1683 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 }
1685 }
1686#ifdef CONFIG_ISDN_PPP
1687 if (minor <= ISDN_MINOR_PPPMAX)
1688 return (isdn_ppp_ioctl(minor - ISDN_MINOR_PPP, file, cmd, arg));
1689#endif
1690 return -ENODEV;
1691
1692#undef name
1693#undef bname
1694#undef iocts
1695#undef phone
1696#undef cfg
1697}
1698
Arnd Bergmann703c6312010-04-27 00:24:02 +02001699static long
1700isdn_unlocked_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1701{
1702 int ret;
1703
Arnd Bergmann76a64922010-07-11 11:18:53 +00001704 mutex_lock(&isdn_mutex);
Arnd Bergmann703c6312010-04-27 00:24:02 +02001705 ret = isdn_ioctl(file, cmd, arg);
Arnd Bergmann76a64922010-07-11 11:18:53 +00001706 mutex_unlock(&isdn_mutex);
Arnd Bergmann703c6312010-04-27 00:24:02 +02001707
1708 return ret;
1709}
1710
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711/*
1712 * Open the device code.
1713 */
1714static int
1715isdn_open(struct inode *ino, struct file *filep)
1716{
Eric Sesterhenncd6b3952006-07-10 04:45:43 -07001717 uint minor = iminor(ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 int drvidx;
1719 int chidx;
1720 int retval = -ENODEV;
1721
Arnd Bergmann76a64922010-07-11 11:18:53 +00001722 mutex_lock(&isdn_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 if (minor == ISDN_MINOR_STATUS) {
1724 infostruct *p;
1725
1726 if ((p = kmalloc(sizeof(infostruct), GFP_KERNEL))) {
1727 p->next = (char *) dev->infochain;
1728 p->private = (char *) &(filep->private_data);
1729 dev->infochain = p;
1730 /* At opening we allow a single update */
1731 filep->private_data = (char *) 1;
1732 retval = 0;
1733 goto out;
1734 } else {
1735 retval = -ENOMEM;
1736 goto out;
1737 }
1738 }
1739 if (!dev->channels)
1740 goto out;
1741 if (minor <= ISDN_MINOR_BMAX) {
1742 printk(KERN_WARNING "isdn_open minor %d obsolete!\n", minor);
1743 drvidx = isdn_minor2drv(minor);
1744 if (drvidx < 0)
1745 goto out;
1746 chidx = isdn_minor2chan(minor);
1747 if (!(dev->drv[drvidx]->flags & DRV_FLAG_RUNNING))
1748 goto out;
1749 if (!(dev->drv[drvidx]->online & (1 << chidx)))
1750 goto out;
1751 isdn_lock_drivers();
1752 retval = 0;
1753 goto out;
1754 }
1755 if (minor <= ISDN_MINOR_CTRLMAX) {
1756 drvidx = isdn_minor2drv(minor - ISDN_MINOR_CTRL);
1757 if (drvidx < 0)
1758 goto out;
1759 isdn_lock_drivers();
1760 retval = 0;
1761 goto out;
1762 }
1763#ifdef CONFIG_ISDN_PPP
1764 if (minor <= ISDN_MINOR_PPPMAX) {
1765 retval = isdn_ppp_open(minor - ISDN_MINOR_PPP, filep);
1766 if (retval == 0)
1767 isdn_lock_drivers();
1768 goto out;
1769 }
1770#endif
Joe Perches475be4d2012-02-19 19:52:38 -08001771out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 nonseekable_open(ino, filep);
Arnd Bergmann76a64922010-07-11 11:18:53 +00001773 mutex_unlock(&isdn_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 return retval;
1775}
1776
1777static int
1778isdn_close(struct inode *ino, struct file *filep)
1779{
Eric Sesterhenncd6b3952006-07-10 04:45:43 -07001780 uint minor = iminor(ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Arnd Bergmann76a64922010-07-11 11:18:53 +00001782 mutex_lock(&isdn_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 if (minor == ISDN_MINOR_STATUS) {
1784 infostruct *p = dev->infochain;
1785 infostruct *q = NULL;
1786
1787 while (p) {
1788 if (p->private == (char *) &(filep->private_data)) {
1789 if (q)
1790 q->next = p->next;
1791 else
1792 dev->infochain = (infostruct *) (p->next);
1793 kfree(p);
1794 goto out;
1795 }
1796 q = p;
1797 p = (infostruct *) (p->next);
1798 }
1799 printk(KERN_WARNING "isdn: No private data while closing isdnctrl\n");
1800 goto out;
1801 }
1802 isdn_unlock_drivers();
1803 if (minor <= ISDN_MINOR_BMAX)
1804 goto out;
1805 if (minor <= ISDN_MINOR_CTRLMAX) {
1806 if (dev->profd == current)
1807 dev->profd = NULL;
1808 goto out;
1809 }
1810#ifdef CONFIG_ISDN_PPP
1811 if (minor <= ISDN_MINOR_PPPMAX)
1812 isdn_ppp_release(minor - ISDN_MINOR_PPP, filep);
1813#endif
1814
Joe Perches475be4d2012-02-19 19:52:38 -08001815out:
Arnd Bergmann76a64922010-07-11 11:18:53 +00001816 mutex_unlock(&isdn_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 return 0;
1818}
1819
Arjan van de Ven2b8693c2007-02-12 00:55:32 -08001820static const struct file_operations isdn_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821{
1822 .owner = THIS_MODULE,
1823 .llseek = no_llseek,
1824 .read = isdn_read,
1825 .write = isdn_write,
1826 .poll = isdn_poll,
Arnd Bergmann703c6312010-04-27 00:24:02 +02001827 .unlocked_ioctl = isdn_unlocked_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 .open = isdn_open,
1829 .release = isdn_close,
1830};
1831
1832char *
1833isdn_map_eaz2msn(char *msn, int di)
1834{
1835 isdn_driver_t *this = dev->drv[di];
1836 int i;
1837
1838 if (strlen(msn) == 1) {
1839 i = msn[0] - '0';
1840 if ((i >= 0) && (i <= 9))
1841 if (strlen(this->msn2eaz[i]))
1842 return (this->msn2eaz[i]);
1843 }
1844 return (msn);
1845}
1846
1847/*
1848 * Find an unused ISDN-channel, whose feature-flags match the
1849 * given L2- and L3-protocols.
1850 */
Joe Perches475be4d2012-02-19 19:52:38 -08001851#define L2V (~(ISDN_FEATURE_L2_V11096 | ISDN_FEATURE_L2_V11019 | ISDN_FEATURE_L2_V11038))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
1853/*
1854 * This function must be called with holding the dev->lock.
1855 */
1856int
1857isdn_get_free_channel(int usage, int l2_proto, int l3_proto, int pre_dev
Joe Perches475be4d2012-02-19 19:52:38 -08001858 , int pre_chan, char *msn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859{
1860 int i;
1861 ulong features;
1862 ulong vfeatures;
1863
1864 features = ((1 << l2_proto) | (0x10000 << l3_proto));
1865 vfeatures = (((1 << l2_proto) | (0x10000 << l3_proto)) &
Joe Perches475be4d2012-02-19 19:52:38 -08001866 ~(ISDN_FEATURE_L2_V11096 | ISDN_FEATURE_L2_V11019 | ISDN_FEATURE_L2_V11038));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 /* If Layer-2 protocol is V.110, accept drivers with
1868 * transparent feature even if these don't support V.110
1869 * because we can emulate this in linklevel.
1870 */
1871 for (i = 0; i < ISDN_MAX_CHANNELS; i++)
1872 if (USG_NONE(dev->usage[i]) &&
1873 (dev->drvmap[i] != -1)) {
1874 int d = dev->drvmap[i];
1875 if ((dev->usage[i] & ISDN_USAGE_EXCLUSIVE) &&
Joe Perches475be4d2012-02-19 19:52:38 -08001876 ((pre_dev != d) || (pre_chan != dev->chanmap[i])))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 continue;
1878 if (!strcmp(isdn_map_eaz2msn(msn, d), "-"))
1879 continue;
1880 if (dev->usage[i] & ISDN_USAGE_DISABLED)
Joe Perches475be4d2012-02-19 19:52:38 -08001881 continue; /* usage not allowed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 if (dev->drv[d]->flags & DRV_FLAG_RUNNING) {
1883 if (((dev->drv[d]->interface->features & features) == features) ||
1884 (((dev->drv[d]->interface->features & vfeatures) == vfeatures) &&
1885 (dev->drv[d]->interface->features & ISDN_FEATURE_L2_TRANS))) {
1886 if ((pre_dev < 0) || (pre_chan < 0)) {
1887 dev->usage[i] &= ISDN_USAGE_EXCLUSIVE;
1888 dev->usage[i] |= usage;
1889 isdn_info_update();
1890 return i;
1891 } else {
1892 if ((pre_dev == d) && (pre_chan == dev->chanmap[i])) {
1893 dev->usage[i] &= ISDN_USAGE_EXCLUSIVE;
1894 dev->usage[i] |= usage;
1895 isdn_info_update();
1896 return i;
1897 }
1898 }
1899 }
1900 }
1901 }
1902 return -1;
1903}
1904
1905/*
1906 * Set state of ISDN-channel to 'unused'
1907 */
1908void
1909isdn_free_channel(int di, int ch, int usage)
1910{
1911 int i;
1912
Karsten Keil09fca292006-06-29 13:16:29 +02001913 if ((di < 0) || (ch < 0)) {
1914 printk(KERN_WARNING "%s: called with invalid drv(%d) or channel(%d)\n",
Joe Perches475be4d2012-02-19 19:52:38 -08001915 __func__, di, ch);
Karsten Keil09fca292006-06-29 13:16:29 +02001916 return;
1917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 for (i = 0; i < ISDN_MAX_CHANNELS; i++)
1919 if (((!usage) || ((dev->usage[i] & ISDN_USAGE_MASK) == usage)) &&
1920 (dev->drvmap[i] == di) &&
1921 (dev->chanmap[i] == ch)) {
1922 dev->usage[i] &= (ISDN_USAGE_NONE | ISDN_USAGE_EXCLUSIVE);
1923 strcpy(dev->num[i], "???");
1924 dev->ibytes[i] = 0;
1925 dev->obytes[i] = 0;
1926// 20.10.99 JIM, try to reinitialize v110 !
1927 dev->v110emu[i] = 0;
1928 atomic_set(&(dev->v110use[i]), 0);
1929 isdn_v110_close(dev->v110[i]);
1930 dev->v110[i] = NULL;
1931// 20.10.99 JIM, try to reinitialize v110 !
1932 isdn_info_update();
Karsten Keil09fca292006-06-29 13:16:29 +02001933 if (dev->drv[di])
1934 skb_queue_purge(&dev->drv[di]->rpqueue[ch]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 }
1936}
1937
1938/*
1939 * Cancel Exclusive-Flag for ISDN-channel
1940 */
1941void
1942isdn_unexclusive_channel(int di, int ch)
1943{
1944 int i;
1945
1946 for (i = 0; i < ISDN_MAX_CHANNELS; i++)
1947 if ((dev->drvmap[i] == di) &&
1948 (dev->chanmap[i] == ch)) {
1949 dev->usage[i] &= ~ISDN_USAGE_EXCLUSIVE;
1950 isdn_info_update();
1951 return;
1952 }
1953}
1954
1955/*
1956 * writebuf replacement for SKB_ABLE drivers
1957 */
1958static int
Joe Perches475be4d2012-02-19 19:52:38 -08001959isdn_writebuf_stub(int drvidx, int chan, const u_char __user *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960{
1961 int ret;
1962 int hl = dev->drv[drvidx]->interface->hl_hdrlen;
1963 struct sk_buff *skb = alloc_skb(hl + len, GFP_ATOMIC);
1964
1965 if (!skb)
Jesper Juhld20d04b2006-06-23 02:05:28 -07001966 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 skb_reserve(skb, hl);
Darren Jenkins4fc89e32008-07-12 13:47:50 -07001968 if (copy_from_user(skb_put(skb, len), buf, len)) {
1969 dev_kfree_skb(skb);
Jesper Juhld20d04b2006-06-23 02:05:28 -07001970 return -EFAULT;
Darren Jenkins4fc89e32008-07-12 13:47:50 -07001971 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 ret = dev->drv[drvidx]->interface->writebuf_skb(drvidx, chan, 1, skb);
1973 if (ret <= 0)
1974 dev_kfree_skb(skb);
1975 if (ret > 0)
1976 dev->obytes[isdn_dc2minor(drvidx, chan)] += ret;
1977 return ret;
1978}
1979
1980/*
1981 * Return: length of data on success, -ERRcode on failure.
1982 */
1983int
1984isdn_writebuf_skb_stub(int drvidx, int chan, int ack, struct sk_buff *skb)
1985{
1986 int ret;
1987 struct sk_buff *nskb = NULL;
1988 int v110_ret = skb->len;
1989 int idx = isdn_dc2minor(drvidx, chan);
1990
1991 if (dev->v110[idx]) {
1992 atomic_inc(&dev->v110use[idx]);
1993 nskb = isdn_v110_encode(dev->v110[idx], skb);
1994 atomic_dec(&dev->v110use[idx]);
1995 if (!nskb)
1996 return 0;
1997 v110_ret = *((int *)nskb->data);
1998 skb_pull(nskb, sizeof(int));
1999 if (!nskb->len) {
2000 dev_kfree_skb(nskb);
2001 return v110_ret;
2002 }
2003 /* V.110 must always be acknowledged */
2004 ack = 1;
2005 ret = dev->drv[drvidx]->interface->writebuf_skb(drvidx, chan, ack, nskb);
2006 } else {
2007 int hl = dev->drv[drvidx]->interface->hl_hdrlen;
2008
Joe Perches475be4d2012-02-19 19:52:38 -08002009 if (skb_headroom(skb) < hl) {
2010 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 * This should only occur when new HL driver with
2012 * increased hl_hdrlen was loaded after netdevice
2013 * was created and connected to the new driver.
2014 *
2015 * The V.110 branch (re-allocates on its own) does
2016 * not need this
2017 */
Joe Perches475be4d2012-02-19 19:52:38 -08002018 struct sk_buff *skb_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
2020 skb_tmp = skb_realloc_headroom(skb, hl);
2021 printk(KERN_DEBUG "isdn_writebuf_skb_stub: reallocating headroom%s\n", skb_tmp ? "" : " failed");
2022 if (!skb_tmp) return -ENOMEM; /* 0 better? */
2023 ret = dev->drv[drvidx]->interface->writebuf_skb(drvidx, chan, ack, skb_tmp);
Joe Perches475be4d2012-02-19 19:52:38 -08002024 if (ret > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 dev_kfree_skb(skb);
2026 } else {
2027 dev_kfree_skb(skb_tmp);
2028 }
2029 } else {
2030 ret = dev->drv[drvidx]->interface->writebuf_skb(drvidx, chan, ack, skb);
2031 }
2032 }
2033 if (ret > 0) {
2034 dev->obytes[idx] += ret;
2035 if (dev->v110[idx]) {
2036 atomic_inc(&dev->v110use[idx]);
2037 dev->v110[idx]->skbuser++;
2038 atomic_dec(&dev->v110use[idx]);
2039 /* For V.110 return unencoded data length */
2040 ret = v110_ret;
2041 /* if the complete frame was send we free the skb;
Joe Perches475be4d2012-02-19 19:52:38 -08002042 if not upper function will requeue the skb */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 if (ret == skb->len)
2044 dev_kfree_skb(skb);
2045 }
2046 } else
2047 if (dev->v110[idx])
2048 dev_kfree_skb(nskb);
2049 return ret;
2050}
2051
Adrian Bunk3e206b02005-06-25 14:58:35 -07002052static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053isdn_add_channels(isdn_driver_t *d, int drvidx, int n, int adding)
2054{
2055 int j, k, m;
2056
2057 init_waitqueue_head(&d->st_waitq);
2058 if (d->flags & DRV_FLAG_RUNNING)
2059 return -1;
Joe Perches475be4d2012-02-19 19:52:38 -08002060 if (n < 1) return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
2062 m = (adding) ? d->channels + n : n;
2063
2064 if (dev->channels + n > ISDN_MAX_CHANNELS) {
2065 printk(KERN_WARNING "register_isdn: Max. %d channels supported\n",
2066 ISDN_MAX_CHANNELS);
2067 return -1;
2068 }
2069
2070 if ((adding) && (d->rcverr))
2071 kfree(d->rcverr);
Burman Yan41f96932006-12-08 02:39:35 -08002072 if (!(d->rcverr = kzalloc(sizeof(int) * m, GFP_ATOMIC))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 printk(KERN_WARNING "register_isdn: Could not alloc rcverr\n");
2074 return -1;
2075 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
2077 if ((adding) && (d->rcvcount))
2078 kfree(d->rcvcount);
Burman Yan41f96932006-12-08 02:39:35 -08002079 if (!(d->rcvcount = kzalloc(sizeof(int) * m, GFP_ATOMIC))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 printk(KERN_WARNING "register_isdn: Could not alloc rcvcount\n");
Jesper Juhlf91012102005-09-10 00:26:54 -07002081 if (!adding)
2082 kfree(d->rcverr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 return -1;
2084 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
2086 if ((adding) && (d->rpqueue)) {
2087 for (j = 0; j < d->channels; j++)
2088 skb_queue_purge(&d->rpqueue[j]);
2089 kfree(d->rpqueue);
2090 }
2091 if (!(d->rpqueue = kmalloc(sizeof(struct sk_buff_head) * m, GFP_ATOMIC))) {
2092 printk(KERN_WARNING "register_isdn: Could not alloc rpqueue\n");
2093 if (!adding) {
2094 kfree(d->rcvcount);
2095 kfree(d->rcverr);
2096 }
Joe Perches475be4d2012-02-19 19:52:38 -08002097 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 }
2099 for (j = 0; j < m; j++) {
2100 skb_queue_head_init(&d->rpqueue[j]);
2101 }
2102
2103 if ((adding) && (d->rcv_waitq))
2104 kfree(d->rcv_waitq);
2105 d->rcv_waitq = kmalloc(sizeof(wait_queue_head_t) * 2 * m, GFP_ATOMIC);
2106 if (!d->rcv_waitq) {
2107 printk(KERN_WARNING "register_isdn: Could not alloc rcv_waitq\n");
2108 if (!adding) {
2109 kfree(d->rpqueue);
2110 kfree(d->rcvcount);
2111 kfree(d->rcverr);
2112 }
2113 return -1;
2114 }
2115 d->snd_waitq = d->rcv_waitq + m;
2116 for (j = 0; j < m; j++) {
2117 init_waitqueue_head(&d->rcv_waitq[j]);
2118 init_waitqueue_head(&d->snd_waitq[j]);
2119 }
2120
2121 dev->channels += n;
2122 for (j = d->channels; j < m; j++)
2123 for (k = 0; k < ISDN_MAX_CHANNELS; k++)
2124 if (dev->chanmap[k] < 0) {
2125 dev->chanmap[k] = j;
2126 dev->drvmap[k] = drvidx;
2127 break;
2128 }
2129 d->channels = m;
2130 return 0;
2131}
2132
2133/*
2134 * Low-level-driver registration
2135 */
2136
2137static void
2138set_global_features(void)
2139{
2140 int drvidx;
2141
2142 dev->global_features = 0;
2143 for (drvidx = 0; drvidx < ISDN_MAX_DRIVERS; drvidx++) {
2144 if (!dev->drv[drvidx])
2145 continue;
2146 if (dev->drv[drvidx]->interface)
2147 dev->global_features |= dev->drv[drvidx]->interface->features;
2148 }
2149}
2150
2151#ifdef CONFIG_ISDN_DIVERSION
2152
2153static char *map_drvname(int di)
2154{
Joe Perches475be4d2012-02-19 19:52:38 -08002155 if ((di < 0) || (di >= ISDN_MAX_DRIVERS))
2156 return (NULL);
2157 return (dev->drvid[di]); /* driver name */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158} /* map_drvname */
2159
2160static int map_namedrv(char *id)
2161{ int i;
2162
Joe Perches475be4d2012-02-19 19:52:38 -08002163 for (i = 0; i < ISDN_MAX_DRIVERS; i++)
2164 { if (!strcmp(dev->drvid[i], id))
2165 return (i);
2166 }
2167 return (-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168} /* map_namedrv */
2169
2170int DIVERT_REG_NAME(isdn_divert_if *i_div)
2171{
Joe Perches475be4d2012-02-19 19:52:38 -08002172 if (i_div->if_magic != DIVERT_IF_MAGIC)
2173 return (DIVERT_VER_ERR);
2174 switch (i_div->cmd)
2175 {
2176 case DIVERT_CMD_REL:
2177 if (divert_if != i_div)
2178 return (DIVERT_REL_ERR);
2179 divert_if = NULL; /* free interface */
2180 return (DIVERT_NO_ERR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
Joe Perches475be4d2012-02-19 19:52:38 -08002182 case DIVERT_CMD_REG:
2183 if (divert_if)
2184 return (DIVERT_REG_ERR);
2185 i_div->ll_cmd = isdn_command; /* set command function */
2186 i_div->drv_to_name = map_drvname;
2187 i_div->name_to_drv = map_namedrv;
2188 divert_if = i_div; /* remember interface */
2189 return (DIVERT_NO_ERR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
Joe Perches475be4d2012-02-19 19:52:38 -08002191 default:
2192 return (DIVERT_CMD_ERR);
2193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194} /* DIVERT_REG_NAME */
2195
2196EXPORT_SYMBOL(DIVERT_REG_NAME);
2197
2198#endif /* CONFIG_ISDN_DIVERSION */
2199
2200
2201EXPORT_SYMBOL(register_isdn);
2202#ifdef CONFIG_ISDN_PPP
2203EXPORT_SYMBOL(isdn_ppp_register_compressor);
2204EXPORT_SYMBOL(isdn_ppp_unregister_compressor);
2205#endif
2206
2207int
Joe Perches475be4d2012-02-19 19:52:38 -08002208register_isdn(isdn_if *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209{
2210 isdn_driver_t *d;
2211 int j;
2212 ulong flags;
2213 int drvidx;
2214
2215 if (dev->drivers >= ISDN_MAX_DRIVERS) {
2216 printk(KERN_WARNING "register_isdn: Max. %d drivers supported\n",
2217 ISDN_MAX_DRIVERS);
2218 return 0;
2219 }
2220 if (!i->writebuf_skb) {
2221 printk(KERN_WARNING "register_isdn: No write routine given.\n");
2222 return 0;
2223 }
Burman Yan41f96932006-12-08 02:39:35 -08002224 if (!(d = kzalloc(sizeof(isdn_driver_t), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 printk(KERN_WARNING "register_isdn: Could not alloc driver-struct\n");
2226 return 0;
2227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228
2229 d->maxbufsize = i->maxbufsize;
2230 d->pktcount = 0;
2231 d->stavail = 0;
2232 d->flags = DRV_FLAG_LOADED;
2233 d->online = 0;
2234 d->interface = i;
2235 d->channels = 0;
2236 spin_lock_irqsave(&dev->lock, flags);
2237 for (drvidx = 0; drvidx < ISDN_MAX_DRIVERS; drvidx++)
2238 if (!dev->drv[drvidx])
2239 break;
2240 if (isdn_add_channels(d, drvidx, i->channels, 0)) {
2241 spin_unlock_irqrestore(&dev->lock, flags);
2242 kfree(d);
2243 return 0;
2244 }
2245 i->channels = drvidx;
2246 i->rcvcallb_skb = isdn_receive_skb_callback;
2247 i->statcallb = isdn_status_callback;
2248 if (!strlen(i->id))
2249 sprintf(i->id, "line%d", drvidx);
2250 for (j = 0; j < drvidx; j++)
2251 if (!strcmp(i->id, dev->drvid[j]))
2252 sprintf(i->id, "line%d", drvidx);
2253 dev->drv[drvidx] = d;
2254 strcpy(dev->drvid[drvidx], i->id);
2255 isdn_info_update();
2256 dev->drivers++;
2257 set_global_features();
2258 spin_unlock_irqrestore(&dev->lock, flags);
2259 return 1;
2260}
2261
2262/*
Joe Perches475be4d2012-02-19 19:52:38 -08002263*****************************************************************************
2264* And now the modules code.
2265*****************************************************************************
2266*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
2268static char *
2269isdn_getrev(const char *revision)
2270{
2271 char *rev;
2272 char *p;
2273
2274 if ((p = strchr(revision, ':'))) {
2275 rev = p + 2;
2276 p = strchr(rev, '$');
2277 *--p = 0;
2278 } else
2279 rev = "???";
2280 return rev;
2281}
2282
2283/*
2284 * Allocate and initialize all data, register modem-devices
2285 */
2286static int __init isdn_init(void)
2287{
2288 int i;
2289 char tmprev[50];
2290
Joe Perches1ac45942011-05-28 10:36:26 -07002291 dev = vzalloc(sizeof(isdn_dev));
2292 if (!dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 printk(KERN_WARNING "isdn: Could not allocate device-struct.\n");
2294 return -EIO;
2295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 init_timer(&dev->timer);
2297 dev->timer.function = isdn_timer_funct;
2298 spin_lock_init(&dev->lock);
2299 spin_lock_init(&dev->timerlock);
2300#ifdef MODULE
2301 dev->owner = THIS_MODULE;
2302#endif
Matthias Kaehlcke4e3dfac2007-10-16 01:27:50 -07002303 mutex_init(&dev->mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 init_waitqueue_head(&dev->info_waitq);
2305 for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
2306 dev->drvmap[i] = -1;
2307 dev->chanmap[i] = -1;
2308 dev->m_idx[i] = -1;
2309 strcpy(dev->num[i], "???");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 }
2311 if (register_chrdev(ISDN_MAJOR, "isdn", &isdn_fops)) {
2312 printk(KERN_WARNING "isdn: Could not register control devices\n");
2313 vfree(dev);
2314 return -EIO;
2315 }
2316 if ((isdn_tty_modem_init()) < 0) {
2317 printk(KERN_WARNING "isdn: Could not register tty devices\n");
2318 vfree(dev);
2319 unregister_chrdev(ISDN_MAJOR, "isdn");
2320 return -EIO;
2321 }
2322#ifdef CONFIG_ISDN_PPP
2323 if (isdn_ppp_init() < 0) {
2324 printk(KERN_WARNING "isdn: Could not create PPP-device-structs\n");
2325 isdn_tty_exit();
2326 unregister_chrdev(ISDN_MAJOR, "isdn");
2327 vfree(dev);
2328 return -EIO;
2329 }
2330#endif /* CONFIG_ISDN_PPP */
2331
2332 strcpy(tmprev, isdn_revision);
2333 printk(KERN_NOTICE "ISDN subsystem Rev: %s/", isdn_getrev(tmprev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 strcpy(tmprev, isdn_net_revision);
2335 printk("%s/", isdn_getrev(tmprev));
2336 strcpy(tmprev, isdn_ppp_revision);
2337 printk("%s/", isdn_getrev(tmprev));
2338 strcpy(tmprev, isdn_audio_revision);
2339 printk("%s/", isdn_getrev(tmprev));
2340 strcpy(tmprev, isdn_v110_revision);
2341 printk("%s", isdn_getrev(tmprev));
2342
2343#ifdef MODULE
2344 printk(" loaded\n");
2345#else
2346 printk("\n");
2347#endif
2348 isdn_info_update();
2349 return 0;
2350}
2351
2352/*
2353 * Unload module
2354 */
2355static void __exit isdn_exit(void)
2356{
2357#ifdef CONFIG_ISDN_PPP
2358 isdn_ppp_cleanup();
2359#endif
2360 if (isdn_net_rmall() < 0) {
2361 printk(KERN_WARNING "isdn: net-device busy, remove cancelled\n");
2362 return;
2363 }
2364 isdn_tty_exit();
2365 unregister_chrdev(ISDN_MAJOR, "isdn");
Julia Lawall0c295e42014-03-26 22:33:39 +01002366 del_timer_sync(&dev->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 /* call vfree with interrupts enabled, else it will hang */
2368 vfree(dev);
2369 printk(KERN_NOTICE "ISDN-subsystem unloaded\n");
2370}
2371
2372module_init(isdn_init);
2373module_exit(isdn_exit);