Imported Upstream version 2.4.4p3
[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 2002/10/27 14:31:18 martinea 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     int fd;
60
61     for(fd = 3; fd < FD_SETSIZE; fd++) {
62         /*
63          * Make sure nobody spoofs us with a lot of extra open files
64          * that would cause an open we do to get a very high file
65          * descriptor, which in turn might be used as an index into
66          * an array (e.g. an fd_set).
67          */
68         close(fd);
69     }
70
71     safe_cd();
72
73     set_pname("rundump");
74
75     dbopen();
76     dbprintf(("%s: version %s\n", argv[0], version()));
77
78 #ifdef ERRMSG                                                   /* { */
79
80     fprintf(stderr, ERRMSG);
81     dbprintf(("%s: %s", argv[0], ERRMSG));
82     dbclose();
83     return 1;
84
85 #else                                                           /* } { */
86
87     if(client_uid == (uid_t) -1) {
88         error("error [cannot find user %s in passwd file]\n", CLIENT_LOGIN);
89     }
90
91 #ifdef FORCE_USERID
92     if (getuid() != client_uid) {
93         error("error [must be invoked by %s]\n", CLIENT_LOGIN);
94     }
95
96     if (geteuid() != 0) {
97         error("error [must be setuid root]\n");
98     }
99 #endif  /* FORCE_USERID */
100
101 #if !defined (DONT_SUID_ROOT)
102     setuid(0);
103 #endif
104
105 #ifdef XFSDUMP
106
107     if (strcmp(argv[0], "xfsdump") == 0)
108         dump_program = XFSDUMP;
109     else /* strcmp(argv[0], "xfsdump") != 0 */
110
111 #endif
112
113 #ifdef VXDUMP
114
115     if (strcmp(argv[0], "vxdump") == 0)
116         dump_program = VXDUMP;
117     else /* strcmp(argv[0], "vxdump") != 0 */
118
119 #endif
120
121 #ifdef VDUMP
122
123     if (strcmp(argv[0], "vdump") == 0)
124         dump_program = VDUMP;
125     else /* strcmp(argv[0], "vdump") != 0 */
126
127 #endif
128
129 #if defined(DUMP)
130         dump_program = DUMP;
131 #else
132 # if defined(XFSDUMP)
133         dump_program = XFSDUMP;
134 # else
135 #  if defined(VXDUMP)
136         dump_program = VXDUMP;
137 #  else
138         dump_program = "dump";
139 #  endif
140 # endif
141 #endif
142
143     dbprintf(("running: %s: ",dump_program));
144     for (i=0; argv[i]; i++)
145         dbprintf(("%s ", argv[i]));
146     dbprintf(("\n"));
147
148     execve(dump_program, argv, safe_env());
149
150     e = strerror(errno);
151     dbprintf(("execve of %s failed (%s)\n", dump_program, e));
152     dbclose();
153
154     fprintf(stderr, "rundump: could not exec %s: %s\n", dump_program, e);
155     return 1;
156 #endif                                                          /* } */
157 }