chiark / gitweb /
insufficient rights always produces 51x response
[disorder] / clients / disorder.c
1 /*
2  * This file is part of DisOrder.
3  * Copyright (C) 2004, 2005, 2006, 2007 Richard Kettlewell
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18  * USA
19  */
20
21 #include <config.h>
22 #include "types.h"
23
24 #include <getopt.h>
25 #include <sys/types.h>
26 #include <sys/socket.h>
27 #include <sys/un.h>
28 #include <stdio.h>
29 #include <errno.h>
30 #include <stdlib.h>
31 #include <string.h>
32 #include <locale.h>
33 #include <time.h>
34 #include <stddef.h>
35 #include <unistd.h>
36 #include <assert.h>
37 #include <pcre.h>
38 #include <ctype.h>
39
40 #include "configuration.h"
41 #include "syscalls.h"
42 #include "log.h"
43 #include "queue.h"
44 #include "client.h"
45 #include "wstat.h"
46 #include "table.h"
47 #include "charset.h"
48 #include "kvp.h"
49 #include "split.h"
50 #include "sink.h"
51 #include "plugin.h"
52 #include "mem.h"
53 #include "defs.h"
54 #include "authorize.h"
55 #include "vector.h"
56
57 static disorder_client *client;
58
59 static const struct option options[] = {
60   { "help", no_argument, 0, 'h' },
61   { "version", no_argument, 0, 'V' },
62   { "config", required_argument, 0, 'c' },
63   { "debug", no_argument, 0, 'd' },
64   { "local", no_argument, 0, 'l' },
65   { "no-per-user-config", no_argument, 0, 'N' },
66   { "help-commands", no_argument, 0, 'H' },
67   { "user", required_argument, 0, 'u' },
68   { "password", required_argument, 0, 'p' },
69   { 0, 0, 0, 0 }
70 };
71
72 /* display usage message and terminate */
73 static void help(void) {
74   xprintf("Usage:\n"
75           "  disorder [OPTIONS] COMMAND ...\n"
76           "Options:\n"
77           "  --help, -h              Display usage message\n"
78           "  --help-commands, -H     List commands\n"
79           "  --version, -V           Display version number\n"
80           "  --config PATH, -c PATH  Set configuration file\n"
81           "  --local, -l             Force connection to local server\n"
82           "  --debug, -d             Turn on debugging\n");
83   xfclose(stdout);
84   exit(0);
85 }
86
87 /* display version number and terminate */
88 static void version(void) {
89   xprintf("%s", disorder_version_string);
90   xfclose(stdout);
91   exit(0);
92 }
93
94 static disorder_client *getclient(void) {
95   if(!client) {
96     if(!(client = disorder_new(1))) exit(EXIT_FAILURE);
97     if(disorder_connect(client)) exit(EXIT_FAILURE);
98   }
99   return client;
100 }
101
102 static void cf_version(char attribute((unused)) **argv) {
103   char *v;
104
105   if(disorder_version(getclient(), &v)) exit(EXIT_FAILURE);
106   xprintf("%s\n", nullcheck(utf82mb(v)));
107 }
108
109 static void print_queue_entry(const struct queue_entry *q) {
110   if(q->track) xprintf("track %s\n", nullcheck(utf82mb(q->track)));
111   if(q->id) xprintf("  id %s\n", nullcheck(utf82mb(q->id)));
112   if(q->submitter) xprintf("  submitted by %s at %s",
113                            nullcheck(utf82mb(q->submitter)), ctime(&q->when));
114   if(q->played) xprintf("  played at %s", ctime(&q->played));
115   if(q->state == playing_started
116      || q->state == playing_paused) xprintf("  %lds so far",  q->sofar);
117   else if(q->expected) xprintf("  might start at %s", ctime(&q->expected));
118   if(q->scratched) xprintf("  scratched by %s\n",
119                            nullcheck(utf82mb(q->scratched)));
120   else xprintf("  %s\n", playing_states[q->state]);
121   if(q->wstat) xprintf("  %s\n", wstat(q->wstat));
122 }
123
124 static void cf_playing(char attribute((unused)) **argv) {
125   struct queue_entry *q;
126
127   if(disorder_playing(getclient(), &q)) exit(EXIT_FAILURE);
128   if(q)
129     print_queue_entry(q);
130   else
131     xprintf("nothing\n");
132 }
133
134 static void cf_play(char **argv) {
135   while(*argv)
136     if(disorder_play(getclient(), *argv++)) exit(EXIT_FAILURE);
137 }
138
139 static void cf_remove(char **argv) {
140   if(disorder_remove(getclient(), argv[0])) exit(EXIT_FAILURE);
141 }
142
143 static void cf_disable(char attribute((unused)) **argv) {
144   if(disorder_disable(getclient())) exit(EXIT_FAILURE);
145 }
146
147 static void cf_enable(char attribute((unused)) **argv) {
148   if(disorder_enable(getclient())) exit(EXIT_FAILURE);
149 }
150
151 static void cf_scratch(char **argv) {
152   if(disorder_scratch(getclient(), argv[0])) exit(EXIT_FAILURE);
153 }
154
155 static void cf_shutdown(char attribute((unused)) **argv) {
156   if(disorder_shutdown(getclient())) exit(EXIT_FAILURE);
157 }
158
159 static void cf_reconfigure(char attribute((unused)) **argv) {
160   /* Re-check configuration for server */
161   if(config_read(1)) fatal(0, "cannot read configuration");
162   if(disorder_reconfigure(getclient())) exit(EXIT_FAILURE);
163 }
164
165 static void cf_rescan(char attribute((unused)) **argv) {
166   if(disorder_rescan(getclient())) exit(EXIT_FAILURE);
167 }
168
169 static void cf_somequeue(int (*fn)(disorder_client *c,
170                                    struct queue_entry **qp)) {
171   struct queue_entry *q;
172
173   if(fn(getclient(), &q)) exit(EXIT_FAILURE);
174   while(q) {
175     print_queue_entry(q);
176     q = q->next;
177   }
178 }
179
180 static void cf_recent(char attribute((unused)) **argv) {
181   cf_somequeue(disorder_recent);
182 }
183
184 static void cf_queue(char attribute((unused)) **argv) {
185   cf_somequeue(disorder_queue);
186 }
187
188 static void cf_quack(char attribute((unused)) **argv) {
189   xprintf("\n"
190           " .------------------.\n"
191           " | Naath is a babe! |\n"
192           " `---------+--------'\n"
193           "            \\\n"
194           "              >0\n"
195           "               (<)'\n"
196           "~~~~~~~~~~~~~~~~~~~~~~\n"
197           "\n");
198 }
199
200 static void cf_somelist(char **argv,
201                         int (*fn)(disorder_client *c,
202                                   const char *arg, const char *re,
203                                   char ***vecp, int *nvecp)) {
204   char **vec;
205   const char *re;
206
207   if(argv[1])
208     re = xstrdup(argv[1] + 1);
209   else
210     re = 0;
211   if(fn(getclient(), argv[0], re, &vec, 0)) exit(EXIT_FAILURE);
212   while(*vec)
213     xprintf("%s\n", nullcheck(utf82mb(*vec++)));
214 }
215
216 static int isarg_regexp(const char *s) {
217   return s[0] == '~';
218 }
219
220 static void cf_dirs(char **argv) {
221   cf_somelist(argv, disorder_directories);
222 }
223
224 static void cf_files(char **argv) {
225   cf_somelist(argv, disorder_files);
226 }
227
228 static void cf_allfiles(char **argv) {
229   cf_somelist(argv, disorder_allfiles);
230 }
231
232 static void cf_get(char **argv) {
233   char *value;
234
235   if(disorder_get(getclient(), argv[0], argv[1], &value)) exit(EXIT_FAILURE);
236   xprintf("%s\n", nullcheck(utf82mb(value)));
237 }
238
239 static void cf_length(char **argv) {
240   long length;
241
242   if(disorder_length(getclient(), argv[0], &length)) exit(EXIT_FAILURE);
243   xprintf("%ld\n", length);
244 }
245
246 static void cf_set(char **argv) {
247   if(disorder_set(getclient(), argv[0], argv[1], argv[2])) exit(EXIT_FAILURE);
248 }
249
250 static void cf_unset(char **argv) {
251   if(disorder_unset(getclient(), argv[0], argv[1])) exit(EXIT_FAILURE);
252 }
253
254 static void cf_prefs(char **argv) {
255   struct kvp *k;
256
257   if(disorder_prefs(getclient(), argv[0], &k)) exit(EXIT_FAILURE);
258   for(; k; k = k->next)
259     xprintf("%s = %s\n",
260             nullcheck(utf82mb(k->name)), nullcheck(utf82mb(k->value)));
261 }
262
263 static void cf_search(char **argv) {
264   char **results;
265   int nresults, n;
266
267   if(disorder_search(getclient(), *argv, &results, &nresults)) exit(EXIT_FAILURE);
268   for(n = 0; n < nresults; ++n)
269     xprintf("%s\n", nullcheck(utf82mb(results[n])));
270 }
271
272 static void cf_random_disable(char attribute((unused)) **argv) {
273   if(disorder_random_disable(getclient())) exit(EXIT_FAILURE);
274 }
275
276 static void cf_random_enable(char attribute((unused)) **argv) {
277   if(disorder_random_enable(getclient())) exit(EXIT_FAILURE);
278 }
279
280 static void cf_stats(char attribute((unused)) **argv) {
281   char **vec;
282
283   if(disorder_stats(getclient(), &vec, 0)) exit(EXIT_FAILURE);
284   while(*vec)
285       xprintf("%s\n", nullcheck(utf82mb(*vec++)));
286 }
287
288 static void cf_get_volume(char attribute((unused)) **argv) {
289   int l, r;
290
291   if(disorder_get_volume(getclient(), &l, &r)) exit(EXIT_FAILURE);
292   xprintf("%d %d\n", l, r);
293 }
294
295 static void cf_set_volume(char **argv) {
296   if(disorder_set_volume(getclient(), atoi(argv[0]), atoi(argv[1]))) exit(EXIT_FAILURE);
297 }
298
299 static void cf_log(char attribute((unused)) **argv) {
300   if(disorder_log(getclient(), sink_stdio("stdout", stdout))) exit(EXIT_FAILURE);
301 }
302
303 static void cf_move(char **argv) {
304   long n;
305   int e;
306   
307   if((e = xstrtol(&n, argv[1], 0, 10)))
308     fatal(e, "cannot convert '%s'", argv[1]);
309   if(n > INT_MAX || n < INT_MIN)
310     fatal(e, "%ld out of range", n);
311   if(disorder_move(getclient(), argv[0], (int)n)) exit(EXIT_FAILURE);
312 }
313
314 static void cf_part(char **argv) {
315   char *s;
316
317   if(disorder_part(getclient(), &s, argv[0], argv[1], argv[2])) exit(EXIT_FAILURE);
318   xprintf("%s\n", nullcheck(utf82mb(s)));
319 }
320
321 static int isarg_filename(const char *s) {
322   return s[0] == '/';
323 }
324
325 static void cf_authorize(char **argv) {
326   authorize(getclient(), argv[0], argv[1]);
327 }
328
329 static void cf_resolve(char **argv) {
330   char *track;
331
332   if(disorder_resolve(getclient(), &track, argv[0])) exit(EXIT_FAILURE);
333   xprintf("%s\n", nullcheck(utf82mb(track)));
334 }
335
336 static void cf_pause(char attribute((unused)) **argv) {
337   if(disorder_pause(getclient())) exit(EXIT_FAILURE);
338 }
339
340 static void cf_resume(char attribute((unused)) **argv) {
341   if(disorder_resume(getclient())) exit(EXIT_FAILURE);
342 }
343
344 static void cf_tags(char attribute((unused)) **argv) {
345   char **vec;
346
347   if(disorder_tags(getclient(), &vec, 0)) exit(EXIT_FAILURE);
348   while(*vec)
349       xprintf("%s\n", nullcheck(utf82mb(*vec++)));
350 }
351
352 static void cf_users(char attribute((unused)) **argv) {
353   char **vec;
354
355   if(disorder_users(getclient(), &vec, 0)) exit(EXIT_FAILURE);
356   while(*vec)
357     xprintf("%s\n", nullcheck(utf82mb(*vec++)));
358 }
359
360 static void cf_get_global(char **argv) {
361   char *value;
362
363   if(disorder_get_global(getclient(), argv[0], &value)) exit(EXIT_FAILURE);
364   xprintf("%s\n", nullcheck(utf82mb(value)));
365 }
366
367 static void cf_set_global(char **argv) {
368   if(disorder_set_global(getclient(), argv[0], argv[1])) exit(EXIT_FAILURE);
369 }
370
371 static void cf_unset_global(char **argv) {
372   if(disorder_unset_global(getclient(), argv[0])) exit(EXIT_FAILURE);
373 }
374
375 static int isarg_integer(const char *s) {
376   if(!*s) return 0;
377   while(*s) {
378     if(!isdigit((unsigned char)*s))
379       return 0;
380     ++s;
381   }
382   return 1;
383 }
384
385 static void cf_new(char **argv) {
386   char **vec;
387
388   if(disorder_new_tracks(getclient(), &vec, 0, argv[0] ? atoi(argv[0]) : 0))
389     exit(EXIT_FAILURE);
390   while(*vec)
391     xprintf("%s\n", nullcheck(utf82mb(*vec++)));
392 }
393
394 static void cf_rtp_address(char attribute((unused)) **argv) {
395   char *address, *port;
396
397   if(disorder_rtp_address(getclient(), &address, &port)) exit(EXIT_FAILURE);
398   xprintf("address: %s\nport: %s\n", address, port);
399 }
400
401 static int isarg_rights(const char *arg) {
402   return strchr(arg, ',') || !parse_rights(arg, 0, 0);
403 }
404
405 static void cf_adduser(char **argv) {
406   if(disorder_adduser(getclient(), argv[0], argv[1], argv[2]))
407     exit(EXIT_FAILURE);
408 }
409
410 static void cf_deluser(char **argv) {
411   if(disorder_deluser(getclient(), argv[0]))
412     exit(EXIT_FAILURE);
413 }
414
415 static void cf_edituser(char **argv) {
416   if(disorder_edituser(getclient(), argv[0], argv[1], argv[2]))
417     exit(EXIT_FAILURE);
418 }
419
420 static void cf_userinfo(char **argv) {
421   char *s;
422
423   if(disorder_userinfo(getclient(), argv[0], argv[1], &s))
424     exit(EXIT_FAILURE);
425   xprintf("%s\n", nullcheck(utf82mb(s)));
426 }
427
428 static int isarg_option(const char *arg) {
429   return arg[0] == '-';
430 }
431
432 static int argvlen(char **argv) {
433   char **start = argv;
434   
435   while(*argv)
436     ++argv;
437   return argv - start;
438 }
439
440 static const struct option setup_guest_options[] = {
441   { "help", no_argument, 0, 'h' },
442   { "online-registration", no_argument, 0, 'r' },
443   { "no-online-registration", no_argument, 0, 'R' },
444   { 0, 0, 0, 0 }
445 };
446
447 static void help_setup_guest(void) {
448   xprintf("Usage:\n"
449           "  disorder setup-guest [OPTIONS]\n"
450           "Options:\n"
451           "  --help, -h                Display usage message\n"
452           "  --online-registration     Enable online registration (default)\n"
453           "  --no-online-registration  Disable online registration\n");
454   xfclose(stdout);
455   exit(0);
456 }
457
458 static void cf_setup_guest(char **argv) {
459   int n, online_registration = 1;
460   
461   while((n = getopt_long(argvlen(argv) + 1, argv - 1,
462                          "hrR", setup_guest_options, 0)) >= 0) {
463     switch(n) {
464     case 'h': help_setup_guest();
465     case 'r': online_registration = 1; break;
466     case 'R': online_registration = 0; break;
467     default: fatal(0, "invalid option");
468     }
469   }
470   if(disorder_adduser(getclient(), "guest", "",
471                       online_registration ? "read,register" : "read"))
472     exit(EXIT_FAILURE);
473 }
474
475 static const struct command {
476   const char *name;
477   int min, max;
478   void (*fn)(char **);
479   int (*isarg)(const char *);
480   const char *argstr, *desc;
481 } commands[] = {
482   { "adduser",        2, 3, cf_adduser, isarg_rights, "USER PASSWORD [RIGHTS]",
483                       "Create a new user" },
484   { "allfiles",       1, 2, cf_allfiles, isarg_regexp, "DIR [~REGEXP]",
485                       "List all files and directories in DIR" },
486   { "authorize",      1, 2, cf_authorize, isarg_rights, "USER [RIGHTS]",
487                       "Authorize USER to connect to the server" },
488   { "deluser",        1, 1, cf_deluser, 0, "USER",
489                       "Delete a user" },
490   { "dirs",           1, 2, cf_dirs, isarg_regexp, "DIR [~REGEXP]",
491                       "List directories in DIR" },
492   { "disable",        0, 0, cf_disable, 0, "",
493                       "Disable play" },
494   { "disable-random", 0, 0, cf_random_disable, 0, "",
495                       "Disable random play" },
496   { "edituser",       3, 3, cf_edituser, 0, "USER PROPERTY VALUE",
497                       "Set a property of a user" },
498   { "enable",         0, 0, cf_enable, 0, "",
499                       "Enable play" },
500   { "enable-random",  0, 0, cf_random_enable, 0, "",
501                       "Enable random play" },
502   { "files",          1, 2, cf_files, isarg_regexp, "DIR [~REGEXP]",
503                       "List files in DIR" },
504   { "get",            2, 2, cf_get, 0, "TRACK NAME",
505                       "Get a preference value" },
506   { "get-global",     1, 1, cf_get_global, 0, "NAME",
507                       "Get a global preference value" },
508   { "get-volume",     0, 0, cf_get_volume, 0, "",
509                       "Get the current volume" },
510   { "length",         1, 1, cf_length, 0, "TRACK",
511                       "Get the length of TRACK in seconds" },
512   { "log",            0, 0, cf_log, 0, "",
513                       "Copy event log to stdout" },
514   { "move",           2, 2, cf_move, 0, "TRACK DELTA",
515                       "Move a track in the queue" },
516   { "new",            0, 1, cf_new, isarg_integer, "[MAX]",
517                       "Get the most recently added MAX tracks" },
518   { "part",           3, 3, cf_part, 0, "TRACK CONTEXT PART",
519                       "Find a track name part" },
520   { "pause",          0, 0, cf_pause, 0, "",
521                       "Pause the currently playing track" },
522   { "play",           1, INT_MAX, cf_play, isarg_filename, "TRACKS...",
523                       "Add TRACKS to the end of the queue" },
524   { "playing",        0, 0, cf_playing, 0, "",
525                       "Report the playing track" },
526   { "prefs",          1, 1, cf_prefs, 0, "TRACK",
527                       "Display all the preferences for TRACK" },
528   { "quack",          0, 0, cf_quack, 0, 0, 0 },
529   { "queue",          0, 0, cf_queue, 0, "",
530                       "Display the current queue" },
531   { "random-disable", 0, 0, cf_random_disable, 0, "",
532                       "Disable random play" },
533   { "random-enable",  0, 0, cf_random_enable, 0, "",
534                       "Enable random play" },
535   { "recent",         0, 0, cf_recent, 0, "",
536                       "Display recently played track" },
537   { "reconfigure",    0, 0, cf_reconfigure, 0, "",
538                       "Reconfigure the daemon" },
539   { "remove",         1, 1, cf_remove, 0, "TRACK",
540                       "Remove a track from the queue" },
541   { "rescan",         0, 0, cf_rescan, 0, "",
542                       "Rescan for new tracks" },
543   { "resolve",        1, 1, cf_resolve, 0, "TRACK",
544                       "Resolve alias for TRACK" },
545   { "resume",         0, 0, cf_resume, 0, "",
546                       "Resume after a pause" },
547   { "rtp-address",    0, 0, cf_rtp_address, 0, "",
548                       "Report server's broadcast address" },
549   { "scratch",        0, 0, cf_scratch, 0, "",
550                       "Scratch the currently playing track" },
551   { "scratch-id",     1, 1, cf_scratch, 0, "ID",
552                       "Scratch the currently playing track" },
553   { "search",         1, 1, cf_search, 0, "WORDS",
554                       "Display tracks matching all the words" },
555   { "set",            3, 3, cf_set, 0, "TRACK NAME VALUE",
556                       "Set a preference value" },
557   { "set-global",     2, 2, cf_set_global, 0, "NAME VALUE",
558                       "Set a global preference value" },
559   { "set-volume",     2, 2, cf_set_volume, 0, "LEFT RIGHT",
560                       "Set the volume" },
561   { "setup-guest",    0, INT_MAX, cf_setup_guest, isarg_option, "[OPTIONS]",
562                       "Create the guest login" },
563   { "shutdown",       0, 0, cf_shutdown, 0, "",
564                       "Shut down the daemon" },
565   { "stats",          0, 0, cf_stats, 0, "",
566                       "Display server statistics" },
567   { "tags",           0, 0, cf_tags, 0, "",
568                       "List known tags" },
569   { "unset",          2, 2, cf_unset, 0, "TRACK NAME",
570                       "Unset a preference" },
571   { "unset-global",   1, 1, cf_unset_global, 0, "NAME",
572                       "Unset a global preference" },
573   { "userinfo",       2, 2, cf_userinfo, 0, "USER PROPERTY",
574                       "Get a property of as user" },
575   { "users",          0, 0, cf_users, 0, "",
576                       "List all users" },
577   { "version",        0, 0, cf_version, 0, "",
578                       "Display the server version" },
579 };
580
581 static void help_commands(void) {
582   unsigned n, max = 0, l;
583
584   xprintf("Command summary:\n");
585   for(n = 0; n < sizeof commands / sizeof *commands; ++n) {
586     if(!commands[n].desc) continue;
587     l = strlen(commands[n].name);
588     if(*commands[n].argstr)
589       l += strlen(commands[n].argstr) + 1;
590     if(l > max)
591       max = l;
592   }
593   for(n = 0; n < sizeof commands / sizeof *commands; ++n) {
594     if(!commands[n].desc) continue;
595     l = strlen(commands[n].name);
596     if(*commands[n].argstr)
597       l += strlen(commands[n].argstr) + 1;
598     xprintf("  %s%s%s%*s  %s\n", commands[n].name,
599             *commands[n].argstr ? " " : "",
600             commands[n].argstr,
601             max - l, "",
602             commands[n].desc);
603   }
604   xfclose(stdout);
605   exit(0);
606 }
607
608 int main(int argc, char **argv) {
609   int n, i, j, local = 0;
610   int status = 0;
611   struct vector args;
612   const char *user = 0, *password = 0;
613
614   mem_init();
615   /* garbage-collect PCRE's memory */
616   pcre_malloc = xmalloc;
617   pcre_free = xfree;
618   if(!setlocale(LC_CTYPE, "")) fatal(errno, "error calling setlocale");
619   while((n = getopt_long(argc, argv, "hVc:dHlNu:p:", options, 0)) >= 0) {
620     switch(n) {
621     case 'h': help();
622     case 'H': help_commands();
623     case 'V': version();
624     case 'c': configfile = optarg; break;
625     case 'd': debugging = 1; break;
626     case 'l': local = 1; break;
627     case 'N': config_per_user = 0; break;
628     case 'u': user = optarg; break;
629     case 'p': password = optarg; break;
630     default: fatal(0, "invalid option");
631     }
632   }
633   if(config_read(0)) fatal(0, "cannot read configuration");
634   if(user) {
635     config->username = user;
636     config->password = 0;
637   }
638   if(password)
639     config->password = password;
640   if(local)
641     config->connect.n = 0;
642   n = optind;
643   optind = 1;                           /* for subsequent getopt calls */
644   /* accumulate command args */
645   while(n < argc) {
646     if((i = TABLE_FIND(commands, struct command, name, argv[n])) < 0)
647       fatal(0, "unknown command '%s'", argv[n]);
648     if(n + commands[i].min >= argc)
649       fatal(0, "missing arguments to '%s'", argv[n]);
650     vector_init(&args);
651     /* Include the command name in the args, but at element -1, for
652      * the benefit of subcommand getopt calls */
653     vector_append(&args, argv[n]);
654     n++;
655     for(j = 0; j < commands[i].min; ++j)
656       vector_append(&args, nullcheck(mb2utf8(argv[n + j])));
657     for(; j < commands[i].max
658           && n + j < argc
659           && commands[i].isarg(argv[n + j]); ++j)
660       vector_append(&args, nullcheck(mb2utf8(argv[n + j])));
661     vector_terminate(&args);
662     commands[i].fn(args.vec + 1);
663     n += j;
664   }
665   if(client && disorder_close(client)) exit(EXIT_FAILURE);
666   if(fclose(stdout) < 0) fatal(errno, "error closing stdout");
667   return status;
668 }
669
670 /*
671 Local Variables:
672 c-basic-offset:2
673 comment-column:40
674 End:
675 */