-
Notifications
You must be signed in to change notification settings - Fork 0
/
lunix-attach.c
499 lines (423 loc) · 10.2 KB
/
lunix-attach.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
/*
* lunix-attach.c
*
* Make the Lunix:TNG driver receive data from the specified
* TTY, by attaching the Lunix line discipline to it.
*
* Based on slattach.c for SLIP operation
* [net-tools Debian package].
*
* Must be run with root privilege.
*
* Vangelis Koukis <vkoukis@cslab.ece.ntua.gr>
*
*/
#include <pwd.h>
#include <stdio.h>
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
#include <limits.h>
#include <signal.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <termios.h>
#include <sys/stat.h>
#include <sys/param.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include "lunix.h"
#ifndef _PATH_LOCKD
#define _PATH_LOCKD "/var/lock" /* lock files */
#endif
#ifndef _UID_UUCP
#define _UID_UUCP "uucp" /* owns locks */
#endif
struct {
const char *speed;
int code;
} tty_speeds[] = { /* table of usable baud rates */
{ "50", B50 }, { "75", B75 },
{ "110", B110 }, { "300", B300 },
{ "600", B600 }, { "1200", B1200 },
{ "2400", B2400 }, { "4800", B4800 },
{ "9600", B9600 },
#ifdef B14400
{ "14400", B14400 },
#endif
#ifdef B19200
{ "19200", B19200 },
#endif
#ifdef B38400
{ "38400", B38400 },
#endif
#ifdef B57600
{ "57600", B57600 },
#endif
#ifdef B115200
{ "115200", B115200 },
#endif
{ NULL, 0 }
};
/*
* Global data
*
*/
int tty_fd = -1;
struct termios tty_before, tty_current;
int ldisc_before;
/* Check for an existing lock file on our device */
static int tty_already_locked(char *nam)
{
int i = 0, pid = 0;
FILE *fd = 0;
/* Does the lock file on our device exist? */
if ((fd = fopen(nam, "r")) == NULL)
return 0; /* No, return perm to continue */
/*
* Yes, the lock is there. Now let's make sure
* at least there's no active process that owns
* that lock.
*/
i = fscanf(fd, "%d", &pid);
(void) fclose(fd);
if (i != 1) /* Lock file format's wrong! Kill't */
return 0;
/* We got the pid, check if the process's alive */
if (kill(pid, 0) == 0) /* it found process */
return 1; /* Yup, it's running... */
/* Dead, we can proceed with locking this device... */
return 0;
}
/* Lock or unlock a terminal line. */
static int tty_lock(char *path, int mode)
{
int fd;
int ret;
char apid[16];
struct passwd *pw;
static int saved_lock = 0;
static char saved_path[PATH_MAX];
/* We do not lock standard input. */
if (mode == 1) { /* lock */
sprintf(saved_path, "%s/LCK..%s", _PATH_LOCKD, path);
if (tty_already_locked(saved_path)) {
fprintf(stderr, "/dev/%s already locked\n", path);
return -1;
}
if ((fd = creat(saved_path, 0644)) < 0) {
if (errno != EEXIST) {
fprintf(stderr, "tty_lock: (%s): %s\n",
saved_path, strerror(errno));
}
return -1;
}
sprintf(apid, "%10d\n", getpid());
if ((ret = write(fd, apid, strlen(apid))) != strlen(apid)) {
fprintf(stderr, "write to PID file incomplete, ret = %d\n", ret);
close(fd);
unlink(saved_path);
return -1;
}
(void) close(fd);
/* Make sure UUCP owns the lockfile. Required by some packages. */
if ((pw = getpwnam(_UID_UUCP)) == NULL) {
fprintf(stderr, "tty_lock: UUCP user %s unknown\n", _UID_UUCP);
return 0;
}
(void) chown(saved_path, pw->pw_uid, pw->pw_gid);
saved_lock = 1;
} else { /* unlock */
if (saved_lock != 1)
return 0;
if (unlink(saved_path) < 0) {
fprintf(stderr, "tty_unlock: (%s): %s\n",
saved_path, strerror(errno));
return -1;
}
saved_lock = 0;
}
return 0;
}
/* Find a serial speed code in the table. */
static int tty_find_speed(const char *speed)
{
int i;
i = 0;
while (tty_speeds[i].speed != NULL) {
if (!strcmp(tty_speeds[i].speed, speed)) return(tty_speeds[i].code);
i++;
}
return -EINVAL;
}
/* Set the number of stop bits. */
static int tty_set_stopbits(struct termios *tty, char *stopbits)
{
switch(*stopbits) {
case '1':
tty->c_cflag &= ~CSTOPB;
break;
case '2':
tty->c_cflag |= CSTOPB;
break;
default:
return -EINVAL;
}
return 0;
}
/* Set the number of data bits. */
static int tty_set_databits(struct termios *tty, char *databits)
{
tty->c_cflag &= ~CSIZE;
switch(*databits) {
case '5':
tty->c_cflag |= CS5;
break;
case '6':
tty->c_cflag |= CS6;
break;
case '7':
tty->c_cflag |= CS7;
break;
case '8':
tty->c_cflag |= CS8;
break;
default:
return -EINVAL;
}
return 0;
}
/* Set the type of parity encoding. */
static int tty_set_parity(struct termios *tty, char *parity)
{
switch(toupper(*parity)) {
case 'N':
tty->c_cflag &= ~(PARENB | PARODD);
break;
case 'O':
tty->c_cflag &= ~(PARENB | PARODD);
tty->c_cflag |= (PARENB | PARODD);
break;
case 'E':
tty->c_cflag &= ~(PARENB | PARODD);
tty->c_cflag |= (PARENB);
break;
default:
return -EINVAL;
}
return 0;
}
/* Set the line speed of a terminal line. */
static int tty_set_speed(struct termios *tty, const char *speed)
{
int code;
if ((code = tty_find_speed(speed)) < 0)
return code;
tty->c_cflag &= ~CBAUD;
tty->c_cflag |= code;
return 0;
}
/* Put a terminal line in a transparent state. */
static int tty_set_raw(struct termios *tty)
{
int i;
int speed;
for (i = 0; i < NCCS; i++)
tty->c_cc[i] = '\0'; /* no spec chr */
tty->c_cc[VMIN] = 1;
tty->c_cc[VTIME] = 0;
tty->c_iflag = (IGNBRK | IGNPAR); /* input flags */
tty->c_oflag = (0); /* output flags */
tty->c_lflag = (0); /* local flags */
speed = (tty->c_cflag & CBAUD); /* save current speed */
tty->c_cflag = (CRTSCTS | HUPCL | CREAD); /* UART flags */
tty->c_cflag |= CLOCAL;
tty->c_cflag |= speed; /* restore speed */
return 0;
}
/* Fetch the state of a terminal. */
static int tty_get_state(struct termios *tty)
{
int saved_errno;
if (ioctl(tty_fd, TCGETS, tty) < 0) {
saved_errno = errno;
perror("Get TTY State:");
return -saved_errno;
}
return 0;
}
/* Set the state of a terminal. */
static int tty_set_state(struct termios *tty)
{
int saved_errno;
if (ioctl(tty_fd, TCSETS, tty) < 0) {
saved_errno = errno;
perror("Set TTY State:");
return -saved_errno;
}
return 0;
}
/* Get the TTY line discipline. */
static int tty_get_ldisc(int *disc)
{
int saved_errno;
if (ioctl(tty_fd, TIOCGETD, disc) < 0) {
saved_errno = errno;
perror("get ldisc: failed to get line discipline");
fprintf(stderr, "Is the Lunix:TNG discipline actually loaded?!\n");
return -saved_errno;
}
return 0;
}
/* Set the TTY line discipline. */
static int tty_set_ldisc(int disc)
{
int saved_errno;
if (ioctl(tty_fd, TIOCSETD, &disc) < 0) {
saved_errno = errno;
perror("set ldisc: failed to set line discipline");
return -saved_errno;
}
return 0;
}
/* Restore the TTY to its previous state. */
static int tty_restore(void)
{
int ret;
struct termios tty;
tty = tty_before;
(void) tty_set_speed(&tty, "0");
if ((ret = tty_set_state(&tty)) < 0) {
fprintf(stderr, "slattach: tty_restore: %s\n",
strerror(-ret));
return ret;
}
return 0;
}
/* Close down a terminal line. */
static int tty_close(void)
{
/*
* Set the old discipline and restore the
* previous line mode.
*/
(void) tty_set_ldisc(ldisc_before);
(void) tty_restore();
(void) tty_lock(NULL, 0);
return 0;
}
/* Open and initialize a terminal line. */
static int tty_open(char *name)
{
int fd;
int ret;
int saved_errno;
char pathbuf[PATH_MAX];
register char *path_open, *path_lock;
/* Try opening the TTY device. */
if (name != NULL) {
if (name[0] != '/') {
if (strlen(name + 6) > sizeof(pathbuf)) {
fprintf(stderr, "tty name too long\n");
return -1;
}
sprintf(pathbuf, "/dev/%s", name);
path_open = pathbuf;
path_lock = name;
} else if (!strncmp(name, "/dev/", 5)) {
path_open = name;
path_lock = name + 5;
} else {
path_open = name;
path_lock = name;
}
fprintf(stderr, "tty_open: looking for lock\n");
if (tty_lock(path_lock, 1))
return -1 ; /* can we lock the device? */
fprintf(stderr, "tty_open: trying to open %s\n",
path_open);
if ((fd = open(path_open, O_RDWR|O_NDELAY)) < 0) {
saved_errno = errno;
fprintf(stderr, "tty_open(%s, RW): %s\n",
path_open, strerror(errno));
return -saved_errno;
}
tty_fd = fd;
fprintf(stderr, "tty_open: %s (fd=%d) ", path_open, fd);
} else {
tty_fd = 0;
}
/* Fetch the current state of the terminal. */
if (tty_get_state(&tty_before) < 0) {
saved_errno = errno;
fprintf(stderr, "tty_open: cannot get current state\n");
return -saved_errno;
}
tty_current = tty_before;
/* Fetch the current line discipline of this terminal. */
if (tty_get_ldisc(&ldisc_before) < 0) {
saved_errno = errno;
fprintf(stderr, "tty_open: cannot get current line disc\n");
return -saved_errno;
}
/* Put this terminal line in a 8-bit transparent mode. */
if (tty_set_raw(&tty_current) < 0) {
saved_errno = errno;
fprintf(stderr, "tty_open: cannot set RAW mode\n");
return -saved_errno;
}
/**************************************************
* The sensor needs to be setup at
* 57600bps, 8 data bits, No parity, 1 stop bit:
**************************************************
*/
if (tty_set_speed(&tty_current, "57600") != 0) {
saved_errno = errno;
fprintf(stderr, "tty_open: cannot set data rate to 57600bps\n");
return -saved_errno;
}
if (tty_set_databits(&tty_current, "8") ||
tty_set_stopbits(&tty_current, "1") ||
tty_set_parity(&tty_current, "N")) {
saved_errno = errno;
fprintf(stderr, "tty_open: cannot set 8N1 mode\n");
return -saved_errno;
};
/* Set the new line mode. */
if ((ret = tty_set_state(&tty_current)) < 0)
return ret;
/* And activate the new line discipline */
if ((ret = tty_set_ldisc(N_LUNIX_LDISC)) < 0)
return ret;
return 0;
}
/* Catch any signals. */
static void sig_catch(int sig)
{
tty_close();
exit(0);
}
int main(int argc, char *argv[])
{
if (argc != 2) {
fprintf(stderr,
"Usage: %s tty_line\n"
"where tty_line is the TTY on which to set the Lunix line discipline.\n\n",
argv[0]);
exit(1);
}
if (tty_open(argv[1]) < 0)
return 1;
fprintf(stderr, "Line discipline set on %s, press ^C to release the TTY...\n",
argv[1]);
(void) signal(SIGHUP, sig_catch);
(void) signal(SIGINT, sig_catch);
(void) signal(SIGQUIT, sig_catch);
(void) signal(SIGTERM, sig_catch);
while (pause())
;
/* Unreachable */
return 100;
}