blob: ee0e07b4a13d0c28e3be90ade952059ce4f9e572 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* r3964 linediscipline for linux
2 *
3 * -----------------------------------------------------------
4 * Copyright by
5 * Philips Automation Projects
6 * Kassel (Germany)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * -----------------------------------------------------------
8 * This software may be used and distributed according to the terms of
9 * the GNU General Public License, incorporated herein by reference.
10 *
11 * Author:
12 * L. Haag
13 *
14 * $Log: n_r3964.c,v $
15 * Revision 1.10 2001/03/18 13:02:24 dwmw2
16 * Fix timer usage, use spinlocks properly.
17 *
18 * Revision 1.9 2001/03/18 12:52:14 dwmw2
19 * Merge changes in 2.4.2
20 *
21 * Revision 1.8 2000/03/23 14:14:54 dwmw2
22 * Fix race in sleeping in r3964_read()
23 *
24 * Revision 1.7 1999/28/08 11:41:50 dwmw2
25 * Port to 2.3 kernel
26 *
27 * Revision 1.6 1998/09/30 00:40:40 dwmw2
28 * Fixed compilation on 2.0.x kernels
29 * Updated to newly registered tty-ldisc number 9
30 *
31 * Revision 1.5 1998/09/04 21:57:36 dwmw2
32 * Signal handling bug fixes, port to 2.1.x.
33 *
34 * Revision 1.4 1998/04/02 20:26:59 lhaag
35 * select, blocking, ...
36 *
37 * Revision 1.3 1998/02/12 18:58:43 root
38 * fixed some memory leaks
39 * calculation of checksum characters
40 *
41 * Revision 1.2 1998/02/07 13:03:34 root
42 * ioctl read_telegram
43 *
44 * Revision 1.1 1998/02/06 19:21:03 root
45 * Initial revision
46 *
47 *
48 */
49
50#include <linux/module.h>
51#include <linux/kernel.h>
52#include <linux/sched.h>
53#include <linux/types.h>
54#include <linux/fcntl.h>
55#include <linux/interrupt.h>
56#include <linux/ptrace.h>
57#include <linux/ioport.h>
58#include <linux/in.h>
59#include <linux/slab.h>
60#include <linux/tty.h>
61#include <linux/errno.h>
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080062#include <linux/string.h> /* used in new tty drivers */
63#include <linux/signal.h> /* used in new tty drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <linux/ioctl.h>
65#include <linux/n_r3964.h>
66#include <linux/poll.h>
67#include <linux/init.h>
68#include <asm/uaccess.h>
69
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080070/*#define DEBUG_QUEUE*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72/* Log successful handshake and protocol operations */
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080073/*#define DEBUG_PROTO_S*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75/* Log handshake and protocol errors: */
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080076/*#define DEBUG_PROTO_E*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78/* Log Linediscipline operations (open, close, read, write...): */
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080079/*#define DEBUG_LDISC*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81/* Log module and memory operations (init, cleanup; kmalloc, kfree): */
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080082/*#define DEBUG_MODUL*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84/* Macro helpers for debug output: */
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080085#define TRACE(format, args...) printk("r3964: " format "\n" , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87#ifdef DEBUG_MODUL
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080088#define TRACE_M(format, args...) printk("r3964: " format "\n" , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#else
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080090#define TRACE_M(fmt, arg...) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#ifdef DEBUG_PROTO_S
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080093#define TRACE_PS(format, args...) printk("r3964: " format "\n" , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#else
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080095#define TRACE_PS(fmt, arg...) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#ifdef DEBUG_PROTO_E
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080098#define TRACE_PE(format, args...) printk("r3964: " format "\n" , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#else
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800100#define TRACE_PE(fmt, arg...) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#ifdef DEBUG_LDISC
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800103#define TRACE_L(format, args...) printk("r3964: " format "\n" , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#else
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800105#define TRACE_L(fmt, arg...) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#ifdef DEBUG_QUEUE
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800108#define TRACE_Q(format, args...) printk("r3964: " format "\n" , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#else
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800110#define TRACE_Q(fmt, arg...) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112static void add_tx_queue(struct r3964_info *, struct r3964_block_header *);
113static void remove_from_tx_queue(struct r3964_info *pInfo, int error_code);
114static void put_char(struct r3964_info *pInfo, unsigned char ch);
115static void trigger_transmit(struct r3964_info *pInfo);
116static void retry_transmit(struct r3964_info *pInfo);
117static void transmit_block(struct r3964_info *pInfo);
118static void receive_char(struct r3964_info *pInfo, const unsigned char c);
119static void receive_error(struct r3964_info *pInfo, const char flag);
120static void on_timeout(unsigned long priv);
Eric W. Biederman3cec5562006-12-13 00:35:10 -0800121static int enable_signals(struct r3964_info *pInfo, struct pid *pid, int arg);
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800122static int read_telegram(struct r3964_info *pInfo, struct pid *pid,
123 unsigned char __user * buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124static void add_msg(struct r3964_client_info *pClient, int msg_id, int arg,
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800125 int error_code, struct r3964_block_header *pBlock);
126static struct r3964_message *remove_msg(struct r3964_info *pInfo,
127 struct r3964_client_info *pClient);
128static void remove_client_block(struct r3964_info *pInfo,
129 struct r3964_client_info *pClient);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800131static int r3964_open(struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132static void r3964_close(struct tty_struct *tty);
133static ssize_t r3964_read(struct tty_struct *tty, struct file *file,
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800134 unsigned char __user * buf, size_t nr);
135static ssize_t r3964_write(struct tty_struct *tty, struct file *file,
136 const unsigned char *buf, size_t nr);
137static int r3964_ioctl(struct tty_struct *tty, struct file *file,
138 unsigned int cmd, unsigned long arg);
139static void r3964_set_termios(struct tty_struct *tty, struct ktermios *old);
140static unsigned int r3964_poll(struct tty_struct *tty, struct file *file,
141 struct poll_table_struct *wait);
Linus Torvalds55db4c62011-06-04 06:33:24 +0900142static void r3964_receive_buf(struct tty_struct *tty, const unsigned char *cp,
143 char *fp, int count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Alan Coxa352def2008-07-16 21:53:12 +0100145static struct tty_ldisc_ops tty_ldisc_N_R3964 = {
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800146 .owner = THIS_MODULE,
147 .magic = TTY_LDISC_MAGIC,
148 .name = "R3964",
149 .open = r3964_open,
150 .close = r3964_close,
151 .read = r3964_read,
152 .write = r3964_write,
153 .ioctl = r3964_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 .set_termios = r3964_set_termios,
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800155 .poll = r3964_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 .receive_buf = r3964_receive_buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157};
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159static void dump_block(const unsigned char *block, unsigned int length)
160{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800161 unsigned int i, j;
162 char linebuf[16 * 3 + 1];
163
164 for (i = 0; i < length; i += 16) {
165 for (j = 0; (j < 16) && (j + i < length); j++) {
166 sprintf(linebuf + 3 * j, "%02x ", block[i + j]);
167 }
168 linebuf[3 * j] = '\0';
169 TRACE_PS("%s", linebuf);
170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173/*************************************************************
174 * Driver initialisation
175 *************************************************************/
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177/*************************************************************
178 * Module support routines
179 *************************************************************/
180
181static void __exit r3964_exit(void)
182{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800183 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800185 TRACE_M("cleanup_module()");
186
187 status = tty_unregister_ldisc(N_R3964);
188
189 if (status != 0) {
190 printk(KERN_ERR "r3964: error unregistering linediscipline: "
191 "%d\n", status);
192 } else {
193 TRACE_L("linediscipline successfully unregistered");
194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
197static int __init r3964_init(void)
198{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800199 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800201 printk("r3964: Philips r3964 Driver $Revision: 1.10 $\n");
202
203 /*
204 * Register the tty line discipline
205 */
206
207 status = tty_register_ldisc(N_R3964, &tty_ldisc_N_R3964);
208 if (status == 0) {
209 TRACE_L("line discipline %d registered", N_R3964);
210 TRACE_L("flags=%x num=%x", tty_ldisc_N_R3964.flags,
211 tty_ldisc_N_R3964.num);
212 TRACE_L("open=%p", tty_ldisc_N_R3964.open);
213 TRACE_L("tty_ldisc_N_R3964 = %p", &tty_ldisc_N_R3964);
214 } else {
215 printk(KERN_ERR "r3964: error registering line discipline: "
216 "%d\n", status);
217 }
218 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
221module_init(r3964_init);
222module_exit(r3964_exit);
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224/*************************************************************
225 * Protocol implementation routines
226 *************************************************************/
227
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800228static void add_tx_queue(struct r3964_info *pInfo,
229 struct r3964_block_header *pHeader)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800231 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800233 spin_lock_irqsave(&pInfo->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800235 pHeader->next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800237 if (pInfo->tx_last == NULL) {
238 pInfo->tx_first = pInfo->tx_last = pHeader;
239 } else {
240 pInfo->tx_last->next = pHeader;
241 pInfo->tx_last = pHeader;
242 }
243
244 spin_unlock_irqrestore(&pInfo->lock, flags);
245
246 TRACE_Q("add_tx_queue %p, length %d, tx_first = %p",
247 pHeader, pHeader->length, pInfo->tx_first);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249
250static void remove_from_tx_queue(struct r3964_info *pInfo, int error_code)
251{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800252 struct r3964_block_header *pHeader;
253 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254#ifdef DEBUG_QUEUE
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800255 struct r3964_block_header *pDump;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256#endif
257
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800258 pHeader = pInfo->tx_first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800260 if (pHeader == NULL)
261 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800263#ifdef DEBUG_QUEUE
264 printk("r3964: remove_from_tx_queue: %p, length %u - ",
265 pHeader, pHeader->length);
266 for (pDump = pHeader; pDump; pDump = pDump->next)
267 printk("%p ", pDump);
268 printk("\n");
269#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800271 if (pHeader->owner) {
272 if (error_code) {
273 add_msg(pHeader->owner, R3964_MSG_ACK, 0,
274 error_code, NULL);
275 } else {
276 add_msg(pHeader->owner, R3964_MSG_ACK, pHeader->length,
277 error_code, NULL);
278 }
Peter Hurley9b9ab1b2015-10-10 16:00:55 -0400279 wake_up_interruptible(&pInfo->tty->read_wait);
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800282 spin_lock_irqsave(&pInfo->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800284 pInfo->tx_first = pHeader->next;
285 if (pInfo->tx_first == NULL) {
286 pInfo->tx_last = NULL;
287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800289 spin_unlock_irqrestore(&pInfo->lock, flags);
290
291 kfree(pHeader);
292 TRACE_M("remove_from_tx_queue - kfree %p", pHeader);
293
294 TRACE_Q("remove_from_tx_queue: tx_first = %p, tx_last = %p",
295 pInfo->tx_first, pInfo->tx_last);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800298static void add_rx_queue(struct r3964_info *pInfo,
299 struct r3964_block_header *pHeader)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800301 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800303 spin_lock_irqsave(&pInfo->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800305 pHeader->next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800307 if (pInfo->rx_last == NULL) {
308 pInfo->rx_first = pInfo->rx_last = pHeader;
309 } else {
310 pInfo->rx_last->next = pHeader;
311 pInfo->rx_last = pHeader;
312 }
313 pInfo->blocks_in_rx_queue++;
314
315 spin_unlock_irqrestore(&pInfo->lock, flags);
316
317 TRACE_Q("add_rx_queue: %p, length = %d, rx_first = %p, count = %d",
318 pHeader, pHeader->length,
319 pInfo->rx_first, pInfo->blocks_in_rx_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
322static void remove_from_rx_queue(struct r3964_info *pInfo,
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800323 struct r3964_block_header *pHeader)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800325 unsigned long flags;
326 struct r3964_block_header *pFind;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800328 if (pHeader == NULL)
329 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800331 TRACE_Q("remove_from_rx_queue: rx_first = %p, rx_last = %p, count = %d",
332 pInfo->rx_first, pInfo->rx_last, pInfo->blocks_in_rx_queue);
333 TRACE_Q("remove_from_rx_queue: %p, length %u",
334 pHeader, pHeader->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800336 spin_lock_irqsave(&pInfo->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800338 if (pInfo->rx_first == pHeader) {
339 /* Remove the first block in the linked list: */
340 pInfo->rx_first = pHeader->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800342 if (pInfo->rx_first == NULL) {
343 pInfo->rx_last = NULL;
344 }
345 pInfo->blocks_in_rx_queue--;
346 } else {
347 /* Find block to remove: */
348 for (pFind = pInfo->rx_first; pFind; pFind = pFind->next) {
349 if (pFind->next == pHeader) {
350 /* Got it. */
351 pFind->next = pHeader->next;
352 pInfo->blocks_in_rx_queue--;
353 if (pFind->next == NULL) {
354 /* Oh, removed the last one! */
355 pInfo->rx_last = pFind;
356 }
357 break;
358 }
359 }
360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800362 spin_unlock_irqrestore(&pInfo->lock, flags);
363
364 kfree(pHeader);
365 TRACE_M("remove_from_rx_queue - kfree %p", pHeader);
366
367 TRACE_Q("remove_from_rx_queue: rx_first = %p, rx_last = %p, count = %d",
368 pInfo->rx_first, pInfo->rx_last, pInfo->blocks_in_rx_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
371static void put_char(struct r3964_info *pInfo, unsigned char ch)
372{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800373 struct tty_struct *tty = pInfo->tty;
Alan Coxf34d7a52008-04-30 00:54:13 -0700374 /* FIXME: put_char should not be called from an IRQ */
Alan Cox51383f62008-10-13 10:44:57 +0100375 tty_put_char(tty, ch);
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800376 pInfo->bcc ^= ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
379static void flush(struct r3964_info *pInfo)
380{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800381 struct tty_struct *tty = pInfo->tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Alan Coxf34d7a52008-04-30 00:54:13 -0700383 if (tty == NULL || tty->ops->flush_chars == NULL)
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800384 return;
Alan Coxf34d7a52008-04-30 00:54:13 -0700385 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
388static void trigger_transmit(struct r3964_info *pInfo)
389{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800390 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800392 spin_lock_irqsave(&pInfo->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800394 if ((pInfo->state == R3964_IDLE) && (pInfo->tx_first != NULL)) {
395 pInfo->state = R3964_TX_REQUEST;
396 pInfo->nRetry = 0;
397 pInfo->flags &= ~R3964_ERROR;
398 mod_timer(&pInfo->tmr, jiffies + R3964_TO_QVZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800400 spin_unlock_irqrestore(&pInfo->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800402 TRACE_PS("trigger_transmit - sent STX");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800404 put_char(pInfo, STX);
405 flush(pInfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800407 pInfo->bcc = 0;
408 } else {
409 spin_unlock_irqrestore(&pInfo->lock, flags);
410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
413static void retry_transmit(struct r3964_info *pInfo)
414{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800415 if (pInfo->nRetry < R3964_MAX_RETRIES) {
416 TRACE_PE("transmission failed. Retry #%d", pInfo->nRetry);
417 pInfo->bcc = 0;
418 put_char(pInfo, STX);
419 flush(pInfo);
420 pInfo->state = R3964_TX_REQUEST;
421 pInfo->nRetry++;
422 mod_timer(&pInfo->tmr, jiffies + R3964_TO_QVZ);
423 } else {
424 TRACE_PE("transmission failed after %d retries",
425 R3964_MAX_RETRIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800427 remove_from_tx_queue(pInfo, R3964_TX_FAIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800429 put_char(pInfo, NAK);
430 flush(pInfo);
431 pInfo->state = R3964_IDLE;
432
433 trigger_transmit(pInfo);
434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435}
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437static void transmit_block(struct r3964_info *pInfo)
438{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800439 struct tty_struct *tty = pInfo->tty;
440 struct r3964_block_header *pBlock = pInfo->tx_first;
441 int room = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Alan Coxf34d7a52008-04-30 00:54:13 -0700443 if (tty == NULL || pBlock == NULL) {
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800444 return;
445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Alan Coxf34d7a52008-04-30 00:54:13 -0700447 room = tty_write_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800449 TRACE_PS("transmit_block %p, room %d, length %d",
450 pBlock, room, pBlock->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800452 while (pInfo->tx_position < pBlock->length) {
453 if (room < 2)
454 break;
455
456 if (pBlock->data[pInfo->tx_position] == DLE) {
457 /* send additional DLE char: */
458 put_char(pInfo, DLE);
459 }
460 put_char(pInfo, pBlock->data[pInfo->tx_position++]);
461
462 room--;
463 }
464
465 if ((pInfo->tx_position == pBlock->length) && (room >= 3)) {
466 put_char(pInfo, DLE);
467 put_char(pInfo, ETX);
468 if (pInfo->flags & R3964_BCC) {
469 put_char(pInfo, pInfo->bcc);
470 }
471 pInfo->state = R3964_WAIT_FOR_TX_ACK;
472 mod_timer(&pInfo->tmr, jiffies + R3964_TO_QVZ);
473 }
474 flush(pInfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
476
477static void on_receive_block(struct r3964_info *pInfo)
478{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800479 unsigned int length;
480 struct r3964_client_info *pClient;
481 struct r3964_block_header *pBlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800483 length = pInfo->rx_position;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800485 /* compare byte checksum characters: */
486 if (pInfo->flags & R3964_BCC) {
487 if (pInfo->bcc != pInfo->last_rx) {
488 TRACE_PE("checksum error - got %x but expected %x",
489 pInfo->last_rx, pInfo->bcc);
490 pInfo->flags |= R3964_CHECKSUM;
491 }
492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800494 /* check for errors (parity, overrun,...): */
495 if (pInfo->flags & R3964_ERROR) {
496 TRACE_PE("on_receive_block - transmission failed error %x",
497 pInfo->flags & R3964_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800499 put_char(pInfo, NAK);
500 flush(pInfo);
501 if (pInfo->nRetry < R3964_MAX_RETRIES) {
502 pInfo->state = R3964_WAIT_FOR_RX_REPEAT;
503 pInfo->nRetry++;
504 mod_timer(&pInfo->tmr, jiffies + R3964_TO_RX_PANIC);
505 } else {
506 TRACE_PE("on_receive_block - failed after max retries");
507 pInfo->state = R3964_IDLE;
508 }
509 return;
510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800512 /* received block; submit DLE: */
513 put_char(pInfo, DLE);
514 flush(pInfo);
515 del_timer_sync(&pInfo->tmr);
516 TRACE_PS(" rx success: got %d chars", length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800518 /* prepare struct r3964_block_header: */
519 pBlock = kmalloc(length + sizeof(struct r3964_block_header),
520 GFP_KERNEL);
521 TRACE_M("on_receive_block - kmalloc %p", pBlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800523 if (pBlock == NULL)
524 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800526 pBlock->length = length;
527 pBlock->data = ((unsigned char *)pBlock) +
528 sizeof(struct r3964_block_header);
529 pBlock->locks = 0;
530 pBlock->next = NULL;
531 pBlock->owner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800533 memcpy(pBlock->data, pInfo->rx_buf, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800535 /* queue block into rx_queue: */
536 add_rx_queue(pInfo, pBlock);
537
538 /* notify attached client processes: */
539 for (pClient = pInfo->firstClient; pClient; pClient = pClient->next) {
540 if (pClient->sig_flags & R3964_SIG_DATA) {
541 add_msg(pClient, R3964_MSG_DATA, length, R3964_OK,
542 pBlock);
543 }
544 }
Peter Hurley9b9ab1b2015-10-10 16:00:55 -0400545 wake_up_interruptible(&pInfo->tty->read_wait);
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800546
547 pInfo->state = R3964_IDLE;
548
549 trigger_transmit(pInfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550}
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552static void receive_char(struct r3964_info *pInfo, const unsigned char c)
553{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800554 switch (pInfo->state) {
555 case R3964_TX_REQUEST:
556 if (c == DLE) {
557 TRACE_PS("TX_REQUEST - got DLE");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800559 pInfo->state = R3964_TRANSMITTING;
560 pInfo->tx_position = 0;
561
562 transmit_block(pInfo);
563 } else if (c == STX) {
564 if (pInfo->nRetry == 0) {
565 TRACE_PE("TX_REQUEST - init conflict");
566 if (pInfo->priority == R3964_SLAVE) {
567 goto start_receiving;
568 }
569 } else {
570 TRACE_PE("TX_REQUEST - secondary init "
571 "conflict!? Switching to SLAVE mode "
572 "for next rx.");
573 goto start_receiving;
574 }
575 } else {
576 TRACE_PE("TX_REQUEST - char != DLE: %x", c);
577 retry_transmit(pInfo);
578 }
579 break;
580 case R3964_TRANSMITTING:
581 if (c == NAK) {
582 TRACE_PE("TRANSMITTING - got NAK");
583 retry_transmit(pInfo);
584 } else {
585 TRACE_PE("TRANSMITTING - got invalid char");
586
587 pInfo->state = R3964_WAIT_ZVZ_BEFORE_TX_RETRY;
588 mod_timer(&pInfo->tmr, jiffies + R3964_TO_ZVZ);
589 }
590 break;
591 case R3964_WAIT_FOR_TX_ACK:
592 if (c == DLE) {
593 TRACE_PS("WAIT_FOR_TX_ACK - got DLE");
594 remove_from_tx_queue(pInfo, R3964_OK);
595
596 pInfo->state = R3964_IDLE;
597 trigger_transmit(pInfo);
598 } else {
599 retry_transmit(pInfo);
600 }
601 break;
602 case R3964_WAIT_FOR_RX_REPEAT:
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200603 /* FALLTHROUGH */
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800604 case R3964_IDLE:
605 if (c == STX) {
606 /* Prevent rx_queue from overflow: */
607 if (pInfo->blocks_in_rx_queue >=
608 R3964_MAX_BLOCKS_IN_RX_QUEUE) {
609 TRACE_PE("IDLE - got STX but no space in "
610 "rx_queue!");
611 pInfo->state = R3964_WAIT_FOR_RX_BUF;
612 mod_timer(&pInfo->tmr,
613 jiffies + R3964_TO_NO_BUF);
614 break;
615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616start_receiving:
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800617 /* Ok, start receiving: */
618 TRACE_PS("IDLE - got STX");
619 pInfo->rx_position = 0;
620 pInfo->last_rx = 0;
621 pInfo->flags &= ~R3964_ERROR;
622 pInfo->state = R3964_RECEIVING;
623 mod_timer(&pInfo->tmr, jiffies + R3964_TO_ZVZ);
624 pInfo->nRetry = 0;
625 put_char(pInfo, DLE);
626 flush(pInfo);
627 pInfo->bcc = 0;
628 }
629 break;
630 case R3964_RECEIVING:
631 if (pInfo->rx_position < RX_BUF_SIZE) {
632 pInfo->bcc ^= c;
633
634 if (c == DLE) {
635 if (pInfo->last_rx == DLE) {
636 pInfo->last_rx = 0;
637 goto char_to_buf;
638 }
639 pInfo->last_rx = DLE;
640 break;
641 } else if ((c == ETX) && (pInfo->last_rx == DLE)) {
642 if (pInfo->flags & R3964_BCC) {
643 pInfo->state = R3964_WAIT_FOR_BCC;
644 mod_timer(&pInfo->tmr,
645 jiffies + R3964_TO_ZVZ);
646 } else {
647 on_receive_block(pInfo);
648 }
649 } else {
650 pInfo->last_rx = c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651char_to_buf:
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800652 pInfo->rx_buf[pInfo->rx_position++] = c;
653 mod_timer(&pInfo->tmr, jiffies + R3964_TO_ZVZ);
654 }
655 }
656 /* else: overflow-msg? BUF_SIZE>MTU; should not happen? */
657 break;
658 case R3964_WAIT_FOR_BCC:
659 pInfo->last_rx = c;
660 on_receive_block(pInfo);
661 break;
662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663}
664
665static void receive_error(struct r3964_info *pInfo, const char flag)
666{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800667 switch (flag) {
668 case TTY_NORMAL:
669 break;
670 case TTY_BREAK:
671 TRACE_PE("received break");
672 pInfo->flags |= R3964_BREAK;
673 break;
674 case TTY_PARITY:
675 TRACE_PE("parity error");
676 pInfo->flags |= R3964_PARITY;
677 break;
678 case TTY_FRAME:
679 TRACE_PE("frame error");
680 pInfo->flags |= R3964_FRAME;
681 break;
682 case TTY_OVERRUN:
683 TRACE_PE("frame overrun");
684 pInfo->flags |= R3964_OVERRUN;
685 break;
686 default:
687 TRACE_PE("receive_error - unknown flag %d", flag);
688 pInfo->flags |= R3964_UNKNOWN;
689 break;
690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691}
692
693static void on_timeout(unsigned long priv)
694{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800695 struct r3964_info *pInfo = (void *)priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800697 switch (pInfo->state) {
698 case R3964_TX_REQUEST:
699 TRACE_PE("TX_REQUEST - timeout");
700 retry_transmit(pInfo);
701 break;
702 case R3964_WAIT_ZVZ_BEFORE_TX_RETRY:
703 put_char(pInfo, NAK);
704 flush(pInfo);
705 retry_transmit(pInfo);
706 break;
707 case R3964_WAIT_FOR_TX_ACK:
708 TRACE_PE("WAIT_FOR_TX_ACK - timeout");
709 retry_transmit(pInfo);
710 break;
711 case R3964_WAIT_FOR_RX_BUF:
712 TRACE_PE("WAIT_FOR_RX_BUF - timeout");
713 put_char(pInfo, NAK);
714 flush(pInfo);
715 pInfo->state = R3964_IDLE;
716 break;
717 case R3964_RECEIVING:
718 TRACE_PE("RECEIVING - timeout after %d chars",
719 pInfo->rx_position);
720 put_char(pInfo, NAK);
721 flush(pInfo);
722 pInfo->state = R3964_IDLE;
723 break;
724 case R3964_WAIT_FOR_RX_REPEAT:
725 TRACE_PE("WAIT_FOR_RX_REPEAT - timeout");
726 pInfo->state = R3964_IDLE;
727 break;
728 case R3964_WAIT_FOR_BCC:
729 TRACE_PE("WAIT_FOR_BCC - timeout");
730 put_char(pInfo, NAK);
731 flush(pInfo);
732 pInfo->state = R3964_IDLE;
733 break;
734 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735}
736
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800737static struct r3964_client_info *findClient(struct r3964_info *pInfo,
738 struct pid *pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800740 struct r3964_client_info *pClient;
741
742 for (pClient = pInfo->firstClient; pClient; pClient = pClient->next) {
743 if (pClient->pid == pid) {
744 return pClient;
745 }
746 }
747 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748}
749
Eric W. Biederman3cec5562006-12-13 00:35:10 -0800750static int enable_signals(struct r3964_info *pInfo, struct pid *pid, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800752 struct r3964_client_info *pClient;
753 struct r3964_client_info **ppClient;
754 struct r3964_message *pMsg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800756 if ((arg & R3964_SIG_ALL) == 0) {
757 /* Remove client from client list */
758 for (ppClient = &pInfo->firstClient; *ppClient;
759 ppClient = &(*ppClient)->next) {
760 pClient = *ppClient;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800762 if (pClient->pid == pid) {
763 TRACE_PS("removing client %d from client list",
764 pid_nr(pid));
765 *ppClient = pClient->next;
766 while (pClient->msg_count) {
767 pMsg = remove_msg(pInfo, pClient);
768 if (pMsg) {
769 kfree(pMsg);
770 TRACE_M("enable_signals - msg "
771 "kfree %p", pMsg);
772 }
773 }
774 put_pid(pClient->pid);
775 kfree(pClient);
776 TRACE_M("enable_signals - kfree %p", pClient);
777 return 0;
778 }
779 }
780 return -EINVAL;
781 } else {
782 pClient = findClient(pInfo, pid);
783 if (pClient) {
784 /* update signal options */
785 pClient->sig_flags = arg;
786 } else {
787 /* add client to client list */
788 pClient = kmalloc(sizeof(struct r3964_client_info),
789 GFP_KERNEL);
790 TRACE_M("enable_signals - kmalloc %p", pClient);
791 if (pClient == NULL)
792 return -ENOMEM;
793
794 TRACE_PS("add client %d to client list", pid_nr(pid));
795 spin_lock_init(&pClient->lock);
796 pClient->sig_flags = arg;
797 pClient->pid = get_pid(pid);
798 pClient->next = pInfo->firstClient;
799 pClient->first_msg = NULL;
800 pClient->last_msg = NULL;
801 pClient->next_block_to_read = NULL;
802 pClient->msg_count = 0;
803 pInfo->firstClient = pClient;
804 }
805 }
806
807 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800810static int read_telegram(struct r3964_info *pInfo, struct pid *pid,
811 unsigned char __user * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800813 struct r3964_client_info *pClient;
814 struct r3964_block_header *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800816 if (!buf) {
817 return -EINVAL;
818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800820 pClient = findClient(pInfo, pid);
821 if (pClient == NULL) {
822 return -EINVAL;
823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800825 block = pClient->next_block_to_read;
826 if (!block) {
827 return 0;
828 } else {
829 if (copy_to_user(buf, block->data, block->length))
830 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800832 remove_client_block(pInfo, pClient);
833 return block->length;
834 }
835
836 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837}
838
839static void add_msg(struct r3964_client_info *pClient, int msg_id, int arg,
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800840 int error_code, struct r3964_block_header *pBlock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800842 struct r3964_message *pMsg;
843 unsigned long flags;
844
845 if (pClient->msg_count < R3964_MAX_MSG_COUNT - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846queue_the_message:
847
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800848 pMsg = kmalloc(sizeof(struct r3964_message),
849 error_code ? GFP_ATOMIC : GFP_KERNEL);
850 TRACE_M("add_msg - kmalloc %p", pMsg);
851 if (pMsg == NULL) {
852 return;
853 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800855 spin_lock_irqsave(&pClient->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800857 pMsg->msg_id = msg_id;
858 pMsg->arg = arg;
859 pMsg->error_code = error_code;
860 pMsg->block = pBlock;
861 pMsg->next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800863 if (pClient->last_msg == NULL) {
864 pClient->first_msg = pClient->last_msg = pMsg;
865 } else {
866 pClient->last_msg->next = pMsg;
867 pClient->last_msg = pMsg;
868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800870 pClient->msg_count++;
871
872 if (pBlock != NULL) {
873 pBlock->locks++;
874 }
875 spin_unlock_irqrestore(&pClient->lock, flags);
876 } else {
877 if ((pClient->last_msg->msg_id == R3964_MSG_ACK)
878 && (pClient->last_msg->error_code == R3964_OVERFLOW)) {
879 pClient->last_msg->arg++;
880 TRACE_PE("add_msg - inc prev OVERFLOW-msg");
881 } else {
882 msg_id = R3964_MSG_ACK;
883 arg = 0;
884 error_code = R3964_OVERFLOW;
885 pBlock = NULL;
886 TRACE_PE("add_msg - queue OVERFLOW-msg");
887 goto queue_the_message;
888 }
889 }
890 /* Send SIGIO signal to client process: */
891 if (pClient->sig_flags & R3964_USE_SIGIO) {
892 kill_pid(pClient->pid, SIGIO, 1);
893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894}
895
896static struct r3964_message *remove_msg(struct r3964_info *pInfo,
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800897 struct r3964_client_info *pClient)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800899 struct r3964_message *pMsg = NULL;
900 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800902 if (pClient->first_msg) {
903 spin_lock_irqsave(&pClient->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800905 pMsg = pClient->first_msg;
906 pClient->first_msg = pMsg->next;
907 if (pClient->first_msg == NULL) {
908 pClient->last_msg = NULL;
909 }
910
911 pClient->msg_count--;
912 if (pMsg->block) {
913 remove_client_block(pInfo, pClient);
914 pClient->next_block_to_read = pMsg->block;
915 }
916 spin_unlock_irqrestore(&pClient->lock, flags);
917 }
918 return pMsg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919}
920
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800921static void remove_client_block(struct r3964_info *pInfo,
922 struct r3964_client_info *pClient)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800924 struct r3964_block_header *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800926 TRACE_PS("remove_client_block PID %d", pid_nr(pClient->pid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800928 block = pClient->next_block_to_read;
929 if (block) {
930 block->locks--;
931 if (block->locks == 0) {
932 remove_from_rx_queue(pInfo, block);
933 }
934 }
935 pClient->next_block_to_read = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938/*************************************************************
939 * Line discipline routines
940 *************************************************************/
941
942static int r3964_open(struct tty_struct *tty)
943{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800944 struct r3964_info *pInfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800946 TRACE_L("open");
947 TRACE_L("tty=%p, PID=%d, disc_data=%p",
948 tty, current->pid, tty->disc_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800950 pInfo = kmalloc(sizeof(struct r3964_info), GFP_KERNEL);
951 TRACE_M("r3964_open - info kmalloc %p", pInfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800953 if (!pInfo) {
954 printk(KERN_ERR "r3964: failed to alloc info structure\n");
955 return -ENOMEM;
956 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800958 pInfo->rx_buf = kmalloc(RX_BUF_SIZE, GFP_KERNEL);
959 TRACE_M("r3964_open - rx_buf kmalloc %p", pInfo->rx_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800961 if (!pInfo->rx_buf) {
962 printk(KERN_ERR "r3964: failed to alloc receive buffer\n");
963 kfree(pInfo);
964 TRACE_M("r3964_open - info kfree %p", pInfo);
965 return -ENOMEM;
966 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800968 pInfo->tx_buf = kmalloc(TX_BUF_SIZE, GFP_KERNEL);
969 TRACE_M("r3964_open - tx_buf kmalloc %p", pInfo->tx_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800971 if (!pInfo->tx_buf) {
972 printk(KERN_ERR "r3964: failed to alloc transmit buffer\n");
973 kfree(pInfo->rx_buf);
974 TRACE_M("r3964_open - rx_buf kfree %p", pInfo->rx_buf);
975 kfree(pInfo);
976 TRACE_M("r3964_open - info kfree %p", pInfo);
977 return -ENOMEM;
978 }
979
980 spin_lock_init(&pInfo->lock);
Peter Hurleyaba24882015-10-10 16:00:56 -0400981 mutex_init(&pInfo->read_lock);
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800982 pInfo->tty = tty;
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800983 pInfo->priority = R3964_MASTER;
984 pInfo->rx_first = pInfo->rx_last = NULL;
985 pInfo->tx_first = pInfo->tx_last = NULL;
986 pInfo->rx_position = 0;
987 pInfo->tx_position = 0;
988 pInfo->last_rx = 0;
989 pInfo->blocks_in_rx_queue = 0;
990 pInfo->firstClient = NULL;
991 pInfo->state = R3964_IDLE;
992 pInfo->flags = R3964_DEBUG;
993 pInfo->nRetry = 0;
994
995 tty->disc_data = pInfo;
996 tty->receive_room = 65536;
997
Jiri Slaby40565f12007-02-12 00:52:31 -0800998 setup_timer(&pInfo->tmr, on_timeout, (unsigned long)pInfo);
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800999
1000 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001}
1002
1003static void r3964_close(struct tty_struct *tty)
1004{
Alan Coxc9f19e92009-01-02 13:47:26 +00001005 struct r3964_info *pInfo = tty->disc_data;
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001006 struct r3964_client_info *pClient, *pNext;
1007 struct r3964_message *pMsg;
1008 struct r3964_block_header *pHeader, *pNextHeader;
1009 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001011 TRACE_L("close");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001013 /*
1014 * Make sure that our task queue isn't activated. If it
1015 * is, take it out of the linked list.
1016 */
1017 del_timer_sync(&pInfo->tmr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001019 /* Remove client-structs and message queues: */
1020 pClient = pInfo->firstClient;
1021 while (pClient) {
1022 pNext = pClient->next;
1023 while (pClient->msg_count) {
1024 pMsg = remove_msg(pInfo, pClient);
1025 if (pMsg) {
1026 kfree(pMsg);
1027 TRACE_M("r3964_close - msg kfree %p", pMsg);
1028 }
1029 }
1030 put_pid(pClient->pid);
1031 kfree(pClient);
1032 TRACE_M("r3964_close - client kfree %p", pClient);
1033 pClient = pNext;
1034 }
1035 /* Remove jobs from tx_queue: */
1036 spin_lock_irqsave(&pInfo->lock, flags);
1037 pHeader = pInfo->tx_first;
1038 pInfo->tx_first = pInfo->tx_last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 spin_unlock_irqrestore(&pInfo->lock, flags);
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001040
1041 while (pHeader) {
1042 pNextHeader = pHeader->next;
1043 kfree(pHeader);
1044 pHeader = pNextHeader;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 }
1046
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001047 /* Free buffers: */
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001048 kfree(pInfo->rx_buf);
1049 TRACE_M("r3964_close - rx_buf kfree %p", pInfo->rx_buf);
1050 kfree(pInfo->tx_buf);
1051 TRACE_M("r3964_close - tx_buf kfree %p", pInfo->tx_buf);
1052 kfree(pInfo);
1053 TRACE_M("r3964_close - info kfree %p", pInfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054}
1055
1056static ssize_t r3964_read(struct tty_struct *tty, struct file *file,
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001057 unsigned char __user * buf, size_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
Alan Coxc9f19e92009-01-02 13:47:26 +00001059 struct r3964_info *pInfo = tty->disc_data;
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001060 struct r3964_client_info *pClient;
1061 struct r3964_message *pMsg;
1062 struct r3964_client_message theMsg;
Jiri Slabyeca41042009-06-22 18:42:03 +01001063 int ret;
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001064
1065 TRACE_L("read()");
1066
Peter Hurleyaba24882015-10-10 16:00:56 -04001067 /*
1068 * Internal serialization of reads.
1069 */
1070 if (file->f_flags & O_NONBLOCK) {
1071 if (!mutex_trylock(&pInfo->read_lock))
1072 return -EAGAIN;
1073 } else {
1074 if (mutex_lock_interruptible(&pInfo->read_lock))
1075 return -ERESTARTSYS;
1076 }
Alan Cox04f378b2008-04-30 00:53:29 -07001077
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001078 pClient = findClient(pInfo, task_pid(current));
1079 if (pClient) {
1080 pMsg = remove_msg(pInfo, pClient);
1081 if (pMsg == NULL) {
1082 /* no messages available. */
Dmitry Safonov95595c82018-11-01 00:24:48 +00001083 if (tty_io_nonblock(tty, file)) {
Jiri Slabyeca41042009-06-22 18:42:03 +01001084 ret = -EAGAIN;
1085 goto unlock;
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001086 }
1087 /* block until there is a message: */
Peter Hurleyaba24882015-10-10 16:00:56 -04001088 wait_event_interruptible(tty->read_wait,
Jiri Slaby6defec12007-07-15 23:40:20 -07001089 (pMsg = remove_msg(pInfo, pClient)));
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001092 /* If we still haven't got a message, we must have been signalled */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Alan Cox04f378b2008-04-30 00:53:29 -07001094 if (!pMsg) {
Jiri Slabyeca41042009-06-22 18:42:03 +01001095 ret = -EINTR;
1096 goto unlock;
Alan Cox04f378b2008-04-30 00:53:29 -07001097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001099 /* deliver msg to client process: */
1100 theMsg.msg_id = pMsg->msg_id;
1101 theMsg.arg = pMsg->arg;
1102 theMsg.error_code = pMsg->error_code;
Jiri Slabyeca41042009-06-22 18:42:03 +01001103 ret = sizeof(struct r3964_client_message);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001105 kfree(pMsg);
1106 TRACE_M("r3964_read - msg kfree %p", pMsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Jiri Slabyeca41042009-06-22 18:42:03 +01001108 if (copy_to_user(buf, &theMsg, ret)) {
1109 ret = -EFAULT;
1110 goto unlock;
Alan Cox04f378b2008-04-30 00:53:29 -07001111 }
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001112
Jiri Slabyeca41042009-06-22 18:42:03 +01001113 TRACE_PS("read - return %d", ret);
1114 goto unlock;
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001115 }
Jiri Slabyeca41042009-06-22 18:42:03 +01001116 ret = -EPERM;
1117unlock:
Peter Hurleyaba24882015-10-10 16:00:56 -04001118 mutex_unlock(&pInfo->read_lock);
Jiri Slabyeca41042009-06-22 18:42:03 +01001119 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120}
1121
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001122static ssize_t r3964_write(struct tty_struct *tty, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 const unsigned char *data, size_t count)
1124{
Alan Coxc9f19e92009-01-02 13:47:26 +00001125 struct r3964_info *pInfo = tty->disc_data;
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001126 struct r3964_block_header *pHeader;
1127 struct r3964_client_info *pClient;
1128 unsigned char *new_data;
1129
1130 TRACE_L("write request, %d characters", count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131/*
1132 * Verify the pointers
1133 */
1134
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001135 if (!pInfo)
1136 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
1138/*
1139 * Ensure that the caller does not wish to send too much.
1140 */
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001141 if (count > R3964_MTU) {
1142 if (pInfo->flags & R3964_DEBUG) {
1143 TRACE_L(KERN_WARNING "r3964_write: truncating user "
1144 "packet from %u to mtu %d", count, R3964_MTU);
1145 }
1146 count = R3964_MTU;
1147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148/*
1149 * Allocate a buffer for the data and copy it from the buffer with header prepended
1150 */
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001151 new_data = kmalloc(count + sizeof(struct r3964_block_header),
1152 GFP_KERNEL);
1153 TRACE_M("r3964_write - kmalloc %p", new_data);
1154 if (new_data == NULL) {
1155 if (pInfo->flags & R3964_DEBUG) {
1156 printk(KERN_ERR "r3964_write: no memory\n");
1157 }
1158 return -ENOSPC;
1159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001161 pHeader = (struct r3964_block_header *)new_data;
1162 pHeader->data = new_data + sizeof(struct r3964_block_header);
1163 pHeader->length = count;
1164 pHeader->locks = 0;
1165 pHeader->owner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001167 pClient = findClient(pInfo, task_pid(current));
1168 if (pClient) {
1169 pHeader->owner = pClient;
1170 }
1171
1172 memcpy(pHeader->data, data, count); /* We already verified this */
1173
1174 if (pInfo->flags & R3964_DEBUG) {
1175 dump_block(pHeader->data, count);
1176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178/*
1179 * Add buffer to transmit-queue:
1180 */
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001181 add_tx_queue(pInfo, pHeader);
1182 trigger_transmit(pInfo);
1183
1184 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185}
1186
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001187static int r3964_ioctl(struct tty_struct *tty, struct file *file,
1188 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189{
Alan Coxc9f19e92009-01-02 13:47:26 +00001190 struct r3964_info *pInfo = tty->disc_data;
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001191 if (pInfo == NULL)
1192 return -EINVAL;
1193 switch (cmd) {
1194 case R3964_ENABLE_SIGNALS:
1195 return enable_signals(pInfo, task_pid(current), arg);
1196 case R3964_SETPRIORITY:
1197 if (arg < R3964_MASTER || arg > R3964_SLAVE)
1198 return -EINVAL;
1199 pInfo->priority = arg & 0xff;
1200 return 0;
1201 case R3964_USE_BCC:
1202 if (arg)
1203 pInfo->flags |= R3964_BCC;
1204 else
1205 pInfo->flags &= ~R3964_BCC;
1206 return 0;
1207 case R3964_READ_TELEGRAM:
1208 return read_telegram(pInfo, task_pid(current),
1209 (unsigned char __user *)arg);
1210 default:
1211 return -ENOIOCTLCMD;
1212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213}
1214
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001215static void r3964_set_termios(struct tty_struct *tty, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001217 TRACE_L("set_termios");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218}
1219
1220/* Called without the kernel lock held - fine */
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001221static unsigned int r3964_poll(struct tty_struct *tty, struct file *file,
1222 struct poll_table_struct *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223{
Alan Coxc9f19e92009-01-02 13:47:26 +00001224 struct r3964_info *pInfo = tty->disc_data;
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001225 struct r3964_client_info *pClient;
1226 struct r3964_message *pMsg = NULL;
1227 unsigned long flags;
1228 int result = POLLOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001230 TRACE_L("POLL");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001232 pClient = findClient(pInfo, task_pid(current));
1233 if (pClient) {
Peter Hurley9b9ab1b2015-10-10 16:00:55 -04001234 poll_wait(file, &tty->read_wait, wait);
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001235 spin_lock_irqsave(&pInfo->lock, flags);
1236 pMsg = pClient->first_msg;
1237 spin_unlock_irqrestore(&pInfo->lock, flags);
1238 if (pMsg)
1239 result |= POLLIN | POLLRDNORM;
1240 } else {
1241 result = -EINVAL;
1242 }
1243 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244}
1245
Linus Torvalds55db4c62011-06-04 06:33:24 +09001246static void r3964_receive_buf(struct tty_struct *tty, const unsigned char *cp,
1247 char *fp, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248{
Alan Coxc9f19e92009-01-02 13:47:26 +00001249 struct r3964_info *pInfo = tty->disc_data;
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001250 const unsigned char *p;
Peter Hurley82f91fe2013-12-02 13:56:03 -05001251 char *f, flags = TTY_NORMAL;
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001252 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001254 for (i = count, p = cp, f = fp; i; i--, p++) {
1255 if (f)
1256 flags = *f++;
1257 if (flags == TTY_NORMAL) {
1258 receive_char(pInfo, *p);
1259 } else {
1260 receive_error(pInfo, flags);
1261 }
1262
1263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264}
1265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266MODULE_LICENSE("GPL");
1267MODULE_ALIAS_LDISC(N_R3964);