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