X-Git-Url: https://git.distorted.org.uk/~mdw/tripe/blobdiff_plain/2b3ef39558d9aa6c187dc088c81a5b9872984d3c..HEAD:/client/tripectl.c diff --git a/client/tripectl.c b/client/tripectl.c index 4c8dde5a..1b02123b 100644 --- a/client/tripectl.c +++ b/client/tripectl.c @@ -9,19 +9,18 @@ * * This file is part of Trivial IP Encryption (TrIPE). * - * TrIPE 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. + * TrIPE 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 3 of the License, or (at your + * option) any later version. * - * TrIPE 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. + * TrIPE 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 TrIPE; if not, write to the Free Software Foundation, - * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * along with TrIPE. If not, see . */ /*----- Header files ------------------------------------------------------*/ @@ -52,6 +51,8 @@ #include #include #include +#include +#include #include #include #include @@ -79,6 +80,7 @@ static const char *pidfile = 0; static const char *logname = 0; static FILE *logfp = 0; static unsigned f = 0; +static const char *watch = 0; static int fd; static const char *bgtag = 0; @@ -91,6 +93,8 @@ static const char *bgtag = 0; #define f_noinput 64u #define f_warn 128u #define f_uclose 256u +#define f_losing 512u +#define f_nostamp 1024u /*----- Main code ---------------------------------------------------------*/ @@ -107,8 +111,9 @@ static void writelog(const char *cat, const char *msg) char buf[256]; time_t t = time(0); struct tm *tm = localtime(&t); - strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", tm); - fprintf(logfp, "%s %s: %s\n", buf, cat, msg); + if (f & f_nostamp) buf[0] = 0; + else strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S ", tm); + fprintf(logfp, "%s%s: %s\n", buf, cat, msg); } static void checkbg(char **p) @@ -120,7 +125,7 @@ static void checkbg(char **p) die(EXIT_FAILURE, "unexpected background tag `%s'", q); } -static void dolog(int prio, const char *msg, ...) +static void PRINTF_LIKE(2, 3) dolog(int prio, const char *msg, ...) { va_list ap; dstr d = DSTR_INIT; @@ -132,14 +137,14 @@ static void dolog(int prio, const char *msg, ...) if (f & f_syslog) syslog(prio, "%s", d.buf); if (logfp) { switch (prio) { - case LOG_WARN: cat = "warning"; break; + case LOG_WARNING: cat = "warning"; break; case LOG_DEBUG: cat = "debug"; break; case LOG_ERR: cat = "error"; break; default: cat = "message"; break; } writelog(cat, d.buf); } - if (prio == LOG_WARN && (f & f_warn)) + if (prio == LOG_WARNING && (f & f_warn)) fprintf(stderr, "Warning: %s\n", d.buf); dstr_destroy(&d); } @@ -153,15 +158,16 @@ static void cline(char *p, size_t len, void *b) if (!p) { if (f & f_command) die(EXIT_FAILURE, "server dropped the connection"); + f &= ~f_losing; exit(0); } q = str_getword(&p); if (!q) return; if (strcmp(q, "WARN") == 0) - dolog(LOG_WARNING, p); + dolog(LOG_WARNING, "%s", p); else if (strcmp(q, "TRACE") == 0) - dolog(LOG_DEBUG, p); + dolog(LOG_DEBUG, "%s", p); else if (!(f & f_command)) dolog(LOG_ERR, "unexpected output `%s %s'", q, p); else if (strcmp(q, "FAIL") == 0) { @@ -217,6 +223,16 @@ static void uline(char *p, size_t len, void *b) } } +static void eline(char *p, size_t len, void *b) +{ + if (p) + dolog(LOG_WARNING, "(stderr): %s", p); + else { + selbuf_destroy(b); + close(fd); + } +} + static void setup(const char *cmd) { dstr d = DSTR_INIT; @@ -260,7 +276,11 @@ static void logfile(const char *name) { FILE *fp; - if ((fp = fopen(name, "a")) != 0) { + if (strcmp(name, "-") == 0) + logfp = stdout; + else if (strcmp(name, "!") == 0) + logfp = stderr; + else if ((fp = fopen(name, "a")) != 0) { if (logfp) fclose(logfp); logfp = fp; @@ -271,9 +291,9 @@ static void logfile(const char *name) if (logfp) writelog("error", d.buf); else if (logname) - die(EXIT_FAILURE, d.buf); + die(EXIT_FAILURE, "%s", d.buf); if (f & f_syslog) - syslog(LOG_ERR, d.buf); + syslog(LOG_ERR, "%s", d.buf); dstr_destroy(&d); } } @@ -285,7 +305,7 @@ static void cleanup(void) { if (pidfile) unlink(pidfile); } static void sigdie(int sig) { cleanup(); signal(sig, SIG_DFL); raise(sig); } -static void putarg(string_v *av, const char *fmt, ...) +static void PRINTF_LIKE(2, 3) putarg(string_v *av, const char *fmt, ...) { va_list ap; dstr d = DSTR_INIT; @@ -340,7 +360,9 @@ Options in full:\n\ \n\ -l, --syslog Log messages to system log.\n\ -f, --logfile=FILE Log messages to FILE.\n\ +-t, --no-timestamp When logging to a file, don't emit timestamps.\n\ -w, --warnings Show warnings when running commands.\n\ +-W, --watch=THINGS Watch for THINGS after connecting.\n\ ", fp); } @@ -356,12 +378,13 @@ int main(int argc, char *argv[]) size_t sz; uid_t u = -1; gid_t g = -1; - int pfd[2]; + int pfd[2], efd[2]; + mdup_fd md[3]; pid_t kid; struct sigaction sa; sigset_t newmask, oldmask; struct sockaddr_un sun; - selbuf bu, bs; + selbuf bu, bs, be; dstr d = DSTR_INIT; sig hup; @@ -391,12 +414,14 @@ int main(int argc, char *argv[]) { "spawn-args", OPTF_ARGREQ, 0, 'S' }, { "syslog", 0, 0, 'l' }, { "logfile", OPTF_ARGREQ, 0, 'f' }, + { "no-timestamp", 0, 0, 't' }, { "warnings", 0, 0, 'w' }, + { "watch", OPTF_ARGREQ, 0, 'W' }, { "pidfile", OPTF_ARGREQ, 0, 'P' }, { 0, 0, 0, 0 } }; - i = mdwopt(argc, argv, "+hvuDU:G:d:a:sp:S:lwf:nP:", opts, 0, 0, 0); + i = mdwopt(argc, argv, "+hvuDU:G:d:a:sp:S:lwW:f:nP:t", opts, 0, 0, 0); if (i < 0) break; switch (i) { @@ -442,10 +467,16 @@ int main(int argc, char *argv[]) case 'w': f |= f_warn; break; + case 'W': + watch = optarg; + break; case 'f': logname = optarg; f |= f_noinput; break; + case 't': + f |= f_nostamp; + break; case 'P': pidfile = optarg; break; @@ -465,8 +496,6 @@ int main(int argc, char *argv[]) die(EXIT_FAILURE, "couldn't set `%s' as current directory: %s", dir, strerror(errno)); } - if (logname) - logfile(logname); if (!pidfile && (f & f_daemon) && ((f & f_syslog) || logname)) pidfile = "tripectl.pid"; if (pidfile && (pidfp = fopen(pidfile, "w")) == 0) { @@ -498,7 +527,7 @@ int main(int argc, char *argv[]) putarg(&spawnopts, "-d."); putarg(&spawnopts, "-F"); putarg(&spawnopts, "%s", spawnpath); - if (socketpair(PF_UNIX, SOCK_STREAM, 0, pfd)) + if (socketpair(PF_UNIX, SOCK_STREAM, 0, pfd) || pipe(efd)) die(EXIT_FAILURE, "error from socketpair: %s", strerror(errno)); sigemptyset(&newmask); sigaddset(&newmask, SIGCHLD); @@ -506,11 +535,12 @@ int main(int argc, char *argv[]) if ((kid = fork()) < 0) die(EXIT_FAILURE, "fork failed: %s", strerror(errno)); if (!kid) { - dup2(pfd[1], STDIN_FILENO); - dup2(pfd[1], STDOUT_FILENO); - close(pfd[0]); - close(pfd[1]); - if (logfp) fclose(logfp); + close(pfd[0]); close(efd[0]); + sigprocmask(SIG_SETMASK, &oldmask, 0); + md[0].cur = pfd[1]; md[0].want = STDIN_FILENO; + md[1].cur = pfd[1]; md[1].want = STDOUT_FILENO; + md[2].cur = efd[1]; md[2].want = STDERR_FILENO; + mdup(md, 3); if (pidfp) fclose(pidfp); closelog(); if (f & f_daemon) detachtty(); @@ -519,7 +549,8 @@ int main(int argc, char *argv[]) } sigprocmask(SIG_SETMASK, &oldmask, 0); fd = pfd[0]; - close(pfd[1]); + close(pfd[1]); close(efd[1]); + selbuf_init(&be, &sel, efd[0], eline, &be); } else { sz = strlen(sock) + 1; if (sz > sizeof(sun.sun_path)) @@ -536,7 +567,10 @@ int main(int argc, char *argv[]) } } + f |= f_losing; /* pessimism */ u_setugid(u, g); + if (logname) + logfile(logname); if (f & f_daemon) { if (daemonize()) die(EXIT_FAILURE, "error becoming daemon: %s", strerror(errno)); @@ -549,8 +583,12 @@ int main(int argc, char *argv[]) /* --- If we're meant to be interactive, do that --- */ - if (optind == argc) - setup("WATCH -A+tw"); + if (optind == argc) { + DRESET(&d); + dstr_puts(&d, "watch"); + u_quotify(&d, watch ? watch : "-A+tw"); + setup(d.buf); + } if (!(f & f_noinput) && optind == argc) { selbuf_init(&bu, &sel, STDIN_FILENO, uline, &bu); selbuf_init(&bs, &sel, fd, sline, &bs); @@ -563,7 +601,11 @@ int main(int argc, char *argv[]) /* --- If there's a command, submit it --- */ if (optind < argc) { - setup((f & f_warn) ? "WATCH -A+w" : "WATCH -A"); + DRESET(&d); + dstr_puts(&d, "watch"); + u_quotify(&d, watch ? watch : (f & f_warn) ? "-A+w" : "-A"); + setup(d.buf); + DRESET(&d); while (optind < argc) u_quotify(&d, argv[optind++]); dstr_putc(&d, '\n');