2008-05-16 19:30:57 +04:00
|
|
|
/*
|
|
|
|
* libcsync -- a library to sync a directory with another
|
|
|
|
*
|
|
|
|
* Copyright (c) 2008 by Andreas Schneider <mail@cynapses.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2012-03-02 19:47:34 +04:00
|
|
|
#include "config.h"
|
|
|
|
|
2008-05-16 19:30:57 +04:00
|
|
|
#ifndef _GNU_SOURCE
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2011-04-06 18:43:04 +04:00
|
|
|
#include <time.h>
|
2008-05-16 19:30:57 +04:00
|
|
|
|
|
|
|
#include "csync_private.h"
|
|
|
|
#include "csync_propagate.h"
|
|
|
|
#include "vio/csync_vio.h"
|
|
|
|
|
|
|
|
#define CSYNC_LOG_CATEGORY_NAME "csync.propagator"
|
|
|
|
#include "csync_log.h"
|
2011-04-06 18:43:04 +04:00
|
|
|
#include "csync_util.h"
|
2008-05-16 19:30:57 +04:00
|
|
|
|
2008-05-20 15:56:43 +04:00
|
|
|
static int _csync_cleanup_cmp(const void *a, const void *b) {
|
|
|
|
csync_file_stat_t *st_a, *st_b;
|
|
|
|
|
|
|
|
st_a = (csync_file_stat_t *) a;
|
|
|
|
st_b = (csync_file_stat_t *) b;
|
|
|
|
|
|
|
|
return strcmp(st_a->path, st_b->path);
|
|
|
|
}
|
|
|
|
|
2012-07-04 15:56:24 +04:00
|
|
|
static bool _push_to_tmp_first(CSYNC *ctx)
|
|
|
|
{
|
|
|
|
if( ctx->current == REMOTE_REPLICA ) return true; /* Always push to tmp for destination local file system */
|
|
|
|
|
|
|
|
/* If destination is the remote replica check if the switch is set. */
|
|
|
|
if( !ctx->module.capabilities.atomar_copy_support ) return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-05-20 16:01:04 +04:00
|
|
|
static int _csync_push_file(CSYNC *ctx, csync_file_stat_t *st) {
|
2008-05-19 13:16:51 +04:00
|
|
|
enum csync_replica_e srep = -1;
|
|
|
|
enum csync_replica_e drep = -1;
|
|
|
|
enum csync_replica_e rep_bak = -1;
|
2008-05-16 19:30:57 +04:00
|
|
|
|
|
|
|
char *suri = NULL;
|
|
|
|
char *duri = NULL;
|
|
|
|
char *turi = NULL;
|
|
|
|
char *tdir = NULL;
|
|
|
|
|
|
|
|
csync_vio_handle_t *sfp = NULL;
|
|
|
|
csync_vio_handle_t *dfp = NULL;
|
|
|
|
|
|
|
|
csync_vio_file_stat_t *tstat = NULL;
|
|
|
|
|
2008-07-18 13:35:02 +04:00
|
|
|
char errbuf[256] = {0};
|
2008-05-16 19:30:57 +04:00
|
|
|
char buf[MAX_XFER_BUF_SIZE] = {0};
|
|
|
|
ssize_t bread = 0;
|
|
|
|
ssize_t bwritten = 0;
|
|
|
|
struct timeval times[2];
|
|
|
|
|
|
|
|
int rc = -1;
|
2008-06-09 18:43:57 +04:00
|
|
|
int count = 0;
|
2008-06-16 18:40:25 +04:00
|
|
|
int flags = 0;
|
2008-05-16 19:30:57 +04:00
|
|
|
|
|
|
|
rep_bak = ctx->replica;
|
|
|
|
|
|
|
|
switch (ctx->current) {
|
|
|
|
case LOCAL_REPLICA:
|
|
|
|
srep = ctx->local.type;
|
|
|
|
drep = ctx->remote.type;
|
|
|
|
if (asprintf(&suri, "%s/%s", ctx->local.uri, st->path) < 0) {
|
|
|
|
rc = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (asprintf(&duri, "%s/%s", ctx->remote.uri, st->path) < 0) {
|
|
|
|
rc = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
break;
|
2012-10-19 16:23:20 +04:00
|
|
|
case REMOTE_REPLICA:
|
2008-05-16 19:30:57 +04:00
|
|
|
srep = ctx->remote.type;
|
|
|
|
drep = ctx->local.type;
|
|
|
|
if (asprintf(&suri, "%s/%s", ctx->remote.uri, st->path) < 0) {
|
|
|
|
rc = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (asprintf(&duri, "%s/%s", ctx->local.uri, st->path) < 0) {
|
|
|
|
rc = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Open the source file */
|
|
|
|
ctx->replica = srep;
|
2008-06-16 18:40:25 +04:00
|
|
|
flags = O_RDONLY|O_NOFOLLOW;
|
2012-10-15 23:27:17 +04:00
|
|
|
#ifdef O_NOATIME
|
2008-06-16 19:48:48 +04:00
|
|
|
/* O_NOATIME can only be set by the owner of the file or the superuser */
|
2008-11-13 16:08:26 +03:00
|
|
|
if (st->uid == ctx->pwd.uid || ctx->pwd.euid == 0) {
|
2008-06-16 18:40:25 +04:00
|
|
|
flags |= O_NOATIME;
|
|
|
|
}
|
2012-10-15 23:27:17 +04:00
|
|
|
#endif
|
2008-11-12 23:14:35 +03:00
|
|
|
sfp = csync_vio_open(ctx, suri, flags, 0);
|
2008-05-16 19:30:57 +04:00
|
|
|
if (sfp == NULL) {
|
2008-05-19 18:29:01 +04:00
|
|
|
if (errno == ENOMEM) {
|
|
|
|
rc = -1;
|
|
|
|
} else {
|
|
|
|
rc = 1;
|
|
|
|
}
|
2012-03-07 18:42:07 +04:00
|
|
|
|
|
|
|
strerror_r(errno, errbuf, sizeof(errbuf));
|
2008-07-18 13:35:02 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_ERROR,
|
|
|
|
"file: %s, command: open(O_RDONLY), error: %s",
|
2012-03-07 18:42:07 +04:00
|
|
|
suri, errbuf );
|
|
|
|
|
2008-05-16 19:30:57 +04:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2013-03-07 16:34:41 +04:00
|
|
|
if (_push_to_tmp_first(ctx)) {
|
|
|
|
/* create the temporary file name */
|
|
|
|
if (asprintf(&turi, "%s.XXXXXX", duri) < 0) {
|
|
|
|
rc = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
2008-11-13 17:11:02 +03:00
|
|
|
|
2013-03-07 16:34:41 +04:00
|
|
|
/* We just want a random file name here, open checks if the file exists. */
|
|
|
|
if (c_tmpname(turi) < 0) {
|
|
|
|
rc = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* write to the target file directly as the HTTP server does it atomically */
|
|
|
|
if (asprintf(&turi, "%s", duri) < 0) {
|
|
|
|
rc = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_TRACE,
|
|
|
|
"Remote repository atomar push enabled for %s.", turi );
|
2008-11-13 17:11:02 +03:00
|
|
|
}
|
2008-06-05 14:02:37 +04:00
|
|
|
|
2008-06-06 12:28:53 +04:00
|
|
|
/* Create the destination file */
|
2008-05-16 19:30:57 +04:00
|
|
|
ctx->replica = drep;
|
2008-09-05 15:28:05 +04:00
|
|
|
while ((dfp = csync_vio_open(ctx, turi, O_CREAT|O_EXCL|O_WRONLY|O_NOCTTY,
|
|
|
|
C_FILE_MODE)) == NULL) {
|
2008-06-04 20:19:14 +04:00
|
|
|
switch (errno) {
|
2008-06-06 12:27:15 +04:00
|
|
|
case EEXIST:
|
2008-06-06 15:23:42 +04:00
|
|
|
if (count++ > 10) {
|
2008-09-05 15:28:05 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_ERROR,
|
|
|
|
"file: %s, command: open(O_CREAT), error: max count exceeded",
|
|
|
|
duri);
|
2008-06-06 15:23:42 +04:00
|
|
|
rc = 1;
|
|
|
|
goto out;
|
|
|
|
}
|
2013-03-07 16:34:41 +04:00
|
|
|
if(_push_to_tmp_first(ctx)) {
|
|
|
|
if (c_tmpname(turi) < 0) {
|
|
|
|
rc = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
2008-11-13 17:11:02 +03:00
|
|
|
}
|
2008-06-06 12:27:15 +04:00
|
|
|
break;
|
2008-06-04 20:19:14 +04:00
|
|
|
case ENOENT:
|
2008-06-06 12:28:53 +04:00
|
|
|
/* get the directory name */
|
|
|
|
tdir = c_dirname(turi);
|
|
|
|
if (tdir == NULL) {
|
|
|
|
rc = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2008-06-24 20:02:00 +04:00
|
|
|
if (csync_vio_mkdirs(ctx, tdir, C_DIR_MODE) < 0) {
|
2012-03-07 18:42:07 +04:00
|
|
|
strerror_r(errno, errbuf, sizeof(errbuf));
|
2008-07-18 13:35:02 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_WARN,
|
|
|
|
"dir: %s, command: mkdirs, error: %s",
|
2012-03-07 18:42:07 +04:00
|
|
|
tdir, errbuf);
|
2008-06-06 12:28:53 +04:00
|
|
|
}
|
2008-06-04 20:19:14 +04:00
|
|
|
break;
|
|
|
|
case ENOMEM:
|
|
|
|
rc = -1;
|
2012-03-07 18:42:07 +04:00
|
|
|
strerror_r(errno, errbuf, sizeof(errbuf));
|
2008-07-18 13:35:02 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_ERROR,
|
|
|
|
"file: %s, command: open(O_CREAT), error: %s",
|
2012-03-07 18:42:07 +04:00
|
|
|
turi, errbuf);
|
2008-06-04 20:19:14 +04:00
|
|
|
goto out;
|
|
|
|
break;
|
|
|
|
default:
|
2012-03-07 18:42:07 +04:00
|
|
|
strerror_r(errno, errbuf, sizeof(errbuf));
|
2008-07-18 13:35:02 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_ERROR,
|
|
|
|
"file: %s, command: open(O_CREAT), error: %s",
|
2012-03-07 18:42:07 +04:00
|
|
|
turi, errbuf);
|
2008-06-04 20:19:14 +04:00
|
|
|
rc = 1;
|
|
|
|
goto out;
|
|
|
|
break;
|
2008-05-19 18:29:01 +04:00
|
|
|
}
|
2008-06-04 20:19:14 +04:00
|
|
|
|
2008-05-16 19:30:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* copy file */
|
|
|
|
for (;;) {
|
|
|
|
ctx->replica = srep;
|
|
|
|
bread = csync_vio_read(ctx, sfp, buf, MAX_XFER_BUF_SIZE);
|
|
|
|
|
|
|
|
if (bread < 0) {
|
|
|
|
/* read error */
|
2012-03-07 18:42:07 +04:00
|
|
|
strerror_r(errno, errbuf, sizeof(errbuf));
|
2008-07-18 13:35:02 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_ERROR,
|
|
|
|
"file: %s, command: read, error: %s",
|
2012-03-07 18:42:07 +04:00
|
|
|
suri, errbuf);
|
2008-05-16 19:30:57 +04:00
|
|
|
rc = 1;
|
|
|
|
goto out;
|
|
|
|
} else if (bread == 0) {
|
|
|
|
/* done */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx->replica = drep;
|
2008-05-19 13:20:46 +04:00
|
|
|
bwritten = csync_vio_write(ctx, dfp, buf, bread);
|
2008-05-16 19:30:57 +04:00
|
|
|
|
|
|
|
if (bwritten < 0 || bread != bwritten) {
|
2012-03-07 18:42:07 +04:00
|
|
|
strerror_r(errno, errbuf, sizeof(errbuf));
|
2008-06-24 20:01:43 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_ERROR,
|
2008-06-27 20:52:09 +04:00
|
|
|
"file: %s, command: write, error: bread = %zu, bwritten = %zu - %s",
|
2008-07-18 13:35:02 +04:00
|
|
|
duri,
|
|
|
|
bread,
|
|
|
|
bwritten,
|
2012-03-07 18:42:07 +04:00
|
|
|
errbuf);
|
2008-05-16 19:30:57 +04:00
|
|
|
rc = 1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-18 18:30:00 +04:00
|
|
|
ctx->replica = srep;
|
2008-06-28 17:33:52 +04:00
|
|
|
if (csync_vio_close(ctx, sfp) < 0) {
|
2012-03-07 18:42:07 +04:00
|
|
|
strerror_r(errno, errbuf, sizeof(errbuf));
|
2008-06-28 17:33:52 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_ERROR,
|
|
|
|
"file: %s, command: close, error: %s",
|
2008-07-18 13:35:02 +04:00
|
|
|
suri,
|
2012-03-07 18:42:07 +04:00
|
|
|
errbuf);
|
2008-06-28 17:33:52 +04:00
|
|
|
}
|
2008-06-18 18:30:00 +04:00
|
|
|
sfp = NULL;
|
|
|
|
|
|
|
|
ctx->replica = drep;
|
2008-06-28 17:33:52 +04:00
|
|
|
if (csync_vio_close(ctx, dfp) < 0) {
|
|
|
|
dfp = NULL;
|
|
|
|
switch (errno) {
|
2008-08-22 17:26:02 +04:00
|
|
|
/* stop if no space left or quota exceeded */
|
|
|
|
case ENOSPC:
|
2008-06-28 17:33:52 +04:00
|
|
|
case EDQUOT:
|
2012-03-07 18:42:07 +04:00
|
|
|
strerror_r(errno, errbuf, sizeof(errbuf));
|
2008-06-28 17:33:52 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_ERROR,
|
|
|
|
"file: %s, command: close, error: %s",
|
2008-07-18 13:35:02 +04:00
|
|
|
turi,
|
2012-03-07 18:42:07 +04:00
|
|
|
errbuf);
|
2008-06-28 17:33:52 +04:00
|
|
|
rc = -1;
|
|
|
|
goto out;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_ERROR,
|
|
|
|
"file: %s, command: close, error: %s",
|
2008-07-18 13:35:02 +04:00
|
|
|
turi,
|
|
|
|
strerror_r(errno, errbuf, sizeof(errbuf)));
|
2008-06-28 17:33:52 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2008-06-18 18:30:00 +04:00
|
|
|
dfp = NULL;
|
|
|
|
|
2008-06-09 18:43:57 +04:00
|
|
|
/*
|
|
|
|
* Check filesize
|
|
|
|
*/
|
2008-05-16 19:30:57 +04:00
|
|
|
ctx->replica = drep;
|
|
|
|
tstat = csync_vio_file_stat_new();
|
2008-06-24 20:01:43 +04:00
|
|
|
if (tstat == NULL) {
|
2012-03-07 18:42:07 +04:00
|
|
|
strerror_r(errno, errbuf, sizeof(errbuf));
|
2008-07-18 13:35:02 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_ERROR,
|
|
|
|
"file: %s, command: stat, error: %s",
|
|
|
|
turi,
|
2012-03-07 18:42:07 +04:00
|
|
|
errbuf);
|
2008-06-24 20:01:43 +04:00
|
|
|
rc = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2008-05-16 19:30:57 +04:00
|
|
|
if (csync_vio_stat(ctx, turi, tstat) < 0) {
|
2008-05-19 18:29:01 +04:00
|
|
|
switch (errno) {
|
|
|
|
case ENOMEM:
|
|
|
|
rc = -1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
rc = 1;
|
|
|
|
break;
|
|
|
|
}
|
2012-03-07 18:42:07 +04:00
|
|
|
strerror_r(errno, errbuf, sizeof(errbuf));
|
2008-07-18 13:35:02 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_ERROR,
|
|
|
|
"file: %s, command: stat, error: %s",
|
|
|
|
turi,
|
2012-03-07 18:42:07 +04:00
|
|
|
errbuf);
|
2008-05-16 19:30:57 +04:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (st->size != tstat->size) {
|
2008-09-05 15:28:05 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_ERROR,
|
|
|
|
"file: %s, error: incorrect filesize (size: %jd should be %jd)",
|
|
|
|
turi, tstat->size, st->size);
|
2008-05-16 19:30:57 +04:00
|
|
|
rc = 1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2013-03-07 16:34:41 +04:00
|
|
|
if (_push_to_tmp_first(ctx)) {
|
|
|
|
/* override original file */
|
|
|
|
ctx->replica = drep;
|
|
|
|
if (csync_vio_rename(ctx, turi, duri) < 0) {
|
|
|
|
switch (errno) {
|
2008-05-19 18:29:01 +04:00
|
|
|
case ENOMEM:
|
|
|
|
rc = -1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
rc = 1;
|
|
|
|
break;
|
2013-03-07 16:34:41 +04:00
|
|
|
}
|
2013-03-19 16:56:20 +04:00
|
|
|
strerror_r(errno, errbuf, sizeof(errbuf));
|
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_ERROR,
|
|
|
|
"file: %s, command: rename, error: %s",
|
|
|
|
duri,
|
|
|
|
errbuf);
|
|
|
|
goto out;
|
2008-05-19 18:29:01 +04:00
|
|
|
}
|
2008-05-16 19:30:57 +04:00
|
|
|
}
|
|
|
|
|
2008-06-24 20:02:00 +04:00
|
|
|
/* set mode only if it is not the default mode */
|
|
|
|
if ((st->mode & 07777) != C_FILE_MODE) {
|
|
|
|
if (csync_vio_chmod(ctx, duri, st->mode) < 0) {
|
|
|
|
switch (errno) {
|
|
|
|
case ENOMEM:
|
|
|
|
rc = -1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
rc = 1;
|
|
|
|
break;
|
|
|
|
}
|
2012-03-07 18:42:07 +04:00
|
|
|
strerror_r(errno, errbuf, sizeof(errbuf));
|
2008-07-18 13:35:02 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_ERROR,
|
|
|
|
"file: %s, command: chmod, error: %s",
|
|
|
|
duri,
|
2012-03-07 18:42:07 +04:00
|
|
|
errbuf);
|
2008-06-24 20:02:00 +04:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-09 19:16:44 +04:00
|
|
|
/* set owner and group if possible */
|
2008-11-13 16:08:26 +03:00
|
|
|
if (ctx->pwd.euid == 0) {
|
2008-07-03 13:34:34 +04:00
|
|
|
csync_vio_chown(ctx, duri, st->uid, st->gid);
|
|
|
|
}
|
2008-06-09 19:16:44 +04:00
|
|
|
|
2008-05-16 19:30:57 +04:00
|
|
|
/* sync time */
|
|
|
|
times[0].tv_sec = times[1].tv_sec = st->modtime;
|
|
|
|
times[0].tv_usec = times[1].tv_usec = 0;
|
|
|
|
|
2008-05-19 13:21:44 +04:00
|
|
|
ctx->replica = drep;
|
2008-05-16 19:30:57 +04:00
|
|
|
csync_vio_utimes(ctx, duri, times);
|
|
|
|
|
2008-09-02 13:43:29 +04:00
|
|
|
/* set instruction for the statedb merger */
|
2008-06-18 12:44:40 +04:00
|
|
|
st->instruction = CSYNC_INSTRUCTION_UPDATED;
|
2008-05-16 19:30:57 +04:00
|
|
|
|
2011-04-12 19:06:18 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_DEBUG, "PUSHED file: %s", duri);
|
2008-05-16 19:30:57 +04:00
|
|
|
|
|
|
|
rc = 0;
|
|
|
|
|
|
|
|
out:
|
|
|
|
ctx->replica = srep;
|
|
|
|
csync_vio_close(ctx, sfp);
|
|
|
|
|
|
|
|
ctx->replica = drep;
|
|
|
|
csync_vio_close(ctx, dfp);
|
|
|
|
|
|
|
|
csync_vio_file_stat_destroy(tstat);
|
|
|
|
|
2008-09-02 13:43:29 +04:00
|
|
|
/* set instruction for the statedb merger */
|
2008-06-06 12:17:37 +04:00
|
|
|
if (rc != 0) {
|
2008-06-28 19:18:10 +04:00
|
|
|
st->instruction = CSYNC_INSTRUCTION_ERROR;
|
2012-10-19 20:34:12 +04:00
|
|
|
if (turi != NULL) {
|
|
|
|
csync_vio_unlink(ctx, turi);
|
|
|
|
}
|
2008-06-06 12:17:37 +04:00
|
|
|
}
|
|
|
|
|
2008-05-16 19:30:57 +04:00
|
|
|
SAFE_FREE(suri);
|
|
|
|
SAFE_FREE(duri);
|
|
|
|
SAFE_FREE(turi);
|
|
|
|
SAFE_FREE(tdir);
|
|
|
|
|
2009-01-23 16:07:34 +03:00
|
|
|
ctx->replica = rep_bak;
|
|
|
|
|
2008-05-16 19:30:57 +04:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2013-03-01 12:59:55 +04:00
|
|
|
static int _backup_path(char** duri, const char* uri, const char* path)
|
2011-04-06 18:43:04 +04:00
|
|
|
{
|
|
|
|
int rc=0;
|
|
|
|
C_PATHINFO *info=NULL;
|
2012-02-04 15:37:33 +04:00
|
|
|
|
2011-04-06 18:43:04 +04:00
|
|
|
struct tm *curtime;
|
|
|
|
time_t sec;
|
|
|
|
char timestring[16];
|
|
|
|
time(&sec);
|
|
|
|
curtime = localtime(&sec);
|
|
|
|
strftime(timestring, 16, "%Y%m%d-%H%M%S",curtime);
|
2012-02-04 15:37:33 +04:00
|
|
|
|
2011-04-06 18:43:04 +04:00
|
|
|
info=c_split_path(path);
|
2011-04-06 19:05:31 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_TRACE,"directory: %s",info->directory);
|
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_TRACE,"filename : %s",info->filename);
|
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_TRACE,"extension: %s",info->extension);
|
2012-02-04 15:37:33 +04:00
|
|
|
|
2011-04-06 18:43:04 +04:00
|
|
|
if (asprintf(duri, "%s/%s%s_conflict-%s%s", uri,info->directory ,info->filename,timestring,info->extension) < 0) {
|
2012-02-04 15:37:33 +04:00
|
|
|
rc = -1;
|
2011-04-06 18:43:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
SAFE_FREE(info);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int _csync_backup_file(CSYNC *ctx, csync_file_stat_t *st) {
|
|
|
|
enum csync_replica_e drep = -1;
|
|
|
|
enum csync_replica_e rep_bak = -1;
|
|
|
|
|
|
|
|
char *suri = NULL;
|
|
|
|
char *duri = NULL;
|
|
|
|
|
|
|
|
char errbuf[256] = {0};
|
|
|
|
|
|
|
|
int rc = -1;
|
|
|
|
|
|
|
|
rep_bak = ctx->replica;
|
|
|
|
|
|
|
|
if(st->instruction==CSYNC_INSTRUCTION_CONFLICT)
|
|
|
|
{
|
2011-04-06 19:05:31 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_TRACE,"CSYNC_INSTRUCTION_CONFLICT");
|
2011-04-06 18:43:04 +04:00
|
|
|
switch (ctx->current) {
|
|
|
|
case LOCAL_REPLICA:
|
|
|
|
drep = ctx->remote.type;
|
|
|
|
if (asprintf(&suri, "%s/%s", ctx->remote.uri, st->path) < 0) {
|
|
|
|
rc = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2013-03-01 12:59:55 +04:00
|
|
|
if (_backup_path(&duri, ctx->remote.uri,st->path) < 0) {
|
2011-04-06 18:43:04 +04:00
|
|
|
rc = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
break;
|
2012-10-19 16:23:20 +04:00
|
|
|
case REMOTE_REPLICA:
|
2011-04-06 18:43:04 +04:00
|
|
|
drep = ctx->local.type;
|
|
|
|
if (asprintf(&suri, "%s/%s", ctx->local.uri, st->path) < 0) {
|
|
|
|
rc = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2013-03-01 12:59:55 +04:00
|
|
|
if ( _backup_path(&duri, ctx->local.uri, st->path) < 0) {
|
2011-04-06 18:43:04 +04:00
|
|
|
rc = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
{
|
2011-04-06 19:05:31 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_TRACE,"instruction not allowed: %i %s",st->instruction,csync_instruction_str(st->instruction));
|
2011-04-06 18:43:04 +04:00
|
|
|
rc = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2011-04-06 19:05:31 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_TRACE,"suri: %s",suri);
|
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_TRACE,"duri: %s",duri);
|
2011-04-06 18:43:04 +04:00
|
|
|
|
|
|
|
|
|
|
|
/* rename the older file to conflict */
|
|
|
|
ctx->replica = drep;
|
|
|
|
if (csync_vio_rename(ctx, suri, duri) < 0) {
|
|
|
|
switch (errno) {
|
|
|
|
case ENOMEM:
|
|
|
|
rc = -1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
rc = 1;
|
|
|
|
break;
|
|
|
|
}
|
2012-03-07 18:42:07 +04:00
|
|
|
strerror_r(errno, errbuf, sizeof(errbuf));
|
2011-04-06 18:43:04 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_ERROR,
|
|
|
|
"file: %s, command: rename, error: %s",
|
|
|
|
duri,
|
2012-03-07 18:42:07 +04:00
|
|
|
errbuf);
|
2011-04-06 18:43:04 +04:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* set instruction for the statedb merger */
|
2011-04-12 12:09:41 +04:00
|
|
|
st->instruction = CSYNC_INSTRUCTION_NONE;
|
|
|
|
|
2011-04-12 19:06:18 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_DEBUG, "BACKUP file: %s", duri);
|
2011-04-06 18:43:04 +04:00
|
|
|
|
|
|
|
rc = 0;
|
|
|
|
|
|
|
|
out:
|
|
|
|
/* set instruction for the statedb merger */
|
|
|
|
if (rc != 0) {
|
|
|
|
st->instruction = CSYNC_INSTRUCTION_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
SAFE_FREE(suri);
|
|
|
|
SAFE_FREE(duri);
|
|
|
|
|
|
|
|
ctx->replica = rep_bak;
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2008-05-20 16:01:04 +04:00
|
|
|
static int _csync_new_file(CSYNC *ctx, csync_file_stat_t *st) {
|
2008-05-16 19:30:57 +04:00
|
|
|
int rc = -1;
|
|
|
|
|
2008-05-20 16:01:04 +04:00
|
|
|
rc = _csync_push_file(ctx, st);
|
2008-05-16 19:30:57 +04:00
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2008-05-20 16:01:04 +04:00
|
|
|
static int _csync_sync_file(CSYNC *ctx, csync_file_stat_t *st) {
|
2008-05-16 19:30:57 +04:00
|
|
|
int rc = -1;
|
|
|
|
|
2008-05-20 16:01:04 +04:00
|
|
|
rc = _csync_push_file(ctx, st);
|
2008-05-16 19:30:57 +04:00
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2011-04-06 18:43:04 +04:00
|
|
|
static int _csync_conflict_file(CSYNC *ctx, csync_file_stat_t *st) {
|
|
|
|
int rc = -1;
|
|
|
|
|
|
|
|
rc = _csync_backup_file(ctx, st);
|
|
|
|
|
|
|
|
if(rc>=0)
|
|
|
|
{
|
|
|
|
rc = _csync_push_file(ctx, st);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2008-05-20 16:01:04 +04:00
|
|
|
static int _csync_remove_file(CSYNC *ctx, csync_file_stat_t *st) {
|
2008-07-18 13:35:02 +04:00
|
|
|
char errbuf[256] = {0};
|
2008-05-16 19:30:57 +04:00
|
|
|
char *uri = NULL;
|
2008-05-19 18:29:01 +04:00
|
|
|
int rc = -1;
|
2008-05-16 19:30:57 +04:00
|
|
|
|
|
|
|
switch (ctx->current) {
|
|
|
|
case LOCAL_REPLICA:
|
|
|
|
if (asprintf(&uri, "%s/%s", ctx->local.uri, st->path) < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
break;
|
2012-10-19 16:23:20 +04:00
|
|
|
case REMOTE_REPLICA:
|
2008-05-16 19:30:57 +04:00
|
|
|
if (asprintf(&uri, "%s/%s", ctx->remote.uri, st->path) < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-05-19 18:29:01 +04:00
|
|
|
if (csync_vio_unlink(ctx, uri) < 0) {
|
|
|
|
switch (errno) {
|
|
|
|
case ENOMEM:
|
|
|
|
rc = -1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
rc = 1;
|
|
|
|
break;
|
|
|
|
}
|
2012-03-07 18:42:07 +04:00
|
|
|
strerror_r(errno, errbuf, sizeof(errbuf));
|
2008-07-18 13:35:02 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_ERROR,
|
|
|
|
"file: %s, command: unlink, error: %s",
|
|
|
|
uri,
|
2012-03-07 18:42:07 +04:00
|
|
|
errbuf);
|
2008-05-19 18:29:01 +04:00
|
|
|
goto out;
|
|
|
|
}
|
2008-05-16 19:30:57 +04:00
|
|
|
|
2008-09-02 13:43:29 +04:00
|
|
|
/* set instruction for the statedb merger */
|
2008-06-18 11:56:08 +04:00
|
|
|
st->instruction = CSYNC_INSTRUCTION_DELETED;
|
2008-05-16 19:30:57 +04:00
|
|
|
|
2011-04-12 19:06:18 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_DEBUG, "REMOVED file: %s", uri);
|
2008-05-16 19:30:57 +04:00
|
|
|
|
2008-05-19 18:29:01 +04:00
|
|
|
rc = 0;
|
|
|
|
out:
|
|
|
|
SAFE_FREE(uri);
|
2008-06-28 19:18:10 +04:00
|
|
|
|
2008-09-02 13:42:34 +04:00
|
|
|
/* set instruction for the statedb merger */
|
|
|
|
if (rc != 0) {
|
|
|
|
/* Write file to statedb, to try to sync again on the next run. */
|
|
|
|
st->instruction = CSYNC_INSTRUCTION_NONE;
|
|
|
|
}
|
2008-06-28 19:18:10 +04:00
|
|
|
|
2008-05-19 18:29:01 +04:00
|
|
|
return rc;
|
2008-05-16 19:30:57 +04:00
|
|
|
}
|
|
|
|
|
2008-05-20 16:01:04 +04:00
|
|
|
static int _csync_new_dir(CSYNC *ctx, csync_file_stat_t *st) {
|
2008-09-11 16:16:04 +04:00
|
|
|
enum csync_replica_e dest = -1;
|
2008-05-16 19:30:57 +04:00
|
|
|
enum csync_replica_e replica_bak;
|
2008-07-18 13:35:02 +04:00
|
|
|
char errbuf[256] = {0};
|
2008-05-19 18:29:01 +04:00
|
|
|
char *uri = NULL;
|
2008-05-16 19:30:57 +04:00
|
|
|
struct timeval times[2];
|
2008-05-19 18:29:01 +04:00
|
|
|
int rc = -1;
|
2008-05-16 19:30:57 +04:00
|
|
|
|
|
|
|
replica_bak = ctx->replica;
|
|
|
|
|
|
|
|
switch (ctx->current) {
|
|
|
|
case LOCAL_REPLICA:
|
|
|
|
dest = ctx->remote.type;
|
2008-05-19 18:29:01 +04:00
|
|
|
if (asprintf(&uri, "%s/%s", ctx->remote.uri, st->path) < 0) {
|
2008-05-16 19:30:57 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
break;
|
2012-10-19 16:23:20 +04:00
|
|
|
case REMOTE_REPLICA:
|
2008-05-16 19:30:57 +04:00
|
|
|
dest = ctx->local.type;
|
2008-05-19 18:29:01 +04:00
|
|
|
if (asprintf(&uri, "%s/%s", ctx->local.uri, st->path) < 0) {
|
2008-05-16 19:30:57 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx->replica = dest;
|
2008-06-24 20:02:00 +04:00
|
|
|
if (csync_vio_mkdirs(ctx, uri, C_DIR_MODE) < 0) {
|
2008-05-19 18:29:01 +04:00
|
|
|
switch (errno) {
|
|
|
|
case ENOMEM:
|
|
|
|
rc = -1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
rc = 1;
|
|
|
|
break;
|
|
|
|
}
|
2012-03-07 18:42:07 +04:00
|
|
|
strerror_r(errno, errbuf, sizeof(errbuf));
|
2008-07-18 13:35:02 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_ERROR,
|
|
|
|
"dir: %s, command: mkdirs, error: %s",
|
|
|
|
uri,
|
2012-03-07 18:42:07 +04:00
|
|
|
errbuf);
|
2008-05-19 18:29:01 +04:00
|
|
|
goto out;
|
|
|
|
}
|
2008-05-16 19:30:57 +04:00
|
|
|
|
2008-06-24 20:02:00 +04:00
|
|
|
/* chmod is if it is not the default mode */
|
|
|
|
if ((st->mode & 07777) != C_DIR_MODE) {
|
|
|
|
if (csync_vio_chmod(ctx, uri, st->mode) < 0) {
|
|
|
|
switch (errno) {
|
|
|
|
case ENOMEM:
|
|
|
|
rc = -1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
rc = 1;
|
|
|
|
break;
|
|
|
|
}
|
2012-03-07 18:42:07 +04:00
|
|
|
strerror_r(errno, errbuf, sizeof(errbuf));
|
2008-07-18 13:35:02 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_ERROR,
|
|
|
|
"dir: %s, command: chmod, error: %s",
|
|
|
|
uri,
|
2012-03-07 18:42:07 +04:00
|
|
|
errbuf);
|
2008-06-24 20:02:00 +04:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
2008-06-05 16:43:28 +04:00
|
|
|
|
2008-06-09 19:16:44 +04:00
|
|
|
/* set owner and group if possible */
|
2008-11-13 16:08:26 +03:00
|
|
|
if (ctx->pwd.euid == 0) {
|
2008-07-03 13:34:34 +04:00
|
|
|
csync_vio_chown(ctx, uri, st->uid, st->gid);
|
|
|
|
}
|
2008-06-09 19:16:44 +04:00
|
|
|
|
2008-05-16 19:30:57 +04:00
|
|
|
times[0].tv_sec = times[1].tv_sec = st->modtime;
|
|
|
|
times[0].tv_usec = times[1].tv_usec = 0;
|
|
|
|
|
2008-05-19 18:29:01 +04:00
|
|
|
csync_vio_utimes(ctx, uri, times);
|
2008-05-16 19:30:57 +04:00
|
|
|
|
2008-09-02 13:43:29 +04:00
|
|
|
/* set instruction for the statedb merger */
|
2008-06-18 12:44:40 +04:00
|
|
|
st->instruction = CSYNC_INSTRUCTION_UPDATED;
|
2008-05-16 19:30:57 +04:00
|
|
|
|
2011-04-12 19:06:18 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_DEBUG, "CREATED dir: %s", uri);
|
2008-05-16 19:30:57 +04:00
|
|
|
ctx->replica = replica_bak;
|
|
|
|
|
2008-05-19 18:29:01 +04:00
|
|
|
rc = 0;
|
|
|
|
out:
|
|
|
|
SAFE_FREE(uri);
|
2008-06-28 19:18:10 +04:00
|
|
|
|
2008-09-02 13:42:34 +04:00
|
|
|
/* set instruction for the statedb merger */
|
|
|
|
if (rc != 0) {
|
|
|
|
st->instruction = CSYNC_INSTRUCTION_ERROR;
|
|
|
|
}
|
2008-06-28 19:18:10 +04:00
|
|
|
|
2008-05-19 18:29:01 +04:00
|
|
|
return rc;
|
2008-05-16 19:30:57 +04:00
|
|
|
}
|
|
|
|
|
2008-05-20 16:01:04 +04:00
|
|
|
static int _csync_sync_dir(CSYNC *ctx, csync_file_stat_t *st) {
|
2008-09-11 16:16:04 +04:00
|
|
|
enum csync_replica_e dest = -1;
|
2008-05-16 19:30:57 +04:00
|
|
|
enum csync_replica_e replica_bak;
|
2008-07-18 13:35:02 +04:00
|
|
|
char errbuf[256] = {0};
|
2008-05-19 18:29:01 +04:00
|
|
|
char *uri = NULL;
|
2008-05-16 19:30:57 +04:00
|
|
|
struct timeval times[2];
|
2008-05-19 18:29:01 +04:00
|
|
|
int rc = -1;
|
2008-05-16 19:30:57 +04:00
|
|
|
|
|
|
|
replica_bak = ctx->replica;
|
|
|
|
|
|
|
|
switch (ctx->current) {
|
|
|
|
case LOCAL_REPLICA:
|
|
|
|
dest = ctx->remote.type;
|
2008-05-19 18:29:01 +04:00
|
|
|
if (asprintf(&uri, "%s/%s", ctx->remote.uri, st->path) < 0) {
|
2008-05-16 19:30:57 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
break;
|
2012-10-19 16:23:20 +04:00
|
|
|
case REMOTE_REPLICA:
|
2008-05-16 19:30:57 +04:00
|
|
|
dest = ctx->local.type;
|
2008-05-19 18:29:01 +04:00
|
|
|
if (asprintf(&uri, "%s/%s", ctx->local.uri, st->path) < 0) {
|
2008-05-16 19:30:57 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx->replica = dest;
|
|
|
|
|
2008-06-24 20:02:00 +04:00
|
|
|
/* chmod is if it is not the default mode */
|
|
|
|
if ((st->mode & 07777) != C_DIR_MODE) {
|
|
|
|
if (csync_vio_chmod(ctx, uri, st->mode) < 0) {
|
|
|
|
switch (errno) {
|
|
|
|
case ENOMEM:
|
|
|
|
rc = -1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
rc = 1;
|
|
|
|
break;
|
|
|
|
}
|
2012-03-07 18:42:07 +04:00
|
|
|
strerror_r(errno, errbuf, sizeof(errbuf));
|
2008-07-18 13:35:02 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_ERROR,
|
|
|
|
"dir: %s, command: chmod, error: %s",
|
|
|
|
uri,
|
2012-03-07 18:42:07 +04:00
|
|
|
errbuf);
|
2008-06-24 20:02:00 +04:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-09 19:16:44 +04:00
|
|
|
/* set owner and group if possible */
|
2008-11-13 16:08:26 +03:00
|
|
|
if (ctx->pwd.euid == 0) {
|
2008-07-03 13:34:34 +04:00
|
|
|
csync_vio_chown(ctx, uri, st->uid, st->gid);
|
|
|
|
}
|
2008-06-09 19:16:44 +04:00
|
|
|
|
2008-05-16 19:30:57 +04:00
|
|
|
times[0].tv_sec = times[1].tv_sec = st->modtime;
|
|
|
|
times[0].tv_usec = times[1].tv_usec = 0;
|
|
|
|
|
2008-05-19 18:29:01 +04:00
|
|
|
csync_vio_utimes(ctx, uri, times);
|
2008-05-16 19:30:57 +04:00
|
|
|
|
2008-09-02 13:43:29 +04:00
|
|
|
/* set instruction for the statedb merger */
|
2008-06-28 19:18:10 +04:00
|
|
|
st->instruction = CSYNC_INSTRUCTION_UPDATED;
|
2008-05-16 19:30:57 +04:00
|
|
|
|
2011-04-12 19:06:18 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_DEBUG, "SYNCED dir: %s", uri);
|
2008-05-16 19:30:57 +04:00
|
|
|
ctx->replica = replica_bak;
|
|
|
|
|
2008-05-19 18:29:01 +04:00
|
|
|
rc = 0;
|
|
|
|
out:
|
|
|
|
SAFE_FREE(uri);
|
2008-06-28 19:18:10 +04:00
|
|
|
|
2008-09-02 13:43:29 +04:00
|
|
|
/* set instruction for the statedb merger */
|
2008-06-28 19:18:10 +04:00
|
|
|
if (rc != 0) {
|
|
|
|
st->instruction = CSYNC_INSTRUCTION_ERROR;
|
|
|
|
}
|
|
|
|
|
2008-05-19 18:29:01 +04:00
|
|
|
return rc;
|
2008-05-16 19:30:57 +04:00
|
|
|
}
|
|
|
|
|
2008-05-20 16:01:04 +04:00
|
|
|
static int _csync_remove_dir(CSYNC *ctx, csync_file_stat_t *st) {
|
2008-05-20 15:56:43 +04:00
|
|
|
c_list_t *list = NULL;
|
2008-07-18 13:35:02 +04:00
|
|
|
char errbuf[256] = {0};
|
2008-05-19 18:29:01 +04:00
|
|
|
char *uri = NULL;
|
|
|
|
int rc = -1;
|
2008-05-16 19:30:57 +04:00
|
|
|
|
|
|
|
switch (ctx->current) {
|
|
|
|
case LOCAL_REPLICA:
|
2008-05-19 18:29:01 +04:00
|
|
|
if (asprintf(&uri, "%s/%s", ctx->local.uri, st->path) < 0) {
|
2008-05-16 19:30:57 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
break;
|
2012-10-19 16:23:20 +04:00
|
|
|
case REMOTE_REPLICA:
|
2008-05-19 18:29:01 +04:00
|
|
|
if (asprintf(&uri, "%s/%s", ctx->remote.uri, st->path) < 0) {
|
2008-05-16 19:30:57 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-05-19 18:29:01 +04:00
|
|
|
if (csync_vio_rmdir(ctx, uri) < 0) {
|
|
|
|
switch (errno) {
|
|
|
|
case ENOMEM:
|
2012-03-07 18:42:07 +04:00
|
|
|
strerror_r(errno, errbuf, sizeof(errbuf));
|
2008-07-18 13:35:02 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_FATAL,
|
|
|
|
"dir: %s, command: rmdir, error: %s",
|
|
|
|
uri,
|
2012-03-07 18:42:07 +04:00
|
|
|
errbuf);
|
2008-05-19 18:29:01 +04:00
|
|
|
rc = -1;
|
|
|
|
break;
|
|
|
|
case ENOTEMPTY:
|
2008-05-20 15:56:43 +04:00
|
|
|
switch (ctx->current) {
|
|
|
|
case LOCAL_REPLICA:
|
|
|
|
list = c_list_prepend(ctx->local.list, (void *) st);
|
|
|
|
if (list == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
ctx->local.list = list;
|
|
|
|
break;
|
2012-10-19 16:23:20 +04:00
|
|
|
case REMOTE_REPLICA:
|
2008-05-20 15:56:43 +04:00
|
|
|
list = c_list_prepend(ctx->remote.list, (void *) st);
|
|
|
|
if (list == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
ctx->remote.list = list;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
rc = 0;
|
2008-05-19 18:29:01 +04:00
|
|
|
break;
|
|
|
|
default:
|
2012-03-07 18:42:07 +04:00
|
|
|
strerror_r(errno, errbuf, sizeof(errbuf));
|
2008-07-18 13:35:02 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_ERROR,
|
|
|
|
"dir: %s, command: rmdir, error: %s",
|
|
|
|
uri,
|
2012-03-07 18:42:07 +04:00
|
|
|
errbuf);
|
2008-05-19 18:29:01 +04:00
|
|
|
rc = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
goto out;
|
|
|
|
}
|
2008-05-16 19:30:57 +04:00
|
|
|
|
2008-09-02 13:43:29 +04:00
|
|
|
/* set instruction for the statedb merger */
|
2008-06-18 11:56:08 +04:00
|
|
|
st->instruction = CSYNC_INSTRUCTION_DELETED;
|
2008-05-16 19:30:57 +04:00
|
|
|
|
2011-04-12 19:06:18 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_DEBUG, "REMOVED dir: %s", uri);
|
2008-05-16 19:30:57 +04:00
|
|
|
|
2008-05-19 18:29:01 +04:00
|
|
|
rc = 0;
|
|
|
|
out:
|
|
|
|
SAFE_FREE(uri);
|
2008-06-28 19:18:10 +04:00
|
|
|
|
2008-09-02 13:43:29 +04:00
|
|
|
/* set instruction for the statedb merger */
|
2008-06-28 19:18:10 +04:00
|
|
|
if (rc != 0) {
|
|
|
|
st->instruction = CSYNC_INSTRUCTION_NONE;
|
|
|
|
}
|
|
|
|
|
2008-05-19 18:29:01 +04:00
|
|
|
return rc;
|
2008-05-16 19:30:57 +04:00
|
|
|
}
|
|
|
|
|
2008-05-20 15:56:43 +04:00
|
|
|
static int _csync_propagation_cleanup(CSYNC *ctx) {
|
|
|
|
c_list_t *list = NULL;
|
|
|
|
c_list_t *walk = NULL;
|
|
|
|
char *uri = NULL;
|
|
|
|
char *dir = NULL;
|
|
|
|
|
|
|
|
switch (ctx->current) {
|
|
|
|
case LOCAL_REPLICA:
|
|
|
|
list = ctx->local.list;
|
|
|
|
uri = ctx->local.uri;
|
|
|
|
break;
|
2012-10-19 16:23:20 +04:00
|
|
|
case REMOTE_REPLICA:
|
2008-05-20 15:56:43 +04:00
|
|
|
list = ctx->remote.list;
|
|
|
|
uri = ctx->remote.uri;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (list == NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
list = c_list_sort(list, _csync_cleanup_cmp);
|
|
|
|
if (list == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (walk = c_list_last(list); walk != NULL; walk = c_list_prev(walk)) {
|
|
|
|
csync_file_stat_t *st = NULL;
|
|
|
|
|
|
|
|
st = (csync_file_stat_t *) walk->data;
|
|
|
|
|
|
|
|
if (asprintf(&dir, "%s/%s", uri, st->path) < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-06-28 19:18:10 +04:00
|
|
|
if (csync_vio_rmdir(ctx, dir) < 0) {
|
2008-07-09 12:10:00 +04:00
|
|
|
/* Write it back to statedb, that we try to delete it next time. */
|
2008-06-28 19:18:10 +04:00
|
|
|
st->instruction = CSYNC_INSTRUCTION_NONE;
|
|
|
|
} else {
|
|
|
|
st->instruction = CSYNC_INSTRUCTION_DELETED;
|
|
|
|
}
|
2008-05-20 15:56:43 +04:00
|
|
|
|
2011-04-12 19:06:18 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_DEBUG, "CLEANUP dir: %s", dir);
|
2008-05-20 15:56:43 +04:00
|
|
|
|
|
|
|
SAFE_FREE(dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-05-20 16:01:04 +04:00
|
|
|
static int _csync_propagation_file_visitor(void *obj, void *data) {
|
2008-05-16 19:30:57 +04:00
|
|
|
csync_file_stat_t *st = NULL;
|
|
|
|
CSYNC *ctx = NULL;
|
|
|
|
|
|
|
|
st = (csync_file_stat_t *) obj;
|
|
|
|
ctx = (CSYNC *) data;
|
|
|
|
|
|
|
|
switch(st->type) {
|
2008-05-26 19:09:42 +04:00
|
|
|
case CSYNC_FTW_TYPE_SLINK:
|
|
|
|
break;
|
2008-05-16 19:30:57 +04:00
|
|
|
case CSYNC_FTW_TYPE_FILE:
|
|
|
|
switch (st->instruction) {
|
|
|
|
case CSYNC_INSTRUCTION_NEW:
|
2008-05-20 16:01:04 +04:00
|
|
|
if (_csync_new_file(ctx, st) < 0) {
|
2008-05-19 13:21:44 +04:00
|
|
|
goto err;
|
|
|
|
}
|
2008-05-16 19:30:57 +04:00
|
|
|
break;
|
|
|
|
case CSYNC_INSTRUCTION_SYNC:
|
2008-05-20 16:01:04 +04:00
|
|
|
if (_csync_sync_file(ctx, st) < 0) {
|
2008-05-19 13:30:41 +04:00
|
|
|
goto err;
|
|
|
|
}
|
2008-05-16 19:30:57 +04:00
|
|
|
break;
|
|
|
|
case CSYNC_INSTRUCTION_REMOVE:
|
2008-05-20 16:01:04 +04:00
|
|
|
if (_csync_remove_file(ctx, st) < 0) {
|
2008-05-19 13:30:41 +04:00
|
|
|
goto err;
|
|
|
|
}
|
2008-05-16 19:30:57 +04:00
|
|
|
break;
|
2011-04-06 18:43:04 +04:00
|
|
|
case CSYNC_INSTRUCTION_CONFLICT:
|
2011-04-06 19:05:31 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_TRACE,"case CSYNC_INSTRUCTION_CONFLICT: %s",st->path);
|
2011-04-06 18:43:04 +04:00
|
|
|
if (_csync_conflict_file(ctx, st) < 0) {
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
break;
|
2008-05-16 19:30:57 +04:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2008-05-19 13:39:11 +04:00
|
|
|
case CSYNC_FTW_TYPE_DIR:
|
|
|
|
/*
|
|
|
|
* We have to walk over the files first. If you create or rename a file
|
|
|
|
* in a directory on unix. The modification time of the directory gets
|
|
|
|
* changed.
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
err:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-05-20 16:01:04 +04:00
|
|
|
static int _csync_propagation_dir_visitor(void *obj, void *data) {
|
2008-05-19 13:39:11 +04:00
|
|
|
csync_file_stat_t *st = NULL;
|
|
|
|
CSYNC *ctx = NULL;
|
|
|
|
|
|
|
|
st = (csync_file_stat_t *) obj;
|
|
|
|
ctx = (CSYNC *) data;
|
|
|
|
|
|
|
|
switch(st->type) {
|
2008-05-26 19:09:42 +04:00
|
|
|
case CSYNC_FTW_TYPE_SLINK:
|
|
|
|
/* FIXME: implement symlink support */
|
|
|
|
break;
|
2008-05-19 13:39:11 +04:00
|
|
|
case CSYNC_FTW_TYPE_FILE:
|
|
|
|
break;
|
2008-05-16 19:30:57 +04:00
|
|
|
case CSYNC_FTW_TYPE_DIR:
|
|
|
|
switch (st->instruction) {
|
|
|
|
case CSYNC_INSTRUCTION_NEW:
|
2008-05-20 16:01:04 +04:00
|
|
|
if (_csync_new_dir(ctx, st) < 0) {
|
2008-05-16 19:30:57 +04:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CSYNC_INSTRUCTION_SYNC:
|
2008-05-20 16:01:04 +04:00
|
|
|
if (_csync_sync_dir(ctx, st) < 0) {
|
2008-05-16 19:30:57 +04:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
break;
|
2011-04-06 18:43:04 +04:00
|
|
|
case CSYNC_INSTRUCTION_CONFLICT:
|
2011-04-12 19:06:18 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_TRACE,"directory attributes different");
|
2011-04-06 18:43:04 +04:00
|
|
|
if (_csync_sync_dir(ctx, st) < 0) {
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
break;
|
2008-05-16 19:30:57 +04:00
|
|
|
case CSYNC_INSTRUCTION_REMOVE:
|
2008-05-20 16:01:04 +04:00
|
|
|
if (_csync_remove_dir(ctx, st) < 0) {
|
2008-05-19 13:39:11 +04:00
|
|
|
goto err;
|
|
|
|
}
|
2008-05-16 19:30:57 +04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
err:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-12-14 01:29:16 +03:00
|
|
|
int csync_propagate_files(CSYNC *ctx) {
|
2008-05-16 19:30:57 +04:00
|
|
|
c_rbtree_t *tree = NULL;
|
|
|
|
|
|
|
|
switch (ctx->current) {
|
|
|
|
case LOCAL_REPLICA:
|
|
|
|
tree = ctx->local.tree;
|
|
|
|
break;
|
2012-10-19 16:23:20 +04:00
|
|
|
case REMOTE_REPLICA:
|
2008-05-16 19:30:57 +04:00
|
|
|
tree = ctx->remote.tree;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-05-20 16:01:04 +04:00
|
|
|
if (c_rbtree_walk(tree, (void *) ctx, _csync_propagation_file_visitor) < 0) {
|
2008-05-19 13:39:11 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-05-20 16:01:04 +04:00
|
|
|
if (c_rbtree_walk(tree, (void *) ctx, _csync_propagation_dir_visitor) < 0) {
|
2008-05-16 19:30:57 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-05-20 15:56:43 +04:00
|
|
|
if (_csync_propagation_cleanup(ctx) < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-05-16 19:30:57 +04:00
|
|
|
return 0;
|
|
|
|
}
|
2008-05-19 18:29:01 +04:00
|
|
|
|
2009-05-13 12:12:07 +04:00
|
|
|
/* vim: set ts=8 sw=2 et cindent: */
|