2008-02-27 20:56:47 +03:00
|
|
|
/*
|
|
|
|
* libcsync -- a library to sync a directory with another
|
|
|
|
*
|
2013-07-23 19:31:55 +04:00
|
|
|
* Copyright (c) 2008-2013 by Andreas Schneider <asn@cryptomilk.org>
|
|
|
|
* Copyright (c) 2012-2013 by Klaas Freitag <freitag@owncloud.com>
|
2008-02-27 20:56:47 +03:00
|
|
|
*
|
2013-07-23 19:31:55 +04:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2008-02-27 20:56:47 +03:00
|
|
|
*
|
2013-07-23 19:31:55 +04:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2008-07-10 12:25:12 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2013-07-23 19:31:55 +04:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2008-02-27 20:56:47 +03:00
|
|
|
*
|
2013-07-23 19:31:55 +04:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2008-02-27 20:56:47 +03:00
|
|
|
*/
|
|
|
|
|
2014-01-15 15:20:03 +04:00
|
|
|
#include "config_csync.h"
|
2012-03-02 19:47:34 +04:00
|
|
|
|
2008-06-09 19:19:12 +04:00
|
|
|
#ifndef _GNU_SOURCE
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#endif
|
2008-04-28 14:40:32 +04:00
|
|
|
|
2016-02-10 21:24:40 +03:00
|
|
|
#include <assert.h>
|
2008-02-27 20:56:47 +03:00
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2008-04-26 12:43:22 +04:00
|
|
|
#include <time.h>
|
2008-11-13 16:08:26 +03:00
|
|
|
#include <sys/types.h>
|
2011-04-06 18:43:04 +04:00
|
|
|
#include <stdbool.h>
|
2008-02-27 20:56:47 +03:00
|
|
|
|
|
|
|
#include "c_lib.h"
|
|
|
|
#include "csync_private.h"
|
2008-03-25 18:22:51 +03:00
|
|
|
#include "csync_exclude.h"
|
2008-07-09 11:57:19 +04:00
|
|
|
#include "csync_statedb.h"
|
2008-05-05 12:48:05 +04:00
|
|
|
#include "csync_time.h"
|
2008-04-28 18:49:21 +04:00
|
|
|
#include "csync_util.h"
|
2012-03-02 16:38:39 +04:00
|
|
|
#include "csync_misc.h"
|
2012-12-07 16:02:46 +04:00
|
|
|
#include "std/c_private.h"
|
2013-04-26 12:45:14 +04:00
|
|
|
|
2008-04-23 14:12:48 +04:00
|
|
|
#include "csync_update.h"
|
2008-05-15 15:50:34 +04:00
|
|
|
#include "csync_reconcile.h"
|
2008-04-23 14:12:48 +04:00
|
|
|
|
2008-04-22 17:58:06 +04:00
|
|
|
#include "vio/csync_vio.h"
|
|
|
|
|
2008-02-27 20:56:47 +03:00
|
|
|
#include "csync_log.h"
|
2013-01-04 23:45:10 +04:00
|
|
|
#include "csync_rename.h"
|
2014-03-24 14:35:19 +04:00
|
|
|
#include "c_jhash.h"
|
|
|
|
|
2008-06-02 17:11:45 +04:00
|
|
|
static int _key_cmp(const void *key, const void *data) {
|
2008-04-28 15:42:10 +04:00
|
|
|
uint64_t a;
|
|
|
|
csync_file_stat_t *b;
|
|
|
|
|
2008-06-27 20:01:19 +04:00
|
|
|
a = *(uint64_t *) (key);
|
2008-04-28 15:42:10 +04:00
|
|
|
b = (csync_file_stat_t *) data;
|
|
|
|
|
|
|
|
if (a < b->phash) {
|
|
|
|
return -1;
|
|
|
|
} else if (a > b->phash) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-06-02 17:11:45 +04:00
|
|
|
static int _data_cmp(const void *key, const void *data) {
|
2008-04-28 15:42:10 +04:00
|
|
|
csync_file_stat_t *a, *b;
|
|
|
|
|
|
|
|
a = (csync_file_stat_t *) key;
|
|
|
|
b = (csync_file_stat_t *) data;
|
|
|
|
|
|
|
|
if (a->phash < b->phash) {
|
|
|
|
return -1;
|
|
|
|
} else if (a->phash > b->phash) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-11-15 20:47:04 +03:00
|
|
|
void csync_create(CSYNC **csync, const char *local) {
|
2008-02-27 20:56:47 +03:00
|
|
|
CSYNC *ctx;
|
2008-04-28 14:35:29 +04:00
|
|
|
size_t len = 0;
|
2008-02-27 20:56:47 +03:00
|
|
|
|
|
|
|
ctx = c_malloc(sizeof(CSYNC));
|
2008-04-22 19:23:26 +04:00
|
|
|
|
2013-08-18 19:26:45 +04:00
|
|
|
ctx->status_code = CSYNC_STATUS_OK;
|
2012-04-17 14:31:27 +04:00
|
|
|
|
2008-04-28 14:35:29 +04:00
|
|
|
/* remove trailing slashes */
|
|
|
|
len = strlen(local);
|
|
|
|
while(len > 0 && local[len - 1] == '/') --len;
|
|
|
|
|
|
|
|
ctx->local.uri = c_strndup(local, len);
|
2008-04-22 19:23:26 +04:00
|
|
|
|
2013-03-12 20:01:39 +04:00
|
|
|
ctx->status_code = CSYNC_STATUS_OK;
|
2008-02-27 20:56:47 +03:00
|
|
|
|
2013-03-11 22:55:07 +04:00
|
|
|
ctx->current_fs = NULL;
|
2013-04-20 14:06:59 +04:00
|
|
|
|
2013-05-08 17:28:26 +04:00
|
|
|
ctx->abort = false;
|
|
|
|
|
2015-07-15 12:29:33 +03:00
|
|
|
ctx->ignore_hidden_files = true;
|
|
|
|
|
2008-02-27 20:56:47 +03:00
|
|
|
*csync = ctx;
|
|
|
|
}
|
|
|
|
|
2016-07-10 13:54:33 +03:00
|
|
|
void csync_init(CSYNC *ctx, const char *db_file) {
|
2016-02-10 21:24:40 +03:00
|
|
|
assert(ctx);
|
2008-02-27 20:56:47 +03:00
|
|
|
/* Do not initialize twice */
|
|
|
|
|
2016-02-10 21:24:40 +03:00
|
|
|
assert(!(ctx->status & CSYNC_STATUS_INIT));
|
|
|
|
ctx->status_code = CSYNC_STATUS_OK;
|
2014-02-28 11:49:57 +04:00
|
|
|
|
2008-04-28 16:08:07 +04:00
|
|
|
ctx->local.type = LOCAL_REPLICA;
|
|
|
|
|
2014-06-03 19:52:07 +04:00
|
|
|
ctx->remote.type = REMOTE_REPLICA;
|
2008-03-20 12:34:58 +03:00
|
|
|
|
2016-07-17 22:13:17 +03:00
|
|
|
SAFE_FREE(ctx->statedb.file);
|
2016-07-10 13:54:33 +03:00
|
|
|
ctx->statedb.file = c_strdup(db_file);
|
|
|
|
|
2016-02-10 21:24:40 +03:00
|
|
|
c_rbtree_create(&ctx->local.tree, _key_cmp, _data_cmp);
|
|
|
|
c_rbtree_create(&ctx->remote.tree, _key_cmp, _data_cmp);
|
2008-04-28 15:42:10 +04:00
|
|
|
|
2014-09-19 12:58:52 +04:00
|
|
|
ctx->remote.root_perms = 0;
|
|
|
|
|
2008-05-27 16:15:44 +04:00
|
|
|
ctx->status = CSYNC_STATUS_INIT;
|
2008-02-27 20:56:47 +03:00
|
|
|
|
2012-06-20 12:40:40 +04:00
|
|
|
/* initialize random generator */
|
|
|
|
srand(time(NULL));
|
2008-02-27 20:56:47 +03:00
|
|
|
}
|
|
|
|
|
2008-04-23 14:12:48 +04:00
|
|
|
int csync_update(CSYNC *ctx) {
|
2008-05-15 14:03:05 +04:00
|
|
|
int rc = -1;
|
2008-05-15 21:18:41 +04:00
|
|
|
struct timespec start, finish;
|
2013-05-04 18:10:11 +04:00
|
|
|
|
2008-04-26 12:43:22 +04:00
|
|
|
if (ctx == NULL) {
|
|
|
|
errno = EBADF;
|
|
|
|
return -1;
|
|
|
|
}
|
2013-08-18 19:26:45 +04:00
|
|
|
ctx->status_code = CSYNC_STATUS_OK;
|
2008-04-26 12:43:22 +04:00
|
|
|
|
2016-07-10 13:54:33 +03:00
|
|
|
/* Path of database file is set in csync_init */
|
|
|
|
if (csync_statedb_load(ctx, ctx->statedb.file, &ctx->statedb.db) < 0) {
|
2013-08-05 16:58:43 +04:00
|
|
|
rc = -1;
|
|
|
|
return rc;
|
2016-07-10 13:54:33 +03:00
|
|
|
}
|
2013-08-05 16:58:43 +04:00
|
|
|
|
2013-03-12 20:01:39 +04:00
|
|
|
ctx->status_code = CSYNC_STATUS_OK;
|
|
|
|
|
2013-03-01 12:59:55 +04:00
|
|
|
csync_memstat_check();
|
2008-04-28 18:49:21 +04:00
|
|
|
|
2014-03-27 20:11:19 +04:00
|
|
|
if (!ctx->excludes) {
|
2017-03-31 17:13:01 +03:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_INFO, "No exclude file loaded or defined!");
|
2014-03-27 20:11:19 +04:00
|
|
|
}
|
|
|
|
|
2008-05-15 14:03:05 +04:00
|
|
|
/* update detection for local replica */
|
2012-02-04 16:24:53 +04:00
|
|
|
csync_gettime(&start);
|
2008-04-28 16:08:07 +04:00
|
|
|
ctx->current = LOCAL_REPLICA;
|
|
|
|
ctx->replica = ctx->local.type;
|
2008-05-15 14:03:05 +04:00
|
|
|
|
|
|
|
rc = csync_ftw(ctx, ctx->local.uri, csync_walker, MAX_DEPTH);
|
2013-06-06 11:34:54 +04:00
|
|
|
if (rc < 0) {
|
2014-10-22 17:41:29 +04:00
|
|
|
if(ctx->status_code == CSYNC_STATUS_OK) {
|
2013-08-18 19:26:45 +04:00
|
|
|
ctx->status_code = csync_errno_to_status(errno, CSYNC_STATUS_UPDATE_ERROR);
|
2014-10-22 17:41:29 +04:00
|
|
|
}
|
|
|
|
goto out;
|
2013-06-06 11:34:54 +04:00
|
|
|
}
|
2008-05-15 14:03:05 +04:00
|
|
|
|
2012-02-04 16:24:53 +04:00
|
|
|
csync_gettime(&finish);
|
2008-05-15 21:18:41 +04:00
|
|
|
|
2008-04-26 12:43:22 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_DEBUG,
|
2013-03-12 20:01:39 +04:00
|
|
|
"Update detection for local replica took %.2f seconds walking %zu files.",
|
|
|
|
c_secdiff(finish, start), c_rbtree_size(ctx->local.tree));
|
2013-03-01 12:59:55 +04:00
|
|
|
csync_memstat_check();
|
2008-04-26 12:43:22 +04:00
|
|
|
|
2008-05-15 14:03:05 +04:00
|
|
|
/* update detection for remote replica */
|
2014-06-03 19:52:07 +04:00
|
|
|
csync_gettime(&start);
|
|
|
|
ctx->current = REMOTE_REPLICA;
|
|
|
|
ctx->replica = ctx->remote.type;
|
2008-05-15 14:03:05 +04:00
|
|
|
|
2016-11-15 20:47:04 +03:00
|
|
|
rc = csync_ftw(ctx, "", csync_walker, MAX_DEPTH);
|
2014-06-03 19:52:07 +04:00
|
|
|
if (rc < 0) {
|
2014-10-22 17:41:29 +04:00
|
|
|
if(ctx->status_code == CSYNC_STATUS_OK) {
|
2014-06-03 19:52:07 +04:00
|
|
|
ctx->status_code = csync_errno_to_status(errno, CSYNC_STATUS_UPDATE_ERROR);
|
2014-10-22 17:41:29 +04:00
|
|
|
}
|
|
|
|
goto out;
|
2014-06-03 19:52:07 +04:00
|
|
|
}
|
2008-05-15 14:03:05 +04:00
|
|
|
|
2014-06-03 19:52:07 +04:00
|
|
|
csync_gettime(&finish);
|
2008-04-23 14:12:48 +04:00
|
|
|
|
2014-06-03 19:52:07 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_DEBUG,
|
|
|
|
"Update detection for remote replica took %.2f seconds "
|
|
|
|
"walking %zu files.",
|
|
|
|
c_secdiff(finish, start), c_rbtree_size(ctx->remote.tree));
|
|
|
|
csync_memstat_check();
|
2008-05-15 14:03:05 +04:00
|
|
|
|
2008-05-27 16:15:44 +04:00
|
|
|
ctx->status |= CSYNC_STATUS_UPDATE;
|
2008-04-29 13:20:52 +04:00
|
|
|
|
2014-10-22 17:41:29 +04:00
|
|
|
rc = 0;
|
|
|
|
|
|
|
|
out:
|
|
|
|
csync_statedb_close(ctx);
|
|
|
|
return rc;
|
2008-04-23 14:12:48 +04:00
|
|
|
}
|
|
|
|
|
2008-05-15 15:50:34 +04:00
|
|
|
int csync_reconcile(CSYNC *ctx) {
|
|
|
|
int rc = -1;
|
2008-05-15 21:18:41 +04:00
|
|
|
struct timespec start, finish;
|
2008-05-15 15:50:34 +04:00
|
|
|
|
|
|
|
if (ctx == NULL) {
|
|
|
|
errno = EBADF;
|
|
|
|
return -1;
|
|
|
|
}
|
2013-03-12 20:01:39 +04:00
|
|
|
ctx->status_code = CSYNC_STATUS_OK;
|
2008-05-15 15:50:34 +04:00
|
|
|
|
|
|
|
/* Reconciliation for local replica */
|
2012-02-04 16:24:53 +04:00
|
|
|
csync_gettime(&start);
|
2008-05-15 21:42:03 +04:00
|
|
|
|
2014-10-22 17:41:29 +04:00
|
|
|
if (csync_statedb_load(ctx, ctx->statedb.file, &ctx->statedb.db) < 0) {
|
|
|
|
rc = -1;
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2008-05-15 15:50:34 +04:00
|
|
|
ctx->current = LOCAL_REPLICA;
|
|
|
|
ctx->replica = ctx->local.type;
|
|
|
|
|
|
|
|
rc = csync_reconcile_updates(ctx);
|
|
|
|
|
2012-02-04 16:24:53 +04:00
|
|
|
csync_gettime(&finish);
|
2008-05-15 21:42:03 +04:00
|
|
|
|
2008-05-15 15:50:34 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_DEBUG,
|
2009-04-22 15:41:46 +04:00
|
|
|
"Reconciliation for local replica took %.2f seconds visiting %zu files.",
|
|
|
|
c_secdiff(finish, start), c_rbtree_size(ctx->local.tree));
|
2008-05-15 15:50:34 +04:00
|
|
|
|
|
|
|
if (rc < 0) {
|
2013-04-06 20:47:08 +04:00
|
|
|
if (!CSYNC_STATUS_IS_OK(ctx->status_code)) {
|
2013-08-18 19:26:45 +04:00
|
|
|
ctx->status_code = csync_errno_to_status( errno, CSYNC_STATUS_RECONCILE_ERROR );
|
2013-04-06 20:47:08 +04:00
|
|
|
}
|
2014-10-22 17:41:29 +04:00
|
|
|
goto out;
|
2008-05-15 15:50:34 +04:00
|
|
|
}
|
|
|
|
|
2014-03-24 14:35:19 +04:00
|
|
|
/* Reconciliation for remote replica */
|
2012-02-04 16:24:53 +04:00
|
|
|
csync_gettime(&start);
|
2008-05-15 21:42:03 +04:00
|
|
|
|
2012-10-19 16:23:20 +04:00
|
|
|
ctx->current = REMOTE_REPLICA;
|
2008-05-15 15:50:34 +04:00
|
|
|
ctx->replica = ctx->remote.type;
|
|
|
|
|
|
|
|
rc = csync_reconcile_updates(ctx);
|
|
|
|
|
2012-02-04 16:24:53 +04:00
|
|
|
csync_gettime(&finish);
|
2008-05-15 21:42:03 +04:00
|
|
|
|
2008-05-15 15:50:34 +04:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_DEBUG,
|
2009-04-22 15:41:46 +04:00
|
|
|
"Reconciliation for remote replica took %.2f seconds visiting %zu files.",
|
|
|
|
c_secdiff(finish, start), c_rbtree_size(ctx->remote.tree));
|
2008-05-15 15:50:34 +04:00
|
|
|
|
|
|
|
if (rc < 0) {
|
2013-04-06 20:47:08 +04:00
|
|
|
if (!CSYNC_STATUS_IS_OK(ctx->status_code)) {
|
2013-08-18 19:26:45 +04:00
|
|
|
ctx->status_code = csync_errno_to_status(errno, CSYNC_STATUS_RECONCILE_ERROR );
|
2013-04-06 20:47:08 +04:00
|
|
|
}
|
2014-10-22 17:41:29 +04:00
|
|
|
goto out;
|
2008-05-15 15:50:34 +04:00
|
|
|
}
|
|
|
|
|
2008-05-27 16:15:44 +04:00
|
|
|
ctx->status |= CSYNC_STATUS_RECONCILE;
|
2008-05-15 15:50:34 +04:00
|
|
|
|
2014-10-22 17:41:29 +04:00
|
|
|
rc = 0;
|
|
|
|
|
|
|
|
out:
|
|
|
|
csync_statedb_close(ctx);
|
2008-05-15 15:50:34 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-03-19 19:05:23 +04:00
|
|
|
/*
|
|
|
|
* local visitor which calls the user visitor with repacked stat info.
|
|
|
|
*/
|
2012-04-17 14:31:27 +04:00
|
|
|
static int _csync_treewalk_visitor(void *obj, void *data) {
|
2012-12-15 19:34:31 +04:00
|
|
|
int rc = 0;
|
2012-03-30 17:33:13 +04:00
|
|
|
csync_file_stat_t *cur = NULL;
|
|
|
|
CSYNC *ctx = NULL;
|
|
|
|
c_rbtree_visit_func *visitor = NULL;
|
2012-03-19 19:05:23 +04:00
|
|
|
_csync_treewalk_context *twctx = NULL;
|
|
|
|
TREE_WALK_FILE trav;
|
2014-03-24 14:35:19 +04:00
|
|
|
c_rbtree_t *other_tree = NULL;
|
|
|
|
c_rbnode_t *other_node = NULL;
|
2012-03-19 19:05:23 +04:00
|
|
|
|
2012-10-28 14:31:25 +04:00
|
|
|
cur = (csync_file_stat_t *) obj;
|
|
|
|
ctx = (CSYNC *) data;
|
|
|
|
|
2013-04-08 11:11:25 +04:00
|
|
|
if (ctx == NULL) {
|
2013-04-05 17:05:44 +04:00
|
|
|
return -1;
|
|
|
|
}
|
2012-12-03 20:32:08 +04:00
|
|
|
|
2014-03-24 14:35:19 +04:00
|
|
|
/* we need the opposite tree! */
|
|
|
|
switch (ctx->current) {
|
|
|
|
case LOCAL_REPLICA:
|
|
|
|
other_tree = ctx->remote.tree;
|
|
|
|
break;
|
|
|
|
case REMOTE_REPLICA:
|
|
|
|
other_tree = ctx->local.tree;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
other_node = c_rbtree_find(other_tree, &cur->phash);
|
|
|
|
|
|
|
|
if (!other_node) {
|
|
|
|
/* Check the renamed path as well. */
|
|
|
|
int len;
|
|
|
|
uint64_t h = 0;
|
|
|
|
char *renamed_path = csync_rename_adjust_path(ctx, cur->path);
|
|
|
|
|
|
|
|
if (!c_streq(renamed_path, cur->path)) {
|
|
|
|
len = strlen( renamed_path );
|
|
|
|
h = c_jhash64((uint8_t *) renamed_path, len, 0);
|
|
|
|
other_node = c_rbtree_find(other_tree, &h);
|
|
|
|
}
|
|
|
|
SAFE_FREE(renamed_path);
|
|
|
|
}
|
|
|
|
|
2015-05-12 17:32:00 +03:00
|
|
|
if (!other_node) {
|
|
|
|
/* Check the source path as well. */
|
|
|
|
int len;
|
|
|
|
uint64_t h = 0;
|
|
|
|
char *renamed_path = csync_rename_adjust_path_source(ctx, cur->path);
|
|
|
|
|
|
|
|
if (!c_streq(renamed_path, cur->path)) {
|
|
|
|
len = strlen( renamed_path );
|
|
|
|
h = c_jhash64((uint8_t *) renamed_path, len, 0);
|
|
|
|
other_node = c_rbtree_find(other_tree, &h);
|
|
|
|
}
|
|
|
|
SAFE_FREE(renamed_path);
|
|
|
|
}
|
|
|
|
|
2013-04-08 11:11:25 +04:00
|
|
|
if (obj == NULL || data == NULL) {
|
2013-08-18 19:26:45 +04:00
|
|
|
ctx->status_code = CSYNC_STATUS_PARAM_ERROR;
|
2012-04-17 14:31:27 +04:00
|
|
|
return -1;
|
|
|
|
}
|
2013-08-18 19:26:45 +04:00
|
|
|
ctx->status_code = CSYNC_STATUS_OK;
|
2012-04-17 14:31:27 +04:00
|
|
|
|
2012-10-27 17:10:16 +04:00
|
|
|
twctx = (_csync_treewalk_context*) ctx->callbacks.userdata;
|
2012-10-19 21:20:45 +04:00
|
|
|
if (twctx == NULL) {
|
2013-03-12 20:01:39 +04:00
|
|
|
ctx->status_code = CSYNC_STATUS_PARAM_ERROR;
|
2012-10-19 21:20:45 +04:00
|
|
|
return -1;
|
|
|
|
}
|
2012-04-17 14:31:27 +04:00
|
|
|
|
2012-10-19 21:20:45 +04:00
|
|
|
if (twctx->instruction_filter > 0 &&
|
|
|
|
!(twctx->instruction_filter & cur->instruction) ) {
|
2012-03-19 19:05:23 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-10-19 21:20:45 +04:00
|
|
|
visitor = (c_rbtree_visit_func*)(twctx->user_visitor);
|
|
|
|
if (visitor != NULL) {
|
2013-10-25 15:13:39 +04:00
|
|
|
trav.path = cur->path;
|
|
|
|
trav.size = cur->size;
|
|
|
|
trav.modtime = cur->modtime;
|
|
|
|
trav.mode = cur->mode;
|
|
|
|
trav.type = cur->type;
|
|
|
|
trav.instruction = cur->instruction;
|
|
|
|
trav.rename_path = cur->destpath;
|
2013-11-13 17:29:31 +04:00
|
|
|
trav.etag = cur->etag;
|
2013-10-25 15:13:39 +04:00
|
|
|
trav.file_id = cur->file_id;
|
2014-06-06 17:24:17 +04:00
|
|
|
trav.remotePerm = cur->remotePerm;
|
2014-06-03 13:50:13 +04:00
|
|
|
trav.directDownloadUrl = cur->directDownloadUrl;
|
|
|
|
trav.directDownloadCookies = cur->directDownloadCookies;
|
2014-05-06 14:55:54 +04:00
|
|
|
trav.inode = cur->inode;
|
2013-10-25 15:13:39 +04:00
|
|
|
|
2013-12-04 15:18:09 +04:00
|
|
|
trav.error_status = cur->error_status;
|
2015-07-09 16:57:56 +03:00
|
|
|
trav.has_ignored_files = cur->has_ignored_files;
|
2017-06-14 13:14:46 +03:00
|
|
|
trav.checksumHeader = cur->checksumHeader;
|
2012-10-19 21:20:45 +04:00
|
|
|
|
2014-03-24 14:35:19 +04:00
|
|
|
if( other_node ) {
|
|
|
|
csync_file_stat_t *other_stat = (csync_file_stat_t*)other_node->data;
|
2014-04-18 21:16:10 +04:00
|
|
|
trav.other.etag = other_stat->etag;
|
|
|
|
trav.other.file_id = other_stat->file_id;
|
2014-03-24 14:35:19 +04:00
|
|
|
trav.other.instruction = other_stat->instruction;
|
|
|
|
trav.other.modtime = other_stat->modtime;
|
|
|
|
trav.other.size = other_stat->size;
|
|
|
|
} else {
|
|
|
|
trav.other.etag = 0;
|
|
|
|
trav.other.file_id = 0;
|
|
|
|
trav.other.instruction = CSYNC_INSTRUCTION_NONE;
|
|
|
|
trav.other.modtime = 0;
|
|
|
|
trav.other.size = 0;
|
|
|
|
}
|
|
|
|
|
2012-12-15 19:34:31 +04:00
|
|
|
rc = (*visitor)(&trav, twctx->userdata);
|
|
|
|
cur->instruction = trav.instruction;
|
2014-06-03 13:50:13 +04:00
|
|
|
if (trav.etag != cur->etag) { // FIXME It would be nice to have this documented
|
2013-11-13 17:29:31 +04:00
|
|
|
SAFE_FREE(cur->etag);
|
|
|
|
cur->etag = c_strdup(trav.etag);
|
2013-05-03 21:03:55 +04:00
|
|
|
}
|
2014-03-24 14:35:19 +04:00
|
|
|
|
2012-12-15 19:34:31 +04:00
|
|
|
return rc;
|
2012-03-19 19:05:23 +04:00
|
|
|
}
|
2013-03-12 20:01:39 +04:00
|
|
|
ctx->status_code = CSYNC_STATUS_PARAM_ERROR;
|
2012-03-19 19:05:23 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* treewalk function, called from its wrappers below.
|
|
|
|
*
|
|
|
|
* it encapsulates the user visitor function, the filter and the userdata
|
|
|
|
* into a treewalk_context structure and calls the rb treewalk function,
|
|
|
|
* which calls the local _csync_treewalk_visitor in this module.
|
|
|
|
* The user visitor is called from there.
|
|
|
|
*/
|
|
|
|
static int _csync_walk_tree(CSYNC *ctx, c_rbtree_t *tree, csync_treewalk_visit_func *visitor, int filter)
|
|
|
|
{
|
|
|
|
_csync_treewalk_context tw_ctx;
|
|
|
|
int rc = -1;
|
2012-04-17 14:31:27 +04:00
|
|
|
|
|
|
|
if (ctx == NULL) {
|
2013-08-18 18:21:18 +04:00
|
|
|
errno = EBADF;
|
2013-07-10 16:42:12 +04:00
|
|
|
return rc;
|
2012-04-17 14:31:27 +04:00
|
|
|
}
|
|
|
|
|
2013-07-10 16:42:12 +04:00
|
|
|
if (visitor == NULL || tree == NULL) {
|
|
|
|
ctx->status_code = CSYNC_STATUS_PARAM_ERROR;
|
|
|
|
return rc;
|
2012-03-30 17:33:13 +04:00
|
|
|
}
|
|
|
|
|
2012-10-27 17:10:16 +04:00
|
|
|
tw_ctx.userdata = ctx->callbacks.userdata;
|
2012-03-19 19:05:23 +04:00
|
|
|
tw_ctx.user_visitor = visitor;
|
|
|
|
tw_ctx.instruction_filter = filter;
|
|
|
|
|
2012-10-27 17:10:16 +04:00
|
|
|
ctx->callbacks.userdata = &tw_ctx;
|
2012-03-19 19:05:23 +04:00
|
|
|
|
|
|
|
rc = c_rbtree_walk(tree, (void*) ctx, _csync_treewalk_visitor);
|
2012-12-17 20:22:24 +04:00
|
|
|
if( rc < 0 ) {
|
2013-08-18 18:21:18 +04:00
|
|
|
if( ctx->status_code == CSYNC_STATUS_OK )
|
2013-08-18 19:26:45 +04:00
|
|
|
ctx->status_code = csync_errno_to_status(errno, CSYNC_STATUS_TREE_ERROR);
|
2012-12-17 20:22:24 +04:00
|
|
|
}
|
2012-10-27 17:10:16 +04:00
|
|
|
ctx->callbacks.userdata = tw_ctx.userdata;
|
2012-03-19 19:05:23 +04:00
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* wrapper function for treewalk on the remote tree
|
|
|
|
*/
|
|
|
|
int csync_walk_remote_tree(CSYNC *ctx, csync_treewalk_visit_func *visitor, int filter)
|
|
|
|
{
|
|
|
|
c_rbtree_t *tree = NULL;
|
2012-03-30 17:33:13 +04:00
|
|
|
int rc = -1;
|
2012-03-19 19:05:23 +04:00
|
|
|
|
2013-08-18 18:21:18 +04:00
|
|
|
if(ctx != NULL) {
|
2013-07-10 17:04:56 +04:00
|
|
|
ctx->status_code = CSYNC_STATUS_OK;
|
2014-03-24 14:35:19 +04:00
|
|
|
ctx->current = REMOTE_REPLICA;
|
2012-03-19 19:05:23 +04:00
|
|
|
tree = ctx->remote.tree;
|
|
|
|
}
|
2012-04-17 14:31:27 +04:00
|
|
|
|
|
|
|
/* all error handling in the called function */
|
2012-03-30 17:33:13 +04:00
|
|
|
rc = _csync_walk_tree(ctx, tree, visitor, filter);
|
|
|
|
return rc;
|
2012-03-19 19:05:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* wrapper function for treewalk on the local tree
|
|
|
|
*/
|
|
|
|
int csync_walk_local_tree(CSYNC *ctx, csync_treewalk_visit_func *visitor, int filter)
|
|
|
|
{
|
|
|
|
c_rbtree_t *tree = NULL;
|
2012-03-30 17:33:13 +04:00
|
|
|
int rc = -1;
|
2012-03-19 19:05:23 +04:00
|
|
|
|
2013-07-10 17:04:56 +04:00
|
|
|
if (ctx != NULL) {
|
|
|
|
ctx->status_code = CSYNC_STATUS_OK;
|
2014-03-24 14:35:19 +04:00
|
|
|
ctx->current = LOCAL_REPLICA;
|
2012-03-19 19:05:23 +04:00
|
|
|
tree = ctx->local.tree;
|
|
|
|
}
|
2012-04-17 14:31:27 +04:00
|
|
|
|
|
|
|
/* all error handling in the called function */
|
2012-03-30 17:33:13 +04:00
|
|
|
rc = _csync_walk_tree(ctx, tree, visitor, filter);
|
|
|
|
return rc;
|
2012-03-19 19:05:23 +04:00
|
|
|
}
|
|
|
|
|
2008-06-02 17:11:45 +04:00
|
|
|
static void _tree_destructor(void *data) {
|
2008-04-28 15:42:10 +04:00
|
|
|
csync_file_stat_t *freedata = NULL;
|
|
|
|
|
|
|
|
freedata = (csync_file_stat_t *) data;
|
2013-07-02 20:25:17 +04:00
|
|
|
csync_file_stat_free(freedata);
|
2008-04-28 15:42:10 +04:00
|
|
|
}
|
|
|
|
|
2013-07-26 14:37:54 +04:00
|
|
|
/* reset all the list to empty.
|
|
|
|
* used by csync_commit and csync_destroy */
|
|
|
|
static void _csync_clean_ctx(CSYNC *ctx)
|
|
|
|
{
|
|
|
|
/* destroy the rbtrees */
|
|
|
|
if (c_rbtree_size(ctx->local.tree) > 0) {
|
|
|
|
c_rbtree_destroy(ctx->local.tree, _tree_destructor);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c_rbtree_size(ctx->remote.tree) > 0) {
|
|
|
|
c_rbtree_destroy(ctx->remote.tree, _tree_destructor);
|
|
|
|
}
|
|
|
|
|
|
|
|
csync_rename_destroy(ctx);
|
|
|
|
|
|
|
|
/* free memory */
|
|
|
|
c_rbtree_free(ctx->local.tree);
|
|
|
|
c_rbtree_free(ctx->remote.tree);
|
2013-08-16 22:20:20 +04:00
|
|
|
|
2014-09-19 12:58:52 +04:00
|
|
|
SAFE_FREE(ctx->remote.root_perms);
|
2013-07-26 14:37:54 +04:00
|
|
|
}
|
|
|
|
|
2013-04-20 12:51:27 +04:00
|
|
|
int csync_commit(CSYNC *ctx) {
|
|
|
|
int rc = 0;
|
|
|
|
|
2013-04-22 19:05:13 +04:00
|
|
|
if (ctx == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
2013-04-20 12:51:27 +04:00
|
|
|
|
2013-04-20 13:07:20 +04:00
|
|
|
ctx->status_code = CSYNC_STATUS_OK;
|
2013-05-08 17:28:26 +04:00
|
|
|
|
2013-10-31 14:14:21 +04:00
|
|
|
if (ctx->statedb.db != NULL
|
2014-03-26 13:20:30 +04:00
|
|
|
&& csync_statedb_close(ctx) < 0) {
|
2017-03-31 17:13:01 +03:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_WARN, "ERR: closing of statedb failed.");
|
2013-10-31 14:14:21 +04:00
|
|
|
rc = -1;
|
|
|
|
}
|
2013-12-03 17:08:18 +04:00
|
|
|
ctx->statedb.db = NULL;
|
2013-10-31 14:14:21 +04:00
|
|
|
|
2013-10-31 13:05:15 +04:00
|
|
|
_csync_clean_ctx(ctx);
|
|
|
|
|
|
|
|
ctx->remote.read_from_db = 0;
|
2015-04-08 16:30:07 +03:00
|
|
|
ctx->read_remote_from_db = true;
|
|
|
|
ctx->db_is_empty = false;
|
2014-04-25 15:31:44 +04:00
|
|
|
|
2013-10-31 13:05:15 +04:00
|
|
|
|
2013-04-20 12:51:27 +04:00
|
|
|
/* Create new trees */
|
2016-02-10 21:24:40 +03:00
|
|
|
c_rbtree_create(&ctx->local.tree, _key_cmp, _data_cmp);
|
|
|
|
c_rbtree_create(&ctx->remote.tree, _key_cmp, _data_cmp);
|
2013-04-20 12:51:27 +04:00
|
|
|
|
2013-05-06 19:14:17 +04:00
|
|
|
|
2013-04-20 12:51:27 +04:00
|
|
|
ctx->status = CSYNC_STATUS_INIT;
|
2013-04-22 12:22:20 +04:00
|
|
|
SAFE_FREE(ctx->error_string);
|
2013-04-22 17:39:43 +04:00
|
|
|
|
2013-04-24 16:35:19 +04:00
|
|
|
rc = 0;
|
2013-04-20 12:51:27 +04:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
int csync_destroy(CSYNC *ctx) {
|
2014-02-05 20:09:33 +04:00
|
|
|
int rc = 0;
|
2013-04-20 12:51:27 +04:00
|
|
|
|
|
|
|
if (ctx == NULL) {
|
|
|
|
errno = EBADF;
|
|
|
|
return -1;
|
|
|
|
}
|
2013-04-20 13:07:20 +04:00
|
|
|
ctx->status_code = CSYNC_STATUS_OK;
|
2013-04-20 12:51:27 +04:00
|
|
|
|
2013-10-31 14:14:21 +04:00
|
|
|
if (ctx->statedb.db != NULL
|
2014-03-26 13:20:30 +04:00
|
|
|
&& csync_statedb_close(ctx) < 0) {
|
2017-03-31 17:13:01 +03:00
|
|
|
CSYNC_LOG(CSYNC_LOG_PRIORITY_WARN, "ERR: closing of statedb failed.");
|
2013-10-31 14:14:21 +04:00
|
|
|
rc = -1;
|
|
|
|
}
|
2013-12-03 17:08:18 +04:00
|
|
|
ctx->statedb.db = NULL;
|
2013-10-31 14:14:21 +04:00
|
|
|
|
2013-07-26 14:37:54 +04:00
|
|
|
_csync_clean_ctx(ctx);
|
2013-01-04 23:45:10 +04:00
|
|
|
|
2016-09-29 17:36:14 +03:00
|
|
|
SAFE_FREE(ctx->statedb.file);
|
2008-04-23 15:05:40 +04:00
|
|
|
SAFE_FREE(ctx->local.uri);
|
2012-12-14 19:48:47 +04:00
|
|
|
SAFE_FREE(ctx->error_string);
|
2008-02-27 20:56:47 +03:00
|
|
|
|
|
|
|
SAFE_FREE(ctx);
|
|
|
|
|
2014-02-05 20:09:33 +04:00
|
|
|
return rc;
|
2008-02-27 20:56:47 +03:00
|
|
|
}
|
|
|
|
|
2009-03-26 13:09:46 +03:00
|
|
|
void *csync_get_userdata(CSYNC *ctx) {
|
|
|
|
if (ctx == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-10-27 17:10:16 +04:00
|
|
|
return ctx->callbacks.userdata;
|
2009-03-26 13:09:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int csync_set_userdata(CSYNC *ctx, void *userdata) {
|
|
|
|
if (ctx == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-10-27 17:10:16 +04:00
|
|
|
ctx->callbacks.userdata = userdata;
|
2009-03-26 13:09:46 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-06-24 15:36:27 +04:00
|
|
|
csync_auth_callback csync_get_auth_callback(CSYNC *ctx) {
|
2008-05-20 18:33:03 +04:00
|
|
|
if (ctx == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-10-27 17:10:16 +04:00
|
|
|
return ctx->callbacks.auth_function;
|
2012-10-27 17:15:59 +04:00
|
|
|
}
|
|
|
|
|
2008-05-20 18:33:03 +04:00
|
|
|
int csync_set_status(CSYNC *ctx, int status) {
|
|
|
|
if (ctx == NULL || status < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-05-05 13:09:16 +04:00
|
|
|
ctx->status = status;
|
2008-05-20 18:33:03 +04:00
|
|
|
|
|
|
|
return 0;
|
2008-05-05 13:09:16 +04:00
|
|
|
}
|
|
|
|
|
2013-11-25 01:17:36 +04:00
|
|
|
CSYNC_STATUS csync_get_status(CSYNC *ctx) {
|
2008-06-24 13:13:56 +04:00
|
|
|
if (ctx == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-11-25 01:17:36 +04:00
|
|
|
return ctx->status_code;
|
2012-02-27 15:18:02 +04:00
|
|
|
}
|
|
|
|
|
2013-03-13 17:46:08 +04:00
|
|
|
const char *csync_get_status_string(CSYNC *ctx)
|
2012-12-04 16:42:16 +04:00
|
|
|
{
|
2013-03-13 17:46:08 +04:00
|
|
|
return csync_vio_get_status_string(ctx);
|
2012-12-04 16:42:16 +04:00
|
|
|
}
|
|
|
|
|
2013-05-08 19:33:50 +04:00
|
|
|
void csync_request_abort(CSYNC *ctx)
|
2013-05-08 17:28:26 +04:00
|
|
|
{
|
2013-05-16 19:37:30 +04:00
|
|
|
if (ctx != NULL) {
|
2013-05-08 17:28:26 +04:00
|
|
|
ctx->abort = true;
|
2013-05-16 19:37:30 +04:00
|
|
|
}
|
2013-05-08 17:28:26 +04:00
|
|
|
}
|
|
|
|
|
2013-05-08 19:33:50 +04:00
|
|
|
void csync_resume(CSYNC *ctx)
|
|
|
|
{
|
2013-05-16 19:37:30 +04:00
|
|
|
if (ctx != NULL) {
|
2013-05-08 19:33:50 +04:00
|
|
|
ctx->abort = false;
|
2013-05-16 19:37:30 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int csync_abort_requested(CSYNC *ctx)
|
|
|
|
{
|
|
|
|
if (ctx != NULL) {
|
|
|
|
return ctx->abort;
|
|
|
|
} else {
|
|
|
|
return (1 == 0);
|
|
|
|
}
|
2013-05-08 19:33:50 +04:00
|
|
|
}
|
|
|
|
|
2013-07-02 20:25:17 +04:00
|
|
|
void csync_file_stat_free(csync_file_stat_t *st)
|
|
|
|
{
|
|
|
|
if (st) {
|
2014-06-03 13:50:13 +04:00
|
|
|
SAFE_FREE(st->directDownloadUrl);
|
|
|
|
SAFE_FREE(st->directDownloadCookies);
|
2013-11-13 17:29:31 +04:00
|
|
|
SAFE_FREE(st->etag);
|
2013-07-02 20:25:17 +04:00
|
|
|
SAFE_FREE(st->destpath);
|
2017-06-14 13:14:46 +03:00
|
|
|
SAFE_FREE(st->checksumHeader);
|
2013-07-02 20:25:17 +04:00
|
|
|
SAFE_FREE(st);
|
|
|
|
}
|
|
|
|
}
|