File: xringd.c

package info (click to toggle)
xringd 1.20-23
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 216 kB
  • ctags: 108
  • sloc: ansic: 866; sh: 64; makefile: 63
file content (628 lines) | stat: -rw-r--r-- 13,886 bytes parent folder | download | duplicates (4)
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
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
/*
 * File:	xringd.c
 *
 * Synopsis:	Extensive modem ring daemon
 *
 * System:	Linux 1.3.48+
 *
 * Daemon that uses ringsm.c module to do interesting things with sequences
 * of modem RINGs. Does not disturb any getty running on the same
 * port as it only probes for the RI signal.
 * Device and OS dependent as it uses the TIOCMIWAIT/TIOCGICOUNT ioctls. The
 * ringsm can be used with "traditional" methods. This is just
 * cleaner as it does not disturb your system's getty.
 *
 * Configuration file default: /etc/xringd.conf
 * Config file lines are of this form:
 * R secs[-secs] [ R secs[-secs] ] ... : command
 * which specify the pattern of rings+delays leading to the exution of 
 * a command. 
 * 
 * Copyright (c) 1995-1997 Angelo Haritsis. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the Free
 * Software Foundation; either version 2 of the License, or (at your option)
 * any later version.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; see the file COPYING.  If not, write to
 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 * $Id: xringd.c,v 1.5 1996/02/17 15:50:07 ah Exp ah $
 */

#ifndef linux
#error xringd only runs for linux - it uses 2 non-standard ioctls
#endif

#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <paths.h>
#include <fcntl.h>
#include <stdarg.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/wait.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <sys/param.h>
#include <signal.h>
#include <termios.h>
#include <getopt.h>
#include <syslog.h>
#include <pwd.h>
#include <ctype.h>
#include <linux/version.h>
#include <linux/serial.h>

#include "ringsm.h"

#if !defined(LINUX_VERSION_CODE) || \
    (LINUX_VERSION_CODE < ((1 * 65536) + (3 * 256) + 48))
#error xringd needs Linux 1.3.48 or greater
#endif

#define RING_SIGNALS	/* define for raising SIG_RING on RING detection */
#define SIG_RING SIGUSR1
#define SIG_FLAGS 0	/* 0 or SA_RESTART (syscall after a sig) */

#define MAXLINE 512

#ifndef MODEM_FILE
#define MODEM_FILE "/dev/ttyS0"
#endif
#ifndef CONF_FILE
#define CONF_FILE "/etc/xringd.conf"
#endif
#ifndef INIT_TIMEOUT
#define INIT_TIMEOUT 15
#endif

#define PROG "xringd"

#if 0
static char pidfilename[MAXPATHLEN] = "\0";
#endif

char *config_file = NULL;
char *modem_file = NULL;
char *do_onring = NULL;
int modem = -1; 
time_t reset_timeout = INIT_TIMEOUT;
int debug = 0;
int disable_echo = 0;
int log_level = 1;
int syntax_only = 0;
long msec_ignore = 0;	/* 2 rings within this many msecs => taken as one */
sigset_t sig_mask;
int ringsm_parsed = FALSE;

void set_signals(void);
int modem_open(char *file, int reopen, int disable_echo);
void usage_and_die(void);
int parse_an_arg(char opt, char *s, int in_conf_line);
int parse_an_arg_conf(char opt, char *s, int line);
void parse_args(int argc, char **argv);
char *str_new(char *s, char *new);
void show_args(void);
int is_ring_near(struct timeval *tm_bef);
void seq_success(char *seq_cmd);
void log_msg(int priority, int level, char *fmt, ...);
void cback_log_msg(int level, char *fmt, ...);
void daemon_init(void);
void ring_cmd(void);
void proc_ring(int i);
void sig_child(int);
void sig_hup(int i);
void sig_alarm(int i);
void clean_exit(int code);
void sig_bye(int i);
void fork_cmd(char *cmd);


int main (int argc, char *argv[])
{
	int arg;
	struct serial_icounter_struct c;
	struct timeval tm_bef;
	static char str_near[100];

	config_file = str_new(config_file, CONF_FILE);	/* initialise strings */
	modem_file = str_new(modem_file, MODEM_FILE);
	parse_args(argc, argv);
	if (access(config_file, R_OK) != 0) {
		log_msg(-1, 0, "cannot open config file %s", config_file);
		usage_and_die();
		exit(1);
	}
	if ((arg = ringsm_parse(config_file, &parse_an_arg_conf)) < 0) {
		log_msg(-1, 0, "error in config file, line %d", -arg);
		exit(1);
	}
	ringsm_parsed = TRUE;
	if (syntax_only) {
		log_msg(-1, 0, "config file %s -> syntax ok", config_file);
		exit(0);
	}

	modem = modem_open(modem_file, FALSE, disable_echo);	/* first open */
	if (ioctl(modem, TIOCGICOUNT, &c) != 0) {
		log_msg(-1, 0, "needs Linux 1.3.48+, 16xx0 uart");
		usage_and_die();
		exit(1);
	}
	show_args();

	/* Daemon proper */
	daemon_init();
	if (!debug && log_level > 0)
		openlog(PROG, LOG_PID, LOG_DAEMON);
	set_signals();
	ringsm_init(reset_timeout, &seq_success, &alarm, &cback_log_msg);
	str_near[0] = 0;
	if (msec_ignore > 0)
		sprintf(str_near, "; rings %ld msec or less apart ignored", msec_ignore);
	log_msg(LOG_INFO, 1, "version %s started by %s (uid %d)%s", VERSION, getpwuid(getuid())->pw_name, getuid(), str_near);

	gettimeofday(&tm_bef, NULL);
	/* main daemon loop */
	while (1) {
		/* wait on RI line */
		if (ioctl(modem, TIOCMIWAIT, TIOCM_RNG) != 0) {
			if (EINTR == errno) {
				log_msg(LOG_DEBUG, 1000, "ioctl restarting - signal");
				continue;
			}
			log_msg(LOG_ERR, 10, "%%m - reopening %s", modem_file);
			/*
			 * XXX EIO may occur: port hung up by other process!
			 * Reopen it - danger: reopening failing continously
			 */
			close(modem);
			modem = modem_open(modem_file, TRUE, disable_echo);
			continue;
		}
		/* we got a ring; if near the previous, ignore it */
		if (is_ring_near(&tm_bef))
			continue;
		/* ring is certain; notify the state machine */
#ifdef RING_SIGNALS
		raise(SIG_RING);
#else
		proc_ring(arg /*dummy*/);
#endif
		if (debug)
			ringsm_dump();
	}
	/* NOTREACHED */
	return 0;
}

void
show_args(void)
{
#ifdef DEBUG
	log_msg(-1, 100, "Modem: %s - Config: %s\nOnring: %s\n"
			"reset: %d - ignore: %d - debug: %d - log: %d\n",
			modem_file, config_file, do_onring,
			reset_timeout, msec_ignore, debug, log_level);
#endif
}

void
usage_and_die(void)
{
	fprintf(stderr, "xringd version " VERSION " - by A. Haritsis (ah@doc.ic.ac.uk)\n"
			"usage: %s [-a rngcmd] [-c cfgfile] [-d] [-h] [-i ignore_msec] [-l loglevel]\n"
			"              [-m modem_dev] [-e] [-n] [-t initime] [modem_dev]\n", PROG);
	exit(1);
}

void
set_signals(void)
{
#define SIGNAL(s, flags, handler, old) do { \
	sa.sa_handler = handler; \
	sa.sa_flags = flags; \
	if (sigaction(s, &sa, old) < 0) { \
		log_msg(LOG_ERR, 1, "error setting signal (%%m)"); \
		clean_exit(1); \
	} \
} while (0)

	struct sigaction sa;   

	sigemptyset(&sig_mask);
	sigaddset(&sig_mask, SIGALRM);	/* only one signal served at a time */
	sigaddset(&sig_mask, SIGCHLD);
	sigaddset(&sig_mask, SIGHUP);
	sigaddset(&sig_mask, SIGINT);
	sigaddset(&sig_mask, SIGTERM);
	sigaddset(&sig_mask, SIGQUIT);
#ifdef RING_SIGNALS
	sigaddset(&sig_mask, SIG_RING);
#endif
	sa.sa_mask = sig_mask;
	SIGNAL(SIGALRM, SIG_FLAGS, sig_alarm, NULL);
	SIGNAL(SIGCHLD, SIG_FLAGS, sig_child, NULL);
#ifdef RING_SIGNALS
	SIGNAL(SIG_RING, SIG_FLAGS, proc_ring, NULL);
#endif
	SIGNAL(SIGHUP, SIG_FLAGS, sig_hup, NULL);
	SIGNAL(SIGINT, SIG_FLAGS, sig_bye, NULL);
	SIGNAL(SIGTERM, SIG_FLAGS, sig_bye, NULL);
	SIGNAL(SIGQUIT, SIG_FLAGS, sig_bye, NULL);
#undef SIGNAL
}

void
log_msg(int priority, int level, char *fmt, ...)
{
	va_list p;
	char buf[MAXLINE];

	va_start(p, fmt);
	vsprintf(buf, fmt, p);
	if (log_level >= level) {
		if (debug || -1 == priority) {
			fflush(stdout);
			fprintf(stderr, PROG ": %s\n", buf);
			fflush(stderr);
		} else {
			syslog(priority, buf);
		}
	}
	va_end(p);
}


void
cback_log_msg(int level, char *fmt, ...)
{
	va_list p;
	char buf[MAXLINE];

	va_start(p, fmt);
	vsprintf(buf, fmt, p);
	log_msg(LOG_DEBUG, level, buf);
	va_end(p);
}

/*
 * is_ring_near -- is ring we just got nearer than msec_ignore msec to 
 *		   the previous?
 */
int
is_ring_near(struct timeval *tm_bef)
{
	struct timeval tm;
	long msec;
	int ret;

	if (0 == msec_ignore)
		return FALSE;

	gettimeofday(&tm, NULL);
	msec = (tm.tv_sec - tm_bef->tv_sec) * 1000L + 
	       (tm.tv_usec - tm_bef->tv_usec) / 1000L;
	*tm_bef = tm;	/* update the before time! */
	ret = (msec <= msec_ignore);
	if (ret)
		log_msg(LOG_DEBUG, 10, "RI near (%ld msec) - dumped", msec);
	return ret;
}

/*
 * called via ringsm_process_timeout
 */
void
seq_success(char *seq_cmd)
{
	log_msg(LOG_INFO, 1, "launching: %s", seq_cmd);
	fork_cmd(seq_cmd);
}

/*
 * Called when a RING signal appears
 */
void
proc_ring(int i)
{
	static int rings = 1;
	int ret;

	if (do_onring)
		ring_cmd();
	log_msg(LOG_DEBUG, 10, "RING #%d", rings++);
	ret = ringsm_process_a_ring();
	if (!ret)
		log_msg(LOG_DEBUG, 100, "ignored ring #%d",  rings-1);
}

void
sig_child(int i)
{
	int status;

	/* we should probably check the full exit status of the dead child */
	wait(&status);
}

void
sig_hup(int i)
{
	int arg;

	if (!ringsm_parsed)
		return;
	log_msg(LOG_INFO, 1, "HUP received: resetting");
	ringsm_reset(FALSE);
	/* close and reread config file */
	ringsm_close();
	if ((arg = ringsm_parse(config_file, &parse_an_arg_conf)) < 0)
		log_msg(LOG_ERR, 0, "error in config file, line %d - ignoring the next lines", -arg);
	if (modem >= 0) {
		close(modem);
		modem = modem_open(modem_file, TRUE, disable_echo);
	}
	ringsm_reset(TRUE);
	show_args();
}

void
sig_alarm(int i)
{
	ringsm_process_timeout();
}

void
clean_exit(int code)
{
	log_msg(LOG_INFO, 1, "Exit");
	/*if (unlink(pidfilename) < 0 && errno != ENOENT)
        	log_msg(LOG_WARNING, 1, "unable to delete pid file: %m");
        pidfilename[0] = 0;*/
	closelog();
	exit(code);
}

void
sig_bye(int i)
{
	ringsm_reset(FALSE);
	clean_exit(0);
}

#if 0
void
setdtr(int fd, int on)
{
	int modembits = TIOCM_DTR;

	ioctl(fd, (on ? TIOCMBIS : TIOCMBIC), &modembits);
}
#endif

int
modem_open(char *file, int reopen, int disable_echo)
{
	int fd = -1;

	if ((fd = open(file, O_RDONLY | O_NOCTTY | O_NDELAY)) < 0) {
		if (reopen) {
			log_msg(LOG_ERR, 1, "error reopening %s (%%m)", file);
			usleep(3*1000000);	/* uses select - not SIGALRM */
			return fd;
		} else {
			log_msg(-1, 0, "error opening modem device");
			perror(NULL);
			exit(1); 
		}
	}
	if (disable_echo) {
		struct termios tios;

		if (debug)
			log_msg(-1, 0, "disabling echo on modem device");
		ioctl(fd, TCGETS, &tios);
		tios.c_lflag &= ~(ECHO); 	/*|ECHOE|ECHOK|ECHOKE|ECHOCTL*/
		ioctl(fd, TCSETS, &tios);
	}
	return fd;
}

#if 0
void
write_pid(void)
{
	FILE *pidf;

        (void) sprintf(pidfilename, "%s%s.pid", _PATH_VARRUN, PROG);
        if ((pidf = fopen(pidfilename, "w")) != NULL) {
            fprintf(pidf, "%d\n", getpid());
            (void) fclose(pidf);
        } else {
            log_msg(LOG_ERR, 1, "Failed to create pid file %s: %m", pidfilename);
            pidfilename[0] = 0;
        } 
}
#endif

void
daemon_init(void)
{
	int pid;

	if (debug)
		return;
	if ( (pid = fork()) < 0) {
		perror(NULL);
		exit(1);
	} else if (pid != 0)
		exit(0);	/* parent goes */
	/* child */
	setsid();
	chdir("/");
	umask(S_IRWXG | S_IRWXO);
	close(STDIN_FILENO);
	close(STDOUT_FILENO);
	close(STDERR_FILENO);
}

void
ring_cmd(void)
{
	char *p;

	for (p = do_onring; *p != 0; p++)
		if (!isspace(*p))
			break;
	if (*p == 0)		/* all whitespace */
		return;
	log_msg(LOG_INFO, 10, "running (per ring): %s", do_onring);
	fork_cmd(do_onring);
}

/*
 * fork_cmd --- fork a shell to execute command cmd 
 *
 * Establish a "clean slate" first.
 */
void
fork_cmd(char *cmd)
{
	int pid;
	int fdnull;

	if ((pid = fork()) < 0) {
		log_msg(LOG_ERR, 1, "error forking for %s (%%m)", cmd);
		return;
	} else if (0 == pid) {
		/* child */
		/* unblock signals we use - may be blocked here */
		sigprocmask(SIG_UNBLOCK, &sig_mask, NULL);
		setsid();
		close(STDIN_FILENO);
		close(STDOUT_FILENO);
		close(STDERR_FILENO);
		if (modem >= 0)
			close(modem);
		/* connect /dev/null to std{in/out/err} */
		fdnull = open(_PATH_DEVNULL, O_RDWR);
		if (fdnull >= 0) {
			if (fdnull != 0) {
				dup2(fdnull, 0);
				close(fdnull);
			}
			dup2(0, 1);
			dup2(0, 2);
		}
		setuid(getuid());
		setgid(getgid());
		execl("/bin/sh", "sh", "-c", cmd, NULL);
		/* could not run cmd ; report it */
		log_msg(LOG_ERR, 1, "error running: /bin/sh -c %s (%%m)", cmd);
		exit(1);
	}
	/* parent */
}

int
parse_an_arg(char opt, char *s, int conf_line)
{
	switch (opt) {
	case 'a':
		do_onring = str_new(do_onring, s);
		break;
	case 'c':
		if (0 == conf_line)
			config_file = str_new(config_file, s);
		break;
	case 'd':
		debug++;
		log_level = 100;
		break;
	case 'i':
		msec_ignore = atoi(s);
		break;
	case 'l':
		log_level = atoi(s);
		break;
	case 'm':
		modem_file = str_new(modem_file, s);
		break;
	case 'n':
		if (0 == conf_line) {
			syntax_only++;
			debug++;
		}
		break;
	case 't':
		reset_timeout = atoi(s);
		break;
	case 'e':
		disable_echo++;
		break;

	case '?':
	case 'h':
		if (0 == conf_line)
			usage_and_die();
		break;
	default:
		if (0 == conf_line)
			usage_and_die();
		else
			log_msg(LOG_ERR, 0, "option %c error in conf file, line %d - ignoring", opt, conf_line);
		break;
	}
	return TRUE;
}

/* 
 * parse_an_arg_conf -- callback for an argument parse (from config file)
 */
int
parse_an_arg_conf(char opt, char *s, int line)
{
	return parse_an_arg(opt, s, line);
}

void
parse_args(int argc, char **argv)
{
	int opt;

	opterr = 0;
	while ( (opt = getopt(argc, argv, "a:c:dl:i:l:m:ent:h?")) != EOF )
		parse_an_arg((char) opt, optarg, 0);
	if (optind < argc)
		modem_file = str_new(modem_file, argv[optind]);
}

/* 
 * str_new -- free old space if alloc'ed; alloc new and assign new value
 * XXX new is NULL or "" !!
 */
char *
str_new(char *s, char *new)
{
	int newsize = strlen(new) + 1;
	char *p;

	if (NULL == s)
		p = malloc(newsize);
	else
		p = realloc(s, newsize);
	strcpy(p, new);
	return p;
}