Whamcloud - gitweb
LU-10092 llite: Add persistent cache on client
[fs/lustre-release.git] / lustre / utils / lhsmtool_posix.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.htm
19  *
20  * GPL HEADER END
21  */
22 /*
23  * (C) Copyright 2012 Commissariat a l'energie atomique et aux energies
24  *     alternatives
25  *
26  * Copyright (c) 2013, 2016, Intel Corporation.
27  */
28 /* HSM copytool program for POSIX filesystem-based HSM's.
29  *
30  * An HSM copytool daemon acts on action requests from Lustre to copy files
31  * to and from an HSM archive system. This one in particular makes regular
32  * POSIX filesystem calls to a given path, where an HSM is presumably mounted.
33  *
34  * This particular tool can also import an existing HSM archive.
35  */
36
37 #ifndef _GNU_SOURCE
38 #define _GNU_SOURCE
39 #endif
40 #include <ctype.h>
41 #include <fcntl.h>
42 #include <stdio.h>
43 #include <stdint.h>
44 #include <stdlib.h>
45 #include <string.h>
46 #include <dirent.h>
47 #include <errno.h>
48 #include <getopt.h>
49 #include <pthread.h>
50 #include <time.h>
51 #include <unistd.h>
52 #include <utime.h>
53 #include <signal.h>
54 #include <sys/time.h>
55 #include <sys/xattr.h>
56 #include <sys/syscall.h>
57 #include <sys/types.h>
58
59 #include <libcfs/util/string.h>
60 #include <linux/lustre/lustre_fid.h>
61 #include <lustre/lustreapi.h>
62
63 /* Progress reporting period */
64 #define REPORT_INTERVAL_DEFAULT 30
65 /* HSM hash subdir permissions */
66 #define DIR_PERM S_IRWXU
67 /* HSM hash file permissions */
68 #define FILE_PERM (S_IRUSR | S_IWUSR)
69
70 #define ONE_MB 0x100000
71
72 #ifndef NSEC_PER_SEC
73 # define NSEC_PER_SEC 1000000000UL
74 #endif
75
76 enum ct_action {
77         CA_IMPORT = 1,
78         CA_REBIND,
79         CA_MAXSEQ,
80 };
81
82 struct options {
83         int                      o_copy_attrs;
84         int                      o_daemonize;
85         int                      o_dry_run;
86         int                      o_abort_on_error;
87         int                      o_shadow_tree;
88         int                      o_verbose;
89         int                      o_copy_xattrs;
90         int                      o_archive_id_used;
91         int                      o_archive_id_cnt;
92         int                     *o_archive_id;
93         int                      o_report_int;
94         unsigned long long       o_bandwidth;
95         size_t                   o_chunk_size;
96         enum ct_action           o_action;
97         char                    *o_event_fifo;
98         char                    *o_mnt;
99         int                      o_mnt_fd;
100         char                    *o_hsm_root;
101         char                    *o_src; /* for import, or rebind */
102         char                    *o_dst; /* for import, or rebind */
103 };
104
105 /* everything else is zeroed */
106 struct options opt = {
107         .o_copy_attrs = 1,
108         .o_shadow_tree = 1,
109         .o_verbose = LLAPI_MSG_INFO,
110         .o_copy_xattrs = 1,
111         .o_report_int = REPORT_INTERVAL_DEFAULT,
112         .o_chunk_size = ONE_MB,
113 };
114
115 /* hsm_copytool_private will hold an open FD on the lustre mount point
116  * for us. Additionally open one on the archive FS root to make sure
117  * it doesn't drop out from under us (and remind the admin to shutdown
118  * the copytool before unmounting). */
119
120 static int arc_fd = -1;
121
122 static int err_major;
123 static int err_minor;
124
125 static char cmd_name[PATH_MAX];
126 static char fs_name[MAX_OBD_NAME + 1];
127
128 static struct hsm_copytool_private *ctdata;
129
130 static inline double ct_now(void)
131 {
132         struct timeval tv;
133
134         gettimeofday(&tv, NULL);
135
136         return tv.tv_sec + 0.000001 * tv.tv_usec;
137 }
138
139 #define CT_ERROR(_rc, _format, ...)                                     \
140         llapi_error(LLAPI_MSG_ERROR, _rc,                               \
141                     "%f %s[%ld]: "_format,                              \
142                     ct_now(), cmd_name, syscall(SYS_gettid), ## __VA_ARGS__)
143
144 #define CT_DEBUG(_format, ...)                                          \
145         llapi_error(LLAPI_MSG_DEBUG | LLAPI_MSG_NO_ERRNO, 0,            \
146                     "%f %s[%ld]: "_format,                              \
147                     ct_now(), cmd_name, syscall(SYS_gettid), ## __VA_ARGS__)
148
149 #define CT_WARN(_format, ...) \
150         llapi_error(LLAPI_MSG_WARN | LLAPI_MSG_NO_ERRNO, 0,             \
151                     "%f %s[%ld]: "_format,                              \
152                     ct_now(), cmd_name, syscall(SYS_gettid), ## __VA_ARGS__)
153
154 #define CT_TRACE(_format, ...)                                          \
155         llapi_error(LLAPI_MSG_INFO | LLAPI_MSG_NO_ERRNO, 0,             \
156                     "%f %s[%ld]: "_format,                              \
157                     ct_now(), cmd_name, syscall(SYS_gettid), ## __VA_ARGS__)
158
159 static void usage(const char *name, int rc)
160 {
161         fprintf(stdout,
162         " Usage: %s [options]... <mode> <lustre_mount_point>\n"
163         "The Lustre HSM Posix copy tool can be used as a daemon or "
164         "as a command line tool\n"
165         "The Lustre HSM daemon acts on action requests from Lustre\n"
166         "to copy files to and from an HSM archive system.\n"
167         "This POSIX-flavored daemon makes regular POSIX filesystem calls\n"
168         "to an HSM mounted at a given hsm_root.\n"
169         "   --daemon            Daemon mode, run in background\n"
170         " Options:\n"
171         "   --no-attr           Don't copy file attributes\n"
172         "   --no-shadow         Don't create shadow namespace in archive\n"
173         "   --no-xattr          Don't copy file extended attributes\n"
174         "The Lustre HSM tool performs administrator-type actions\n"
175         "on a Lustre HSM archive.\n"
176         "This POSIX-flavored tool can link an existing HSM namespace\n"
177         "into a Lustre filesystem.\n"
178         " Usage:\n"
179         "   %s [options] --import <src> <dst> <lustre_mount_point>\n"
180         "      import an archived subtree from\n"
181         "       <src> (FID or relative path to hsm_root) into the Lustre\n"
182         "             filesystem at\n"
183         "       <dst> (absolute path)\n"
184         "   %s [options] --rebind <old_FID> <new_FID> <lustre_mount_point>\n"
185         "      rebind an entry in the HSM to a new FID\n"
186         "       <old_FID> old FID the HSM entry is bound to\n"
187         "       <new_FID> new FID to bind the HSM entry to\n"
188         "   %s [options] --rebind <list_file> <lustre_mount_point>\n"
189         "      perform the rebind operation for all FID in the list file\n"
190         "       each line of <list_file> consists of <old_FID> <new_FID>\n"
191         "   %s [options] --max-sequence <fsname>\n"
192         "       return the max fid sequence of archived files\n"
193         "   --abort-on-error          Abort operation on major error\n"
194         "   -A, --archive <#>         Archive number (repeatable)\n"
195         "   -b, --bandwidth <bw>      Limit I/O bandwidth (unit can be used\n,"
196         "                             default is MB)\n"
197         "   --dry-run                 Don't run, just show what would be done\n"
198         "   -c, --chunk-size <sz>     I/O size used during data copy\n"
199         "                             (unit can be used, default is MB)\n"
200         "   -f, --event-fifo <path>   Write events stream to fifo\n"
201         "   -p, --hsm-root <path>     Target HSM mount point\n"
202         "   -q, --quiet               Produce less verbose output\n"
203         "   -u, --update-interval <s> Interval between progress reports sent\n"
204         "                             to Coordinator\n"
205         "   -v, --verbose             Produce more verbose output\n",
206         cmd_name, cmd_name, cmd_name, cmd_name, cmd_name);
207
208         exit(rc);
209 }
210
211 static int ct_parseopts(int argc, char * const *argv)
212 {
213         struct option long_opts[] = {
214         { .val = 1,     .name = "abort-on-error",
215           .flag = &opt.o_abort_on_error,        .has_arg = no_argument },
216         { .val = 1,     .name = "abort_on_error",
217           .flag = &opt.o_abort_on_error,        .has_arg = no_argument },
218         { .val = 'A',   .name = "archive",      .has_arg = required_argument },
219         { .val = 'b',   .name = "bandwidth",    .has_arg = required_argument },
220         { .val = 'c',   .name = "chunk-size",   .has_arg = required_argument },
221         { .val = 'c',   .name = "chunk_size",   .has_arg = required_argument },
222         { .val = 1,     .name = "daemon",       .has_arg = no_argument,
223           .flag = &opt.o_daemonize },
224         { .val = 'f',   .name = "event-fifo",   .has_arg = required_argument },
225         { .val = 'f',   .name = "event_fifo",   .has_arg = required_argument },
226         { .val = 1,     .name = "dry-run",      .has_arg = no_argument,
227           .flag = &opt.o_dry_run },
228         { .val = 'h',   .name = "help",         .has_arg = no_argument },
229         { .val = 'i',   .name = "import",       .has_arg = no_argument },
230         { .val = 'M',   .name = "max-sequence", .has_arg = no_argument },
231         { .val = 'M',   .name = "max_sequence", .has_arg = no_argument },
232         { .val = 0,     .name = "no-attr",      .has_arg = no_argument,
233           .flag = &opt.o_copy_attrs },
234         { .val = 0,     .name = "no_attr",      .has_arg = no_argument,
235           .flag = &opt.o_copy_attrs },
236         { .val = 0,     .name = "no-shadow",    .has_arg = no_argument,
237           .flag = &opt.o_shadow_tree },
238         { .val = 0,     .name = "no_shadow",    .has_arg = no_argument,
239           .flag = &opt.o_shadow_tree },
240         { .val = 0,     .name = "no-xattr",     .has_arg = no_argument,
241           .flag = &opt.o_copy_xattrs },
242         { .val = 0,     .name = "no_xattr",     .has_arg = no_argument,
243           .flag = &opt.o_copy_xattrs },
244         { .val = 'p',   .name = "hsm-root",     .has_arg = required_argument },
245         { .val = 'p',   .name = "hsm_root",     .has_arg = required_argument },
246         { .val = 'q',   .name = "quiet",        .has_arg = no_argument },
247         { .val = 'r',   .name = "rebind",       .has_arg = no_argument },
248         { .val = 'u',   .name = "update-interval",
249                                                 .has_arg = required_argument },
250         { .val = 'u',   .name = "update_interval",
251                                                 .has_arg = required_argument },
252         { .val = 'v',   .name = "verbose",      .has_arg = no_argument },
253         { .name = NULL } };
254         unsigned long long value;
255         unsigned long long unit;
256         bool all_id = false;
257         int c, rc;
258         int i;
259
260         optind = 0;
261
262         opt.o_archive_id_cnt = LL_HSM_ORIGIN_MAX_ARCHIVE;
263         opt.o_archive_id = malloc(opt.o_archive_id_cnt *
264                                   sizeof(*opt.o_archive_id));
265         if (opt.o_archive_id == NULL)
266                 return -ENOMEM;
267 repeat:
268         while ((c = getopt_long(argc, argv, "A:b:c:f:hiMp:qru:v",
269                                 long_opts, NULL)) != -1) {
270                 switch (c) {
271                 case 'A': {
272                         char *end = NULL;
273                         int val = strtol(optarg, &end, 10);
274
275                         if (*end != '\0') {
276                                 rc = -EINVAL;
277                                 CT_ERROR(rc, "invalid archive-id: '%s'",
278                                          optarg);
279                                 return rc;
280                         }
281                         /* if archiveID is zero, any archiveID is accepted */
282                         if (all_id == true)
283                                 goto repeat;
284
285                         if (val == 0) {
286                                 free(opt.o_archive_id);
287                                 opt.o_archive_id = NULL;
288                                 opt.o_archive_id_cnt = 0;
289                                 opt.o_archive_id_used = 0;
290                                 all_id = true;
291                                 CT_WARN("archive-id = 0 is found, any backend"
292                                         "will be served\n");
293                                 goto repeat;
294                         }
295
296                         /* skip the duplicated id */
297                         for (i = 0; i < opt.o_archive_id_used; i++) {
298                                 if (opt.o_archive_id[i] == val)
299                                         goto repeat;
300                         }
301                         /* extend the space */
302                         if (opt.o_archive_id_used >= opt.o_archive_id_cnt) {
303                                 int *tmp;
304
305                                 opt.o_archive_id_cnt *= 2;
306                                 tmp = realloc(opt.o_archive_id,
307                                               sizeof(*opt.o_archive_id) *
308                                               opt.o_archive_id_cnt);
309                                 if (tmp == NULL)
310                                         return -ENOMEM;
311
312                                 opt.o_archive_id = tmp;
313                         }
314
315                         opt.o_archive_id[opt.o_archive_id_used++] = val;
316                         break;
317                 }
318                 case 'b': /* -b and -c have both a number with unit as arg */
319                 case 'c':
320                         unit = ONE_MB;
321                         if (llapi_parse_size(optarg, &value, &unit, 0) < 0) {
322                                 rc = -EINVAL;
323                                 CT_ERROR(rc, "bad value for -%c '%s'", c,
324                                          optarg);
325                                 return rc;
326                         }
327                         if (c == 'c')
328                                 opt.o_chunk_size = value;
329                         else
330                                 opt.o_bandwidth = value;
331                         break;
332                 case 'f':
333                         opt.o_event_fifo = optarg;
334                         break;
335                 case 'h':
336                         usage(argv[0], 0);
337                 case 'i':
338                         opt.o_action = CA_IMPORT;
339                         break;
340                 case 'M':
341                         opt.o_action = CA_MAXSEQ;
342                         break;
343                 case 'p':
344                         opt.o_hsm_root = optarg;
345                         break;
346                 case 'q':
347                         opt.o_verbose--;
348                         break;
349                 case 'r':
350                         opt.o_action = CA_REBIND;
351                         break;
352                 case 'u':
353                         opt.o_report_int = atoi(optarg);
354                         if (opt.o_report_int < 0) {
355                                 rc = -EINVAL;
356                                 CT_ERROR(rc, "bad value for -%c '%s'", c,
357                                          optarg);
358                                 return rc;
359                         }
360                         break;
361                 case 'v':
362                         opt.o_verbose++;
363                         break;
364                 case 0:
365                         break;
366                 default:
367                         return -EINVAL;
368                 }
369         }
370
371         switch (opt.o_action) {
372         case CA_IMPORT:
373                 /* src dst mount_point */
374                 if (argc != optind + 3) {
375                         rc = -EINVAL;
376                         CT_ERROR(rc, "--import requires 2 arguments");
377                         return rc;
378                 }
379                 opt.o_src = argv[optind++];
380                 opt.o_dst = argv[optind++];
381                 break;
382         case CA_REBIND:
383                 /* FID1 FID2 mount_point or FILE mount_point */
384                 if (argc == optind + 2) {
385                         opt.o_src = argv[optind++];
386                         opt.o_dst = NULL;
387                 } else if (argc == optind + 3) {
388                         opt.o_src = argv[optind++];
389                         opt.o_dst = argv[optind++];
390                 } else {
391                         rc = -EINVAL;
392                         CT_ERROR(rc, "--rebind requires 1 or 2 arguments");
393                         return rc;
394                 }
395                 break;
396         case CA_MAXSEQ:
397         default:
398                 /* just mount point */
399                 break;
400         }
401
402         if (argc != optind + 1) {
403                 rc = -EINVAL;
404                 CT_ERROR(rc, "no mount point specified");
405                 return rc;
406         }
407
408         opt.o_mnt = argv[optind];
409         opt.o_mnt_fd = -1;
410
411         CT_TRACE("action=%d src=%s dst=%s mount_point=%s",
412                  opt.o_action, opt.o_src, opt.o_dst, opt.o_mnt);
413
414         if (opt.o_hsm_root == NULL) {
415                 rc = -EINVAL;
416                 CT_ERROR(rc, "must specify a root directory for the backend");
417                 return rc;
418         }
419
420         if (opt.o_action == CA_IMPORT) {
421                 if (opt.o_src && opt.o_src[0] == '/') {
422                         rc = -EINVAL;
423                         CT_ERROR(rc,
424                                  "source path must be relative to HSM root");
425                         return rc;
426                 }
427
428                 if (opt.o_dst && opt.o_dst[0] != '/') {
429                         rc = -EINVAL;
430                         CT_ERROR(rc, "destination path must be absolute");
431                         return rc;
432                 }
433         }
434
435         return 0;
436 }
437
438 /* mkdir -p path */
439 static int ct_mkdir_p(const char *path)
440 {
441         char    *saved, *ptr;
442         int      rc;
443
444         ptr = strdup(path);
445         if (ptr == NULL)
446                 return -errno;
447
448         saved = ptr;
449         while (*ptr == '/')
450                 ptr++;
451
452         while ((ptr = strchr(ptr, '/')) != NULL) {
453                 *ptr = '\0';
454                 rc = mkdir(saved, DIR_PERM);
455                 *ptr = '/';
456                 if (rc < 0 && errno != EEXIST) {
457                         rc = -errno;
458                         CT_ERROR(rc, "cannot mkdir '%s'", path);
459                         free(saved);
460                         return rc;
461                 }
462                 ptr++;
463         }
464
465         free(saved);
466
467         return 0;
468 }
469
470 static int ct_save_stripe(int src_fd, const char *src, const char *dst)
471 {
472         char                     lov_file[PATH_MAX + 8];
473         char                     lov_buf[XATTR_SIZE_MAX];
474         struct lov_user_md      *lum;
475         int                      rc;
476         int                      fd;
477         ssize_t                  xattr_size;
478
479         snprintf(lov_file, sizeof(lov_file), "%s.lov", dst);
480         CT_TRACE("saving stripe info of '%s' in %s", src, lov_file);
481
482         xattr_size = fgetxattr(src_fd, XATTR_LUSTRE_LOV, lov_buf,
483                                sizeof(lov_buf));
484         if (xattr_size < 0) {
485                 rc = -errno;
486                 CT_ERROR(rc, "cannot get stripe info on '%s'", src);
487                 return rc;
488         }
489
490         lum = (struct lov_user_md *)lov_buf;
491
492         if (lum->lmm_magic == LOV_USER_MAGIC_V1 ||
493             lum->lmm_magic == LOV_USER_MAGIC_V3) {
494                 /* Set stripe_offset to -1 so that it is not interpreted as a
495                  * hint on restore. */
496                 lum->lmm_stripe_offset = -1;
497         }
498
499         fd = open(lov_file, O_TRUNC | O_CREAT | O_WRONLY, FILE_PERM);
500         if (fd < 0) {
501                 rc = -errno;
502                 CT_ERROR(rc, "cannot open '%s'", lov_file);
503                 goto err_cleanup;
504         }
505
506         rc = write(fd, lum, xattr_size);
507         if (rc < 0) {
508                 rc = -errno;
509                 CT_ERROR(rc, "cannot write %zd bytes to '%s'",
510                          xattr_size, lov_file);
511                 close(fd);
512                 goto err_cleanup;
513         }
514
515         rc = close(fd);
516         if (rc < 0) {
517                 rc = -errno;
518                 CT_ERROR(rc, "cannot close '%s'", lov_file);
519                 goto err_cleanup;
520         }
521
522         return 0;
523
524 err_cleanup:
525         unlink(lov_file);
526
527         return rc;
528 }
529
530 static int ct_load_stripe(const char *src, void *lovea, size_t *lovea_size)
531 {
532         char     lov_file[PATH_MAX + 4];
533         int      rc;
534         int      fd;
535
536         snprintf(lov_file, sizeof(lov_file), "%s.lov", src);
537         CT_TRACE("reading stripe rules from '%s' for '%s'", lov_file, src);
538
539         fd = open(lov_file, O_RDONLY);
540         if (fd < 0) {
541                 CT_ERROR(errno, "cannot open '%s'", lov_file);
542                 return -ENODATA;
543         }
544
545         rc = read(fd, lovea, *lovea_size);
546         if (rc < 0) {
547                 CT_ERROR(errno, "cannot read %zu bytes from '%s'",
548                          *lovea_size, lov_file);
549                 close(fd);
550                 return -ENODATA;
551         }
552
553         *lovea_size = rc;
554         close(fd);
555
556         return 0;
557 }
558
559 static int ct_restore_stripe(const char *src, const char *dst, int dst_fd,
560                              const void *lovea, size_t lovea_size)
561 {
562         int     rc;
563
564         rc = fsetxattr(dst_fd, XATTR_LUSTRE_LOV, lovea, lovea_size,
565                        XATTR_CREATE);
566         if (rc < 0) {
567                 rc = -errno;
568                 CT_ERROR(rc, "cannot set lov EA on '%s'", dst);
569         }
570
571         return rc;
572 }
573
574 static int ct_copy_data(struct hsm_copyaction_private *hcp, const char *src,
575                         const char *dst, int src_fd, int dst_fd,
576                         const struct hsm_action_item *hai, long hal_flags)
577 {
578         struct hsm_extent        he;
579         __u64                    offset = hai->hai_extent.offset;
580         struct stat              src_st;
581         struct stat              dst_st;
582         char                    *buf = NULL;
583         __u64                    write_total = 0;
584         __u64                    length = hai->hai_extent.length;
585         time_t                   last_report_time;
586         int                      rc = 0;
587         double                   start_ct_now = ct_now();
588         /* Bandwidth Control */
589         time_t                  start_time;
590         time_t                  now;
591         time_t                  last_bw_print;
592
593         if (fstat(src_fd, &src_st) < 0) {
594                 rc = -errno;
595                 CT_ERROR(rc, "cannot stat '%s'", src);
596                 return rc;
597         }
598
599         if (!S_ISREG(src_st.st_mode)) {
600                 rc = -EINVAL;
601                 CT_ERROR(rc, "'%s' is not a regular file", src);
602                 return rc;
603         }
604
605         if (hai->hai_extent.offset > (__u64)src_st.st_size) {
606                 rc = -EINVAL;
607                 CT_ERROR(rc, "Trying to start reading past end (%ju > "
608                          "%jd) of '%s' source file",
609                          (uintmax_t)hai->hai_extent.offset,
610                          (intmax_t)src_st.st_size, src);
611                 return rc;
612         }
613
614         if (fstat(dst_fd, &dst_st) < 0) {
615                 rc = -errno;
616                 CT_ERROR(rc, "cannot stat '%s'", dst);
617                 return rc;
618         }
619
620         if (!S_ISREG(dst_st.st_mode)) {
621                 rc = -EINVAL;
622                 CT_ERROR(rc, "'%s' is not a regular file", dst);
623                 return rc;
624         }
625
626         /* Don't read beyond a given extent */
627         if (length > src_st.st_size - hai->hai_extent.offset)
628                 length = src_st.st_size - hai->hai_extent.offset;
629
630         start_time = last_bw_print = last_report_time = time(NULL);
631
632         he.offset = offset;
633         he.length = 0;
634         rc = llapi_hsm_action_progress(hcp, &he, length, 0);
635         if (rc < 0) {
636                 /* Action has been canceled or something wrong
637                  * is happening. Stop copying data. */
638                 CT_ERROR(rc, "progress ioctl for copy '%s'->'%s' failed",
639                          src, dst);
640                 goto out;
641         }
642
643         errno = 0;
644
645         buf = malloc(opt.o_chunk_size);
646         if (buf == NULL) {
647                 rc = -ENOMEM;
648                 goto out;
649         }
650
651         CT_TRACE("start copy of %ju bytes from '%s' to '%s'",
652                  (uintmax_t)length, src, dst);
653
654         while (write_total < length) {
655                 ssize_t rsize;
656                 ssize_t wsize;
657                 int     chunk = (length - write_total > opt.o_chunk_size) ?
658                                  opt.o_chunk_size : length - write_total;
659
660                 rsize = pread(src_fd, buf, chunk, offset);
661                 if (rsize == 0)
662                         /* EOF */
663                         break;
664
665                 if (rsize < 0) {
666                         rc = -errno;
667                         CT_ERROR(rc, "cannot read from '%s'", src);
668                         break;
669                 }
670
671                 wsize = pwrite(dst_fd, buf, rsize, offset);
672                 if (wsize < 0) {
673                         rc = -errno;
674                         CT_ERROR(rc, "cannot write to '%s'", dst);
675                         break;
676                 }
677
678                 write_total += wsize;
679                 offset += wsize;
680
681                 now = time(NULL);
682                 /* sleep if needed, to honor bandwidth limits */
683                 if (opt.o_bandwidth != 0) {
684                         unsigned long long write_theory;
685
686                         write_theory = (now - start_time) * opt.o_bandwidth;
687
688                         if (write_theory < write_total) {
689                                 unsigned long long      excess;
690                                 struct timespec         delay;
691
692                                 excess = write_total - write_theory;
693
694                                 delay.tv_sec = excess / opt.o_bandwidth;
695                                 delay.tv_nsec = (excess % opt.o_bandwidth) *
696                                         NSEC_PER_SEC / opt.o_bandwidth;
697
698                                 if (now >= last_bw_print + opt.o_report_int) {
699                                         CT_TRACE("bandwith control: %lluB/s "
700                                                  "excess=%llu sleep for "
701                                                  "%lld.%09lds",
702                                                  opt.o_bandwidth, excess,
703                                                  (long long)delay.tv_sec,
704                                                  delay.tv_nsec);
705                                         last_bw_print = now;
706                                 }
707
708                                 do {
709                                         rc = nanosleep(&delay, &delay);
710                                 } while (rc < 0 && errno == EINTR);
711                                 if (rc < 0) {
712                                         CT_ERROR(errno, "delay for bandwidth "
713                                                  "control failed to sleep: "
714                                                  "residual=%lld.%09lds",
715                                                  (long long)delay.tv_sec,
716                                                  delay.tv_nsec);
717                                         rc = 0;
718                                 }
719                         }
720                 }
721
722                 now = time(NULL);
723                 if (now >= last_report_time + opt.o_report_int) {
724                         last_report_time = now;
725                         CT_TRACE("%%%ju ", (uintmax_t)(100 * write_total / length));
726                         /* only give the length of the write since the last
727                          * progress report */
728                         he.length = offset - he.offset;
729                         rc = llapi_hsm_action_progress(hcp, &he, length, 0);
730                         if (rc < 0) {
731                                 /* Action has been canceled or something wrong
732                                  * is happening. Stop copying data. */
733                                 CT_ERROR(rc, "progress ioctl for copy"
734                                          " '%s'->'%s' failed", src, dst);
735                                 goto out;
736                         }
737                         he.offset = offset;
738                 }
739                 rc = 0;
740         }
741
742 out:
743         /*
744          * truncate restored file
745          * size is taken from the archive this is done to support
746          * restore after a force release which leaves the file with the
747          * wrong size (can big bigger than the new size)
748          */
749         if ((hai->hai_action == HSMA_RESTORE) &&
750             (src_st.st_size < dst_st.st_size)) {
751                 /*
752                  * make sure the file is on disk before reporting success.
753                  */
754                 rc = ftruncate(dst_fd, src_st.st_size);
755                 if (rc < 0) {
756                         rc = -errno;
757                         CT_ERROR(rc, "cannot truncate '%s' to size %jd",
758                                  dst, (intmax_t)src_st.st_size);
759                         err_major++;
760                 }
761         }
762
763         if (buf != NULL)
764                 free(buf);
765
766         CT_TRACE("copied %ju bytes in %f seconds",
767                  (uintmax_t)length, ct_now() - start_ct_now);
768
769         return rc;
770 }
771
772 /* Copy file attributes from file src to file dest */
773 static int ct_copy_attr(const char *src, const char *dst, int src_fd,
774                         int dst_fd)
775 {
776         struct stat     st;
777         struct timeval  times[2];
778         int             rc;
779
780         if (fstat(src_fd, &st) < 0) {
781                 rc = -errno;
782                 CT_ERROR(rc, "cannot stat '%s'", src);
783                 return rc;
784         }
785
786         times[0].tv_sec = st.st_atime;
787         times[0].tv_usec = 0;
788         times[1].tv_sec = st.st_mtime;
789         times[1].tv_usec = 0;
790         if (fchmod(dst_fd, st.st_mode) < 0 ||
791             fchown(dst_fd, st.st_uid, st.st_gid) < 0 ||
792             futimes(dst_fd, times) < 0) {
793                 rc = -errno;
794                 CT_ERROR(rc, "cannot set attributes of '%s'", src);
795                 return rc;
796         }
797
798         return 0;
799 }
800
801 static int ct_copy_xattr(const char *src, const char *dst, int src_fd,
802                          int dst_fd, bool is_restore)
803 {
804         char     list[XATTR_LIST_MAX];
805         char     value[XATTR_SIZE_MAX];
806         char    *name;
807         ssize_t  list_len;
808         int      rc;
809
810         list_len = flistxattr(src_fd, list, sizeof(list));
811         if (list_len < 0)
812                 return -errno;
813
814         name = list;
815         while (name < list + list_len) {
816                 rc = fgetxattr(src_fd, name, value, sizeof(value));
817                 if (rc < 0)
818                         return -errno;
819
820                 /* when we restore, we do not restore lustre xattr */
821                 if (!is_restore ||
822                     (strncmp(XATTR_TRUSTED_PREFIX, name,
823                              sizeof(XATTR_TRUSTED_PREFIX) - 1) != 0)) {
824                         rc = fsetxattr(dst_fd, name, value, rc, 0);
825                         CT_TRACE("fsetxattr of '%s' on '%s' rc=%d (%s)",
826                                  name, dst, rc, strerror(errno));
827                         /* lustre.* attrs aren't supported on other FS's */
828                         if (rc < 0 && errno != EOPNOTSUPP) {
829                                 rc = -errno;
830                                 CT_ERROR(rc, "cannot set extended attribute"
831                                          " '%s' of '%s'",
832                                          name, dst);
833                                 return rc;
834                         }
835                 }
836                 name += strlen(name) + 1;
837         }
838
839         return 0;
840 }
841
842 static int ct_path_lustre(char *buf, int sz, const char *mnt,
843                           const struct lu_fid *fid)
844 {
845         return snprintf(buf, sz, "%s/%s/fid/"DFID_NOBRACE, mnt,
846                         dot_lustre_name, PFID(fid));
847 }
848
849 static int ct_path_archive(char *buf, int sz, const char *archive_dir,
850                            const struct lu_fid *fid)
851 {
852         return snprintf(buf, sz, "%s/%04x/%04x/%04x/%04x/%04x/%04x/"
853                         DFID_NOBRACE, archive_dir,
854                         (fid)->f_oid       & 0xFFFF,
855                         (fid)->f_oid >> 16 & 0xFFFF,
856                         (unsigned int)((fid)->f_seq       & 0xFFFF),
857                         (unsigned int)((fid)->f_seq >> 16 & 0xFFFF),
858                         (unsigned int)((fid)->f_seq >> 32 & 0xFFFF),
859                         (unsigned int)((fid)->f_seq >> 48 & 0xFFFF),
860                         PFID(fid));
861 }
862
863 static bool ct_is_retryable(int err)
864 {
865         return err == -ETIMEDOUT;
866 }
867
868 static int ct_begin_restore(struct hsm_copyaction_private **phcp,
869                             const struct hsm_action_item *hai,
870                             int mdt_index, int open_flags)
871 {
872         char     src[PATH_MAX];
873         int      rc;
874
875         rc = llapi_hsm_action_begin(phcp, ctdata, hai, mdt_index, open_flags,
876                                     false);
877         if (rc < 0) {
878                 ct_path_lustre(src, sizeof(src), opt.o_mnt, &hai->hai_fid);
879                 CT_ERROR(rc, "llapi_hsm_action_begin() on '%s' failed", src);
880         }
881
882         return rc;
883 }
884
885 static int ct_begin(struct hsm_copyaction_private **phcp,
886                     const struct hsm_action_item *hai)
887 {
888         /* Restore takes specific parameters. Call the same function w/ default
889          * values for all other operations. */
890         return ct_begin_restore(phcp, hai, -1, 0);
891 }
892
893 static int ct_fini(struct hsm_copyaction_private **phcp,
894                    const struct hsm_action_item *hai, int hp_flags, int ct_rc)
895 {
896         struct hsm_copyaction_private   *hcp;
897         char                             lstr[PATH_MAX];
898         int                              rc;
899
900         CT_TRACE("Action completed, notifying coordinator "
901                  "cookie=%#jx, FID="DFID", hp_flags=%d err=%d",
902                  (uintmax_t)hai->hai_cookie, PFID(&hai->hai_fid),
903                  hp_flags, -ct_rc);
904
905         ct_path_lustre(lstr, sizeof(lstr), opt.o_mnt, &hai->hai_fid);
906
907         if (phcp == NULL || *phcp == NULL) {
908                 rc = llapi_hsm_action_begin(&hcp, ctdata, hai, -1, 0, true);
909                 if (rc < 0) {
910                         CT_ERROR(rc, "llapi_hsm_action_begin() on '%s' failed",
911                                  lstr);
912                         return rc;
913                 }
914                 phcp = &hcp;
915         }
916
917         rc = llapi_hsm_action_end(phcp, &hai->hai_extent, hp_flags, abs(ct_rc));
918         if (rc == -ECANCELED)
919                 CT_ERROR(rc, "completed action on '%s' has been canceled: "
920                          "cookie=%#jx, FID="DFID, lstr,
921                          (uintmax_t)hai->hai_cookie, PFID(&hai->hai_fid));
922         else if (rc < 0)
923                 CT_ERROR(rc, "llapi_hsm_action_end() on '%s' failed", lstr);
924         else
925                 CT_TRACE("llapi_hsm_action_end() on '%s' ok (rc=%d)",
926                          lstr, rc);
927
928         return rc;
929 }
930
931 static int ct_archive(const struct hsm_action_item *hai, const long hal_flags)
932 {
933         struct hsm_copyaction_private   *hcp = NULL;
934         char                             src[PATH_MAX];
935         char                             dst[PATH_MAX + 4] = "";
936         char                             root[PATH_MAX] = "";
937         int                              rc;
938         int                              rcf = 0;
939         bool                             rename_needed = false;
940         int                              hp_flags = 0;
941         int                              open_flags;
942         int                              src_fd = -1;
943         int                              dst_fd = -1;
944
945         rc = ct_begin(&hcp, hai);
946         if (rc < 0)
947                 goto fini_major;
948
949         /* we fill archive so:
950          * source = data FID
951          * destination = lustre FID
952          */
953         ct_path_lustre(src, sizeof(src), opt.o_mnt, &hai->hai_dfid);
954         ct_path_archive(root, sizeof(root), opt.o_hsm_root, &hai->hai_fid);
955         if (hai->hai_extent.length == -1) {
956                 /* whole file, write it to tmp location and atomically
957                  * replace old archived file */
958                 snprintf(dst, sizeof(dst), "%s_tmp", root);
959                 /* we cannot rely on the same test because ct_copy_data()
960                  * updates hai_extent.length */
961                 rename_needed = true;
962         } else {
963                 snprintf(dst, sizeof(dst), "%s", root);
964         }
965
966         CT_TRACE("archiving '%s' to '%s'", src, dst);
967
968         if (opt.o_dry_run) {
969                 rc = 0;
970                 goto fini_major;
971         }
972
973         rc = ct_mkdir_p(dst);
974         if (rc < 0) {
975                 CT_ERROR(rc, "mkdir_p '%s' failed", dst);
976                 goto fini_major;
977         }
978
979         src_fd = llapi_hsm_action_get_fd(hcp);
980         if (src_fd < 0) {
981                 rc = src_fd;
982                 CT_ERROR(rc, "cannot open '%s' for read", src);
983                 goto fini_major;
984         }
985
986         open_flags = O_WRONLY | O_NOFOLLOW;
987         /* If extent is specified, don't truncate an old archived copy */
988         open_flags |= ((hai->hai_extent.length == -1) ? O_TRUNC : 0) | O_CREAT;
989
990         dst_fd = open(dst, open_flags, FILE_PERM);
991         if (dst_fd == -1) {
992                 rc = -errno;
993                 CT_ERROR(rc, "cannot open '%s' for write", dst);
994                 goto fini_major;
995         }
996
997         /* saving stripe is not critical */
998         rc = ct_save_stripe(src_fd, src, dst);
999         if (rc < 0)
1000                 CT_ERROR(rc, "cannot save file striping info of '%s' in '%s'",
1001                          src, dst);
1002
1003         rc = ct_copy_data(hcp, src, dst, src_fd, dst_fd, hai, hal_flags);
1004         if (rc < 0) {
1005                 CT_ERROR(rc, "data copy failed from '%s' to '%s'", src, dst);
1006                 goto fini_major;
1007         }
1008
1009         rc = fsync(dst_fd);
1010         if (rc < 0) {
1011                 rc = -errno;
1012                 CT_ERROR(rc, "cannot flush '%s' archive file '%s'", src, dst);
1013                 goto fini_major;
1014         }
1015
1016         CT_TRACE("data archiving for '%s' to '%s' done", src, dst);
1017
1018         /* attrs will remain on the MDS; no need to copy them, except possibly
1019           for disaster recovery */
1020         if (opt.o_copy_attrs) {
1021                 rc = ct_copy_attr(src, dst, src_fd, dst_fd);
1022                 if (rc < 0) {
1023                         CT_ERROR(rc, "cannot copy attr of '%s' to '%s'",
1024                                  src, dst);
1025                         rcf = rc;
1026                 }
1027                 CT_TRACE("attr file for '%s' saved to archive '%s'",
1028                          src, dst);
1029         }
1030
1031         /* xattrs will remain on the MDS; no need to copy them, except possibly
1032          for disaster recovery */
1033         if (opt.o_copy_xattrs) {
1034                 rc = ct_copy_xattr(src, dst, src_fd, dst_fd, false);
1035                 if (rc < 0) {
1036                         CT_ERROR(rc, "cannot copy xattr of '%s' to '%s'",
1037                                  src, dst);
1038                         rcf = rcf ? rcf : rc;
1039                 }
1040                 CT_TRACE("xattr file for '%s' saved to archive '%s'",
1041                          src, dst);
1042         }
1043
1044         if (rename_needed == true) {
1045                 char     tmp_src[PATH_MAX + 8];
1046                 char     tmp_dst[PATH_MAX + 8];
1047
1048                 /* atomically replace old archived file */
1049                 ct_path_archive(src, sizeof(src), opt.o_hsm_root,
1050                                 &hai->hai_fid);
1051                 rc = rename(dst, src);
1052                 if (rc < 0) {
1053                         rc = -errno;
1054                         CT_ERROR(rc, "cannot rename '%s' to '%s'", dst, src);
1055                         goto fini_major;
1056                 }
1057                 /* rename lov file */
1058                 snprintf(tmp_src, sizeof(tmp_src), "%s.lov", src);
1059                 snprintf(tmp_dst, sizeof(tmp_dst), "%s.lov", dst);
1060                 rc = rename(tmp_dst, tmp_src);
1061                 if (rc < 0)
1062                         CT_ERROR(errno, "cannot rename '%s' to '%s'",
1063                                  tmp_dst, tmp_src);
1064         }
1065
1066         if (opt.o_shadow_tree) {
1067                 /* Create a namespace of softlinks that shadows the original
1068                  * Lustre namespace.  This will only be current at
1069                  * time-of-archive (won't follow renames).
1070                  * WARNING: release won't kill these links; a manual
1071                  * cleanup of dead links would be required.
1072                  */
1073                 char             buf[PATH_MAX];
1074                 long long        recno = -1;
1075                 int              linkno = 0;
1076                 char            *ptr;
1077                 int              depth = 0;
1078                 ssize_t          sz;
1079
1080                 sprintf(buf, DFID, PFID(&hai->hai_fid));
1081                 sprintf(src, "%s/shadow/", opt.o_hsm_root);
1082
1083                 ptr = opt.o_hsm_root;
1084                 while (*ptr)
1085                         (*ptr++ == '/') ? depth-- : 0;
1086
1087                 rc = llapi_fid2path(opt.o_mnt, buf, src + strlen(src),
1088                                     sizeof(src) - strlen(src), &recno, &linkno);
1089                 if (rc < 0) {
1090                         CT_ERROR(rc, "cannot get FID of '%s'", buf);
1091                         rcf = rcf ? rcf : rc;
1092                         goto fini_minor;
1093                 }
1094
1095                 /* Figure out how many parent dirs to symlink back */
1096                 ptr = src;
1097                 while (*ptr)
1098                         (*ptr++ == '/') ? depth++ : 0;
1099                 sprintf(buf, "..");
1100                 while (--depth > 1)
1101                         strcat(buf, "/..");
1102
1103                 ct_path_archive(dst, sizeof(dst), buf, &hai->hai_fid);
1104
1105                 if (ct_mkdir_p(src)) {
1106                         CT_ERROR(errno, "mkdir_p '%s' failed", src);
1107                         rcf = rcf ? rcf : -errno;
1108                         goto fini_minor;
1109                 }
1110                 /* symlink already exists ? */
1111                 sz = readlink(src, buf, sizeof(buf));
1112                 /* detect truncation */
1113                 if (sz == sizeof(buf)) {
1114                         rcf = rcf ? rcf : -E2BIG;
1115                         CT_ERROR(rcf, "readlink '%s' truncated", src);
1116                         goto fini_minor;
1117                 }
1118                 if (sz >= 0) {
1119                         buf[sz] = '\0';
1120                         if (sz == 0 || strncmp(buf, dst, sz) != 0) {
1121                                 if (unlink(src) && errno != ENOENT) {
1122                                         CT_ERROR(errno,
1123                                                  "cannot unlink symlink '%s'",
1124                                                  src);
1125                                         rcf = rcf ? rcf : -errno;
1126                                         goto fini_minor;
1127                                 }
1128                                 /* unlink old symlink done */
1129                                 CT_TRACE("remove old symlink '%s' pointing"
1130                                          " to '%s'", src, buf);
1131                         } else {
1132                                 /* symlink already ok */
1133                                 CT_TRACE("symlink '%s' already pointing"
1134                                          " to '%s'", src, dst);
1135                                 rcf = 0;
1136                                 goto fini_minor;
1137                         }
1138                 }
1139                 if (symlink(dst, src)) {
1140                         CT_ERROR(errno, "cannot symlink '%s' to '%s'",
1141                                  src, dst);
1142                         rcf = rcf ? rcf : -errno;
1143                         goto fini_minor;
1144                 }
1145                 CT_TRACE("symlink '%s' to '%s' done", src, dst);
1146         }
1147 fini_minor:
1148         if (rcf)
1149                 err_minor++;
1150         goto out;
1151
1152
1153 fini_major:
1154         err_major++;
1155
1156         unlink(dst);
1157         if (ct_is_retryable(rc))
1158                 hp_flags |= HP_FLAG_RETRY;
1159
1160         rcf = rc;
1161
1162 out:
1163         if (!(src_fd < 0))
1164                 close(src_fd);
1165
1166         if (!(dst_fd < 0))
1167                 close(dst_fd);
1168
1169         rc = ct_fini(&hcp, hai, hp_flags, rcf);
1170
1171         return rc;
1172 }
1173
1174 static int ct_restore(const struct hsm_action_item *hai, const long hal_flags)
1175 {
1176         struct hsm_copyaction_private   *hcp = NULL;
1177         char                             src[PATH_MAX];
1178         char                             dst[PATH_MAX];
1179         char                             lov_buf[XATTR_SIZE_MAX];
1180         size_t                           lov_size = sizeof(lov_buf);
1181         int                              rc;
1182         int                              hp_flags = 0;
1183         int                              src_fd = -1;
1184         int                              dst_fd = -1;
1185         int                              mdt_index = -1;
1186         int                              open_flags = 0;
1187         bool                             set_lovea;
1188         struct lu_fid                    dfid;
1189         /* we fill lustre so:
1190          * source = lustre FID in the backend
1191          * destination = data FID = volatile file
1192          */
1193
1194         /* build backend file name from released file FID */
1195         ct_path_archive(src, sizeof(src), opt.o_hsm_root, &hai->hai_fid);
1196
1197         rc = llapi_get_mdt_index_by_fid(opt.o_mnt_fd, &hai->hai_fid,
1198                                         &mdt_index);
1199         if (rc < 0) {
1200                 CT_ERROR(rc, "cannot get mdt index "DFID"",
1201                          PFID(&hai->hai_fid));
1202                 return rc;
1203         }
1204         /* restore loads and sets the LOVEA w/o interpreting it to avoid
1205          * dependency on the structure format. */
1206         rc = ct_load_stripe(src, lov_buf, &lov_size);
1207         if (rc < 0) {
1208                 CT_WARN("cannot get stripe rules for '%s' (%s), use default",
1209                         src, strerror(-rc));
1210                 set_lovea = false;
1211         } else {
1212                 open_flags |= O_LOV_DELAY_CREATE;
1213                 set_lovea = true;
1214         }
1215
1216         rc = ct_begin_restore(&hcp, hai, mdt_index, open_flags);
1217         if (rc < 0)
1218                 goto fini;
1219
1220         /* get the FID of the volatile file */
1221         rc = llapi_hsm_action_get_dfid(hcp, &dfid);
1222         if (rc < 0) {
1223                 CT_ERROR(rc, "restoring "DFID
1224                          ", cannot get FID of created volatile file",
1225                          PFID(&hai->hai_fid));
1226                 goto fini;
1227         }
1228
1229         /* build volatile "file name", for messages */
1230         snprintf(dst, sizeof(dst), "{VOLATILE}="DFID, PFID(&dfid));
1231
1232         CT_TRACE("restoring data from '%s' to '%s'", src, dst);
1233
1234         if (opt.o_dry_run) {
1235                 rc = 0;
1236                 goto fini;
1237         }
1238
1239         src_fd = open(src, O_RDONLY | O_NOATIME | O_NOFOLLOW);
1240         if (src_fd < 0) {
1241                 rc = -errno;
1242                 CT_ERROR(rc, "cannot open '%s' for read", src);
1243                 goto fini;
1244         }
1245
1246         /* When restore request for a file triggered by read/write/
1247          * truncate operation from another client, it needs to detach
1248          * the file first if it is PCC-attached.
1249          */
1250         rc = llapi_pcc_detach_fid_fd(opt.o_mnt_fd, &hai->hai_fid);
1251         if (rc) {
1252                 CT_ERROR(rc, "cannot detach pcc for file '%s'", dst);
1253                 goto fini;
1254         }
1255
1256         dst_fd = llapi_hsm_action_get_fd(hcp);
1257         if (dst_fd < 0) {
1258                 rc = dst_fd;
1259                 CT_ERROR(rc, "cannot open '%s' for write", dst);
1260                 goto fini;
1261         }
1262
1263         if (set_lovea) {
1264                 /* the layout cannot be allocated through .fid so we have to
1265                  * restore a layout */
1266                 rc = ct_restore_stripe(src, dst, dst_fd, lov_buf, lov_size);
1267                 if (rc < 0) {
1268                         CT_ERROR(rc, "cannot restore file striping info"
1269                                  " for '%s' from '%s'", dst, src);
1270                         err_major++;
1271                         goto fini;
1272                 }
1273         }
1274
1275         rc = ct_copy_data(hcp, src, dst, src_fd, dst_fd, hai, hal_flags);
1276         if (rc < 0) {
1277                 CT_ERROR(rc, "cannot copy data from '%s' to '%s'",
1278                          src, dst);
1279                 err_major++;
1280                 if (ct_is_retryable(rc))
1281                         hp_flags |= HP_FLAG_RETRY;
1282                 goto fini;
1283         }
1284
1285         CT_TRACE("data restore from '%s' to '%s' done", src, dst);
1286
1287 fini:
1288         rc = ct_fini(&hcp, hai, hp_flags, rc);
1289
1290         /* object swaping is done by cdt at copy end, so close of volatile file
1291          * cannot be done before */
1292         if (!(src_fd < 0))
1293                 close(src_fd);
1294
1295         if (!(dst_fd < 0))
1296                 close(dst_fd);
1297
1298         return rc;
1299 }
1300
1301 static int ct_remove(const struct hsm_action_item *hai, const long hal_flags)
1302 {
1303         struct hsm_copyaction_private   *hcp = NULL;
1304         char                             dst[PATH_MAX], attr[PATH_MAX + 4];
1305         int                              rc;
1306
1307         rc = ct_begin(&hcp, hai);
1308         if (rc < 0)
1309                 goto fini;
1310
1311         ct_path_archive(dst, sizeof(dst), opt.o_hsm_root, &hai->hai_fid);
1312
1313         CT_TRACE("removing file '%s'", dst);
1314
1315         if (opt.o_dry_run) {
1316                 rc = 0;
1317                 goto fini;
1318         }
1319
1320         rc = unlink(dst);
1321         if (rc < 0) {
1322                 rc = -errno;
1323                 CT_ERROR(rc, "cannot unlink '%s'", dst);
1324                 err_minor++;
1325                 goto fini;
1326         }
1327
1328         snprintf(attr, sizeof(attr), "%s.lov", dst);
1329         rc = unlink(attr);
1330         if (rc < 0) {
1331                 rc = -errno;
1332                 CT_ERROR(rc, "cannot unlink '%s'", attr);
1333                 err_minor++;
1334                 goto fini;
1335         }
1336
1337 fini:
1338         rc = ct_fini(&hcp, hai, 0, rc);
1339
1340         return rc;
1341 }
1342
1343 static int ct_process_item(struct hsm_action_item *hai, const long hal_flags)
1344 {
1345         int     rc = 0;
1346
1347         if (opt.o_verbose >= LLAPI_MSG_INFO || opt.o_dry_run) {
1348                 /* Print the original path */
1349                 char            fid[128];
1350                 char            path[PATH_MAX];
1351                 long long       recno = -1;
1352                 int             linkno = 0;
1353
1354                 sprintf(fid, DFID, PFID(&hai->hai_fid));
1355                 CT_TRACE("'%s' action %s reclen %d, cookie=%#jx",
1356                          fid, hsm_copytool_action2name(hai->hai_action),
1357                          hai->hai_len, (uintmax_t)hai->hai_cookie);
1358                 rc = llapi_fid2path(opt.o_mnt, fid, path,
1359                                     sizeof(path), &recno, &linkno);
1360                 if (rc < 0)
1361                         CT_ERROR(rc, "cannot get path of FID %s", fid);
1362                 else
1363                         CT_TRACE("processing file '%s'", path);
1364         }
1365
1366         switch (hai->hai_action) {
1367         /* set err_major, minor inside these functions */
1368         case HSMA_ARCHIVE:
1369                 rc = ct_archive(hai, hal_flags);
1370                 break;
1371         case HSMA_RESTORE:
1372                 rc = ct_restore(hai, hal_flags);
1373                 break;
1374         case HSMA_REMOVE:
1375                 rc = ct_remove(hai, hal_flags);
1376                 break;
1377         case HSMA_CANCEL:
1378                 CT_TRACE("cancel not implemented for file system '%s'",
1379                          opt.o_mnt);
1380                 /* Don't report progress to coordinator for this cookie:
1381                  * the copy function will get ECANCELED when reporting
1382                  * progress. */
1383                 err_minor++;
1384                 return 0;
1385                 break;
1386         default:
1387                 rc = -EINVAL;
1388                 CT_ERROR(rc, "unknown action %d, on '%s'", hai->hai_action,
1389                          opt.o_mnt);
1390                 err_minor++;
1391                 ct_fini(NULL, hai, 0, rc);
1392         }
1393
1394         return 0;
1395 }
1396
1397 struct ct_th_data {
1398         long                     hal_flags;
1399         struct hsm_action_item  *hai;
1400 };
1401
1402 static void *ct_thread(void *data)
1403 {
1404         struct ct_th_data *cttd = data;
1405         int rc;
1406
1407         rc = ct_process_item(cttd->hai, cttd->hal_flags);
1408
1409         free(cttd->hai);
1410         free(cttd);
1411         pthread_exit((void *)(intptr_t)rc);
1412 }
1413
1414 static int ct_process_item_async(const struct hsm_action_item *hai,
1415                                  long hal_flags)
1416 {
1417         pthread_attr_t           attr;
1418         pthread_t                thread;
1419         struct ct_th_data       *data;
1420         int                      rc;
1421
1422         data = malloc(sizeof(*data));
1423         if (data == NULL)
1424                 return -ENOMEM;
1425
1426         data->hai = malloc(hai->hai_len);
1427         if (data->hai == NULL) {
1428                 free(data);
1429                 return -ENOMEM;
1430         }
1431
1432         memcpy(data->hai, hai, hai->hai_len);
1433         data->hal_flags = hal_flags;
1434
1435         rc = pthread_attr_init(&attr);
1436         if (rc != 0) {
1437                 CT_ERROR(rc, "pthread_attr_init failed for '%s' service",
1438                          opt.o_mnt);
1439                 free(data->hai);
1440                 free(data);
1441                 return -rc;
1442         }
1443
1444         pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
1445
1446         rc = pthread_create(&thread, &attr, ct_thread, data);
1447         if (rc != 0)
1448                 CT_ERROR(rc, "cannot create thread for '%s' service",
1449                          opt.o_mnt);
1450
1451         pthread_attr_destroy(&attr);
1452         return 0;
1453 }
1454
1455 static int ct_import_one(const char *src, const char *dst)
1456 {
1457         char            newarc[PATH_MAX];
1458         struct lu_fid   fid;
1459         struct stat     st;
1460         int             rc;
1461
1462         CT_TRACE("importing '%s' from '%s'", dst, src);
1463
1464         if (stat(src, &st) < 0) {
1465                 rc = -errno;
1466                 CT_ERROR(rc, "cannot stat '%s'", src);
1467                 return rc;
1468         }
1469
1470         if (opt.o_dry_run)
1471                 return 0;
1472
1473         rc = llapi_hsm_import(dst,
1474                               opt.o_archive_id_used ?
1475                               opt.o_archive_id[0] : 0,
1476                               &st, 0, 0, 0, 0, NULL, &fid);
1477         if (rc < 0) {
1478                 CT_ERROR(rc, "cannot import '%s' from '%s'", dst, src);
1479                 return rc;
1480         }
1481
1482         ct_path_archive(newarc, sizeof(newarc), opt.o_hsm_root, &fid);
1483
1484         rc = ct_mkdir_p(newarc);
1485         if (rc < 0) {
1486                 CT_ERROR(rc, "mkdir_p '%s' failed", newarc);
1487                 err_major++;
1488                 return rc;
1489
1490         }
1491
1492         /* Lots of choices now: mv, ln, ln -s ? */
1493         rc = link(src, newarc); /* hardlink */
1494         if (rc < 0) {
1495                 rc = -errno;
1496                 CT_ERROR(rc, "cannot link '%s' to '%s'", newarc, src);
1497                 err_major++;
1498                 return rc;
1499         }
1500         CT_TRACE("imported '%s' from '%s'=='%s'", dst, newarc, src);
1501
1502         return 0;
1503 }
1504
1505 static char *path_concat(const char *dirname, const char *basename)
1506 {
1507         char    *result;
1508         int      rc;
1509
1510         rc = asprintf(&result, "%s/%s", dirname, basename);
1511         if (rc < 0)
1512                 return NULL;
1513
1514         return result;
1515 }
1516
1517 static int ct_import_fid(const struct lu_fid *import_fid)
1518 {
1519         char    fid_path[PATH_MAX];
1520         int     rc;
1521
1522         ct_path_lustre(fid_path, sizeof(fid_path), opt.o_mnt, import_fid);
1523         rc = access(fid_path, F_OK);
1524         if (rc == 0 || errno != ENOENT) {
1525                 rc = (errno == 0) ? -EEXIST : -errno;
1526                 CT_ERROR(rc, "cannot import '"DFID"'", PFID(import_fid));
1527                 return rc;
1528         }
1529
1530         ct_path_archive(fid_path, sizeof(fid_path), opt.o_hsm_root,
1531                         import_fid);
1532
1533         CT_TRACE("Resolving "DFID" to %s", PFID(import_fid), fid_path);
1534
1535         return ct_import_one(fid_path, opt.o_dst);
1536 }
1537
1538 static int ct_import_recurse(const char *relpath)
1539 {
1540         DIR             *dir;
1541         struct dirent   *ent;
1542         char            *srcpath, *newpath;
1543         struct lu_fid    import_fid;
1544         int              rc;
1545
1546         if (relpath == NULL)
1547                 return -EINVAL;
1548
1549         /* Is relpath a FID? In which case SFID should expand to three
1550          * elements. */
1551         rc = sscanf(relpath, SFID, RFID(&import_fid));
1552         if (rc == 3)
1553                 return ct_import_fid(&import_fid);
1554
1555         srcpath = path_concat(opt.o_hsm_root, relpath);
1556         if (srcpath == NULL) {
1557                 err_major++;
1558                 return -ENOMEM;
1559         }
1560
1561         dir = opendir(srcpath);
1562         if (dir == NULL) {
1563                 /* Not a dir, or error */
1564                 if (errno == ENOTDIR) {
1565                         /* Single regular file case, treat o_dst as absolute
1566                            final location. */
1567                         rc = ct_import_one(srcpath, opt.o_dst);
1568                 } else {
1569                         rc = -errno;
1570                         CT_ERROR(rc, "cannot opendir '%s'", srcpath);
1571                         err_major++;
1572                 }
1573                 free(srcpath);
1574                 return rc;
1575         }
1576         free(srcpath);
1577
1578         while ((ent = readdir(dir)) != NULL) {
1579                 if (!strcmp(ent->d_name, ".") ||
1580                     !strcmp(ent->d_name, ".."))
1581                         continue;
1582
1583                 /* New relative path */
1584                 newpath = path_concat(relpath, ent->d_name);
1585                 if (newpath == NULL) {
1586                         err_major++;
1587                         rc = -ENOMEM;
1588                         goto out;
1589                 }
1590
1591                 if (ent->d_type == DT_DIR) {
1592                         rc = ct_import_recurse(newpath);
1593                 } else {
1594                         char src[PATH_MAX];
1595                         char dst[PATH_MAX];
1596
1597                         sprintf(src, "%s/%s", opt.o_hsm_root, newpath);
1598                         sprintf(dst, "%s/%s", opt.o_dst, newpath);
1599                         /* Make the target dir in the Lustre fs */
1600                         rc = ct_mkdir_p(dst);
1601                         if (rc == 0) {
1602                                 /* Import the file */
1603                                 rc = ct_import_one(src, dst);
1604                         } else {
1605                                 CT_ERROR(rc, "ct_mkdir_p '%s' failed", dst);
1606                                 err_major++;
1607                         }
1608                 }
1609
1610                 if (rc != 0) {
1611                         CT_ERROR(rc, "cannot import '%s'", newpath);
1612                         if (err_major && opt.o_abort_on_error) {
1613                                 free(newpath);
1614                                 goto out;
1615                         }
1616                 }
1617                 free(newpath);
1618         }
1619
1620         rc = 0;
1621 out:
1622         closedir(dir);
1623         return rc;
1624 }
1625
1626 static int ct_rebind_one(const struct lu_fid *old_fid,
1627                          const struct lu_fid *new_fid)
1628 {
1629         char    src[PATH_MAX];
1630         char    dst[PATH_MAX];
1631         int     rc;
1632
1633         CT_TRACE("rebind "DFID" to "DFID, PFID(old_fid), PFID(new_fid));
1634
1635         ct_path_archive(src, sizeof(src), opt.o_hsm_root, old_fid);
1636         ct_path_archive(dst, sizeof(dst), opt.o_hsm_root, new_fid);
1637
1638         if (!opt.o_dry_run) {
1639                 char src_attr[PATH_MAX + 4];
1640                 char dst_attr[PATH_MAX + 4];
1641
1642                 ct_mkdir_p(dst);
1643                 if (rename(src, dst)) {
1644                         rc = -errno;
1645                         CT_ERROR(rc, "cannot rename '%s' to '%s'", src, dst);
1646                         return -errno;
1647                 }
1648                 /* rename lov file */
1649                 snprintf(src_attr, sizeof(src_attr), "%s.lov", src);
1650                 snprintf(dst_attr, sizeof(dst_attr), "%s.lov", dst);
1651                 if (rename(src_attr, dst_attr))
1652                         CT_ERROR(errno, "cannot rename '%s' to '%s'",
1653                                  src_attr, dst_attr);
1654
1655         }
1656         return 0;
1657 }
1658
1659 static bool fid_is_file(struct lu_fid *fid)
1660 {
1661         return fid_is_norm(fid) || fid_is_igif(fid);
1662 }
1663
1664 static bool should_ignore_line(const char *line)
1665 {
1666         int     i;
1667
1668         for (i = 0; line[i] != '\0'; i++) {
1669                 if (isspace(line[i]))
1670                         continue;
1671                 else if (line[i] == '#')
1672                         return true;
1673                 else
1674                         return false;
1675         }
1676
1677         return true;
1678 }
1679
1680 static int ct_rebind_list(const char *list)
1681 {
1682         int              rc;
1683         FILE            *filp;
1684         ssize_t          r;
1685         char            *line = NULL;
1686         size_t           line_size = 0;
1687         unsigned int     nl = 0;
1688         unsigned int     ok = 0;
1689
1690         filp = fopen(list, "r");
1691         if (filp == NULL) {
1692                 rc = -errno;
1693                 CT_ERROR(rc, "cannot open '%s'", list);
1694                 return rc;
1695         }
1696
1697         /* each line consists of 2 FID */
1698         while ((r = getline(&line, &line_size, filp)) != -1) {
1699                 struct lu_fid   old_fid;
1700                 struct lu_fid   new_fid;
1701
1702                 /* Ignore empty and commented out ('#...') lines. */
1703                 if (should_ignore_line(line))
1704                         continue;
1705
1706                 nl++;
1707
1708                 rc = sscanf(line, SFID" "SFID, RFID(&old_fid), RFID(&new_fid));
1709                 if (rc != 6 || !fid_is_file(&old_fid) ||
1710                     !fid_is_file(&new_fid)) {
1711                         CT_ERROR(EINVAL,
1712                                  "'%s' FID expected near '%s', line %u",
1713                                  list, line, nl);
1714                         err_major++;
1715                         continue;
1716                 }
1717
1718                 if (ct_rebind_one(&old_fid, &new_fid))
1719                         err_major++;
1720                 else
1721                         ok++;
1722         }
1723
1724         fclose(filp);
1725
1726         if (line)
1727                 free(line);
1728
1729         /* return 0 if all rebinds were successful */
1730         CT_TRACE("%u lines read from '%s', %u rebind successful", nl, list, ok);
1731
1732         return ok == nl ? 0 : -1;
1733 }
1734
1735 static int ct_rebind(void)
1736 {
1737         int     rc;
1738
1739         if (opt.o_dst) {
1740                 struct lu_fid old_fid;
1741                 struct lu_fid new_fid;
1742
1743                 if (sscanf(opt.o_src, SFID, RFID(&old_fid)) != 3 ||
1744                     !fid_is_file(&old_fid)) {
1745                         rc = -EINVAL;
1746                         CT_ERROR(rc, "'%s' invalid FID format", opt.o_src);
1747                         return rc;
1748                 }
1749
1750                 if (sscanf(opt.o_dst, SFID, RFID(&new_fid)) != 3 ||
1751                     !fid_is_file(&new_fid)) {
1752                         rc = -EINVAL;
1753                         CT_ERROR(rc, "'%s' invalid FID format", opt.o_dst);
1754                         return rc;
1755                 }
1756
1757                 rc = ct_rebind_one(&old_fid, &new_fid);
1758
1759                 return rc;
1760         }
1761
1762         /* o_src is a list file */
1763         rc = ct_rebind_list(opt.o_src);
1764
1765         return rc;
1766 }
1767
1768 static int ct_dir_level_max(const char *dirpath, __u16 *sub_seqmax)
1769 {
1770         DIR             *dir;
1771         int              rc;
1772         __u16            sub_seq;
1773         struct dirent *ent;
1774
1775         *sub_seqmax = 0;
1776
1777         dir = opendir(dirpath);
1778         if (dir == NULL) {
1779                 rc = -errno;
1780                 CT_ERROR(rc, "cannot open directory '%s'", opt.o_hsm_root);
1781                 return rc;
1782         }
1783
1784         do {
1785                 errno = 0;
1786                 ent = readdir(dir);
1787                 if (ent == NULL) {
1788                         /* end of directory.
1789                          * rc is 0 and seqmax contains the max value. */
1790                         rc = -errno;
1791                         if (rc)
1792                                 CT_ERROR(rc, "cannot readdir '%s'", dirpath);
1793                         goto out;
1794                 }
1795
1796                 if (!strcmp(ent->d_name, ".") || !strcmp(ent->d_name, ".."))
1797                         continue;
1798
1799                 if (sscanf(ent->d_name, "%hx", &sub_seq) != 1) {
1800                         CT_TRACE("'%s' has an unexpected dirname format, "
1801                                  "skip entry", ent->d_name);
1802                         continue;
1803                 }
1804                 if (sub_seq > *sub_seqmax)
1805                         *sub_seqmax = sub_seq;
1806         } while (1);
1807 out:
1808         closedir(dir);
1809         return rc;
1810 }
1811
1812 static int ct_max_sequence(void)
1813 {
1814         int     rc, i;
1815         char    path[PATH_MAX];
1816         __u64   seq = 0;
1817         __u16   subseq;
1818
1819         snprintf(path, sizeof(path), "%s", opt.o_hsm_root);
1820         /* FID sequence is stored in top-level directory names:
1821          * hsm_root/16bits (high weight)/16 bits/16 bits/16 bits (low weight).
1822          */
1823         for (i = 0; i < 4; i++) {
1824                 size_t path_len;
1825
1826                 rc = ct_dir_level_max(path, &subseq);
1827                 if (rc != 0)
1828                         return rc;
1829                 seq |= ((__u64)subseq << ((3 - i) * 16));
1830                 path_len = strlen(path);
1831                 rc = snprintf(path + path_len, sizeof(path) - path_len,
1832                               "/%04x", subseq);
1833                 if (rc >= (sizeof(path) - path_len))
1834                         return -E2BIG;
1835                 path[sizeof(path) - 1] = '\0';
1836         }
1837
1838         printf("max_sequence: %#jx\n", (uintmax_t)seq);
1839
1840         return 0;
1841 }
1842
1843 static void handler(int signal)
1844 {
1845         psignal(signal, "exiting");
1846         /* If we don't clean up upon interrupt, umount thinks there's a ref
1847          * and doesn't remove us from mtab (EINPROGRESS). The lustre client
1848          * does successfully unmount and the mount is actually gone, but the
1849          * mtab entry remains. So this just makes mtab happier. */
1850         llapi_hsm_copytool_unregister(&ctdata);
1851
1852         /* Also remove fifo upon signal as during normal/error exit */
1853         if (opt.o_event_fifo != NULL)
1854                 llapi_hsm_unregister_event_fifo(opt.o_event_fifo);
1855         _exit(1);
1856 }
1857
1858 /* Daemon waits for messages from the kernel; run it in the background. */
1859 static int ct_run(void)
1860 {
1861         struct sigaction cleanup_sigaction;
1862         int rc;
1863
1864         if (opt.o_daemonize) {
1865                 rc = daemon(1, 1);
1866                 if (rc < 0) {
1867                         rc = -errno;
1868                         CT_ERROR(rc, "cannot daemonize");
1869                         return rc;
1870                 }
1871         }
1872
1873         setbuf(stdout, NULL);
1874
1875         if (opt.o_event_fifo != NULL) {
1876                 rc = llapi_hsm_register_event_fifo(opt.o_event_fifo);
1877                 if (rc < 0) {
1878                         CT_ERROR(rc, "failed to register event fifo");
1879                         return rc;
1880                 }
1881                 llapi_error_callback_set(llapi_hsm_log_error);
1882         }
1883
1884         rc = llapi_hsm_copytool_register(&ctdata, opt.o_mnt,
1885                                          opt.o_archive_id_used,
1886                                          opt.o_archive_id, 0);
1887         if (rc < 0) {
1888                 CT_ERROR(rc, "cannot start copytool interface");
1889                 return rc;
1890         }
1891
1892         memset(&cleanup_sigaction, 0, sizeof(cleanup_sigaction));
1893         cleanup_sigaction.sa_handler = handler;
1894         sigemptyset(&cleanup_sigaction.sa_mask);
1895         sigaction(SIGINT, &cleanup_sigaction, NULL);
1896         sigaction(SIGTERM, &cleanup_sigaction, NULL);
1897
1898         while (1) {
1899                 struct hsm_action_list *hal;
1900                 struct hsm_action_item *hai;
1901                 int msgsize;
1902                 int i = 0;
1903
1904                 CT_TRACE("waiting for message from kernel");
1905
1906                 rc = llapi_hsm_copytool_recv(ctdata, &hal, &msgsize);
1907                 if (rc == -ESHUTDOWN) {
1908                         CT_TRACE("shutting down");
1909                         break;
1910                 } else if (rc < 0) {
1911                         CT_WARN("cannot receive action list: %s",
1912                                 strerror(-rc));
1913                         err_major++;
1914                         if (opt.o_abort_on_error)
1915                                 break;
1916                         else
1917                                 continue;
1918                 }
1919
1920                 CT_TRACE("copytool fs=%s archive#=%d item_count=%d",
1921                          hal->hal_fsname, hal->hal_archive_id, hal->hal_count);
1922
1923                 if (strcmp(hal->hal_fsname, fs_name) != 0) {
1924                         rc = -EINVAL;
1925                         CT_ERROR(rc, "'%s' invalid fs name, expecting: %s",
1926                                  hal->hal_fsname, fs_name);
1927                         err_major++;
1928                         if (opt.o_abort_on_error)
1929                                 break;
1930                         else
1931                                 continue;
1932                 }
1933
1934                 hai = hai_first(hal);
1935                 while (++i <= hal->hal_count) {
1936                         if ((char *)hai - (char *)hal > msgsize) {
1937                                 rc = -EPROTO;
1938                                 CT_ERROR(rc,
1939                                          "'%s' item %d past end of message!",
1940                                          opt.o_mnt, i);
1941                                 err_major++;
1942                                 break;
1943                         }
1944                         rc = ct_process_item_async(hai, hal->hal_flags);
1945                         if (rc < 0)
1946                                 CT_ERROR(rc, "'%s' item %d process",
1947                                          opt.o_mnt, i);
1948                         if (opt.o_abort_on_error && err_major)
1949                                 break;
1950                         hai = hai_next(hai);
1951                 }
1952
1953                 if (opt.o_abort_on_error && err_major)
1954                         break;
1955         }
1956
1957         llapi_hsm_copytool_unregister(&ctdata);
1958         if (opt.o_event_fifo != NULL)
1959                 llapi_hsm_unregister_event_fifo(opt.o_event_fifo);
1960
1961         return rc;
1962 }
1963
1964 static int ct_setup(void)
1965 {
1966         int     rc;
1967
1968         /* set llapi message level */
1969         llapi_msg_set_level(opt.o_verbose);
1970
1971         arc_fd = open(opt.o_hsm_root, O_RDONLY);
1972         if (arc_fd < 0) {
1973                 rc = -errno;
1974                 CT_ERROR(rc, "cannot open archive at '%s'", opt.o_hsm_root);
1975                 return rc;
1976         }
1977
1978         rc = llapi_search_fsname(opt.o_mnt, fs_name);
1979         if (rc < 0) {
1980                 CT_ERROR(rc, "cannot find a Lustre filesystem mounted at '%s'",
1981                          opt.o_mnt);
1982                 return rc;
1983         }
1984
1985         opt.o_mnt_fd = open(opt.o_mnt, O_RDONLY);
1986         if (opt.o_mnt_fd < 0) {
1987                 rc = -errno;
1988                 CT_ERROR(rc, "cannot open mount point at '%s'",
1989                          opt.o_mnt);
1990                 return rc;
1991         }
1992
1993         return rc;
1994 }
1995
1996 static int ct_cleanup(void)
1997 {
1998         int     rc;
1999
2000         if (opt.o_mnt_fd >= 0) {
2001                 rc = close(opt.o_mnt_fd);
2002                 if (rc < 0) {
2003                         rc = -errno;
2004                         CT_ERROR(rc, "cannot close mount point");
2005                         return rc;
2006                 }
2007         }
2008
2009         if (arc_fd >= 0) {
2010                 rc = close(arc_fd);
2011                 if (rc < 0) {
2012                         rc = -errno;
2013                         CT_ERROR(rc, "cannot close archive root directory");
2014                         return rc;
2015                 }
2016         }
2017
2018         if (opt.o_archive_id_cnt > 0) {
2019                 free(opt.o_archive_id);
2020                 opt.o_archive_id = NULL;
2021                 opt.o_archive_id_cnt = 0;
2022         }
2023
2024         return 0;
2025 }
2026
2027 int main(int argc, char **argv)
2028 {
2029         int     rc;
2030
2031         snprintf(cmd_name, sizeof(cmd_name), "%s", basename(argv[0]));
2032         rc = ct_parseopts(argc, argv);
2033         if (rc < 0) {
2034                 CT_WARN("try '%s --help' for more information", cmd_name);
2035                 return -rc;
2036         }
2037
2038         rc = ct_setup();
2039         if (rc < 0)
2040                 goto error_cleanup;
2041
2042         switch (opt.o_action) {
2043         case CA_IMPORT:
2044                 rc = ct_import_recurse(opt.o_src);
2045                 break;
2046         case CA_REBIND:
2047                 rc = ct_rebind();
2048                 break;
2049         case CA_MAXSEQ:
2050                 rc = ct_max_sequence();
2051                 break;
2052         default:
2053                 rc = ct_run();
2054                 break;
2055         }
2056
2057         if (opt.o_action != CA_MAXSEQ)
2058                 CT_TRACE("process finished, errs: %d major, %d minor,"
2059                          " rc=%d (%s)", err_major, err_minor, rc,
2060                          strerror(-rc));
2061
2062 error_cleanup:
2063         ct_cleanup();
2064
2065         return -rc;
2066 }