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