blob: 749a608c40b0279d64991e937161f32ac7443158 [file] [log] [blame]
Greg Kroah-Hartmane3b3d0f2017-11-06 18:11:51 +01001// SPDX-License-Identifier: GPL-1.0+
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/* r3964 linediscipline for linux
3 *
4 * -----------------------------------------------------------
5 * Copyright by
6 * Philips Automation Projects
7 * Kassel (Germany)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * -----------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Author:
10 * L. Haag
11 *
12 * $Log: n_r3964.c,v $
13 * Revision 1.10 2001/03/18 13:02:24 dwmw2
14 * Fix timer usage, use spinlocks properly.
15 *
16 * Revision 1.9 2001/03/18 12:52:14 dwmw2
17 * Merge changes in 2.4.2
18 *
19 * Revision 1.8 2000/03/23 14:14:54 dwmw2
20 * Fix race in sleeping in r3964_read()
21 *
22 * Revision 1.7 1999/28/08 11:41:50 dwmw2
23 * Port to 2.3 kernel
24 *
25 * Revision 1.6 1998/09/30 00:40:40 dwmw2
26 * Fixed compilation on 2.0.x kernels
27 * Updated to newly registered tty-ldisc number 9
28 *
29 * Revision 1.5 1998/09/04 21:57:36 dwmw2
30 * Signal handling bug fixes, port to 2.1.x.
31 *
32 * Revision 1.4 1998/04/02 20:26:59 lhaag
33 * select, blocking, ...
34 *
35 * Revision 1.3 1998/02/12 18:58:43 root
36 * fixed some memory leaks
37 * calculation of checksum characters
38 *
39 * Revision 1.2 1998/02/07 13:03:34 root
40 * ioctl read_telegram
41 *
42 * Revision 1.1 1998/02/06 19:21:03 root
43 * Initial revision
44 *
45 *
46 */
47
48#include <linux/module.h>
49#include <linux/kernel.h>
50#include <linux/sched.h>
51#include <linux/types.h>
52#include <linux/fcntl.h>
53#include <linux/interrupt.h>
54#include <linux/ptrace.h>
55#include <linux/ioport.h>
56#include <linux/in.h>
57#include <linux/slab.h>
58#include <linux/tty.h>
59#include <linux/errno.h>
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080060#include <linux/string.h> /* used in new tty drivers */
61#include <linux/signal.h> /* used in new tty drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/ioctl.h>
63#include <linux/n_r3964.h>
64#include <linux/poll.h>
65#include <linux/init.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080066#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080068/*#define DEBUG_QUEUE*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70/* Log successful handshake and protocol operations */
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080071/*#define DEBUG_PROTO_S*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73/* Log handshake and protocol errors: */
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080074/*#define DEBUG_PROTO_E*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76/* Log Linediscipline operations (open, close, read, write...): */
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080077/*#define DEBUG_LDISC*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79/* Log module and memory operations (init, cleanup; kmalloc, kfree): */
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080080/*#define DEBUG_MODUL*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82/* Macro helpers for debug output: */
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080083#define TRACE(format, args...) printk("r3964: " format "\n" , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85#ifdef DEBUG_MODUL
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080086#define TRACE_M(format, args...) printk("r3964: " format "\n" , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#else
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080088#define TRACE_M(fmt, arg...) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#ifdef DEBUG_PROTO_S
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080091#define TRACE_PS(format, args...) printk("r3964: " format "\n" , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#else
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080093#define TRACE_PS(fmt, arg...) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#ifdef DEBUG_PROTO_E
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080096#define TRACE_PE(format, args...) printk("r3964: " format "\n" , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#else
Jiri Slaby5e07e1c2007-02-10 01:45:09 -080098#define TRACE_PE(fmt, arg...) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#ifdef DEBUG_LDISC
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800101#define TRACE_L(format, args...) printk("r3964: " format "\n" , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#else
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800103#define TRACE_L(fmt, arg...) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#ifdef DEBUG_QUEUE
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800106#define TRACE_Q(format, args...) printk("r3964: " format "\n" , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#else
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800108#define TRACE_Q(fmt, arg...) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110static void add_tx_queue(struct r3964_info *, struct r3964_block_header *);
111static void remove_from_tx_queue(struct r3964_info *pInfo, int error_code);
112static void put_char(struct r3964_info *pInfo, unsigned char ch);
113static void trigger_transmit(struct r3964_info *pInfo);
114static void retry_transmit(struct r3964_info *pInfo);
115static void transmit_block(struct r3964_info *pInfo);
116static void receive_char(struct r3964_info *pInfo, const unsigned char c);
117static void receive_error(struct r3964_info *pInfo, const char flag);
Kees Cooke99e88a2017-10-16 14:43:17 -0700118static void on_timeout(struct timer_list *t);
Eric W. Biederman3cec5562006-12-13 00:35:10 -0800119static int enable_signals(struct r3964_info *pInfo, struct pid *pid, int arg);
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800120static int read_telegram(struct r3964_info *pInfo, struct pid *pid,
121 unsigned char __user * buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122static void add_msg(struct r3964_client_info *pClient, int msg_id, int arg,
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800123 int error_code, struct r3964_block_header *pBlock);
124static struct r3964_message *remove_msg(struct r3964_info *pInfo,
125 struct r3964_client_info *pClient);
126static void remove_client_block(struct r3964_info *pInfo,
127 struct r3964_client_info *pClient);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800129static int r3964_open(struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130static void r3964_close(struct tty_struct *tty);
131static ssize_t r3964_read(struct tty_struct *tty, struct file *file,
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800132 unsigned char __user * buf, size_t nr);
133static ssize_t r3964_write(struct tty_struct *tty, struct file *file,
134 const unsigned char *buf, size_t nr);
135static int r3964_ioctl(struct tty_struct *tty, struct file *file,
136 unsigned int cmd, unsigned long arg);
Al Virof0193d32018-09-13 22:12:15 -0400137#ifdef CONFIG_COMPAT
138static int r3964_compat_ioctl(struct tty_struct *tty, struct file *file,
139 unsigned int cmd, unsigned long arg);
140#endif
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800141static void r3964_set_termios(struct tty_struct *tty, struct ktermios *old);
Al Viroafc9a422017-07-03 06:39:46 -0400142static __poll_t r3964_poll(struct tty_struct *tty, struct file *file,
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800143 struct poll_table_struct *wait);
Linus Torvalds55db4c62011-06-04 06:33:24 +0900144static void r3964_receive_buf(struct tty_struct *tty, const unsigned char *cp,
145 char *fp, int count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Alan Coxa352def2008-07-16 21:53:12 +0100147static struct tty_ldisc_ops tty_ldisc_N_R3964 = {
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800148 .owner = THIS_MODULE,
149 .magic = TTY_LDISC_MAGIC,
150 .name = "R3964",
151 .open = r3964_open,
152 .close = r3964_close,
153 .read = r3964_read,
154 .write = r3964_write,
155 .ioctl = r3964_ioctl,
Al Virof0193d32018-09-13 22:12:15 -0400156#ifdef CONFIG_COMPAT
157 .compat_ioctl = r3964_compat_ioctl,
158#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 .set_termios = r3964_set_termios,
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800160 .poll = r3964_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 .receive_buf = r3964_receive_buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162};
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164static void dump_block(const unsigned char *block, unsigned int length)
165{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800166 unsigned int i, j;
167 char linebuf[16 * 3 + 1];
168
169 for (i = 0; i < length; i += 16) {
170 for (j = 0; (j < 16) && (j + i < length); j++) {
171 sprintf(linebuf + 3 * j, "%02x ", block[i + j]);
172 }
173 linebuf[3 * j] = '\0';
174 TRACE_PS("%s", linebuf);
175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178/*************************************************************
179 * Driver initialisation
180 *************************************************************/
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182/*************************************************************
183 * Module support routines
184 *************************************************************/
185
186static void __exit r3964_exit(void)
187{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800188 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800190 TRACE_M("cleanup_module()");
191
192 status = tty_unregister_ldisc(N_R3964);
193
194 if (status != 0) {
195 printk(KERN_ERR "r3964: error unregistering linediscipline: "
196 "%d\n", status);
197 } else {
198 TRACE_L("linediscipline successfully unregistered");
199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
202static int __init r3964_init(void)
203{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800204 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800206 printk("r3964: Philips r3964 Driver $Revision: 1.10 $\n");
207
208 /*
209 * Register the tty line discipline
210 */
211
212 status = tty_register_ldisc(N_R3964, &tty_ldisc_N_R3964);
213 if (status == 0) {
214 TRACE_L("line discipline %d registered", N_R3964);
215 TRACE_L("flags=%x num=%x", tty_ldisc_N_R3964.flags,
216 tty_ldisc_N_R3964.num);
217 TRACE_L("open=%p", tty_ldisc_N_R3964.open);
218 TRACE_L("tty_ldisc_N_R3964 = %p", &tty_ldisc_N_R3964);
219 } else {
220 printk(KERN_ERR "r3964: error registering line discipline: "
221 "%d\n", status);
222 }
223 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
226module_init(r3964_init);
227module_exit(r3964_exit);
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229/*************************************************************
230 * Protocol implementation routines
231 *************************************************************/
232
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800233static void add_tx_queue(struct r3964_info *pInfo,
234 struct r3964_block_header *pHeader)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800236 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800238 spin_lock_irqsave(&pInfo->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800240 pHeader->next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800242 if (pInfo->tx_last == NULL) {
243 pInfo->tx_first = pInfo->tx_last = pHeader;
244 } else {
245 pInfo->tx_last->next = pHeader;
246 pInfo->tx_last = pHeader;
247 }
248
249 spin_unlock_irqrestore(&pInfo->lock, flags);
250
251 TRACE_Q("add_tx_queue %p, length %d, tx_first = %p",
252 pHeader, pHeader->length, pInfo->tx_first);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
255static void remove_from_tx_queue(struct r3964_info *pInfo, int error_code)
256{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800257 struct r3964_block_header *pHeader;
258 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259#ifdef DEBUG_QUEUE
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800260 struct r3964_block_header *pDump;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261#endif
262
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800263 pHeader = pInfo->tx_first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800265 if (pHeader == NULL)
266 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800268#ifdef DEBUG_QUEUE
269 printk("r3964: remove_from_tx_queue: %p, length %u - ",
270 pHeader, pHeader->length);
271 for (pDump = pHeader; pDump; pDump = pDump->next)
272 printk("%p ", pDump);
273 printk("\n");
274#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800276 if (pHeader->owner) {
277 if (error_code) {
278 add_msg(pHeader->owner, R3964_MSG_ACK, 0,
279 error_code, NULL);
280 } else {
281 add_msg(pHeader->owner, R3964_MSG_ACK, pHeader->length,
282 error_code, NULL);
283 }
Peter Hurley9b9ab1b2015-10-10 16:00:55 -0400284 wake_up_interruptible(&pInfo->tty->read_wait);
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800287 spin_lock_irqsave(&pInfo->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800289 pInfo->tx_first = pHeader->next;
290 if (pInfo->tx_first == NULL) {
291 pInfo->tx_last = NULL;
292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800294 spin_unlock_irqrestore(&pInfo->lock, flags);
295
296 kfree(pHeader);
297 TRACE_M("remove_from_tx_queue - kfree %p", pHeader);
298
299 TRACE_Q("remove_from_tx_queue: tx_first = %p, tx_last = %p",
300 pInfo->tx_first, pInfo->tx_last);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800303static void add_rx_queue(struct r3964_info *pInfo,
304 struct r3964_block_header *pHeader)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800306 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800308 spin_lock_irqsave(&pInfo->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800310 pHeader->next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800312 if (pInfo->rx_last == NULL) {
313 pInfo->rx_first = pInfo->rx_last = pHeader;
314 } else {
315 pInfo->rx_last->next = pHeader;
316 pInfo->rx_last = pHeader;
317 }
318 pInfo->blocks_in_rx_queue++;
319
320 spin_unlock_irqrestore(&pInfo->lock, flags);
321
322 TRACE_Q("add_rx_queue: %p, length = %d, rx_first = %p, count = %d",
323 pHeader, pHeader->length,
324 pInfo->rx_first, pInfo->blocks_in_rx_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
327static void remove_from_rx_queue(struct r3964_info *pInfo,
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800328 struct r3964_block_header *pHeader)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800330 unsigned long flags;
331 struct r3964_block_header *pFind;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800333 if (pHeader == NULL)
334 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800336 TRACE_Q("remove_from_rx_queue: rx_first = %p, rx_last = %p, count = %d",
337 pInfo->rx_first, pInfo->rx_last, pInfo->blocks_in_rx_queue);
338 TRACE_Q("remove_from_rx_queue: %p, length %u",
339 pHeader, pHeader->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800341 spin_lock_irqsave(&pInfo->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800343 if (pInfo->rx_first == pHeader) {
344 /* Remove the first block in the linked list: */
345 pInfo->rx_first = pHeader->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800347 if (pInfo->rx_first == NULL) {
348 pInfo->rx_last = NULL;
349 }
350 pInfo->blocks_in_rx_queue--;
351 } else {
352 /* Find block to remove: */
353 for (pFind = pInfo->rx_first; pFind; pFind = pFind->next) {
354 if (pFind->next == pHeader) {
355 /* Got it. */
356 pFind->next = pHeader->next;
357 pInfo->blocks_in_rx_queue--;
358 if (pFind->next == NULL) {
359 /* Oh, removed the last one! */
360 pInfo->rx_last = pFind;
361 }
362 break;
363 }
364 }
365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800367 spin_unlock_irqrestore(&pInfo->lock, flags);
368
369 kfree(pHeader);
370 TRACE_M("remove_from_rx_queue - kfree %p", pHeader);
371
372 TRACE_Q("remove_from_rx_queue: rx_first = %p, rx_last = %p, count = %d",
373 pInfo->rx_first, pInfo->rx_last, pInfo->blocks_in_rx_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
376static void put_char(struct r3964_info *pInfo, unsigned char ch)
377{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800378 struct tty_struct *tty = pInfo->tty;
Alan Coxf34d7a52008-04-30 00:54:13 -0700379 /* FIXME: put_char should not be called from an IRQ */
Alan Cox51383f62008-10-13 10:44:57 +0100380 tty_put_char(tty, ch);
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800381 pInfo->bcc ^= ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
384static void flush(struct r3964_info *pInfo)
385{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800386 struct tty_struct *tty = pInfo->tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Alan Coxf34d7a52008-04-30 00:54:13 -0700388 if (tty == NULL || tty->ops->flush_chars == NULL)
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800389 return;
Alan Coxf34d7a52008-04-30 00:54:13 -0700390 tty->ops->flush_chars(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
393static void trigger_transmit(struct r3964_info *pInfo)
394{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800395 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800397 spin_lock_irqsave(&pInfo->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800399 if ((pInfo->state == R3964_IDLE) && (pInfo->tx_first != NULL)) {
400 pInfo->state = R3964_TX_REQUEST;
401 pInfo->nRetry = 0;
402 pInfo->flags &= ~R3964_ERROR;
403 mod_timer(&pInfo->tmr, jiffies + R3964_TO_QVZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800405 spin_unlock_irqrestore(&pInfo->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800407 TRACE_PS("trigger_transmit - sent STX");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800409 put_char(pInfo, STX);
410 flush(pInfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800412 pInfo->bcc = 0;
413 } else {
414 spin_unlock_irqrestore(&pInfo->lock, flags);
415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
418static void retry_transmit(struct r3964_info *pInfo)
419{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800420 if (pInfo->nRetry < R3964_MAX_RETRIES) {
421 TRACE_PE("transmission failed. Retry #%d", pInfo->nRetry);
422 pInfo->bcc = 0;
423 put_char(pInfo, STX);
424 flush(pInfo);
425 pInfo->state = R3964_TX_REQUEST;
426 pInfo->nRetry++;
427 mod_timer(&pInfo->tmr, jiffies + R3964_TO_QVZ);
428 } else {
429 TRACE_PE("transmission failed after %d retries",
430 R3964_MAX_RETRIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800432 remove_from_tx_queue(pInfo, R3964_TX_FAIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800434 put_char(pInfo, NAK);
435 flush(pInfo);
436 pInfo->state = R3964_IDLE;
437
438 trigger_transmit(pInfo);
439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442static void transmit_block(struct r3964_info *pInfo)
443{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800444 struct tty_struct *tty = pInfo->tty;
445 struct r3964_block_header *pBlock = pInfo->tx_first;
446 int room = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Alan Coxf34d7a52008-04-30 00:54:13 -0700448 if (tty == NULL || pBlock == NULL) {
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800449 return;
450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Alan Coxf34d7a52008-04-30 00:54:13 -0700452 room = tty_write_room(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800454 TRACE_PS("transmit_block %p, room %d, length %d",
455 pBlock, room, pBlock->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800457 while (pInfo->tx_position < pBlock->length) {
458 if (room < 2)
459 break;
460
461 if (pBlock->data[pInfo->tx_position] == DLE) {
462 /* send additional DLE char: */
463 put_char(pInfo, DLE);
464 }
465 put_char(pInfo, pBlock->data[pInfo->tx_position++]);
466
467 room--;
468 }
469
470 if ((pInfo->tx_position == pBlock->length) && (room >= 3)) {
471 put_char(pInfo, DLE);
472 put_char(pInfo, ETX);
473 if (pInfo->flags & R3964_BCC) {
474 put_char(pInfo, pInfo->bcc);
475 }
476 pInfo->state = R3964_WAIT_FOR_TX_ACK;
477 mod_timer(&pInfo->tmr, jiffies + R3964_TO_QVZ);
478 }
479 flush(pInfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
482static void on_receive_block(struct r3964_info *pInfo)
483{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800484 unsigned int length;
485 struct r3964_client_info *pClient;
486 struct r3964_block_header *pBlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800488 length = pInfo->rx_position;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800490 /* compare byte checksum characters: */
491 if (pInfo->flags & R3964_BCC) {
492 if (pInfo->bcc != pInfo->last_rx) {
493 TRACE_PE("checksum error - got %x but expected %x",
494 pInfo->last_rx, pInfo->bcc);
495 pInfo->flags |= R3964_CHECKSUM;
496 }
497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800499 /* check for errors (parity, overrun,...): */
500 if (pInfo->flags & R3964_ERROR) {
501 TRACE_PE("on_receive_block - transmission failed error %x",
502 pInfo->flags & R3964_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800504 put_char(pInfo, NAK);
505 flush(pInfo);
506 if (pInfo->nRetry < R3964_MAX_RETRIES) {
507 pInfo->state = R3964_WAIT_FOR_RX_REPEAT;
508 pInfo->nRetry++;
509 mod_timer(&pInfo->tmr, jiffies + R3964_TO_RX_PANIC);
510 } else {
511 TRACE_PE("on_receive_block - failed after max retries");
512 pInfo->state = R3964_IDLE;
513 }
514 return;
515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800517 /* received block; submit DLE: */
518 put_char(pInfo, DLE);
519 flush(pInfo);
520 del_timer_sync(&pInfo->tmr);
521 TRACE_PS(" rx success: got %d chars", length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800523 /* prepare struct r3964_block_header: */
524 pBlock = kmalloc(length + sizeof(struct r3964_block_header),
525 GFP_KERNEL);
526 TRACE_M("on_receive_block - kmalloc %p", pBlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800528 if (pBlock == NULL)
529 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800531 pBlock->length = length;
532 pBlock->data = ((unsigned char *)pBlock) +
533 sizeof(struct r3964_block_header);
534 pBlock->locks = 0;
535 pBlock->next = NULL;
536 pBlock->owner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800538 memcpy(pBlock->data, pInfo->rx_buf, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800540 /* queue block into rx_queue: */
541 add_rx_queue(pInfo, pBlock);
542
543 /* notify attached client processes: */
544 for (pClient = pInfo->firstClient; pClient; pClient = pClient->next) {
545 if (pClient->sig_flags & R3964_SIG_DATA) {
546 add_msg(pClient, R3964_MSG_DATA, length, R3964_OK,
547 pBlock);
548 }
549 }
Peter Hurley9b9ab1b2015-10-10 16:00:55 -0400550 wake_up_interruptible(&pInfo->tty->read_wait);
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800551
552 pInfo->state = R3964_IDLE;
553
554 trigger_transmit(pInfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555}
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557static void receive_char(struct r3964_info *pInfo, const unsigned char c)
558{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800559 switch (pInfo->state) {
560 case R3964_TX_REQUEST:
561 if (c == DLE) {
562 TRACE_PS("TX_REQUEST - got DLE");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800564 pInfo->state = R3964_TRANSMITTING;
565 pInfo->tx_position = 0;
566
567 transmit_block(pInfo);
568 } else if (c == STX) {
569 if (pInfo->nRetry == 0) {
570 TRACE_PE("TX_REQUEST - init conflict");
571 if (pInfo->priority == R3964_SLAVE) {
572 goto start_receiving;
573 }
574 } else {
575 TRACE_PE("TX_REQUEST - secondary init "
576 "conflict!? Switching to SLAVE mode "
577 "for next rx.");
578 goto start_receiving;
579 }
580 } else {
581 TRACE_PE("TX_REQUEST - char != DLE: %x", c);
582 retry_transmit(pInfo);
583 }
584 break;
585 case R3964_TRANSMITTING:
586 if (c == NAK) {
587 TRACE_PE("TRANSMITTING - got NAK");
588 retry_transmit(pInfo);
589 } else {
590 TRACE_PE("TRANSMITTING - got invalid char");
591
592 pInfo->state = R3964_WAIT_ZVZ_BEFORE_TX_RETRY;
593 mod_timer(&pInfo->tmr, jiffies + R3964_TO_ZVZ);
594 }
595 break;
596 case R3964_WAIT_FOR_TX_ACK:
597 if (c == DLE) {
598 TRACE_PS("WAIT_FOR_TX_ACK - got DLE");
599 remove_from_tx_queue(pInfo, R3964_OK);
600
601 pInfo->state = R3964_IDLE;
602 trigger_transmit(pInfo);
603 } else {
604 retry_transmit(pInfo);
605 }
606 break;
607 case R3964_WAIT_FOR_RX_REPEAT:
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200608 /* FALLTHROUGH */
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800609 case R3964_IDLE:
610 if (c == STX) {
611 /* Prevent rx_queue from overflow: */
612 if (pInfo->blocks_in_rx_queue >=
613 R3964_MAX_BLOCKS_IN_RX_QUEUE) {
614 TRACE_PE("IDLE - got STX but no space in "
615 "rx_queue!");
616 pInfo->state = R3964_WAIT_FOR_RX_BUF;
617 mod_timer(&pInfo->tmr,
618 jiffies + R3964_TO_NO_BUF);
619 break;
620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621start_receiving:
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800622 /* Ok, start receiving: */
623 TRACE_PS("IDLE - got STX");
624 pInfo->rx_position = 0;
625 pInfo->last_rx = 0;
626 pInfo->flags &= ~R3964_ERROR;
627 pInfo->state = R3964_RECEIVING;
628 mod_timer(&pInfo->tmr, jiffies + R3964_TO_ZVZ);
629 pInfo->nRetry = 0;
630 put_char(pInfo, DLE);
631 flush(pInfo);
632 pInfo->bcc = 0;
633 }
634 break;
635 case R3964_RECEIVING:
636 if (pInfo->rx_position < RX_BUF_SIZE) {
637 pInfo->bcc ^= c;
638
639 if (c == DLE) {
640 if (pInfo->last_rx == DLE) {
641 pInfo->last_rx = 0;
642 goto char_to_buf;
643 }
644 pInfo->last_rx = DLE;
645 break;
646 } else if ((c == ETX) && (pInfo->last_rx == DLE)) {
647 if (pInfo->flags & R3964_BCC) {
648 pInfo->state = R3964_WAIT_FOR_BCC;
649 mod_timer(&pInfo->tmr,
650 jiffies + R3964_TO_ZVZ);
651 } else {
652 on_receive_block(pInfo);
653 }
654 } else {
655 pInfo->last_rx = c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656char_to_buf:
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800657 pInfo->rx_buf[pInfo->rx_position++] = c;
658 mod_timer(&pInfo->tmr, jiffies + R3964_TO_ZVZ);
659 }
660 }
661 /* else: overflow-msg? BUF_SIZE>MTU; should not happen? */
662 break;
663 case R3964_WAIT_FOR_BCC:
664 pInfo->last_rx = c;
665 on_receive_block(pInfo);
666 break;
667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
670static void receive_error(struct r3964_info *pInfo, const char flag)
671{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800672 switch (flag) {
673 case TTY_NORMAL:
674 break;
675 case TTY_BREAK:
676 TRACE_PE("received break");
677 pInfo->flags |= R3964_BREAK;
678 break;
679 case TTY_PARITY:
680 TRACE_PE("parity error");
681 pInfo->flags |= R3964_PARITY;
682 break;
683 case TTY_FRAME:
684 TRACE_PE("frame error");
685 pInfo->flags |= R3964_FRAME;
686 break;
687 case TTY_OVERRUN:
688 TRACE_PE("frame overrun");
689 pInfo->flags |= R3964_OVERRUN;
690 break;
691 default:
692 TRACE_PE("receive_error - unknown flag %d", flag);
693 pInfo->flags |= R3964_UNKNOWN;
694 break;
695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
Kees Cooke99e88a2017-10-16 14:43:17 -0700698static void on_timeout(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
Kees Cooke99e88a2017-10-16 14:43:17 -0700700 struct r3964_info *pInfo = from_timer(pInfo, t, tmr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800702 switch (pInfo->state) {
703 case R3964_TX_REQUEST:
704 TRACE_PE("TX_REQUEST - timeout");
705 retry_transmit(pInfo);
706 break;
707 case R3964_WAIT_ZVZ_BEFORE_TX_RETRY:
708 put_char(pInfo, NAK);
709 flush(pInfo);
710 retry_transmit(pInfo);
711 break;
712 case R3964_WAIT_FOR_TX_ACK:
713 TRACE_PE("WAIT_FOR_TX_ACK - timeout");
714 retry_transmit(pInfo);
715 break;
716 case R3964_WAIT_FOR_RX_BUF:
717 TRACE_PE("WAIT_FOR_RX_BUF - timeout");
718 put_char(pInfo, NAK);
719 flush(pInfo);
720 pInfo->state = R3964_IDLE;
721 break;
722 case R3964_RECEIVING:
723 TRACE_PE("RECEIVING - timeout after %d chars",
724 pInfo->rx_position);
725 put_char(pInfo, NAK);
726 flush(pInfo);
727 pInfo->state = R3964_IDLE;
728 break;
729 case R3964_WAIT_FOR_RX_REPEAT:
730 TRACE_PE("WAIT_FOR_RX_REPEAT - timeout");
731 pInfo->state = R3964_IDLE;
732 break;
733 case R3964_WAIT_FOR_BCC:
734 TRACE_PE("WAIT_FOR_BCC - timeout");
735 put_char(pInfo, NAK);
736 flush(pInfo);
737 pInfo->state = R3964_IDLE;
738 break;
739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740}
741
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800742static struct r3964_client_info *findClient(struct r3964_info *pInfo,
743 struct pid *pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800745 struct r3964_client_info *pClient;
746
747 for (pClient = pInfo->firstClient; pClient; pClient = pClient->next) {
748 if (pClient->pid == pid) {
749 return pClient;
750 }
751 }
752 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753}
754
Eric W. Biederman3cec5562006-12-13 00:35:10 -0800755static int enable_signals(struct r3964_info *pInfo, struct pid *pid, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800757 struct r3964_client_info *pClient;
758 struct r3964_client_info **ppClient;
759 struct r3964_message *pMsg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800761 if ((arg & R3964_SIG_ALL) == 0) {
762 /* Remove client from client list */
763 for (ppClient = &pInfo->firstClient; *ppClient;
764 ppClient = &(*ppClient)->next) {
765 pClient = *ppClient;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800767 if (pClient->pid == pid) {
768 TRACE_PS("removing client %d from client list",
769 pid_nr(pid));
770 *ppClient = pClient->next;
771 while (pClient->msg_count) {
772 pMsg = remove_msg(pInfo, pClient);
773 if (pMsg) {
774 kfree(pMsg);
775 TRACE_M("enable_signals - msg "
776 "kfree %p", pMsg);
777 }
778 }
779 put_pid(pClient->pid);
780 kfree(pClient);
781 TRACE_M("enable_signals - kfree %p", pClient);
782 return 0;
783 }
784 }
785 return -EINVAL;
786 } else {
787 pClient = findClient(pInfo, pid);
788 if (pClient) {
789 /* update signal options */
790 pClient->sig_flags = arg;
791 } else {
792 /* add client to client list */
793 pClient = kmalloc(sizeof(struct r3964_client_info),
794 GFP_KERNEL);
795 TRACE_M("enable_signals - kmalloc %p", pClient);
796 if (pClient == NULL)
797 return -ENOMEM;
798
799 TRACE_PS("add client %d to client list", pid_nr(pid));
800 spin_lock_init(&pClient->lock);
801 pClient->sig_flags = arg;
802 pClient->pid = get_pid(pid);
803 pClient->next = pInfo->firstClient;
804 pClient->first_msg = NULL;
805 pClient->last_msg = NULL;
806 pClient->next_block_to_read = NULL;
807 pClient->msg_count = 0;
808 pInfo->firstClient = pClient;
809 }
810 }
811
812 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813}
814
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800815static int read_telegram(struct r3964_info *pInfo, struct pid *pid,
816 unsigned char __user * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800818 struct r3964_client_info *pClient;
819 struct r3964_block_header *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800821 if (!buf) {
822 return -EINVAL;
823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800825 pClient = findClient(pInfo, pid);
826 if (pClient == NULL) {
827 return -EINVAL;
828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800830 block = pClient->next_block_to_read;
831 if (!block) {
832 return 0;
833 } else {
834 if (copy_to_user(buf, block->data, block->length))
835 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800837 remove_client_block(pInfo, pClient);
838 return block->length;
839 }
840
841 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
843
844static void add_msg(struct r3964_client_info *pClient, int msg_id, int arg,
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800845 int error_code, struct r3964_block_header *pBlock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800847 struct r3964_message *pMsg;
848 unsigned long flags;
849
850 if (pClient->msg_count < R3964_MAX_MSG_COUNT - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851queue_the_message:
852
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800853 pMsg = kmalloc(sizeof(struct r3964_message),
854 error_code ? GFP_ATOMIC : GFP_KERNEL);
855 TRACE_M("add_msg - kmalloc %p", pMsg);
856 if (pMsg == NULL) {
857 return;
858 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800860 spin_lock_irqsave(&pClient->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800862 pMsg->msg_id = msg_id;
863 pMsg->arg = arg;
864 pMsg->error_code = error_code;
865 pMsg->block = pBlock;
866 pMsg->next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800868 if (pClient->last_msg == NULL) {
869 pClient->first_msg = pClient->last_msg = pMsg;
870 } else {
871 pClient->last_msg->next = pMsg;
872 pClient->last_msg = pMsg;
873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800875 pClient->msg_count++;
876
877 if (pBlock != NULL) {
878 pBlock->locks++;
879 }
880 spin_unlock_irqrestore(&pClient->lock, flags);
881 } else {
882 if ((pClient->last_msg->msg_id == R3964_MSG_ACK)
883 && (pClient->last_msg->error_code == R3964_OVERFLOW)) {
884 pClient->last_msg->arg++;
885 TRACE_PE("add_msg - inc prev OVERFLOW-msg");
886 } else {
887 msg_id = R3964_MSG_ACK;
888 arg = 0;
889 error_code = R3964_OVERFLOW;
890 pBlock = NULL;
891 TRACE_PE("add_msg - queue OVERFLOW-msg");
892 goto queue_the_message;
893 }
894 }
895 /* Send SIGIO signal to client process: */
896 if (pClient->sig_flags & R3964_USE_SIGIO) {
897 kill_pid(pClient->pid, SIGIO, 1);
898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899}
900
901static struct r3964_message *remove_msg(struct r3964_info *pInfo,
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800902 struct r3964_client_info *pClient)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800904 struct r3964_message *pMsg = NULL;
905 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800907 if (pClient->first_msg) {
908 spin_lock_irqsave(&pClient->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800910 pMsg = pClient->first_msg;
911 pClient->first_msg = pMsg->next;
912 if (pClient->first_msg == NULL) {
913 pClient->last_msg = NULL;
914 }
915
916 pClient->msg_count--;
917 if (pMsg->block) {
918 remove_client_block(pInfo, pClient);
919 pClient->next_block_to_read = pMsg->block;
920 }
921 spin_unlock_irqrestore(&pClient->lock, flags);
922 }
923 return pMsg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924}
925
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800926static void remove_client_block(struct r3964_info *pInfo,
927 struct r3964_client_info *pClient)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800929 struct r3964_block_header *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800931 TRACE_PS("remove_client_block PID %d", pid_nr(pClient->pid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800933 block = pClient->next_block_to_read;
934 if (block) {
935 block->locks--;
936 if (block->locks == 0) {
937 remove_from_rx_queue(pInfo, block);
938 }
939 }
940 pClient->next_block_to_read = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941}
942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943/*************************************************************
944 * Line discipline routines
945 *************************************************************/
946
947static int r3964_open(struct tty_struct *tty)
948{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800949 struct r3964_info *pInfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800951 TRACE_L("open");
952 TRACE_L("tty=%p, PID=%d, disc_data=%p",
953 tty, current->pid, tty->disc_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800955 pInfo = kmalloc(sizeof(struct r3964_info), GFP_KERNEL);
956 TRACE_M("r3964_open - info kmalloc %p", pInfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800958 if (!pInfo) {
959 printk(KERN_ERR "r3964: failed to alloc info structure\n");
960 return -ENOMEM;
961 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800963 pInfo->rx_buf = kmalloc(RX_BUF_SIZE, GFP_KERNEL);
964 TRACE_M("r3964_open - rx_buf kmalloc %p", pInfo->rx_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800966 if (!pInfo->rx_buf) {
967 printk(KERN_ERR "r3964: failed to alloc receive buffer\n");
968 kfree(pInfo);
969 TRACE_M("r3964_open - info kfree %p", pInfo);
970 return -ENOMEM;
971 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800973 pInfo->tx_buf = kmalloc(TX_BUF_SIZE, GFP_KERNEL);
974 TRACE_M("r3964_open - tx_buf kmalloc %p", pInfo->tx_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800976 if (!pInfo->tx_buf) {
977 printk(KERN_ERR "r3964: failed to alloc transmit buffer\n");
978 kfree(pInfo->rx_buf);
979 TRACE_M("r3964_open - rx_buf kfree %p", pInfo->rx_buf);
980 kfree(pInfo);
981 TRACE_M("r3964_open - info kfree %p", pInfo);
982 return -ENOMEM;
983 }
984
985 spin_lock_init(&pInfo->lock);
Peter Hurleyaba24882015-10-10 16:00:56 -0400986 mutex_init(&pInfo->read_lock);
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800987 pInfo->tty = tty;
Jiri Slaby5e07e1c2007-02-10 01:45:09 -0800988 pInfo->priority = R3964_MASTER;
989 pInfo->rx_first = pInfo->rx_last = NULL;
990 pInfo->tx_first = pInfo->tx_last = NULL;
991 pInfo->rx_position = 0;
992 pInfo->tx_position = 0;
993 pInfo->last_rx = 0;
994 pInfo->blocks_in_rx_queue = 0;
995 pInfo->firstClient = NULL;
996 pInfo->state = R3964_IDLE;
997 pInfo->flags = R3964_DEBUG;
998 pInfo->nRetry = 0;
999
1000 tty->disc_data = pInfo;
1001 tty->receive_room = 65536;
1002
Kees Cooke99e88a2017-10-16 14:43:17 -07001003 timer_setup(&pInfo->tmr, on_timeout, 0);
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001004
1005 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006}
1007
1008static void r3964_close(struct tty_struct *tty)
1009{
Alan Coxc9f19e92009-01-02 13:47:26 +00001010 struct r3964_info *pInfo = tty->disc_data;
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001011 struct r3964_client_info *pClient, *pNext;
1012 struct r3964_message *pMsg;
1013 struct r3964_block_header *pHeader, *pNextHeader;
1014 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001016 TRACE_L("close");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001018 /*
1019 * Make sure that our task queue isn't activated. If it
1020 * is, take it out of the linked list.
1021 */
1022 del_timer_sync(&pInfo->tmr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001024 /* Remove client-structs and message queues: */
1025 pClient = pInfo->firstClient;
1026 while (pClient) {
1027 pNext = pClient->next;
1028 while (pClient->msg_count) {
1029 pMsg = remove_msg(pInfo, pClient);
1030 if (pMsg) {
1031 kfree(pMsg);
1032 TRACE_M("r3964_close - msg kfree %p", pMsg);
1033 }
1034 }
1035 put_pid(pClient->pid);
1036 kfree(pClient);
1037 TRACE_M("r3964_close - client kfree %p", pClient);
1038 pClient = pNext;
1039 }
1040 /* Remove jobs from tx_queue: */
1041 spin_lock_irqsave(&pInfo->lock, flags);
1042 pHeader = pInfo->tx_first;
1043 pInfo->tx_first = pInfo->tx_last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 spin_unlock_irqrestore(&pInfo->lock, flags);
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001045
1046 while (pHeader) {
1047 pNextHeader = pHeader->next;
1048 kfree(pHeader);
1049 pHeader = pNextHeader;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
1051
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001052 /* Free buffers: */
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001053 kfree(pInfo->rx_buf);
1054 TRACE_M("r3964_close - rx_buf kfree %p", pInfo->rx_buf);
1055 kfree(pInfo->tx_buf);
1056 TRACE_M("r3964_close - tx_buf kfree %p", pInfo->tx_buf);
1057 kfree(pInfo);
1058 TRACE_M("r3964_close - info kfree %p", pInfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059}
1060
1061static ssize_t r3964_read(struct tty_struct *tty, struct file *file,
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001062 unsigned char __user * buf, size_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063{
Alan Coxc9f19e92009-01-02 13:47:26 +00001064 struct r3964_info *pInfo = tty->disc_data;
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001065 struct r3964_client_info *pClient;
1066 struct r3964_message *pMsg;
1067 struct r3964_client_message theMsg;
Jiri Slabyeca41042009-06-22 18:42:03 +01001068 int ret;
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001069
1070 TRACE_L("read()");
1071
Peter Hurleyaba24882015-10-10 16:00:56 -04001072 /*
1073 * Internal serialization of reads.
1074 */
1075 if (file->f_flags & O_NONBLOCK) {
1076 if (!mutex_trylock(&pInfo->read_lock))
1077 return -EAGAIN;
1078 } else {
1079 if (mutex_lock_interruptible(&pInfo->read_lock))
1080 return -ERESTARTSYS;
1081 }
Alan Cox04f378b2008-04-30 00:53:29 -07001082
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001083 pClient = findClient(pInfo, task_pid(current));
1084 if (pClient) {
1085 pMsg = remove_msg(pInfo, pClient);
1086 if (pMsg == NULL) {
1087 /* no messages available. */
1088 if (file->f_flags & O_NONBLOCK) {
Jiri Slabyeca41042009-06-22 18:42:03 +01001089 ret = -EAGAIN;
1090 goto unlock;
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001091 }
1092 /* block until there is a message: */
Peter Hurleyaba24882015-10-10 16:00:56 -04001093 wait_event_interruptible(tty->read_wait,
Jiri Slaby6defec12007-07-15 23:40:20 -07001094 (pMsg = remove_msg(pInfo, pClient)));
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001097 /* If we still haven't got a message, we must have been signalled */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Alan Cox04f378b2008-04-30 00:53:29 -07001099 if (!pMsg) {
Jiri Slabyeca41042009-06-22 18:42:03 +01001100 ret = -EINTR;
1101 goto unlock;
Alan Cox04f378b2008-04-30 00:53:29 -07001102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001104 /* deliver msg to client process: */
1105 theMsg.msg_id = pMsg->msg_id;
1106 theMsg.arg = pMsg->arg;
1107 theMsg.error_code = pMsg->error_code;
Jiri Slabyeca41042009-06-22 18:42:03 +01001108 ret = sizeof(struct r3964_client_message);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001110 kfree(pMsg);
1111 TRACE_M("r3964_read - msg kfree %p", pMsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Jiri Slabyeca41042009-06-22 18:42:03 +01001113 if (copy_to_user(buf, &theMsg, ret)) {
1114 ret = -EFAULT;
1115 goto unlock;
Alan Cox04f378b2008-04-30 00:53:29 -07001116 }
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001117
Jiri Slabyeca41042009-06-22 18:42:03 +01001118 TRACE_PS("read - return %d", ret);
1119 goto unlock;
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001120 }
Jiri Slabyeca41042009-06-22 18:42:03 +01001121 ret = -EPERM;
1122unlock:
Peter Hurleyaba24882015-10-10 16:00:56 -04001123 mutex_unlock(&pInfo->read_lock);
Jiri Slabyeca41042009-06-22 18:42:03 +01001124 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125}
1126
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001127static ssize_t r3964_write(struct tty_struct *tty, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 const unsigned char *data, size_t count)
1129{
Alan Coxc9f19e92009-01-02 13:47:26 +00001130 struct r3964_info *pInfo = tty->disc_data;
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001131 struct r3964_block_header *pHeader;
1132 struct r3964_client_info *pClient;
1133 unsigned char *new_data;
1134
1135 TRACE_L("write request, %d characters", count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136/*
1137 * Verify the pointers
1138 */
1139
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001140 if (!pInfo)
1141 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
1143/*
1144 * Ensure that the caller does not wish to send too much.
1145 */
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001146 if (count > R3964_MTU) {
1147 if (pInfo->flags & R3964_DEBUG) {
1148 TRACE_L(KERN_WARNING "r3964_write: truncating user "
1149 "packet from %u to mtu %d", count, R3964_MTU);
1150 }
1151 count = R3964_MTU;
1152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153/*
1154 * Allocate a buffer for the data and copy it from the buffer with header prepended
1155 */
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001156 new_data = kmalloc(count + sizeof(struct r3964_block_header),
1157 GFP_KERNEL);
1158 TRACE_M("r3964_write - kmalloc %p", new_data);
1159 if (new_data == NULL) {
1160 if (pInfo->flags & R3964_DEBUG) {
1161 printk(KERN_ERR "r3964_write: no memory\n");
1162 }
1163 return -ENOSPC;
1164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001166 pHeader = (struct r3964_block_header *)new_data;
1167 pHeader->data = new_data + sizeof(struct r3964_block_header);
1168 pHeader->length = count;
1169 pHeader->locks = 0;
1170 pHeader->owner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001172 pClient = findClient(pInfo, task_pid(current));
1173 if (pClient) {
1174 pHeader->owner = pClient;
1175 }
1176
1177 memcpy(pHeader->data, data, count); /* We already verified this */
1178
1179 if (pInfo->flags & R3964_DEBUG) {
1180 dump_block(pHeader->data, count);
1181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183/*
1184 * Add buffer to transmit-queue:
1185 */
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001186 add_tx_queue(pInfo, pHeader);
1187 trigger_transmit(pInfo);
1188
1189 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190}
1191
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001192static int r3964_ioctl(struct tty_struct *tty, struct file *file,
1193 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
Alan Coxc9f19e92009-01-02 13:47:26 +00001195 struct r3964_info *pInfo = tty->disc_data;
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001196 if (pInfo == NULL)
1197 return -EINVAL;
1198 switch (cmd) {
1199 case R3964_ENABLE_SIGNALS:
1200 return enable_signals(pInfo, task_pid(current), arg);
1201 case R3964_SETPRIORITY:
1202 if (arg < R3964_MASTER || arg > R3964_SLAVE)
1203 return -EINVAL;
1204 pInfo->priority = arg & 0xff;
1205 return 0;
1206 case R3964_USE_BCC:
1207 if (arg)
1208 pInfo->flags |= R3964_BCC;
1209 else
1210 pInfo->flags &= ~R3964_BCC;
1211 return 0;
1212 case R3964_READ_TELEGRAM:
1213 return read_telegram(pInfo, task_pid(current),
1214 (unsigned char __user *)arg);
1215 default:
1216 return -ENOIOCTLCMD;
1217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218}
1219
Al Virof0193d32018-09-13 22:12:15 -04001220#ifdef CONFIG_COMPAT
1221static int r3964_compat_ioctl(struct tty_struct *tty, struct file *file,
1222 unsigned int cmd, unsigned long arg)
1223{
1224 switch (cmd) {
1225 case R3964_ENABLE_SIGNALS:
1226 case R3964_SETPRIORITY:
1227 case R3964_USE_BCC:
1228 return r3964_ioctl(tty, file, cmd, arg);
1229 default:
1230 return -ENOIOCTLCMD;
1231 }
1232}
1233#endif
1234
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001235static void r3964_set_termios(struct tty_struct *tty, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236{
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001237 TRACE_L("set_termios");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238}
1239
1240/* Called without the kernel lock held - fine */
Al Viroafc9a422017-07-03 06:39:46 -04001241static __poll_t r3964_poll(struct tty_struct *tty, struct file *file,
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001242 struct poll_table_struct *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243{
Alan Coxc9f19e92009-01-02 13:47:26 +00001244 struct r3964_info *pInfo = tty->disc_data;
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001245 struct r3964_client_info *pClient;
1246 struct r3964_message *pMsg = NULL;
1247 unsigned long flags;
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001248 __poll_t result = EPOLLOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001250 TRACE_L("POLL");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001252 pClient = findClient(pInfo, task_pid(current));
1253 if (pClient) {
Peter Hurley9b9ab1b2015-10-10 16:00:55 -04001254 poll_wait(file, &tty->read_wait, wait);
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001255 spin_lock_irqsave(&pInfo->lock, flags);
1256 pMsg = pClient->first_msg;
1257 spin_unlock_irqrestore(&pInfo->lock, flags);
1258 if (pMsg)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001259 result |= EPOLLIN | EPOLLRDNORM;
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001260 } else {
1261 result = -EINVAL;
1262 }
1263 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264}
1265
Linus Torvalds55db4c62011-06-04 06:33:24 +09001266static void r3964_receive_buf(struct tty_struct *tty, const unsigned char *cp,
1267 char *fp, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
Alan Coxc9f19e92009-01-02 13:47:26 +00001269 struct r3964_info *pInfo = tty->disc_data;
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001270 const unsigned char *p;
Peter Hurley82f91fe2013-12-02 13:56:03 -05001271 char *f, flags = TTY_NORMAL;
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001272 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Jiri Slaby5e07e1c2007-02-10 01:45:09 -08001274 for (i = count, p = cp, f = fp; i; i--, p++) {
1275 if (f)
1276 flags = *f++;
1277 if (flags == TTY_NORMAL) {
1278 receive_char(pInfo, *p);
1279 } else {
1280 receive_error(pInfo, flags);
1281 }
1282
1283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284}
1285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286MODULE_LICENSE("GPL");
1287MODULE_ALIAS_LDISC(N_R3964);