bitstream.c: Convert GET_DATA macro to inline function.
[paraslash.git] / client.c
1 /*
2  * Copyright (C) 1997 Andre Noll <maan@tuebingen.mpg.de>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6
7 /** \file client.c The client program used to connect to para_server. */
8
9 #include <regex.h>
10 #include <signal.h>
11
12 #include "para.h"
13 #include "list.h"
14 #include "sched.h"
15 #include "crypt.h"
16 #include "client.cmdline.h"
17 #include "string.h"
18 #include "stdin.h"
19 #include "stdout.h"
20 #include "client.h"
21 #include "buffer_tree.h"
22 #include "error.h"
23 #include "version.h"
24
25 INIT_CLIENT_ERRLISTS;
26
27 static struct sched sched;
28 static struct client_task *ct;
29 static struct stdin_task sit;
30 static struct stdout_task sot;
31
32 static int client_loglevel = LL_ERROR;
33 DEFINE_STDERR_LOGGER(stderr_log, client_loglevel);
34 __printf_2_3 void (*para_log)(int, const char*, ...) = stderr_log;
35
36 #ifdef HAVE_READLINE
37 #include "interactive.h"
38 #include "server.completion.h"
39 #include "afs.completion.h"
40
41 struct exec_task {
42         struct task *task;
43         struct btr_node *btrn;
44         char *result_buf;
45         size_t result_size;
46 };
47
48 static void exec_pre_select(struct sched *s, void *context)
49 {
50         struct exec_task *et = context;
51         int ret = btr_node_status(et->btrn, 0, BTR_NT_LEAF);
52
53         if (ret != 0)
54                 sched_min_delay(s);
55 }
56
57 static int exec_post_select(__a_unused struct sched *s, void *context)
58 {
59         struct exec_task *et = context;
60         struct btr_node *btrn = et->btrn;
61         char *buf;
62         size_t sz;
63         int ret;
64
65         ret = btr_node_status(btrn, 0, BTR_NT_LEAF);
66         if (ret <= 0)
67                 return ret;
68         sz = btr_next_buffer(btrn, &buf);
69         if (sz <= 1)
70                 goto out;
71         et->result_buf = para_realloc(et->result_buf, et->result_size + sz - 1);
72         memcpy(et->result_buf + et->result_size - 1, buf, sz -  1);
73         et->result_size += sz - 1;
74         et->result_buf[et->result_size - 1] = '\0';
75 out:
76         btr_consume(btrn, sz);
77         return 0;
78 }
79
80 static int make_client_argv(const char *line)
81 {
82         int ret;
83
84         free_argv(ct->conf.inputs);
85         ret = create_argv(line, " ", &ct->conf.inputs);
86         if (ret >= 0)
87                 ct->conf.inputs_num = ret;
88         return ret;
89 }
90
91 static int execute_client_command(const char *cmd, char **result)
92 {
93         int ret;
94         struct sched command_sched = {.default_timeout = {.tv_sec = 1}};
95         struct exec_task exec_task = {
96                 .result_buf = para_strdup(""),
97                 .result_size = 1,
98         };
99         *result = NULL;
100         ret = make_client_argv(cmd);
101         if (ret < 0)
102                 goto out;
103         exec_task.btrn = btr_new_node(&(struct btr_node_description)
104                 EMBRACE(.name = "exec_collect"));
105         exec_task.task = task_register(&(struct task_info) {
106                 .name = "client exec",
107                 .pre_select = exec_pre_select,
108                 .post_select = exec_post_select,
109                 .context = &exec_task,
110         }, &command_sched);
111         ret = client_connect(ct, &command_sched, NULL, exec_task.btrn);
112         if (ret < 0)
113                 goto out;
114         schedule(&command_sched);
115         sched_shutdown(&command_sched);
116         *result = exec_task.result_buf;
117         btr_remove_node(&exec_task.btrn);
118         ret = 1;
119 out:
120         btr_remove_node(&exec_task.btrn);
121         if (ret < 0)
122                 free(exec_task.result_buf);
123         return ret;
124 }
125
126 static int extract_matches_from_command(const char *word, char *cmd,
127                 char ***matches)
128 {
129         char *buf, **sl;
130         int ret;
131
132         ret = execute_client_command(cmd, &buf);
133         if (ret < 0)
134                 return ret;
135         ret = create_argv(buf, "\n", &sl);
136         free(buf);
137         if (ret < 0)
138                 return ret;
139         ret = i9e_extract_completions(word, sl, matches);
140         free_argv(sl);
141         return ret;
142 }
143
144 static int complete_attributes(const char *word, char ***matches)
145 {
146         return extract_matches_from_command(word, "lsatt", matches);
147 }
148
149 static void complete_addblob(__a_unused const char *blob_type,
150                 __a_unused struct i9e_completion_info *ci,
151                 __a_unused struct i9e_completion_result *cr)
152 {
153         cr->filename_completion_desired = true;
154 }
155
156 static void generic_blob_complete(const char *blob_type,
157                 struct i9e_completion_info *ci,
158                 struct i9e_completion_result *cr)
159 {
160         char cmd[20];
161         sprintf(cmd, "ls%s", blob_type);
162         extract_matches_from_command(ci->word, cmd, &cr->matches);
163 }
164
165 static void complete_catblob(const char *blob_type,
166                 struct i9e_completion_info *ci,
167                 struct i9e_completion_result *cr)
168 {
169         generic_blob_complete(blob_type, ci, cr);
170 }
171
172 static void complete_lsblob(const char *blob_type,
173                 struct i9e_completion_info *ci,
174                 struct i9e_completion_result *cr)
175 {
176         char *opts[] = {"-i", "-l", "-r", NULL};
177
178         if (ci->word[0] == '-')
179                 return i9e_complete_option(opts, ci, cr);
180         generic_blob_complete(blob_type, ci, cr);
181 }
182
183 static void complete_rmblob(const char *blob_type,
184                 struct i9e_completion_info *ci,
185                 struct i9e_completion_result *cr)
186 {
187         generic_blob_complete(blob_type, ci, cr);
188 }
189
190 static void complete_mvblob(const char *blob_type,
191                 struct i9e_completion_info *ci,
192                 struct i9e_completion_result *cr)
193 {
194         generic_blob_complete(blob_type, ci, cr);
195 }
196
197 /* these don't need any completions */
198 I9E_DUMMY_COMPLETER(ff);
199 I9E_DUMMY_COMPLETER(hup);
200 I9E_DUMMY_COMPLETER(jmp);
201 I9E_DUMMY_COMPLETER(next);
202 I9E_DUMMY_COMPLETER(nomore);
203 I9E_DUMMY_COMPLETER(pause);
204 I9E_DUMMY_COMPLETER(play);
205 I9E_DUMMY_COMPLETER(si);
206 I9E_DUMMY_COMPLETER(term);
207 I9E_DUMMY_COMPLETER(version);
208 I9E_DUMMY_COMPLETER(stop);
209 I9E_DUMMY_COMPLETER(addatt);
210 I9E_DUMMY_COMPLETER(init);
211 I9E_DUMMY_COMPLETER(tasks);
212
213 static struct i9e_completer completers[];
214
215 static void help_completer(struct i9e_completion_info *ci,
216                 struct i9e_completion_result *result)
217 {
218         result->matches = i9e_complete_commands(ci->word, completers);
219 }
220
221 static void stat_completer(struct i9e_completion_info *ci,
222                 struct i9e_completion_result *cr)
223 {
224         char *opts[] = {"-n=", "-p", NULL};
225         //PARA_CRIT_LOG("word: %s\n", ci->word);
226         i9e_complete_option(opts, ci, cr);
227 }
228
229 static void sender_completer(struct i9e_completion_info *ci,
230                 struct i9e_completion_result *cr)
231 {
232         char *senders[] = {"http", "dccp", "udp", NULL};
233         char *http_cmds[] = {"on", "off", "allow", "deny", "help", NULL};
234         char *dccp_cmds[] = {"on", "off", "allow", "deny", "help", NULL};
235         char *udp_cmds[] ={"on", "off", "add", "delete", "help", NULL};
236         char *sender;
237         char **cmds;
238
239         //PARA_CRIT_LOG("wn: %d\n", ci->word_num);
240         if (ci->word_num == 0 || ci->word_num > 3)
241                 return;
242         if (ci->word_num == 1 || (ci->word_num == 2 && *ci->word != '\0')) {
243                 i9e_extract_completions(ci->word, senders, &cr->matches);
244                 return;
245         }
246         sender = ci->argv[1];
247         //PARA_CRIT_LOG("sender: %s\n", sender);
248         if (strcmp(sender, "http") == 0)
249                 cmds = http_cmds;
250         else if (strcmp(sender, "dccp") == 0)
251                 cmds = dccp_cmds;
252         else if (strcmp(sender, "udp") == 0)
253                 cmds = udp_cmds;
254         else
255                 return;
256         i9e_extract_completions(ci->word, cmds, &cr->matches);
257 }
258
259 static void add_completer(struct i9e_completion_info *ci,
260                 struct i9e_completion_result *cr)
261 {
262         char *opts[] = {"-a", "-l", "-f", "-v", "--", NULL};
263
264         if (ci->word[0] == '-')
265                 i9e_complete_option(opts, ci, cr);
266         cr->filename_completion_desired = true;
267 }
268
269 static void ls_completer(struct i9e_completion_info *ci,
270                 struct i9e_completion_result *cr)
271 {
272         char *opts[] = {
273                 "--", "-l", "-l=s", "-l=l", "-l=v", "-l=p", "-l=m", "-l=c",
274                 "-p", "-a", "-r", "-d", "-s=p", "-s=l", "-s=s", "-s=n", "-s=f",
275                 "-s=c", "-s=i", "-s=y", "-s=b", "-s=d", "-s=a", NULL
276         };
277         if (ci->word[0] == '-')
278                 i9e_complete_option(opts, ci, cr);
279         cr->filename_completion_desired = true;
280 }
281
282 static void setatt_completer(struct i9e_completion_info *ci,
283                 struct i9e_completion_result *cr)
284 {
285         char *buf, **sl;
286         int i, ret, num_atts;
287
288         if (ci->word_num == 0)
289                 return;
290
291         if (*ci->word == '/' || *ci->word == '\0')
292                 cr->filename_completion_desired = true;
293         if (*ci->word == '/')
294                 return;
295         ret = execute_client_command("lsatt", &buf);
296         if (ret < 0)
297                 return;
298         ret = create_argv(buf, "\n", &sl);
299         if (ret < 0)
300                 goto out;
301         num_atts = ret;
302         sl = para_realloc(sl, (2 * num_atts + 1) * sizeof(char *));
303         for (i = 0; i < num_atts; i++) {
304                 char *orig = sl[i];
305                 sl[i] = make_message("%s+", orig);
306                 sl[num_atts + i] = make_message("%s-", orig);
307                 free(orig);
308         }
309         sl[2 * num_atts] = NULL;
310         i9e_extract_completions(ci->word, sl, &cr->matches);
311 out:
312         free(buf);
313         free_argv(sl);
314 }
315
316 static void lsatt_completer(struct i9e_completion_info *ci,
317                 struct i9e_completion_result *cr)
318 {
319         char *opts[] = {"-i", "-l", "-r", NULL};
320
321         if (ci->word[0] == '-')
322                 i9e_complete_option(opts, ci, cr);
323         else
324                 complete_attributes(ci->word, &cr->matches);
325 }
326
327 static void mvatt_completer(struct i9e_completion_info *ci,
328                 struct i9e_completion_result *cr)
329 {
330         complete_attributes(ci->word, &cr->matches);
331 }
332
333 static void rmatt_completer(struct i9e_completion_info *ci,
334                 struct i9e_completion_result *cr)
335 {
336         complete_attributes(ci->word, &cr->matches);
337 }
338
339 static void check_completer(struct i9e_completion_info *ci,
340                 struct i9e_completion_result *cr)
341 {
342         char *opts[] = {"-a", "-m", "-p", NULL};
343         i9e_complete_option(opts, ci, cr);
344 }
345
346 static void rm_completer(struct i9e_completion_info *ci,
347                 struct i9e_completion_result *cr)
348 {
349         char *opts[] = {"-v", "-f", "-p", NULL};
350
351         if (ci->word[0] == '-') {
352                 i9e_complete_option(opts, ci, cr);
353                 return;
354         }
355         cr->filename_completion_desired = true;
356 }
357
358 static void touch_completer(struct i9e_completion_info *ci,
359                 struct i9e_completion_result *cr)
360 {
361         char *opts[] = {"-n=", "-l=", "-y=", "-i=", "-a=", "-v", "-p", NULL};
362
363         if (ci->word[0] == '-')
364                 i9e_complete_option(opts, ci, cr);
365         cr->filename_completion_desired = true;
366 }
367
368 static void cpsi_completer(struct i9e_completion_info *ci,
369                 struct i9e_completion_result *cr)
370 {
371         char *opts[] = {"-a", "-y", "-i", "-l", "-n", "-v", NULL};
372
373         if (ci->word[0] == '-')
374                 i9e_complete_option(opts, ci, cr);
375         cr->filename_completion_desired = true;
376 }
377
378 static void select_completer(struct i9e_completion_info *ci,
379                 struct i9e_completion_result *cr)
380 {
381         char *mood_buf, *pl_buf, **moods, **playlists, **mops;
382         int num_moods, num_pl, i, n, ret;
383
384         ret = execute_client_command("lsmood", &mood_buf);
385         if (ret < 0)
386                 return;
387         ret = execute_client_command("lspl", &pl_buf);
388         if (ret < 0)
389                 goto free_mood_buf;
390
391         ret = create_argv(mood_buf, "\n", &moods);
392         if (ret < 0)
393                 goto free_pl_buf;
394         num_moods = ret;
395         ret = create_argv(pl_buf, "\n", &playlists);
396         if (ret < 0)
397                 goto free_moods;
398         num_pl = ret;
399         n = num_moods + num_pl;
400         mops = para_malloc((n + 1) * sizeof(char *));
401         for (i = 0; i < num_moods; i++)
402                 mops[i] = make_message("m/%s", moods[i]);
403         for (i = 0; i < num_pl; i++)
404                 mops[num_moods + i] = make_message("p/%s", playlists[i]);
405         mops[n] = NULL;
406         i9e_extract_completions(ci->word, mops, &cr->matches);
407         free_argv(mops);
408         free_argv(playlists);
409 free_moods:
410         free_argv(moods);
411 free_pl_buf:
412         free(pl_buf);
413 free_mood_buf:
414         free(mood_buf);
415 }
416
417 #define DEFINE_BLOB_COMPLETER(cmd, blob_type) \
418         static void cmd ## blob_type ## _completer( \
419                 struct i9e_completion_info *ci, \
420                 struct i9e_completion_result *cr) \
421         {complete_ ## cmd ## blob(#blob_type, ci, cr);}
422
423 DEFINE_BLOB_COMPLETER(add, mood)
424 DEFINE_BLOB_COMPLETER(add, lyr)
425 DEFINE_BLOB_COMPLETER(add, img)
426 DEFINE_BLOB_COMPLETER(add, pl)
427 DEFINE_BLOB_COMPLETER(cat, mood)
428 DEFINE_BLOB_COMPLETER(cat, lyr)
429 DEFINE_BLOB_COMPLETER(cat, img)
430 DEFINE_BLOB_COMPLETER(cat, pl)
431 DEFINE_BLOB_COMPLETER(ls, mood)
432 DEFINE_BLOB_COMPLETER(ls, lyr)
433 DEFINE_BLOB_COMPLETER(ls, img)
434 DEFINE_BLOB_COMPLETER(ls, pl)
435 DEFINE_BLOB_COMPLETER(rm, mood)
436 DEFINE_BLOB_COMPLETER(rm, lyr)
437 DEFINE_BLOB_COMPLETER(rm, img)
438 DEFINE_BLOB_COMPLETER(rm, pl)
439 DEFINE_BLOB_COMPLETER(mv, mood)
440 DEFINE_BLOB_COMPLETER(mv, lyr)
441 DEFINE_BLOB_COMPLETER(mv, img)
442 DEFINE_BLOB_COMPLETER(mv, pl)
443
444 static int client_i9e_line_handler(char *line)
445 {
446         int ret;
447
448         PARA_DEBUG_LOG("line: %s\n", line);
449         ret = make_client_argv(line);
450         if (ret <= 0)
451                 return ret;
452         ret = client_connect(ct, &sched, NULL, NULL);
453         if (ret < 0)
454                 return ret;
455         i9e_attach_to_stdout(ct->btrn[0]);
456         return 1;
457 }
458
459 static struct i9e_completer completers[] = {
460         SERVER_COMPLETERS
461         AFS_COMPLETERS
462         {.name = NULL}
463 };
464
465 __noreturn static void interactive_session(void)
466 {
467         int ret;
468         char *history_file;
469         struct sigaction act;
470         struct i9e_client_info ici = {
471                 .fds = {0, 1, 2},
472                 .prompt = "para_client> ",
473                 .line_handler = client_i9e_line_handler,
474                 .loglevel = client_loglevel,
475                 .completers = completers,
476         };
477
478         PARA_NOTICE_LOG("\n%s\n", version_text("client"));
479         if (ct->conf.history_file_given)
480                 history_file = para_strdup(ct->conf.history_file_arg);
481         else {
482                 char *home = para_homedir();
483                 history_file = make_message("%s/.paraslash/client.history",
484                         home);
485                 free(home);
486         }
487         ici.history_file = history_file;
488
489         act.sa_handler = i9e_signal_dispatch;
490         sigemptyset(&act.sa_mask);
491         act.sa_flags = 0;
492         sigaction(SIGINT, &act, NULL);
493         sched.select_function = i9e_select;
494
495         ret = i9e_open(&ici, &sched);
496         if (ret < 0)
497                 goto out;
498         para_log = i9e_log;
499         ret = schedule(&sched);
500         sched_shutdown(&sched);
501         i9e_close();
502         para_log = stderr_log;
503 out:
504         if (ret < 0)
505                 PARA_ERROR_LOG("%s\n", para_strerror(-ret));
506         exit(ret < 0? EXIT_FAILURE : EXIT_SUCCESS);
507         //client_close(ct);
508 }
509
510 __noreturn static void print_completions(void)
511 {
512         int ret = i9e_print_completions(completers);
513         exit(ret <= 0? EXIT_FAILURE : EXIT_SUCCESS);
514 }
515
516 #else /* HAVE_READLINE */
517
518 __noreturn static void interactive_session(void)
519 {
520         PARA_EMERG_LOG("interactive sessions not available\n");
521         exit(EXIT_FAILURE);
522 }
523
524 __noreturn static void print_completions(void)
525 {
526         PARA_EMERG_LOG("command completion not available\n");
527         exit(EXIT_FAILURE);
528 }
529
530 #endif /* HAVE_READLINE */
531
532 struct supervisor_task {
533         bool stdout_task_started;
534         struct task *task;
535 };
536
537 static int supervisor_post_select(struct sched *s, void *context)
538 {
539         struct supervisor_task *svt = context;
540         int ret = task_status(ct->task);
541
542         if (ret < 0)
543                 return ret;
544         if (!svt->stdout_task_started && ct->status == CL_EXECUTING) {
545                 stdout_task_register(&sot, s);
546                 svt->stdout_task_started = true;
547                 return 1;
548         }
549         if (ct->status == CL_SENDING) {
550                 stdin_task_register(&sit, s);
551                 return -E_TASK_STARTED;
552         }
553         return 0;
554 }
555
556 static struct supervisor_task supervisor_task;
557
558 /**
559  * The client program to connect to para_server.
560  *
561  * \param argc Usual argument count.
562  * \param argv Usual argument vector.
563  *
564  * When called without a paraslash command, an interactive session is started.
565  * Otherwise, the client task and the supervisor task are started. The former
566  * communicates with para_server while the latter monitors whether the client
567  * task intends to read from stdin or write to stdout.
568  *
569  * Once it has been determined whether the client command corresponds to a
570  * stdin command (addmood, addimg, ..), either the stdin task or the stdout
571  * task is set up to replace the supervisor task.
572  *
573  * \return EXIT_SUCCESS or EXIT_FAILURE
574  *
575  * \sa client_open(), stdin.c, stdout.c, para_client(1), para_server(1)
576  */
577 int main(int argc, char *argv[])
578 {
579         int ret;
580
581         init_random_seed_or_die();
582         sched.default_timeout.tv_sec = 1;
583
584         ret = client_parse_config(argc, argv, &ct, &client_loglevel);
585         if (ret < 0)
586                 goto out;
587         if (ct->conf.complete_given)
588                 print_completions();
589         if (ret == 0)
590                 interactive_session(); /* does not return */
591
592         /*
593          * We add buffer tree nodes for stdin and stdout even though
594          * only one of them will be needed. This simplifies the code
595          * a bit wrt. to the buffer tree setup.
596          */
597         sit.btrn = btr_new_node(&(struct btr_node_description)
598                 EMBRACE(.name = "stdin"));
599         ret = client_connect(ct, &sched, sit.btrn, NULL);
600         if (ret < 0)
601                 goto out;
602         sot.btrn = btr_new_node(&(struct btr_node_description)
603                 EMBRACE(.name = "stdout", .parent = ct->btrn[0]));
604         supervisor_task.task = task_register(&(struct task_info) {
605                 .name = "supervisor",
606                 .post_select = supervisor_post_select,
607                 .context = &supervisor_task,
608         }, &sched);
609
610         ret = schedule(&sched);
611         if (ret >= 0) {
612                 ret = task_status(ct->task);
613                 if (ret < 0) {
614                         switch (ret) {
615                         /* these are not errors */
616                         case -E_SERVER_CMD_SUCCESS:
617                         case -E_EOF:
618                         case -E_SERVER_EOF:
619                         case -E_BTR_EOF:
620                                 ret = 0;
621                                 break;
622                         default: ret = -E_SERVER_CMD_FAILURE;
623                         }
624                 }
625         }
626         sched_shutdown(&sched);
627 out:
628         if (ret < 0)
629                 PARA_ERROR_LOG("%s\n", para_strerror(-ret));
630         client_close(ct);
631         btr_remove_node(&sit.btrn);
632         btr_remove_node(&sot.btrn);
633         return ret < 0? EXIT_FAILURE : EXIT_SUCCESS;
634 }