chiark / gitweb /
Typos.
[disorder] / lib / client.c
1 /*
2  * This file is part of DisOrder.
3  * Copyright (C) 2004-13 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 3 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,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU 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, see <http://www.gnu.org/licenses/>.
17  */
18 /** @file lib/client.c
19  * @brief Simple C client
20  *
21  * See @ref lib/eclient.c for an asynchronous-capable client
22  * implementation.
23  */
24
25 #include "common.h"
26
27 #include <sys/types.h>
28 #if HAVE_SYS_SOCKET_H
29 # include <sys/socket.h>
30 #endif
31 #if HAVE_NETINET_IN_H
32 # include <netinet/in.h>
33 #endif
34 #if HAVE_SYS_UN_H
35 # include <sys/un.h>
36 #endif
37 #if HAVE_UNISTD_H
38 # include <unistd.h>
39 #endif
40 #include <errno.h>
41 #if HAVE_NETDB_H
42 # include <netdb.h>
43 #endif
44 #if HAVE_PCRE_H
45 # include <pcre.h>
46 #endif
47
48 #include "log.h"
49 #include "mem.h"
50 #include "queue.h"
51 #include "client.h"
52 #include "charset.h"
53 #include "hex.h"
54 #include "split.h"
55 #include "vector.h"
56 #include "inputline.h"
57 #include "kvp.h"
58 #include "syscalls.h"
59 #include "printf.h"
60 #include "sink.h"
61 #include "addr.h"
62 #include "authhash.h"
63 #include "client-common.h"
64 #include "rights.h"
65 #include "kvp.h"
66
67 /** @brief Client handle contents */
68 struct disorder_client {
69   /** @brief Stream to read from */
70   FILE *fpin;
71   /** @brief Stream to write to */
72   FILE *fpout;
73   /** @brief Peer description */
74   char *ident;
75   /** @brief Username */
76   char *user;
77   /** @brief Report errors to @c stderr */
78   int verbose;
79   /** @brief Last error string */
80   const char *last;
81   /** @brief Address family */
82   int family;
83 };
84
85 /** @brief Create a new client
86  * @param verbose If nonzero, write extra junk to stderr
87  * @return Pointer to new client
88  *
89  * You must call disorder_connect(), disorder_connect_user() or
90  * disorder_connect_cookie() to connect it.  Use disorder_close() to
91  * dispose of the client when finished with it.
92  */
93 disorder_client *disorder_new(int verbose) {
94   disorder_client *c = xmalloc(sizeof (struct disorder_client));
95
96   c->verbose = verbose;
97   c->family = -1;
98   return c;
99 }
100
101 /** @brief Return the address family used by this client */
102 int disorder_client_af(disorder_client *c) {
103   return c->family;
104 }
105
106 /** @brief Read a response line
107  * @param c Client
108  * @param rp Where to store response, or NULL (UTF-8)
109  * @return Response code 0-999 or -1 on error
110  */
111 static int response(disorder_client *c, char **rp) {
112   char *r;
113
114   if(inputline(c->ident, c->fpin, &r, '\n')) {
115     byte_xasprintf((char **)&c->last, "input error: %s", strerror(errno));
116     return -1;
117   }
118   D(("response: %s", r));
119   if(rp)
120     *rp = r;
121   if(r[0] >= '0' && r[0] <= '9'
122      && r[1] >= '0' && r[1] <= '9'
123      && r[2] >= '0' && r[2] <= '9'
124      && r[3] == ' ') {
125     c->last = r + 4;
126     return (r[0] * 10 + r[1]) * 10 + r[2] - 111 * '0';
127   } else {
128     c->last = "invalid reply format";
129     disorder_error(0, "invalid reply format from %s", c->ident);
130     return -1;
131   }
132 }
133
134 /** @brief Return last response string
135  * @param c Client
136  * @return Last response string (UTF-8, English) or NULL
137  */
138 const char *disorder_last(disorder_client *c) {
139   return c->last;
140 }
141
142 /** @brief Read and partially parse a response
143  * @param c Client
144  * @param rp Where to store response text (or NULL) (UTF-8)
145  * @return 0 on success, non-0 on error
146  *
147  * 5xx responses count as errors.
148  *
149  * @p rp will NOT be filled in for xx9 responses (where it is just
150  * commentary for a command where it would normally be meaningful).
151  *
152  * NB that the response will NOT be converted to the local encoding.
153  */
154 static int check_response(disorder_client *c, char **rp) {
155   int rc;
156   char *r;
157
158   if((rc = response(c, &r)) == -1)
159     return -1;
160   else if(rc / 100 == 2) {
161     if(rp)
162       *rp = (rc % 10 == 9) ? 0 : xstrdup(r + 4);
163     xfree(r);
164     return 0;
165   } else {
166     if(c->verbose)
167       disorder_error(0, "from %s: %s", c->ident, utf82mb(r));
168     xfree(r);
169     return rc;
170   }
171 }
172
173 /** @brief Issue a command and parse a simple response
174  * @param c Client
175  * @param rp Where to store result, or NULL
176  * @param cmd Command
177  * @param ap Arguments (UTF-8), terminated by (char *)0
178  * @return 0 on success, non-0 on error
179  *
180  * 5xx responses count as errors.
181  *
182  * @p rp will NOT be filled in for xx9 responses (where it is just
183  * commentary for a command where it would normally be meaningful).
184  *
185  * NB that the response will NOT be converted to the local encoding
186  * nor will quotes be stripped.  See dequote().
187  *
188  * Put @ref disorder__body in the argument list followed by a char **
189  * and int giving the body to follow the command.  If the int is @c -1
190  * then the list is assumed to be NULL-terminated.  This may be used
191  * only once.
192  *
193  * Put @ref disorder__list in the argument list followed by a char **
194  * and int giving a list of arguments to include.  If the int is @c -1
195  * then the list is assumed to be NULL-terminated.  This may be used
196  * any number of times.
197  *
198  * Put @ref disorder__integer in the argument list followed by a long to
199  * send its value in decimal.  This may be used any number of times.
200  *
201  * Put @ref disorder__time in the argument list followed by a time_t
202  * to send its value in decimal.  This may be used any number of
203  * times.
204  *
205  * Usually you would call this via one of the following interfaces:
206  * - disorder_simple()
207  */
208 static int disorder_simple_v(disorder_client *c,
209                              char **rp,
210                              const char *cmd,
211                              va_list ap) {
212   const char *arg;
213   struct dynstr d;
214   char **body = NULL;
215   int nbody = 0;
216   int has_body = 0;
217
218   if(!c->fpout) {
219     c->last = "not connected";
220     disorder_error(0, "not connected to server");
221     return -1;
222   }
223   if(cmd) {
224     dynstr_init(&d);
225     dynstr_append_string(&d, cmd);
226     while((arg = va_arg(ap, const char *))) {
227       if(arg == disorder__body) {
228         body = va_arg(ap, char **);
229         nbody = va_arg(ap, int);
230         has_body = 1;
231       } else if(arg == disorder__list) {
232         char **list = va_arg(ap, char **);
233         int nlist = va_arg(ap, int);
234         int n;
235         if(nlist < 0) {
236           for(nlist = 0; list[nlist]; ++nlist)
237             ;
238         }
239         for(n = 0; n < nlist; ++n) {
240           dynstr_append(&d, ' ');
241           dynstr_append_string(&d, quoteutf8(arg));
242         }
243       } else if(arg == disorder__integer) {
244         long n = va_arg(ap, long);
245         char buffer[16];
246         byte_snprintf(buffer, sizeof buffer, "%ld", n);
247         dynstr_append(&d, ' ');
248         dynstr_append_string(&d, buffer);
249       } else if(arg == disorder__time) {
250         time_t n = va_arg(ap, time_t);
251         char buffer[16];
252         byte_snprintf(buffer, sizeof buffer, "%lld", (long long)n);
253         dynstr_append(&d, ' ');
254         dynstr_append_string(&d, buffer);
255       } else {
256         dynstr_append(&d, ' ');
257         dynstr_append_string(&d, quoteutf8(arg));
258       }
259     }
260     dynstr_append(&d, '\n');
261     dynstr_terminate(&d);
262     D(("command: %s", d.vec));
263     if(fputs(d.vec, c->fpout) < 0)
264       goto write_error;
265     xfree(d.vec);
266     if(has_body) {
267       int n;
268       if(nbody < 0)
269         for(nbody = 0; body[nbody]; ++nbody)
270           ;
271       for(n = 0; n < nbody; ++n) {
272         if(body[n][0] == '.')
273           if(fputc('.', c->fpout) < 0)
274             goto write_error;
275         if(fputs(body[n], c->fpout) < 0)
276           goto write_error;
277         if(fputc('\n', c->fpout) < 0)
278           goto write_error;
279       }
280       if(fputs(".\n", c->fpout) < 0)
281         goto write_error;
282     }
283     if(fflush(c->fpout))
284       goto write_error;
285   }
286   return check_response(c, rp);
287 write_error:
288   byte_xasprintf((char **)&c->last, "write error: %s", strerror(errno));
289   disorder_error(errno, "error writing to %s", c->ident);
290   return -1;
291 }
292
293 /** @brief Issue a command and parse a simple response
294  * @param c Client
295  * @param rp Where to store result, or NULL (UTF-8)
296  * @param cmd Command
297  * @return 0 on success, non-0 on error
298  *
299  * The remaining arguments are command arguments, terminated by (char
300  * *)0.  They should be in UTF-8.
301  *
302  * 5xx responses count as errors.
303  *
304  * @p rp will NOT be filled in for xx9 responses (where it is just
305  * commentary for a command where it would normally be meaningful).
306  *
307  * NB that the response will NOT be converted to the local encoding
308  * nor will quotes be stripped.  See dequote().
309  */
310 static int disorder_simple(disorder_client *c,
311                            char **rp,
312                            const char *cmd, ...) {
313   va_list ap;
314   int ret;
315
316   va_start(ap, cmd);
317   ret = disorder_simple_v(c, rp, cmd, ap);
318   va_end(ap);
319   return ret;
320 }
321
322 /** @brief Issue a command and split the response
323  * @param c Client
324  * @param vecp Where to store results
325  * @param nvecp Where to store count of results
326  * @param expected Expected count (or -1 to not check)
327  * @param cmd Command
328  * @return 0 on success, non-0 on error
329  *
330  * The remaining arguments are command arguments, terminated by (char
331  * *)0.  They should be in UTF-8.
332  *
333  * 5xx responses count as errors.
334  *
335  * @p rp will NOT be filled in for xx9 responses (where it is just
336  * commentary for a command where it would normally be meaningful).
337  *
338  * NB that the response will NOT be converted to the local encoding
339  * nor will quotes be stripped.  See dequote().
340  */
341 static int disorder_simple_split(disorder_client *c,
342                                  char ***vecp,
343                                  int *nvecp,
344                                  int expected,
345                                  const char *cmd, ...) {
346   va_list ap;
347   int ret;
348   char *r;
349   char **vec;
350   int nvec;
351
352   va_start(ap, cmd);
353   ret = disorder_simple_v(c, &r, cmd, ap);
354   va_end(ap);
355   if(!ret) {
356     vec = split(r, &nvec, SPLIT_QUOTES, 0, 0);
357     xfree(r);
358     if(expected < 0 || nvec == expected) {
359       *vecp = vec;
360       *nvecp = nvec;
361     } else {
362       disorder_error(0, "malformed reply to %s", cmd);
363       c->last = "malformed reply";
364       ret = -1;
365       free_strings(nvec, vec);
366     }
367   }
368   if(ret) {
369     *vecp = NULL;
370     *nvecp = 0;
371   }
372   return ret;
373 }
374
375 /** @brief Dequote a result string
376  * @param rc 0 on success, non-0 on error
377  * @param rp Where result string is stored (UTF-8)
378  * @return @p rc
379  *
380  * This is used as a wrapper around disorder_simple() to dequote
381  * results in place.
382  */
383 static int dequote(int rc, char **rp) {
384   char **rr;
385
386   if(!rc) {
387     if((rr = split(*rp, 0, SPLIT_QUOTES, 0, 0)) && *rr) {
388       xfree(*rp);
389       *rp = *rr;
390       xfree(rr);
391       return 0;
392     }
393     disorder_error(0, "invalid reply: %s", *rp);
394   }
395   return rc;
396 }
397
398 /** @brief Generic connection routine
399  * @param conf Configuration to follow
400  * @param c Client
401  * @param username Username to log in with or NULL
402  * @param password Password to log in with or NULL
403  * @param cookie Cookie to log in with or NULL
404  * @return 0 on success, non-0 on error
405  *
406  * @p cookie is tried first if not NULL.  If it is NULL then @p
407  * username must not be.  If @p username is not NULL then nor may @p
408  * password be.
409  */
410 int disorder_connect_generic(struct config *conf,
411                              disorder_client *c,
412                              const char *username,
413                              const char *password,
414                              const char *cookie) {
415   int fd = -1, fd2 = -1, nrvec = 0, rc;
416   unsigned char *nonce = NULL;
417   size_t nl;
418   char *res = NULL;
419   char *r = NULL, **rvec = NULL;
420   const char *protocol, *algorithm, *challenge;
421   struct sockaddr *sa = NULL;
422   socklen_t salen;
423
424   if((salen = find_server(conf, &sa, &c->ident)) == (socklen_t)-1)
425     return -1;
426   c->fpin = c->fpout = 0;
427   if((fd = socket(sa->sa_family, SOCK_STREAM, 0)) < 0) {
428     byte_xasprintf((char **)&c->last, "socket: %s", strerror(errno));
429     disorder_error(errno, "error calling socket");
430     return -1;
431   }
432   c->family = sa->sa_family;
433   if(connect(fd, sa, salen) < 0) {
434     byte_xasprintf((char **)&c->last, "connect: %s", strerror(errno));
435     disorder_error(errno, "error calling connect");
436     goto error;
437   }
438   if((fd2 = dup(fd)) < 0) {
439     byte_xasprintf((char **)&c->last, "dup: %s", strerror(errno));
440     disorder_error(errno, "error calling dup");
441     goto error;
442   }
443   if(!(c->fpin = fdopen(fd, "rb"))) {
444     byte_xasprintf((char **)&c->last, "fdopen: %s", strerror(errno));
445     disorder_error(errno, "error calling fdopen");
446     goto error;
447   }
448   fd = -1;
449   if(!(c->fpout = fdopen(fd2, "wb"))) {
450     byte_xasprintf((char **)&c->last, "fdopen: %s", strerror(errno));
451     disorder_error(errno, "error calling fdopen");
452     goto error;
453   }
454   fd2 = -1;
455   if((rc = disorder_simple(c, &r, 0, (const char *)0)))
456     goto error_rc;
457   if(!(rvec = split(r, &nrvec, SPLIT_QUOTES, 0, 0)))
458     goto error;
459   if(nrvec != 3) {
460     c->last = "cannot parse server greeting";
461     disorder_error(0, "cannot parse server greeting %s", r);
462     goto error;
463   }
464   protocol = rvec[0];
465   if(strcmp(protocol, "2")) {
466     c->last = "unknown protocol version";
467     disorder_error(0, "unknown protocol version: %s", protocol);
468     goto error;
469   }
470   algorithm = rvec[1];
471   challenge = rvec[2];
472   if(!(nonce = unhex(challenge, &nl)))
473     goto error;
474   if(cookie) {
475     if(!dequote(disorder_simple(c, &c->user, "cookie", cookie, (char *)0),
476                 &c->user))
477       return 0;                         /* success */
478     if(!username) {
479       c->last = "cookie failed and no username";
480       disorder_error(0, "cookie did not work and no username available");
481       goto error;
482     }
483   }
484   if(!(res = authhash(nonce, nl, password, algorithm))) {
485     c->last = "error computing authorization hash";
486     goto error;
487   }
488   if((rc = disorder_simple(c, 0, "user", username, res, (char *)0)))
489     goto error_rc;
490   c->user = xstrdup(username);
491   xfree(res);
492   free_strings(nrvec, rvec);
493   xfree(nonce);
494   xfree(sa);
495   xfree(r);
496   return 0;
497 error:
498   rc = -1;
499 error_rc:
500   if(c->fpin) {
501     fclose(c->fpin);
502     c->fpin = 0;
503   }
504   if(c->fpout) {
505     fclose(c->fpout);
506     c->fpout = 0;
507   }
508   if(fd2 != -1) close(fd2);
509   if(fd != -1) close(fd);
510   return rc;
511 }
512
513 /** @brief Connect a client with a specified username and password
514  * @param c Client
515  * @param username Username to log in with
516  * @param password Password to log in with
517  * @return 0 on success, non-0 on error
518  */
519 int disorder_connect_user(disorder_client *c,
520                           const char *username,
521                           const char *password) {
522   return disorder_connect_generic(config,
523                                   c,
524                                   username,
525                                   password,
526                                   0);
527 }
528
529 /** @brief Connect a client
530  * @param c Client
531  * @return 0 on success, non-0 on error
532  *
533  * The connection will use the username and password found in @ref
534  * config, or directly from the database if no password is found and
535  * the database is readable (usually only for root).
536  */
537 int disorder_connect(disorder_client *c) {
538   const char *username, *password;
539
540   if(!(username = config->username)) {
541     c->last = "no username";
542     disorder_error(0, "no username configured");
543     return -1;
544   }
545   password = config->password;
546   /* If we're connecting as 'root' guess that we're the system root
547    * user (or the jukebox user), both of which can use the privileged
548    * socket.  They can also furtle with the db directly: that is why
549    * privileged socket does not represent a privilege escalation. */
550   if(!password
551      && !strcmp(username, "root"))
552     password = "anything will do for root";
553   if(!password) {
554     /* Oh well */
555     c->last = "no password";
556     disorder_error(0, "no password configured for user '%s'", username);
557     return -1;
558   }
559   return disorder_connect_generic(config,
560                                   c,
561                                   username,
562                                   password,
563                                   0);
564 }
565
566 /** @brief Connect a client
567  * @param c Client
568  * @param cookie Cookie to log in with, or NULL
569  * @return 0 on success, non-0 on error
570  *
571  * If @p cookie is NULL or does not work then we attempt to log in as
572  * guest instead (so when the cookie expires only an extra round trip
573  * is needed rather than a complete new login).
574  */
575 int disorder_connect_cookie(disorder_client *c,
576                             const char *cookie) {
577   return disorder_connect_generic(config,
578                                   c,
579                                   "guest",
580                                   "",
581                                   cookie);
582 }
583
584 /** @brief Close a client
585  * @param c Client
586  * @return 0 on succcess, non-0 on errior
587  *
588  * The client is still closed even on error.  It might well be
589  * appropriate to ignore the return value.
590  */
591 int disorder_close(disorder_client *c) {
592   int ret = 0;
593
594   if(c->fpin) {
595     if(fclose(c->fpin) < 0) {
596       byte_xasprintf((char **)&c->last, "fclose: %s", strerror(errno));
597       disorder_error(errno, "error calling fclose");
598       ret = -1;
599     }
600     c->fpin = 0;
601   }
602   if(c->fpout) {
603     if(fclose(c->fpout) < 0) {
604       byte_xasprintf((char **)&c->last, "fclose: %s", strerror(errno));
605       disorder_error(errno, "error calling fclose");
606       ret = -1;
607     }
608     c->fpout = 0;
609   }
610   xfree(c->ident);
611   c->ident = 0;
612   xfree(c->user);
613   c->user = 0;
614   return ret;
615 }
616
617 static void client_error(const char *msg,
618                          void attribute((unused)) *u) {
619   disorder_error(0, "error parsing reply: %s", msg);
620 }
621
622 /** @brief Get a single queue entry
623  * @param c Client
624  * @param cmd Command
625  * @param qp Where to store track information
626  * @return 0 on success, non-0 on error
627  */
628 static int onequeue(disorder_client *c, const char *cmd,
629                     struct queue_entry **qp) {
630   char *r;
631   struct queue_entry *q;
632   int rc;
633
634   if((rc = disorder_simple(c, &r, cmd, (char *)0)))
635     return rc;
636   if(r) {
637     q = xmalloc(sizeof *q);
638     if(queue_unmarshall(q, r, client_error, 0))
639       return -1;
640     *qp = q;
641   } else
642     *qp = 0;
643   return 0;
644 }
645
646 /** @brief Fetch the queue, recent list, etc */
647 static int readqueue(disorder_client *c,
648                      struct queue_entry **qp) {
649   struct queue_entry *qh, **qt = &qh, *q;
650   char *l;
651
652   while(inputline(c->ident, c->fpin, &l, '\n') >= 0) {
653     if(!strcmp(l, ".")) {
654       *qt = 0;
655       *qp = qh;
656       xfree(l);
657       return 0;
658     }
659     q = xmalloc(sizeof *q);
660     if(!queue_unmarshall(q, l, client_error, 0)) {
661       *qt = q;
662       qt = &q->next;
663     }
664     xfree(l);
665   }
666   if(ferror(c->fpin)) {
667     byte_xasprintf((char **)&c->last, "input error: %s", strerror(errno));
668     disorder_error(errno, "error reading %s", c->ident);
669   } else {
670     c->last = "input error: unexpected EOF";
671     disorder_error(0, "error reading %s: unexpected EOF", c->ident);
672   }
673   return -1;
674 }
675
676 /** @brief Read a dot-stuffed list
677  * @param c Client
678  * @param vecp Where to store list (UTF-8)
679  * @param nvecp Where to store number of items, or NULL
680  * @return 0 on success, non-0 on error
681  *
682  * The list will have a final NULL not counted in @p nvecp.
683  */
684 static int readlist(disorder_client *c, char ***vecp, int *nvecp) {
685   char *l;
686   struct vector v;
687
688   vector_init(&v);
689   while(inputline(c->ident, c->fpin, &l, '\n') >= 0) {
690     if(!strcmp(l, ".")) {
691       vector_terminate(&v);
692       if(nvecp)
693         *nvecp = v.nvec;
694       *vecp = v.vec;
695       xfree(l);
696       return 0;
697     }
698     vector_append(&v, xstrdup(l + (*l == '.')));
699     xfree(l);
700   }
701   if(ferror(c->fpin)) {
702     byte_xasprintf((char **)&c->last, "input error: %s", strerror(errno));
703     disorder_error(errno, "error reading %s", c->ident);
704   } else {
705     c->last = "input error: unexpxected EOF";
706     disorder_error(0, "error reading %s: unexpected EOF", c->ident);
707   }
708   return -1;
709 }
710
711 /** @brief Return the user we logged in with
712  * @param c Client
713  * @return User name (owned by @p c, don't modify)
714  */
715 char *disorder_user(disorder_client *c) {
716   return c->user;
717 }
718
719 static void pairlist_error_handler(const char *msg,
720                                void attribute((unused)) *u) {
721   disorder_error(0, "error handling key-value pair reply: %s", msg);
722 }
723
724 /** @brief Get a list of key-value pairs
725  * @param c Client
726  * @param kp Where to store linked list of preferences
727  * @param cmd Command
728  * @param ... Arguments
729  * @return 0 on success, non-0 on error
730  */
731 static int pairlist(disorder_client *c, struct kvp **kp, const char *cmd, ...) {
732   char **vec, **pvec;
733   int nvec, npvec, n, rc;
734   struct kvp *k;
735   va_list ap;
736
737   va_start(ap, cmd);
738   rc = disorder_simple_v(c, 0, cmd, ap);
739   va_end(ap);
740   if(rc)
741     return rc;
742   if((rc = readlist(c, &vec, &nvec)))
743      return rc;
744   for(n = 0; n < nvec; ++n) {
745     if(!(pvec = split(vec[n], &npvec, SPLIT_QUOTES, pairlist_error_handler, 0)))
746       return -1;
747     if(npvec != 2) {
748       pairlist_error_handler("malformed response", 0);
749       return -1;
750     }
751     *kp = k = xmalloc(sizeof *k);
752     k->name = pvec[0];
753     k->value = pvec[1];
754     kp = &k->next;
755     xfree(pvec);
756   }
757   free_strings(nvec, vec);
758   *kp = 0;
759   return 0;
760 }
761
762 /** @brief Parse a boolean response
763  * @param cmd Command for use in error messsage
764  * @param value Result from server
765  * @param flagp Where to store result
766  * @return 0 on success, non-0 on error
767  */
768 static int boolean(const char *cmd, const char *value,
769                    int *flagp) {
770   if(!strcmp(value, "yes")) *flagp = 1;
771   else if(!strcmp(value, "no")) *flagp = 0;
772   else {
773     disorder_error(0, "malformed response to '%s'", cmd);
774     return -1;
775   }
776   return 0;
777 }
778
779 /** @brief Log to a sink
780  * @param c Client
781  * @param s Sink to write log lines to
782  * @return 0 on success, non-0 on error
783  */
784 int disorder_log(disorder_client *c, struct sink *s) {
785   char *l;
786   int rc;
787     
788   if((rc = disorder_simple(c, 0, "log", (char *)0)))
789     return rc;
790   while(inputline(c->ident, c->fpin, &l, '\n') >= 0 && strcmp(l, "."))
791     if(sink_printf(s, "%s\n", l) < 0) return -1;
792   if(ferror(c->fpin) || feof(c->fpin)) {
793     byte_xasprintf((char **)&c->last, "input error: %s",
794                    ferror(c->fpin) ? strerror(errno) : "unexpxected EOF");
795     return -1;
796   }
797   return 0;
798 }
799
800 #include "client-stubs.c"
801
802 /*
803 Local Variables:
804 c-basic-offset:2
805 comment-column:40
806 End:
807 */