347da0a356e4c27ea914b0125d91e2ef0b616abf
[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.28 2006/01/14 04:37:18 paddy_s Exp $
28  *
29  * runs DUMP program as root
30  */
31 #include "amanda.h"
32 #include "version.h"
33
34 int main P((int argc, char **argv));
35
36 #if defined(VDUMP) || defined(XFSDUMP)
37 #  undef USE_RUNDUMP
38 #  define USE_RUNDUMP
39 #endif
40
41 #if !defined(USE_RUNDUMP)
42 #  define ERRMSG "rundump not enabled on this system.\n"
43 #else
44 #  if !defined(DUMP) && !defined(VXDUMP) && !defined(VDUMP) && !defined(XFSDUMP)
45 #    define ERRMSG "DUMP not available on this system.\n"
46 #  else
47 #    undef ERRMSG
48 #  endif
49 #endif
50
51 int main(argc, argv)
52 int argc;
53 char **argv;
54 {
55 #ifndef ERRMSG
56     char *dump_program;
57     int i;
58     char *e;
59 #endif /* ERRMSG */
60
61     safe_fd(-1, 0);
62     safe_cd();
63
64     set_pname("rundump");
65
66     /* Don't die when child closes pipe */
67     signal(SIGPIPE, SIG_IGN);
68
69     dbopen();
70     dbprintf(("%s: version %s\n", argv[0], version()));
71
72 #ifdef ERRMSG                                                   /* { */
73
74     fprintf(stderr, ERRMSG);
75     dbprintf(("%s: %s", argv[0], ERRMSG));
76     dbclose();
77     return 1;
78
79 #else                                                           /* } { */
80
81     if(client_uid == (uid_t) -1) {
82         error("error [cannot find user %s in passwd file]\n", CLIENT_LOGIN);
83     }
84
85 #ifdef FORCE_USERID
86     if (getuid() != client_uid)
87         error("error [must be invoked by %s]\n", CLIENT_LOGIN);
88
89     if (geteuid() != 0)
90         error("error [must be setuid root]\n");
91 #endif  /* FORCE_USERID */
92
93 #if !defined (DONT_SUID_ROOT)
94     setuid(0);
95 #endif
96
97 #ifdef XFSDUMP
98
99     if (strcmp(argv[0], "xfsdump") == 0)
100         dump_program = XFSDUMP;
101     else /* strcmp(argv[0], "xfsdump") != 0 */
102
103 #endif
104
105 #ifdef VXDUMP
106
107     if (strcmp(argv[0], "vxdump") == 0)
108         dump_program = VXDUMP;
109     else /* strcmp(argv[0], "vxdump") != 0 */
110
111 #endif
112
113 #ifdef VDUMP
114
115     if (strcmp(argv[0], "vdump") == 0)
116         dump_program = VDUMP;
117     else /* strcmp(argv[0], "vdump") != 0 */
118
119 #endif
120
121 #if defined(DUMP)
122         dump_program = DUMP;
123 #else
124 # if defined(XFSDUMP)
125         dump_program = XFSDUMP;
126 # else
127 #  if defined(VXDUMP)
128         dump_program = VXDUMP;
129 #  else
130         dump_program = "dump";
131 #  endif
132 # endif
133 #endif
134
135     dbprintf(("running: %s: ",dump_program));
136     for (i=0; argv[i]; i++)
137         dbprintf(("%s ", argv[i]));
138     dbprintf(("\n"));
139
140     execve(dump_program, argv, safe_env());
141
142     e = strerror(errno);
143     dbprintf(("failed (%s)\n", e));
144     dbclose();
145
146     fprintf(stderr, "rundump: could not exec %s: %s\n", dump_program, e);
147     return 1;
148 #endif                                                          /* } */
149 }