Imported Upstream version 2.5.1
[debian/amanda] / server-src / server_util.c
1 /*
2  * Amanda, The Advanced Maryland Automatic Network Disk Archiver
3  * Copyright (c) 1991-1999 University of Maryland at College Park
4  * All Rights Reserved.
5  *
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.
15  *
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.
22  *
23  * Authors: the Amanda Development Team.  Its members are listed in a
24  * file named AUTHORS, in the root directory of this distribution.
25  */
26 /*
27  * $Id: server_util.c,v 1.17 2006/05/25 01:47:20 johnfranks Exp $
28  *
29  */
30
31 #include "amanda.h"
32 #include "server_util.h"
33 #include "arglist.h"
34 #include "token.h"
35 #include "logfile.h"
36 #include "util.h"
37 #include "conffile.h"
38 #include "diskfile.h"
39
40 const char *cmdstr[] = {
41     "BOGUS", "QUIT", "QUITTING", "DONE", "PARTIAL", 
42     "START", "FILE-DUMP", "PORT-DUMP", "CONTINUE", "ABORT",/* dumper cmds */
43     "FAILED", "TRY-AGAIN", "NO-ROOM", "RQ-MORE-DISK",   /* dumper results */
44     "ABORT-FINISHED", "BAD-COMMAND",                    /* dumper results */
45     "START-TAPER", "FILE-WRITE", "PORT-WRITE",          /* taper cmds */
46     "PORT", "TAPE-ERROR", "TAPER-OK", "SPLIT-NEEDNEXT", /* taper results */
47     "SPLIT-CONTINUE",
48     NULL
49 };
50
51
52 cmd_t
53 getcmd(
54     struct cmdargs *    cmdargs)
55 {
56     char *line;
57     cmd_t cmd_i;
58
59     assert(cmdargs != NULL);
60
61     if (isatty(0)) {
62         printf("%s> ", get_pname());
63         fflush(stdout);
64         line = readline(NULL);
65     } else {
66         line = agets(stdin);
67     }
68     if (line == NULL) {
69         line = stralloc("QUIT");
70     }
71
72     cmdargs->argc = split(line, cmdargs->argv,
73         (int)(sizeof(cmdargs->argv) / sizeof(cmdargs->argv[0])), " ");
74     amfree(line);
75
76 #if DEBUG
77     {
78         int i;
79         fprintf(stderr,"argc = %d\n", cmdargs->argc);
80         for (i = 0; i < cmdargs->argc+1; i++)
81             fprintf(stderr,"argv[%d] = \"%s\"\n", i, cmdargs->argv[i]);
82     }
83 #endif
84
85     if (cmdargs->argc < 1)
86         return (BOGUS);
87
88     for(cmd_i=BOGUS; cmdstr[cmd_i] != NULL; cmd_i++)
89         if(strcmp(cmdargs->argv[1], cmdstr[cmd_i]) == 0)
90             return (cmd_i);
91     return (BOGUS);
92 }
93
94
95 printf_arglist_function1(void putresult, cmd_t, result, const char *, format)
96 {
97     va_list argp;
98
99     arglist_start(argp, format);
100     printf("%s ",cmdstr[result]);
101     vprintf(format, argp);
102     fflush(stdout);
103     arglist_end(argp);
104 }
105
106 char *
107 amhost_get_security_conf(
108     char *      string,
109     void *      arg)
110 {
111     if(!string || !*string)
112         return(NULL);
113
114     if(strcmp(string, "krb5principal")==0)
115         return(getconf_str(CNF_KRB5PRINCIPAL));
116     else if(strcmp(string, "krb5keytab")==0)
117         return(getconf_str(CNF_KRB5KEYTAB));
118
119     if(!arg || !((am_host_t *)arg)->disks) return(NULL);
120
121     if(strcmp(string, "amandad_path")==0)
122         return ((am_host_t *)arg)->disks->amandad_path;
123     else if(strcmp(string, "client_username")==0)
124         return ((am_host_t *)arg)->disks->client_username;
125     else if(strcmp(string, "ssh_keys")==0)
126         return ((am_host_t *)arg)->disks->ssh_keys;
127
128     return(NULL);
129 }