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