2 * Amanda, The Advanced Maryland Automatic Network Disk Archiver
3 * Copyright (c) 1991-1998 University of Maryland at College Park
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.
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.
23 * Authors: the Amanda Development Team. Its members are listed in a
24 * file named AUTHORS, in the root directory of this distribution.
27 * $Id: runtar.c,v 1.24 2006/08/25 11:41:31 martinea Exp $
29 * runs GNUTAR program as root
31 * argv[0] is the runtar program name
32 * argv[1] is the config name or NOCONFIG
33 * argv[2] will be argv[0] of the gtar program
40 int main(int argc, char **argv);
55 * Configure program for internationalization:
56 * 1) Only set the message locale for now.
57 * 2) Set textdomain for all amanda related programs to "amanda"
58 * We don't want to be forced to support dozens of message catalogs.
60 setlocale(LC_MESSAGES, "C");
68 /* Don't die when child closes pipe */
69 signal(SIGPIPE, SIG_IGN);
71 dbopen(DBG_SUBDIR_CLIENT);
73 error(_("Need at least 3 arguments\n"));
77 dbprintf(_("version %s\n"), version());
79 if (strcmp(argv[3], "--create") != 0) {
80 error(_("Can only be used to create tar archives\n"));
86 g_fprintf(stderr,_("gnutar not available on this system.\n"));
87 dbprintf(_("%s: gnutar not available on this system.\n"), argv[0]);
94 * Print out version information for tar.
100 if ((version_file = popen(GNUTAR " --version 2>&1", "r")) != NULL) {
101 if (fgets(version_buf, (int)sizeof(version_buf), version_file) != NULL) {
102 dbprintf(_(GNUTAR " version: %s\n"), version_buf);
104 if (ferror(version_file)) {
105 dbprintf(_(GNUTAR " version: Read failure: %s\n"), strerror(errno));
107 dbprintf(_(GNUTAR " version: Read failure; EOF\n"));
111 dbprintf(_(GNUTAR " version: unavailable: %s\n"), strerror(errno));
115 #ifdef WANT_SETUID_CLIENT
116 check_running_as(RUNNING_AS_CLIENT_LOGIN | RUNNING_AS_UID_ONLY);
117 if (!become_root()) {
118 error(_("error [%s could not become root (is the setuid bit set?)]\n"), get_pname());
122 check_running_as(RUNNING_AS_CLIENT_LOGIN);
129 dbprintf(_("config: %s\n"), argv[0]);
130 if (strcmp(argv[0], "NOCONFIG") != 0)
131 dbrename(argv[0], DBG_SUBDIR_CLIENT);
135 cmdline = stralloc(GNUTAR);
136 for (i = 1; argv[i]; i++) {
139 quoted = quote_string(argv[i]);
140 cmdline = vstrextend(&cmdline, " ", quoted, NULL);
143 dbprintf(_("running: %s\n"), cmdline);
152 execve(GNUTAR, argv, safe_env());
155 dbreopen(dbf, "more");
157 dbprintf(_("execve of %s failed (%s)\n"), GNUTAR, e);
160 g_fprintf(stderr, _("runtar: could not exec %s: %s\n"), GNUTAR, e);