2 * Common data handling layer for ser_gigaset and usb_gigaset
4 * Copyright (c) 2005 by Tilman Schmidt <tilman@imap.cc>,
5 * Hansjoerg Lipp <hjlipp@web.de>,
8 * =====================================================================
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 * =====================================================================
17 #include <linux/crc-ccitt.h>
18 #include <linux/bitrev.h>
19 #include <linux/export.h>
21 /* check if byte must be stuffed/escaped
22 * I'm not sure which data should be encoded.
23 * Therefore I will go the hard way and encode every value
24 * less than 0x20, the flag sequence and the control escape char.
26 static inline int muststuff(unsigned char c
)
28 if (c
< PPP_TRANS
) return 1;
29 if (c
== PPP_FLAG
) return 1;
30 if (c
== PPP_ESCAPE
) return 1;
31 /* other possible candidates: */
32 /* 0x91: XON with parity set */
33 /* 0x93: XOFF with parity set */
37 /* == data input =========================================================== */
39 /* process a block of received bytes in command mode
40 * (mstate != MS_LOCKED && (inputstate & INS_command))
41 * Append received bytes to the command response buffer and forward them
42 * line by line to the response handler. Exit whenever a mode/state change
43 * might have occurred.
44 * Note: Received lines may be terminated by CR, LF, or CR LF, which will be
45 * removed before passing the line to the response handler.
47 * number of processed bytes
49 static unsigned cmd_loop(unsigned numbytes
, struct inbuf_t
*inbuf
)
51 unsigned char *src
= inbuf
->data
+ inbuf
->head
;
52 struct cardstate
*cs
= inbuf
->cs
;
53 unsigned cbytes
= cs
->cbytes
;
54 unsigned procbytes
= 0;
57 while (procbytes
< numbytes
) {
63 if (cbytes
== 0 && cs
->respdata
[0] == '\r') {
64 /* collapse LF with preceding CR */
68 /* --v-- fall through --v-- */
70 /* end of message line, pass to response handler */
71 if (cbytes
>= MAX_RESP_SIZE
) {
72 dev_warn(cs
->dev
, "response too large (%d)\n",
74 cbytes
= MAX_RESP_SIZE
;
77 gigaset_dbg_buffer(DEBUG_TRANSCMD
, "received response",
78 cbytes
, cs
->respdata
);
79 gigaset_handle_modem_response(cs
);
82 /* store EOL byte for CRLF collapsing */
85 /* cs->dle may have changed */
86 if (cs
->dle
&& !(inbuf
->inputstate
& INS_DLE_command
))
87 inbuf
->inputstate
&= ~INS_command
;
89 /* return for reevaluating state */
93 if (inbuf
->inputstate
& INS_DLE_char
) {
94 /* quoted DLE: clear quote flag */
95 inbuf
->inputstate
&= ~INS_DLE_char
;
97 (inbuf
->inputstate
& INS_DLE_command
)) {
98 /* DLE escape, pass up for handling */
99 inbuf
->inputstate
|= INS_DLE_char
;
102 /* quoted or not in DLE mode: treat as regular data */
103 /* --v-- fall through --v-- */
105 /* append to line buffer if possible */
106 if (cbytes
< MAX_RESP_SIZE
)
107 cs
->respdata
[cbytes
] = c
;
116 /* process a block of received bytes in lock mode
117 * All received bytes are passed unmodified to the tty i/f.
119 * number of processed bytes
121 static unsigned lock_loop(unsigned numbytes
, struct inbuf_t
*inbuf
)
123 unsigned char *src
= inbuf
->data
+ inbuf
->head
;
125 gigaset_dbg_buffer(DEBUG_LOCKCMD
, "received response", numbytes
, src
);
126 gigaset_if_receive(inbuf
->cs
, src
, numbytes
);
130 /* process a block of received bytes in HDLC data mode
131 * (mstate != MS_LOCKED && !(inputstate & INS_command) && proto2 == L2_HDLC)
132 * Collect HDLC frames, undoing byte stuffing and watching for DLE escapes.
133 * When a frame is complete, check the FCS and pass valid frames to the LL.
134 * If DLE is encountered, return immediately to let the caller handle it.
136 * number of processed bytes
138 static unsigned hdlc_loop(unsigned numbytes
, struct inbuf_t
*inbuf
)
140 struct cardstate
*cs
= inbuf
->cs
;
141 struct bc_state
*bcs
= cs
->bcs
;
142 int inputstate
= bcs
->inputstate
;
143 __u16 fcs
= bcs
->rx_fcs
;
144 struct sk_buff
*skb
= bcs
->rx_skb
;
145 unsigned char *src
= inbuf
->data
+ inbuf
->head
;
146 unsigned procbytes
= 0;
149 if (inputstate
& INS_byte_stuff
) {
152 inputstate
&= ~INS_byte_stuff
;
156 while (procbytes
< numbytes
) {
160 if (inputstate
& INS_DLE_char
) {
161 /* quoted DLE: clear quote flag */
162 inputstate
&= ~INS_DLE_char
;
163 } else if (cs
->dle
|| (inputstate
& INS_DLE_command
)) {
164 /* DLE escape, pass up for handling */
165 inputstate
|= INS_DLE_char
;
170 if (c
== PPP_ESCAPE
) {
171 /* byte stuffing indicator: pull in next byte */
172 if (procbytes
>= numbytes
) {
173 /* end of buffer, save for later processing */
174 inputstate
|= INS_byte_stuff
;
181 if (inputstate
& INS_DLE_char
) {
182 /* quoted DLE: clear quote flag */
183 inputstate
&= ~INS_DLE_char
;
184 } else if (cs
->dle
||
185 (inputstate
& INS_DLE_command
)) {
186 /* DLE escape, pass up for handling */
188 INS_DLE_char
| INS_byte_stuff
;
193 #ifdef CONFIG_GIGASET_DEBUG
195 gig_dbg(DEBUG_HDLC
, "byte stuffed: 0x%02x", c
);
197 } else if (c
== PPP_FLAG
) {
198 /* end of frame: process content if any */
199 if (inputstate
& INS_have_data
) {
201 "7e----------------------------");
203 /* check and pass received frame */
206 gigaset_isdn_rcv_err(bcs
);
207 } else if (skb
->len
< 2) {
208 /* frame too short for FCS */
210 "short frame (%d)\n",
212 gigaset_isdn_rcv_err(bcs
);
213 dev_kfree_skb_any(skb
);
214 } else if (fcs
!= PPP_GOODFCS
) {
215 /* frame check error */
217 "Checksum failed, %u bytes corrupted!\n",
219 gigaset_isdn_rcv_err(bcs
);
220 dev_kfree_skb_any(skb
);
223 __skb_trim(skb
, skb
->len
- 2);
224 gigaset_skb_rcvd(bcs
, skb
);
227 /* prepare reception of next frame */
228 inputstate
&= ~INS_have_data
;
229 skb
= gigaset_new_rx_skb(bcs
);
231 /* empty frame (7E 7E) */
232 #ifdef CONFIG_GIGASET_DEBUG
237 gigaset_isdn_rcv_err(bcs
);
238 skb
= gigaset_new_rx_skb(bcs
);
244 #ifdef CONFIG_GIGASET_DEBUG
245 } else if (muststuff(c
)) {
246 /* Should not happen. Possible after ZDLE=1<CR><LF>. */
247 gig_dbg(DEBUG_HDLC
, "not byte stuffed: 0x%02x", c
);
251 /* regular data byte, append to skb */
252 #ifdef CONFIG_GIGASET_DEBUG
253 if (!(inputstate
& INS_have_data
)) {
254 gig_dbg(DEBUG_HDLC
, "7e (%d x) ================",
259 inputstate
|= INS_have_data
;
261 if (skb
->len
>= bcs
->rx_bufsize
) {
262 dev_warn(cs
->dev
, "received packet too long\n");
263 dev_kfree_skb_any(skb
);
264 /* skip remainder of packet */
265 bcs
->rx_skb
= skb
= NULL
;
267 *__skb_put(skb
, 1) = c
;
268 fcs
= crc_ccitt_byte(fcs
, c
);
273 bcs
->inputstate
= inputstate
;
278 /* process a block of received bytes in transparent data mode
279 * (mstate != MS_LOCKED && !(inputstate & INS_command) && proto2 != L2_HDLC)
280 * Invert bytes, undoing byte stuffing and watching for DLE escapes.
281 * If DLE is encountered, return immediately to let the caller handle it.
283 * number of processed bytes
285 static unsigned iraw_loop(unsigned numbytes
, struct inbuf_t
*inbuf
)
287 struct cardstate
*cs
= inbuf
->cs
;
288 struct bc_state
*bcs
= cs
->bcs
;
289 int inputstate
= bcs
->inputstate
;
290 struct sk_buff
*skb
= bcs
->rx_skb
;
291 unsigned char *src
= inbuf
->data
+ inbuf
->head
;
292 unsigned procbytes
= 0;
296 /* skip this block */
297 gigaset_new_rx_skb(bcs
);
301 while (procbytes
< numbytes
&& skb
->len
< bcs
->rx_bufsize
) {
306 if (inputstate
& INS_DLE_char
) {
307 /* quoted DLE: clear quote flag */
308 inputstate
&= ~INS_DLE_char
;
309 } else if (cs
->dle
|| (inputstate
& INS_DLE_command
)) {
310 /* DLE escape, pass up for handling */
311 inputstate
|= INS_DLE_char
;
316 /* regular data byte: append to current skb */
317 inputstate
|= INS_have_data
;
318 *__skb_put(skb
, 1) = bitrev8(c
);
322 if (inputstate
& INS_have_data
) {
323 gigaset_skb_rcvd(bcs
, skb
);
324 inputstate
&= ~INS_have_data
;
325 gigaset_new_rx_skb(bcs
);
328 bcs
->inputstate
= inputstate
;
332 /* process DLE escapes
333 * Called whenever a DLE sequence might be encountered in the input stream.
334 * Either processes the entire DLE sequence or, if that isn't possible,
335 * notes the fact that an initial DLE has been received in the INS_DLE_char
336 * inputstate flag and resumes processing of the sequence on the next call.
338 static void handle_dle(struct inbuf_t
*inbuf
)
340 struct cardstate
*cs
= inbuf
->cs
;
342 if (cs
->mstate
== MS_LOCKED
)
343 return; /* no DLE processing in lock mode */
345 if (!(inbuf
->inputstate
& INS_DLE_char
)) {
347 if (inbuf
->data
[inbuf
->head
] == DLE_FLAG
&&
348 (cs
->dle
|| inbuf
->inputstate
& INS_DLE_command
)) {
349 /* start of DLE sequence */
351 if (inbuf
->head
== inbuf
->tail
||
352 inbuf
->head
== RBUFSIZE
) {
353 /* end of buffer, save for later processing */
354 inbuf
->inputstate
|= INS_DLE_char
;
358 /* regular data byte */
363 /* consume pending DLE */
364 inbuf
->inputstate
&= ~INS_DLE_char
;
366 switch (inbuf
->data
[inbuf
->head
]) {
367 case 'X': /* begin of event message */
368 if (inbuf
->inputstate
& INS_command
)
370 "received <DLE>X in command mode\n");
371 inbuf
->inputstate
|= INS_command
| INS_DLE_command
;
372 inbuf
->head
++; /* byte consumed */
374 case '.': /* end of event message */
375 if (!(inbuf
->inputstate
& INS_DLE_command
))
377 "received <DLE>. without <DLE>X\n");
378 inbuf
->inputstate
&= ~INS_DLE_command
;
379 /* return to data mode if in DLE mode */
381 inbuf
->inputstate
&= ~INS_command
;
382 inbuf
->head
++; /* byte consumed */
384 case DLE_FLAG
: /* DLE in data stream */
386 inbuf
->inputstate
|= INS_DLE_char
;
387 if (!(cs
->dle
|| inbuf
->inputstate
& INS_DLE_command
))
389 "received <DLE><DLE> not in DLE mode\n");
390 break; /* quoted byte left in buffer */
392 dev_notice(cs
->dev
, "received <DLE><%02x>\n",
393 inbuf
->data
[inbuf
->head
]);
394 /* quoted byte left in buffer */
399 * gigaset_m10x_input() - process a block of data received from the device
400 * @inbuf: received data and device descriptor structure.
402 * Called by hardware module {ser,usb}_gigaset with a block of received
403 * bytes. Separates the bytes received over the serial data channel into
404 * user data and command replies (locked/unlocked) according to the
405 * current state of the interface.
407 void gigaset_m10x_input(struct inbuf_t
*inbuf
)
409 struct cardstate
*cs
= inbuf
->cs
;
410 unsigned numbytes
, procbytes
;
412 gig_dbg(DEBUG_INTR
, "buffer state: %u -> %u", inbuf
->head
, inbuf
->tail
);
414 while (inbuf
->head
!= inbuf
->tail
) {
415 /* check for DLE escape */
418 /* process a contiguous block of bytes */
419 numbytes
= (inbuf
->head
> inbuf
->tail
?
420 RBUFSIZE
: inbuf
->tail
) - inbuf
->head
;
421 gig_dbg(DEBUG_INTR
, "processing %u bytes", numbytes
);
423 * numbytes may be 0 if handle_dle() ate the last byte.
424 * This does no harm, *_loop() will just return 0 immediately.
427 if (cs
->mstate
== MS_LOCKED
)
428 procbytes
= lock_loop(numbytes
, inbuf
);
429 else if (inbuf
->inputstate
& INS_command
)
430 procbytes
= cmd_loop(numbytes
, inbuf
);
431 else if (cs
->bcs
->proto2
== L2_HDLC
)
432 procbytes
= hdlc_loop(numbytes
, inbuf
);
434 procbytes
= iraw_loop(numbytes
, inbuf
);
435 inbuf
->head
+= procbytes
;
437 /* check for buffer wraparound */
438 if (inbuf
->head
>= RBUFSIZE
)
441 gig_dbg(DEBUG_INTR
, "head set to %u", inbuf
->head
);
444 EXPORT_SYMBOL_GPL(gigaset_m10x_input
);
447 /* == data output ========================================================== */
450 * Encode a data packet into an octet stuffed HDLC frame with FCS,
451 * opening and closing flags, preserving headroom data.
453 * skb skb containing original packet (freed upon return)
455 * pointer to newly allocated skb containing the result frame
456 * and the original link layer header, NULL on error
458 static struct sk_buff
*HDLC_Encode(struct sk_buff
*skb
)
460 struct sk_buff
*hdlc_skb
;
465 unsigned int stuf_cnt
;
474 fcs
= crc_ccitt_byte(fcs
, *cp
++);
476 fcs
^= 0xffff; /* complement */
478 /* size of new buffer: original size + number of stuffing bytes
479 * + 2 bytes FCS + 2 stuffing bytes for FCS (if needed) + 2 flag bytes
480 * + room for link layer header
482 hdlc_skb
= dev_alloc_skb(skb
->len
+ stuf_cnt
+ 6 + skb
->mac_len
);
484 dev_kfree_skb_any(skb
);
488 /* Copy link layer header into new skb */
489 skb_reset_mac_header(hdlc_skb
);
490 skb_reserve(hdlc_skb
, skb
->mac_len
);
491 memcpy(skb_mac_header(hdlc_skb
), skb_mac_header(skb
), skb
->mac_len
);
492 hdlc_skb
->mac_len
= skb
->mac_len
;
494 /* Add flag sequence in front of everything.. */
495 *(skb_put(hdlc_skb
, 1)) = PPP_FLAG
;
497 /* Perform byte stuffing while copying data. */
499 if (muststuff(*skb
->data
)) {
500 *(skb_put(hdlc_skb
, 1)) = PPP_ESCAPE
;
501 *(skb_put(hdlc_skb
, 1)) = (*skb
->data
++) ^ PPP_TRANS
;
503 *(skb_put(hdlc_skb
, 1)) = *skb
->data
++;
506 /* Finally add FCS (byte stuffed) and flag sequence */
507 c
= (fcs
& 0x00ff); /* least significant byte first */
509 *(skb_put(hdlc_skb
, 1)) = PPP_ESCAPE
;
512 *(skb_put(hdlc_skb
, 1)) = c
;
514 c
= ((fcs
>> 8) & 0x00ff);
516 *(skb_put(hdlc_skb
, 1)) = PPP_ESCAPE
;
519 *(skb_put(hdlc_skb
, 1)) = c
;
521 *(skb_put(hdlc_skb
, 1)) = PPP_FLAG
;
523 dev_kfree_skb_any(skb
);
528 * Encode a data packet into an octet stuffed raw bit inverted frame,
529 * preserving headroom data.
531 * skb skb containing original packet (freed upon return)
533 * pointer to newly allocated skb containing the result frame
534 * and the original link layer header, NULL on error
536 static struct sk_buff
*iraw_encode(struct sk_buff
*skb
)
538 struct sk_buff
*iraw_skb
;
543 /* size of new buffer (worst case = every byte must be stuffed):
544 * 2 * original size + room for link layer header
546 iraw_skb
= dev_alloc_skb(2 * skb
->len
+ skb
->mac_len
);
548 dev_kfree_skb_any(skb
);
552 /* copy link layer header into new skb */
553 skb_reset_mac_header(iraw_skb
);
554 skb_reserve(iraw_skb
, skb
->mac_len
);
555 memcpy(skb_mac_header(iraw_skb
), skb_mac_header(skb
), skb
->mac_len
);
556 iraw_skb
->mac_len
= skb
->mac_len
;
558 /* copy and stuff data */
564 *(skb_put(iraw_skb
, 1)) = c
;
565 *(skb_put(iraw_skb
, 1)) = c
;
567 dev_kfree_skb_any(skb
);
572 * gigaset_m10x_send_skb() - queue an skb for sending
573 * @bcs: B channel descriptor structure.
574 * @skb: data to send.
576 * Called by LL to encode and queue an skb for sending, and start
577 * transmission if necessary.
578 * Once the payload data has been transmitted completely, gigaset_skb_sent()
579 * will be called with the skb's link layer header preserved.
582 * number of bytes accepted for sending (skb->len) if ok,
583 * error code < 0 (eg. -ENOMEM) on error
585 int gigaset_m10x_send_skb(struct bc_state
*bcs
, struct sk_buff
*skb
)
587 struct cardstate
*cs
= bcs
->cs
;
588 unsigned len
= skb
->len
;
591 if (bcs
->proto2
== L2_HDLC
)
592 skb
= HDLC_Encode(skb
);
594 skb
= iraw_encode(skb
);
597 "unable to allocate memory for encoding!\n");
601 skb_queue_tail(&bcs
->squeue
, skb
);
602 spin_lock_irqsave(&cs
->lock
, flags
);
604 tasklet_schedule(&cs
->write_tasklet
);
605 spin_unlock_irqrestore(&cs
->lock
, flags
);
607 return len
; /* ok so far */
609 EXPORT_SYMBOL_GPL(gigaset_m10x_send_skb
);