aboutsummaryrefslogtreecommitdiffstats
path: root/backup.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2004-01-20 05:24:07 +0000
committerWayne Davison <wayned@samba.org>2004-01-20 05:24:07 +0000
commit5d2a70713930e6c60788c728c8c6ae32f280ad84 (patch)
tree0c484be4751989acd590c279805d7dc6a5662c9b /backup.c
parent81d2b0ef9d72621fd0a1530afb3f03fdb7ea2e24 (diff)
downloadandroid_external_rsync-5d2a70713930e6c60788c728c8c6ae32f280ad84.tar.gz
android_external_rsync-5d2a70713930e6c60788c728c8c6ae32f280ad84.tar.bz2
android_external_rsync-5d2a70713930e6c60788c728c8c6ae32f280ad84.zip
Use new stringjoin() and pathjoin() functions.
Diffstat (limited to 'backup.c')
-rw-r--r--backup.c35
1 files changed, 16 insertions, 19 deletions
diff --git a/backup.c b/backup.c
index dd1b3dd0..3f5c416e 100644
--- a/backup.c
+++ b/backup.c
@@ -30,17 +30,19 @@ extern int am_root;
extern int preserve_devices;
extern int preserve_links;
extern int preserve_hard_links;
+extern int orig_umask;
/* simple backup creates a backup with a suffix in the same directory */
static int make_simple_backup(char *fname)
{
char fnamebak[MAXPATHLEN];
- if (strlen(fname) + backup_suffix_len > MAXPATHLEN-1) {
+
+ if (stringjoin(fnamebak, sizeof fnamebak, fname, backup_suffix, NULL)
+ >= sizeof fnamebak) {
rprintf(FERROR, "backup filename too long\n");
return 0;
}
- snprintf(fnamebak, sizeof(fnamebak), "%s%s", fname, backup_suffix);
if (do_rename(fname, fnamebak) != 0) {
/* cygwin (at least version b19) reports EINVAL */
if (errno != ENOENT && errno != EINVAL) {
@@ -87,20 +89,20 @@ static int make_bak_dir(char *fname, char *bak_path)
STRUCT_STAT st;
STRUCT_STAT *st2;
char fullpath[MAXPATHLEN];
- extern int orig_umask;
char *p;
char *q;
while(strncmp(bak_path, "./", 2) == 0) bak_path += 2;
- if (bak_path[strlen(bak_path)-1] != '/') {
- snprintf(fullpath, sizeof(fullpath), "%s/", bak_path);
- } else {
- snprintf(fullpath, sizeof(fullpath), "%s", bak_path);
+ if (pathjoin(fullpath, sizeof fullpath, bak_path, fname)
+ >= sizeof fullpath) {
+ rprintf(FERROR, "backup dirname too long\n");
+ return 0;
}
p = fullpath;
- q = &fullpath[strlen(fullpath)]; /* End of bak_path string */
- strcat(fullpath, fname);
+ q = fullpath + strlen(bak_path);
+ if (*q == '/')
+ q++; /* Point past the middle '/' added by pathjoin(). */
/* Make the directories */
while ((p = strchr(p, '/')) != NULL) {
@@ -125,8 +127,7 @@ static int make_bak_dir(char *fname, char *bak_path)
}
}
}
- *p = '/';
- p++;
+ *p++ = '/';
}
return 0;
}
@@ -175,13 +176,10 @@ static int robust_move(char *src, char *dst)
We will move the file to be deleted into a parallel directory tree */
static int keep_backup(char *fname)
{
-
static int initialised;
-
- char keep_name [MAXPATHLEN];
+ char keep_name[MAXPATHLEN];
STRUCT_STAT st;
struct file_struct *file;
-
int kept = 0;
int ret_code;
@@ -206,14 +204,13 @@ static int keep_backup(char *fname)
if (!file) return 1;
/* make a complete pathname for backup file */
- if (backup_dir_len+strlen(fname)+backup_suffix_len > MAXPATHLEN-1) {
+ if (stringjoin(keep_name, sizeof keep_name,
+ backup_dir, "/", fname, backup_suffix, NULL)
+ >= sizeof keep_name) {
rprintf(FERROR, "keep_backup filename too long\n");
return 0;
}
- snprintf(keep_name, sizeof (keep_name), "%s/%s%s",
- backup_dir, fname, backup_suffix);
-
#ifdef HAVE_MKNOD
/* Check to see if this is a device file, or link */
if (IS_DEVICE(file->mode)) {