GNU Linux-libre 4.14.294-gnu1
[releases.git] / drivers / tty / n_gsm.c
1 /*
2  * n_gsm.c GSM 0710 tty multiplexor
3  * Copyright (c) 2009/10 Intel Corporation
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17  *
18  *      * THIS IS A DEVELOPMENT SNAPSHOT IT IS NOT A FINAL RELEASE *
19  *
20  * TO DO:
21  *      Mostly done:    ioctls for setting modes/timing
22  *      Partly done:    hooks so you can pull off frames to non tty devs
23  *      Restart DLCI 0 when it closes ?
24  *      Improve the tx engine
25  *      Resolve tx side locking by adding a queue_head and routing
26  *              all control traffic via it
27  *      General tidy/document
28  *      Review the locking/move to refcounts more (mux now moved to an
29  *              alloc/free model ready)
30  *      Use newest tty open/close port helpers and install hooks
31  *      What to do about power functions ?
32  *      Termios setting and negotiation
33  *      Do we need a 'which mux are you' ioctl to correlate mux and tty sets
34  *
35  */
36
37 #include <linux/types.h>
38 #include <linux/major.h>
39 #include <linux/errno.h>
40 #include <linux/signal.h>
41 #include <linux/fcntl.h>
42 #include <linux/sched/signal.h>
43 #include <linux/interrupt.h>
44 #include <linux/tty.h>
45 #include <linux/ctype.h>
46 #include <linux/mm.h>
47 #include <linux/string.h>
48 #include <linux/slab.h>
49 #include <linux/poll.h>
50 #include <linux/bitops.h>
51 #include <linux/file.h>
52 #include <linux/uaccess.h>
53 #include <linux/module.h>
54 #include <linux/timer.h>
55 #include <linux/tty_flip.h>
56 #include <linux/tty_driver.h>
57 #include <linux/serial.h>
58 #include <linux/kfifo.h>
59 #include <linux/skbuff.h>
60 #include <net/arp.h>
61 #include <linux/ip.h>
62 #include <linux/netdevice.h>
63 #include <linux/etherdevice.h>
64 #include <linux/gsmmux.h>
65
66 static int debug;
67 module_param(debug, int, 0600);
68
69 /* Defaults: these are from the specification */
70
71 #define T1      10              /* 100mS */
72 #define T2      34              /* 333mS */
73 #define N2      3               /* Retry 3 times */
74
75 /* Use long timers for testing at low speed with debug on */
76 #ifdef DEBUG_TIMING
77 #define T1      100
78 #define T2      200
79 #endif
80
81 /*
82  * Semi-arbitrary buffer size limits. 0710 is normally run with 32-64 byte
83  * limits so this is plenty
84  */
85 #define MAX_MRU 1500
86 #define MAX_MTU 1500
87 /* SOF, ADDR, CTRL, LEN1, LEN2, ..., FCS, EOF */
88 #define PROT_OVERHEAD 7
89 #define GSM_NET_TX_TIMEOUT (HZ*10)
90
91 /**
92  *      struct gsm_mux_net      -       network interface
93  *      @struct gsm_dlci* dlci
94  *
95  *      Created when net interface is initialized.
96  **/
97 struct gsm_mux_net {
98         struct kref ref;
99         struct gsm_dlci *dlci;
100 };
101
102 /*
103  *      Each block of data we have queued to go out is in the form of
104  *      a gsm_msg which holds everything we need in a link layer independent
105  *      format
106  */
107
108 struct gsm_msg {
109         struct list_head list;
110         u8 addr;                /* DLCI address + flags */
111         u8 ctrl;                /* Control byte + flags */
112         unsigned int len;       /* Length of data block (can be zero) */
113         unsigned char *data;    /* Points into buffer but not at the start */
114         unsigned char buffer[0];
115 };
116
117 /*
118  *      Each active data link has a gsm_dlci structure associated which ties
119  *      the link layer to an optional tty (if the tty side is open). To avoid
120  *      complexity right now these are only ever freed up when the mux is
121  *      shut down.
122  *
123  *      At the moment we don't free DLCI objects until the mux is torn down
124  *      this avoid object life time issues but might be worth review later.
125  */
126
127 struct gsm_dlci {
128         struct gsm_mux *gsm;
129         int addr;
130         int state;
131 #define DLCI_CLOSED             0
132 #define DLCI_OPENING            1       /* Sending SABM not seen UA */
133 #define DLCI_OPEN               2       /* SABM/UA complete */
134 #define DLCI_CLOSING            3       /* Sending DISC not seen UA/DM */
135         struct mutex mutex;
136
137         /* Link layer */
138         int mode;
139 #define DLCI_MODE_ABM           0       /* Normal Asynchronous Balanced Mode */
140 #define DLCI_MODE_ADM           1       /* Asynchronous Disconnected Mode */
141         spinlock_t lock;        /* Protects the internal state */
142         struct timer_list t1;   /* Retransmit timer for SABM and UA */
143         int retries;
144         /* Uplink tty if active */
145         struct tty_port port;   /* The tty bound to this DLCI if there is one */
146         struct kfifo *fifo;     /* Queue fifo for the DLCI */
147         struct kfifo _fifo;     /* For new fifo API porting only */
148         int adaption;           /* Adaption layer in use */
149         int prev_adaption;
150         u32 modem_rx;           /* Our incoming virtual modem lines */
151         u32 modem_tx;           /* Our outgoing modem lines */
152         int dead;               /* Refuse re-open */
153         /* Flow control */
154         int throttled;          /* Private copy of throttle state */
155         int constipated;        /* Throttle status for outgoing */
156         /* Packetised I/O */
157         struct sk_buff *skb;    /* Frame being sent */
158         struct sk_buff_head skb_list;   /* Queued frames */
159         /* Data handling callback */
160         void (*data)(struct gsm_dlci *dlci, u8 *data, int len);
161         void (*prev_data)(struct gsm_dlci *dlci, u8 *data, int len);
162         struct net_device *net; /* network interface, if created */
163 };
164
165 /* DLCI 0, 62/63 are special or reserved see gsmtty_open */
166
167 #define NUM_DLCI                64
168
169 /*
170  *      DLCI 0 is used to pass control blocks out of band of the data
171  *      flow (and with a higher link priority). One command can be outstanding
172  *      at a time and we use this structure to manage them. They are created
173  *      and destroyed by the user context, and updated by the receive paths
174  *      and timers
175  */
176
177 struct gsm_control {
178         u8 cmd;         /* Command we are issuing */
179         u8 *data;       /* Data for the command in case we retransmit */
180         int len;        /* Length of block for retransmission */
181         int done;       /* Done flag */
182         int error;      /* Error if any */
183 };
184
185 /*
186  *      Each GSM mux we have is represented by this structure. If we are
187  *      operating as an ldisc then we use this structure as our ldisc
188  *      state. We need to sort out lifetimes and locking with respect
189  *      to the gsm mux array. For now we don't free DLCI objects that
190  *      have been instantiated until the mux itself is terminated.
191  *
192  *      To consider further: tty open versus mux shutdown.
193  */
194
195 struct gsm_mux {
196         struct tty_struct *tty;         /* The tty our ldisc is bound to */
197         spinlock_t lock;
198         struct mutex mutex;
199         unsigned int num;
200         struct kref ref;
201
202         /* Events on the GSM channel */
203         wait_queue_head_t event;
204
205         /* Bits for GSM mode decoding */
206
207         /* Framing Layer */
208         unsigned char *buf;
209         int state;
210 #define GSM_SEARCH              0
211 #define GSM_START               1
212 #define GSM_ADDRESS             2
213 #define GSM_CONTROL             3
214 #define GSM_LEN                 4
215 #define GSM_DATA                5
216 #define GSM_FCS                 6
217 #define GSM_OVERRUN             7
218 #define GSM_LEN0                8
219 #define GSM_LEN1                9
220 #define GSM_SSOF                10
221         unsigned int len;
222         unsigned int address;
223         unsigned int count;
224         int escape;
225         int encoding;
226         u8 control;
227         u8 fcs;
228         u8 received_fcs;
229         u8 *txframe;                    /* TX framing buffer */
230
231         /* Methods for the receiver side */
232         void (*receive)(struct gsm_mux *gsm, u8 ch);
233         void (*error)(struct gsm_mux *gsm, u8 ch, u8 flag);
234         /* And transmit side */
235         int (*output)(struct gsm_mux *mux, u8 *data, int len);
236
237         /* Link Layer */
238         unsigned int mru;
239         unsigned int mtu;
240         int initiator;                  /* Did we initiate connection */
241         int dead;                       /* Has the mux been shut down */
242         struct gsm_dlci *dlci[NUM_DLCI];
243         int constipated;                /* Asked by remote to shut up */
244
245         spinlock_t tx_lock;
246         unsigned int tx_bytes;          /* TX data outstanding */
247 #define TX_THRESH_HI            8192
248 #define TX_THRESH_LO            2048
249         struct list_head tx_list;       /* Pending data packets */
250
251         /* Control messages */
252         struct timer_list t2_timer;     /* Retransmit timer for commands */
253         int cretries;                   /* Command retry counter */
254         struct gsm_control *pending_cmd;/* Our current pending command */
255         spinlock_t control_lock;        /* Protects the pending command */
256
257         /* Configuration */
258         int adaption;           /* 1 or 2 supported */
259         u8 ftype;               /* UI or UIH */
260         int t1, t2;             /* Timers in 1/100th of a sec */
261         int n2;                 /* Retry count */
262
263         /* Statistics (not currently exposed) */
264         unsigned long bad_fcs;
265         unsigned long malformed;
266         unsigned long io_error;
267         unsigned long bad_size;
268         unsigned long unsupported;
269 };
270
271
272 /*
273  *      Mux objects - needed so that we can translate a tty index into the
274  *      relevant mux and DLCI.
275  */
276
277 #define MAX_MUX         4                       /* 256 minors */
278 static struct gsm_mux *gsm_mux[MAX_MUX];        /* GSM muxes */
279 static spinlock_t gsm_mux_lock;
280
281 static struct tty_driver *gsm_tty_driver;
282
283 /*
284  *      This section of the driver logic implements the GSM encodings
285  *      both the basic and the 'advanced'. Reliable transport is not
286  *      supported.
287  */
288
289 #define CR                      0x02
290 #define EA                      0x01
291 #define PF                      0x10
292
293 /* I is special: the rest are ..*/
294 #define RR                      0x01
295 #define UI                      0x03
296 #define RNR                     0x05
297 #define REJ                     0x09
298 #define DM                      0x0F
299 #define SABM                    0x2F
300 #define DISC                    0x43
301 #define UA                      0x63
302 #define UIH                     0xEF
303
304 /* Channel commands */
305 #define CMD_NSC                 0x09
306 #define CMD_TEST                0x11
307 #define CMD_PSC                 0x21
308 #define CMD_RLS                 0x29
309 #define CMD_FCOFF               0x31
310 #define CMD_PN                  0x41
311 #define CMD_RPN                 0x49
312 #define CMD_FCON                0x51
313 #define CMD_CLD                 0x61
314 #define CMD_SNC                 0x69
315 #define CMD_MSC                 0x71
316
317 /* Virtual modem bits */
318 #define MDM_FC                  0x01
319 #define MDM_RTC                 0x02
320 #define MDM_RTR                 0x04
321 #define MDM_IC                  0x20
322 #define MDM_DV                  0x40
323
324 #define GSM0_SOF                0xF9
325 #define GSM1_SOF                0x7E
326 #define GSM1_ESCAPE             0x7D
327 #define GSM1_ESCAPE_BITS        0x20
328 #define XON                     0x11
329 #define XOFF                    0x13
330 #define ISO_IEC_646_MASK        0x7F
331
332 static const struct tty_port_operations gsm_port_ops;
333
334 /*
335  *      CRC table for GSM 0710
336  */
337
338 static const u8 gsm_fcs8[256] = {
339         0x00, 0x91, 0xE3, 0x72, 0x07, 0x96, 0xE4, 0x75,
340         0x0E, 0x9F, 0xED, 0x7C, 0x09, 0x98, 0xEA, 0x7B,
341         0x1C, 0x8D, 0xFF, 0x6E, 0x1B, 0x8A, 0xF8, 0x69,
342         0x12, 0x83, 0xF1, 0x60, 0x15, 0x84, 0xF6, 0x67,
343         0x38, 0xA9, 0xDB, 0x4A, 0x3F, 0xAE, 0xDC, 0x4D,
344         0x36, 0xA7, 0xD5, 0x44, 0x31, 0xA0, 0xD2, 0x43,
345         0x24, 0xB5, 0xC7, 0x56, 0x23, 0xB2, 0xC0, 0x51,
346         0x2A, 0xBB, 0xC9, 0x58, 0x2D, 0xBC, 0xCE, 0x5F,
347         0x70, 0xE1, 0x93, 0x02, 0x77, 0xE6, 0x94, 0x05,
348         0x7E, 0xEF, 0x9D, 0x0C, 0x79, 0xE8, 0x9A, 0x0B,
349         0x6C, 0xFD, 0x8F, 0x1E, 0x6B, 0xFA, 0x88, 0x19,
350         0x62, 0xF3, 0x81, 0x10, 0x65, 0xF4, 0x86, 0x17,
351         0x48, 0xD9, 0xAB, 0x3A, 0x4F, 0xDE, 0xAC, 0x3D,
352         0x46, 0xD7, 0xA5, 0x34, 0x41, 0xD0, 0xA2, 0x33,
353         0x54, 0xC5, 0xB7, 0x26, 0x53, 0xC2, 0xB0, 0x21,
354         0x5A, 0xCB, 0xB9, 0x28, 0x5D, 0xCC, 0xBE, 0x2F,
355         0xE0, 0x71, 0x03, 0x92, 0xE7, 0x76, 0x04, 0x95,
356         0xEE, 0x7F, 0x0D, 0x9C, 0xE9, 0x78, 0x0A, 0x9B,
357         0xFC, 0x6D, 0x1F, 0x8E, 0xFB, 0x6A, 0x18, 0x89,
358         0xF2, 0x63, 0x11, 0x80, 0xF5, 0x64, 0x16, 0x87,
359         0xD8, 0x49, 0x3B, 0xAA, 0xDF, 0x4E, 0x3C, 0xAD,
360         0xD6, 0x47, 0x35, 0xA4, 0xD1, 0x40, 0x32, 0xA3,
361         0xC4, 0x55, 0x27, 0xB6, 0xC3, 0x52, 0x20, 0xB1,
362         0xCA, 0x5B, 0x29, 0xB8, 0xCD, 0x5C, 0x2E, 0xBF,
363         0x90, 0x01, 0x73, 0xE2, 0x97, 0x06, 0x74, 0xE5,
364         0x9E, 0x0F, 0x7D, 0xEC, 0x99, 0x08, 0x7A, 0xEB,
365         0x8C, 0x1D, 0x6F, 0xFE, 0x8B, 0x1A, 0x68, 0xF9,
366         0x82, 0x13, 0x61, 0xF0, 0x85, 0x14, 0x66, 0xF7,
367         0xA8, 0x39, 0x4B, 0xDA, 0xAF, 0x3E, 0x4C, 0xDD,
368         0xA6, 0x37, 0x45, 0xD4, 0xA1, 0x30, 0x42, 0xD3,
369         0xB4, 0x25, 0x57, 0xC6, 0xB3, 0x22, 0x50, 0xC1,
370         0xBA, 0x2B, 0x59, 0xC8, 0xBD, 0x2C, 0x5E, 0xCF
371 };
372
373 #define INIT_FCS        0xFF
374 #define GOOD_FCS        0xCF
375
376 /**
377  *      gsm_fcs_add     -       update FCS
378  *      @fcs: Current FCS
379  *      @c: Next data
380  *
381  *      Update the FCS to include c. Uses the algorithm in the specification
382  *      notes.
383  */
384
385 static inline u8 gsm_fcs_add(u8 fcs, u8 c)
386 {
387         return gsm_fcs8[fcs ^ c];
388 }
389
390 /**
391  *      gsm_fcs_add_block       -       update FCS for a block
392  *      @fcs: Current FCS
393  *      @c: buffer of data
394  *      @len: length of buffer
395  *
396  *      Update the FCS to include c. Uses the algorithm in the specification
397  *      notes.
398  */
399
400 static inline u8 gsm_fcs_add_block(u8 fcs, u8 *c, int len)
401 {
402         while (len--)
403                 fcs = gsm_fcs8[fcs ^ *c++];
404         return fcs;
405 }
406
407 /**
408  *      gsm_read_ea             -       read a byte into an EA
409  *      @val: variable holding value
410  *      c: byte going into the EA
411  *
412  *      Processes one byte of an EA. Updates the passed variable
413  *      and returns 1 if the EA is now completely read
414  */
415
416 static int gsm_read_ea(unsigned int *val, u8 c)
417 {
418         /* Add the next 7 bits into the value */
419         *val <<= 7;
420         *val |= c >> 1;
421         /* Was this the last byte of the EA 1 = yes*/
422         return c & EA;
423 }
424
425 /**
426  *      gsm_read_ea_val -       read a value until EA
427  *      @val: variable holding value
428  *      @data: buffer of data
429  *      @dlen: length of data
430  *
431  *      Processes an EA value. Updates the passed variable and
432  *      returns the processed data length.
433  */
434 static unsigned int gsm_read_ea_val(unsigned int *val, const u8 *data, int dlen)
435 {
436         unsigned int len = 0;
437
438         for (; dlen > 0; dlen--) {
439                 len++;
440                 if (gsm_read_ea(val, *data++))
441                         break;
442         }
443         return len;
444 }
445
446 /**
447  *      gsm_encode_modem        -       encode modem data bits
448  *      @dlci: DLCI to encode from
449  *
450  *      Returns the correct GSM encoded modem status bits (6 bit field) for
451  *      the current status of the DLCI and attached tty object
452  */
453
454 static u8 gsm_encode_modem(const struct gsm_dlci *dlci)
455 {
456         u8 modembits = 0;
457         /* FC is true flow control not modem bits */
458         if (dlci->throttled)
459                 modembits |= MDM_FC;
460         if (dlci->modem_tx & TIOCM_DTR)
461                 modembits |= MDM_RTC;
462         if (dlci->modem_tx & TIOCM_RTS)
463                 modembits |= MDM_RTR;
464         if (dlci->modem_tx & TIOCM_RI)
465                 modembits |= MDM_IC;
466         if (dlci->modem_tx & TIOCM_CD || dlci->gsm->initiator)
467                 modembits |= MDM_DV;
468         return modembits;
469 }
470
471 /**
472  *      gsm_print_packet        -       display a frame for debug
473  *      @hdr: header to print before decode
474  *      @addr: address EA from the frame
475  *      @cr: C/R bit from the frame
476  *      @control: control including PF bit
477  *      @data: following data bytes
478  *      @dlen: length of data
479  *
480  *      Displays a packet in human readable format for debugging purposes. The
481  *      style is based on amateur radio LAP-B dump display.
482  */
483
484 static void gsm_print_packet(const char *hdr, int addr, int cr,
485                                         u8 control, const u8 *data, int dlen)
486 {
487         if (!(debug & 1))
488                 return;
489
490         pr_info("%s %d) %c: ", hdr, addr, "RC"[cr]);
491
492         switch (control & ~PF) {
493         case SABM:
494                 pr_cont("SABM");
495                 break;
496         case UA:
497                 pr_cont("UA");
498                 break;
499         case DISC:
500                 pr_cont("DISC");
501                 break;
502         case DM:
503                 pr_cont("DM");
504                 break;
505         case UI:
506                 pr_cont("UI");
507                 break;
508         case UIH:
509                 pr_cont("UIH");
510                 break;
511         default:
512                 if (!(control & 0x01)) {
513                         pr_cont("I N(S)%d N(R)%d",
514                                 (control & 0x0E) >> 1, (control & 0xE0) >> 5);
515                 } else switch (control & 0x0F) {
516                         case RR:
517                                 pr_cont("RR(%d)", (control & 0xE0) >> 5);
518                                 break;
519                         case RNR:
520                                 pr_cont("RNR(%d)", (control & 0xE0) >> 5);
521                                 break;
522                         case REJ:
523                                 pr_cont("REJ(%d)", (control & 0xE0) >> 5);
524                                 break;
525                         default:
526                                 pr_cont("[%02X]", control);
527                 }
528         }
529
530         if (control & PF)
531                 pr_cont("(P)");
532         else
533                 pr_cont("(F)");
534
535         if (dlen) {
536                 int ct = 0;
537                 while (dlen--) {
538                         if (ct % 8 == 0) {
539                                 pr_cont("\n");
540                                 pr_debug("    ");
541                         }
542                         pr_cont("%02X ", *data++);
543                         ct++;
544                 }
545         }
546         pr_cont("\n");
547 }
548
549
550 /*
551  *      Link level transmission side
552  */
553
554 /**
555  *      gsm_stuff_packet        -       bytestuff a packet
556  *      @ibuf: input
557  *      @obuf: output
558  *      @len: length of input
559  *
560  *      Expand a buffer by bytestuffing it. The worst case size change
561  *      is doubling and the caller is responsible for handing out
562  *      suitable sized buffers.
563  */
564
565 static int gsm_stuff_frame(const u8 *input, u8 *output, int len)
566 {
567         int olen = 0;
568         while (len--) {
569                 if (*input == GSM1_SOF || *input == GSM1_ESCAPE
570                     || (*input & ISO_IEC_646_MASK) == XON
571                     || (*input & ISO_IEC_646_MASK) == XOFF) {
572                         *output++ = GSM1_ESCAPE;
573                         *output++ = *input++ ^ GSM1_ESCAPE_BITS;
574                         olen++;
575                 } else
576                         *output++ = *input++;
577                 olen++;
578         }
579         return olen;
580 }
581
582 /**
583  *      gsm_send        -       send a control frame
584  *      @gsm: our GSM mux
585  *      @addr: address for control frame
586  *      @cr: command/response bit
587  *      @control:  control byte including PF bit
588  *
589  *      Format up and transmit a control frame. These do not go via the
590  *      queueing logic as they should be transmitted ahead of data when
591  *      they are needed.
592  *
593  *      FIXME: Lock versus data TX path
594  */
595
596 static void gsm_send(struct gsm_mux *gsm, int addr, int cr, int control)
597 {
598         int len;
599         u8 cbuf[10];
600         u8 ibuf[3];
601
602         switch (gsm->encoding) {
603         case 0:
604                 cbuf[0] = GSM0_SOF;
605                 cbuf[1] = (addr << 2) | (cr << 1) | EA;
606                 cbuf[2] = control;
607                 cbuf[3] = EA;   /* Length of data = 0 */
608                 cbuf[4] = 0xFF - gsm_fcs_add_block(INIT_FCS, cbuf + 1, 3);
609                 cbuf[5] = GSM0_SOF;
610                 len = 6;
611                 break;
612         case 1:
613         case 2:
614                 /* Control frame + packing (but not frame stuffing) in mode 1 */
615                 ibuf[0] = (addr << 2) | (cr << 1) | EA;
616                 ibuf[1] = control;
617                 ibuf[2] = 0xFF - gsm_fcs_add_block(INIT_FCS, ibuf, 2);
618                 /* Stuffing may double the size worst case */
619                 len = gsm_stuff_frame(ibuf, cbuf + 1, 3);
620                 /* Now add the SOF markers */
621                 cbuf[0] = GSM1_SOF;
622                 cbuf[len + 1] = GSM1_SOF;
623                 /* FIXME: we can omit the lead one in many cases */
624                 len += 2;
625                 break;
626         default:
627                 WARN_ON(1);
628                 return;
629         }
630         gsm->output(gsm, cbuf, len);
631         gsm_print_packet("-->", addr, cr, control, NULL, 0);
632 }
633
634 /**
635  *      gsm_response    -       send a control response
636  *      @gsm: our GSM mux
637  *      @addr: address for control frame
638  *      @control:  control byte including PF bit
639  *
640  *      Format up and transmit a link level response frame.
641  */
642
643 static inline void gsm_response(struct gsm_mux *gsm, int addr, int control)
644 {
645         gsm_send(gsm, addr, 0, control);
646 }
647
648 /**
649  *      gsm_command     -       send a control command
650  *      @gsm: our GSM mux
651  *      @addr: address for control frame
652  *      @control:  control byte including PF bit
653  *
654  *      Format up and transmit a link level command frame.
655  */
656
657 static inline void gsm_command(struct gsm_mux *gsm, int addr, int control)
658 {
659         gsm_send(gsm, addr, 1, control);
660 }
661
662 /* Data transmission */
663
664 #define HDR_LEN         6       /* ADDR CTRL [LEN.2] DATA FCS */
665
666 /**
667  *      gsm_data_alloc          -       allocate data frame
668  *      @gsm: GSM mux
669  *      @addr: DLCI address
670  *      @len: length excluding header and FCS
671  *      @ctrl: control byte
672  *
673  *      Allocate a new data buffer for sending frames with data. Space is left
674  *      at the front for header bytes but that is treated as an implementation
675  *      detail and not for the high level code to use
676  */
677
678 static struct gsm_msg *gsm_data_alloc(struct gsm_mux *gsm, u8 addr, int len,
679                                                                 u8 ctrl)
680 {
681         struct gsm_msg *m = kmalloc(sizeof(struct gsm_msg) + len + HDR_LEN,
682                                                                 GFP_ATOMIC);
683         if (m == NULL)
684                 return NULL;
685         m->data = m->buffer + HDR_LEN - 1;      /* Allow for FCS */
686         m->len = len;
687         m->addr = addr;
688         m->ctrl = ctrl;
689         INIT_LIST_HEAD(&m->list);
690         return m;
691 }
692
693 /**
694  *      gsm_is_flow_ctrl_msg    -       checks if flow control message
695  *      @msg: message to check
696  *
697  *      Returns true if the given message is a flow control command of the
698  *      control channel. False is returned in any other case.
699  */
700 static bool gsm_is_flow_ctrl_msg(struct gsm_msg *msg)
701 {
702         unsigned int cmd;
703
704         if (msg->addr > 0)
705                 return false;
706
707         switch (msg->ctrl & ~PF) {
708         case UI:
709         case UIH:
710                 cmd = 0;
711                 if (gsm_read_ea_val(&cmd, msg->data + 2, msg->len - 2) < 1)
712                         break;
713                 switch (cmd & ~PF) {
714                 case CMD_FCOFF:
715                 case CMD_FCON:
716                         return true;
717                 }
718                 break;
719         }
720
721         return false;
722 }
723
724 /**
725  *      gsm_data_kick           -       poke the queue
726  *      @gsm: GSM Mux
727  *
728  *      The tty device has called us to indicate that room has appeared in
729  *      the transmit queue. Ram more data into the pipe if we have any
730  *      If we have been flow-stopped by a CMD_FCOFF, then we can only
731  *      send messages on DLCI0 until CMD_FCON
732  *
733  *      FIXME: lock against link layer control transmissions
734  */
735
736 static void gsm_data_kick(struct gsm_mux *gsm, struct gsm_dlci *dlci)
737 {
738         struct gsm_msg *msg, *nmsg;
739         int len;
740
741         list_for_each_entry_safe(msg, nmsg, &gsm->tx_list, list) {
742                 if (gsm->constipated && !gsm_is_flow_ctrl_msg(msg))
743                         continue;
744                 if (gsm->encoding != 0) {
745                         gsm->txframe[0] = GSM1_SOF;
746                         len = gsm_stuff_frame(msg->data,
747                                                 gsm->txframe + 1, msg->len);
748                         gsm->txframe[len + 1] = GSM1_SOF;
749                         len += 2;
750                 } else {
751                         gsm->txframe[0] = GSM0_SOF;
752                         memcpy(gsm->txframe + 1 , msg->data, msg->len);
753                         gsm->txframe[msg->len + 1] = GSM0_SOF;
754                         len = msg->len + 2;
755                 }
756
757                 if (debug & 4)
758                         print_hex_dump_bytes("gsm_data_kick: ",
759                                              DUMP_PREFIX_OFFSET,
760                                              gsm->txframe, len);
761                 if (gsm->output(gsm, gsm->txframe, len) < 0)
762                         break;
763                 /* FIXME: Can eliminate one SOF in many more cases */
764                 gsm->tx_bytes -= msg->len;
765
766                 list_del(&msg->list);
767                 kfree(msg);
768
769                 if (dlci) {
770                         tty_port_tty_wakeup(&dlci->port);
771                 } else {
772                         int i = 0;
773
774                         for (i = 0; i < NUM_DLCI; i++)
775                                 if (gsm->dlci[i])
776                                         tty_port_tty_wakeup(&gsm->dlci[i]->port);
777                 }
778         }
779 }
780
781 /**
782  *      __gsm_data_queue                -       queue a UI or UIH frame
783  *      @dlci: DLCI sending the data
784  *      @msg: message queued
785  *
786  *      Add data to the transmit queue and try and get stuff moving
787  *      out of the mux tty if not already doing so. The Caller must hold
788  *      the gsm tx lock.
789  */
790
791 static void __gsm_data_queue(struct gsm_dlci *dlci, struct gsm_msg *msg)
792 {
793         struct gsm_mux *gsm = dlci->gsm;
794         u8 *dp = msg->data;
795         u8 *fcs = dp + msg->len;
796
797         /* Fill in the header */
798         if (gsm->encoding == 0) {
799                 if (msg->len < 128)
800                         *--dp = (msg->len << 1) | EA;
801                 else {
802                         *--dp = (msg->len >> 7);        /* bits 7 - 15 */
803                         *--dp = (msg->len & 127) << 1;  /* bits 0 - 6 */
804                 }
805         }
806
807         *--dp = msg->ctrl;
808         if (gsm->initiator)
809                 *--dp = (msg->addr << 2) | 2 | EA;
810         else
811                 *--dp = (msg->addr << 2) | EA;
812         *fcs = gsm_fcs_add_block(INIT_FCS, dp , msg->data - dp);
813         /* Ugly protocol layering violation */
814         if (msg->ctrl == UI || msg->ctrl == (UI|PF))
815                 *fcs = gsm_fcs_add_block(*fcs, msg->data, msg->len);
816         *fcs = 0xFF - *fcs;
817
818         gsm_print_packet("Q> ", msg->addr, gsm->initiator, msg->ctrl,
819                                                         msg->data, msg->len);
820
821         /* Move the header back and adjust the length, also allow for the FCS
822            now tacked on the end */
823         msg->len += (msg->data - dp) + 1;
824         msg->data = dp;
825
826         /* Add to the actual output queue */
827         list_add_tail(&msg->list, &gsm->tx_list);
828         gsm->tx_bytes += msg->len;
829         gsm_data_kick(gsm, dlci);
830 }
831
832 /**
833  *      gsm_data_queue          -       queue a UI or UIH frame
834  *      @dlci: DLCI sending the data
835  *      @msg: message queued
836  *
837  *      Add data to the transmit queue and try and get stuff moving
838  *      out of the mux tty if not already doing so. Take the
839  *      the gsm tx lock and dlci lock.
840  */
841
842 static void gsm_data_queue(struct gsm_dlci *dlci, struct gsm_msg *msg)
843 {
844         unsigned long flags;
845         spin_lock_irqsave(&dlci->gsm->tx_lock, flags);
846         __gsm_data_queue(dlci, msg);
847         spin_unlock_irqrestore(&dlci->gsm->tx_lock, flags);
848 }
849
850 /**
851  *      gsm_dlci_data_output    -       try and push data out of a DLCI
852  *      @gsm: mux
853  *      @dlci: the DLCI to pull data from
854  *
855  *      Pull data from a DLCI and send it into the transmit queue if there
856  *      is data. Keep to the MRU of the mux. This path handles the usual tty
857  *      interface which is a byte stream with optional modem data.
858  *
859  *      Caller must hold the tx_lock of the mux.
860  */
861
862 static int gsm_dlci_data_output(struct gsm_mux *gsm, struct gsm_dlci *dlci)
863 {
864         struct gsm_msg *msg;
865         u8 *dp;
866         int len, total_size, size;
867         int h = dlci->adaption - 1;
868
869         total_size = 0;
870         while (1) {
871                 len = kfifo_len(dlci->fifo);
872                 if (len == 0)
873                         return total_size;
874
875                 /* MTU/MRU count only the data bits */
876                 if (len > gsm->mtu)
877                         len = gsm->mtu;
878
879                 size = len + h;
880
881                 msg = gsm_data_alloc(gsm, dlci->addr, size, gsm->ftype);
882                 /* FIXME: need a timer or something to kick this so it can't
883                    get stuck with no work outstanding and no buffer free */
884                 if (msg == NULL)
885                         return -ENOMEM;
886                 dp = msg->data;
887                 switch (dlci->adaption) {
888                 case 1: /* Unstructured */
889                         break;
890                 case 2: /* Unstructed with modem bits.
891                 Always one byte as we never send inline break data */
892                         *dp++ = (gsm_encode_modem(dlci) << 1) | EA;
893                         break;
894                 }
895                 WARN_ON(kfifo_out_locked(dlci->fifo, dp , len, &dlci->lock) != len);
896                 __gsm_data_queue(dlci, msg);
897                 total_size += size;
898         }
899         /* Bytes of data we used up */
900         return total_size;
901 }
902
903 /**
904  *      gsm_dlci_data_output_framed  -  try and push data out of a DLCI
905  *      @gsm: mux
906  *      @dlci: the DLCI to pull data from
907  *
908  *      Pull data from a DLCI and send it into the transmit queue if there
909  *      is data. Keep to the MRU of the mux. This path handles framed data
910  *      queued as skbuffs to the DLCI.
911  *
912  *      Caller must hold the tx_lock of the mux.
913  */
914
915 static int gsm_dlci_data_output_framed(struct gsm_mux *gsm,
916                                                 struct gsm_dlci *dlci)
917 {
918         struct gsm_msg *msg;
919         u8 *dp;
920         int len, size;
921         int last = 0, first = 0;
922         int overhead = 0;
923
924         /* One byte per frame is used for B/F flags */
925         if (dlci->adaption == 4)
926                 overhead = 1;
927
928         /* dlci->skb is locked by tx_lock */
929         if (dlci->skb == NULL) {
930                 dlci->skb = skb_dequeue_tail(&dlci->skb_list);
931                 if (dlci->skb == NULL)
932                         return 0;
933                 first = 1;
934         }
935         len = dlci->skb->len + overhead;
936
937         /* MTU/MRU count only the data bits */
938         if (len > gsm->mtu) {
939                 if (dlci->adaption == 3) {
940                         /* Over long frame, bin it */
941                         dev_kfree_skb_any(dlci->skb);
942                         dlci->skb = NULL;
943                         return 0;
944                 }
945                 len = gsm->mtu;
946         } else
947                 last = 1;
948
949         size = len + overhead;
950         msg = gsm_data_alloc(gsm, dlci->addr, size, gsm->ftype);
951
952         /* FIXME: need a timer or something to kick this so it can't
953            get stuck with no work outstanding and no buffer free */
954         if (msg == NULL) {
955                 skb_queue_tail(&dlci->skb_list, dlci->skb);
956                 dlci->skb = NULL;
957                 return -ENOMEM;
958         }
959         dp = msg->data;
960
961         if (dlci->adaption == 4) { /* Interruptible framed (Packetised Data) */
962                 /* Flag byte to carry the start/end info */
963                 *dp++ = last << 7 | first << 6 | 1;     /* EA */
964                 len--;
965         }
966         memcpy(dp, dlci->skb->data, len);
967         skb_pull(dlci->skb, len);
968         __gsm_data_queue(dlci, msg);
969         if (last) {
970                 dev_kfree_skb_any(dlci->skb);
971                 dlci->skb = NULL;
972         }
973         return size;
974 }
975
976 /**
977  *      gsm_dlci_data_sweep             -       look for data to send
978  *      @gsm: the GSM mux
979  *
980  *      Sweep the GSM mux channels in priority order looking for ones with
981  *      data to send. We could do with optimising this scan a bit. We aim
982  *      to fill the queue totally or up to TX_THRESH_HI bytes. Once we hit
983  *      TX_THRESH_LO we get called again
984  *
985  *      FIXME: We should round robin between groups and in theory you can
986  *      renegotiate DLCI priorities with optional stuff. Needs optimising.
987  */
988
989 static void gsm_dlci_data_sweep(struct gsm_mux *gsm)
990 {
991         int len;
992         /* Priority ordering: We should do priority with RR of the groups */
993         int i = 1;
994
995         while (i < NUM_DLCI) {
996                 struct gsm_dlci *dlci;
997
998                 if (gsm->tx_bytes > TX_THRESH_HI)
999                         break;
1000                 dlci = gsm->dlci[i];
1001                 if (dlci == NULL || dlci->constipated) {
1002                         i++;
1003                         continue;
1004                 }
1005                 if (dlci->adaption < 3 && !dlci->net)
1006                         len = gsm_dlci_data_output(gsm, dlci);
1007                 else
1008                         len = gsm_dlci_data_output_framed(gsm, dlci);
1009                 if (len < 0)
1010                         break;
1011                 /* DLCI empty - try the next */
1012                 if (len == 0)
1013                         i++;
1014         }
1015 }
1016
1017 /**
1018  *      gsm_dlci_data_kick      -       transmit if possible
1019  *      @dlci: DLCI to kick
1020  *
1021  *      Transmit data from this DLCI if the queue is empty. We can't rely on
1022  *      a tty wakeup except when we filled the pipe so we need to fire off
1023  *      new data ourselves in other cases.
1024  */
1025
1026 static void gsm_dlci_data_kick(struct gsm_dlci *dlci)
1027 {
1028         unsigned long flags;
1029         int sweep;
1030
1031         if (dlci->constipated)
1032                 return;
1033
1034         spin_lock_irqsave(&dlci->gsm->tx_lock, flags);
1035         /* If we have nothing running then we need to fire up */
1036         sweep = (dlci->gsm->tx_bytes < TX_THRESH_LO);
1037         if (dlci->gsm->tx_bytes == 0) {
1038                 if (dlci->net)
1039                         gsm_dlci_data_output_framed(dlci->gsm, dlci);
1040                 else
1041                         gsm_dlci_data_output(dlci->gsm, dlci);
1042         }
1043         if (sweep)
1044                 gsm_dlci_data_sweep(dlci->gsm);
1045         spin_unlock_irqrestore(&dlci->gsm->tx_lock, flags);
1046 }
1047
1048 /*
1049  *      Control message processing
1050  */
1051
1052
1053 /**
1054  *      gsm_control_reply       -       send a response frame to a control
1055  *      @gsm: gsm channel
1056  *      @cmd: the command to use
1057  *      @data: data to follow encoded info
1058  *      @dlen: length of data
1059  *
1060  *      Encode up and queue a UI/UIH frame containing our response.
1061  */
1062
1063 static void gsm_control_reply(struct gsm_mux *gsm, int cmd, u8 *data,
1064                                         int dlen)
1065 {
1066         struct gsm_msg *msg;
1067         msg = gsm_data_alloc(gsm, 0, dlen + 2, gsm->ftype);
1068         if (msg == NULL)
1069                 return;
1070         msg->data[0] = (cmd & 0xFE) << 1 | EA;  /* Clear C/R */
1071         msg->data[1] = (dlen << 1) | EA;
1072         memcpy(msg->data + 2, data, dlen);
1073         gsm_data_queue(gsm->dlci[0], msg);
1074 }
1075
1076 /**
1077  *      gsm_process_modem       -       process received modem status
1078  *      @tty: virtual tty bound to the DLCI
1079  *      @dlci: DLCI to affect
1080  *      @modem: modem bits (full EA)
1081  *
1082  *      Used when a modem control message or line state inline in adaption
1083  *      layer 2 is processed. Sort out the local modem state and throttles
1084  */
1085
1086 static void gsm_process_modem(struct tty_struct *tty, struct gsm_dlci *dlci,
1087                                                         u32 modem, int clen)
1088 {
1089         int  mlines = 0;
1090         u8 brk = 0;
1091         int fc;
1092
1093         /* The modem status command can either contain one octet (v.24 signals)
1094            or two octets (v.24 signals + break signals). The length field will
1095            either be 2 or 3 respectively. This is specified in section
1096            5.4.6.3.7 of the  27.010 mux spec. */
1097
1098         if (clen == 2)
1099                 modem = modem & 0x7f;
1100         else {
1101                 brk = modem & 0x7f;
1102                 modem = (modem >> 7) & 0x7f;
1103         }
1104
1105         /* Flow control/ready to communicate */
1106         fc = (modem & MDM_FC) || !(modem & MDM_RTR);
1107         if (fc && !dlci->constipated) {
1108                 /* Need to throttle our output on this device */
1109                 dlci->constipated = 1;
1110         } else if (!fc && dlci->constipated) {
1111                 dlci->constipated = 0;
1112                 gsm_dlci_data_kick(dlci);
1113         }
1114
1115         /* Map modem bits */
1116         if (modem & MDM_RTC)
1117                 mlines |= TIOCM_DSR | TIOCM_DTR;
1118         if (modem & MDM_RTR)
1119                 mlines |= TIOCM_RTS | TIOCM_CTS;
1120         if (modem & MDM_IC)
1121                 mlines |= TIOCM_RI;
1122         if (modem & MDM_DV)
1123                 mlines |= TIOCM_CD;
1124
1125         /* Carrier drop -> hangup */
1126         if (tty) {
1127                 if ((mlines & TIOCM_CD) == 0 && (dlci->modem_rx & TIOCM_CD))
1128                         if (!C_CLOCAL(tty))
1129                                 tty_hangup(tty);
1130         }
1131         if (brk & 0x01)
1132                 tty_insert_flip_char(&dlci->port, 0, TTY_BREAK);
1133         dlci->modem_rx = mlines;
1134 }
1135
1136 /**
1137  *      gsm_control_modem       -       modem status received
1138  *      @gsm: GSM channel
1139  *      @data: data following command
1140  *      @clen: command length
1141  *
1142  *      We have received a modem status control message. This is used by
1143  *      the GSM mux protocol to pass virtual modem line status and optionally
1144  *      to indicate break signals. Unpack it, convert to Linux representation
1145  *      and if need be stuff a break message down the tty.
1146  */
1147
1148 static void gsm_control_modem(struct gsm_mux *gsm, u8 *data, int clen)
1149 {
1150         unsigned int addr = 0;
1151         unsigned int modem = 0;
1152         unsigned int brk = 0;
1153         struct gsm_dlci *dlci;
1154         int len = clen;
1155         u8 *dp = data;
1156         struct tty_struct *tty;
1157
1158         while (gsm_read_ea(&addr, *dp++) == 0) {
1159                 len--;
1160                 if (len == 0)
1161                         return;
1162         }
1163         /* Must be at least one byte following the EA */
1164         len--;
1165         if (len <= 0)
1166                 return;
1167
1168         addr >>= 1;
1169         /* Closed port, or invalid ? */
1170         if (addr == 0 || addr >= NUM_DLCI || gsm->dlci[addr] == NULL)
1171                 return;
1172         dlci = gsm->dlci[addr];
1173
1174         while (gsm_read_ea(&modem, *dp++) == 0) {
1175                 len--;
1176                 if (len == 0)
1177                         return;
1178         }
1179         len--;
1180         if (len > 0) {
1181                 while (gsm_read_ea(&brk, *dp++) == 0) {
1182                         len--;
1183                         if (len == 0)
1184                                 return;
1185                 }
1186                 modem <<= 7;
1187                 modem |= (brk & 0x7f);
1188         }
1189         tty = tty_port_tty_get(&dlci->port);
1190         gsm_process_modem(tty, dlci, modem, clen);
1191         if (tty) {
1192                 tty_wakeup(tty);
1193                 tty_kref_put(tty);
1194         }
1195         gsm_control_reply(gsm, CMD_MSC, data, clen);
1196 }
1197
1198 /**
1199  *      gsm_control_rls         -       remote line status
1200  *      @gsm: GSM channel
1201  *      @data: data bytes
1202  *      @clen: data length
1203  *
1204  *      The modem sends us a two byte message on the control channel whenever
1205  *      it wishes to send us an error state from the virtual link. Stuff
1206  *      this into the uplink tty if present
1207  */
1208
1209 static void gsm_control_rls(struct gsm_mux *gsm, u8 *data, int clen)
1210 {
1211         struct tty_port *port;
1212         unsigned int addr = 0;
1213         u8 bits;
1214         int len = clen;
1215         u8 *dp = data;
1216
1217         while (gsm_read_ea(&addr, *dp++) == 0) {
1218                 len--;
1219                 if (len == 0)
1220                         return;
1221         }
1222         /* Must be at least one byte following ea */
1223         len--;
1224         if (len <= 0)
1225                 return;
1226         addr >>= 1;
1227         /* Closed port, or invalid ? */
1228         if (addr == 0 || addr >= NUM_DLCI || gsm->dlci[addr] == NULL)
1229                 return;
1230         /* No error ? */
1231         bits = *dp;
1232         if ((bits & 1) == 0)
1233                 return;
1234
1235         port = &gsm->dlci[addr]->port;
1236
1237         if (bits & 2)
1238                 tty_insert_flip_char(port, 0, TTY_OVERRUN);
1239         if (bits & 4)
1240                 tty_insert_flip_char(port, 0, TTY_PARITY);
1241         if (bits & 8)
1242                 tty_insert_flip_char(port, 0, TTY_FRAME);
1243
1244         tty_flip_buffer_push(port);
1245
1246         gsm_control_reply(gsm, CMD_RLS, data, clen);
1247 }
1248
1249 static void gsm_dlci_begin_close(struct gsm_dlci *dlci);
1250
1251 /**
1252  *      gsm_control_message     -       DLCI 0 control processing
1253  *      @gsm: our GSM mux
1254  *      @command:  the command EA
1255  *      @data: data beyond the command/length EAs
1256  *      @clen: length
1257  *
1258  *      Input processor for control messages from the other end of the link.
1259  *      Processes the incoming request and queues a response frame or an
1260  *      NSC response if not supported
1261  */
1262
1263 static void gsm_control_message(struct gsm_mux *gsm, unsigned int command,
1264                                                         u8 *data, int clen)
1265 {
1266         u8 buf[1];
1267         unsigned long flags;
1268
1269         switch (command) {
1270         case CMD_CLD: {
1271                 struct gsm_dlci *dlci = gsm->dlci[0];
1272                 /* Modem wishes to close down */
1273                 if (dlci) {
1274                         dlci->dead = 1;
1275                         gsm->dead = 1;
1276                         gsm_dlci_begin_close(dlci);
1277                 }
1278                 }
1279                 break;
1280         case CMD_TEST:
1281                 /* Modem wishes to test, reply with the data */
1282                 gsm_control_reply(gsm, CMD_TEST, data, clen);
1283                 break;
1284         case CMD_FCON:
1285                 /* Modem can accept data again */
1286                 gsm->constipated = 0;
1287                 gsm_control_reply(gsm, CMD_FCON, NULL, 0);
1288                 /* Kick the link in case it is idling */
1289                 spin_lock_irqsave(&gsm->tx_lock, flags);
1290                 gsm_data_kick(gsm, NULL);
1291                 spin_unlock_irqrestore(&gsm->tx_lock, flags);
1292                 break;
1293         case CMD_FCOFF:
1294                 /* Modem wants us to STFU */
1295                 gsm->constipated = 1;
1296                 gsm_control_reply(gsm, CMD_FCOFF, NULL, 0);
1297                 break;
1298         case CMD_MSC:
1299                 /* Out of band modem line change indicator for a DLCI */
1300                 gsm_control_modem(gsm, data, clen);
1301                 break;
1302         case CMD_RLS:
1303                 /* Out of band error reception for a DLCI */
1304                 gsm_control_rls(gsm, data, clen);
1305                 break;
1306         case CMD_PSC:
1307                 /* Modem wishes to enter power saving state */
1308                 gsm_control_reply(gsm, CMD_PSC, NULL, 0);
1309                 break;
1310                 /* Optional unsupported commands */
1311         case CMD_PN:    /* Parameter negotiation */
1312         case CMD_RPN:   /* Remote port negotiation */
1313         case CMD_SNC:   /* Service negotiation command */
1314         default:
1315                 /* Reply to bad commands with an NSC */
1316                 buf[0] = command;
1317                 gsm_control_reply(gsm, CMD_NSC, buf, 1);
1318                 break;
1319         }
1320 }
1321
1322 /**
1323  *      gsm_control_response    -       process a response to our control
1324  *      @gsm: our GSM mux
1325  *      @command: the command (response) EA
1326  *      @data: data beyond the command/length EA
1327  *      @clen: length
1328  *
1329  *      Process a response to an outstanding command. We only allow a single
1330  *      control message in flight so this is fairly easy. All the clean up
1331  *      is done by the caller, we just update the fields, flag it as done
1332  *      and return
1333  */
1334
1335 static void gsm_control_response(struct gsm_mux *gsm, unsigned int command,
1336                                                         u8 *data, int clen)
1337 {
1338         struct gsm_control *ctrl;
1339         unsigned long flags;
1340
1341         spin_lock_irqsave(&gsm->control_lock, flags);
1342
1343         ctrl = gsm->pending_cmd;
1344         /* Does the reply match our command */
1345         command |= 1;
1346         if (ctrl != NULL && (command == ctrl->cmd || command == CMD_NSC)) {
1347                 /* Our command was replied to, kill the retry timer */
1348                 del_timer(&gsm->t2_timer);
1349                 gsm->pending_cmd = NULL;
1350                 /* Rejected by the other end */
1351                 if (command == CMD_NSC)
1352                         ctrl->error = -EOPNOTSUPP;
1353                 ctrl->done = 1;
1354                 wake_up(&gsm->event);
1355         }
1356         spin_unlock_irqrestore(&gsm->control_lock, flags);
1357 }
1358
1359 /**
1360  *      gsm_control_transmit    -       send control packet
1361  *      @gsm: gsm mux
1362  *      @ctrl: frame to send
1363  *
1364  *      Send out a pending control command (called under control lock)
1365  */
1366
1367 static void gsm_control_transmit(struct gsm_mux *gsm, struct gsm_control *ctrl)
1368 {
1369         struct gsm_msg *msg = gsm_data_alloc(gsm, 0, ctrl->len + 2, gsm->ftype);
1370         if (msg == NULL)
1371                 return;
1372         msg->data[0] = (ctrl->cmd << 1) | CR | EA;      /* command */
1373         msg->data[1] = (ctrl->len << 1) | EA;
1374         memcpy(msg->data + 2, ctrl->data, ctrl->len);
1375         gsm_data_queue(gsm->dlci[0], msg);
1376 }
1377
1378 /**
1379  *      gsm_control_retransmit  -       retransmit a control frame
1380  *      @data: pointer to our gsm object
1381  *
1382  *      Called off the T2 timer expiry in order to retransmit control frames
1383  *      that have been lost in the system somewhere. The control_lock protects
1384  *      us from colliding with another sender or a receive completion event.
1385  *      In that situation the timer may still occur in a small window but
1386  *      gsm->pending_cmd will be NULL and we just let the timer expire.
1387  */
1388
1389 static void gsm_control_retransmit(unsigned long data)
1390 {
1391         struct gsm_mux *gsm = (struct gsm_mux *)data;
1392         struct gsm_control *ctrl;
1393         unsigned long flags;
1394         spin_lock_irqsave(&gsm->control_lock, flags);
1395         ctrl = gsm->pending_cmd;
1396         if (ctrl) {
1397                 if (gsm->cretries == 0 || !gsm->dlci[0] || gsm->dlci[0]->dead) {
1398                         gsm->pending_cmd = NULL;
1399                         ctrl->error = -ETIMEDOUT;
1400                         ctrl->done = 1;
1401                         spin_unlock_irqrestore(&gsm->control_lock, flags);
1402                         wake_up(&gsm->event);
1403                         return;
1404                 }
1405                 gsm->cretries--;
1406                 gsm_control_transmit(gsm, ctrl);
1407                 mod_timer(&gsm->t2_timer, jiffies + gsm->t2 * HZ / 100);
1408         }
1409         spin_unlock_irqrestore(&gsm->control_lock, flags);
1410 }
1411
1412 /**
1413  *      gsm_control_send        -       send a control frame on DLCI 0
1414  *      @gsm: the GSM channel
1415  *      @command: command  to send including CR bit
1416  *      @data: bytes of data (must be kmalloced)
1417  *      @len: length of the block to send
1418  *
1419  *      Queue and dispatch a control command. Only one command can be
1420  *      active at a time. In theory more can be outstanding but the matching
1421  *      gets really complicated so for now stick to one outstanding.
1422  */
1423
1424 static struct gsm_control *gsm_control_send(struct gsm_mux *gsm,
1425                 unsigned int command, u8 *data, int clen)
1426 {
1427         struct gsm_control *ctrl = kzalloc(sizeof(struct gsm_control),
1428                                                 GFP_KERNEL);
1429         unsigned long flags;
1430         if (ctrl == NULL)
1431                 return NULL;
1432 retry:
1433         wait_event(gsm->event, gsm->pending_cmd == NULL);
1434         spin_lock_irqsave(&gsm->control_lock, flags);
1435         if (gsm->pending_cmd != NULL) {
1436                 spin_unlock_irqrestore(&gsm->control_lock, flags);
1437                 goto retry;
1438         }
1439         ctrl->cmd = command;
1440         ctrl->data = data;
1441         ctrl->len = clen;
1442         gsm->pending_cmd = ctrl;
1443
1444         /* If DLCI0 is in ADM mode skip retries, it won't respond */
1445         if (gsm->dlci[0]->mode == DLCI_MODE_ADM)
1446                 gsm->cretries = 0;
1447         else
1448                 gsm->cretries = gsm->n2;
1449
1450         mod_timer(&gsm->t2_timer, jiffies + gsm->t2 * HZ / 100);
1451         gsm_control_transmit(gsm, ctrl);
1452         spin_unlock_irqrestore(&gsm->control_lock, flags);
1453         return ctrl;
1454 }
1455
1456 /**
1457  *      gsm_control_wait        -       wait for a control to finish
1458  *      @gsm: GSM mux
1459  *      @control: control we are waiting on
1460  *
1461  *      Waits for the control to complete or time out. Frees any used
1462  *      resources and returns 0 for success, or an error if the remote
1463  *      rejected or ignored the request.
1464  */
1465
1466 static int gsm_control_wait(struct gsm_mux *gsm, struct gsm_control *control)
1467 {
1468         int err;
1469         wait_event(gsm->event, control->done == 1);
1470         err = control->error;
1471         kfree(control);
1472         return err;
1473 }
1474
1475
1476 /*
1477  *      DLCI level handling: Needs krefs
1478  */
1479
1480 /*
1481  *      State transitions and timers
1482  */
1483
1484 /**
1485  *      gsm_dlci_close          -       a DLCI has closed
1486  *      @dlci: DLCI that closed
1487  *
1488  *      Perform processing when moving a DLCI into closed state. If there
1489  *      is an attached tty this is hung up
1490  */
1491
1492 static void gsm_dlci_close(struct gsm_dlci *dlci)
1493 {
1494         del_timer(&dlci->t1);
1495         if (debug & 8)
1496                 pr_debug("DLCI %d goes closed.\n", dlci->addr);
1497         dlci->state = DLCI_CLOSED;
1498         if (dlci->addr != 0) {
1499                 tty_port_tty_hangup(&dlci->port, false);
1500                 kfifo_reset(dlci->fifo);
1501         } else
1502                 dlci->gsm->dead = 1;
1503         wake_up(&dlci->gsm->event);
1504         /* A DLCI 0 close is a MUX termination so we need to kick that
1505            back to userspace somehow */
1506 }
1507
1508 /**
1509  *      gsm_dlci_open           -       a DLCI has opened
1510  *      @dlci: DLCI that opened
1511  *
1512  *      Perform processing when moving a DLCI into open state.
1513  */
1514
1515 static void gsm_dlci_open(struct gsm_dlci *dlci)
1516 {
1517         /* Note that SABM UA .. SABM UA first UA lost can mean that we go
1518            open -> open */
1519         del_timer(&dlci->t1);
1520         /* This will let a tty open continue */
1521         dlci->state = DLCI_OPEN;
1522         if (debug & 8)
1523                 pr_debug("DLCI %d goes open.\n", dlci->addr);
1524         wake_up(&dlci->gsm->event);
1525 }
1526
1527 /**
1528  *      gsm_dlci_t1             -       T1 timer expiry
1529  *      @dlci: DLCI that opened
1530  *
1531  *      The T1 timer handles retransmits of control frames (essentially of
1532  *      SABM and DISC). We resend the command until the retry count runs out
1533  *      in which case an opening port goes back to closed and a closing port
1534  *      is simply put into closed state (any further frames from the other
1535  *      end will get a DM response)
1536  *
1537  *      Some control dlci can stay in ADM mode with other dlci working just
1538  *      fine. In that case we can just keep the control dlci open after the
1539  *      DLCI_OPENING retries time out.
1540  */
1541
1542 static void gsm_dlci_t1(unsigned long data)
1543 {
1544         struct gsm_dlci *dlci = (struct gsm_dlci *)data;
1545         struct gsm_mux *gsm = dlci->gsm;
1546
1547         switch (dlci->state) {
1548         case DLCI_OPENING:
1549                 if (dlci->retries) {
1550                         dlci->retries--;
1551                         gsm_command(dlci->gsm, dlci->addr, SABM|PF);
1552                         mod_timer(&dlci->t1, jiffies + gsm->t1 * HZ / 100);
1553                 } else if (!dlci->addr && gsm->control == (DM | PF)) {
1554                         if (debug & 8)
1555                                 pr_info("DLCI %d opening in ADM mode.\n",
1556                                         dlci->addr);
1557                         dlci->mode = DLCI_MODE_ADM;
1558                         gsm_dlci_open(dlci);
1559                 } else {
1560                         gsm_dlci_begin_close(dlci); /* prevent half open link */
1561                 }
1562
1563                 break;
1564         case DLCI_CLOSING:
1565                 if (dlci->retries) {
1566                         dlci->retries--;
1567                         gsm_command(dlci->gsm, dlci->addr, DISC|PF);
1568                         mod_timer(&dlci->t1, jiffies + gsm->t1 * HZ / 100);
1569                 } else
1570                         gsm_dlci_close(dlci);
1571                 break;
1572         }
1573 }
1574
1575 /**
1576  *      gsm_dlci_begin_open     -       start channel open procedure
1577  *      @dlci: DLCI to open
1578  *
1579  *      Commence opening a DLCI from the Linux side. We issue SABM messages
1580  *      to the modem which should then reply with a UA or ADM, at which point
1581  *      we will move into open state. Opening is done asynchronously with retry
1582  *      running off timers and the responses.
1583  */
1584
1585 static void gsm_dlci_begin_open(struct gsm_dlci *dlci)
1586 {
1587         struct gsm_mux *gsm = dlci->gsm;
1588         if (dlci->state == DLCI_OPEN || dlci->state == DLCI_OPENING)
1589                 return;
1590         dlci->retries = gsm->n2;
1591         dlci->state = DLCI_OPENING;
1592         gsm_command(dlci->gsm, dlci->addr, SABM|PF);
1593         mod_timer(&dlci->t1, jiffies + gsm->t1 * HZ / 100);
1594 }
1595
1596 /**
1597  *      gsm_dlci_begin_close    -       start channel open procedure
1598  *      @dlci: DLCI to open
1599  *
1600  *      Commence closing a DLCI from the Linux side. We issue DISC messages
1601  *      to the modem which should then reply with a UA, at which point we
1602  *      will move into closed state. Closing is done asynchronously with retry
1603  *      off timers. We may also receive a DM reply from the other end which
1604  *      indicates the channel was already closed.
1605  */
1606
1607 static void gsm_dlci_begin_close(struct gsm_dlci *dlci)
1608 {
1609         struct gsm_mux *gsm = dlci->gsm;
1610         if (dlci->state == DLCI_CLOSED || dlci->state == DLCI_CLOSING)
1611                 return;
1612         dlci->retries = gsm->n2;
1613         dlci->state = DLCI_CLOSING;
1614         gsm_command(dlci->gsm, dlci->addr, DISC|PF);
1615         mod_timer(&dlci->t1, jiffies + gsm->t1 * HZ / 100);
1616 }
1617
1618 /**
1619  *      gsm_dlci_data           -       data arrived
1620  *      @dlci: channel
1621  *      @data: block of bytes received
1622  *      @len: length of received block
1623  *
1624  *      A UI or UIH frame has arrived which contains data for a channel
1625  *      other than the control channel. If the relevant virtual tty is
1626  *      open we shovel the bits down it, if not we drop them.
1627  */
1628
1629 static void gsm_dlci_data(struct gsm_dlci *dlci, u8 *data, int clen)
1630 {
1631         /* krefs .. */
1632         struct tty_port *port = &dlci->port;
1633         struct tty_struct *tty;
1634         unsigned int modem = 0;
1635         int len = clen;
1636
1637         if (debug & 16)
1638                 pr_debug("%d bytes for tty\n", len);
1639         switch (dlci->adaption)  {
1640         /* Unsupported types */
1641         /* Packetised interruptible data */
1642         case 4:
1643                 break;
1644         /* Packetised uininterruptible voice/data */
1645         case 3:
1646                 break;
1647         /* Asynchronous serial with line state in each frame */
1648         case 2:
1649                 while (gsm_read_ea(&modem, *data++) == 0) {
1650                         len--;
1651                         if (len == 0)
1652                                 return;
1653                 }
1654                 tty = tty_port_tty_get(port);
1655                 if (tty) {
1656                         gsm_process_modem(tty, dlci, modem, clen);
1657                         tty_kref_put(tty);
1658                 }
1659         /* Line state will go via DLCI 0 controls only */
1660         case 1:
1661         default:
1662                 tty_insert_flip_string(port, data, len);
1663                 tty_flip_buffer_push(port);
1664         }
1665 }
1666
1667 /**
1668  *      gsm_dlci_control        -       data arrived on control channel
1669  *      @dlci: channel
1670  *      @data: block of bytes received
1671  *      @len: length of received block
1672  *
1673  *      A UI or UIH frame has arrived which contains data for DLCI 0 the
1674  *      control channel. This should contain a command EA followed by
1675  *      control data bytes. The command EA contains a command/response bit
1676  *      and we divide up the work accordingly.
1677  */
1678
1679 static void gsm_dlci_command(struct gsm_dlci *dlci, u8 *data, int len)
1680 {
1681         /* See what command is involved */
1682         unsigned int command = 0;
1683         while (len-- > 0) {
1684                 if (gsm_read_ea(&command, *data++) == 1) {
1685                         int clen = *data++;
1686                         len--;
1687                         /* FIXME: this is properly an EA */
1688                         clen >>= 1;
1689                         /* Malformed command ? */
1690                         if (clen > len)
1691                                 return;
1692                         if (command & 1)
1693                                 gsm_control_message(dlci->gsm, command,
1694                                                                 data, clen);
1695                         else
1696                                 gsm_control_response(dlci->gsm, command,
1697                                                                 data, clen);
1698                         return;
1699                 }
1700         }
1701 }
1702
1703 /*
1704  *      Allocate/Free DLCI channels
1705  */
1706
1707 /**
1708  *      gsm_dlci_alloc          -       allocate a DLCI
1709  *      @gsm: GSM mux
1710  *      @addr: address of the DLCI
1711  *
1712  *      Allocate and install a new DLCI object into the GSM mux.
1713  *
1714  *      FIXME: review locking races
1715  */
1716
1717 static struct gsm_dlci *gsm_dlci_alloc(struct gsm_mux *gsm, int addr)
1718 {
1719         struct gsm_dlci *dlci = kzalloc(sizeof(struct gsm_dlci), GFP_ATOMIC);
1720         if (dlci == NULL)
1721                 return NULL;
1722         spin_lock_init(&dlci->lock);
1723         mutex_init(&dlci->mutex);
1724         dlci->fifo = &dlci->_fifo;
1725         if (kfifo_alloc(&dlci->_fifo, 4096, GFP_KERNEL) < 0) {
1726                 kfree(dlci);
1727                 return NULL;
1728         }
1729
1730         skb_queue_head_init(&dlci->skb_list);
1731         init_timer(&dlci->t1);
1732         dlci->t1.function = gsm_dlci_t1;
1733         dlci->t1.data = (unsigned long)dlci;
1734         tty_port_init(&dlci->port);
1735         dlci->port.ops = &gsm_port_ops;
1736         dlci->gsm = gsm;
1737         dlci->addr = addr;
1738         dlci->adaption = gsm->adaption;
1739         dlci->state = DLCI_CLOSED;
1740         if (addr)
1741                 dlci->data = gsm_dlci_data;
1742         else
1743                 dlci->data = gsm_dlci_command;
1744         gsm->dlci[addr] = dlci;
1745         return dlci;
1746 }
1747
1748 /**
1749  *      gsm_dlci_free           -       free DLCI
1750  *      @dlci: DLCI to free
1751  *
1752  *      Free up a DLCI.
1753  *
1754  *      Can sleep.
1755  */
1756 static void gsm_dlci_free(struct tty_port *port)
1757 {
1758         struct gsm_dlci *dlci = container_of(port, struct gsm_dlci, port);
1759
1760         del_timer_sync(&dlci->t1);
1761         dlci->gsm->dlci[dlci->addr] = NULL;
1762         kfifo_free(dlci->fifo);
1763         while ((dlci->skb = skb_dequeue(&dlci->skb_list)))
1764                 dev_kfree_skb(dlci->skb);
1765         kfree(dlci);
1766 }
1767
1768 static inline void dlci_get(struct gsm_dlci *dlci)
1769 {
1770         tty_port_get(&dlci->port);
1771 }
1772
1773 static inline void dlci_put(struct gsm_dlci *dlci)
1774 {
1775         tty_port_put(&dlci->port);
1776 }
1777
1778 static void gsm_destroy_network(struct gsm_dlci *dlci);
1779
1780 /**
1781  *      gsm_dlci_release                -       release DLCI
1782  *      @dlci: DLCI to destroy
1783  *
1784  *      Release a DLCI. Actual free is deferred until either
1785  *      mux is closed or tty is closed - whichever is last.
1786  *
1787  *      Can sleep.
1788  */
1789 static void gsm_dlci_release(struct gsm_dlci *dlci)
1790 {
1791         struct tty_struct *tty = tty_port_tty_get(&dlci->port);
1792         if (tty) {
1793                 mutex_lock(&dlci->mutex);
1794                 gsm_destroy_network(dlci);
1795                 mutex_unlock(&dlci->mutex);
1796
1797                 tty_vhangup(tty);
1798
1799                 tty_port_tty_set(&dlci->port, NULL);
1800                 tty_kref_put(tty);
1801         }
1802         dlci->state = DLCI_CLOSED;
1803         dlci_put(dlci);
1804 }
1805
1806 /*
1807  *      LAPBish link layer logic
1808  */
1809
1810 /**
1811  *      gsm_queue               -       a GSM frame is ready to process
1812  *      @gsm: pointer to our gsm mux
1813  *
1814  *      At this point in time a frame has arrived and been demangled from
1815  *      the line encoding. All the differences between the encodings have
1816  *      been handled below us and the frame is unpacked into the structures.
1817  *      The fcs holds the header FCS but any data FCS must be added here.
1818  */
1819
1820 static void gsm_queue(struct gsm_mux *gsm)
1821 {
1822         struct gsm_dlci *dlci;
1823         u8 cr;
1824         int address;
1825         /* We have to sneak a look at the packet body to do the FCS.
1826            A somewhat layering violation in the spec */
1827
1828         if ((gsm->control & ~PF) == UI)
1829                 gsm->fcs = gsm_fcs_add_block(gsm->fcs, gsm->buf, gsm->len);
1830         if (gsm->encoding == 0) {
1831                 /* WARNING: gsm->received_fcs is used for
1832                 gsm->encoding = 0 only.
1833                 In this case it contain the last piece of data
1834                 required to generate final CRC */
1835                 gsm->fcs = gsm_fcs_add(gsm->fcs, gsm->received_fcs);
1836         }
1837         if (gsm->fcs != GOOD_FCS) {
1838                 gsm->bad_fcs++;
1839                 if (debug & 4)
1840                         pr_debug("BAD FCS %02x\n", gsm->fcs);
1841                 return;
1842         }
1843         address = gsm->address >> 1;
1844         if (address >= NUM_DLCI)
1845                 goto invalid;
1846
1847         cr = gsm->address & 1;          /* C/R bit */
1848
1849         gsm_print_packet("<--", address, cr, gsm->control, gsm->buf, gsm->len);
1850
1851         cr ^= 1 - gsm->initiator;       /* Flip so 1 always means command */
1852         dlci = gsm->dlci[address];
1853
1854         switch (gsm->control) {
1855         case SABM|PF:
1856                 if (cr == 0)
1857                         goto invalid;
1858                 if (dlci == NULL)
1859                         dlci = gsm_dlci_alloc(gsm, address);
1860                 if (dlci == NULL)
1861                         return;
1862                 if (dlci->dead)
1863                         gsm_response(gsm, address, DM);
1864                 else {
1865                         gsm_response(gsm, address, UA);
1866                         gsm_dlci_open(dlci);
1867                 }
1868                 break;
1869         case DISC|PF:
1870                 if (cr == 0)
1871                         goto invalid;
1872                 if (dlci == NULL || dlci->state == DLCI_CLOSED) {
1873                         gsm_response(gsm, address, DM);
1874                         return;
1875                 }
1876                 /* Real close complete */
1877                 gsm_response(gsm, address, UA);
1878                 gsm_dlci_close(dlci);
1879                 break;
1880         case UA|PF:
1881                 if (cr == 0 || dlci == NULL)
1882                         break;
1883                 switch (dlci->state) {
1884                 case DLCI_CLOSING:
1885                         gsm_dlci_close(dlci);
1886                         break;
1887                 case DLCI_OPENING:
1888                         gsm_dlci_open(dlci);
1889                         break;
1890                 }
1891                 break;
1892         case DM:        /* DM can be valid unsolicited */
1893         case DM|PF:
1894                 if (cr)
1895                         goto invalid;
1896                 if (dlci == NULL)
1897                         return;
1898                 gsm_dlci_close(dlci);
1899                 break;
1900         case UI:
1901         case UI|PF:
1902         case UIH:
1903         case UIH|PF:
1904 #if 0
1905                 if (cr)
1906                         goto invalid;
1907 #endif
1908                 if (dlci == NULL || dlci->state != DLCI_OPEN) {
1909                         gsm_response(gsm, address, DM|PF);
1910                         return;
1911                 }
1912                 dlci->data(dlci, gsm->buf, gsm->len);
1913                 break;
1914         default:
1915                 goto invalid;
1916         }
1917         return;
1918 invalid:
1919         gsm->malformed++;
1920         return;
1921 }
1922
1923
1924 /**
1925  *      gsm0_receive    -       perform processing for non-transparency
1926  *      @gsm: gsm data for this ldisc instance
1927  *      @c: character
1928  *
1929  *      Receive bytes in gsm mode 0
1930  */
1931
1932 static void gsm0_receive(struct gsm_mux *gsm, unsigned char c)
1933 {
1934         unsigned int len;
1935
1936         switch (gsm->state) {
1937         case GSM_SEARCH:        /* SOF marker */
1938                 if (c == GSM0_SOF) {
1939                         gsm->state = GSM_ADDRESS;
1940                         gsm->address = 0;
1941                         gsm->len = 0;
1942                         gsm->fcs = INIT_FCS;
1943                 }
1944                 break;
1945         case GSM_ADDRESS:       /* Address EA */
1946                 gsm->fcs = gsm_fcs_add(gsm->fcs, c);
1947                 if (gsm_read_ea(&gsm->address, c))
1948                         gsm->state = GSM_CONTROL;
1949                 break;
1950         case GSM_CONTROL:       /* Control Byte */
1951                 gsm->fcs = gsm_fcs_add(gsm->fcs, c);
1952                 gsm->control = c;
1953                 gsm->state = GSM_LEN0;
1954                 break;
1955         case GSM_LEN0:          /* Length EA */
1956                 gsm->fcs = gsm_fcs_add(gsm->fcs, c);
1957                 if (gsm_read_ea(&gsm->len, c)) {
1958                         if (gsm->len > gsm->mru) {
1959                                 gsm->bad_size++;
1960                                 gsm->state = GSM_SEARCH;
1961                                 break;
1962                         }
1963                         gsm->count = 0;
1964                         if (!gsm->len)
1965                                 gsm->state = GSM_FCS;
1966                         else
1967                                 gsm->state = GSM_DATA;
1968                         break;
1969                 }
1970                 gsm->state = GSM_LEN1;
1971                 break;
1972         case GSM_LEN1:
1973                 gsm->fcs = gsm_fcs_add(gsm->fcs, c);
1974                 len = c;
1975                 gsm->len |= len << 7;
1976                 if (gsm->len > gsm->mru) {
1977                         gsm->bad_size++;
1978                         gsm->state = GSM_SEARCH;
1979                         break;
1980                 }
1981                 gsm->count = 0;
1982                 if (!gsm->len)
1983                         gsm->state = GSM_FCS;
1984                 else
1985                         gsm->state = GSM_DATA;
1986                 break;
1987         case GSM_DATA:          /* Data */
1988                 gsm->buf[gsm->count++] = c;
1989                 if (gsm->count == gsm->len)
1990                         gsm->state = GSM_FCS;
1991                 break;
1992         case GSM_FCS:           /* FCS follows the packet */
1993                 gsm->received_fcs = c;
1994                 gsm_queue(gsm);
1995                 gsm->state = GSM_SSOF;
1996                 break;
1997         case GSM_SSOF:
1998                 if (c == GSM0_SOF) {
1999                         gsm->state = GSM_SEARCH;
2000                         break;
2001                 }
2002                 break;
2003         }
2004 }
2005
2006 /**
2007  *      gsm1_receive    -       perform processing for non-transparency
2008  *      @gsm: gsm data for this ldisc instance
2009  *      @c: character
2010  *
2011  *      Receive bytes in mode 1 (Advanced option)
2012  */
2013
2014 static void gsm1_receive(struct gsm_mux *gsm, unsigned char c)
2015 {
2016         if (c == GSM1_SOF) {
2017                 /* EOF is only valid in frame if we have got to the data state
2018                    and received at least one byte (the FCS) */
2019                 if (gsm->state == GSM_DATA && gsm->count) {
2020                         /* Extract the FCS */
2021                         gsm->count--;
2022                         gsm->fcs = gsm_fcs_add(gsm->fcs, gsm->buf[gsm->count]);
2023                         gsm->len = gsm->count;
2024                         gsm_queue(gsm);
2025                         gsm->state  = GSM_START;
2026                         return;
2027                 }
2028                 /* Any partial frame was a runt so go back to start */
2029                 if (gsm->state != GSM_START) {
2030                         if (gsm->state != GSM_SEARCH)
2031                                 gsm->malformed++;
2032                         gsm->state = GSM_START;
2033                 }
2034                 /* A SOF in GSM_START means we are still reading idling or
2035                    framing bytes */
2036                 return;
2037         }
2038
2039         if (c == GSM1_ESCAPE) {
2040                 gsm->escape = 1;
2041                 return;
2042         }
2043
2044         /* Only an unescaped SOF gets us out of GSM search */
2045         if (gsm->state == GSM_SEARCH)
2046                 return;
2047
2048         if (gsm->escape) {
2049                 c ^= GSM1_ESCAPE_BITS;
2050                 gsm->escape = 0;
2051         }
2052         switch (gsm->state) {
2053         case GSM_START:         /* First byte after SOF */
2054                 gsm->address = 0;
2055                 gsm->state = GSM_ADDRESS;
2056                 gsm->fcs = INIT_FCS;
2057                 /* Drop through */
2058         case GSM_ADDRESS:       /* Address continuation */
2059                 gsm->fcs = gsm_fcs_add(gsm->fcs, c);
2060                 if (gsm_read_ea(&gsm->address, c))
2061                         gsm->state = GSM_CONTROL;
2062                 break;
2063         case GSM_CONTROL:       /* Control Byte */
2064                 gsm->fcs = gsm_fcs_add(gsm->fcs, c);
2065                 gsm->control = c;
2066                 gsm->count = 0;
2067                 gsm->state = GSM_DATA;
2068                 break;
2069         case GSM_DATA:          /* Data */
2070                 if (gsm->count > gsm->mru) {    /* Allow one for the FCS */
2071                         gsm->state = GSM_OVERRUN;
2072                         gsm->bad_size++;
2073                 } else
2074                         gsm->buf[gsm->count++] = c;
2075                 break;
2076         case GSM_OVERRUN:       /* Over-long - eg a dropped SOF */
2077                 break;
2078         }
2079 }
2080
2081 /**
2082  *      gsm_error               -       handle tty error
2083  *      @gsm: ldisc data
2084  *      @data: byte received (may be invalid)
2085  *      @flag: error received
2086  *
2087  *      Handle an error in the receipt of data for a frame. Currently we just
2088  *      go back to hunting for a SOF.
2089  *
2090  *      FIXME: better diagnostics ?
2091  */
2092
2093 static void gsm_error(struct gsm_mux *gsm,
2094                                 unsigned char data, unsigned char flag)
2095 {
2096         gsm->state = GSM_SEARCH;
2097         gsm->io_error++;
2098 }
2099
2100 static int gsm_disconnect(struct gsm_mux *gsm)
2101 {
2102         struct gsm_dlci *dlci = gsm->dlci[0];
2103         struct gsm_control *gc;
2104
2105         if (!dlci)
2106                 return 0;
2107
2108         /* In theory disconnecting DLCI 0 is sufficient but for some
2109            modems this is apparently not the case. */
2110         gc = gsm_control_send(gsm, CMD_CLD, NULL, 0);
2111         if (gc)
2112                 gsm_control_wait(gsm, gc);
2113
2114         del_timer_sync(&gsm->t2_timer);
2115         /* Now we are sure T2 has stopped */
2116
2117         gsm_dlci_begin_close(dlci);
2118         wait_event_interruptible(gsm->event,
2119                                 dlci->state == DLCI_CLOSED);
2120
2121         if (signal_pending(current))
2122                 return -EINTR;
2123
2124         return 0;
2125 }
2126
2127 /**
2128  *      gsm_cleanup_mux         -       generic GSM protocol cleanup
2129  *      @gsm: our mux
2130  *
2131  *      Clean up the bits of the mux which are the same for all framing
2132  *      protocols. Remove the mux from the mux table, stop all the timers
2133  *      and then shut down each device hanging up the channels as we go.
2134  */
2135
2136 static void gsm_cleanup_mux(struct gsm_mux *gsm)
2137 {
2138         int i;
2139         struct gsm_dlci *dlci = gsm->dlci[0];
2140         struct gsm_msg *txq, *ntxq;
2141
2142         gsm->dead = 1;
2143
2144         spin_lock(&gsm_mux_lock);
2145         for (i = 0; i < MAX_MUX; i++) {
2146                 if (gsm_mux[i] == gsm) {
2147                         gsm_mux[i] = NULL;
2148                         break;
2149                 }
2150         }
2151         spin_unlock(&gsm_mux_lock);
2152         /* open failed before registering => nothing to do */
2153         if (i == MAX_MUX)
2154                 return;
2155
2156         del_timer_sync(&gsm->t2_timer);
2157         /* Now we are sure T2 has stopped */
2158         if (dlci)
2159                 dlci->dead = 1;
2160
2161         /* Free up any link layer users */
2162         mutex_lock(&gsm->mutex);
2163         for (i = 0; i < NUM_DLCI; i++)
2164                 if (gsm->dlci[i])
2165                         gsm_dlci_release(gsm->dlci[i]);
2166         mutex_unlock(&gsm->mutex);
2167         /* Now wipe the queues */
2168         tty_ldisc_flush(gsm->tty);
2169         list_for_each_entry_safe(txq, ntxq, &gsm->tx_list, list)
2170                 kfree(txq);
2171         INIT_LIST_HEAD(&gsm->tx_list);
2172 }
2173
2174 /**
2175  *      gsm_activate_mux        -       generic GSM setup
2176  *      @gsm: our mux
2177  *
2178  *      Set up the bits of the mux which are the same for all framing
2179  *      protocols. Add the mux to the mux table so it can be opened and
2180  *      finally kick off connecting to DLCI 0 on the modem.
2181  */
2182
2183 static int gsm_activate_mux(struct gsm_mux *gsm)
2184 {
2185         struct gsm_dlci *dlci;
2186         int i = 0;
2187
2188         setup_timer(&gsm->t2_timer, gsm_control_retransmit, (unsigned long)gsm);
2189         init_waitqueue_head(&gsm->event);
2190         spin_lock_init(&gsm->control_lock);
2191         spin_lock_init(&gsm->tx_lock);
2192
2193         if (gsm->encoding == 0)
2194                 gsm->receive = gsm0_receive;
2195         else
2196                 gsm->receive = gsm1_receive;
2197         gsm->error = gsm_error;
2198
2199         spin_lock(&gsm_mux_lock);
2200         for (i = 0; i < MAX_MUX; i++) {
2201                 if (gsm_mux[i] == NULL) {
2202                         gsm->num = i;
2203                         gsm_mux[i] = gsm;
2204                         break;
2205                 }
2206         }
2207         spin_unlock(&gsm_mux_lock);
2208         if (i == MAX_MUX)
2209                 return -EBUSY;
2210
2211         dlci = gsm_dlci_alloc(gsm, 0);
2212         if (dlci == NULL)
2213                 return -ENOMEM;
2214         gsm->dead = 0;          /* Tty opens are now permissible */
2215         return 0;
2216 }
2217
2218 /**
2219  *      gsm_free_mux            -       free up a mux
2220  *      @mux: mux to free
2221  *
2222  *      Dispose of allocated resources for a dead mux
2223  */
2224 static void gsm_free_mux(struct gsm_mux *gsm)
2225 {
2226         kfree(gsm->txframe);
2227         kfree(gsm->buf);
2228         kfree(gsm);
2229 }
2230
2231 /**
2232  *      gsm_free_muxr           -       free up a mux
2233  *      @mux: mux to free
2234  *
2235  *      Dispose of allocated resources for a dead mux
2236  */
2237 static void gsm_free_muxr(struct kref *ref)
2238 {
2239         struct gsm_mux *gsm = container_of(ref, struct gsm_mux, ref);
2240         gsm_free_mux(gsm);
2241 }
2242
2243 static inline void mux_get(struct gsm_mux *gsm)
2244 {
2245         kref_get(&gsm->ref);
2246 }
2247
2248 static inline void mux_put(struct gsm_mux *gsm)
2249 {
2250         kref_put(&gsm->ref, gsm_free_muxr);
2251 }
2252
2253 /**
2254  *      gsm_alloc_mux           -       allocate a mux
2255  *
2256  *      Creates a new mux ready for activation.
2257  */
2258
2259 static struct gsm_mux *gsm_alloc_mux(void)
2260 {
2261         struct gsm_mux *gsm = kzalloc(sizeof(struct gsm_mux), GFP_KERNEL);
2262         if (gsm == NULL)
2263                 return NULL;
2264         gsm->buf = kmalloc(MAX_MRU + 1, GFP_KERNEL);
2265         if (gsm->buf == NULL) {
2266                 kfree(gsm);
2267                 return NULL;
2268         }
2269         gsm->txframe = kmalloc(2 * (MAX_MTU + PROT_OVERHEAD - 1), GFP_KERNEL);
2270         if (gsm->txframe == NULL) {
2271                 kfree(gsm->buf);
2272                 kfree(gsm);
2273                 return NULL;
2274         }
2275         spin_lock_init(&gsm->lock);
2276         mutex_init(&gsm->mutex);
2277         kref_init(&gsm->ref);
2278         INIT_LIST_HEAD(&gsm->tx_list);
2279
2280         gsm->t1 = T1;
2281         gsm->t2 = T2;
2282         gsm->n2 = N2;
2283         gsm->ftype = UIH;
2284         gsm->adaption = 1;
2285         gsm->encoding = 1;
2286         gsm->mru = 64;  /* Default to encoding 1 so these should be 64 */
2287         gsm->mtu = 64;
2288         gsm->dead = 1;  /* Avoid early tty opens */
2289
2290         return gsm;
2291 }
2292
2293 /**
2294  *      gsmld_output            -       write to link
2295  *      @gsm: our mux
2296  *      @data: bytes to output
2297  *      @len: size
2298  *
2299  *      Write a block of data from the GSM mux to the data channel. This
2300  *      will eventually be serialized from above but at the moment isn't.
2301  */
2302
2303 static int gsmld_output(struct gsm_mux *gsm, u8 *data, int len)
2304 {
2305         if (tty_write_room(gsm->tty) < len) {
2306                 set_bit(TTY_DO_WRITE_WAKEUP, &gsm->tty->flags);
2307                 return -ENOSPC;
2308         }
2309         if (debug & 4)
2310                 print_hex_dump_bytes("gsmld_output: ", DUMP_PREFIX_OFFSET,
2311                                      data, len);
2312         gsm->tty->ops->write(gsm->tty, data, len);
2313         return len;
2314 }
2315
2316 /**
2317  *      gsmld_attach_gsm        -       mode set up
2318  *      @tty: our tty structure
2319  *      @gsm: our mux
2320  *
2321  *      Set up the MUX for basic mode and commence connecting to the
2322  *      modem. Currently called from the line discipline set up but
2323  *      will need moving to an ioctl path.
2324  */
2325
2326 static int gsmld_attach_gsm(struct tty_struct *tty, struct gsm_mux *gsm)
2327 {
2328         int ret, i, base;
2329
2330         gsm->tty = tty_kref_get(tty);
2331         gsm->output = gsmld_output;
2332         ret =  gsm_activate_mux(gsm);
2333         if (ret != 0)
2334                 tty_kref_put(gsm->tty);
2335         else {
2336                 /* Don't register device 0 - this is the control channel and not
2337                    a usable tty interface */
2338                 base = gsm->num << 6; /* Base for this MUX */
2339                 for (i = 1; i < NUM_DLCI; i++)
2340                         tty_register_device(gsm_tty_driver, base + i, NULL);
2341         }
2342         return ret;
2343 }
2344
2345
2346 /**
2347  *      gsmld_detach_gsm        -       stop doing 0710 mux
2348  *      @tty: tty attached to the mux
2349  *      @gsm: mux
2350  *
2351  *      Shutdown and then clean up the resources used by the line discipline
2352  */
2353
2354 static void gsmld_detach_gsm(struct tty_struct *tty, struct gsm_mux *gsm)
2355 {
2356         int i;
2357         int base = gsm->num << 6; /* Base for this MUX */
2358
2359         WARN_ON(tty != gsm->tty);
2360         for (i = 1; i < NUM_DLCI; i++)
2361                 tty_unregister_device(gsm_tty_driver, base + i);
2362         gsm_cleanup_mux(gsm);
2363         tty_kref_put(gsm->tty);
2364         gsm->tty = NULL;
2365 }
2366
2367 static void gsmld_receive_buf(struct tty_struct *tty, const unsigned char *cp,
2368                               char *fp, int count)
2369 {
2370         struct gsm_mux *gsm = tty->disc_data;
2371         const unsigned char *dp;
2372         char *f;
2373         int i;
2374         char flags = TTY_NORMAL;
2375
2376         if (debug & 4)
2377                 print_hex_dump_bytes("gsmld_receive: ", DUMP_PREFIX_OFFSET,
2378                                      cp, count);
2379
2380         for (i = count, dp = cp, f = fp; i; i--, dp++) {
2381                 if (f)
2382                         flags = *f++;
2383                 switch (flags) {
2384                 case TTY_NORMAL:
2385                         gsm->receive(gsm, *dp);
2386                         break;
2387                 case TTY_OVERRUN:
2388                 case TTY_BREAK:
2389                 case TTY_PARITY:
2390                 case TTY_FRAME:
2391                         gsm->error(gsm, *dp, flags);
2392                         break;
2393                 default:
2394                         WARN_ONCE(1, "%s: unknown flag %d\n",
2395                                tty_name(tty), flags);
2396                         break;
2397                 }
2398         }
2399         /* FASYNC if needed ? */
2400         /* If clogged call tty_throttle(tty); */
2401 }
2402
2403 /**
2404  *      gsmld_flush_buffer      -       clean input queue
2405  *      @tty:   terminal device
2406  *
2407  *      Flush the input buffer. Called when the line discipline is
2408  *      being closed, when the tty layer wants the buffer flushed (eg
2409  *      at hangup).
2410  */
2411
2412 static void gsmld_flush_buffer(struct tty_struct *tty)
2413 {
2414 }
2415
2416 /**
2417  *      gsmld_close             -       close the ldisc for this tty
2418  *      @tty: device
2419  *
2420  *      Called from the terminal layer when this line discipline is
2421  *      being shut down, either because of a close or becsuse of a
2422  *      discipline change. The function will not be called while other
2423  *      ldisc methods are in progress.
2424  */
2425
2426 static void gsmld_close(struct tty_struct *tty)
2427 {
2428         struct gsm_mux *gsm = tty->disc_data;
2429
2430         gsmld_detach_gsm(tty, gsm);
2431
2432         gsmld_flush_buffer(tty);
2433         /* Do other clean up here */
2434         mux_put(gsm);
2435 }
2436
2437 /**
2438  *      gsmld_open              -       open an ldisc
2439  *      @tty: terminal to open
2440  *
2441  *      Called when this line discipline is being attached to the
2442  *      terminal device. Can sleep. Called serialized so that no
2443  *      other events will occur in parallel. No further open will occur
2444  *      until a close.
2445  */
2446
2447 static int gsmld_open(struct tty_struct *tty)
2448 {
2449         struct gsm_mux *gsm;
2450         int ret;
2451
2452         if (tty->ops->write == NULL)
2453                 return -EINVAL;
2454
2455         /* Attach our ldisc data */
2456         gsm = gsm_alloc_mux();
2457         if (gsm == NULL)
2458                 return -ENOMEM;
2459
2460         tty->disc_data = gsm;
2461         tty->receive_room = 65536;
2462
2463         /* Attach the initial passive connection */
2464         gsm->encoding = 1;
2465
2466         ret = gsmld_attach_gsm(tty, gsm);
2467         if (ret != 0) {
2468                 gsm_cleanup_mux(gsm);
2469                 mux_put(gsm);
2470         }
2471         return ret;
2472 }
2473
2474 /**
2475  *      gsmld_write_wakeup      -       asynchronous I/O notifier
2476  *      @tty: tty device
2477  *
2478  *      Required for the ptys, serial driver etc. since processes
2479  *      that attach themselves to the master and rely on ASYNC
2480  *      IO must be woken up
2481  */
2482
2483 static void gsmld_write_wakeup(struct tty_struct *tty)
2484 {
2485         struct gsm_mux *gsm = tty->disc_data;
2486         unsigned long flags;
2487
2488         /* Queue poll */
2489         clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
2490         spin_lock_irqsave(&gsm->tx_lock, flags);
2491         gsm_data_kick(gsm, NULL);
2492         if (gsm->tx_bytes < TX_THRESH_LO) {
2493                 gsm_dlci_data_sweep(gsm);
2494         }
2495         spin_unlock_irqrestore(&gsm->tx_lock, flags);
2496 }
2497
2498 /**
2499  *      gsmld_read              -       read function for tty
2500  *      @tty: tty device
2501  *      @file: file object
2502  *      @buf: userspace buffer pointer
2503  *      @nr: size of I/O
2504  *
2505  *      Perform reads for the line discipline. We are guaranteed that the
2506  *      line discipline will not be closed under us but we may get multiple
2507  *      parallel readers and must handle this ourselves. We may also get
2508  *      a hangup. Always called in user context, may sleep.
2509  *
2510  *      This code must be sure never to sleep through a hangup.
2511  */
2512
2513 static ssize_t gsmld_read(struct tty_struct *tty, struct file *file,
2514                          unsigned char __user *buf, size_t nr)
2515 {
2516         return -EOPNOTSUPP;
2517 }
2518
2519 /**
2520  *      gsmld_write             -       write function for tty
2521  *      @tty: tty device
2522  *      @file: file object
2523  *      @buf: userspace buffer pointer
2524  *      @nr: size of I/O
2525  *
2526  *      Called when the owner of the device wants to send a frame
2527  *      itself (or some other control data). The data is transferred
2528  *      as-is and must be properly framed and checksummed as appropriate
2529  *      by userspace. Frames are either sent whole or not at all as this
2530  *      avoids pain user side.
2531  */
2532
2533 static ssize_t gsmld_write(struct tty_struct *tty, struct file *file,
2534                            const unsigned char *buf, size_t nr)
2535 {
2536         struct gsm_mux *gsm = tty->disc_data;
2537         unsigned long flags;
2538         int space;
2539         int ret;
2540
2541         if (!gsm)
2542                 return -ENODEV;
2543
2544         ret = -ENOBUFS;
2545         spin_lock_irqsave(&gsm->tx_lock, flags);
2546         space = tty_write_room(tty);
2547         if (space >= nr)
2548                 ret = tty->ops->write(tty, buf, nr);
2549         else
2550                 set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
2551         spin_unlock_irqrestore(&gsm->tx_lock, flags);
2552
2553         return ret;
2554 }
2555
2556 /**
2557  *      gsmld_poll              -       poll method for N_GSM0710
2558  *      @tty: terminal device
2559  *      @file: file accessing it
2560  *      @wait: poll table
2561  *
2562  *      Called when the line discipline is asked to poll() for data or
2563  *      for special events. This code is not serialized with respect to
2564  *      other events save open/close.
2565  *
2566  *      This code must be sure never to sleep through a hangup.
2567  *      Called without the kernel lock held - fine
2568  */
2569
2570 static unsigned int gsmld_poll(struct tty_struct *tty, struct file *file,
2571                                                         poll_table *wait)
2572 {
2573         unsigned int mask = 0;
2574         struct gsm_mux *gsm = tty->disc_data;
2575
2576         poll_wait(file, &tty->read_wait, wait);
2577         poll_wait(file, &tty->write_wait, wait);
2578         if (tty_hung_up_p(file))
2579                 mask |= POLLHUP;
2580         if (!tty_is_writelocked(tty) && tty_write_room(tty) > 0)
2581                 mask |= POLLOUT | POLLWRNORM;
2582         if (gsm->dead)
2583                 mask |= POLLHUP;
2584         return mask;
2585 }
2586
2587 static int gsmld_config(struct tty_struct *tty, struct gsm_mux *gsm,
2588                                                         struct gsm_config *c)
2589 {
2590         int need_close = 0;
2591         int need_restart = 0;
2592
2593         /* Stuff we don't support yet - UI or I frame transport, windowing */
2594         if ((c->adaption != 1 && c->adaption != 2) || c->k)
2595                 return -EOPNOTSUPP;
2596         /* Check the MRU/MTU range looks sane */
2597         if (c->mru > MAX_MRU || c->mtu > MAX_MTU || c->mru < 8 || c->mtu < 8)
2598                 return -EINVAL;
2599         if (c->n2 > 255)
2600                 return -EINVAL;
2601         if (c->encapsulation > 1)       /* Basic, advanced, no I */
2602                 return -EINVAL;
2603         if (c->initiator > 1)
2604                 return -EINVAL;
2605         if (c->i == 0 || c->i > 2)      /* UIH and UI only */
2606                 return -EINVAL;
2607         /*
2608          *      See what is needed for reconfiguration
2609          */
2610
2611         /* Timing fields */
2612         if (c->t1 != 0 && c->t1 != gsm->t1)
2613                 need_restart = 1;
2614         if (c->t2 != 0 && c->t2 != gsm->t2)
2615                 need_restart = 1;
2616         if (c->encapsulation != gsm->encoding)
2617                 need_restart = 1;
2618         if (c->adaption != gsm->adaption)
2619                 need_restart = 1;
2620         /* Requires care */
2621         if (c->initiator != gsm->initiator)
2622                 need_close = 1;
2623         if (c->mru != gsm->mru)
2624                 need_restart = 1;
2625         if (c->mtu != gsm->mtu)
2626                 need_restart = 1;
2627
2628         /*
2629          *      Close down what is needed, restart and initiate the new
2630          *      configuration
2631          */
2632
2633         if (need_close || need_restart) {
2634                 int ret;
2635
2636                 ret = gsm_disconnect(gsm);
2637
2638                 if (ret)
2639                         return ret;
2640         }
2641         if (need_restart)
2642                 gsm_cleanup_mux(gsm);
2643
2644         gsm->initiator = c->initiator;
2645         gsm->mru = c->mru;
2646         gsm->mtu = c->mtu;
2647         gsm->encoding = c->encapsulation;
2648         gsm->adaption = c->adaption;
2649         gsm->n2 = c->n2;
2650
2651         if (c->i == 1)
2652                 gsm->ftype = UIH;
2653         else if (c->i == 2)
2654                 gsm->ftype = UI;
2655
2656         if (c->t1)
2657                 gsm->t1 = c->t1;
2658         if (c->t2)
2659                 gsm->t2 = c->t2;
2660
2661         /* FIXME: We need to separate activation/deactivation from adding
2662            and removing from the mux array */
2663         if (need_restart)
2664                 gsm_activate_mux(gsm);
2665         if (gsm->initiator && need_close)
2666                 gsm_dlci_begin_open(gsm->dlci[0]);
2667         return 0;
2668 }
2669
2670 static int gsmld_ioctl(struct tty_struct *tty, struct file *file,
2671                        unsigned int cmd, unsigned long arg)
2672 {
2673         struct gsm_config c;
2674         struct gsm_mux *gsm = tty->disc_data;
2675
2676         switch (cmd) {
2677         case GSMIOC_GETCONF:
2678                 memset(&c, 0, sizeof(c));
2679                 c.adaption = gsm->adaption;
2680                 c.encapsulation = gsm->encoding;
2681                 c.initiator = gsm->initiator;
2682                 c.t1 = gsm->t1;
2683                 c.t2 = gsm->t2;
2684                 c.t3 = 0;       /* Not supported */
2685                 c.n2 = gsm->n2;
2686                 if (gsm->ftype == UIH)
2687                         c.i = 1;
2688                 else
2689                         c.i = 2;
2690                 pr_debug("Ftype %d i %d\n", gsm->ftype, c.i);
2691                 c.mru = gsm->mru;
2692                 c.mtu = gsm->mtu;
2693                 c.k = 0;
2694                 if (copy_to_user((void *)arg, &c, sizeof(c)))
2695                         return -EFAULT;
2696                 return 0;
2697         case GSMIOC_SETCONF:
2698                 if (copy_from_user(&c, (void *)arg, sizeof(c)))
2699                         return -EFAULT;
2700                 return gsmld_config(tty, gsm, &c);
2701         default:
2702                 return n_tty_ioctl_helper(tty, file, cmd, arg);
2703         }
2704 }
2705
2706 #ifdef CONFIG_COMPAT
2707 static long gsmld_compat_ioctl(struct tty_struct *tty, struct file *file,
2708                        unsigned int cmd, unsigned long arg)
2709 {
2710         return gsmld_ioctl(tty, file, cmd, arg);
2711 }
2712 #endif
2713
2714 /*
2715  *      Network interface
2716  *
2717  */
2718
2719 static int gsm_mux_net_open(struct net_device *net)
2720 {
2721         pr_debug("%s called\n", __func__);
2722         netif_start_queue(net);
2723         return 0;
2724 }
2725
2726 static int gsm_mux_net_close(struct net_device *net)
2727 {
2728         netif_stop_queue(net);
2729         return 0;
2730 }
2731
2732 static void dlci_net_free(struct gsm_dlci *dlci)
2733 {
2734         if (!dlci->net) {
2735                 WARN_ON(1);
2736                 return;
2737         }
2738         dlci->adaption = dlci->prev_adaption;
2739         dlci->data = dlci->prev_data;
2740         free_netdev(dlci->net);
2741         dlci->net = NULL;
2742 }
2743 static void net_free(struct kref *ref)
2744 {
2745         struct gsm_mux_net *mux_net;
2746         struct gsm_dlci *dlci;
2747
2748         mux_net = container_of(ref, struct gsm_mux_net, ref);
2749         dlci = mux_net->dlci;
2750
2751         if (dlci->net) {
2752                 unregister_netdev(dlci->net);
2753                 dlci_net_free(dlci);
2754         }
2755 }
2756
2757 static inline void muxnet_get(struct gsm_mux_net *mux_net)
2758 {
2759         kref_get(&mux_net->ref);
2760 }
2761
2762 static inline void muxnet_put(struct gsm_mux_net *mux_net)
2763 {
2764         kref_put(&mux_net->ref, net_free);
2765 }
2766
2767 static int gsm_mux_net_start_xmit(struct sk_buff *skb,
2768                                       struct net_device *net)
2769 {
2770         struct gsm_mux_net *mux_net = netdev_priv(net);
2771         struct gsm_dlci *dlci = mux_net->dlci;
2772         muxnet_get(mux_net);
2773
2774         skb_queue_head(&dlci->skb_list, skb);
2775         net->stats.tx_packets++;
2776         net->stats.tx_bytes += skb->len;
2777         gsm_dlci_data_kick(dlci);
2778         /* And tell the kernel when the last transmit started. */
2779         netif_trans_update(net);
2780         muxnet_put(mux_net);
2781         return NETDEV_TX_OK;
2782 }
2783
2784 /* called when a packet did not ack after watchdogtimeout */
2785 static void gsm_mux_net_tx_timeout(struct net_device *net)
2786 {
2787         /* Tell syslog we are hosed. */
2788         dev_dbg(&net->dev, "Tx timed out.\n");
2789
2790         /* Update statistics */
2791         net->stats.tx_errors++;
2792 }
2793
2794 static void gsm_mux_rx_netchar(struct gsm_dlci *dlci,
2795                                    unsigned char *in_buf, int size)
2796 {
2797         struct net_device *net = dlci->net;
2798         struct sk_buff *skb;
2799         struct gsm_mux_net *mux_net = netdev_priv(net);
2800         muxnet_get(mux_net);
2801
2802         /* Allocate an sk_buff */
2803         skb = dev_alloc_skb(size + NET_IP_ALIGN);
2804         if (!skb) {
2805                 /* We got no receive buffer. */
2806                 net->stats.rx_dropped++;
2807                 muxnet_put(mux_net);
2808                 return;
2809         }
2810         skb_reserve(skb, NET_IP_ALIGN);
2811         skb_put_data(skb, in_buf, size);
2812
2813         skb->dev = net;
2814         skb->protocol = htons(ETH_P_IP);
2815
2816         /* Ship it off to the kernel */
2817         netif_rx(skb);
2818
2819         /* update out statistics */
2820         net->stats.rx_packets++;
2821         net->stats.rx_bytes += size;
2822         muxnet_put(mux_net);
2823         return;
2824 }
2825
2826 static void gsm_mux_net_init(struct net_device *net)
2827 {
2828         static const struct net_device_ops gsm_netdev_ops = {
2829                 .ndo_open               = gsm_mux_net_open,
2830                 .ndo_stop               = gsm_mux_net_close,
2831                 .ndo_start_xmit         = gsm_mux_net_start_xmit,
2832                 .ndo_tx_timeout         = gsm_mux_net_tx_timeout,
2833         };
2834
2835         net->netdev_ops = &gsm_netdev_ops;
2836
2837         /* fill in the other fields */
2838         net->watchdog_timeo = GSM_NET_TX_TIMEOUT;
2839         net->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
2840         net->type = ARPHRD_NONE;
2841         net->tx_queue_len = 10;
2842 }
2843
2844
2845 /* caller holds the dlci mutex */
2846 static void gsm_destroy_network(struct gsm_dlci *dlci)
2847 {
2848         struct gsm_mux_net *mux_net;
2849
2850         pr_debug("destroy network interface");
2851         if (!dlci->net)
2852                 return;
2853         mux_net = netdev_priv(dlci->net);
2854         muxnet_put(mux_net);
2855 }
2856
2857
2858 /* caller holds the dlci mutex */
2859 static int gsm_create_network(struct gsm_dlci *dlci, struct gsm_netconfig *nc)
2860 {
2861         char *netname;
2862         int retval = 0;
2863         struct net_device *net;
2864         struct gsm_mux_net *mux_net;
2865
2866         if (!capable(CAP_NET_ADMIN))
2867                 return -EPERM;
2868
2869         /* Already in a non tty mode */
2870         if (dlci->adaption > 2)
2871                 return -EBUSY;
2872
2873         if (nc->protocol != htons(ETH_P_IP))
2874                 return -EPROTONOSUPPORT;
2875
2876         if (nc->adaption != 3 && nc->adaption != 4)
2877                 return -EPROTONOSUPPORT;
2878
2879         pr_debug("create network interface");
2880
2881         netname = "gsm%d";
2882         if (nc->if_name[0] != '\0')
2883                 netname = nc->if_name;
2884         net = alloc_netdev(sizeof(struct gsm_mux_net), netname,
2885                            NET_NAME_UNKNOWN, gsm_mux_net_init);
2886         if (!net) {
2887                 pr_err("alloc_netdev failed");
2888                 return -ENOMEM;
2889         }
2890         net->mtu = dlci->gsm->mtu;
2891         net->min_mtu = 8;
2892         net->max_mtu = dlci->gsm->mtu;
2893         mux_net = netdev_priv(net);
2894         mux_net->dlci = dlci;
2895         kref_init(&mux_net->ref);
2896         strncpy(nc->if_name, net->name, IFNAMSIZ); /* return net name */
2897
2898         /* reconfigure dlci for network */
2899         dlci->prev_adaption = dlci->adaption;
2900         dlci->prev_data = dlci->data;
2901         dlci->adaption = nc->adaption;
2902         dlci->data = gsm_mux_rx_netchar;
2903         dlci->net = net;
2904
2905         pr_debug("register netdev");
2906         retval = register_netdev(net);
2907         if (retval) {
2908                 pr_err("network register fail %d\n", retval);
2909                 dlci_net_free(dlci);
2910                 return retval;
2911         }
2912         return net->ifindex;    /* return network index */
2913 }
2914
2915 /* Line discipline for real tty */
2916 static struct tty_ldisc_ops tty_ldisc_packet = {
2917         .owner           = THIS_MODULE,
2918         .magic           = TTY_LDISC_MAGIC,
2919         .name            = "n_gsm",
2920         .open            = gsmld_open,
2921         .close           = gsmld_close,
2922         .flush_buffer    = gsmld_flush_buffer,
2923         .read            = gsmld_read,
2924         .write           = gsmld_write,
2925 #ifdef CONFIG_COMPAT
2926         .compat_ioctl    = gsmld_compat_ioctl,
2927 #endif
2928         .ioctl           = gsmld_ioctl,
2929         .poll            = gsmld_poll,
2930         .receive_buf     = gsmld_receive_buf,
2931         .write_wakeup    = gsmld_write_wakeup
2932 };
2933
2934 /*
2935  *      Virtual tty side
2936  */
2937
2938 #define TX_SIZE         512
2939
2940 static int gsmtty_modem_update(struct gsm_dlci *dlci, u8 brk)
2941 {
2942         u8 modembits[3];
2943         struct gsm_control *ctrl;
2944         int len = 2;
2945
2946         modembits[0] = (dlci->addr << 2) | 2 | EA;  /* DLCI, Valid, EA */
2947         modembits[1] = (gsm_encode_modem(dlci) << 1) | EA;
2948         if (brk) {
2949                 modembits[2] = (brk << 4) | 2 | EA; /* Length, Break, EA */
2950                 len++;
2951         }
2952         ctrl = gsm_control_send(dlci->gsm, CMD_MSC, modembits, len);
2953         if (ctrl == NULL)
2954                 return -ENOMEM;
2955         return gsm_control_wait(dlci->gsm, ctrl);
2956 }
2957
2958 static int gsm_carrier_raised(struct tty_port *port)
2959 {
2960         struct gsm_dlci *dlci = container_of(port, struct gsm_dlci, port);
2961         struct gsm_mux *gsm = dlci->gsm;
2962
2963         /* Not yet open so no carrier info */
2964         if (dlci->state != DLCI_OPEN)
2965                 return 0;
2966         if (debug & 2)
2967                 return 1;
2968
2969         /*
2970          * Basic mode with control channel in ADM mode may not respond
2971          * to CMD_MSC at all and modem_rx is empty.
2972          */
2973         if (gsm->encoding == 0 && gsm->dlci[0]->mode == DLCI_MODE_ADM &&
2974             !dlci->modem_rx)
2975                 return 1;
2976
2977         return dlci->modem_rx & TIOCM_CD;
2978 }
2979
2980 static void gsm_dtr_rts(struct tty_port *port, int onoff)
2981 {
2982         struct gsm_dlci *dlci = container_of(port, struct gsm_dlci, port);
2983         unsigned int modem_tx = dlci->modem_tx;
2984         if (onoff)
2985                 modem_tx |= TIOCM_DTR | TIOCM_RTS;
2986         else
2987                 modem_tx &= ~(TIOCM_DTR | TIOCM_RTS);
2988         if (modem_tx != dlci->modem_tx) {
2989                 dlci->modem_tx = modem_tx;
2990                 gsmtty_modem_update(dlci, 0);
2991         }
2992 }
2993
2994 static const struct tty_port_operations gsm_port_ops = {
2995         .carrier_raised = gsm_carrier_raised,
2996         .dtr_rts = gsm_dtr_rts,
2997         .destruct = gsm_dlci_free,
2998 };
2999
3000 static int gsmtty_install(struct tty_driver *driver, struct tty_struct *tty)
3001 {
3002         struct gsm_mux *gsm;
3003         struct gsm_dlci *dlci;
3004         unsigned int line = tty->index;
3005         unsigned int mux = line >> 6;
3006         bool alloc = false;
3007         int ret;
3008
3009         line = line & 0x3F;
3010
3011         if (mux >= MAX_MUX)
3012                 return -ENXIO;
3013         /* FIXME: we need to lock gsm_mux for lifetimes of ttys eventually */
3014         if (gsm_mux[mux] == NULL)
3015                 return -EUNATCH;
3016         if (line == 0 || line > 61)     /* 62/63 reserved */
3017                 return -ECHRNG;
3018         gsm = gsm_mux[mux];
3019         if (gsm->dead)
3020                 return -EL2HLT;
3021         /* If DLCI 0 is not yet fully open return an error.
3022         This is ok from a locking
3023         perspective as we don't have to worry about this
3024         if DLCI0 is lost */
3025         mutex_lock(&gsm->mutex);
3026         if (gsm->dlci[0] && gsm->dlci[0]->state != DLCI_OPEN) {
3027                 mutex_unlock(&gsm->mutex);
3028                 return -EL2NSYNC;
3029         }
3030         dlci = gsm->dlci[line];
3031         if (dlci == NULL) {
3032                 alloc = true;
3033                 dlci = gsm_dlci_alloc(gsm, line);
3034         }
3035         if (dlci == NULL) {
3036                 mutex_unlock(&gsm->mutex);
3037                 return -ENOMEM;
3038         }
3039         ret = tty_port_install(&dlci->port, driver, tty);
3040         if (ret) {
3041                 if (alloc)
3042                         dlci_put(dlci);
3043                 mutex_unlock(&gsm->mutex);
3044                 return ret;
3045         }
3046
3047         dlci_get(dlci);
3048         dlci_get(gsm->dlci[0]);
3049         mux_get(gsm);
3050         tty->driver_data = dlci;
3051         mutex_unlock(&gsm->mutex);
3052
3053         return 0;
3054 }
3055
3056 static int gsmtty_open(struct tty_struct *tty, struct file *filp)
3057 {
3058         struct gsm_dlci *dlci = tty->driver_data;
3059         struct tty_port *port = &dlci->port;
3060
3061         port->count++;
3062         tty_port_tty_set(port, tty);
3063
3064         dlci->modem_rx = 0;
3065         /* We could in theory open and close before we wait - eg if we get
3066            a DM straight back. This is ok as that will have caused a hangup */
3067         tty_port_set_initialized(port, 1);
3068         /* Start sending off SABM messages */
3069         gsm_dlci_begin_open(dlci);
3070         /* And wait for virtual carrier */
3071         return tty_port_block_til_ready(port, tty, filp);
3072 }
3073
3074 static void gsmtty_close(struct tty_struct *tty, struct file *filp)
3075 {
3076         struct gsm_dlci *dlci = tty->driver_data;
3077         struct gsm_mux *gsm;
3078
3079         if (dlci == NULL)
3080                 return;
3081         if (dlci->state == DLCI_CLOSED)
3082                 return;
3083         mutex_lock(&dlci->mutex);
3084         gsm_destroy_network(dlci);
3085         mutex_unlock(&dlci->mutex);
3086         gsm = dlci->gsm;
3087         if (tty_port_close_start(&dlci->port, tty, filp) == 0)
3088                 return;
3089         gsm_dlci_begin_close(dlci);
3090         if (tty_port_initialized(&dlci->port) && C_HUPCL(tty))
3091                 tty_port_lower_dtr_rts(&dlci->port);
3092         tty_port_close_end(&dlci->port, tty);
3093         tty_port_tty_set(&dlci->port, NULL);
3094         return;
3095 }
3096
3097 static void gsmtty_hangup(struct tty_struct *tty)
3098 {
3099         struct gsm_dlci *dlci = tty->driver_data;
3100         if (dlci->state == DLCI_CLOSED)
3101                 return;
3102         tty_port_hangup(&dlci->port);
3103         gsm_dlci_begin_close(dlci);
3104 }
3105
3106 static int gsmtty_write(struct tty_struct *tty, const unsigned char *buf,
3107                                                                     int len)
3108 {
3109         int sent;
3110         struct gsm_dlci *dlci = tty->driver_data;
3111         if (dlci->state == DLCI_CLOSED)
3112                 return -EINVAL;
3113         /* Stuff the bytes into the fifo queue */
3114         sent = kfifo_in_locked(dlci->fifo, buf, len, &dlci->lock);
3115         /* Need to kick the channel */
3116         gsm_dlci_data_kick(dlci);
3117         return sent;
3118 }
3119
3120 static int gsmtty_write_room(struct tty_struct *tty)
3121 {
3122         struct gsm_dlci *dlci = tty->driver_data;
3123         if (dlci->state == DLCI_CLOSED)
3124                 return -EINVAL;
3125         return TX_SIZE - kfifo_len(dlci->fifo);
3126 }
3127
3128 static int gsmtty_chars_in_buffer(struct tty_struct *tty)
3129 {
3130         struct gsm_dlci *dlci = tty->driver_data;
3131         if (dlci->state == DLCI_CLOSED)
3132                 return -EINVAL;
3133         return kfifo_len(dlci->fifo);
3134 }
3135
3136 static void gsmtty_flush_buffer(struct tty_struct *tty)
3137 {
3138         struct gsm_dlci *dlci = tty->driver_data;
3139         if (dlci->state == DLCI_CLOSED)
3140                 return;
3141         /* Caution needed: If we implement reliable transport classes
3142            then the data being transmitted can't simply be junked once
3143            it has first hit the stack. Until then we can just blow it
3144            away */
3145         kfifo_reset(dlci->fifo);
3146         /* Need to unhook this DLCI from the transmit queue logic */
3147 }
3148
3149 static void gsmtty_wait_until_sent(struct tty_struct *tty, int timeout)
3150 {
3151         /* The FIFO handles the queue so the kernel will do the right
3152            thing waiting on chars_in_buffer before calling us. No work
3153            to do here */
3154 }
3155
3156 static int gsmtty_tiocmget(struct tty_struct *tty)
3157 {
3158         struct gsm_dlci *dlci = tty->driver_data;
3159         if (dlci->state == DLCI_CLOSED)
3160                 return -EINVAL;
3161         return dlci->modem_rx;
3162 }
3163
3164 static int gsmtty_tiocmset(struct tty_struct *tty,
3165         unsigned int set, unsigned int clear)
3166 {
3167         struct gsm_dlci *dlci = tty->driver_data;
3168         unsigned int modem_tx = dlci->modem_tx;
3169
3170         if (dlci->state == DLCI_CLOSED)
3171                 return -EINVAL;
3172         modem_tx &= ~clear;
3173         modem_tx |= set;
3174
3175         if (modem_tx != dlci->modem_tx) {
3176                 dlci->modem_tx = modem_tx;
3177                 return gsmtty_modem_update(dlci, 0);
3178         }
3179         return 0;
3180 }
3181
3182
3183 static int gsmtty_ioctl(struct tty_struct *tty,
3184                         unsigned int cmd, unsigned long arg)
3185 {
3186         struct gsm_dlci *dlci = tty->driver_data;
3187         struct gsm_netconfig nc;
3188         int index;
3189
3190         if (dlci->state == DLCI_CLOSED)
3191                 return -EINVAL;
3192         switch (cmd) {
3193         case GSMIOC_ENABLE_NET:
3194                 if (copy_from_user(&nc, (void __user *)arg, sizeof(nc)))
3195                         return -EFAULT;
3196                 nc.if_name[IFNAMSIZ-1] = '\0';
3197                 /* return net interface index or error code */
3198                 mutex_lock(&dlci->mutex);
3199                 index = gsm_create_network(dlci, &nc);
3200                 mutex_unlock(&dlci->mutex);
3201                 if (copy_to_user((void __user *)arg, &nc, sizeof(nc)))
3202                         return -EFAULT;
3203                 return index;
3204         case GSMIOC_DISABLE_NET:
3205                 if (!capable(CAP_NET_ADMIN))
3206                         return -EPERM;
3207                 mutex_lock(&dlci->mutex);
3208                 gsm_destroy_network(dlci);
3209                 mutex_unlock(&dlci->mutex);
3210                 return 0;
3211         default:
3212                 return -ENOIOCTLCMD;
3213         }
3214 }
3215
3216 static void gsmtty_set_termios(struct tty_struct *tty, struct ktermios *old)
3217 {
3218         struct gsm_dlci *dlci = tty->driver_data;
3219         if (dlci->state == DLCI_CLOSED)
3220                 return;
3221         /* For the moment its fixed. In actual fact the speed information
3222            for the virtual channel can be propogated in both directions by
3223            the RPN control message. This however rapidly gets nasty as we
3224            then have to remap modem signals each way according to whether
3225            our virtual cable is null modem etc .. */
3226         tty_termios_copy_hw(&tty->termios, old);
3227 }
3228
3229 static void gsmtty_throttle(struct tty_struct *tty)
3230 {
3231         struct gsm_dlci *dlci = tty->driver_data;
3232         if (dlci->state == DLCI_CLOSED)
3233                 return;
3234         if (C_CRTSCTS(tty))
3235                 dlci->modem_tx &= ~TIOCM_DTR;
3236         dlci->throttled = 1;
3237         /* Send an MSC with DTR cleared */
3238         gsmtty_modem_update(dlci, 0);
3239 }
3240
3241 static void gsmtty_unthrottle(struct tty_struct *tty)
3242 {
3243         struct gsm_dlci *dlci = tty->driver_data;
3244         if (dlci->state == DLCI_CLOSED)
3245                 return;
3246         if (C_CRTSCTS(tty))
3247                 dlci->modem_tx |= TIOCM_DTR;
3248         dlci->throttled = 0;
3249         /* Send an MSC with DTR set */
3250         gsmtty_modem_update(dlci, 0);
3251 }
3252
3253 static int gsmtty_break_ctl(struct tty_struct *tty, int state)
3254 {
3255         struct gsm_dlci *dlci = tty->driver_data;
3256         int encode = 0; /* Off */
3257         if (dlci->state == DLCI_CLOSED)
3258                 return -EINVAL;
3259
3260         if (state == -1)        /* "On indefinitely" - we can't encode this
3261                                     properly */
3262                 encode = 0x0F;
3263         else if (state > 0) {
3264                 encode = state / 200;   /* mS to encoding */
3265                 if (encode > 0x0F)
3266                         encode = 0x0F;  /* Best effort */
3267         }
3268         return gsmtty_modem_update(dlci, encode);
3269 }
3270
3271 static void gsmtty_cleanup(struct tty_struct *tty)
3272 {
3273         struct gsm_dlci *dlci = tty->driver_data;
3274         struct gsm_mux *gsm = dlci->gsm;
3275
3276         dlci_put(dlci);
3277         dlci_put(gsm->dlci[0]);
3278         mux_put(gsm);
3279 }
3280
3281 /* Virtual ttys for the demux */
3282 static const struct tty_operations gsmtty_ops = {
3283         .install                = gsmtty_install,
3284         .open                   = gsmtty_open,
3285         .close                  = gsmtty_close,
3286         .write                  = gsmtty_write,
3287         .write_room             = gsmtty_write_room,
3288         .chars_in_buffer        = gsmtty_chars_in_buffer,
3289         .flush_buffer           = gsmtty_flush_buffer,
3290         .ioctl                  = gsmtty_ioctl,
3291         .throttle               = gsmtty_throttle,
3292         .unthrottle             = gsmtty_unthrottle,
3293         .set_termios            = gsmtty_set_termios,
3294         .hangup                 = gsmtty_hangup,
3295         .wait_until_sent        = gsmtty_wait_until_sent,
3296         .tiocmget               = gsmtty_tiocmget,
3297         .tiocmset               = gsmtty_tiocmset,
3298         .break_ctl              = gsmtty_break_ctl,
3299         .cleanup                = gsmtty_cleanup,
3300 };
3301
3302
3303
3304 static int __init gsm_init(void)
3305 {
3306         /* Fill in our line protocol discipline, and register it */
3307         int status = tty_register_ldisc(N_GSM0710, &tty_ldisc_packet);
3308         if (status != 0) {
3309                 pr_err("n_gsm: can't register line discipline (err = %d)\n",
3310                                                                 status);
3311                 return status;
3312         }
3313
3314         gsm_tty_driver = alloc_tty_driver(256);
3315         if (!gsm_tty_driver) {
3316                 tty_unregister_ldisc(N_GSM0710);
3317                 pr_err("gsm_init: tty allocation failed.\n");
3318                 return -EINVAL;
3319         }
3320         gsm_tty_driver->driver_name     = "gsmtty";
3321         gsm_tty_driver->name            = "gsmtty";
3322         gsm_tty_driver->major           = 0;    /* Dynamic */
3323         gsm_tty_driver->minor_start     = 0;
3324         gsm_tty_driver->type            = TTY_DRIVER_TYPE_SERIAL;
3325         gsm_tty_driver->subtype = SERIAL_TYPE_NORMAL;
3326         gsm_tty_driver->flags   = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV
3327                                                 | TTY_DRIVER_HARDWARE_BREAK;
3328         gsm_tty_driver->init_termios    = tty_std_termios;
3329         /* Fixme */
3330         gsm_tty_driver->init_termios.c_lflag &= ~ECHO;
3331         tty_set_operations(gsm_tty_driver, &gsmtty_ops);
3332
3333         spin_lock_init(&gsm_mux_lock);
3334
3335         if (tty_register_driver(gsm_tty_driver)) {
3336                 put_tty_driver(gsm_tty_driver);
3337                 tty_unregister_ldisc(N_GSM0710);
3338                 pr_err("gsm_init: tty registration failed.\n");
3339                 return -EBUSY;
3340         }
3341         pr_debug("gsm_init: loaded as %d,%d.\n",
3342                         gsm_tty_driver->major, gsm_tty_driver->minor_start);
3343         return 0;
3344 }
3345
3346 static void __exit gsm_exit(void)
3347 {
3348         int status = tty_unregister_ldisc(N_GSM0710);
3349         if (status != 0)
3350                 pr_err("n_gsm: can't unregister line discipline (err = %d)\n",
3351                                                                 status);
3352         tty_unregister_driver(gsm_tty_driver);
3353         put_tty_driver(gsm_tty_driver);
3354 }
3355
3356 module_init(gsm_init);
3357 module_exit(gsm_exit);
3358
3359
3360 MODULE_LICENSE("GPL");
3361 MODULE_ALIAS_LDISC(N_GSM0710);