1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
|
/*
* Copyright (C) 2016 Fujitsu. All rights reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
* License v2 as published by the Free Software Foundation.
*
* 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., 59 Temple Place - Suite 330,
* Boston, MA 021110-1307, USA.
*/
#include "kerncompat.h"
#include <limits.h>
#include <time.h>
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <uuid/uuid.h>
#include "common/defs.h"
#include "common/messages.h"
#include "common/send-stream.h"
#include "common/path-utils.h"
#include "common/string-utils.h"
#include "cmds/receive-dump.h"
#define PATH_CAT_OR_RET(function_name, outpath, path1, path2, ret) \
({ \
ret = path_cat_out(outpath, path1, path2); \
if (ret < 0) { \
error("%s: path invalid: %s\n", function_name, path2); \
return ret; \
} \
})
enum print_mode {
PRINT_DUMP_NORMAL,
PRINT_DUMP_SUBVOLUME,
PRINT_DUMP_NONEWLINE
};
/*
* Underlying PRINT_DUMP, the only difference is how we handle
* the full path.
*/
__attribute__ ((format (printf, 5, 6)))
static int __print_dump(enum print_mode mode, void *user, const char *path,
const char *title, const char *fmt, ...)
{
struct btrfs_dump_send_args *r = user;
char full_path[PATH_MAX] = {0};
char *out_path;
va_list args;
int ret;
if (mode == PRINT_DUMP_SUBVOLUME) {
PATH_CAT_OR_RET(title, r->full_subvol_path, r->root_path, path, ret);
out_path = r->full_subvol_path;
} else {
PATH_CAT_OR_RET(title, full_path, r->full_subvol_path, path, ret);
out_path = full_path;
}
/* Unified header */
printf("%-16s", title);
ret = string_print_escape_special(out_path);
if (!fmt) {
putchar('\n');
return 0;
}
/* Short paths are aligned to 32 chars; longer paths get a single space */
do {
putchar(' ');
} while (++ret < 32);
va_start(args, fmt);
/* Operation specified ones */
vprintf(fmt, args);
va_end(args);
if (mode != PRINT_DUMP_NONEWLINE)
putchar('\n');
return 0;
}
/* For subvolume/snapshot operation only */
#define PRINT_DUMP_SUBVOL(user, path, title, fmt, ...) \
__print_dump(PRINT_DUMP_SUBVOLUME, user, path, title, fmt, ##__VA_ARGS__)
/* For other operations */
#define PRINT_DUMP(user, path, title, fmt, ...) \
__print_dump(PRINT_DUMP_NORMAL, user, path, title, fmt, ##__VA_ARGS__)
/* For commands that may want to format parts of the line by themselves */
#define PRINT_DUMP_NO_NEWLINE(user, path, title, fmt, ...) \
__print_dump(PRINT_DUMP_NONEWLINE, user, path, title, fmt, ##__VA_ARGS__)
static int print_subvol(const char *path, const u8 *uuid, u64 ctransid,
void *user)
{
char uuid_str[BTRFS_UUID_UNPARSED_SIZE];
uuid_unparse(uuid, uuid_str);
return PRINT_DUMP_SUBVOL(user, path, "subvol", "uuid=%s transid=%llu",
uuid_str, ctransid);
}
static int print_snapshot(const char *path, const u8 *uuid, u64 ctransid,
const u8 *parent_uuid, u64 parent_ctransid,
void *user)
{
char uuid_str[BTRFS_UUID_UNPARSED_SIZE];
char parent_uuid_str[BTRFS_UUID_UNPARSED_SIZE];
int ret;
uuid_unparse(uuid, uuid_str);
uuid_unparse(parent_uuid, parent_uuid_str);
ret = PRINT_DUMP_SUBVOL(user, path, "snapshot",
"uuid=%s transid=%llu parent_uuid=%s parent_transid=%llu",
uuid_str, ctransid, parent_uuid_str,
parent_ctransid);
return ret;
}
static int print_mkfile(const char *path, void *user)
{
return PRINT_DUMP(user, path, "mkfile", NULL);
}
static int print_mkdir(const char *path, void *user)
{
return PRINT_DUMP(user, path, "mkdir", NULL);
}
static int print_mknod(const char *path, u64 mode, u64 dev, void *user)
{
return PRINT_DUMP(user, path, "mknod", "mode=%llo dev=0x%llx", mode,
dev);
}
static int print_mkfifo(const char *path, void *user)
{
return PRINT_DUMP(user, path, "mkfifo", NULL);
}
static int print_mksock(const char *path, void *user)
{
return PRINT_DUMP(user, path, "mksock", NULL);
}
static int print_symlink(const char *path, const char *lnk, void *user)
{
PRINT_DUMP_NO_NEWLINE(user, path, "symlink", "dest=");
string_print_escape_special(lnk);
putchar('\n');
return 0;
}
static int print_rename(const char *from, const char *to, void *user)
{
struct btrfs_dump_send_args *r = user;
char full_to[PATH_MAX];
int ret;
PATH_CAT_OR_RET("rename", full_to, r->full_subvol_path, to, ret);
PRINT_DUMP_NO_NEWLINE(user, from, "rename", "dest=");
string_print_escape_special(full_to);
putchar('\n');
return 0;
}
static int print_link(const char *path, const char *lnk, void *user)
{
PRINT_DUMP_NO_NEWLINE(user, path, "link", "dest=");
string_print_escape_special(lnk);
putchar('\n');
return 0;
}
static int print_unlink(const char *path, void *user)
{
return PRINT_DUMP(user, path, "unlink", NULL);
}
static int print_rmdir(const char *path, void *user)
{
return PRINT_DUMP(user, path, "rmdir", NULL);
}
static int print_write(const char *path, const void *data, u64 offset,
u64 len, void *user)
{
return PRINT_DUMP(user, path, "write", "offset=%llu len=%llu",
offset, len);
}
static int print_clone(const char *path, u64 offset, u64 len,
const u8 *clone_uuid, u64 clone_ctransid,
const char *clone_path, u64 clone_offset,
void *user)
{
struct btrfs_dump_send_args *r = user;
char full_path[PATH_MAX];
int ret;
PATH_CAT_OR_RET("clone", full_path, r->full_subvol_path, clone_path, ret);
PRINT_DUMP_NO_NEWLINE(user, path, "clone", "offset=%llu len=%llu from=", offset, len);
string_print_escape_special(full_path);
putchar(' ');
printf("clone_offset=%llu\n", clone_offset);
return 0;
}
/*
* Xattr names are like paths and can potentially contain special characters,
* xattr values can be arbitrary.
*/
static int print_set_xattr(const char *path, const char *name,
const void *data, int len, void *user)
{
PRINT_DUMP_NO_NEWLINE(user, path, "set_xattr", "name=");
string_print_escape_special(name);
putchar(' ');
string_print_escape_special_len((const char *)data, len);
putchar(' ');
printf("len=%d\n", len);
return 0;
}
static int print_remove_xattr(const char *path, const char *name, void *user)
{
PRINT_DUMP_NO_NEWLINE(user, path, "remove_xattr", "name=");
string_print_escape_special(name);
putchar('\n');
return 0;
}
static int print_truncate(const char *path, u64 size, void *user)
{
return PRINT_DUMP(user, path, "truncate", "size=%llu", size);
}
static int print_chmod(const char *path, u64 mode, void *user)
{
return PRINT_DUMP(user, path, "chmod", "mode=%llo", mode);
}
static int print_chown(const char *path, u64 uid, u64 gid, void *user)
{
return PRINT_DUMP(user, path, "chown", "gid=%llu uid=%llu", gid, uid);
}
static int sprintf_timespec(struct timespec *ts, char *dest, int max_size)
{
struct tm tm;
int ret;
if (!localtime_r(&ts->tv_sec, &tm)) {
error("failed to convert time %lld.%.9ld to local time",
(long long)ts->tv_sec, ts->tv_nsec);
return -EINVAL;
}
ret = strftime(dest, max_size, "%FT%T%z", &tm);
if (ret == 0) {
error(
"time %lld.%ld is too long to convert into readable string",
(long long)ts->tv_sec, ts->tv_nsec);
return -EINVAL;
}
return 0;
}
#define TIME_STRING_MAX 64
static int print_utimes(const char *path, struct timespec *at,
struct timespec *mt, struct timespec *ct,
void *user)
{
char at_str[TIME_STRING_MAX];
char mt_str[TIME_STRING_MAX];
char ct_str[TIME_STRING_MAX];
if (sprintf_timespec(at, at_str, TIME_STRING_MAX - 1) < 0 ||
sprintf_timespec(mt, mt_str, TIME_STRING_MAX - 1) < 0 ||
sprintf_timespec(ct, ct_str, TIME_STRING_MAX - 1) < 0)
return -EINVAL;
return PRINT_DUMP(user, path, "utimes", "atime=%s mtime=%s ctime=%s",
at_str, mt_str, ct_str);
}
static int print_update_extent(const char *path, u64 offset, u64 len,
void *user)
{
return PRINT_DUMP(user, path, "update_extent", "offset=%llu len=%llu",
offset, len);
}
static int print_encoded_write(const char *path, const void *data, u64 offset,
u64 len, u64 unencoded_file_len,
u64 unencoded_len, u64 unencoded_offset,
u32 compression, u32 encryption, void *user)
{
return PRINT_DUMP(user, path, "encoded_write",
"offset=%llu len=%llu unencoded_file_len=%llu unencoded_len=%llu unencoded_offset=%llu compression=%u encryption=%u",
offset, len, unencoded_file_len, unencoded_len,
unencoded_offset, compression, encryption);
}
static int print_fallocate(const char *path, int mode, u64 offset, u64 len,
void *user)
{
return PRINT_DUMP(user, path, "fallocate",
"mode=%d offset=%llu len=%llu",
mode, offset, len);
}
static int print_fileattr(const char *path, u64 attr, void *user)
{
return PRINT_DUMP(user, path, "fileattr", "fileattr=0x%llu", attr);
}
static int print_enable_verity (const char *path, u8 algorithm, u32 block_size,
int salt_len, char *salt,
int sig_len, char *sig, void *user)
{
return PRINT_DUMP(user, path, "enable_verity",
"algorithm=%u block_size=%u salt_len=%d sig_len=%d",
algorithm, block_size, salt_len, sig_len);
}
struct btrfs_send_ops btrfs_print_send_ops = {
.subvol = print_subvol,
.snapshot = print_snapshot,
.mkfile = print_mkfile,
.mkdir = print_mkdir,
.mknod = print_mknod,
.mkfifo = print_mkfifo,
.mksock = print_mksock,
.symlink = print_symlink,
.rename = print_rename,
.link = print_link,
.unlink = print_unlink,
.rmdir = print_rmdir,
.write = print_write,
.clone = print_clone,
.set_xattr = print_set_xattr,
.remove_xattr = print_remove_xattr,
.truncate = print_truncate,
.chmod = print_chmod,
.chown = print_chown,
.utimes = print_utimes,
.update_extent = print_update_extent,
.encoded_write = print_encoded_write,
.fallocate = print_fallocate,
.fileattr = print_fileattr,
.enable_verity = print_enable_verity,
};
|