dm thin metadata: fix __udivdi3 undefined on 32-bit
[linux/fpc-iii.git] / drivers / isdn / i4l / isdn_common.c
blob8088c34336aa82adb1a6167fb79078b6d1dbb2fc
1 /* $Id: isdn_common.c,v 1.1.2.3 2004/02/10 01:07:13 keil Exp $
3 * Linux ISDN subsystem, common used functions (linklevel).
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)
9 * This software may be used and distributed according to the terms
10 * of the GNU General Public License, incorporated herein by reference.
14 #include <linux/module.h>
15 #include <linux/init.h>
16 #include <linux/poll.h>
17 #include <linux/slab.h>
18 #include <linux/vmalloc.h>
19 #include <linux/isdn.h>
20 #include <linux/mutex.h>
21 #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"
36 /* Debugflags */
37 #undef ISDN_DEBUG_STATCALLB
39 MODULE_DESCRIPTION("ISDN4Linux: link layer");
40 MODULE_AUTHOR("Fritz Elfert");
41 MODULE_LICENSE("GPL");
43 isdn_dev *dev;
45 static DEFINE_MUTEX(isdn_mutex);
46 static char *isdn_revision = "$Revision: 1.1.2.3 $";
48 extern char *isdn_net_revision;
49 #ifdef CONFIG_ISDN_PPP
50 extern char *isdn_ppp_revision;
51 #else
52 static char *isdn_ppp_revision = ": none $";
53 #endif
54 #ifdef CONFIG_ISDN_AUDIO
55 extern char *isdn_audio_revision;
56 #else
57 static char *isdn_audio_revision = ": none $";
58 #endif
59 extern char *isdn_v110_revision;
61 #ifdef CONFIG_ISDN_DIVERSION
62 static isdn_divert_if *divert_if; /* = NULL */
63 #endif /* CONFIG_ISDN_DIVERSION */
66 static int isdn_writebuf_stub(int, int, const u_char __user *, int);
67 static void set_global_features(void);
68 static int isdn_wildmat(char *s, char *p);
69 static int isdn_add_channels(isdn_driver_t *d, int drvidx, int n, int adding);
71 static inline void
72 isdn_lock_driver(isdn_driver_t *drv)
74 try_module_get(drv->interface->owner);
75 drv->locks++;
78 void
79 isdn_lock_drivers(void)
81 int i;
83 for (i = 0; i < ISDN_MAX_DRIVERS; i++) {
84 if (!dev->drv[i])
85 continue;
86 isdn_lock_driver(dev->drv[i]);
90 static inline void
91 isdn_unlock_driver(isdn_driver_t *drv)
93 if (drv->locks > 0) {
94 drv->locks--;
95 module_put(drv->interface->owner);
99 void
100 isdn_unlock_drivers(void)
102 int i;
104 for (i = 0; i < ISDN_MAX_DRIVERS; i++) {
105 if (!dev->drv[i])
106 continue;
107 isdn_unlock_driver(dev->drv[i]);
111 #if defined(ISDN_DEBUG_NET_DUMP) || defined(ISDN_DEBUG_MODEM_DUMP)
112 void
113 isdn_dumppkt(char *s, u_char *p, int len, int dumplen)
115 int dumpc;
117 printk(KERN_DEBUG "%s(%d) ", s, len);
118 for (dumpc = 0; (dumpc < dumplen) && (len); len--, dumpc++)
119 printk(" %02x", *p++);
120 printk("\n");
122 #endif
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)
128 static int
129 isdn_star(char *s, char *p)
131 while (isdn_wildmat(s, p)) {
132 if (*++s == '\0')
133 return (2);
135 return (0);
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.
143 * Return:
144 * 0 = match.
145 * 1 = no match.
146 * 2 = no match. Would eventually match, if s would be longer.
148 * Possible Patterns:
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
156 static int
157 isdn_wildmat(char *s, char *p)
159 register int last;
160 register int matched;
161 register int reverse;
162 register int nostar = 1;
164 if (!(*s) && !(*p))
165 return (1);
166 for (; *p; s++, p++)
167 switch (*p) {
168 case '\\':
170 * Literal match with following character,
171 * fall through.
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] == '^')))
190 p++;
191 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;
199 return (*s == '\0') ? 0 : nostar;
202 int isdn_msncmp(const char *msn1, const char *msn2)
204 char TmpMsn1[ISDN_MSNLEN];
205 char TmpMsn2[ISDN_MSNLEN];
206 char *p;
208 for (p = TmpMsn1; *msn1 && *msn1 != ':';) // Strip off a SPID
209 *p++ = *msn1++;
210 *p = '\0';
212 for (p = TmpMsn2; *msn2 && *msn2 != ':';) // Strip off a SPID
213 *p++ = *msn2++;
214 *p = '\0';
216 return isdn_wildmat(TmpMsn1, TmpMsn2);
220 isdn_dc2minor(int di, int ch)
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;
229 static int isdn_timer_cnt1 = 0;
230 static int isdn_timer_cnt2 = 0;
231 static int isdn_timer_cnt3 = 0;
233 static void
234 isdn_timer_funct(ulong dummy)
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();
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();
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();
260 if (tf & ISDN_TIMER_CARRIER)
261 isdn_tty_carrier_timeout();
264 if (tf)
265 mod_timer(&dev->timer, jiffies + ISDN_TIMER_RES);
268 void
269 isdn_timer_ctrl(int tf, int onoff)
271 unsigned long flags;
272 int old_tflags;
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;
280 old_tflags = dev->tflags;
281 if (onoff)
282 dev->tflags |= tf;
283 else
284 dev->tflags &= ~tf;
285 if (dev->tflags && !old_tflags)
286 mod_timer(&dev->timer, jiffies + ISDN_TIMER_RES);
287 spin_unlock_irqrestore(&dev->timerlock, flags);
291 * Receive a packet from B-Channel. (Called from low-level-module)
293 static void
294 isdn_receive_skb_callback(int di, int channel, struct sk_buff *skb)
296 int i;
298 if ((i = isdn_dc2minor(di, channel)) == -1) {
299 dev_kfree_skb(skb);
300 return;
302 /* Update statistics */
303 dev->ibytes[i] += skb->len;
305 /* First, try to deliver data to network-device */
306 if (isdn_net_rcv_skb(i, skb))
307 return;
309 /* V.110 handling
310 * makes sense for async streams only, so it is
311 * called after possible net-device delivery.
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;
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);
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.
337 isdn_command(isdn_ctrl *cmd)
339 if (cmd->driver == -1) {
340 printk(KERN_WARNING "isdn_command command(%x) driver -1\n", cmd->command);
341 return (1);
343 if (!dev->drv[cmd->driver]) {
344 printk(KERN_WARNING "isdn_command command(%x) dev->drv[%d] NULL\n",
345 cmd->command, cmd->driver);
346 return (1);
348 if (!dev->drv[cmd->driver]->interface) {
349 printk(KERN_WARNING "isdn_command command(%x) dev->drv[%d]->interface NULL\n",
350 cmd->command, cmd->driver);
351 return (1);
353 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
357 >> ISDN_FEATURE_L2_SHIFT) &
358 ISDN_FEATURE_L2_MASK;
359 unsigned long l2_feature = (1 << l2prot);
361 switch (l2prot) {
362 case ISDN_PROTO_L2_V11096:
363 case ISDN_PROTO_L2_V11019:
364 case ISDN_PROTO_L2_V11038:
365 /* If V.110 requested, but not supported by
366 * HL-driver, set emulator-flag and change
367 * Layer-2 to transparent
369 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;
377 return dev->drv[cmd->driver]->interface->command(cmd);
380 void
381 isdn_all_eaz(int di, int ch)
383 isdn_ctrl cmd;
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);
395 * Begin of a CAPI like LL<->HL interface, currently used only for
396 * supplementary service (CAPI 2.0 part III)
398 #include <linux/isdn/capicmd.h>
400 static int
401 isdn_capi_rec_hl_msg(capi_msg *cm)
403 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);
412 static int
413 isdn_status_callback(isdn_ctrl *c)
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;
423 di = c->driver;
424 i = isdn_dc2minor(di, c->arg);
425 switch (c->command) {
426 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;
456 #ifdef ISDN_DEBUG_STATCALLB
457 printk(KERN_DEBUG "ICALL (net): %d %ld %s\n", di, c->arg, c->parm.num);
458 #endif
459 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;
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.
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 */
484 cmd.driver = di;
485 cmd.arg = c->arg;
486 cmd.command = ISDN_CMD_HANGUP;
487 isdn_command(&cmd);
488 retval = 2;
490 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)
500 strcpy(cmd.parm.setup.eazmsn, p->local->msn);
501 isdn_command(&cmd);
502 retval = 1;
503 break;
505 break;
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;
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)
539 return 0;
540 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))
576 break;
577 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;
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;
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;
678 else
679 retval = -1;
680 break;
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]);
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;
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));
716 #ifdef CONFIG_ISDN_TTY_FAX
717 case ISDN_STAT_FAXIND:
718 isdn_tty_stat_callback(i, c);
719 break;
720 #endif
721 #ifdef CONFIG_ISDN_AUDIO
722 case ISDN_STAT_AUDIO:
723 isdn_tty_stat_callback(i, c);
724 break;
725 #endif
726 #ifdef CONFIG_ISDN_DIVERSION
727 case ISDN_STAT_PROT:
728 case ISDN_STAT_REDIR:
729 if (divert_if)
730 return (divert_if->stat_callback(c));
731 #endif /* CONFIG_ISDN_DIVERSION */
732 default:
733 return -1;
735 return 0;
739 * Get integer from char-pointer, set pointer to end of number
742 isdn_getnum(char **p)
744 int v = -1;
746 while (*p[0] >= '0' && *p[0] <= '9')
747 v = ((v < 0) ? 0 : (v * 10)) + (int) ((*p[0]++) - '0');
748 return v;
751 #define DLE 0x10
754 * isdn_readbchan() tries to get data from the read-queue.
755 * It MUST be called with interrupts off.
757 * Be aware that this is not an atomic operation when sleep != 0, even though
758 * 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
760 * to be dangerous and for debugging purpose only). The inode semaphore
761 * 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
764 * of the mapping (di,ch)<->minor, happen during the sleep? --he
767 isdn_readbchan(int di, int channel, u_char *buf, u_char *fp, int len, wait_queue_head_t *sleep)
769 int count;
770 int count_pull;
771 int count_put;
772 int dflag;
773 struct sk_buff *skb;
774 u_char *cp;
776 if (!dev->drv[di])
777 return 0;
778 if (skb_queue_empty(&dev->drv[di]->rpqueue[channel])) {
779 if (sleep)
780 wait_event_interruptible(*sleep,
781 !skb_queue_empty(&dev->drv[di]->rpqueue[channel]));
782 else
783 return 0;
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);
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))--;
813 p++;
814 count_pull++;
816 count_put++;
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;
828 count_put = count_pull;
829 skb_copy_from_linear_data(skb, cp, count_put);
830 cp += count_put;
831 len -= count_put;
832 #ifdef CONFIG_ISDN_AUDIO
834 #endif
835 count += count_put;
836 if (fp) {
837 memset(fp, 0, count_put);
838 fp += count_put;
840 if (dflag) {
841 /* We got all the data in this buff.
842 * Now we can dequeue it.
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.
856 skb_pull(skb, count_pull);
857 #ifdef CONFIG_ISDN_AUDIO
858 ISDN_AUDIO_SKB_LOCK(skb) = 0;
859 #endif
861 dev->drv[di]->rcvcount[channel] -= count_put;
863 return count;
867 * isdn_readbchan_tty() tries to get data from the read-queue.
868 * It MUST be called with interrupts off.
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
873 * to be dangerous and for debugging purpose only). The inode semaphore
874 * 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
880 isdn_readbchan_tty(int di, int channel, struct tty_port *port, int cisco_hack)
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;
890 if (!dev->drv[di])
891 return 0;
892 if (skb_queue_empty(&dev->drv[di]->rpqueue[channel]))
893 return 0;
895 len = tty_buffer_request_room(port, dev->drv[di]->rcvcount[channel]);
896 if (len == 0)
897 return len;
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);
911 dflag = 0;
912 count_pull = count_put = 0;
913 while ((count_pull < skb->len) && (len > 0)) {
914 /* push every character but the last to the tty buffer directly */
915 if (count_put)
916 tty_insert_flip_char(port, last, TTY_NORMAL);
917 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))--;
927 p++;
928 count_pull++;
930 count_put++;
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;
942 count_put = count_pull;
943 if (count_put > 1)
944 tty_insert_flip_string(port, skb->data, count_put - 1);
945 last = skb->data[count_put - 1];
946 len -= count_put;
947 #ifdef CONFIG_ISDN_AUDIO
949 #endif
950 count += count_put;
951 if (dflag) {
952 /* We got all the data in this buff.
953 * Now we can dequeue it.
955 if (cisco_hack)
956 tty_insert_flip_char(port, last, 0xFF);
957 else
958 tty_insert_flip_char(port, last, TTY_NORMAL);
959 #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 {
965 tty_insert_flip_char(port, last, TTY_NORMAL);
966 /* 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.
970 skb_pull(skb, count_pull);
971 #ifdef CONFIG_ISDN_AUDIO
972 ISDN_AUDIO_SKB_LOCK(skb) = 0;
973 #endif
975 dev->drv[di]->rcvcount[channel] -= count_put;
977 return count;
981 static inline int
982 isdn_minor2drv(int minor)
984 return (dev->drvmap[minor]);
987 static inline int
988 isdn_minor2chan(int minor)
990 return (dev->chanmap[minor]);
993 static char *
994 isdn_statstr(void)
996 static char istatbuf[2048];
997 char *p;
998 int i;
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);
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);
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);
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);
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);
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);
1041 sprintf(p, "\n");
1042 return istatbuf;
1045 /* Module interface-code */
1047 void
1048 isdn_info_update(void)
1050 infostruct *p = dev->infochain;
1052 while (p) {
1053 *(p->private) = 1;
1054 p = (infostruct *) p->next;
1056 wake_up_interruptible(&(dev->info_waitq));
1059 static ssize_t
1060 isdn_read(struct file *file, char __user *buf, size_t count, loff_t *off)
1062 uint minor = iminor(file_inode(file));
1063 int len = 0;
1064 int drvidx;
1065 int chidx;
1066 int retval;
1067 char *p;
1069 mutex_lock(&isdn_mutex);
1070 if (minor == ISDN_MINOR_STATUS) {
1071 if (!file->private_data) {
1072 if (file->f_flags & O_NONBLOCK) {
1073 retval = -EAGAIN;
1074 goto out;
1076 wait_event_interruptible(dev->info_waitq,
1077 file->private_data);
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;
1086 *off += len;
1087 retval = len;
1088 goto out;
1090 retval = 0;
1091 goto out;
1093 if (!dev->drivers) {
1094 retval = -ENODEV;
1095 goto out;
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;
1104 if (!(dev->drv[drvidx]->flags & DRV_FLAG_RUNNING)) {
1105 retval = -ENODEV;
1106 goto out;
1108 chidx = isdn_minor2chan(minor);
1109 if (!(p = kmalloc(count, GFP_KERNEL))) {
1110 retval = -ENOMEM;
1111 goto out;
1113 len = isdn_readbchan(drvidx, chidx, p, NULL, count,
1114 &dev->drv[drvidx]->rcv_waitq[chidx]);
1115 *off += len;
1116 if (copy_to_user(buf, p, len))
1117 len = -EFAULT;
1118 kfree(p);
1119 retval = len;
1120 goto out;
1122 if (minor <= ISDN_MINOR_CTRLMAX) {
1123 drvidx = isdn_minor2drv(minor - ISDN_MINOR_CTRL);
1124 if (drvidx < 0) {
1125 retval = -ENODEV;
1126 goto out;
1128 if (!dev->drv[drvidx]->stavail) {
1129 if (file->f_flags & O_NONBLOCK) {
1130 retval = -EAGAIN;
1131 goto out;
1133 wait_event_interruptible(dev->drv[drvidx]->st_waitq,
1134 dev->drv[drvidx]->stavail);
1136 if (dev->drv[drvidx]->interface->readstat) {
1137 if (count > dev->drv[drvidx]->stavail)
1138 count = dev->drv[drvidx]->stavail;
1139 len = dev->drv[drvidx]->interface->readstat(buf, count,
1140 drvidx, isdn_minor2chan(minor - ISDN_MINOR_CTRL));
1141 if (len < 0) {
1142 retval = len;
1143 goto out;
1145 } else {
1146 len = 0;
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;
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;
1161 #endif
1162 retval = -ENODEV;
1163 out:
1164 mutex_unlock(&isdn_mutex);
1165 return retval;
1168 static ssize_t
1169 isdn_write(struct file *file, const char __user *buf, size_t count, loff_t *off)
1171 uint minor = iminor(file_inode(file));
1172 int drvidx;
1173 int chidx;
1174 int retval;
1176 if (minor == ISDN_MINOR_STATUS)
1177 return -EPERM;
1178 if (!dev->drivers)
1179 return -ENODEV;
1181 mutex_lock(&isdn_mutex);
1182 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;
1189 if (!(dev->drv[drvidx]->flags & DRV_FLAG_RUNNING)) {
1190 retval = -ENODEV;
1191 goto out;
1193 chidx = isdn_minor2chan(minor);
1194 wait_event_interruptible(dev->drv[drvidx]->snd_waitq[chidx],
1195 (retval = isdn_writebuf_stub(drvidx, chidx, buf, count)));
1196 goto out;
1198 if (minor <= ISDN_MINOR_CTRLMAX) {
1199 drvidx = isdn_minor2drv(minor - ISDN_MINOR_CTRL);
1200 if (drvidx < 0) {
1201 retval = -ENODEV;
1202 goto out;
1205 * We want to use the isdnctrl device to load the firmware
1207 if (!(dev->drv[drvidx]->flags & DRV_FLAG_RUNNING))
1208 return -ENODEV;
1210 if (dev->drv[drvidx]->interface->writecmd)
1211 retval = dev->drv[drvidx]->interface->
1212 writecmd(buf, count, drvidx,
1213 isdn_minor2chan(minor - ISDN_MINOR_CTRL));
1214 else
1215 retval = count;
1216 goto out;
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;
1223 #endif
1224 retval = -ENODEV;
1225 out:
1226 mutex_unlock(&isdn_mutex);
1227 return retval;
1230 static unsigned int
1231 isdn_poll(struct file *file, poll_table *wait)
1233 unsigned int mask = 0;
1234 unsigned int minor = iminor(file_inode(file));
1235 int drvidx = isdn_minor2drv(minor - ISDN_MINOR_CTRL);
1237 mutex_lock(&isdn_mutex);
1238 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;
1244 goto out;
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;
1252 poll_wait(file, &(dev->drv[drvidx]->st_waitq), wait);
1253 mask = POLLOUT | POLLWRNORM;
1254 if (dev->drv[drvidx]->stavail) {
1255 mask |= POLLIN | POLLRDNORM;
1257 goto out;
1259 #ifdef CONFIG_ISDN_PPP
1260 if (minor <= ISDN_MINOR_PPPMAX) {
1261 mask = isdn_ppp_poll(file, wait);
1262 goto out;
1264 #endif
1265 mask = POLLERR;
1266 out:
1267 mutex_unlock(&isdn_mutex);
1268 return mask;
1272 static int
1273 isdn_ioctl(struct file *file, uint cmd, ulong arg)
1275 uint minor = iminor(file_inode(file));
1276 isdn_ctrl c;
1277 int drvidx;
1278 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;
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
1297 if (minor == ISDN_MINOR_STATUS) {
1298 switch (cmd) {
1299 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;
1307 if (!access_ok(VERIFY_WRITE, p,
1308 sizeof(ulong) * ISDN_MAX_CHANNELS * 2))
1309 return -EFAULT;
1310 for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
1311 put_user(dev->ibytes[i], p++);
1312 put_user(dev->obytes[i], p++);
1314 return 0;
1315 } else
1316 return -EINVAL;
1317 break;
1318 case IIOCNETGPN:
1319 /* Get peer phone number of a connected
1320 * isdn network interface */
1321 if (arg) {
1322 if (copy_from_user(&phone, argp, sizeof(phone)))
1323 return -EFAULT;
1324 return isdn_net_getpeer(&phone, argp);
1325 } else
1326 return -EINVAL;
1327 default:
1328 return -EINVAL;
1331 if (!dev->drivers)
1332 return -ENODEV;
1333 if (minor <= ISDN_MINOR_BMAX) {
1334 drvidx = isdn_minor2drv(minor);
1335 if (drvidx < 0)
1336 return -ENODEV;
1337 if (!(dev->drv[drvidx]->flags & DRV_FLAG_RUNNING))
1338 return -ENODEV;
1339 return 0;
1341 if (minor <= ISDN_MINOR_CTRLMAX) {
1343 * isdn net devices manage lots of configuration variables as linked lists.
1344 * Those lists must only be manipulated from user space. Some of the ioctl's
1345 * service routines access user space and are not atomic. Therefore, ioctl's
1346 * manipulating the lists and ioctl's sleeping while accessing the lists
1347 * are serialized by means of a semaphore.
1349 switch (cmd) {
1350 case IIOCNETDWRSET:
1351 printk(KERN_INFO "INFO: ISDN_DW_ABC_EXTENSION not enabled\n");
1352 return (-EINVAL);
1353 case IIOCNETLCR:
1354 printk(KERN_INFO "INFO: ISDN_ABC_LCR_SUPPORT not enabled\n");
1355 return -ENODEV;
1356 case IIOCNETAIF:
1357 /* Add a network-interface */
1358 if (arg) {
1359 if (copy_from_user(name, argp, sizeof(name)))
1360 return -EFAULT;
1361 s = name;
1362 } else {
1363 s = NULL;
1365 ret = mutex_lock_interruptible(&dev->mtx);
1366 if (ret) return ret;
1367 if ((s = isdn_net_new(s, NULL))) {
1368 if (copy_to_user(argp, s, strlen(s) + 1)) {
1369 ret = -EFAULT;
1370 } else {
1371 ret = 0;
1373 } else
1374 ret = -ENODEV;
1375 mutex_unlock(&dev->mtx);
1376 return ret;
1377 case IIOCNETASL:
1378 /* Add a slave to a network-interface */
1379 if (arg) {
1380 if (copy_from_user(bname, argp, sizeof(bname) - 1))
1381 return -EFAULT;
1382 bname[sizeof(bname)-1] = 0;
1383 } else
1384 return -EINVAL;
1385 ret = mutex_lock_interruptible(&dev->mtx);
1386 if (ret) return ret;
1387 if ((s = isdn_net_newslave(bname))) {
1388 if (copy_to_user(argp, s, strlen(s) + 1)) {
1389 ret = -EFAULT;
1390 } else {
1391 ret = 0;
1393 } else
1394 ret = -ENODEV;
1395 mutex_unlock(&dev->mtx);
1396 return ret;
1397 case IIOCNETDIF:
1398 /* Delete a network-interface */
1399 if (arg) {
1400 if (copy_from_user(name, argp, sizeof(name)))
1401 return -EFAULT;
1402 ret = mutex_lock_interruptible(&dev->mtx);
1403 if (ret) return ret;
1404 ret = isdn_net_rm(name);
1405 mutex_unlock(&dev->mtx);
1406 return ret;
1407 } else
1408 return -EINVAL;
1409 case IIOCNETSCF:
1410 /* Set configurable parameters of a network-interface */
1411 if (arg) {
1412 if (copy_from_user(&cfg, argp, sizeof(cfg)))
1413 return -EFAULT;
1414 return isdn_net_setcfg(&cfg);
1415 } else
1416 return -EINVAL;
1417 case IIOCNETGCF:
1418 /* Get configurable parameters of a network-interface */
1419 if (arg) {
1420 if (copy_from_user(&cfg, argp, sizeof(cfg)))
1421 return -EFAULT;
1422 if (!(ret = isdn_net_getcfg(&cfg))) {
1423 if (copy_to_user(argp, &cfg, sizeof(cfg)))
1424 return -EFAULT;
1426 return ret;
1427 } else
1428 return -EINVAL;
1429 case IIOCNETANM:
1430 /* Add a phone-number to a network-interface */
1431 if (arg) {
1432 if (copy_from_user(&phone, argp, sizeof(phone)))
1433 return -EFAULT;
1434 ret = mutex_lock_interruptible(&dev->mtx);
1435 if (ret) return ret;
1436 ret = isdn_net_addphone(&phone);
1437 mutex_unlock(&dev->mtx);
1438 return ret;
1439 } else
1440 return -EINVAL;
1441 case IIOCNETGNM:
1442 /* Get list of phone-numbers of a network-interface */
1443 if (arg) {
1444 if (copy_from_user(&phone, argp, sizeof(phone)))
1445 return -EFAULT;
1446 ret = mutex_lock_interruptible(&dev->mtx);
1447 if (ret) return ret;
1448 ret = isdn_net_getphones(&phone, argp);
1449 mutex_unlock(&dev->mtx);
1450 return ret;
1451 } else
1452 return -EINVAL;
1453 case IIOCNETDNM:
1454 /* Delete a phone-number of a network-interface */
1455 if (arg) {
1456 if (copy_from_user(&phone, argp, sizeof(phone)))
1457 return -EFAULT;
1458 ret = mutex_lock_interruptible(&dev->mtx);
1459 if (ret) return ret;
1460 ret = isdn_net_delphone(&phone);
1461 mutex_unlock(&dev->mtx);
1462 return ret;
1463 } else
1464 return -EINVAL;
1465 case IIOCNETDIL:
1466 /* Force dialing of a network-interface */
1467 if (arg) {
1468 if (copy_from_user(name, argp, sizeof(name)))
1469 return -EFAULT;
1470 return isdn_net_force_dial(name);
1471 } else
1472 return -EINVAL;
1473 #ifdef CONFIG_ISDN_PPP
1474 case IIOCNETALN:
1475 if (!arg)
1476 return -EINVAL;
1477 if (copy_from_user(name, argp, sizeof(name)))
1478 return -EFAULT;
1479 return isdn_ppp_dial_slave(name);
1480 case IIOCNETDLN:
1481 if (!arg)
1482 return -EINVAL;
1483 if (copy_from_user(name, argp, sizeof(name)))
1484 return -EFAULT;
1485 return isdn_ppp_hangup_slave(name);
1486 #endif
1487 case IIOCNETHUP:
1488 /* Force hangup of a network-interface */
1489 if (!arg)
1490 return -EINVAL;
1491 if (copy_from_user(name, argp, sizeof(name)))
1492 return -EFAULT;
1493 return isdn_net_force_hangup(name);
1494 break;
1495 case IIOCSETVER:
1496 dev->net_verbose = arg;
1497 printk(KERN_INFO "isdn: Verbose-Level is %d\n", dev->net_verbose);
1498 return 0;
1499 case IIOCSETGST:
1500 if (arg)
1501 dev->global_flags |= ISDN_GLOBAL_STOPPED;
1502 else
1503 dev->global_flags &= ~ISDN_GLOBAL_STOPPED;
1504 printk(KERN_INFO "isdn: Global Mode %s\n",
1505 (dev->global_flags & ISDN_GLOBAL_STOPPED) ? "stopped" : "running");
1506 return 0;
1507 case IIOCSETBRJ:
1508 drvidx = -1;
1509 if (arg) {
1510 int i;
1511 char *p;
1512 if (copy_from_user(&iocts, argp,
1513 sizeof(isdn_ioctl_struct)))
1514 return -EFAULT;
1515 iocts.drvid[sizeof(iocts.drvid) - 1] = 0;
1516 if (strlen(iocts.drvid)) {
1517 if ((p = strchr(iocts.drvid, ',')))
1518 *p = 0;
1519 drvidx = -1;
1520 for (i = 0; i < ISDN_MAX_DRIVERS; i++)
1521 if (!(strcmp(dev->drvid[i], iocts.drvid))) {
1522 drvidx = i;
1523 break;
1527 if (drvidx == -1)
1528 return -ENODEV;
1529 if (iocts.arg)
1530 dev->drv[drvidx]->flags |= DRV_FLAG_REJBUS;
1531 else
1532 dev->drv[drvidx]->flags &= ~DRV_FLAG_REJBUS;
1533 return 0;
1534 case IIOCSIGPRF:
1535 dev->profd = current;
1536 return 0;
1537 break;
1538 case IIOCGETPRF:
1539 /* Get all Modem-Profiles */
1540 if (arg) {
1541 char __user *p = argp;
1542 int i;
1544 if (!access_ok(VERIFY_WRITE, argp,
1545 (ISDN_MODEM_NUMREG + ISDN_MSNLEN + ISDN_LMSNLEN)
1546 * ISDN_MAX_CHANNELS))
1547 return -EFAULT;
1549 for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
1550 if (copy_to_user(p, dev->mdm.info[i].emu.profile,
1551 ISDN_MODEM_NUMREG))
1552 return -EFAULT;
1553 p += ISDN_MODEM_NUMREG;
1554 if (copy_to_user(p, dev->mdm.info[i].emu.pmsn, ISDN_MSNLEN))
1555 return -EFAULT;
1556 p += ISDN_MSNLEN;
1557 if (copy_to_user(p, dev->mdm.info[i].emu.plmsn, ISDN_LMSNLEN))
1558 return -EFAULT;
1559 p += ISDN_LMSNLEN;
1561 return (ISDN_MODEM_NUMREG + ISDN_MSNLEN + ISDN_LMSNLEN) * ISDN_MAX_CHANNELS;
1562 } else
1563 return -EINVAL;
1564 break;
1565 case IIOCSETPRF:
1566 /* Set all Modem-Profiles */
1567 if (arg) {
1568 char __user *p = argp;
1569 int i;
1571 if (!access_ok(VERIFY_READ, argp,
1572 (ISDN_MODEM_NUMREG + ISDN_MSNLEN + ISDN_LMSNLEN)
1573 * ISDN_MAX_CHANNELS))
1574 return -EFAULT;
1576 for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
1577 if (copy_from_user(dev->mdm.info[i].emu.profile, p,
1578 ISDN_MODEM_NUMREG))
1579 return -EFAULT;
1580 p += ISDN_MODEM_NUMREG;
1581 if (copy_from_user(dev->mdm.info[i].emu.plmsn, p, ISDN_LMSNLEN))
1582 return -EFAULT;
1583 p += ISDN_LMSNLEN;
1584 if (copy_from_user(dev->mdm.info[i].emu.pmsn, p, ISDN_MSNLEN))
1585 return -EFAULT;
1586 p += ISDN_MSNLEN;
1588 return 0;
1589 } else
1590 return -EINVAL;
1591 break;
1592 case IIOCSETMAP:
1593 case IIOCGETMAP:
1594 /* Set/Get MSN->EAZ-Mapping for a driver */
1595 if (arg) {
1597 if (copy_from_user(&iocts, argp,
1598 sizeof(isdn_ioctl_struct)))
1599 return -EFAULT;
1600 iocts.drvid[sizeof(iocts.drvid) - 1] = 0;
1601 if (strlen(iocts.drvid)) {
1602 drvidx = -1;
1603 for (i = 0; i < ISDN_MAX_DRIVERS; i++)
1604 if (!(strcmp(dev->drvid[i], iocts.drvid))) {
1605 drvidx = i;
1606 break;
1608 } else
1609 drvidx = 0;
1610 if (drvidx == -1)
1611 return -ENODEV;
1612 if (cmd == IIOCSETMAP) {
1613 int loop = 1;
1615 p = (char __user *) iocts.arg;
1616 i = 0;
1617 while (loop) {
1618 int j = 0;
1620 while (1) {
1621 if (!access_ok(VERIFY_READ, p, 1))
1622 return -EFAULT;
1623 get_user(bname[j], p++);
1624 switch (bname[j]) {
1625 case '\0':
1626 loop = 0;
1627 /* Fall through */
1628 case ',':
1629 bname[j] = '\0';
1630 strcpy(dev->drv[drvidx]->msn2eaz[i], bname);
1631 j = ISDN_MSNLEN;
1632 break;
1633 default:
1634 j++;
1636 if (j >= ISDN_MSNLEN)
1637 break;
1639 if (++i > 9)
1640 break;
1642 } else {
1643 p = (char __user *) iocts.arg;
1644 for (i = 0; i < 10; i++) {
1645 snprintf(bname, sizeof(bname), "%s%s",
1646 strlen(dev->drv[drvidx]->msn2eaz[i]) ?
1647 dev->drv[drvidx]->msn2eaz[i] : "_",
1648 (i < 9) ? "," : "\0");
1649 if (copy_to_user(p, bname, strlen(bname) + 1))
1650 return -EFAULT;
1651 p += strlen(bname);
1654 return 0;
1655 } else
1656 return -EINVAL;
1657 case IIOCDBGVAR:
1658 return -EINVAL;
1659 default:
1660 if ((cmd & IIOCDRVCTL) == IIOCDRVCTL)
1661 cmd = ((cmd >> _IOC_NRSHIFT) & _IOC_NRMASK) & ISDN_DRVIOCTL_MASK;
1662 else
1663 return -EINVAL;
1664 if (arg) {
1665 int i;
1666 char *p;
1667 if (copy_from_user(&iocts, argp, sizeof(isdn_ioctl_struct)))
1668 return -EFAULT;
1669 iocts.drvid[sizeof(iocts.drvid) - 1] = 0;
1670 if (strlen(iocts.drvid)) {
1671 if ((p = strchr(iocts.drvid, ',')))
1672 *p = 0;
1673 drvidx = -1;
1674 for (i = 0; i < ISDN_MAX_DRIVERS; i++)
1675 if (!(strcmp(dev->drvid[i], iocts.drvid))) {
1676 drvidx = i;
1677 break;
1679 } else
1680 drvidx = 0;
1681 if (drvidx == -1)
1682 return -ENODEV;
1683 if (!access_ok(VERIFY_WRITE, argp,
1684 sizeof(isdn_ioctl_struct)))
1685 return -EFAULT;
1686 c.driver = drvidx;
1687 c.command = ISDN_CMD_IOCTL;
1688 c.arg = cmd;
1689 memcpy(c.parm.num, &iocts.arg, sizeof(ulong));
1690 ret = isdn_command(&c);
1691 memcpy(&iocts.arg, c.parm.num, sizeof(ulong));
1692 if (copy_to_user(argp, &iocts, sizeof(isdn_ioctl_struct)))
1693 return -EFAULT;
1694 return ret;
1695 } else
1696 return -EINVAL;
1699 #ifdef CONFIG_ISDN_PPP
1700 if (minor <= ISDN_MINOR_PPPMAX)
1701 return (isdn_ppp_ioctl(minor - ISDN_MINOR_PPP, file, cmd, arg));
1702 #endif
1703 return -ENODEV;
1705 #undef name
1706 #undef bname
1707 #undef iocts
1708 #undef phone
1709 #undef cfg
1712 static long
1713 isdn_unlocked_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1715 int ret;
1717 mutex_lock(&isdn_mutex);
1718 ret = isdn_ioctl(file, cmd, arg);
1719 mutex_unlock(&isdn_mutex);
1721 return ret;
1725 * Open the device code.
1727 static int
1728 isdn_open(struct inode *ino, struct file *filep)
1730 uint minor = iminor(ino);
1731 int drvidx;
1732 int chidx;
1733 int retval = -ENODEV;
1735 mutex_lock(&isdn_mutex);
1736 if (minor == ISDN_MINOR_STATUS) {
1737 infostruct *p;
1739 if ((p = kmalloc(sizeof(infostruct), GFP_KERNEL))) {
1740 p->next = (char *) dev->infochain;
1741 p->private = (char *) &(filep->private_data);
1742 dev->infochain = p;
1743 /* At opening we allow a single update */
1744 filep->private_data = (char *) 1;
1745 retval = 0;
1746 goto out;
1747 } else {
1748 retval = -ENOMEM;
1749 goto out;
1752 if (!dev->channels)
1753 goto out;
1754 if (minor <= ISDN_MINOR_BMAX) {
1755 printk(KERN_WARNING "isdn_open minor %d obsolete!\n", minor);
1756 drvidx = isdn_minor2drv(minor);
1757 if (drvidx < 0)
1758 goto out;
1759 chidx = isdn_minor2chan(minor);
1760 if (!(dev->drv[drvidx]->flags & DRV_FLAG_RUNNING))
1761 goto out;
1762 if (!(dev->drv[drvidx]->online & (1 << chidx)))
1763 goto out;
1764 isdn_lock_drivers();
1765 retval = 0;
1766 goto out;
1768 if (minor <= ISDN_MINOR_CTRLMAX) {
1769 drvidx = isdn_minor2drv(minor - ISDN_MINOR_CTRL);
1770 if (drvidx < 0)
1771 goto out;
1772 isdn_lock_drivers();
1773 retval = 0;
1774 goto out;
1776 #ifdef CONFIG_ISDN_PPP
1777 if (minor <= ISDN_MINOR_PPPMAX) {
1778 retval = isdn_ppp_open(minor - ISDN_MINOR_PPP, filep);
1779 if (retval == 0)
1780 isdn_lock_drivers();
1781 goto out;
1783 #endif
1784 out:
1785 nonseekable_open(ino, filep);
1786 mutex_unlock(&isdn_mutex);
1787 return retval;
1790 static int
1791 isdn_close(struct inode *ino, struct file *filep)
1793 uint minor = iminor(ino);
1795 mutex_lock(&isdn_mutex);
1796 if (minor == ISDN_MINOR_STATUS) {
1797 infostruct *p = dev->infochain;
1798 infostruct *q = NULL;
1800 while (p) {
1801 if (p->private == (char *) &(filep->private_data)) {
1802 if (q)
1803 q->next = p->next;
1804 else
1805 dev->infochain = (infostruct *) (p->next);
1806 kfree(p);
1807 goto out;
1809 q = p;
1810 p = (infostruct *) (p->next);
1812 printk(KERN_WARNING "isdn: No private data while closing isdnctrl\n");
1813 goto out;
1815 isdn_unlock_drivers();
1816 if (minor <= ISDN_MINOR_BMAX)
1817 goto out;
1818 if (minor <= ISDN_MINOR_CTRLMAX) {
1819 if (dev->profd == current)
1820 dev->profd = NULL;
1821 goto out;
1823 #ifdef CONFIG_ISDN_PPP
1824 if (minor <= ISDN_MINOR_PPPMAX)
1825 isdn_ppp_release(minor - ISDN_MINOR_PPP, filep);
1826 #endif
1828 out:
1829 mutex_unlock(&isdn_mutex);
1830 return 0;
1833 static const struct file_operations isdn_fops =
1835 .owner = THIS_MODULE,
1836 .llseek = no_llseek,
1837 .read = isdn_read,
1838 .write = isdn_write,
1839 .poll = isdn_poll,
1840 .unlocked_ioctl = isdn_unlocked_ioctl,
1841 .open = isdn_open,
1842 .release = isdn_close,
1845 char *
1846 isdn_map_eaz2msn(char *msn, int di)
1848 isdn_driver_t *this = dev->drv[di];
1849 int i;
1851 if (strlen(msn) == 1) {
1852 i = msn[0] - '0';
1853 if ((i >= 0) && (i <= 9))
1854 if (strlen(this->msn2eaz[i]))
1855 return (this->msn2eaz[i]);
1857 return (msn);
1861 * Find an unused ISDN-channel, whose feature-flags match the
1862 * given L2- and L3-protocols.
1864 #define L2V (~(ISDN_FEATURE_L2_V11096 | ISDN_FEATURE_L2_V11019 | ISDN_FEATURE_L2_V11038))
1867 * This function must be called with holding the dev->lock.
1870 isdn_get_free_channel(int usage, int l2_proto, int l3_proto, int pre_dev
1871 , int pre_chan, char *msn)
1873 int i;
1874 ulong features;
1875 ulong vfeatures;
1877 features = ((1 << l2_proto) | (0x10000 << l3_proto));
1878 vfeatures = (((1 << l2_proto) | (0x10000 << l3_proto)) &
1879 ~(ISDN_FEATURE_L2_V11096 | ISDN_FEATURE_L2_V11019 | ISDN_FEATURE_L2_V11038));
1880 /* If Layer-2 protocol is V.110, accept drivers with
1881 * transparent feature even if these don't support V.110
1882 * because we can emulate this in linklevel.
1884 for (i = 0; i < ISDN_MAX_CHANNELS; i++)
1885 if (USG_NONE(dev->usage[i]) &&
1886 (dev->drvmap[i] != -1)) {
1887 int d = dev->drvmap[i];
1888 if ((dev->usage[i] & ISDN_USAGE_EXCLUSIVE) &&
1889 ((pre_dev != d) || (pre_chan != dev->chanmap[i])))
1890 continue;
1891 if (!strcmp(isdn_map_eaz2msn(msn, d), "-"))
1892 continue;
1893 if (dev->usage[i] & ISDN_USAGE_DISABLED)
1894 continue; /* usage not allowed */
1895 if (dev->drv[d]->flags & DRV_FLAG_RUNNING) {
1896 if (((dev->drv[d]->interface->features & features) == features) ||
1897 (((dev->drv[d]->interface->features & vfeatures) == vfeatures) &&
1898 (dev->drv[d]->interface->features & ISDN_FEATURE_L2_TRANS))) {
1899 if ((pre_dev < 0) || (pre_chan < 0)) {
1900 dev->usage[i] &= ISDN_USAGE_EXCLUSIVE;
1901 dev->usage[i] |= usage;
1902 isdn_info_update();
1903 return i;
1904 } else {
1905 if ((pre_dev == d) && (pre_chan == dev->chanmap[i])) {
1906 dev->usage[i] &= ISDN_USAGE_EXCLUSIVE;
1907 dev->usage[i] |= usage;
1908 isdn_info_update();
1909 return i;
1915 return -1;
1919 * Set state of ISDN-channel to 'unused'
1921 void
1922 isdn_free_channel(int di, int ch, int usage)
1924 int i;
1926 if ((di < 0) || (ch < 0)) {
1927 printk(KERN_WARNING "%s: called with invalid drv(%d) or channel(%d)\n",
1928 __func__, di, ch);
1929 return;
1931 for (i = 0; i < ISDN_MAX_CHANNELS; i++)
1932 if (((!usage) || ((dev->usage[i] & ISDN_USAGE_MASK) == usage)) &&
1933 (dev->drvmap[i] == di) &&
1934 (dev->chanmap[i] == ch)) {
1935 dev->usage[i] &= (ISDN_USAGE_NONE | ISDN_USAGE_EXCLUSIVE);
1936 strcpy(dev->num[i], "???");
1937 dev->ibytes[i] = 0;
1938 dev->obytes[i] = 0;
1939 // 20.10.99 JIM, try to reinitialize v110 !
1940 dev->v110emu[i] = 0;
1941 atomic_set(&(dev->v110use[i]), 0);
1942 isdn_v110_close(dev->v110[i]);
1943 dev->v110[i] = NULL;
1944 // 20.10.99 JIM, try to reinitialize v110 !
1945 isdn_info_update();
1946 if (dev->drv[di])
1947 skb_queue_purge(&dev->drv[di]->rpqueue[ch]);
1952 * Cancel Exclusive-Flag for ISDN-channel
1954 void
1955 isdn_unexclusive_channel(int di, int ch)
1957 int i;
1959 for (i = 0; i < ISDN_MAX_CHANNELS; i++)
1960 if ((dev->drvmap[i] == di) &&
1961 (dev->chanmap[i] == ch)) {
1962 dev->usage[i] &= ~ISDN_USAGE_EXCLUSIVE;
1963 isdn_info_update();
1964 return;
1969 * writebuf replacement for SKB_ABLE drivers
1971 static int
1972 isdn_writebuf_stub(int drvidx, int chan, const u_char __user *buf, int len)
1974 int ret;
1975 int hl = dev->drv[drvidx]->interface->hl_hdrlen;
1976 struct sk_buff *skb = alloc_skb(hl + len, GFP_ATOMIC);
1978 if (!skb)
1979 return -ENOMEM;
1980 skb_reserve(skb, hl);
1981 if (copy_from_user(skb_put(skb, len), buf, len)) {
1982 dev_kfree_skb(skb);
1983 return -EFAULT;
1985 ret = dev->drv[drvidx]->interface->writebuf_skb(drvidx, chan, 1, skb);
1986 if (ret <= 0)
1987 dev_kfree_skb(skb);
1988 if (ret > 0)
1989 dev->obytes[isdn_dc2minor(drvidx, chan)] += ret;
1990 return ret;
1994 * Return: length of data on success, -ERRcode on failure.
1997 isdn_writebuf_skb_stub(int drvidx, int chan, int ack, struct sk_buff *skb)
1999 int ret;
2000 struct sk_buff *nskb = NULL;
2001 int v110_ret = skb->len;
2002 int idx = isdn_dc2minor(drvidx, chan);
2004 if (dev->v110[idx]) {
2005 atomic_inc(&dev->v110use[idx]);
2006 nskb = isdn_v110_encode(dev->v110[idx], skb);
2007 atomic_dec(&dev->v110use[idx]);
2008 if (!nskb)
2009 return 0;
2010 v110_ret = *((int *)nskb->data);
2011 skb_pull(nskb, sizeof(int));
2012 if (!nskb->len) {
2013 dev_kfree_skb(nskb);
2014 return v110_ret;
2016 /* V.110 must always be acknowledged */
2017 ack = 1;
2018 ret = dev->drv[drvidx]->interface->writebuf_skb(drvidx, chan, ack, nskb);
2019 } else {
2020 int hl = dev->drv[drvidx]->interface->hl_hdrlen;
2022 if (skb_headroom(skb) < hl) {
2024 * This should only occur when new HL driver with
2025 * increased hl_hdrlen was loaded after netdevice
2026 * was created and connected to the new driver.
2028 * The V.110 branch (re-allocates on its own) does
2029 * not need this
2031 struct sk_buff *skb_tmp;
2033 skb_tmp = skb_realloc_headroom(skb, hl);
2034 printk(KERN_DEBUG "isdn_writebuf_skb_stub: reallocating headroom%s\n", skb_tmp ? "" : " failed");
2035 if (!skb_tmp) return -ENOMEM; /* 0 better? */
2036 ret = dev->drv[drvidx]->interface->writebuf_skb(drvidx, chan, ack, skb_tmp);
2037 if (ret > 0) {
2038 dev_kfree_skb(skb);
2039 } else {
2040 dev_kfree_skb(skb_tmp);
2042 } else {
2043 ret = dev->drv[drvidx]->interface->writebuf_skb(drvidx, chan, ack, skb);
2046 if (ret > 0) {
2047 dev->obytes[idx] += ret;
2048 if (dev->v110[idx]) {
2049 atomic_inc(&dev->v110use[idx]);
2050 dev->v110[idx]->skbuser++;
2051 atomic_dec(&dev->v110use[idx]);
2052 /* For V.110 return unencoded data length */
2053 ret = v110_ret;
2054 /* if the complete frame was send we free the skb;
2055 if not upper function will requeue the skb */
2056 if (ret == skb->len)
2057 dev_kfree_skb(skb);
2059 } else
2060 if (dev->v110[idx])
2061 dev_kfree_skb(nskb);
2062 return ret;
2065 static int
2066 isdn_add_channels(isdn_driver_t *d, int drvidx, int n, int adding)
2068 int j, k, m;
2070 init_waitqueue_head(&d->st_waitq);
2071 if (d->flags & DRV_FLAG_RUNNING)
2072 return -1;
2073 if (n < 1) return 0;
2075 m = (adding) ? d->channels + n : n;
2077 if (dev->channels + n > ISDN_MAX_CHANNELS) {
2078 printk(KERN_WARNING "register_isdn: Max. %d channels supported\n",
2079 ISDN_MAX_CHANNELS);
2080 return -1;
2083 if ((adding) && (d->rcverr))
2084 kfree(d->rcverr);
2085 if (!(d->rcverr = kzalloc(sizeof(int) * m, GFP_ATOMIC))) {
2086 printk(KERN_WARNING "register_isdn: Could not alloc rcverr\n");
2087 return -1;
2090 if ((adding) && (d->rcvcount))
2091 kfree(d->rcvcount);
2092 if (!(d->rcvcount = kzalloc(sizeof(int) * m, GFP_ATOMIC))) {
2093 printk(KERN_WARNING "register_isdn: Could not alloc rcvcount\n");
2094 if (!adding)
2095 kfree(d->rcverr);
2096 return -1;
2099 if ((adding) && (d->rpqueue)) {
2100 for (j = 0; j < d->channels; j++)
2101 skb_queue_purge(&d->rpqueue[j]);
2102 kfree(d->rpqueue);
2104 if (!(d->rpqueue = kmalloc(sizeof(struct sk_buff_head) * m, GFP_ATOMIC))) {
2105 printk(KERN_WARNING "register_isdn: Could not alloc rpqueue\n");
2106 if (!adding) {
2107 kfree(d->rcvcount);
2108 kfree(d->rcverr);
2110 return -1;
2112 for (j = 0; j < m; j++) {
2113 skb_queue_head_init(&d->rpqueue[j]);
2116 if ((adding) && (d->rcv_waitq))
2117 kfree(d->rcv_waitq);
2118 d->rcv_waitq = kmalloc(sizeof(wait_queue_head_t) * 2 * m, GFP_ATOMIC);
2119 if (!d->rcv_waitq) {
2120 printk(KERN_WARNING "register_isdn: Could not alloc rcv_waitq\n");
2121 if (!adding) {
2122 kfree(d->rpqueue);
2123 kfree(d->rcvcount);
2124 kfree(d->rcverr);
2126 return -1;
2128 d->snd_waitq = d->rcv_waitq + m;
2129 for (j = 0; j < m; j++) {
2130 init_waitqueue_head(&d->rcv_waitq[j]);
2131 init_waitqueue_head(&d->snd_waitq[j]);
2134 dev->channels += n;
2135 for (j = d->channels; j < m; j++)
2136 for (k = 0; k < ISDN_MAX_CHANNELS; k++)
2137 if (dev->chanmap[k] < 0) {
2138 dev->chanmap[k] = j;
2139 dev->drvmap[k] = drvidx;
2140 break;
2142 d->channels = m;
2143 return 0;
2147 * Low-level-driver registration
2150 static void
2151 set_global_features(void)
2153 int drvidx;
2155 dev->global_features = 0;
2156 for (drvidx = 0; drvidx < ISDN_MAX_DRIVERS; drvidx++) {
2157 if (!dev->drv[drvidx])
2158 continue;
2159 if (dev->drv[drvidx]->interface)
2160 dev->global_features |= dev->drv[drvidx]->interface->features;
2164 #ifdef CONFIG_ISDN_DIVERSION
2166 static char *map_drvname(int di)
2168 if ((di < 0) || (di >= ISDN_MAX_DRIVERS))
2169 return (NULL);
2170 return (dev->drvid[di]); /* driver name */
2171 } /* map_drvname */
2173 static int map_namedrv(char *id)
2174 { int i;
2176 for (i = 0; i < ISDN_MAX_DRIVERS; i++)
2177 { if (!strcmp(dev->drvid[i], id))
2178 return (i);
2180 return (-1);
2181 } /* map_namedrv */
2183 int DIVERT_REG_NAME(isdn_divert_if *i_div)
2185 if (i_div->if_magic != DIVERT_IF_MAGIC)
2186 return (DIVERT_VER_ERR);
2187 switch (i_div->cmd)
2189 case DIVERT_CMD_REL:
2190 if (divert_if != i_div)
2191 return (DIVERT_REL_ERR);
2192 divert_if = NULL; /* free interface */
2193 return (DIVERT_NO_ERR);
2195 case DIVERT_CMD_REG:
2196 if (divert_if)
2197 return (DIVERT_REG_ERR);
2198 i_div->ll_cmd = isdn_command; /* set command function */
2199 i_div->drv_to_name = map_drvname;
2200 i_div->name_to_drv = map_namedrv;
2201 divert_if = i_div; /* remember interface */
2202 return (DIVERT_NO_ERR);
2204 default:
2205 return (DIVERT_CMD_ERR);
2207 } /* DIVERT_REG_NAME */
2209 EXPORT_SYMBOL(DIVERT_REG_NAME);
2211 #endif /* CONFIG_ISDN_DIVERSION */
2214 EXPORT_SYMBOL(register_isdn);
2215 #ifdef CONFIG_ISDN_PPP
2216 EXPORT_SYMBOL(isdn_ppp_register_compressor);
2217 EXPORT_SYMBOL(isdn_ppp_unregister_compressor);
2218 #endif
2221 register_isdn(isdn_if *i)
2223 isdn_driver_t *d;
2224 int j;
2225 ulong flags;
2226 int drvidx;
2228 if (dev->drivers >= ISDN_MAX_DRIVERS) {
2229 printk(KERN_WARNING "register_isdn: Max. %d drivers supported\n",
2230 ISDN_MAX_DRIVERS);
2231 return 0;
2233 if (!i->writebuf_skb) {
2234 printk(KERN_WARNING "register_isdn: No write routine given.\n");
2235 return 0;
2237 if (!(d = kzalloc(sizeof(isdn_driver_t), GFP_KERNEL))) {
2238 printk(KERN_WARNING "register_isdn: Could not alloc driver-struct\n");
2239 return 0;
2242 d->maxbufsize = i->maxbufsize;
2243 d->pktcount = 0;
2244 d->stavail = 0;
2245 d->flags = DRV_FLAG_LOADED;
2246 d->online = 0;
2247 d->interface = i;
2248 d->channels = 0;
2249 spin_lock_irqsave(&dev->lock, flags);
2250 for (drvidx = 0; drvidx < ISDN_MAX_DRIVERS; drvidx++)
2251 if (!dev->drv[drvidx])
2252 break;
2253 if (isdn_add_channels(d, drvidx, i->channels, 0)) {
2254 spin_unlock_irqrestore(&dev->lock, flags);
2255 kfree(d);
2256 return 0;
2258 i->channels = drvidx;
2259 i->rcvcallb_skb = isdn_receive_skb_callback;
2260 i->statcallb = isdn_status_callback;
2261 if (!strlen(i->id))
2262 sprintf(i->id, "line%d", drvidx);
2263 for (j = 0; j < drvidx; j++)
2264 if (!strcmp(i->id, dev->drvid[j]))
2265 sprintf(i->id, "line%d", drvidx);
2266 dev->drv[drvidx] = d;
2267 strcpy(dev->drvid[drvidx], i->id);
2268 isdn_info_update();
2269 dev->drivers++;
2270 set_global_features();
2271 spin_unlock_irqrestore(&dev->lock, flags);
2272 return 1;
2276 *****************************************************************************
2277 * And now the modules code.
2278 *****************************************************************************
2281 static char *
2282 isdn_getrev(const char *revision)
2284 char *rev;
2285 char *p;
2287 if ((p = strchr(revision, ':'))) {
2288 rev = p + 2;
2289 p = strchr(rev, '$');
2290 *--p = 0;
2291 } else
2292 rev = "???";
2293 return rev;
2297 * Allocate and initialize all data, register modem-devices
2299 static int __init isdn_init(void)
2301 int i;
2302 char tmprev[50];
2304 dev = vzalloc(sizeof(isdn_dev));
2305 if (!dev) {
2306 printk(KERN_WARNING "isdn: Could not allocate device-struct.\n");
2307 return -EIO;
2309 init_timer(&dev->timer);
2310 dev->timer.function = isdn_timer_funct;
2311 spin_lock_init(&dev->lock);
2312 spin_lock_init(&dev->timerlock);
2313 #ifdef MODULE
2314 dev->owner = THIS_MODULE;
2315 #endif
2316 mutex_init(&dev->mtx);
2317 init_waitqueue_head(&dev->info_waitq);
2318 for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
2319 dev->drvmap[i] = -1;
2320 dev->chanmap[i] = -1;
2321 dev->m_idx[i] = -1;
2322 strcpy(dev->num[i], "???");
2324 if (register_chrdev(ISDN_MAJOR, "isdn", &isdn_fops)) {
2325 printk(KERN_WARNING "isdn: Could not register control devices\n");
2326 vfree(dev);
2327 return -EIO;
2329 if ((isdn_tty_modem_init()) < 0) {
2330 printk(KERN_WARNING "isdn: Could not register tty devices\n");
2331 vfree(dev);
2332 unregister_chrdev(ISDN_MAJOR, "isdn");
2333 return -EIO;
2335 #ifdef CONFIG_ISDN_PPP
2336 if (isdn_ppp_init() < 0) {
2337 printk(KERN_WARNING "isdn: Could not create PPP-device-structs\n");
2338 isdn_tty_exit();
2339 unregister_chrdev(ISDN_MAJOR, "isdn");
2340 vfree(dev);
2341 return -EIO;
2343 #endif /* CONFIG_ISDN_PPP */
2345 strcpy(tmprev, isdn_revision);
2346 printk(KERN_NOTICE "ISDN subsystem Rev: %s/", isdn_getrev(tmprev));
2347 strcpy(tmprev, isdn_net_revision);
2348 printk("%s/", isdn_getrev(tmprev));
2349 strcpy(tmprev, isdn_ppp_revision);
2350 printk("%s/", isdn_getrev(tmprev));
2351 strcpy(tmprev, isdn_audio_revision);
2352 printk("%s/", isdn_getrev(tmprev));
2353 strcpy(tmprev, isdn_v110_revision);
2354 printk("%s", isdn_getrev(tmprev));
2356 #ifdef MODULE
2357 printk(" loaded\n");
2358 #else
2359 printk("\n");
2360 #endif
2361 isdn_info_update();
2362 return 0;
2366 * Unload module
2368 static void __exit isdn_exit(void)
2370 #ifdef CONFIG_ISDN_PPP
2371 isdn_ppp_cleanup();
2372 #endif
2373 if (isdn_net_rmall() < 0) {
2374 printk(KERN_WARNING "isdn: net-device busy, remove cancelled\n");
2375 return;
2377 isdn_tty_exit();
2378 unregister_chrdev(ISDN_MAJOR, "isdn");
2379 del_timer_sync(&dev->timer);
2380 /* call vfree with interrupts enabled, else it will hang */
2381 vfree(dev);
2382 printk(KERN_NOTICE "ISDN-subsystem unloaded\n");
2385 module_init(isdn_init);
2386 module_exit(isdn_exit);