chiark / gitweb /
Various minor cleanups.
[tripe] / client / tripectl.c
CommitLineData
410c8acf 1/* -*-c-*-
410c8acf 2 *
3 * Client for TrIPE
4 *
5 * (c) 2001 Straylight/Edgeware
6 */
7
e04c2d50 8/*----- Licensing notice --------------------------------------------------*
410c8acf 9 *
10 * This file is part of Trivial IP Encryption (TrIPE).
11 *
12 * TrIPE is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
e04c2d50 16 *
410c8acf 17 * TrIPE is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
e04c2d50 21 *
410c8acf 22 * You should have received a copy of the GNU General Public License
23 * along with TrIPE; if not, write to the Free Software Foundation,
24 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 */
26
410c8acf 27/*----- Header files ------------------------------------------------------*/
28
73189848 29#include "config.h"
30
410c8acf 31#include <ctype.h>
32#include <errno.h>
33#include <signal.h>
34#include <stdio.h>
35#include <stdlib.h>
36#include <string.h>
37#include <time.h>
38
39#include <sys/types.h>
40#include <sys/time.h>
41#include <unistd.h>
42#include <fcntl.h>
43#include <sys/wait.h>
44#include <syslog.h>
45
46#include <sys/socket.h>
47#include <sys/un.h>
48#include <arpa/inet.h>
49#include <netdb.h>
50
51#include <mLib/alloc.h>
19dd2531 52#include <mLib/daemonize.h>
410c8acf 53#include <mLib/darray.h>
54#include <mLib/dstr.h>
410c8acf 55#include <mLib/mdwopt.h>
56#include <mLib/quis.h>
57#include <mLib/report.h>
58#include <mLib/sel.h>
59#include <mLib/selbuf.h>
5f5150b1 60#include <mLib/sig.h>
410c8acf 61#include <mLib/str.h>
19dd2531 62#include <mLib/versioncmp.h>
410c8acf 63
64#include "util.h"
65
66#undef sun
67
68/*----- Data structures ---------------------------------------------------*/
69
70#ifndef STRING_V
71# define STRING_V
72 DA_DECL(string_v, char *);
73#endif
74
75/*----- Static variables --------------------------------------------------*/
76
06b2a088 77static const char *pidfile = 0;
78static const char *logname = 0;
410c8acf 79static FILE *logfp = 0;
80static unsigned f = 0;
81static int fd;
de014da6 82static const char *bgtag = 0;
410c8acf 83
84#define f_bogus 1u
85#define f_spawn 2u
86#define f_daemon 4u
87#define f_spawnopts 8u
88#define f_syslog 16u
89#define f_command 32u
90#define f_noinput 64u
91#define f_warn 128u
92#define f_uclose 256u
93
94/*----- Main code ---------------------------------------------------------*/
95
96static void reap(int sig)
97{
410c8acf 98 int e = errno;
06b2a088 99 while (waitpid(-1, 0, WNOHANG) > 0)
410c8acf 100 ;
101 errno = e;
102}
103
104static void writelog(const char *cat, const char *msg)
105{
106 char buf[256];
107 time_t t = time(0);
108 struct tm *tm = localtime(&t);
109 strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", tm);
110 fprintf(logfp, "%s %s: %s\n", buf, cat, msg);
111}
112
de014da6 113static void checkbg(char **p)
114{
115 char *q = str_getword(p);
116 if (!q)
117 die(EXIT_FAILURE, "missing background tag");
118 if (!bgtag || strcmp(bgtag, q) != 0)
119 die(EXIT_FAILURE, "unexpected background tag `%s'", q);
120}
121
122static void checkfg(void)
6047fbac 123 { if (bgtag) die(EXIT_FAILURE, "unexpected foreground response"); }
de014da6 124
6be88c14 125static void cline(char *p, size_t len, void *b)
410c8acf 126{
127 char *q;
128 if (!p) {
129 if (f & f_command)
130 die(EXIT_FAILURE, "server dropped the connection");
131 exit(0);
132 }
133 q = str_getword(&p);
134 if (!q)
135 return;
136 if (strcmp(q, "WARN") == 0) {
137 if (f & f_syslog)
138 syslog(LOG_WARNING, "%s", p);
139 if (logfp)
140 writelog("warning", p);
141 if (f & f_warn)
142 fprintf(stderr, "Warning: %s\n", p);
143 } else if (strcmp(q, "TRACE") == 0) {
144 if (f & f_syslog)
145 syslog(LOG_DEBUG, "%s", p);
146 if (logfp)
147 writelog("debug", p);
148 } else if (!(f & f_command)) {
149 if (f & f_syslog)
150 syslog(LOG_ERR, "unexpected output `%s %s'", q, p);
151 if (logfp) {
152 dstr d = DSTR_INIT;
153 dstr_putf(&d, "unexpected output `%s %s'", q, p);
154 writelog("error", d.buf);
155 dstr_destroy(&d);
156 }
de014da6 157 } else if (strcmp(q, "FAIL") == 0) {
158 checkfg();
410c8acf 159 die(EXIT_FAILURE, "%s", p);
de014da6 160 } else if (strcmp(q, "INFO") == 0) {
161 checkfg();
410c8acf 162 puts(p);
5136c31e 163 fflush(stdout);
de014da6 164 } else if (strcmp(q, "OK") == 0) {
165 checkfg();
166 exit(0);
167 } else if (strcmp(q, "BGDETACH") == 0) {
168 if (bgtag)
169 die(EXIT_FAILURE, "repeat detach");
170 bgtag = xstrdup(p);
171 } else if (strcmp(q, "BGOK") == 0) {
172 checkbg(&p);
410c8acf 173 exit(0);
de014da6 174 } else if (strcmp(q, "BGINFO") == 0) {
175 checkbg(&p);
176 puts(p);
5136c31e 177 fflush(stdout);
de014da6 178 } else if (strcmp(q, "BGFAIL") == 0) {
179 checkbg(&p);
180 die(EXIT_FAILURE, "%s", p);
181 } else
e04c2d50 182 die(EXIT_FAILURE, "unexpected output `%s %s'", q, p);
410c8acf 183}
184
6be88c14 185static void sline(char *p, size_t len, void *b)
410c8acf 186{
187 if (!p) {
188 if (!(f & f_uclose))
189 moan("server closed the connection");
190 exit(0);
191 }
192 puts(p);
5136c31e 193 fflush(stdout);
410c8acf 194}
195
6be88c14 196static void uline(char *p, size_t len, void *b)
410c8acf 197{
410c8acf 198 if (!p) {
199 selbuf_destroy(b);
200 shutdown(fd, 1);
201 f |= f_uclose;
202 } else {
6be88c14 203 p[len] = '\n';
3cdc3f3a 204 errno = EIO;
205 if (write(fd, p, len + 1) != len + 1)
206 moan("write failed: %s", strerror(errno));
207 }
208}
209
210static void setup(const char *cmd)
211{
212 dstr d = DSTR_INIT;
213 char ch;
214 char *p, *q;
215 int n;
216
217 dstr_puts(&d, cmd);
218 dstr_putc(&d, '\n');
219 errno = EIO; /* Relax: be vague */
220 if (write(fd, d.buf, d.len) != d.len) {
221 die(EXIT_FAILURE, "error sending setup command `%s': %s",
222 cmd, strerror(errno));
223 }
224 dstr_reset(&d);
225 for (;;) {
226 n = read(fd, &ch, 1);
227 if (!n)
228 die(EXIT_FAILURE, "unexpected EOF during setup");
229 if (n < 0) {
230 die(EXIT_FAILURE, "error receiving reply to `%s': %s",
231 cmd, strerror(errno));
232 }
233 if (d.len < 256)
234 dstr_putc(&d, ch);
235 if (ch == '\n') {
236 p = d.buf;
237 q = str_getword(&p);
238 if (!q)
239 ;
240 else if (strcmp(q, "OK") == 0)
241 return;
242 else if (strcmp(q, "FAIL") == 0)
243 die(EXIT_FAILURE, "setup command `%s' failed: %s", cmd, p);
244 dstr_reset(&d);
245 }
410c8acf 246 }
247}
248
9dd01bc6 249static void logfile(const char *name)
250{
fa4bef80 251 FILE *fp;
252
253 if ((fp = fopen(name, "a")) != 0) {
254 if (logfp)
255 fclose(logfp);
256 logfp = fp;
257 setvbuf(logfp, 0, _IOLBF, BUFSIZ);
258 } else {
259 dstr d = DSTR_INIT;
260 dstr_putf(&d, "error opening logfile `%s': %s", name, strerror(errno));
261 if (logfp)
262 writelog("error", d.buf);
263 else if (logname)
264 die(EXIT_FAILURE, d.buf);
265 if (f & f_syslog)
266 syslog(LOG_ERR, d.buf);
267 dstr_destroy(&d);
9dd01bc6 268 }
9dd01bc6 269}
270
f98df549 271static void sighup(int sig, void *v) { logfile(logname); }
5f5150b1 272
6047fbac 273static void cleanup(void) { if (pidfile) unlink(pidfile); }
06b2a088 274
275static void sigdie(int sig)
6047fbac 276 { cleanup(); signal(sig, SIG_DFL); raise(sig); }
06b2a088 277
410c8acf 278static void version(FILE *fp)
f98df549 279 { pquis(fp, "$, TrIPE version " VERSION "\n"); }
410c8acf 280
281static void usage(FILE *fp)
282{
283 pquis(fp, "\
284Usage:\n\
2d752320 285 $ [-w] [-OPTIONS] [COMMAND [ARGS]...]\n\
286 $ [-Dl] [-f FILE] [-OPTIONS]\n\
410c8acf 287Options:\n\
2d752320 288 [-s] [-d DIRECTORY] [-a SOCKET] [-P PIDFILE]\n\
289 [-p PROGRAM] [-S ARG,ARG,...]\n\
410c8acf 290");
291}
292
293static void help(FILE *fp)
294{
295 version(fp);
296 fputc('\n', fp);
297 usage(fp);
298 fputs("\
299\n\
300Options in full:\n\
301\n\
302-h, --help Show this help text.\n\
303-v, --version Show version number.\n\
304-u, --usage Show brief usage message.\n\
305\n\
306-D, --daemon Become a background task after connecting.\n\
ef4a1ab7 307-d, --directory=DIR Select current directory [default " CONFIGDIR "].\n\
3cdc3f3a 308-a, --admin-socket=FILE Select socket to connect to\n\
e04c2d50 309 [default " SOCKETDIR "/tripesock].\n\
06b2a088 310-P, --pidfile=FILE Write process-id to FILE.\n\
410c8acf 311\n\
312-s, --spawn Start server rather than connecting.\n\
313-p, --spawn-path=PATH Specify path to executable.\n\
314-S, --spawn-args=ARGS Specify comma-separated arguments.\n\
315\n\
316-l, --syslog Log messages to system log.\n\
317-f, --logfile=FILE Log messages to FILE.\n\
318-w, --warnings Show warnings when running commands.\n\
319", fp);
320}
321
322int main(int argc, char *argv[])
323{
ef4a1ab7 324 const char *dir = CONFIGDIR;
325 const char *sock = SOCKETDIR "/tripesock";
410c8acf 326 const char *spawnpath = "tripe";
327 string_v spawnopts = DA_INIT;
328 char *p;
06b2a088 329 FILE *pidfp = 0;
410c8acf 330
331 ego(argv[0]);
332
333 if ((p = getenv("TRIPEDIR")) != 0)
334 dir = p;
797cf76b
MW
335 if ((p = getenv("TRIPESOCK")) != 0)
336 sock = p;
410c8acf 337
338 /* --- Parse the arguments --- */
339
340 for (;;) {
341 static const struct option opts[] = {
342 { "help", 0, 0, 'h' },
343 { "version", 0, 0, 'v' },
344 { "usage", 0, 0, 'u' },
345 { "daemon", 0, 0, 'D' },
346 { "directory", OPTF_ARGREQ, 0, 'd' },
347 { "admin-socket", OPTF_ARGREQ, 0, 'a' },
348 { "spawn", 0, 0, 's' },
349 { "spawn-path", OPTF_ARGREQ, 0, 'p' },
350 { "spawn-args", OPTF_ARGREQ, 0, 'S' },
351 { "syslog", 0, 0, 'l' },
352 { "logfile", OPTF_ARGREQ, 0, 'f' },
353 { "warnings", 0, 0, 'w' },
06b2a088 354 { "pidfile", OPTF_ARGREQ, 0, 'P' },
410c8acf 355 { 0, 0, 0, 0 }
356 };
357
06b2a088 358 int i = mdwopt(argc, argv, "+hvuDd:a:sp:S:lwf:nP:", opts, 0, 0, 0);
410c8acf 359 if (i < 0)
360 break;
361 switch (i) {
362 case 'h':
363 help(stdout);
364 exit(0);
365 case 'v':
366 version(stdout);
367 exit(0);
368 case 'u':
369 usage(stdout);
370 exit(0);
371 case 'D':
372 f |= f_daemon | f_noinput;
373 break;
374 case 'd':
375 dir = optarg;
376 break;
377 case 'a':
378 sock = optarg;
379 break;
380 case 's':
381 f |= f_spawn;
382 break;
383 case 'p':
384 f |= f_spawn;
385 spawnpath = optarg;
386 break;
387 case 'S':
388 f |= f_spawn | f_spawnopts;
389 for (p = strtok(optarg, ","); p; p = strtok(0, ","))
390 DA_PUSH(&spawnopts, p);
391 break;
392 case 'l':
393 f |= f_syslog | f_noinput;
394 break;
395 case 'w':
396 f |= f_warn;
397 break;
398 case 'f':
9dd01bc6 399 logname = optarg;
410c8acf 400 f |= f_noinput;
401 break;
06b2a088 402 case 'P':
403 pidfile = optarg;
404 break;
410c8acf 405 default:
406 f |= f_bogus;
407 break;
408 }
409 }
410 if ((f & f_bogus) || ((f & f_noinput) && optind < argc)) {
411 usage(stderr);
412 exit(EXIT_FAILURE);
413 }
414
06b2a088 415 /* --- Set various things up --- */
416
417 if (chdir(dir)) {
418 die(EXIT_FAILURE, "couldn't set `%s' as current directory: %s",
419 dir, strerror(errno));
420 }
421 if (logname)
422 logfile(logname);
423 if (!pidfile && (f & f_daemon) && ((f & f_syslog) || logname))
424 pidfile = "tripectl.pid";
425 if (pidfile && (pidfp = fopen(pidfile, "w")) == 0) {
426 die(EXIT_FAILURE, "couldn't open `%s' for writing: %s",
427 pidfile, strerror(errno));
428 }
429 signal(SIGINT, sigdie);
430 signal(SIGQUIT, sigdie);
431 signal(SIGTERM, sigdie);
432 atexit(cleanup);
433
410c8acf 434 /* --- Connect to the server --- */
435
436 if (f & f_spawn) {
437 int pfd[2];
438 pid_t kid;
439 struct sigaction sa;
440 sigset_t newmask, oldmask;
441
442 sa.sa_handler = reap;
443 sigemptyset(&sa.sa_mask);
444 sa.sa_flags = SA_NOCLDSTOP;
445#ifdef SA_RESTART
446 sa.sa_flags |= SA_RESTART;
447#endif
448 sigaction(SIGCHLD, &sa, 0);
449
06b2a088 450 DA_UNSHIFT(&spawnopts, (char *)sock);
451 DA_UNSHIFT(&spawnopts, "-a");
452 DA_UNSHIFT(&spawnopts, "-d.");
d071d798 453 DA_UNSHIFT(&spawnopts, (char *)spawnpath);
410c8acf 454 DA_PUSH(&spawnopts, 0);
455 if (socketpair(PF_UNIX, SOCK_STREAM, 0, pfd))
456 die(EXIT_FAILURE, "error from socketpair: %s", strerror(errno));
457 sigemptyset(&newmask);
458 sigaddset(&newmask, SIGCHLD);
459 sigprocmask(SIG_BLOCK, &newmask, &oldmask);
460 if ((kid = fork()) < 0)
461 die(EXIT_FAILURE, "fork failed: %s", strerror(errno));
462 if (!kid) {
463 dup2(pfd[1], STDIN_FILENO);
464 dup2(pfd[1], STDOUT_FILENO);
410c8acf 465 close(pfd[0]);
6047fbac
MW
466 close(pfd[1]);
467 if (logfp) fclose(logfp);
468 if (pidfp) fclose(pidfp);
9dd01bc6 469 closelog();
6047fbac 470 if (f & f_daemon) detachtty();
410c8acf 471 execvp(DA(&spawnopts)[0], DA(&spawnopts));
472 die(127, "couldn't exec `%s': %s", spawnpath, strerror(errno));
473 }
474 sigprocmask(SIG_SETMASK, &oldmask, 0);
475 fd = pfd[0];
476 close(pfd[1]);
477 } else {
478 struct sockaddr_un sun;
479 size_t sz = strlen(sock) + 1;
06b2a088 480 if (sz > sizeof(sun.sun_path))
410c8acf 481 die(EXIT_FAILURE, "socket name `%s' too long", sock);
482 memset(&sun, 0, sizeof(sun));
483 sun.sun_family = AF_UNIX;
06b2a088 484 memcpy(sun.sun_path, sock, sz);
485 sz = sz + offsetof(struct sockaddr_un, sun_path);
410c8acf 486 if ((fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
487 die(EXIT_FAILURE, "error making socket: %s", strerror(errno));
488 if (connect(fd, (struct sockaddr *)&sun, sz)) {
489 die(EXIT_FAILURE, "error connecting to `%s': %s",
9dd01bc6 490 sun.sun_path, strerror(errno));
410c8acf 491 }
492 }
493
494 if (f & f_daemon) {
19dd2531 495 if (daemonize())
410c8acf 496 die(EXIT_FAILURE, "error becoming daemon: %s", strerror(errno));
497 }
06b2a088 498 if (pidfp) {
a803add7 499 fprintf(pidfp, "%li\n", (long)getpid());
06b2a088 500 fclose(pidfp);
501 }
3cdc3f3a 502 signal(SIGPIPE, SIG_IGN);
410c8acf 503
504 /* --- If we're meant to be interactive, do that --- */
505
3cdc3f3a 506 if (optind == argc)
507 setup("WATCH -A+tw");
410c8acf 508 if (!(f & f_noinput) && optind == argc) {
509 sel_state sel;
510 selbuf bu, bs;
511
512 sel_init(&sel);
513 selbuf_init(&bu, &sel, STDIN_FILENO, uline, &bu);
514 selbuf_init(&bs, &sel, fd, sline, &bs);
515 for (;;) {
5f5150b1 516 if (sel_select(&sel) && errno != EINTR && errno != EAGAIN)
410c8acf 517 die(EXIT_FAILURE, "select failed: %s", strerror(errno));
518 }
519 }
520
521 /* --- If there's a command, submit it --- */
522
523 if (optind < argc) {
524 dstr d = DSTR_INIT;
3cdc3f3a 525 setup((f & f_warn) ? "WATCH -A+w" : "WATCH -A");
0ed0735f
MW
526 while (optind < argc)
527 u_quotify(&d, argv[optind++]);
410c8acf 528 dstr_putc(&d, '\n');
3cdc3f3a 529 errno = EIO;
530 if (write(fd, d.buf, d.len) != d.len || shutdown(fd, 1))
531 die(EXIT_FAILURE, "write failed: %s", strerror(errno));
410c8acf 532 dstr_destroy(&d);
533 f |= f_command;
534 }
535
536 /* --- Pull everything else out of the box --- */
537
538 {
5f5150b1 539 sel_state sel;
540 selbuf b;
541 sig hup;
542
543 sel_init(&sel);
544 selbuf_init(&b, &sel, fd, cline, 0);
545
410c8acf 546 if (f & f_syslog)
547 openlog(QUIS, 0, LOG_DAEMON);
9dd01bc6 548 if (logfp) {
5f5150b1 549 sig_init(&sel);
550 sig_add(&hup, SIGHUP, sighup, 0);
9dd01bc6 551 }
410c8acf 552 for (;;) {
5f5150b1 553 if (sel_select(&sel) && errno != EINTR && errno != EAGAIN)
554 die(EXIT_FAILURE, "select failed: %s", strerror(errno));
410c8acf 555 }
410c8acf 556 }
557
558 return (0);
559}
560
561/*----- That's all, folks -------------------------------------------------*/