X-Git-Url: http://andersk.mit.edu/gitweb/moira.git/blobdiff_plain/af30a83176db81a8b117135d92102d99c73fd4e4..85330553eb619f783e0480dfc2bc467a9b4afd7b:/update/update_test.c diff --git a/update/update_test.c b/update/update_test.c index 8e15a324..1f6a8837 100644 --- a/update/update_test.c +++ b/update/update_test.c @@ -1,126 +1,135 @@ -/* $Header$ +/* $Id$ * * Test client for update_server protocol. - * - * Reads commands from the command line: - * test host [commands...] - * -s file file sends file to host - * -S file file sends encrypted file to host - * -i file sends instruction file to host - * -x file executes instructions - * -n nop + * + * Copyright 1992-1998 by the Massachusetts Institute of Technology. + * For copying and distribution information, please see the file + * . */ #include -#include -#include -#include -#include -#include -#include +#include #include + #include -#include -#include -#include +#include +#include + +void usage(void); -CONNECTION conn; char *whoami; -main(argc, argv) -int argc; -char **argv; +int main(int argc, char **argv) { - char *host, service_address[256], *file, *rfile, buf[256]; - int code, i, count=0; + char *host, *file, *rfile, *ibuf = NULL; + int code, i, count = 0, conn; - whoami = argv[0]; - initialize_sms_error_table(); - initialize_krb_error_table(); - gdb_init(); + whoami = argv[0]; + mr_init(); - if (argc < 2) usage(); - host = argv[1]; + if (argc < 2) + usage(); + host = argv[1]; - sprintf(service_address, "%s:%s", host, SERVICE_NAME); - conn = start_server_connection(service_address, ""); - if (!conn || (connection_status(conn) == CON_STOPPED)) { - com_err(whoami, connection_errno(conn), - " can't connect to update %s", service_address); - return(MR_CANT_CONNECT); - } - code = send_auth(host); - if (code) { - com_err(whoami, code, " authorization attempt failed"); + conn = mr_connect_internal(host, SERVICE_NAME); + if (!conn) + { + com_err(whoami, errno, ": can't connect to %s:%s", host, SERVICE_NAME); + exit(1); } - for (i = 2; i < argc; i++) { - if (argv[i][0] != '-') usage(); - switch (argv[i][1]) { + code = send_auth(conn, host); + if (code) + com_err(whoami, code, "attempting authorization"); + + for (i = 2; i < argc; i++) + { + if (argv[i][0] != '-') + usage(); + switch (argv[i][1]) + { case 's': - if (i+2 >= argc) usage(); - file = argv[++i]; - rfile = argv[++i]; - fprintf(stderr, "Sending file %s to %s as %s\n", file, host, rfile); - send_file(file, rfile, 0); - break; + if (i + 2 >= argc) + usage(); + file = argv[++i]; + rfile = argv[++i]; + fprintf(stderr, "Sending file %s to %s as %s\n", file, host, rfile); + send_file(conn, file, rfile, 0); + break; case 'S': - if (i+2 >= argc) usage(); - file = argv[++i]; - rfile = argv[++i]; - fprintf(stderr, "Sending (encrypted) file %s to %s as %s\n", file, host, rfile); - send_file(file, rfile, 1); - break; + if (i + 2 >= argc) + usage(); + file = argv[++i]; + rfile = argv[++i]; + fprintf(stderr, "Sending (encrypted) file %s to %s as %s\n", + file, host, rfile); + send_file(conn, file, rfile, 1); + break; case 'i': - if (i+1 >= argc) usage(); - file = argv[++i]; - strcpy(buf, "/tmp/moira-updateXXXXX"); - mktemp(buf); - fprintf(stderr, "Sending instructions %s to %s as %s\n", - file, host, buf); - send_file(file, buf, 0); - break; + if (i + 1 >= argc) + usage(); + file = argv[++i]; + ibuf = strdup("/tmp/moira-updateXXXXX"); + if (!ibuf) + { + com_err(whoami, ENOMEM, "sending instructions"); + exit(1); + } + mktemp(ibuf); + fprintf(stderr, "Sending instructions %s to %s as %s\n", + file, host, ibuf); + send_file(conn, file, ibuf, 0); + break; case 'I': - if (i+2 >= argc) usage(); - file = argv[++i]; - rfile = argv[++i]; - strcpy(buf, rfile); - fprintf(stderr, "Sending instructions %s to %s as %s\n", - file, host, buf); - send_file(file, buf, 0); - break; + if (i + 2 >= argc) + usage(); + file = argv[++i]; + ibuf = argv[++i]; + strcpy(ibuf, rfile); + fprintf(stderr, "Sending instructions %s to %s as %s\n", + file, host, ibuf); + send_file(conn, file, ibuf, 0); + break; case 'x': - fprintf(stderr, "Executing instructions %s on %s\n", buf, host); - code = execute(buf); - if (code) com_err(whoami, code, "executing"); - break; + if (!ibuf) + { + fprintf(stderr, "No instructions sent."); + usage(); + } + fprintf(stderr, "Executing instructions %s on %s\n", ibuf, host); + code = execute(conn, ibuf); + if (code) + com_err(whoami, code, "executing"); + break; case 'X': - if (i+1 >= argc) usage(); - file = argv[++i]; - fprintf(stderr, "Executing instructions %s on %s\n", file, host); - code = execute(file); - if (code) com_err(whoami, code, "executing"); - break; + if (i + 1 >= argc) + usage(); + file = argv[++i]; + fprintf(stderr, "Executing instructions %s on %s\n", file, host); + code = execute(conn, file); + if (code) + com_err(whoami, code, "executing"); + break; case 'n': - break; + break; default: - usage(); + usage(); } } - send_quit(); - conn = sever_connection(conn); - exit(code); + send_quit(conn); + close(conn); + exit(code); } -usage() +void usage(void) { - fprintf(stderr, "Usage: test host [commands...]\n"); - fprintf(stderr, " Commands are:\n"); - fprintf(stderr, "\t-s srcfile dstfile\tsends file\n"); - fprintf(stderr, "\t-S srcfile dstfile\tsends encrypted file\n"); - fprintf(stderr, "\t-i srcfile\t\tsends instructions\n"); - fprintf(stderr, "\t-I srcfile dstfile\tsends instructions\n"); - fprintf(stderr, "\t-x\t\texecutes last instructions\n"); - fprintf(stderr, "\t-X file\t\texecutes file\n"); - exit(1); + fprintf(stderr, "Usage: test host [commands...]\n"); + fprintf(stderr, " Commands are:\n"); + fprintf(stderr, "\t-s srcfile dstfile\tsends file\n"); + fprintf(stderr, "\t-S srcfile dstfile\tsends encrypted file\n"); + fprintf(stderr, "\t-i srcfile\t\tsends instructions\n"); + fprintf(stderr, "\t-I srcfile dstfile\tsends instructions\n"); + fprintf(stderr, "\t-x\t\texecutes last instructions\n"); + fprintf(stderr, "\t-X file\t\texecutes file\n"); + exit(1); }