blob: 5a4da94aefb056becbca88e5110282608b26df0c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* $Id: isdnloop.c,v 1.11.6.7 2001/11/11 19:54:31 kai Exp $
2 *
3 * ISDN low-level module implementing a dummy loop driver.
4 *
5 * Copyright 1997 by Fritz Elfert (fritz@isdn4linux.de)
6 *
7 * This software may be used and distributed according to the terms
8 * of the GNU General Public License, incorporated herein by reference.
9 *
10 */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/module.h>
13#include <linux/interrupt.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/init.h>
16#include <linux/sched.h>
17#include "isdnloop.h"
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019static char *isdnloop_id = "loop0";
20
21MODULE_DESCRIPTION("ISDN4Linux: Pseudo Driver that simulates an ISDN card");
22MODULE_AUTHOR("Fritz Elfert");
23MODULE_LICENSE("GPL");
Rusty Russell8d3b33f2006-03-25 03:07:05 -080024module_param(isdnloop_id, charp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025MODULE_PARM_DESC(isdnloop_id, "ID-String of first card");
26
27static int isdnloop_addcard(char *);
28
29/*
30 * Free queue completely.
31 *
32 * Parameter:
33 * card = pointer to card struct
34 * channel = channel number
35 */
36static void
Joe Perches475be4d2012-02-19 19:52:38 -080037isdnloop_free_queue(isdnloop_card *card, int channel)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
39 struct sk_buff_head *queue = &card->bqueue[channel];
40
41 skb_queue_purge(queue);
42 card->sndcount[channel] = 0;
43}
44
45/*
46 * Send B-Channel data to another virtual card.
47 * This routine is called via timer-callback from isdnloop_pollbchan().
48 *
49 * Parameter:
50 * card = pointer to card struct.
51 * ch = channel number (0-based)
52 */
53static void
Joe Perches475be4d2012-02-19 19:52:38 -080054isdnloop_bchan_send(isdnloop_card *card, int ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
56 isdnloop_card *rcard = card->rcard[ch];
57 int rch = card->rch[ch], len, ack;
58 struct sk_buff *skb;
59 isdn_ctrl cmd;
60
61 while (card->sndcount[ch]) {
62 if ((skb = skb_dequeue(&card->bqueue[ch]))) {
63 len = skb->len;
64 card->sndcount[ch] -= len;
65 ack = *(skb->head); /* used as scratch area */
66 cmd.driver = card->myid;
67 cmd.arg = ch;
Joe Perches475be4d2012-02-19 19:52:38 -080068 if (rcard) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 rcard->interface.rcvcallb_skb(rcard->myid, rch, skb);
70 } else {
71 printk(KERN_WARNING "isdnloop: no rcard, skb dropped\n");
72 dev_kfree_skb(skb);
73
74 };
75 cmd.command = ISDN_STAT_BSENT;
76 cmd.parm.length = len;
77 card->interface.statcallb(&cmd);
78 } else
79 card->sndcount[ch] = 0;
80 }
81}
82
83/*
84 * Send/Receive Data to/from the B-Channel.
85 * This routine is called via timer-callback.
86 * It schedules itself while any B-Channel is open.
87 *
88 * Parameter:
89 * data = pointer to card struct, set by kernel timer.data
90 */
91static void
92isdnloop_pollbchan(unsigned long data)
93{
94 isdnloop_card *card = (isdnloop_card *) data;
95 unsigned long flags;
96
97 if (card->flags & ISDNLOOP_FLAGS_B1ACTIVE)
98 isdnloop_bchan_send(card, 0);
99 if (card->flags & ISDNLOOP_FLAGS_B2ACTIVE)
100 isdnloop_bchan_send(card, 1);
101 if (card->flags & (ISDNLOOP_FLAGS_B1ACTIVE | ISDNLOOP_FLAGS_B2ACTIVE)) {
102 /* schedule b-channel polling again */
Amol Lad078d3962006-10-17 00:10:37 -0700103 spin_lock_irqsave(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 card->rb_timer.expires = jiffies + ISDNLOOP_TIMER_BCREAD;
105 add_timer(&card->rb_timer);
106 card->flags |= ISDNLOOP_FLAGS_RBTIMER;
Amol Lad078d3962006-10-17 00:10:37 -0700107 spin_unlock_irqrestore(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 } else
109 card->flags &= ~ISDNLOOP_FLAGS_RBTIMER;
110}
111
112/*
113 * Parse ICN-type setup string and fill fields of setup-struct
114 * with parsed data.
115 *
116 * Parameter:
117 * setup = setup string, format: [caller-id],si1,si2,[called-id]
118 * cmd = pointer to struct to be filled.
119 */
120static void
Joe Perches475be4d2012-02-19 19:52:38 -0800121isdnloop_parse_setup(char *setup, isdn_ctrl *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
123 char *t = setup;
124 char *s = strchr(t, ',');
125
126 *s++ = '\0';
127 strlcpy(cmd->parm.setup.phone, t, sizeof(cmd->parm.setup.phone));
128 s = strchr(t = s, ',');
129 *s++ = '\0';
130 if (!strlen(t))
131 cmd->parm.setup.si1 = 0;
132 else
133 cmd->parm.setup.si1 = simple_strtoul(t, NULL, 10);
134 s = strchr(t = s, ',');
135 *s++ = '\0';
136 if (!strlen(t))
137 cmd->parm.setup.si2 = 0;
138 else
139 cmd->parm.setup.si2 =
Joe Perches475be4d2012-02-19 19:52:38 -0800140 simple_strtoul(t, NULL, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 strlcpy(cmd->parm.setup.eazmsn, s, sizeof(cmd->parm.setup.eazmsn));
142 cmd->parm.setup.plan = 0;
143 cmd->parm.setup.screen = 0;
144}
145
146typedef struct isdnloop_stat {
147 char *statstr;
148 int command;
149 int action;
150} isdnloop_stat;
151/* *INDENT-OFF* */
152static isdnloop_stat isdnloop_stat_table[] =
153{
154 {"BCON_", ISDN_STAT_BCONN, 1}, /* B-Channel connected */
155 {"BDIS_", ISDN_STAT_BHUP, 2}, /* B-Channel disconnected */
156 {"DCON_", ISDN_STAT_DCONN, 0}, /* D-Channel connected */
157 {"DDIS_", ISDN_STAT_DHUP, 0}, /* D-Channel disconnected */
158 {"DCAL_I", ISDN_STAT_ICALL, 3}, /* Incoming call dialup-line */
159 {"DSCA_I", ISDN_STAT_ICALL, 3}, /* Incoming call 1TR6-SPV */
160 {"FCALL", ISDN_STAT_ICALL, 4}, /* Leased line connection up */
161 {"CIF", ISDN_STAT_CINF, 5}, /* Charge-info, 1TR6-type */
162 {"AOC", ISDN_STAT_CINF, 6}, /* Charge-info, DSS1-type */
163 {"CAU", ISDN_STAT_CAUSE, 7}, /* Cause code */
164 {"TEI OK", ISDN_STAT_RUN, 0}, /* Card connected to wallplug */
165 {"E_L1: ACT FAIL", ISDN_STAT_BHUP, 8}, /* Layer-1 activation failed */
166 {"E_L2: DATA LIN", ISDN_STAT_BHUP, 8}, /* Layer-2 data link lost */
167 {"E_L1: ACTIVATION FAILED",
Joe Perches475be4d2012-02-19 19:52:38 -0800168 ISDN_STAT_BHUP, 8}, /* Layer-1 activation failed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 {NULL, 0, -1}
170};
171/* *INDENT-ON* */
172
173
174/*
175 * Parse Status message-strings from virtual card.
176 * Depending on status, call statcallb for sending messages to upper
177 * levels. Also set/reset B-Channel active-flags.
178 *
179 * Parameter:
180 * status = status string to parse.
181 * channel = channel where message comes from.
182 * card = card where message comes from.
183 */
184static void
Joe Perches475be4d2012-02-19 19:52:38 -0800185isdnloop_parse_status(u_char *status, int channel, isdnloop_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
187 isdnloop_stat *s = isdnloop_stat_table;
188 int action = -1;
189 isdn_ctrl cmd;
190
191 while (s->statstr) {
192 if (!strncmp(status, s->statstr, strlen(s->statstr))) {
193 cmd.command = s->command;
194 action = s->action;
195 break;
196 }
197 s++;
198 }
199 if (action == -1)
200 return;
201 cmd.driver = card->myid;
202 cmd.arg = channel;
203 switch (action) {
Joe Perches475be4d2012-02-19 19:52:38 -0800204 case 1:
205 /* BCON_x */
206 card->flags |= (channel) ?
207 ISDNLOOP_FLAGS_B2ACTIVE : ISDNLOOP_FLAGS_B1ACTIVE;
208 break;
209 case 2:
210 /* BDIS_x */
211 card->flags &= ~((channel) ?
212 ISDNLOOP_FLAGS_B2ACTIVE : ISDNLOOP_FLAGS_B1ACTIVE);
213 isdnloop_free_queue(card, channel);
214 break;
215 case 3:
216 /* DCAL_I and DSCA_I */
217 isdnloop_parse_setup(status + 6, &cmd);
218 break;
219 case 4:
220 /* FCALL */
221 sprintf(cmd.parm.setup.phone, "LEASED%d", card->myid);
222 sprintf(cmd.parm.setup.eazmsn, "%d", channel + 1);
223 cmd.parm.setup.si1 = 7;
224 cmd.parm.setup.si2 = 0;
225 cmd.parm.setup.plan = 0;
226 cmd.parm.setup.screen = 0;
227 break;
228 case 5:
229 /* CIF */
230 strlcpy(cmd.parm.num, status + 3, sizeof(cmd.parm.num));
231 break;
232 case 6:
233 /* AOC */
234 snprintf(cmd.parm.num, sizeof(cmd.parm.num), "%d",
235 (int) simple_strtoul(status + 7, NULL, 16));
236 break;
237 case 7:
238 /* CAU */
239 status += 3;
240 if (strlen(status) == 4)
241 snprintf(cmd.parm.num, sizeof(cmd.parm.num), "%s%c%c",
242 status + 2, *status, *(status + 1));
243 else
244 strlcpy(cmd.parm.num, status + 1, sizeof(cmd.parm.num));
245 break;
246 case 8:
247 /* Misc Errors on L1 and L2 */
248 card->flags &= ~ISDNLOOP_FLAGS_B1ACTIVE;
249 isdnloop_free_queue(card, 0);
250 cmd.arg = 0;
251 cmd.driver = card->myid;
252 card->interface.statcallb(&cmd);
253 cmd.command = ISDN_STAT_DHUP;
254 cmd.arg = 0;
255 cmd.driver = card->myid;
256 card->interface.statcallb(&cmd);
257 cmd.command = ISDN_STAT_BHUP;
258 card->flags &= ~ISDNLOOP_FLAGS_B2ACTIVE;
259 isdnloop_free_queue(card, 1);
260 cmd.arg = 1;
261 cmd.driver = card->myid;
262 card->interface.statcallb(&cmd);
263 cmd.command = ISDN_STAT_DHUP;
264 cmd.arg = 1;
265 cmd.driver = card->myid;
266 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 }
268 card->interface.statcallb(&cmd);
269}
270
271/*
272 * Store a cwcharacter into ringbuffer for reading from /dev/isdnctrl
273 *
274 * Parameter:
275 * card = pointer to card struct.
276 * c = char to store.
277 */
278static void
Joe Perches475be4d2012-02-19 19:52:38 -0800279isdnloop_putmsg(isdnloop_card *card, unsigned char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
281 ulong flags;
282
Amol Lad078d3962006-10-17 00:10:37 -0700283 spin_lock_irqsave(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 *card->msg_buf_write++ = (c == 0xff) ? '\n' : c;
285 if (card->msg_buf_write == card->msg_buf_read) {
286 if (++card->msg_buf_read > card->msg_buf_end)
287 card->msg_buf_read = card->msg_buf;
288 }
289 if (card->msg_buf_write > card->msg_buf_end)
290 card->msg_buf_write = card->msg_buf;
Amol Lad078d3962006-10-17 00:10:37 -0700291 spin_unlock_irqrestore(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
294/*
295 * Poll a virtual cards message queue.
296 * If there are new status-replies from the card, copy them to
297 * ringbuffer for reading on /dev/isdnctrl and call
298 * isdnloop_parse_status() for processing them. Watch for special
299 * Firmware bootmessage and parse it, to get the D-Channel protocol.
300 * If there are B-Channels open, initiate a timer-callback to
301 * isdnloop_pollbchan().
302 * This routine is called periodically via timer interrupt.
303 *
304 * Parameter:
305 * data = pointer to card struct
306 */
307static void
308isdnloop_polldchan(unsigned long data)
309{
310 isdnloop_card *card = (isdnloop_card *) data;
311 struct sk_buff *skb;
312 int avail;
313 int left;
314 u_char c;
315 int ch;
316 unsigned long flags;
317 u_char *p;
318 isdn_ctrl cmd;
319
320 if ((skb = skb_dequeue(&card->dqueue)))
321 avail = skb->len;
322 else
323 avail = 0;
324 for (left = avail; left > 0; left--) {
325 c = *skb->data;
326 skb_pull(skb, 1);
327 isdnloop_putmsg(card, c);
328 card->imsg[card->iptr] = c;
329 if (card->iptr < 59)
330 card->iptr++;
331 if (!skb->len) {
332 avail++;
333 isdnloop_putmsg(card, '\n');
334 card->imsg[card->iptr] = 0;
335 card->iptr = 0;
336 if (card->imsg[0] == '0' && card->imsg[1] >= '0' &&
Joe Perches475be4d2012-02-19 19:52:38 -0800337 card->imsg[1] <= '2' && card->imsg[2] == ';') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 ch = (card->imsg[1] - '0') - 1;
339 p = &card->imsg[3];
340 isdnloop_parse_status(p, ch, card);
341 } else {
342 p = card->imsg;
343 if (!strncmp(p, "DRV1.", 5)) {
344 printk(KERN_INFO "isdnloop: (%s) %s\n", CID, p);
345 if (!strncmp(p + 7, "TC", 2)) {
346 card->ptype = ISDN_PTYPE_1TR6;
347 card->interface.features |= ISDN_FEATURE_P_1TR6;
348 printk(KERN_INFO
349 "isdnloop: (%s) 1TR6-Protocol loaded and running\n", CID);
350 }
351 if (!strncmp(p + 7, "EC", 2)) {
352 card->ptype = ISDN_PTYPE_EURO;
353 card->interface.features |= ISDN_FEATURE_P_EURO;
354 printk(KERN_INFO
355 "isdnloop: (%s) Euro-Protocol loaded and running\n", CID);
356 }
357 continue;
358
359 }
360 }
361 }
362 }
363 if (avail) {
364 cmd.command = ISDN_STAT_STAVAIL;
365 cmd.driver = card->myid;
366 cmd.arg = avail;
367 card->interface.statcallb(&cmd);
368 }
369 if (card->flags & (ISDNLOOP_FLAGS_B1ACTIVE | ISDNLOOP_FLAGS_B2ACTIVE))
370 if (!(card->flags & ISDNLOOP_FLAGS_RBTIMER)) {
371 /* schedule b-channel polling */
372 card->flags |= ISDNLOOP_FLAGS_RBTIMER;
Amol Lad078d3962006-10-17 00:10:37 -0700373 spin_lock_irqsave(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 del_timer(&card->rb_timer);
375 card->rb_timer.function = isdnloop_pollbchan;
376 card->rb_timer.data = (unsigned long) card;
377 card->rb_timer.expires = jiffies + ISDNLOOP_TIMER_BCREAD;
378 add_timer(&card->rb_timer);
Amol Lad078d3962006-10-17 00:10:37 -0700379 spin_unlock_irqrestore(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
381 /* schedule again */
Amol Lad078d3962006-10-17 00:10:37 -0700382 spin_lock_irqsave(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 card->st_timer.expires = jiffies + ISDNLOOP_TIMER_DCREAD;
384 add_timer(&card->st_timer);
Amol Lad078d3962006-10-17 00:10:37 -0700385 spin_unlock_irqrestore(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
388/*
389 * Append a packet to the transmit buffer-queue.
390 *
391 * Parameter:
392 * channel = Number of B-channel
393 * skb = packet to send.
394 * card = pointer to card-struct
395 * Return:
396 * Number of bytes transferred, -E??? on error
397 */
398static int
Joe Perches475be4d2012-02-19 19:52:38 -0800399isdnloop_sendbuf(int channel, struct sk_buff *skb, isdnloop_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
401 int len = skb->len;
402 unsigned long flags;
403 struct sk_buff *nskb;
404
405 if (len > 4000) {
406 printk(KERN_WARNING
407 "isdnloop: Send packet too large\n");
408 return -EINVAL;
409 }
410 if (len) {
411 if (!(card->flags & (channel) ? ISDNLOOP_FLAGS_B2ACTIVE : ISDNLOOP_FLAGS_B1ACTIVE))
412 return 0;
413 if (card->sndcount[channel] > ISDNLOOP_MAX_SQUEUE)
414 return 0;
Amol Lad078d3962006-10-17 00:10:37 -0700415 spin_lock_irqsave(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 nskb = dev_alloc_skb(skb->len);
417 if (nskb) {
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300418 skb_copy_from_linear_data(skb,
419 skb_put(nskb, len), len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 skb_queue_tail(&card->bqueue[channel], nskb);
421 dev_kfree_skb(skb);
422 } else
423 len = 0;
424 card->sndcount[channel] += len;
Amol Lad078d3962006-10-17 00:10:37 -0700425 spin_unlock_irqrestore(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
427 return len;
428}
429
430/*
431 * Read the messages from the card's ringbuffer
432 *
433 * Parameter:
434 * buf = pointer to buffer.
435 * len = number of bytes to read.
436 * user = flag, 1: called from userlevel 0: called from kernel.
437 * card = pointer to card struct.
438 * Return:
439 * number of bytes actually transferred.
440 */
441static int
Joe Perches475be4d2012-02-19 19:52:38 -0800442isdnloop_readstatus(u_char __user *buf, int len, isdnloop_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
444 int count;
445 u_char __user *p;
446
447 for (p = buf, count = 0; count < len; p++, count++) {
448 if (card->msg_buf_read == card->msg_buf_write)
449 return count;
Jeff Garzik7786ce12006-10-17 00:10:40 -0700450 if (put_user(*card->msg_buf_read++, p))
451 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 if (card->msg_buf_read > card->msg_buf_end)
453 card->msg_buf_read = card->msg_buf;
454 }
455 return count;
456}
457
458/*
459 * Simulate a card's response by appending it to the cards
460 * message queue.
461 *
462 * Parameter:
463 * card = pointer to card struct.
464 * s = pointer to message-string.
465 * ch = channel: 0 = generic messages, 1 and 2 = D-channel messages.
466 * Return:
467 * 0 on success, 1 on memory squeeze.
468 */
469static int
Joe Perches475be4d2012-02-19 19:52:38 -0800470isdnloop_fake(isdnloop_card *card, char *s, int ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
472 struct sk_buff *skb;
473 int len = strlen(s) + ((ch >= 0) ? 3 : 0);
474
475 if (!(skb = dev_alloc_skb(len))) {
476 printk(KERN_WARNING "isdnloop: Out of memory in isdnloop_fake\n");
477 return 1;
478 }
479 if (ch >= 0)
480 sprintf(skb_put(skb, 3), "%02d;", ch);
481 memcpy(skb_put(skb, strlen(s)), s, strlen(s));
482 skb_queue_tail(&card->dqueue, skb);
483 return 0;
484}
485/* *INDENT-OFF* */
486static isdnloop_stat isdnloop_cmd_table[] =
487{
488 {"BCON_R", 0, 1}, /* B-Channel connect */
489 {"BCON_I", 0, 17}, /* B-Channel connect ind */
490 {"BDIS_R", 0, 2}, /* B-Channel disconnect */
491 {"DDIS_R", 0, 3}, /* D-Channel disconnect */
492 {"DCON_R", 0, 16}, /* D-Channel connect */
493 {"DSCA_R", 0, 4}, /* Dial 1TR6-SPV */
494 {"DCAL_R", 0, 5}, /* Dial */
495 {"EAZC", 0, 6}, /* Clear EAZ listener */
496 {"EAZ", 0, 7}, /* Set EAZ listener */
497 {"SEEAZ", 0, 8}, /* Get EAZ listener */
498 {"MSN", 0, 9}, /* Set/Clear MSN listener */
499 {"MSALL", 0, 10}, /* Set multi MSN listeners */
500 {"SETSIL", 0, 11}, /* Set SI list */
501 {"SEESIL", 0, 12}, /* Get SI list */
502 {"SILC", 0, 13}, /* Clear SI list */
503 {"LOCK", 0, -1}, /* LOCK channel */
504 {"UNLOCK", 0, -1}, /* UNLOCK channel */
505 {"FV2ON", 1, 14}, /* Leased mode on */
506 {"FV2OFF", 1, 15}, /* Leased mode off */
507 {NULL, 0, -1}
508};
509/* *INDENT-ON* */
510
511
512/*
513 * Simulate an error-response from a card.
514 *
515 * Parameter:
516 * card = pointer to card struct.
517 */
518static void
Joe Perches475be4d2012-02-19 19:52:38 -0800519isdnloop_fake_err(isdnloop_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
Dan Carpenter75634872014-04-08 12:23:09 +0300521 char buf[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Dan Carpenter75634872014-04-08 12:23:09 +0300523 snprintf(buf, sizeof(buf), "E%s", card->omsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 isdnloop_fake(card, buf, -1);
525 isdnloop_fake(card, "NAK", -1);
526}
527
528static u_char ctable_eu[] =
529{0x00, 0x11, 0x01, 0x12};
530static u_char ctable_1t[] =
531{0x00, 0x3b, 0x01, 0x3a};
532
533/*
534 * Assemble a simplified cause message depending on the
535 * D-channel protocol used.
536 *
537 * Parameter:
538 * card = pointer to card struct.
539 * loc = location: 0 = local, 1 = remote.
540 * cau = cause: 1 = busy, 2 = nonexistent callerid, 3 = no user responding.
541 * Return:
542 * Pointer to buffer containing the assembled message.
543 */
544static char *
Joe Perches475be4d2012-02-19 19:52:38 -0800545isdnloop_unicause(isdnloop_card *card, int loc, int cau)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 static char buf[6];
548
549 switch (card->ptype) {
Joe Perches475be4d2012-02-19 19:52:38 -0800550 case ISDN_PTYPE_EURO:
551 sprintf(buf, "E%02X%02X", (loc) ? 4 : 2, ctable_eu[cau]);
552 break;
553 case ISDN_PTYPE_1TR6:
554 sprintf(buf, "%02X44", ctable_1t[cau]);
555 break;
556 default:
557 return ("0000");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
559 return (buf);
560}
561
562/*
563 * Release a virtual connection. Called from timer interrupt, when
564 * called party did not respond.
565 *
566 * Parameter:
567 * card = pointer to card struct.
568 * ch = channel (0-based)
569 */
570static void
Joe Perches475be4d2012-02-19 19:52:38 -0800571isdnloop_atimeout(isdnloop_card *card, int ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
573 unsigned long flags;
574 char buf[60];
575
Amol Lad078d3962006-10-17 00:10:37 -0700576 spin_lock_irqsave(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 if (card->rcard) {
578 isdnloop_fake(card->rcard[ch], "DDIS_I", card->rch[ch] + 1);
579 card->rcard[ch]->rcard[card->rch[ch]] = NULL;
580 card->rcard[ch] = NULL;
581 }
582 isdnloop_fake(card, "DDIS_I", ch + 1);
583 /* No user responding */
584 sprintf(buf, "CAU%s", isdnloop_unicause(card, 1, 3));
585 isdnloop_fake(card, buf, ch + 1);
Amol Lad078d3962006-10-17 00:10:37 -0700586 spin_unlock_irqrestore(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587}
588
589/*
590 * Wrapper for isdnloop_atimeout().
591 */
592static void
593isdnloop_atimeout0(unsigned long data)
594{
595 isdnloop_card *card = (isdnloop_card *) data;
596 isdnloop_atimeout(card, 0);
597}
598
599/*
600 * Wrapper for isdnloop_atimeout().
601 */
602static void
603isdnloop_atimeout1(unsigned long data)
604{
605 isdnloop_card *card = (isdnloop_card *) data;
606 isdnloop_atimeout(card, 1);
607}
608
609/*
610 * Install a watchdog for a user, not responding.
611 *
612 * Parameter:
613 * card = pointer to card struct.
614 * ch = channel to watch for.
615 */
616static void
Joe Perches475be4d2012-02-19 19:52:38 -0800617isdnloop_start_ctimer(isdnloop_card *card, int ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
619 unsigned long flags;
620
Amol Lad078d3962006-10-17 00:10:37 -0700621 spin_lock_irqsave(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 init_timer(&card->c_timer[ch]);
623 card->c_timer[ch].expires = jiffies + ISDNLOOP_TIMER_ALERTWAIT;
624 if (ch)
625 card->c_timer[ch].function = isdnloop_atimeout1;
626 else
627 card->c_timer[ch].function = isdnloop_atimeout0;
628 card->c_timer[ch].data = (unsigned long) card;
629 add_timer(&card->c_timer[ch]);
Amol Lad078d3962006-10-17 00:10:37 -0700630 spin_unlock_irqrestore(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631}
632
633/*
634 * Kill a pending channel watchdog.
635 *
636 * Parameter:
637 * card = pointer to card struct.
638 * ch = channel (0-based).
639 */
640static void
Joe Perches475be4d2012-02-19 19:52:38 -0800641isdnloop_kill_ctimer(isdnloop_card *card, int ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
643 unsigned long flags;
644
Amol Lad078d3962006-10-17 00:10:37 -0700645 spin_lock_irqsave(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 del_timer(&card->c_timer[ch]);
Amol Lad078d3962006-10-17 00:10:37 -0700647 spin_unlock_irqrestore(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648}
649
650static u_char si2bit[] =
651{0, 1, 0, 0, 0, 2, 0, 4, 0, 0};
652static u_char bit2si[] =
653{1, 5, 7};
654
655/*
656 * Try finding a listener for an outgoing call.
657 *
658 * Parameter:
659 * card = pointer to calling card.
660 * p = pointer to ICN-type setup-string.
661 * lch = channel of calling card.
662 * cmd = pointer to struct to be filled when parsing setup.
663 * Return:
664 * 0 = found match, alerting should happen.
665 * 1 = found matching number but it is busy.
666 * 2 = no matching listener.
667 * 3 = found matching number but SI does not match.
668 */
669static int
Joe Perches475be4d2012-02-19 19:52:38 -0800670isdnloop_try_call(isdnloop_card *card, char *p, int lch, isdn_ctrl *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
672 isdnloop_card *cc = cards;
673 unsigned long flags;
674 int ch;
675 int num_match;
676 int i;
677 char *e;
678 char nbuf[32];
679
680 isdnloop_parse_setup(p, cmd);
681 while (cc) {
682 for (ch = 0; ch < 2; ch++) {
683 /* Exclude ourself */
684 if ((cc == card) && (ch == lch))
685 continue;
686 num_match = 0;
687 switch (cc->ptype) {
Joe Perches475be4d2012-02-19 19:52:38 -0800688 case ISDN_PTYPE_EURO:
689 for (i = 0; i < 3; i++)
690 if (!(strcmp(cc->s0num[i], cmd->parm.setup.phone)))
691 num_match = 1;
692 break;
693 case ISDN_PTYPE_1TR6:
694 e = cc->eazlist[ch];
695 while (*e) {
696 sprintf(nbuf, "%s%c", cc->s0num[0], *e);
697 if (!(strcmp(nbuf, cmd->parm.setup.phone)))
698 num_match = 1;
699 e++;
700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
702 if (num_match) {
Amol Lad078d3962006-10-17 00:10:37 -0700703 spin_lock_irqsave(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 /* channel idle? */
705 if (!(cc->rcard[ch])) {
706 /* Check SI */
707 if (!(si2bit[cmd->parm.setup.si1] & cc->sil[ch])) {
Amol Lad078d3962006-10-17 00:10:37 -0700708 spin_unlock_irqrestore(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 return 3;
710 }
711 /* ch is idle, si and number matches */
712 cc->rcard[ch] = card;
713 cc->rch[ch] = lch;
714 card->rcard[lch] = cc;
715 card->rch[lch] = ch;
Amol Lad078d3962006-10-17 00:10:37 -0700716 spin_unlock_irqrestore(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 return 0;
718 } else {
Amol Lad078d3962006-10-17 00:10:37 -0700719 spin_unlock_irqrestore(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 /* num matches, but busy */
721 if (ch == 1)
722 return 1;
723 }
724 }
725 }
726 cc = cc->next;
727 }
728 return 2;
729}
730
731/*
732 * Depending on D-channel protocol and caller/called, modify
733 * phone number.
734 *
735 * Parameter:
736 * card = pointer to card struct.
737 * phone = pointer phone number.
738 * caller = flag: 1 = caller, 0 = called.
739 * Return:
740 * pointer to new phone number.
741 */
742static char *
Joe Perches475be4d2012-02-19 19:52:38 -0800743isdnloop_vstphone(isdnloop_card *card, char *phone, int caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744{
745 int i;
746 static char nphone[30];
747
748 if (!card) {
749 printk("BUG!!!\n");
750 return "";
751 }
752 switch (card->ptype) {
Joe Perches475be4d2012-02-19 19:52:38 -0800753 case ISDN_PTYPE_EURO:
754 if (caller) {
755 for (i = 0; i < 2; i++)
756 if (!(strcmp(card->s0num[i], phone)))
757 return (phone);
758 return (card->s0num[0]);
759 }
760 return (phone);
761 break;
762 case ISDN_PTYPE_1TR6:
763 if (caller) {
764 sprintf(nphone, "%s%c", card->s0num[0], phone[0]);
765 return (nphone);
766 } else
767 return (&phone[strlen(phone) - 1]);
768 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
770 return "";
771}
772
773/*
774 * Parse an ICN-type command string sent to the 'card'.
775 * Perform misc. actions depending on the command.
776 *
777 * Parameter:
778 * card = pointer to card struct.
779 */
780static void
Joe Perches475be4d2012-02-19 19:52:38 -0800781isdnloop_parse_cmd(isdnloop_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
783 char *p = card->omsg;
784 isdn_ctrl cmd;
785 char buf[60];
786 isdnloop_stat *s = isdnloop_cmd_table;
787 int action = -1;
788 int i;
789 int ch;
790
791 if ((card->omsg[0] != '0') && (card->omsg[2] != ';')) {
792 isdnloop_fake_err(card);
793 return;
794 }
795 ch = card->omsg[1] - '0';
796 if ((ch < 0) || (ch > 2)) {
797 isdnloop_fake_err(card);
798 return;
799 }
800 p += 3;
801 while (s->statstr) {
802 if (!strncmp(p, s->statstr, strlen(s->statstr))) {
803 action = s->action;
804 if (s->command && (ch != 0)) {
805 isdnloop_fake_err(card);
806 return;
807 }
808 break;
809 }
810 s++;
811 }
812 if (action == -1)
813 return;
814 switch (action) {
Joe Perches475be4d2012-02-19 19:52:38 -0800815 case 1:
816 /* 0x;BCON_R */
817 if (card->rcard[ch - 1]) {
818 isdnloop_fake(card->rcard[ch - 1], "BCON_I",
819 card->rch[ch - 1] + 1);
820 isdnloop_fake(card, "BCON_C", ch);
821 }
822 break;
823 case 17:
824 /* 0x;BCON_I */
825 if (card->rcard[ch - 1]) {
826 isdnloop_fake(card->rcard[ch - 1], "BCON_C",
827 card->rch[ch - 1] + 1);
828 }
829 break;
830 case 2:
831 /* 0x;BDIS_R */
832 isdnloop_fake(card, "BDIS_C", ch);
833 if (card->rcard[ch - 1]) {
834 isdnloop_fake(card->rcard[ch - 1], "BDIS_I",
835 card->rch[ch - 1] + 1);
836 }
837 break;
838 case 16:
839 /* 0x;DCON_R */
840 isdnloop_kill_ctimer(card, ch - 1);
841 if (card->rcard[ch - 1]) {
842 isdnloop_kill_ctimer(card->rcard[ch - 1], card->rch[ch - 1]);
843 isdnloop_fake(card->rcard[ch - 1], "DCON_C",
844 card->rch[ch - 1] + 1);
845 isdnloop_fake(card, "DCON_C", ch);
846 }
847 break;
848 case 3:
849 /* 0x;DDIS_R */
850 isdnloop_kill_ctimer(card, ch - 1);
851 if (card->rcard[ch - 1]) {
852 isdnloop_kill_ctimer(card->rcard[ch - 1], card->rch[ch - 1]);
853 isdnloop_fake(card->rcard[ch - 1], "DDIS_I",
854 card->rch[ch - 1] + 1);
855 card->rcard[ch - 1] = NULL;
856 }
857 isdnloop_fake(card, "DDIS_C", ch);
858 break;
859 case 4:
860 /* 0x;DSCA_Rdd,yy,zz,oo */
861 if (card->ptype != ISDN_PTYPE_1TR6) {
862 isdnloop_fake_err(card);
863 return;
864 }
865 /* Fall through */
866 case 5:
867 /* 0x;DCAL_Rdd,yy,zz,oo */
868 p += 6;
869 switch (isdnloop_try_call(card, p, ch - 1, &cmd)) {
870 case 0:
871 /* Alerting */
872 sprintf(buf, "D%s_I%s,%02d,%02d,%s",
873 (action == 4) ? "SCA" : "CAL",
874 isdnloop_vstphone(card, cmd.parm.setup.eazmsn, 1),
875 cmd.parm.setup.si1,
876 cmd.parm.setup.si2,
877 isdnloop_vstphone(card->rcard[ch - 1],
878 cmd.parm.setup.phone, 0));
879 isdnloop_fake(card->rcard[ch - 1], buf, card->rch[ch - 1] + 1);
880 /* Fall through */
881 case 3:
882 /* si1 does not match, don't alert but start timer */
883 isdnloop_start_ctimer(card, ch - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 break;
Joe Perches475be4d2012-02-19 19:52:38 -0800885 case 1:
886 /* Remote busy */
887 isdnloop_fake(card, "DDIS_I", ch);
888 sprintf(buf, "CAU%s", isdnloop_unicause(card, 1, 1));
889 isdnloop_fake(card, buf, ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 break;
891 case 2:
Joe Perches475be4d2012-02-19 19:52:38 -0800892 /* No such user */
893 isdnloop_fake(card, "DDIS_I", ch);
894 sprintf(buf, "CAU%s", isdnloop_unicause(card, 1, 2));
895 isdnloop_fake(card, buf, ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 break;
Joe Perches475be4d2012-02-19 19:52:38 -0800897 }
898 break;
899 case 6:
900 /* 0x;EAZC */
901 card->eazlist[ch - 1][0] = '\0';
902 break;
903 case 7:
904 /* 0x;EAZ */
905 p += 3;
Dan Carpenter75634872014-04-08 12:23:09 +0300906 if (strlen(p) >= sizeof(card->eazlist[0]))
907 break;
Joe Perches475be4d2012-02-19 19:52:38 -0800908 strcpy(card->eazlist[ch - 1], p);
909 break;
910 case 8:
911 /* 0x;SEEAZ */
912 sprintf(buf, "EAZ-LIST: %s", card->eazlist[ch - 1]);
913 isdnloop_fake(card, buf, ch + 1);
914 break;
915 case 9:
916 /* 0x;MSN */
917 break;
918 case 10:
919 /* 0x;MSNALL */
920 break;
921 case 11:
922 /* 0x;SETSIL */
923 p += 6;
924 i = 0;
925 while (strchr("0157", *p)) {
926 if (i)
927 card->sil[ch - 1] |= si2bit[*p - '0'];
928 i = (*p++ == '0');
929 }
930 if (*p)
931 isdnloop_fake_err(card);
932 break;
933 case 12:
934 /* 0x;SEESIL */
935 sprintf(buf, "SIN-LIST: ");
936 p = buf + 10;
937 for (i = 0; i < 3; i++)
938 if (card->sil[ch - 1] & (1 << i))
939 p += sprintf(p, "%02d", bit2si[i]);
940 isdnloop_fake(card, buf, ch + 1);
941 break;
942 case 13:
943 /* 0x;SILC */
944 card->sil[ch - 1] = 0;
945 break;
946 case 14:
947 /* 00;FV2ON */
948 break;
949 case 15:
950 /* 00;FV2OFF */
951 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 }
953}
954
955/*
956 * Put command-strings into the of the 'card'. In reality, execute them
957 * right in place by calling isdnloop_parse_cmd(). Also copy every
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300958 * command to the read message ringbuffer, preceding it with a '>'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 * These mesagges can be read at /dev/isdnctrl.
960 *
961 * Parameter:
962 * buf = pointer to command buffer.
963 * len = length of buffer data.
964 * user = flag: 1 = called form userlevel, 0 called from kernel.
965 * card = pointer to card struct.
966 * Return:
967 * number of bytes transferred (currently always equals len).
968 */
969static int
Joe Perches475be4d2012-02-19 19:52:38 -0800970isdnloop_writecmd(const u_char *buf, int len, int user, isdnloop_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
972 int xcount = 0;
973 int ocount = 1;
974 isdn_ctrl cmd;
975
976 while (len) {
977 int count = len;
978 u_char *p;
979 u_char msg[0x100];
980
981 if (count > 255)
982 count = 255;
983 if (user) {
984 if (copy_from_user(msg, buf, count))
985 return -EFAULT;
986 } else
987 memcpy(msg, buf, count);
988 isdnloop_putmsg(card, '>');
989 for (p = msg; count > 0; count--, p++) {
990 len--;
991 xcount++;
992 isdnloop_putmsg(card, *p);
993 card->omsg[card->optr] = *p;
994 if (*p == '\n') {
995 card->omsg[card->optr] = '\0';
996 card->optr = 0;
997 isdnloop_parse_cmd(card);
998 if (len) {
999 isdnloop_putmsg(card, '>');
1000 ocount++;
1001 }
1002 } else {
1003 if (card->optr < 59)
1004 card->optr++;
1005 }
1006 ocount++;
1007 }
1008 }
1009 cmd.command = ISDN_STAT_STAVAIL;
1010 cmd.driver = card->myid;
1011 cmd.arg = ocount;
1012 card->interface.statcallb(&cmd);
1013 return xcount;
1014}
1015
1016/*
1017 * Delete card's pending timers, send STOP to linklevel
1018 */
1019static void
Joe Perches475be4d2012-02-19 19:52:38 -08001020isdnloop_stopcard(isdnloop_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
1022 unsigned long flags;
1023 isdn_ctrl cmd;
1024
Amol Lad078d3962006-10-17 00:10:37 -07001025 spin_lock_irqsave(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 if (card->flags & ISDNLOOP_FLAGS_RUNNING) {
1027 card->flags &= ~ISDNLOOP_FLAGS_RUNNING;
1028 del_timer(&card->st_timer);
1029 del_timer(&card->rb_timer);
1030 del_timer(&card->c_timer[0]);
1031 del_timer(&card->c_timer[1]);
1032 cmd.command = ISDN_STAT_STOP;
1033 cmd.driver = card->myid;
1034 card->interface.statcallb(&cmd);
1035 }
Amol Lad078d3962006-10-17 00:10:37 -07001036 spin_unlock_irqrestore(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037}
1038
1039/*
1040 * Stop all cards before unload.
1041 */
1042static void
1043isdnloop_stopallcards(void)
1044{
1045 isdnloop_card *p = cards;
1046
1047 while (p) {
1048 isdnloop_stopcard(p);
1049 p = p->next;
1050 }
1051}
1052
1053/*
1054 * Start a 'card'. Simulate card's boot message and set the phone
1055 * number(s) of the virtual 'S0-Interface'. Install D-channel
1056 * poll timer.
1057 *
1058 * Parameter:
1059 * card = pointer to card struct.
1060 * sdefp = pointer to struct holding ioctl parameters.
1061 * Return:
1062 * 0 on success, -E??? otherwise.
1063 */
1064static int
Joe Perches475be4d2012-02-19 19:52:38 -08001065isdnloop_start(isdnloop_card *card, isdnloop_sdef *sdefp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
1067 unsigned long flags;
1068 isdnloop_sdef sdef;
1069 int i;
1070
1071 if (card->flags & ISDNLOOP_FLAGS_RUNNING)
1072 return -EBUSY;
1073 if (copy_from_user((char *) &sdef, (char *) sdefp, sizeof(sdef)))
1074 return -EFAULT;
YOSHIFUJI Hideaki / 吉藤英明77bc6be2014-04-02 12:48:42 +09001075
1076 for (i = 0; i < 3; i++) {
1077 if (!memchr(sdef.num[i], 0, sizeof(sdef.num[i])))
1078 return -EINVAL;
1079 }
1080
Amol Lad078d3962006-10-17 00:10:37 -07001081 spin_lock_irqsave(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 switch (sdef.ptype) {
Joe Perches475be4d2012-02-19 19:52:38 -08001083 case ISDN_PTYPE_EURO:
1084 if (isdnloop_fake(card, "DRV1.23EC-Q.931-CAPI-CNS-BASIS-20.02.96",
1085 -1)) {
Amol Lad078d3962006-10-17 00:10:37 -07001086 spin_unlock_irqrestore(&card->isdnloop_lock, flags);
Joe Perches475be4d2012-02-19 19:52:38 -08001087 return -ENOMEM;
1088 }
1089 card->sil[0] = card->sil[1] = 4;
1090 if (isdnloop_fake(card, "TEI OK", 0)) {
1091 spin_unlock_irqrestore(&card->isdnloop_lock, flags);
1092 return -ENOMEM;
1093 }
Dan Carpenterf9a23c82013-11-14 11:21:10 +03001094 for (i = 0; i < 3; i++) {
1095 strlcpy(card->s0num[i], sdef.num[i],
1096 sizeof(card->s0num[0]));
1097 }
Joe Perches475be4d2012-02-19 19:52:38 -08001098 break;
1099 case ISDN_PTYPE_1TR6:
1100 if (isdnloop_fake(card, "DRV1.04TC-1TR6-CAPI-CNS-BASIS-29.11.95",
1101 -1)) {
1102 spin_unlock_irqrestore(&card->isdnloop_lock, flags);
1103 return -ENOMEM;
1104 }
1105 card->sil[0] = card->sil[1] = 4;
1106 if (isdnloop_fake(card, "TEI OK", 0)) {
1107 spin_unlock_irqrestore(&card->isdnloop_lock, flags);
1108 return -ENOMEM;
1109 }
Dan Carpenterf9a23c82013-11-14 11:21:10 +03001110 strlcpy(card->s0num[0], sdef.num[0], sizeof(card->s0num[0]));
Joe Perches475be4d2012-02-19 19:52:38 -08001111 card->s0num[1][0] = '\0';
1112 card->s0num[2][0] = '\0';
1113 break;
1114 default:
1115 spin_unlock_irqrestore(&card->isdnloop_lock, flags);
1116 printk(KERN_WARNING "isdnloop: Illegal D-channel protocol %d\n",
1117 sdef.ptype);
1118 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 }
1120 init_timer(&card->st_timer);
1121 card->st_timer.expires = jiffies + ISDNLOOP_TIMER_DCREAD;
1122 card->st_timer.function = isdnloop_polldchan;
1123 card->st_timer.data = (unsigned long) card;
1124 add_timer(&card->st_timer);
1125 card->flags |= ISDNLOOP_FLAGS_RUNNING;
Amol Lad078d3962006-10-17 00:10:37 -07001126 spin_unlock_irqrestore(&card->isdnloop_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 return 0;
1128}
1129
1130/*
1131 * Main handler for commands sent by linklevel.
1132 */
1133static int
Joe Perches475be4d2012-02-19 19:52:38 -08001134isdnloop_command(isdn_ctrl *c, isdnloop_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
1136 ulong a;
1137 int i;
Dan Carpenter75634872014-04-08 12:23:09 +03001138 char cbuf[80];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 isdn_ctrl cmd;
1140 isdnloop_cdef cdef;
1141
1142 switch (c->command) {
Joe Perches475be4d2012-02-19 19:52:38 -08001143 case ISDN_CMD_IOCTL:
1144 memcpy(&a, c->parm.num, sizeof(ulong));
1145 switch (c->arg) {
1146 case ISDNLOOP_IOCTL_DEBUGVAR:
1147 return (ulong) card;
1148 case ISDNLOOP_IOCTL_STARTUP:
1149 if (!access_ok(VERIFY_READ, (void *) a, sizeof(isdnloop_sdef)))
1150 return -EFAULT;
1151 return (isdnloop_start(card, (isdnloop_sdef *) a));
1152 break;
1153 case ISDNLOOP_IOCTL_ADDCARD:
1154 if (copy_from_user((char *)&cdef,
1155 (char *)a,
1156 sizeof(cdef)))
1157 return -EFAULT;
1158 return (isdnloop_addcard(cdef.id1));
1159 break;
1160 case ISDNLOOP_IOCTL_LEASEDCFG:
1161 if (a) {
1162 if (!card->leased) {
1163 card->leased = 1;
1164 while (card->ptype == ISDN_PTYPE_UNKNOWN)
1165 schedule_timeout_interruptible(10);
1166 schedule_timeout_interruptible(10);
1167 sprintf(cbuf, "00;FV2ON\n01;EAZ1\n02;EAZ2\n");
1168 i = isdnloop_writecmd(cbuf, strlen(cbuf), 0, card);
1169 printk(KERN_INFO
1170 "isdnloop: (%s) Leased-line mode enabled\n",
1171 CID);
1172 cmd.command = ISDN_STAT_RUN;
1173 cmd.driver = card->myid;
1174 cmd.arg = 0;
1175 card->interface.statcallb(&cmd);
1176 }
1177 } else {
1178 if (card->leased) {
1179 card->leased = 0;
1180 sprintf(cbuf, "00;FV2OFF\n");
1181 i = isdnloop_writecmd(cbuf, strlen(cbuf), 0, card);
1182 printk(KERN_INFO
1183 "isdnloop: (%s) Leased-line mode disabled\n",
1184 CID);
1185 cmd.command = ISDN_STAT_RUN;
1186 cmd.driver = card->myid;
1187 cmd.arg = 0;
1188 card->interface.statcallb(&cmd);
1189 }
1190 }
1191 return 0;
1192 default:
1193 return -EINVAL;
1194 }
1195 break;
1196 case ISDN_CMD_DIAL:
1197 if (!(card->flags & ISDNLOOP_FLAGS_RUNNING))
1198 return -ENODEV;
1199 if (card->leased)
1200 break;
1201 if ((c->arg & 255) < ISDNLOOP_BCH) {
1202 char *p;
Joe Perches475be4d2012-02-19 19:52:38 -08001203 char dcode[4];
1204
1205 a = c->arg;
1206 p = c->parm.setup.phone;
1207 if (*p == 's' || *p == 'S') {
1208 /* Dial for SPV */
1209 p++;
1210 strcpy(dcode, "SCA");
1211 } else
1212 /* Normal Dial */
1213 strcpy(dcode, "CAL");
Dan Carpenter75634872014-04-08 12:23:09 +03001214 snprintf(cbuf, sizeof(cbuf),
1215 "%02d;D%s_R%s,%02d,%02d,%s\n", (int) (a + 1),
1216 dcode, p, c->parm.setup.si1,
1217 c->parm.setup.si2, c->parm.setup.eazmsn);
Joe Perches475be4d2012-02-19 19:52:38 -08001218 i = isdnloop_writecmd(cbuf, strlen(cbuf), 0, card);
1219 }
1220 break;
1221 case ISDN_CMD_ACCEPTD:
1222 if (!(card->flags & ISDNLOOP_FLAGS_RUNNING))
1223 return -ENODEV;
1224 if (c->arg < ISDNLOOP_BCH) {
1225 a = c->arg + 1;
1226 cbuf[0] = 0;
1227 switch (card->l2_proto[a - 1]) {
1228 case ISDN_PROTO_L2_X75I:
1229 sprintf(cbuf, "%02d;BX75\n", (int) a);
1230 break;
1231#ifdef CONFIG_ISDN_X25
1232 case ISDN_PROTO_L2_X25DTE:
1233 sprintf(cbuf, "%02d;BX2T\n", (int) a);
1234 break;
1235 case ISDN_PROTO_L2_X25DCE:
1236 sprintf(cbuf, "%02d;BX2C\n", (int) a);
1237 break;
1238#endif
1239 case ISDN_PROTO_L2_HDLC:
1240 sprintf(cbuf, "%02d;BTRA\n", (int) a);
1241 break;
1242 }
1243 if (strlen(cbuf))
1244 i = isdnloop_writecmd(cbuf, strlen(cbuf), 0, card);
1245 sprintf(cbuf, "%02d;DCON_R\n", (int) a);
1246 i = isdnloop_writecmd(cbuf, strlen(cbuf), 0, card);
1247 }
1248 break;
1249 case ISDN_CMD_ACCEPTB:
1250 if (!(card->flags & ISDNLOOP_FLAGS_RUNNING))
1251 return -ENODEV;
1252 if (c->arg < ISDNLOOP_BCH) {
1253 a = c->arg + 1;
1254 switch (card->l2_proto[a - 1]) {
1255 case ISDN_PROTO_L2_X75I:
1256 sprintf(cbuf, "%02d;BCON_R,BX75\n", (int) a);
1257 break;
1258#ifdef CONFIG_ISDN_X25
1259 case ISDN_PROTO_L2_X25DTE:
1260 sprintf(cbuf, "%02d;BCON_R,BX2T\n", (int) a);
1261 break;
1262 case ISDN_PROTO_L2_X25DCE:
1263 sprintf(cbuf, "%02d;BCON_R,BX2C\n", (int) a);
1264 break;
1265#endif
1266 case ISDN_PROTO_L2_HDLC:
1267 sprintf(cbuf, "%02d;BCON_R,BTRA\n", (int) a);
1268 break;
1269 default:
1270 sprintf(cbuf, "%02d;BCON_R\n", (int) a);
1271 }
1272 printk(KERN_DEBUG "isdnloop writecmd '%s'\n", cbuf);
1273 i = isdnloop_writecmd(cbuf, strlen(cbuf), 0, card);
1274 break;
1275 case ISDN_CMD_HANGUP:
1276 if (!(card->flags & ISDNLOOP_FLAGS_RUNNING))
1277 return -ENODEV;
1278 if (c->arg < ISDNLOOP_BCH) {
1279 a = c->arg + 1;
1280 sprintf(cbuf, "%02d;BDIS_R\n%02d;DDIS_R\n", (int) a, (int) a);
1281 i = isdnloop_writecmd(cbuf, strlen(cbuf), 0, card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 }
1283 break;
Joe Perches475be4d2012-02-19 19:52:38 -08001284 case ISDN_CMD_SETEAZ:
Alexey Dobriyaneaa0ff12008-02-06 01:36:06 -08001285 if (!(card->flags & ISDNLOOP_FLAGS_RUNNING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 return -ENODEV;
1287 if (card->leased)
1288 break;
Joe Perches475be4d2012-02-19 19:52:38 -08001289 if (c->arg < ISDNLOOP_BCH) {
1290 a = c->arg + 1;
1291 if (card->ptype == ISDN_PTYPE_EURO) {
1292 sprintf(cbuf, "%02d;MS%s%s\n", (int) a,
1293 c->parm.num[0] ? "N" : "ALL", c->parm.num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 } else
Joe Perches475be4d2012-02-19 19:52:38 -08001295 sprintf(cbuf, "%02d;EAZ%s\n", (int) a,
1296 c->parm.num[0] ? c->parm.num : (u_char *) "0123456789");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 i = isdnloop_writecmd(cbuf, strlen(cbuf), 0, card);
1298 }
1299 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 case ISDN_CMD_CLREAZ:
Joe Perches475be4d2012-02-19 19:52:38 -08001301 if (!(card->flags & ISDNLOOP_FLAGS_RUNNING))
1302 return -ENODEV;
1303 if (card->leased)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 break;
Joe Perches475be4d2012-02-19 19:52:38 -08001305 if (c->arg < ISDNLOOP_BCH) {
1306 a = c->arg + 1;
1307 if (card->ptype == ISDN_PTYPE_EURO)
1308 sprintf(cbuf, "%02d;MSNC\n", (int) a);
1309 else
1310 sprintf(cbuf, "%02d;EAZC\n", (int) a);
1311 i = isdnloop_writecmd(cbuf, strlen(cbuf), 0, card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 }
Joe Perches475be4d2012-02-19 19:52:38 -08001313 break;
1314 case ISDN_CMD_SETL2:
1315 if (!(card->flags & ISDNLOOP_FLAGS_RUNNING))
1316 return -ENODEV;
1317 if ((c->arg & 255) < ISDNLOOP_BCH) {
1318 a = c->arg;
1319 switch (a >> 8) {
1320 case ISDN_PROTO_L2_X75I:
1321 sprintf(cbuf, "%02d;BX75\n", (int) (a & 255) + 1);
1322 break;
1323#ifdef CONFIG_ISDN_X25
1324 case ISDN_PROTO_L2_X25DTE:
1325 sprintf(cbuf, "%02d;BX2T\n", (int) (a & 255) + 1);
1326 break;
1327 case ISDN_PROTO_L2_X25DCE:
1328 sprintf(cbuf, "%02d;BX2C\n", (int) (a & 255) + 1);
1329 break;
1330#endif
1331 case ISDN_PROTO_L2_HDLC:
1332 sprintf(cbuf, "%02d;BTRA\n", (int) (a & 255) + 1);
1333 break;
1334 case ISDN_PROTO_L2_TRANS:
1335 sprintf(cbuf, "%02d;BTRA\n", (int) (a & 255) + 1);
1336 break;
1337 default:
1338 return -EINVAL;
1339 }
1340 i = isdnloop_writecmd(cbuf, strlen(cbuf), 0, card);
1341 card->l2_proto[a & 255] = (a >> 8);
1342 }
1343 break;
1344 case ISDN_CMD_SETL3:
1345 if (!(card->flags & ISDNLOOP_FLAGS_RUNNING))
1346 return -ENODEV;
1347 return 0;
1348 default:
1349 return -EINVAL;
1350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 }
1352 return 0;
1353}
1354
1355/*
1356 * Find card with given driverId
1357 */
1358static inline isdnloop_card *
1359isdnloop_findcard(int driverid)
1360{
1361 isdnloop_card *p = cards;
1362
1363 while (p) {
1364 if (p->myid == driverid)
1365 return p;
1366 p = p->next;
1367 }
1368 return (isdnloop_card *) 0;
1369}
1370
1371/*
1372 * Wrapper functions for interface to linklevel
1373 */
1374static int
Joe Perches475be4d2012-02-19 19:52:38 -08001375if_command(isdn_ctrl *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376{
1377 isdnloop_card *card = isdnloop_findcard(c->driver);
1378
1379 if (card)
1380 return (isdnloop_command(c, card));
1381 printk(KERN_ERR
1382 "isdnloop: if_command called with invalid driverId!\n");
1383 return -ENODEV;
1384}
1385
1386static int
1387if_writecmd(const u_char __user *buf, int len, int id, int channel)
1388{
1389 isdnloop_card *card = isdnloop_findcard(id);
1390
1391 if (card) {
Julia Lawallae91d602008-03-04 14:29:18 -08001392 if (!(card->flags & ISDNLOOP_FLAGS_RUNNING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 return -ENODEV;
1394 return (isdnloop_writecmd(buf, len, 1, card));
1395 }
1396 printk(KERN_ERR
1397 "isdnloop: if_writecmd called with invalid driverId!\n");
1398 return -ENODEV;
1399}
1400
1401static int
1402if_readstatus(u_char __user *buf, int len, int id, int channel)
1403{
1404 isdnloop_card *card = isdnloop_findcard(id);
1405
1406 if (card) {
Alexey Dobriyaneaa0ff12008-02-06 01:36:06 -08001407 if (!(card->flags & ISDNLOOP_FLAGS_RUNNING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 return -ENODEV;
1409 return (isdnloop_readstatus(buf, len, card));
1410 }
1411 printk(KERN_ERR
1412 "isdnloop: if_readstatus called with invalid driverId!\n");
1413 return -ENODEV;
1414}
1415
1416static int
1417if_sendbuf(int id, int channel, int ack, struct sk_buff *skb)
1418{
1419 isdnloop_card *card = isdnloop_findcard(id);
1420
1421 if (card) {
Alexey Dobriyaneaa0ff12008-02-06 01:36:06 -08001422 if (!(card->flags & ISDNLOOP_FLAGS_RUNNING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 return -ENODEV;
1424 /* ack request stored in skb scratch area */
1425 *(skb->head) = ack;
1426 return (isdnloop_sendbuf(channel, skb, card));
1427 }
1428 printk(KERN_ERR
1429 "isdnloop: if_sendbuf called with invalid driverId!\n");
1430 return -ENODEV;
1431}
1432
1433/*
1434 * Allocate a new card-struct, initialize it
1435 * link it into cards-list and register it at linklevel.
1436 */
1437static isdnloop_card *
1438isdnloop_initcard(char *id)
1439{
1440 isdnloop_card *card;
1441 int i;
1442
Burman Yan41f96932006-12-08 02:39:35 -08001443 if (!(card = kzalloc(sizeof(isdnloop_card), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 printk(KERN_WARNING
Joe Perches475be4d2012-02-19 19:52:38 -08001445 "isdnloop: (%s) Could not allocate card-struct.\n", id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 return (isdnloop_card *) 0;
1447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 card->interface.owner = THIS_MODULE;
1449 card->interface.channels = ISDNLOOP_BCH;
Joe Perches475be4d2012-02-19 19:52:38 -08001450 card->interface.hl_hdrlen = 1; /* scratch area for storing ack flag*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 card->interface.maxbufsize = 4000;
1452 card->interface.command = if_command;
1453 card->interface.writebuf_skb = if_sendbuf;
1454 card->interface.writecmd = if_writecmd;
1455 card->interface.readstat = if_readstatus;
1456 card->interface.features = ISDN_FEATURE_L2_X75I |
1457#ifdef CONFIG_ISDN_X25
Joe Perches475be4d2012-02-19 19:52:38 -08001458 ISDN_FEATURE_L2_X25DTE |
1459 ISDN_FEATURE_L2_X25DCE |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460#endif
Joe Perches475be4d2012-02-19 19:52:38 -08001461 ISDN_FEATURE_L2_HDLC |
1462 ISDN_FEATURE_L3_TRANS |
1463 ISDN_FEATURE_P_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 card->ptype = ISDN_PTYPE_UNKNOWN;
1465 strlcpy(card->interface.id, id, sizeof(card->interface.id));
1466 card->msg_buf_write = card->msg_buf;
1467 card->msg_buf_read = card->msg_buf;
1468 card->msg_buf_end = &card->msg_buf[sizeof(card->msg_buf) - 1];
1469 for (i = 0; i < ISDNLOOP_BCH; i++) {
1470 card->l2_proto[i] = ISDN_PROTO_L2_X75I;
1471 skb_queue_head_init(&card->bqueue[i]);
1472 }
1473 skb_queue_head_init(&card->dqueue);
Thomas Gleixner2bd7e202007-05-08 00:32:45 -07001474 spin_lock_init(&card->isdnloop_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 card->next = cards;
1476 cards = card;
1477 if (!register_isdn(&card->interface)) {
1478 cards = cards->next;
1479 printk(KERN_WARNING
1480 "isdnloop: Unable to register %s\n", id);
1481 kfree(card);
1482 return (isdnloop_card *) 0;
1483 }
1484 card->myid = card->interface.channels;
1485 return card;
1486}
1487
1488static int
1489isdnloop_addcard(char *id1)
1490{
1491 isdnloop_card *card;
1492
1493 if (!(card = isdnloop_initcard(id1))) {
1494 return -EIO;
1495 }
1496 printk(KERN_INFO
1497 "isdnloop: (%s) virtual card added\n",
1498 card->interface.id);
1499 return 0;
1500}
1501
1502static int __init
1503isdnloop_init(void)
1504{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 if (isdnloop_id)
1506 return (isdnloop_addcard(isdnloop_id));
1507
1508 return 0;
1509}
1510
1511static void __exit
1512isdnloop_exit(void)
1513{
1514 isdn_ctrl cmd;
1515 isdnloop_card *card = cards;
1516 isdnloop_card *last;
1517 int i;
1518
1519 isdnloop_stopallcards();
1520 while (card) {
1521 cmd.command = ISDN_STAT_UNLOAD;
1522 cmd.driver = card->myid;
1523 card->interface.statcallb(&cmd);
1524 for (i = 0; i < ISDNLOOP_BCH; i++)
1525 isdnloop_free_queue(card, i);
1526 card = card->next;
1527 }
1528 card = cards;
1529 while (card) {
1530 last = card;
1531 skb_queue_purge(&card->dqueue);
1532 card = card->next;
1533 kfree(last);
1534 }
1535 printk(KERN_NOTICE "isdnloop-ISDN-driver unloaded\n");
1536}
1537
1538module_init(isdnloop_init);
1539module_exit(isdnloop_exit);