📄 sendbackup-gnutar.c
字号:
/* * Amanda, The Advanced Maryland Automatic Network Disk Archiver * Copyright (c) 1991-1999 University of Maryland at College Park * All Rights Reserved. * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that * the above copyright notice appear in all copies and that both that * copyright notice and this permission notice appear in supporting * documentation, and that the name of U.M. not be used in advertising or * publicity pertaining to distribution of the software without specific, * written prior permission. U.M. makes no representations about the * suitability of this software for any purpose. It is provided "as is" * without express or implied warranty. * * U.M. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL U.M. * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * * Authors: the Amanda Development Team. Its members are listed in a * file named AUTHORS, in the root directory of this distribution. *//* * $Id: sendbackup-gnutar.c,v 1.98 2006/07/25 18:35:21 martinea Exp $ * * send backup data using GNU tar */#include "amanda.h"#include "sendbackup.h"#include "amandates.h"#include "clock.h"#include "util.h"#include "getfsent.h" /* for amname_to_dirname lookup */#include "version.h"#include "conffile.h"#ifdef SAMBA_CLIENT#include "findpass.h"#endifstatic amregex_t re_table[] = { /* tar prints the size in bytes */ AM_SIZE_RE("^ *Total bytes written: [0-9][0-9]*", 1, 1), AM_NORMAL_RE("^Elapsed time:"), AM_NORMAL_RE("^Throughput"), /* GNU tar 1.13.17 will print this warning when (not) backing up a Unix named socket. */ AM_NORMAL_RE(": socket ignored$"), /* GNUTAR produces a few error messages when files are modified or removed while it is running. They may cause data to be lost, but then they may not. We shouldn't consider them NORMAL until further investigation. */#ifdef IGNORE_TAR_ERRORS AM_NORMAL_RE(": File .* shrunk by [0-9][0-9]* bytes, padding with zeros"), AM_NORMAL_RE(": Cannot add file .*: No such file or directory$"), AM_NORMAL_RE(": Error exit delayed from previous errors"),#endif /* samba may produce these output messages */ AM_NORMAL_RE("^[Aa]dded interface"), AM_NORMAL_RE("^session request to "), AM_NORMAL_RE("^tar: dumped [0-9][0-9]* (tar )?files"),#if SAMBA_VERSION < 2 AM_NORMAL_RE("^doing parameter"), AM_NORMAL_RE("^pm_process\\(\\)"), AM_NORMAL_RE("^adding IPC"), AM_NORMAL_RE("^Opening"), AM_NORMAL_RE("^Connect"), AM_NORMAL_RE("^Domain="), AM_NORMAL_RE("^max"), AM_NORMAL_RE("^security="), AM_NORMAL_RE("^capabilities"), AM_NORMAL_RE("^Sec mode "), AM_NORMAL_RE("^Got "), AM_NORMAL_RE("^Chose protocol "), AM_NORMAL_RE("^Server "), AM_NORMAL_RE("^Timezone "), AM_NORMAL_RE("^received"), AM_NORMAL_RE("^FINDFIRST"), AM_NORMAL_RE("^FINDNEXT"), AM_NORMAL_RE("^dos_clean_name"), AM_NORMAL_RE("^file"), AM_NORMAL_RE("^getting file"), AM_NORMAL_RE("^Rejected chained"), AM_NORMAL_RE("^nread="), AM_NORMAL_RE("^\\([0-9][0-9]* kb/s\\)"), AM_NORMAL_RE("^\\([0-9][0-9]*\\.[0-9][0-9]* kb/s\\)"), AM_NORMAL_RE("^[ \t]*[0-9][0-9]* \\([ \t]*[0-9][0-9]*\\.[0-9][0-9]* kb/s\\)"), AM_NORMAL_RE("^[ \t]*directory "), AM_NORMAL_RE("^load_client_codepage"),#endif#ifdef IGNORE_SMBCLIENT_ERRORS /* This will cause amanda to ignore real errors, but that may be * unavoidable when you're backing up system disks. It seems to be * a safe thing to do if you know what you're doing. */ AM_NORMAL_RE("^ERRDOS - ERRbadshare opening remote file"), AM_NORMAL_RE("^ERRDOS - ERRbadfile opening remote file"), AM_NORMAL_RE("^ERRDOS - ERRnoaccess opening remote file"), AM_NORMAL_RE("^ERRSRV - ERRaccess setting attributes on file"), AM_NORMAL_RE("^ERRDOS - ERRnoaccess setting attributes on file"),#endif#if SAMBA_VERSION >= 2 /* Backup attempt of nonexisting directory */ AM_ERROR_RE("ERRDOS - ERRbadpath (Directory invalid.)"), AM_NORMAL_RE("^Domain="),#endif /* catch-all: DMP_STRANGE is returned for all other lines */ AM_STRANGE_RE(NULL)};extern char *efile;int cur_level;char *cur_disk;time_t cur_dumptime;static char *gnutar_list_dir = NULL;static char *incrname = NULL;static char *amandates_file;/* * doing similar to $ gtar | compression | encryption */static voidstart_backup( char * host, char * disk, char * amdevice, int level, char * dumpdate, int dataf, int mesgf, int indexf){ char tmppath[PATH_MAX]; int dumpin, dumpout, compout; char *cmd = NULL; char *indexcmd = NULL; char *dirname = NULL; int l; char dumptimestr[80]; struct tm *gmtm; amandates_t *amdates; time_t prev_dumptime; char *error_pn = NULL; char *compopt = NULL; char *encryptopt = skip_argument; char *tquoted; char *fquoted; char *qdisk; int infd, outfd; ssize_t nb; char buf[32768]; (void)dumpdate; /* Quiet unused parameter warning */ error_pn = stralloc2(get_pname(), "-smbclient"); qdisk = quote_string(disk); dbprintf(_("start: %s:%s lev %d\n"), host, qdisk, level); g_fprintf(stderr, _("%s: start [%s:%s level %d]\n"), get_pname(), host, qdisk, level); /* apply client-side encryption here */ if ( options->encrypt == ENCRYPT_CUST ) { encpid = pipespawn(options->clnt_encrypt, STDIN_PIPE, &compout, &dataf, &mesgf, options->clnt_encrypt, encryptopt, NULL); dbprintf(_("gnutar: pid %ld: %s\n"), (long)encpid, options->clnt_encrypt); } else { compout = dataf; encpid = -1; } /* now do the client-side compression */ if(options->compress == COMP_FAST || options->compress == COMP_BEST) { compopt = skip_argument;#if defined(COMPRESS_BEST_OPT) && defined(COMPRESS_FAST_OPT) if(options->compress == COMP_BEST) { compopt = COMPRESS_BEST_OPT; } else { compopt = COMPRESS_FAST_OPT; }#endif comppid = pipespawn(COMPRESS_PATH, STDIN_PIPE, &dumpout, &compout, &mesgf, COMPRESS_PATH, compopt, NULL); dbprintf(_("gnutar: pid %ld: %s"), (long)comppid, COMPRESS_PATH); if(compopt != skip_argument) { dbprintf(_("pid %ld: %s %s\n"), (long)comppid, COMPRESS_PATH, compopt); } else { dbprintf(_("pid %ld: %s\n"), (long)comppid, COMPRESS_PATH); } } else if (options->compress == COMP_CUST) { compopt = skip_argument; comppid = pipespawn(options->clntcompprog, STDIN_PIPE, &dumpout, &compout, &mesgf, options->clntcompprog, compopt, NULL); if(compopt != skip_argument) { dbprintf(_("pid %ld: %s %s\n"), (long)comppid, options->clntcompprog, compopt); } else { dbprintf(_("pid %ld: %s\n"), (long)comppid, options->clntcompprog); } } else { dumpout = compout; comppid = -1; } gnutar_list_dir = getconf_str(CNF_GNUTAR_LIST_DIR); if (strlen(gnutar_list_dir) == 0) gnutar_list_dir = NULL;#ifdef SAMBA_CLIENT /* { */ if (amdevice[0] == '/' && amdevice[1]=='/') amfree(incrname); else#endif /* } */ if (gnutar_list_dir) { char *basename = NULL; char number[NUM_STR_SIZE]; char *inputname = NULL; int baselevel; char *sdisk = sanitise_filename(disk); basename = vstralloc(gnutar_list_dir, "/", host, sdisk, NULL); amfree(sdisk); g_snprintf(number, SIZEOF(number), "%d", level); incrname = vstralloc(basename, "_", number, ".new", NULL); unlink(incrname); /* * Open the listed incremental file from the previous level. Search * backward until one is found. If none are found (which will also * be true for a level 0), arrange to read from /dev/null. */ baselevel = level; infd = -1; while (infd == -1) { if (--baselevel >= 0) { g_snprintf(number, SIZEOF(number), "%d", baselevel); inputname = newvstralloc(inputname, basename, "_", number, NULL); } else { inputname = newstralloc(inputname, "/dev/null"); } if ((infd = open(inputname, O_RDONLY)) == -1) { int save_errno = errno; char *qname = quote_string(inputname); dbprintf(_("gnutar: error opening '%s': %s\n"), qname, strerror(save_errno)); if (baselevel < 0) { error(_("error [opening '%s': %s]"), qname, strerror(save_errno)); /*NOTREACHED*/ } amfree(qname); } } /* * Copy the previous listed incremental file to the new one. */ if ((outfd = open(incrname, O_WRONLY|O_CREAT, 0600)) == -1) { error(_("error [opening '%s': %s]"), incrname, strerror(errno)); /*NOTREACHED*/ } while ((nb = read(infd, &buf, SIZEOF(buf))) > 0) { if (fullwrite(outfd, &buf, (size_t)nb) < nb) { error(_("error [writing to '%s': %s]"), incrname, strerror(errno)); /*NOTREACHED*/ } } if (nb < 0) { error(_("error [reading from '%s': %s]"), inputname, strerror(errno)); /*NOTREACHED*/ } if (close(infd) != 0) { error(_("error [closing '%s': %s]"), inputname, strerror(errno)); /*NOTREACHED*/ } if (close(outfd) != 0) { error(_("error [closing '%s': %s]"), incrname, strerror(errno)); /*NOTREACHED*/ } tquoted = quote_string(incrname); if(baselevel >= 0) { fquoted = quote_string(inputname); dbprintf(_("doing level %d dump as listed-incremental from '%s' to '%s'\n"), level, fquoted, tquoted); amfree(fquoted); } else { dbprintf(_("doing level %d dump as listed-incremental to '%s'\n"), level, tquoted); } amfree(tquoted); amfree(inputname); amfree(basename); } /* find previous dump time */ amandates_file = getconf_str(CNF_AMANDATES); if(!start_amandates(amandates_file, 0)) {
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -