2 * Amanda, The Advanced Maryland Automatic Network Disk Archiver
3 * Copyright (c) 1991-1999 University of Maryland at College Park
6 * Permission to use, copy, modify, distribute, and sell this software and its
7 * documentation for any purpose is hereby granted without fee, provided that
8 * the above copyright notice appear in all copies and that both that
9 * copyright notice and this permission notice appear in supporting
10 * documentation, and that the name of U.M. not be used in advertising or
11 * publicity pertaining to distribution of the software without specific,
12 * written prior permission. U.M. makes no representations about the
13 * suitability of this software for any purpose. It is provided "as is"
14 * without express or implied warranty.
16 * U.M. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL U.M.
18 * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
20 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
21 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
23 * Authors: the Amanda Development Team. Its members are listed in a
24 * file named AUTHORS, in the root directory of this distribution.
28 * $Id: amandad.c,v 1.18 2006/08/21 20:17:09 martinea Exp $
30 * handle client-host side of Amanda network communications, including
31 * security checks, execution of the proper service, and acking the
39 #include "amfeatures.h"
47 #define REP_TIMEOUT (6*60*60) /* secs for service to reply */
48 #define ACK_TIMEOUT 10 /* XXX should be configurable */
49 #define STDERR_PIPE (DATA_FD_COUNT + 1)
51 #define amandad_debug(i, ...) do { \
52 if ((i) <= debug_amandad) { \
53 dbprintf(__VA_ARGS__); \
58 * These are the actions for entering the state machine
60 typedef enum { A_START, A_RECVPKT, A_RECVREP, A_PENDING, A_FINISH, A_CONTINUE,
61 A_SENDNAK, A_TIMEOUT } action_t;
64 * This is a state in the state machine. It is a function pointer to
65 * the function that actually implements the state.
67 struct active_service;
68 typedef action_t (*state_t)(struct active_service *, action_t, pkt_t *);
70 /* string that we scan for in sendbackup's MESG stream */
71 static const char info_end_str[] = "sendbackup: info end\n";
72 #define INFO_END_LEN (sizeof(info_end_str)-1)
75 * Here are the services that we allow.
76 * Must be in the same order as services[].
88 static struct services {
93 { "noop", 1, SERVICE_NOOP },
94 { "sendsize", 1, SERVICE_SENDSIZE },
95 { "sendbackup", 1, SERVICE_SENDBACKUP },
96 { "selfcheck", 1, SERVICE_SELFCHECK },
97 { "amindexd", 0, SERVICE_AMINDEXD },
98 { "amidxtaped", 0, SERVICE_AMIDXTAPED },
99 { "amdumpd", 0, SERVICE_AMDUMPD }
101 #define NSERVICES (int)(sizeof(services) / sizeof(services[0]))
104 * This structure describes an active running service.
106 * An active service is something running that we have received
107 * a request for. This structure holds info on that service, including
108 * file descriptors for data, etc, as well as the security handle
109 * for communications with the amanda server.
111 struct active_service {
112 service_t service; /* service name */
113 char *cmd; /* name of command we ran */
114 char *arguments; /* arguments we sent it */
115 security_handle_t *security_handle; /* remote server */
116 state_t state; /* how far this has progressed */
117 pid_t pid; /* pid of subprocess */
118 int send_partial_reply; /* send PREP packet */
119 int reqfd; /* pipe to write requests */
120 int repfd; /* pipe to read replies */
121 int errfd; /* pipe to read stderr */
122 event_handle_t *ev_repfd; /* read event handle for repfd */
123 event_handle_t *ev_reptimeout; /* timeout for rep data */
124 event_handle_t *ev_errfd; /* read event handle for errfd */
125 pkt_t rep_pkt; /* rep packet we're sending out */
126 char *errbuf; /* buffer to read the err into */
127 char *repbuf; /* buffer to read the rep into */
128 size_t bufsize; /* length of repbuf */
129 size_t repbufsize; /* length of repbuf */
130 int repretry; /* times we'll retry sending the rep */
131 int seen_info_end; /* have we seen "sendbackup info end\n"? */
132 char info_end_buf[INFO_END_LEN]; /* last few bytes read, used for scanning for info end */
135 * General user streams to the process, and their equivalent
138 struct datafd_handle {
139 int fd_read; /* pipe to child process */
140 int fd_write; /* pipe to child process */
141 event_handle_t *ev_read; /* it's read event handle */
142 event_handle_t *ev_write; /* it's write event handle */
143 security_stream_t *netfd; /* stream to amanda server */
144 struct active_service *as; /* pointer back to our enclosure */
145 } data[DATA_FD_COUNT];
146 char databuf[NETWORK_BLOCK_BYTES]; /* buffer to relay netfd data in */
150 * Queue of outstanding requests that we are running.
152 GSList *serviceq = NULL;
154 static int wait_30s = 1;
155 static int exit_on_qlength = 1;
156 static char *auth = NULL;
157 static kencrypt_type amandad_kencrypt = KENCRYPT_NONE;
159 int main(int argc, char **argv);
161 static int allocstream(struct active_service *, int);
162 static void exit_check(void *);
163 static void protocol_accept(security_handle_t *, pkt_t *);
164 static void state_machine(struct active_service *, action_t, pkt_t *);
166 static action_t s_sendack(struct active_service *, action_t, pkt_t *);
167 static action_t s_repwait(struct active_service *, action_t, pkt_t *);
168 static action_t s_processrep(struct active_service *, action_t, pkt_t *);
169 static action_t s_sendrep(struct active_service *, action_t, pkt_t *);
170 static action_t s_ackwait(struct active_service *, action_t, pkt_t *);
172 static void repfd_recv(void *);
173 static void process_errfd(void *cookie);
174 static void errfd_recv(void *);
175 static void timeout_repfd(void *);
176 static void protocol_recv(void *, pkt_t *, security_status_t);
177 static void process_readnetfd(void *);
178 static void process_writenetfd(void *, void *, ssize_t);
179 static struct active_service *service_new(security_handle_t *,
180 const char *, service_t, const char *);
181 static void service_delete(struct active_service *);
182 static int writebuf(struct active_service *, const void *, size_t);
183 static ssize_t do_sendpkt(security_handle_t *handle, pkt_t *pkt);
184 static char *amandad_get_security_conf (char *, void *);
186 static const char *state2str(state_t);
187 static const char *action2str(action_t);
197 const security_driver_t *secdrv;
199 char *pgm = "amandad"; /* in case argv[0] is not set */
200 #if defined(USE_REUSEADDR)
206 * Configure program for internationalization:
207 * 1) Only set the message locale for now.
208 * 2) Set textdomain for all amanda related programs to "amanda"
209 * We don't want to be forced to support dozens of message catalogs.
211 setlocale(LC_MESSAGES, "C");
212 textdomain("amanda");
218 * Nexenta needs the SUN_PERSONALITY env variable to be unset, otherwise
219 * the Sun version of tar in /usr/sun/sbin/tar is called instead.
221 * On other operating systems this will have no effect.
225 unsetenv("SUN_PERSONALITY");
229 * When called via inetd, it is not uncommon to forget to put the
230 * argv[0] value on the config line. On some systems (e.g. Solaris)
231 * this causes argv and/or argv[0] to be NULL, so we have to be
232 * careful getting our name.
234 if ((argv == NULL) || (argv[0] == NULL)) {
235 pgm = "amandad"; /* in case argv[0] is not set */
237 pgm = basename(argv[0]); /* Strip of leading path get debug name */
240 dbopen(DBG_SUBDIR_AMANDAD);
243 error(_("argv == NULL\n"));
247 /* Don't die when child closes pipe */
248 signal(SIGPIPE, SIG_IGN);
250 /* Parse the configuration; we'll handle errors later */
251 config_init(CONFIG_INIT_CLIENT, NULL);
253 if (geteuid() == 0) {
254 check_running_as(RUNNING_AS_ROOT);
255 initgroups(CLIENT_LOGIN, get_client_gid());
256 setgid(get_client_gid());
257 setegid(get_client_gid());
258 seteuid(get_client_uid());
260 check_running_as(RUNNING_AS_CLIENT_LOGIN);
263 add_amanda_log_handler(amanda_log_stderr);
264 add_amanda_log_handler(amanda_log_syslog);
267 * ad-hoc argument parsing
269 * We accept -auth=[authentication type]
273 * We also add a list of services that amandad can launch
276 in = 0; out = 1; /* default to stdin/stdout */
278 for (i = 1; i < argc; i++) {
280 * Get a driver for a security type specified after -auth=
282 if (strncmp(argv[i], "-auth=", strlen("-auth=")) == 0) {
283 argv[i] += strlen("-auth=");
284 secdrv = security_getdriver(argv[i]);
286 if (secdrv == NULL) {
287 error(_("no driver for security type '%s'\n"), argv[i]);
290 if (strcmp(auth, "local") == 0 ||
291 strcmp(auth, "rsh") == 0 ||
292 strcmp(auth, "ssh") == 0) {
294 for (i=0; i < NSERVICES; i++) {
295 services[i].active = 1;
302 * If -no-exit is specified, always run even after requests have
305 else if (strcmp(argv[i], "-no-exit") == 0) {
311 * Allow us to directly bind to a udp port for debugging.
312 * This may only apply to some security types.
314 else if (strncmp(argv[i], "-udp=", strlen("-udp=")) == 0) {
316 struct sockaddr_in6 sin;
318 struct sockaddr_in sin;
321 argv[i] += strlen("-udp=");
323 in = out = socket(AF_INET6, SOCK_DGRAM, 0);
325 in = out = socket(AF_INET, SOCK_DGRAM, 0);
328 error(_("can't create dgram socket: %s\n"), strerror(errno));
332 r = setsockopt(in, SOL_SOCKET, SO_REUSEADDR,
333 (void *)&on, (socklen_t_equiv)sizeof(on));
335 dbprintf(_("amandad: setsockopt(SO_REUSEADDR) failed: %s\n"),
341 sin.sin6_family = (sa_family_t)AF_INET6;
342 sin.sin6_addr = in6addr_any;
343 sin.sin6_port = (in_port_t)htons((in_port_t)atoi(argv[i]));
345 sin.sin_family = (sa_family_t)AF_INET;
346 sin.sin_addr.s_addr = INADDR_ANY;
347 sin.sin_port = (in_port_t)htons((in_port_t)atoi(argv[i]));
349 if (bind(in, (struct sockaddr *)&sin, (socklen_t_equiv)sizeof(sin)) < 0) {
350 error(_("can't bind to port %d: %s\n"), atoi(argv[i]),
356 * Ditto for tcp ports.
358 else if (strncmp(argv[i], "-tcp=", strlen("-tcp=")) == 0) {
360 struct sockaddr_in6 sin;
362 struct sockaddr_in sin;
367 argv[i] += strlen("-tcp=");
369 sock = socket(AF_INET6, SOCK_STREAM, 0);
371 sock = socket(AF_INET, SOCK_STREAM, 0);
374 error(_("can't create tcp socket: %s\n"), strerror(errno));
378 r = setsockopt(sock, SOL_SOCKET, SO_REUSEADDR,
379 (void *)&on, (socklen_t_equiv)sizeof(on));
381 dbprintf(_("amandad: setsockopt(SO_REUSEADDR) failed: %s\n"),
386 sin.sin6_family = (sa_family_t)AF_INET6;
387 sin.sin6_addr = in6addr_any;
388 sin.sin6_port = (in_port_t)htons((in_port_t)atoi(argv[i]));
390 sin.sin_family = (sa_family_t)AF_INET;
391 sin.sin_addr.s_addr = INADDR_ANY;
392 sin.sin_port = (in_port_t)htons((in_port_t)atoi(argv[i]));
394 if (bind(sock, (struct sockaddr *)&sin, (socklen_t_equiv)sizeof(sin)) < 0) {
395 error(_("can't bind to port %d: %s\n"), atoi(argv[i]),
400 n = (socklen_t_equiv)sizeof(sin);
401 in = out = accept(sock, (struct sockaddr *)&sin, &n);
404 * It must be a service name
407 /* clear all services */
409 for (j = 0; j < (int)NSERVICES; j++)
410 services[j].active = 0;
414 if(strcmp(argv[i],"amdump") == 0) {
415 services[0].active = 1;
416 services[1].active = 1;
417 services[2].active = 1;
418 services[3].active = 1;
421 for (j = 0; j < (int)NSERVICES; j++)
422 if (strcmp(services[j].name, argv[i]) == 0)
424 if (j == (int)NSERVICES) {
425 dbprintf(_("%s: invalid service\n"), argv[i]);
428 services[j].active = 1;
434 * If no security type specified, use BSDTCP
436 if (secdrv == NULL) {
437 secdrv = security_getdriver("BSDTCP");
439 if (secdrv == NULL) {
440 error(_("no driver for default security type 'BSDTCP'\n"));
445 if(strcasecmp(auth, "rsh") == 0 ||
446 strcasecmp(auth, "ssh") == 0 ||
447 strcasecmp(auth, "local") == 0 ||
448 strcasecmp(auth, "bsdtcp") == 0) {
453 #ifndef SINGLE_USERID
454 if (geteuid() == 0) {
455 if (strcasecmp(auth, "krb5") != 0) {
457 /* lookup our local user name */
458 if ((pwd = getpwnam(CLIENT_LOGIN)) == NULL) {
459 error(_("getpwnam(%s) failed."), CLIENT_LOGIN);
462 if (pwd->pw_uid != 0) {
463 error(_("'amandad' must be run as user '%s' when using '%s' authentication"),
468 if (strcasecmp(auth, "krb5") == 0) {
469 error(_("'amandad' must be run as user 'root' when using 'krb5' authentication"));
478 dbprintf(_("version %s\n"), VERSION);
479 for (i = 0; version_info[i] != NULL; i++) {
480 dbprintf(" %s", version_info[i]);
483 if (! (argc >= 1 && argv != NULL && argv[0] != NULL)) {
484 dbprintf(_("WARNING: argv[0] not defined: check inetd.conf\n"));
487 /* krb5 require the euid to be 0 */
488 if (strcasecmp(auth, "krb5") == 0) {
493 * Schedule to call protocol_accept() when new security handles
494 * are created on stdin.
496 security_accept(secdrv, amandad_get_security_conf, in, out, protocol_accept, NULL);
499 * Schedule an event that will try to exit every 30 seconds if there
500 * are no requests outstanding.
503 (void)event_register((event_id_t)30, EV_TIME, exit_check, &no_exit);
506 * Call event_loop() with an arg of 0, telling it to block until all
507 * events are completed.
518 * This runs periodically and checks to see if we have any active services
519 * still running. If we don't, then we quit.
527 assert(cookie != NULL);
528 no_exit = *(int *)cookie;
531 * If things are still running, then don't exit.
533 if (g_slist_length(serviceq) > 0)
537 * If the caller asked us to never exit, then we're done
547 * Handles new incoming protocol handles. This is a callback for
548 * security_accept(), which gets called when new handles are detected.
552 security_handle_t * handle,
557 struct active_service *as;
558 char *pktbody, *tok, *service, *arguments;
559 char *service_path = NULL;
560 GSList *errlist = NULL;
566 * If handle is NULL, then the connection is closed.
573 * If we have errors (not warnings) from the config file, let the remote system
574 * know immediately. Unfortunately, we only get one ERROR line, so if there
575 * are multiple errors, we just show the first.
577 if (config_errors(&errlist) >= CFGERR_ERRORS) {
578 GSList *iter = errlist;
580 gboolean multiple_errors = FALSE;
583 errmsg = (char *)iter->data;
585 multiple_errors = TRUE;
587 errmsg = "(no error message)";
590 pkt_init(&pkt_out, P_NAK, "ERROR %s%s", errmsg,
591 multiple_errors? _(" (additional errors not displayed)"):"");
592 do_sendpkt(handle, &pkt_out);
593 amfree(pkt_out.body);
594 security_close(handle);
598 g_debug("authenticated peer name is '%s'", security_get_authenticated_peer_name(handle));
601 * If pkt is NULL, then there was a problem with the new connection.
604 dbprintf(_("accept error: %s\n"), security_geterror(handle));
605 pkt_init(&pkt_out, P_NAK, "ERROR %s\n", security_geterror(handle));
606 do_sendpkt(handle, &pkt_out);
607 amfree(pkt_out.body);
608 security_close(handle);
612 dbprintf(_("accept recv %s pkt:\n<<<<<\n%s>>>>>\n"),
613 pkt_type2str(pkt->type), pkt->body);
616 * If this is not a REQ packet, just forget about it.
618 if (pkt->type != P_REQ) {
619 dbprintf(_("received unexpected %s packet:\n<<<<<\n%s>>>>>\n\n"),
620 pkt_type2str(pkt->type), pkt->body);
621 security_close(handle);
625 pktbody = service = arguments = NULL;
629 * Parse out the service and arguments
632 pktbody = stralloc(pkt->body);
634 tok = strtok(pktbody, " ");
637 if (strcmp(tok, "SERVICE") != 0)
640 tok = strtok(NULL, " \n");
643 service = stralloc(tok);
645 /* we call everything else 'arguments' */
646 tok = strtok(NULL, "");
649 arguments = stralloc(tok);
651 /* see if it's one we allow */
652 for (i = 0; i < (int)NSERVICES; i++)
653 if (services[i].active == 1 && strcmp(services[i].name, service) == 0)
655 if (i == (int)NSERVICES) {
656 dbprintf(_("%s: invalid service\n"), service);
657 pkt_init(&pkt_out, P_NAK, _("ERROR %s: invalid service, add '%s' as argument to amandad\n"), service, service);
661 service_path = vstralloc(amlibexecdir, "/", service, NULL);
662 if (access(service_path, X_OK) < 0) {
663 dbprintf(_("can't execute %s: %s\n"), service_path, strerror(errno));
664 pkt_init(&pkt_out, P_NAK,
665 _("ERROR execute access to \"%s\" denied\n"),
670 /* see if its already running */
671 for (iter = serviceq; iter != NULL; iter = g_slist_next(iter)) {
672 as = (struct active_service *)iter->data;
673 if (strcmp(as->cmd, service_path) == 0 &&
674 strcmp(as->arguments, arguments) == 0) {
675 dbprintf(_("%s %s: already running, acking req\n"),
677 pkt_init_empty(&pkt_out, P_ACK);
678 goto send_pkt_out_no_delete;
683 * create a new service instance, and send the arguments down
686 dbprintf(_("creating new service: %s\n%s\n"), service, arguments);
687 as = service_new(handle, service_path, services[i].service, arguments);
688 if (writebuf(as, arguments, strlen(arguments)) < 0) {
689 const char *errmsg = strerror(errno);
690 dbprintf(_("error sending arguments to %s: %s\n"), service, errmsg);
691 pkt_init(&pkt_out, P_NAK, _("ERROR error writing arguments to %s: %s\n"),
699 amfree(service_path);
703 * Move to the sendack state, and start up the state
706 as->state = s_sendack;
707 state_machine(as, A_START, NULL);
711 pkt_init(&pkt_out, P_NAK, _("ERROR invalid REQ\n"));
712 dbprintf(_("received invalid %s packet:\n<<<<<\n%s>>>>>\n\n"),
713 pkt_type2str(pkt->type), pkt->body);
718 send_pkt_out_no_delete:
720 amfree(service_path);
723 do_sendpkt(handle, &pkt_out);
724 security_close(handle);
725 amfree(pkt_out.body);
729 * Handles incoming protocol packets. Routes responses to the proper
734 struct active_service * as,
742 amandad_debug(1, _("state_machine: %p entering\n"), as);
744 curstate = as->state;
745 amandad_debug(1, _("state_machine: %p curstate=%s action=%s\n"), as,
746 state2str(curstate), action2str(action));
747 retaction = (*curstate)(as, action, pkt);
748 amandad_debug(1, _("state_machine: %p curstate=%s returned %s (nextstate=%s)\n"),
749 as, state2str(curstate), action2str(retaction),
750 state2str(as->state));
754 * State has queued up and is now blocking on input.
757 amandad_debug(1, _("state_machine: %p leaving (A_PENDING)\n"), as);
761 * service has switched states. Loop.
767 * state has determined that the packet it received was bogus.
768 * Send a nak, and return.
771 dbprintf(_("received unexpected %s packet\n"),
772 pkt_type2str(pkt->type));
773 dbprintf(_("<<<<<\n%s----\n\n"), pkt->body);
774 pkt_init(&nak, P_NAK, _("ERROR unexpected packet type %s\n"),
775 pkt_type2str(pkt->type));
776 do_sendpkt(as->security_handle, &nak);
778 security_recvpkt(as->security_handle, protocol_recv, as, -1);
779 amandad_debug(1, _("state_machine: %p leaving (A_SENDNAK)\n"), as);
783 * Service is done. Remove it and finish.
786 amandad_debug(1, _("state_machine: %p leaving (A_FINISH)\n"), as);
799 * This state just sends an ack. After that, we move to the repwait
800 * state to wait for REP data to arrive from the subprocess.
804 struct active_service * as,
810 (void)action; /* Quiet unused parameter warning */
811 (void)pkt; /* Quiet unused parameter warning */
813 pkt_init_empty(&ack, P_ACK);
814 if (do_sendpkt(as->security_handle, &ack) < 0) {
815 dbprintf(_("error sending ACK: %s\n"),
816 security_geterror(as->security_handle));
823 * move to the repwait state
824 * Setup a listener for data on the reply fd, but also
825 * listen for packets over the wire, as the server may
826 * poll us if we take a long time.
827 * Setup a timeout that will fire if it takes too long to
830 as->state = s_repwait;
831 as->ev_repfd = event_register((event_id_t)as->repfd, EV_READFD, repfd_recv, as);
832 as->ev_reptimeout = event_register(REP_TIMEOUT, EV_TIME,
835 as->ev_errfd = event_register((event_id_t)as->errfd, EV_READFD, errfd_recv, as);
836 security_recvpkt(as->security_handle, protocol_recv, as, -1);
841 * This is the repwait state. We have responded to the initial REQ with
842 * an ACK, and we are now waiting for the process we spawned to pass us
843 * data to send in a REP.
847 struct active_service * as,
860 * We normally shouldn't receive any packets while waiting
861 * for our REP data, but in some cases we do.
863 if (action == A_RECVPKT) {
866 * Another req for something that's running. Just send an ACK
867 * and go back and wait for more data.
869 if (pkt->type == P_REQ) {
870 dbprintf(_("received dup P_REQ packet, ACKing it\n"));
871 amfree(as->rep_pkt.body);
872 pkt_init_empty(&as->rep_pkt, P_ACK);
873 do_sendpkt(as->security_handle, &as->rep_pkt);
874 security_recvpkt(as->security_handle, protocol_recv, as, -1);
877 /* something unexpected. Nak it */
881 if (action == A_TIMEOUT) {
882 amfree(as->rep_pkt.body);
883 pkt_init(&as->rep_pkt, P_NAK, _("ERROR timeout on reply pipe\n"));
884 dbprintf(_("%s timed out waiting for REP data\n"), as->cmd);
885 do_sendpkt(as->security_handle, &as->rep_pkt);
889 assert(action == A_RECVREP);
890 if(as->bufsize == 0) {
891 as->bufsize = NETWORK_BLOCK_BYTES;
892 as->repbuf = alloc(as->bufsize);
896 n = read(as->repfd, as->repbuf + as->repbufsize,
897 as->bufsize - as->repbufsize - 1);
898 } while ((n < 0) && ((errno == EINTR) || (errno == EAGAIN)));
900 const char *errstr = strerror(errno);
901 dbprintf(_("read error on reply pipe: %s\n"), errstr);
902 amfree(as->rep_pkt.body);
903 pkt_init(&as->rep_pkt, P_NAK, _("ERROR read error on reply pipe: %s\n"),
905 do_sendpkt(as->security_handle, &as->rep_pkt);
909 /* If end of service, wait for process status */
911 pid = waitpid(as->pid, &retstat, WNOHANG);
912 if (as->service == SERVICE_NOOP ||
913 as->service == SERVICE_SENDSIZE ||
914 as->service == SERVICE_SELFCHECK) {
916 while (t<5 && pid == 0) {
919 pid = waitpid(as->pid, &retstat, WNOHANG);
926 pid = waitpid(as->pid, &retstat, WNOHANG);
930 if (! WIFEXITED(retstat)) {
932 code = WTERMSIG(retstat);
933 } else if (WEXITSTATUS(retstat) != 0) {
935 code = WEXITSTATUS(retstat);
938 dbprintf(_("service %s failed: pid %u exited with %s %d\n"),
939 (as->cmd)?as->cmd:_("??UNKONWN??"),
943 _("ERROR service %s failed: pid %u exited with %s %d\n"),
944 (as->cmd)?as->cmd:_("??UNKONWN??"), (unsigned)as->pid,
946 if (as->repbufsize + strlen(msg) >= (as->bufsize - 1)) {
948 repbuf_temp = alloc(as->bufsize);
949 memcpy(repbuf_temp, as->repbuf, as->repbufsize + 1);
951 as->repbuf = repbuf_temp;
953 strcpy(as->repbuf + as->repbufsize, msg);
954 as->repbufsize += strlen(msg);
961 * If we got some data, go back and wait for more, or EOF. Nul terminate
964 as->repbuf[n + as->repbufsize] = '\0';
967 if(as->repbufsize >= (as->bufsize - 1)) {
969 repbuf_temp = alloc(as->bufsize);
970 memcpy(repbuf_temp, as->repbuf, as->repbufsize + 1);
972 as->repbuf = repbuf_temp;
974 else if(as->send_partial_reply) {
975 amfree(as->rep_pkt.body);
976 pkt_init(&as->rep_pkt, P_PREP, "%s", as->repbuf);
977 do_sendpkt(as->security_handle, &as->rep_pkt);
978 amfree(as->rep_pkt.body);
979 pkt_init_empty(&as->rep_pkt, P_REP);
986 * If we got 0, then we hit EOF. Process the data and release
991 assert(as->ev_repfd != NULL);
992 event_release(as->ev_repfd);
995 assert(as->ev_reptimeout != NULL);
996 event_release(as->ev_reptimeout);
997 as->ev_reptimeout = NULL;
999 as->state = s_processrep;
1001 return (A_CONTINUE);
1005 * After we have read in all of the rep data, we process it and send
1006 * it out as a REP packet.
1010 struct active_service * as,
1016 (void)action; /* Quiet unused parameter warning */
1017 (void)pkt; /* Quiet unused parameter warning */
1020 * Copy the rep lines into the outgoing packet.
1022 * If this line is a CONNECT, translate it
1023 * Format is "CONNECT <tag> <handle> <tag> <handle> etc...
1026 * CONNECT DATA 4 MESG 5 INDEX 6
1028 * The tags are arbitrary. The handles are in the DATA_FD pool.
1029 * We need to map these to security streams and pass them back
1030 * to the amanda server. If the handle is -1, then we don't map.
1032 if (strncmp_const(as->repbuf,"KENCRYPT\n") == 0) {
1033 amandad_kencrypt = KENCRYPT_WILL_DO;
1034 repbuf = stralloc(as->repbuf + 9);
1036 repbuf = stralloc(as->repbuf);
1038 amfree(as->rep_pkt.body);
1039 pkt_init_empty(&as->rep_pkt, P_REP);
1040 tok = strtok(repbuf, " ");
1043 if (strcmp(tok, "CONNECT") == 0) {
1044 char *line, *nextbuf;
1046 /* Save the entire line */
1047 line = strtok(NULL, "\n");
1048 /* Save the buf following the line */
1049 nextbuf = strtok(NULL, "");
1051 if (line == NULL || nextbuf == NULL)
1054 pkt_cat(&as->rep_pkt, "CONNECT");
1056 /* loop over the id/handle pairs */
1059 tok = strtok(line, " ");
1060 line = NULL; /* keep working from line */
1063 pkt_cat(&as->rep_pkt, " %s", tok);
1066 tok = strtok(NULL, " \n");
1069 /* convert the handle into something the server can process */
1070 pkt_cat(&as->rep_pkt, " %d", allocstream(as, atoi(tok)));
1072 pkt_cat(&as->rep_pkt, "\n%s", nextbuf);
1075 pkt_cat(&as->rep_pkt, "%s", as->repbuf);
1079 * We've setup our REP packet in as->rep_pkt. Now move to the transmission
1082 as->state = s_sendrep;
1083 as->repretry = getconf_int(CNF_REP_TRIES);
1085 return (A_CONTINUE);
1089 * This is the state where we send the REP we just collected from our child.
1093 struct active_service * as,
1097 (void)action; /* Quiet unused parameter warning */
1098 (void)pkt; /* Quiet unused parameter warning */
1101 * Transmit it and move to the ack state.
1103 do_sendpkt(as->security_handle, &as->rep_pkt);
1104 security_recvpkt(as->security_handle, protocol_recv, as, ACK_TIMEOUT);
1105 as->state = s_ackwait;
1110 * This is the state in which we wait for the server to ACK the REP
1115 struct active_service * as,
1119 struct datafd_handle *dh;
1123 * If we got a timeout, try again, but eventually give up.
1125 if (action == A_TIMEOUT) {
1126 if (--as->repretry > 0) {
1127 as->state = s_sendrep;
1128 return (A_CONTINUE);
1130 dbprintf(_("timeout waiting for ACK for our REP\n"));
1133 amandad_debug(1, _("received ACK, now opening streams\n"));
1135 assert(action == A_RECVPKT);
1137 if (pkt->type == P_REQ) {
1138 dbprintf(_("received dup P_REQ packet, resending REP\n"));
1139 as->state = s_sendrep;
1140 return (A_CONTINUE);
1143 if (pkt->type != P_ACK)
1146 if (amandad_kencrypt == KENCRYPT_WILL_DO) {
1147 amandad_kencrypt = KENCRYPT_YES;
1151 * Got the ack, now open the pipes
1153 for (dh = &as->data[0]; dh < &as->data[DATA_FD_COUNT]; dh++) {
1154 if (dh->netfd == NULL)
1156 dbprintf("opening security stream for fd %d\n", (int)(dh - as->data) + DATA_FD_OFFSET);
1157 if (security_stream_accept(dh->netfd) < 0) {
1158 dbprintf(_("stream %td accept failed: %s\n"),
1159 dh - &as->data[0], security_geterror(as->security_handle));
1160 security_stream_close(dh->netfd);
1165 /* setup an event for reads from it. As a special case, don't start
1166 * listening on as->data[0] until we read some data on another fd, if
1167 * the service is sendbackup. This ensures that we send a MESG or
1168 * INDEX token before any DATA tokens, as dumper assumes. This is a
1169 * hack, if that wasn't already obvious! */
1170 if (dh != &as->data[0] || as->service != SERVICE_SENDBACKUP) {
1171 dh->ev_read = event_register((event_id_t)dh->fd_read, EV_READFD,
1172 process_readnetfd, dh);
1174 amandad_debug(1, "Skipping registration of sendbackup's data FD\n");
1177 security_stream_read(dh->netfd, process_writenetfd, dh);
1182 * Pipes are open, so auth them. Count them at the same time.
1184 for (npipes = 0, dh = &as->data[0]; dh < &as->data[DATA_FD_COUNT]; dh++) {
1185 if (dh->netfd == NULL)
1187 if (security_stream_auth(dh->netfd) < 0) {
1188 security_stream_close(dh->netfd);
1190 event_release(dh->ev_read);
1191 event_release(dh->ev_write);
1193 dh->ev_write = NULL;
1200 * If no pipes are open, then we're done. Otherwise, just start running.
1201 * The event handlers on all of the pipes will take it from here.
1203 amandad_debug(1, _("at end of s_ackwait, npipes is %d\n"), npipes);
1207 security_close(as->security_handle);
1208 as->security_handle = NULL;
1214 * Called when a repfd has received data
1220 struct active_service *as = cookie;
1223 assert(as->ev_repfd != NULL);
1225 state_machine(as, A_RECVREP, NULL);
1232 struct active_service *as = cookie;
1234 /* Process errfd before sending the REP packet */
1236 SELECT_ARG_TYPE readset;
1240 memset(&tv, 0, SIZEOF(tv));
1242 FD_SET(as->errfd, &readset);
1243 nfound = select(as->errfd+1, &readset, NULL, NULL, &tv);
1244 if (nfound && FD_ISSET(as->errfd, &readset)) {
1251 * Called when a errfd has received data
1257 struct active_service *as = cookie;
1263 assert(as->ev_errfd != NULL);
1265 n = read(as->errfd, &buf, 32768);
1268 /* Terminate it with '\0' */
1272 as->errbuf = vstrextend(&as->errbuf, buf, NULL);
1274 as->errbuf = stralloc(buf);
1276 } else if (n == 0) {
1277 event_release(as->ev_errfd);
1278 as->ev_errfd = NULL;
1279 } else { /* n < 0 */
1280 event_release(as->ev_errfd);
1281 as->ev_errfd = NULL;
1282 g_snprintf(buf, 32768,
1283 "error reading stderr or service: %s\n", strerror(errno));
1286 /* for each line terminate by '\n' */
1287 while (as->errbuf != NULL && (r = strchr(as->errbuf, '\n')) != NULL) {
1291 s = vstrallocf("ERROR service %s: %s\n",
1292 services[as->service].name, as->errbuf);
1294 /* Add to repbuf, error message will be in the REP packet if it
1295 * is not already sent
1298 if (as->bufsize == 0) {
1299 as->bufsize = NETWORK_BLOCK_BYTES;
1300 as->repbuf = alloc(as->bufsize);
1302 while (as->bufsize < as->repbufsize + n) {
1305 repbuf_temp = alloc(as->bufsize);
1306 memcpy(repbuf_temp, as->repbuf, as->repbufsize + 1);
1308 as->repbuf = repbuf_temp;
1310 memcpy(as->repbuf + as->repbufsize, s, n);
1311 as->repbufsize += n;
1315 /* remove first line from buffer */
1324 * Called when a repfd has timed out
1330 struct active_service *as = cookie;
1333 assert(as->ev_reptimeout != NULL);
1335 state_machine(as, A_TIMEOUT, NULL);
1339 * Called when a handle has received data
1345 security_status_t status)
1347 struct active_service *as = cookie;
1353 dbprintf(_("received %s pkt:\n<<<<<\n%s>>>>>\n"),
1354 pkt_type2str(pkt->type), pkt->body);
1355 state_machine(as, A_RECVPKT, pkt);
1358 dbprintf(_("timeout\n"));
1359 state_machine(as, A_TIMEOUT, NULL);
1362 dbprintf(_("receive error: %s\n"),
1363 security_geterror(as->security_handle));
1369 * This is a generic relay function that just reads data from one of
1370 * the process's pipes and passes it up the equivalent security_stream_t
1377 struct datafd_handle *dh = cookie;
1378 struct active_service *as = dh->as;
1384 n = read(dh->fd_read, as->databuf, SIZEOF(as->databuf));
1385 } while ((n < 0) && ((errno == EINTR) || (errno == EAGAIN)));
1391 pkt_init(&nak, P_NAK, _("A ERROR data descriptor %d broken: %s\n"),
1392 dh->fd_read, strerror(errno));
1396 * Process has closed the pipe. Just remove this event handler.
1397 * If all pipes are closed, shut down this service.
1400 event_release(dh->ev_read);
1402 if(dh->ev_write == NULL) {
1403 security_stream_close(dh->netfd);
1406 for (dh = &as->data[0]; dh < &as->data[DATA_FD_COUNT]; dh++) {
1407 if (dh->netfd != NULL)
1414 /* Handle the special case of recognizing "sendbackup info end"
1415 * from sendbackup's MESG fd */
1416 if (as->service == SERVICE_SENDBACKUP && !as->seen_info_end && dh == &as->data[1]) {
1417 /* make a buffer containing the combined data from info_end_buf
1418 * and what we've read this time, and search it for info_end_strj
1419 * This includes a NULL byte for strstr's sanity. */
1420 char *combined_buf = malloc(INFO_END_LEN + n + 1);
1421 memcpy(combined_buf, as->info_end_buf, INFO_END_LEN);
1422 memcpy(combined_buf+INFO_END_LEN, as->databuf, n);
1423 combined_buf[INFO_END_LEN+n] = '\0';
1425 as->seen_info_end = (strstr(combined_buf, info_end_str) != NULL);
1427 /* fill info_end_buf from the tail end of combined_buf */
1428 memcpy(as->info_end_buf, combined_buf + n, INFO_END_LEN);
1429 amfree(combined_buf);
1431 /* if we did see info_end_str, start reading the data fd (fd 0) */
1432 if (as->seen_info_end) {
1433 struct datafd_handle *dh = &as->data[0];
1434 amandad_debug(1, "Opening datafd to sendbackup (delayed until sendbackup sent header info)\n");
1435 dh->ev_read = event_register((event_id_t)dh->fd_read, EV_READFD,
1436 process_readnetfd, dh);
1438 amandad_debug(1, "sendbackup header info still not complete\n");
1442 if (security_stream_write(dh->netfd, as->databuf, (size_t)n) < 0) {
1443 /* stream has croaked */
1444 pkt_init(&nak, P_NAK, _("ERROR write error on stream %d: %s\n"),
1445 security_stream_id(dh->netfd),
1446 security_stream_geterror(dh->netfd));
1452 do_sendpkt(as->security_handle, &nak);
1458 * This is a generic relay function that just read data from one of
1459 * the security_stream_t and passes it up the equivalent process's pipes
1467 struct datafd_handle *dh;
1469 assert(cookie != NULL);
1472 if (dh->fd_write <= 0) {
1473 dbprintf(_("process_writenetfd: dh->fd_write <= 0\n"));
1474 } else if (size > 0) {
1475 full_write(dh->fd_write, buf, (size_t)size);
1476 security_stream_read(dh->netfd, process_writenetfd, dh);
1479 aclose(dh->fd_write);
1485 * Convert a local stream handle (DATA_FD...) into something that
1486 * can be sent to the amanda server.
1488 * Returns a number that should be sent to the server in the REP packet.
1492 struct active_service * as,
1495 struct datafd_handle *dh;
1497 /* note that handle is in the range DATA_FD_OFFSET to DATA_FD_COUNT, but
1498 * it is NOT a file descriptor! */
1500 /* if the handle is -1, then we don't bother */
1504 /* make sure the handle's kosher */
1505 if (handle < DATA_FD_OFFSET || handle >= DATA_FD_OFFSET + DATA_FD_COUNT)
1508 /* get a pointer into our handle array */
1509 dh = &as->data[handle - DATA_FD_OFFSET];
1511 /* make sure we're not already using the net handle */
1512 if (dh->netfd != NULL)
1515 /* allocate a stream from the security layer and return */
1516 dh->netfd = security_stream_server(as->security_handle);
1517 if (dh->netfd == NULL) {
1518 dbprintf(_("couldn't open stream to server: %s\n"),
1519 security_geterror(as->security_handle));
1524 * convert the stream into a numeric id that can be sent to the
1527 return (security_stream_id(dh->netfd));
1531 * Create a new service instance
1533 static struct active_service *
1535 security_handle_t * security_handle,
1538 const char * arguments)
1541 int data_read[DATA_FD_COUNT + 2][2];
1542 int data_write[DATA_FD_COUNT + 2][2];
1543 struct active_service *as;
1547 char *amanda_remote_host_env[2];
1549 assert(security_handle != NULL);
1550 assert(cmd != NULL);
1551 assert(arguments != NULL);
1553 /* a plethora of pipes */
1554 /* data_read[0] : stdin
1555 * data_write[0] : stdout
1556 * data_read[1], data_write[1] : first stream
1557 * data_read[2], data_write[2] : second stream
1558 * data_read[3], data_write[3] : third stream
1559 * data_write[4] : stderr
1561 for (i = 0; i < DATA_FD_COUNT + 1; i++) {
1562 if (pipe(data_read[i]) < 0) {
1563 error(_("pipe: %s\n"), strerror(errno));
1566 if (pipe(data_write[i]) < 0) {
1567 error(_("pipe: %s\n"), strerror(errno));
1571 if (pipe(data_write[STDERR_PIPE]) < 0) {
1572 error(_("pipe: %s\n"), strerror(errno));
1576 switch(pid = fork()) {
1578 error(_("could not fork service %s: %s\n"), cmd, strerror(errno));
1582 * The parent. Close the far ends of our pipes and return.
1584 as = g_new0(struct active_service, 1);
1585 as->cmd = stralloc(cmd);
1586 as->arguments = stralloc(arguments);
1587 as->security_handle = security_handle;
1589 as->service = service;
1591 as->send_partial_reply = 0;
1592 as->seen_info_end = FALSE;
1593 /* fill in info_end_buf with non-null characters */
1594 memset(as->info_end_buf, '-', sizeof(as->info_end_buf));
1595 if(service == SERVICE_SENDSIZE) {
1596 g_option_t *g_options;
1597 char *option_str, *p;
1599 option_str = stralloc(as->arguments+8);
1600 p = strchr(option_str,'\n');
1603 g_options = parse_g_options(option_str, 1);
1604 if(am_has_feature(g_options->features, fe_partial_estimate)) {
1605 as->send_partial_reply = 1;
1607 free_g_options(g_options);
1611 /* write to the request pipe */
1612 aclose(data_read[0][0]);
1613 as->reqfd = data_read[0][1];
1616 * read from the reply pipe
1618 as->repfd = data_write[0][0];
1619 aclose(data_write[0][1]);
1620 as->ev_repfd = NULL;
1625 as->rep_pkt.body = NULL;
1628 * read from the stderr pipe
1630 as->errfd = data_write[STDERR_PIPE][0];
1631 aclose(data_write[STDERR_PIPE][1]);
1632 as->ev_errfd = NULL;
1636 * read from the rest of the general-use pipes
1637 * (netfds are opened as the client requests them)
1639 for (i = 0; i < DATA_FD_COUNT; i++) {
1640 aclose(data_read[i + 1][1]);
1641 aclose(data_write[i + 1][0]);
1642 as->data[i].fd_read = data_read[i + 1][0];
1643 as->data[i].fd_write = data_write[i + 1][1];
1644 as->data[i].ev_read = NULL;
1645 as->data[i].ev_write = NULL;
1646 as->data[i].netfd = NULL;
1647 as->data[i].as = as;
1650 /* add it to the service queue */
1651 /* increment the active service count */
1652 serviceq = g_slist_append(serviceq, (gpointer)as);
1657 * The child. Put our pipes in their advertised locations
1661 /* set up the AMANDA_AUTHENTICATED_PEER env var so child services
1662 * can use it to authenticate */
1663 peer_name = security_get_authenticated_peer_name(security_handle);
1664 amanda_remote_host_env[0] = NULL;
1665 amanda_remote_host_env[1] = NULL;
1667 amanda_remote_host_env[0] =
1668 g_strdup_printf("AMANDA_AUTHENTICATED_PEER=%s", peer_name);
1672 * The data stream is stdin in the new process
1674 if (dup2(data_read[0][0], 0) < 0) {
1675 error(_("dup %d to %d failed: %s\n"), data_read[0][0], 0,
1679 aclose(data_read[0][0]);
1680 aclose(data_read[0][1]);
1683 * The reply stream is stdout
1685 if (dup2(data_write[0][1], 1) < 0) {
1686 error(_("dup %d to %d failed: %s\n"), data_write[0][1], 1,
1689 aclose(data_write[0][0]);
1690 aclose(data_write[0][1]);
1692 for (i = 0; i < DATA_FD_COUNT; i++) {
1693 aclose(data_read[i + 1][0]);
1694 aclose(data_write[i + 1][1]);
1698 * Make sure they are not open in the range DATA_FD_OFFSET to
1699 * DATA_FD_OFFSET + DATA_FD_COUNT*2 - 1
1701 for (i = 0; i < DATA_FD_COUNT; i++) {
1702 while(data_read[i + 1][1] >= DATA_FD_OFFSET &&
1703 data_read[i + 1][1] <= DATA_FD_OFFSET + DATA_FD_COUNT*2 - 1) {
1704 newfd = dup(data_read[i + 1][1]);
1706 error(_("Can't dup out off DATA_FD range"));
1707 data_read[i + 1][1] = newfd;
1709 while(data_write[i + 1][0] >= DATA_FD_OFFSET &&
1710 data_write[i + 1][0] <= DATA_FD_OFFSET + DATA_FD_COUNT*2 - 1) {
1711 newfd = dup(data_write[i + 1][0]);
1713 error(_("Can't dup out off DATA_FD range"));
1714 data_write[i + 1][0] = newfd;
1717 while(data_write[4][0] >= DATA_FD_OFFSET &&
1718 data_write[4][0] <= DATA_FD_OFFSET + DATA_FD_COUNT*2 - 1) {
1719 newfd = dup(data_write[4][0]);
1721 error(_("Can't dup out off DATA_FD range"));
1722 data_write[4][0] = newfd;
1724 while(data_write[4][1] >= DATA_FD_OFFSET &&
1725 data_write[4][1] <= DATA_FD_OFFSET + DATA_FD_COUNT*2 - 1) {
1726 newfd = dup(data_write[4][1]);
1728 error(_("Can't dup out off DATA_FD range"));
1729 data_write[4][1] = newfd;
1732 for (i = 0; i < DATA_FD_COUNT*2; i++)
1733 close(DATA_FD_OFFSET + i);
1736 * The rest start at the offset defined in amandad.h, and continue
1737 * through the internal defined.
1739 for (i = 0; i < DATA_FD_COUNT; i++) {
1740 if (dup2(data_read[i + 1][1], i*2 + DATA_FD_OFFSET) < 0) {
1741 error(_("dup %d to %d failed: %s\n"), data_read[i + 1][1],
1742 i + DATA_FD_OFFSET, strerror(errno));
1744 aclose(data_read[i + 1][1]);
1746 if (dup2(data_write[i + 1][0], i*2 + 1 + DATA_FD_OFFSET) < 0) {
1747 error(_("dup %d to %d failed: %s\n"), data_write[i + 1][0],
1748 i + DATA_FD_OFFSET, strerror(errno));
1750 aclose(data_write[i + 1][0]);
1753 /* close all unneeded fd */
1754 close(STDERR_FILENO);
1755 dup2(data_write[STDERR_PIPE][1], 2);
1756 aclose(data_write[STDERR_PIPE][0]);
1757 aclose(data_write[STDERR_PIPE][1]);
1758 safe_fd(DATA_FD_OFFSET, DATA_FD_COUNT*2);
1760 execle(cmd, cmd, "amandad", auth, (char *)NULL, safe_env_full(amanda_remote_host_env));
1761 error(_("could not exec service %s: %s\n"), cmd, strerror(errno));
1768 * Unallocate a service instance
1772 struct active_service * as)
1777 struct datafd_handle *dh;
1779 amandad_debug(1, _("closing service: %s\n"),
1780 (as->cmd)?as->cmd:_("??UNKONWN??"));
1784 assert(as->cmd != NULL);
1787 assert(as->arguments != NULL);
1788 amfree(as->arguments);
1790 if (as->reqfd != -1)
1792 if (as->repfd != -1)
1794 if (as->errfd != -1) {
1799 if (as->ev_repfd != NULL)
1800 event_release(as->ev_repfd);
1801 if (as->ev_reptimeout != NULL)
1802 event_release(as->ev_reptimeout);
1803 if (as->ev_errfd != NULL)
1804 event_release(as->ev_errfd);
1806 for (i = 0; i < DATA_FD_COUNT; i++) {
1809 aclose(dh->fd_read);
1810 aclose(dh->fd_write);
1812 if (dh->netfd != NULL)
1813 security_stream_close(dh->netfd);
1815 if (dh->ev_read != NULL)
1816 event_release(dh->ev_read);
1817 if (dh->ev_write != NULL)
1818 event_release(dh->ev_write);
1821 if (as->security_handle != NULL)
1822 security_close(as->security_handle);
1824 /* try to kill the process; if this fails, then it's already dead and
1825 * likely some of the other zombie cleanup ate its brains, so we don't
1826 * bother to waitpid for it */
1827 assert(as->pid > 0);
1828 pid = waitpid(as->pid, NULL, WNOHANG);
1829 if (pid != as->pid && kill(as->pid, SIGTERM) == 0) {
1830 pid = waitpid(as->pid, NULL, WNOHANG);
1832 while (pid != as->pid && count > 0) {
1835 pid = waitpid(as->pid, NULL, WNOHANG);
1837 if (pid != as->pid) {
1838 g_debug("Process %d failed to exit", (int)as->pid);
1842 serviceq = g_slist_remove(serviceq, (gpointer)as);
1845 amfree(as->arguments);
1847 amfree(as->rep_pkt.body);
1850 if(exit_on_qlength == 0 && g_slist_length(serviceq) == 0) {
1857 * Like 'fullwrite', but does the work in a child process so pipelines
1862 struct active_service * as,
1869 switch (pid=fork()) {
1874 waitpid(pid, NULL, WNOHANG);
1875 return 0; /* this is the parent */
1877 case 0: /* this is the child */
1879 writesize = full_write(as->reqfd, bufp, size);
1880 exit(writesize != size);
1888 security_handle_t * handle,
1891 dbprintf(_("sending %s pkt:\n<<<<<\n%s>>>>>\n"),
1892 pkt_type2str(pkt->type), pkt->body);
1894 return security_sendpkt(handle, pkt);
1900 * Convert a state into a string
1906 static const struct {
1910 #define X(state) { state, stringize(state) }
1920 for (i = 0; i < (int)(sizeof(states) / sizeof(states[0])); i++)
1921 if (state == states[i].state)
1922 return (states[i].str);
1923 return (_("INVALID STATE"));
1927 * Convert an action into a string
1933 static const struct {
1937 #define X(action) { action, stringize(action) }
1950 for (i = 0; i < (int)(sizeof(actions) / sizeof(actions[0])); i++)
1951 if (action == actions[i].action)
1952 return (actions[i].str);
1953 return (_("UNKNOWN ACTION"));
1957 amandad_get_security_conf(
1961 (void)arg; /* Quiet unused parameter warning */
1963 if (!string || !*string)
1966 if (strcmp(string, "kencrypt")==0) {
1967 if (amandad_kencrypt == KENCRYPT_YES)