Imported Upstream version 3.2.0
[debian/amanda] / client-src / rundump.c
1 /*
2  * Amanda, The Advanced Maryland Automatic Network Disk Archiver
3  * Copyright (c) 1991-1998 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: rundump.c,v 1.33 2006/07/25 18:27:56 martinea Exp $
28  *
29  * runs DUMP program as root
30  *
31  * argv[0] is the rundump program name
32  * argv[1] is the config name or NOCONFIG
33  * argv[2] will be argv[0] of the DUMP program
34  * ...
35  */
36 #include "amanda.h"
37 #include "util.h"
38 #include "conffile.h"
39
40 int main(int argc, char **argv);
41
42 #if defined(VDUMP) || defined(XFSDUMP)
43 #  undef USE_RUNDUMP
44 #  define USE_RUNDUMP
45 #endif
46
47 #if !defined(USE_RUNDUMP)
48 #  define ERRMSG _("rundump not enabled on this system.\n")
49 #else
50 #  if !defined(DUMP) && !defined(VXDUMP) && !defined(VDUMP) && !defined(XFSDUMP)
51 #    define ERRMSG _("DUMP not available on this system.\n")
52 #  else
53 #    undef ERRMSG
54 #  endif
55 #endif
56
57 int
58 main(
59     int         argc,
60     char **     argv)
61 {
62 #ifndef ERRMSG
63     char *dump_program;
64     int i;
65     char *e;
66     char *cmdline;
67 #endif /* ERRMSG */
68
69     /*
70      * Configure program for internationalization:
71      *   1) Only set the message locale for now.
72      *   2) Set textdomain for all amanda related programs to "amanda"
73      *      We don't want to be forced to support dozens of message catalogs.
74      */  
75     setlocale(LC_MESSAGES, "C");
76     textdomain("amanda"); 
77
78     safe_fd(-1, 0);
79     safe_cd();
80
81     set_pname("rundump");
82
83     /* Don't die when child closes pipe */
84     signal(SIGPIPE, SIG_IGN);
85
86     dbopen(DBG_SUBDIR_CLIENT);
87     config_init(CONFIG_INIT_CLIENT, NULL);
88
89     if (argc < 3) {
90         error(_("Need at least 3 arguments\n"));
91         /*NOTREACHED*/
92     }
93
94     dbprintf(_("version %s\n"), VERSION);
95
96 #ifdef ERRMSG                                                   /* { */
97
98     g_fprintf(stderr, ERRMSG);
99     dbprintf("%s: %s", argv[0], ERRMSG);
100     dbclose();
101     return 1;
102
103 #else                                                           /* } { */
104
105 #ifdef WANT_SETUID_CLIENT
106     check_running_as(RUNNING_AS_CLIENT_LOGIN | RUNNING_AS_UID_ONLY);
107     if (!become_root()) {
108         error(_("error [%s could not become root (is the setuid bit set?)]\n"), get_pname());
109         /*NOTREACHED*/
110     }
111 #else
112     check_running_as(RUNNING_AS_CLIENT_LOGIN);
113 #endif
114
115     /* skip argv[0] */
116     argc--;
117     argv++;
118
119     dbprintf(_("config: %s\n"), argv[0]);
120     if (strcmp(argv[0], "NOCONFIG") != 0)
121         dbrename(argv[0], DBG_SUBDIR_CLIENT);
122     argc--;
123     argv++;
124
125 #ifdef XFSDUMP
126
127     if (strcmp(argv[0], "xfsdump") == 0)
128         dump_program = XFSDUMP;
129     else /* strcmp(argv[0], "xfsdump") != 0 */
130
131 #endif
132
133 #ifdef VXDUMP
134
135     if (strcmp(argv[0], "vxdump") == 0)
136         dump_program = VXDUMP;
137     else /* strcmp(argv[0], "vxdump") != 0 */
138
139 #endif
140
141 #ifdef VDUMP
142
143     if (strcmp(argv[0], "vdump") == 0)
144         dump_program = VDUMP;
145     else /* strcmp(argv[0], "vdump") != 0 */
146
147 #endif
148
149 #if defined(DUMP)
150         dump_program = DUMP;
151 #else
152 # if defined(XFSDUMP)
153         dump_program = XFSDUMP;
154 # else
155 #  if defined(VXDUMP)
156         dump_program = VXDUMP;
157 #  else
158         dump_program = "dump";
159 #  endif
160 # endif
161 #endif
162
163     cmdline = stralloc(dump_program);
164     for (i = 1; argv[i]; i++) {
165         char *quoted;
166
167         quoted = quote_string(argv[i]);
168         cmdline = vstrextend(&cmdline, " ", quoted, NULL);
169         amfree(quoted);
170     }
171     dbprintf(_("running: %s\n"), cmdline);
172     amfree(cmdline);
173
174     execve(dump_program, argv, safe_env());
175
176     e = strerror(errno);
177     dbprintf(_("failed (%s)\n"), e);
178     dbclose();
179
180     g_fprintf(stderr, _("rundump: could not exec %s: %s\n"), dump_program, e);
181     return 1;
182 #endif                                                          /* } */
183 }