X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/f0bd437a6f04dc8681c6d705dba04c84d297b97f..c9467b7a34160c4e25580a2dc82087c5ae0bb2d0:/clients/disorder.c diff --git a/clients/disorder.c b/clients/disorder.c index 4161d93..a246eee 100644 --- a/clients/disorder.c +++ b/clients/disorder.c @@ -32,6 +32,7 @@ #include #include #include +#include #include #include "configuration.h" @@ -51,6 +52,7 @@ #include "vector.h" #include "version.h" #include "dateparse.h" +#include "trackdb.h" #include "inputline.h" static disorder_client *client; @@ -65,6 +67,7 @@ static const struct option options[] = { { "help-commands", no_argument, 0, 'H' }, { "user", required_argument, 0, 'u' }, { "password", required_argument, 0, 'p' }, + { "wait-for-root", no_argument, 0, 'W' }, { 0, 0, 0, 0 } }; @@ -159,7 +162,7 @@ static void cf_shutdown(char attribute((unused)) **argv) { static void cf_reconfigure(char attribute((unused)) **argv) { /* Re-check configuration for server */ - if(config_read(1)) fatal(0, "cannot read configuration"); + if(config_read(1, NULL)) fatal(0, "cannot read configuration"); if(disorder_reconfigure(getclient())) exit(EXIT_FAILURE); } @@ -811,8 +814,28 @@ static void help_commands(void) { exit(0); } +static void wait_for_root(void) { + const char *password; + + while(!trackdb_readable()) { + info("waiting for trackdb..."); + sleep(1); + } + trackdb_init(TRACKDB_NO_RECOVER|TRACKDB_NO_UPGRADE); + for(;;) { + trackdb_open(TRACKDB_READ_ONLY); + password = trackdb_get_password("root"); + trackdb_close(); + if(password) + break; + info("waiting for root user to be created..."); + sleep(1); + } + trackdb_deinit(); +} + int main(int argc, char **argv) { - int n, i, j, local = 0; + int n, i, j, local = 0, wfr = 0; int status = 0; struct vector args; const char *user = 0, *password = 0; @@ -823,7 +846,7 @@ int main(int argc, char **argv) { pcre_free = xfree; if(!setlocale(LC_CTYPE, "")) fatal(errno, "error calling setlocale"); if(!setlocale(LC_TIME, "")) fatal(errno, "error calling setlocale"); - while((n = getopt_long(argc, argv, "+hVc:dHlNu:p:", options, 0)) >= 0) { + while((n = getopt_long(argc, argv, "+hVc:dHlNu:p:W", options, 0)) >= 0) { switch(n) { case 'h': help(); case 'H': help_commands(); @@ -834,10 +857,11 @@ int main(int argc, char **argv) { case 'N': config_per_user = 0; break; case 'u': user = optarg; break; case 'p': password = optarg; break; + case 'W': wfr = 1; break; default: fatal(0, "invalid option"); } } - if(config_read(0)) fatal(0, "cannot read configuration"); + if(config_read(0, NULL)) fatal(0, "cannot read configuration"); if(user) { config->username = user; config->password = 0; @@ -845,9 +869,16 @@ int main(int argc, char **argv) { if(password) config->password = password; if(local) - config->connect.n = 0; + config->connect.af = -1; + if(wfr) + wait_for_root(); n = optind; optind = 1; /* for subsequent getopt calls */ + /* gcrypt initialization */ + if(!gcry_check_version(NULL)) + disorder_fatal(0, "gcry_check_version failed"); + gcry_control(GCRYCTL_INIT_SECMEM, 0); + gcry_control (GCRYCTL_INITIALIZATION_FINISHED, 0); /* accumulate command args */ while(n < argc) { if((i = TABLE_FIND(commands, name, argv[n])) < 0)