0d02727bb757406eebc9994926ac5c7500f23ad8
[cumulus.git] / main.cc
1 /* Cumulus: Efficient Filesystem Backup to the Cloud
2  * Copyright (C) 2006-2009, 2012 The Cumulus Developers
3  * See the AUTHORS file for a list of contributors.
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
19
20 /* Main entry point for Cumulus.  Contains logic for traversing the filesystem
21  * and constructing a backup. */
22
23 #include <dirent.h>
24 #include <errno.h>
25 #include <fcntl.h>
26 #include <getopt.h>
27 #include <grp.h>
28 #include <pwd.h>
29 #include <stdint.h>
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #include <sys/stat.h>
34 #include <sys/sysmacros.h>
35 #include <sys/types.h>
36 #include <sys/wait.h>
37 #include <unistd.h>
38
39 #include <algorithm>
40 #include <fstream>
41 #include <iostream>
42 #include <list>
43 #include <map>
44 #include <set>
45 #include <sstream>
46 #include <string>
47 #include <vector>
48
49 #include "cumulus.h"
50 #include "exclude.h"
51 #include "hash.h"
52 #include "localdb.h"
53 #include "metadata.h"
54 #include "remote.h"
55 #include "store.h"
56 #include "subfile.h"
57 #include "util.h"
58 #include "third_party/sha1.h"
59
60 using std::list;
61 using std::map;
62 using std::string;
63 using std::vector;
64 using std::ostream;
65
66 /* Version information.  This will be filled in by the Makefile. */
67 #ifndef CUMULUS_VERSION
68 #define CUMULUS_VERSION Unknown
69 #endif
70 #define CUMULUS_STRINGIFY(s) CUMULUS_STRINGIFY2(s)
71 #define CUMULUS_STRINGIFY2(s) #s
72 static const char cumulus_version[] = CUMULUS_STRINGIFY(CUMULUS_VERSION);
73
74 static RemoteStore *remote = NULL;
75 static TarSegmentStore *tss = NULL;
76 static MetadataWriter *metawriter = NULL;
77
78 /* Buffer for holding a single block of data read from a file. */
79 static const size_t LBS_BLOCK_SIZE = 1024 * 1024;
80 static char *block_buf;
81
82 /* Local database, which tracks objects written in this and previous
83  * invocations to help in creating incremental snapshots. */
84 LocalDb *db;
85
86 /* Selection of files to include/exclude in the snapshot. */
87 PathFilterList filter_rules;
88
89 bool flag_rebuild_statcache = false;
90
91 /* Whether verbose output is enabled. */
92 bool verbose = false;
93
94 /* Attempts to open a regular file read-only, but with safety checks for files
95  * that might not be fully trusted. */
96 int safe_open(const string& path, struct stat *stat_buf)
97 {
98     int fd;
99
100     /* Be paranoid when opening the file.  We have no guarantee that the
101      * file was not replaced between the stat() call above and the open()
102      * call below, so we might not even be opening a regular file.  We
103      * supply flags to open to to guard against various conditions before
104      * we can perform an lstat to check that the file is still a regular
105      * file:
106      *   - O_NOFOLLOW: in the event the file was replaced by a symlink
107      *   - O_NONBLOCK: prevents open() from blocking if the file was
108      *     replaced by a fifo
109      * We also add in O_NOATIME, since this may reduce disk writes (for
110      * inode updates).  However, O_NOATIME may result in EPERM, so if the
111      * initial open fails, try again without O_NOATIME.  */
112     fd = open(path.c_str(), O_RDONLY|O_NOATIME|O_NOFOLLOW|O_NONBLOCK);
113     if (fd < 0) {
114         fd = open(path.c_str(), O_RDONLY|O_NOFOLLOW|O_NONBLOCK);
115     }
116     if (fd < 0) {
117         fprintf(stderr, "Unable to open file %s: %m\n", path.c_str());
118         return -1;
119     }
120
121     /* Drop the use of the O_NONBLOCK flag; we only wanted that for file
122      * open. */
123     long flags = fcntl(fd, F_GETFL);
124     fcntl(fd, F_SETFL, flags & ~O_NONBLOCK);
125
126     /* Re-check file attributes, storing them into stat_buf if that is
127      * non-NULL. */
128     struct stat internal_stat_buf;
129     if (stat_buf == NULL)
130         stat_buf = &internal_stat_buf;
131
132     /* Perform the stat call again, and check that we still have a regular
133      * file. */
134     if (fstat(fd, stat_buf) < 0) {
135         fprintf(stderr, "fstat: %m\n");
136         close(fd);
137         return -1;
138     }
139
140     if ((stat_buf->st_mode & S_IFMT) != S_IFREG) {
141         fprintf(stderr, "file is no longer a regular file!\n");
142         close(fd);
143         return -1;
144     }
145
146     return fd;
147 }
148
149 /* Read data from a file descriptor and return the amount of data read.  A
150  * short read (less than the requested size) will only occur if end-of-file is
151  * hit. */
152 ssize_t file_read(int fd, char *buf, size_t maxlen)
153 {
154     size_t bytes_read = 0;
155
156     while (true) {
157         ssize_t res = read(fd, buf, maxlen);
158         if (res < 0) {
159             if (errno == EINTR)
160                 continue;
161             fprintf(stderr, "error reading file: %m\n");
162             return -1;
163         } else if (res == 0) {
164             break;
165         } else {
166             bytes_read += res;
167             buf += res;
168             maxlen -= res;
169         }
170     }
171
172     return bytes_read;
173 }
174
175 /* Read the contents of a file (specified by an open file descriptor) and copy
176  * the data to the store.  Returns the size of the file (number of bytes
177  * dumped), or -1 on error. */
178 int64_t dumpfile(int fd, dictionary &file_info, const string &path,
179                  struct stat& stat_buf)
180 {
181     int64_t size = 0;
182     list<string> object_list;
183     const char *status = NULL;          /* Status indicator printed out */
184
185     /* Look up this file in the old stat cache, if we can.  If the stat
186      * information indicates that the file has not changed, do not bother
187      * re-reading the entire contents.  Even if the information has been
188      * changed, we can use the list of old blocks in the search for a sub-block
189      * incremental representation. */
190     bool cached = false;
191     list<ObjectReference> old_blocks;
192
193     bool found = metawriter->find(path);
194     if (found)
195         old_blocks = metawriter->get_blocks();
196
197     if (found
198         && !flag_rebuild_statcache
199         && metawriter->is_unchanged(&stat_buf)) {
200         cached = true;
201
202         /* If any of the blocks in the object have been expired, then we should
203          * fall back to fully reading in the file. */
204         for (list<ObjectReference>::const_iterator i = old_blocks.begin();
205              i != old_blocks.end(); ++i) {
206             const ObjectReference &ref = *i;
207             if (!db->IsAvailable(ref)) {
208                 cached = false;
209                 status = "repack";
210                 break;
211             }
212         }
213
214         /* If everything looks okay, use the cached information */
215         if (cached) {
216             file_info["checksum"] = metawriter->get_checksum();
217             for (list<ObjectReference>::const_iterator i = old_blocks.begin();
218                  i != old_blocks.end(); ++i) {
219                 const ObjectReference &ref = *i;
220                 object_list.push_back(ref.to_string());
221                 db->UseObject(ref);
222             }
223             size = stat_buf.st_size;
224         }
225     }
226
227     /* If the file is new or changed, we must read in the contents a block at a
228      * time. */
229     if (!cached) {
230         scoped_ptr<Hash> file_hash(Hash::New());
231         Subfile subfile(db);
232         subfile.load_old_blocks(old_blocks);
233
234         while (true) {
235             ssize_t bytes = file_read(fd, block_buf, LBS_BLOCK_SIZE);
236             if (bytes == 0)
237                 break;
238             if (bytes < 0) {
239                 fprintf(stderr, "Backup contents for %s may be incorrect\n",
240                         path.c_str());
241                 break;
242             }
243
244             file_hash->update(block_buf, bytes);
245
246             // Sparse file processing: if we read a block of all zeroes, encode
247             // that explicitly.
248             bool all_zero = true;
249             for (int i = 0; i < bytes; i++) {
250                 if (block_buf[i] != 0) {
251                     all_zero = false;
252                     break;
253                 }
254             }
255
256             // Either find a copy of this block in an already-existing segment,
257             // or index it so it can be re-used in the future
258             double block_age = 0.0;
259             ObjectReference ref;
260
261             scoped_ptr<Hash> block_hash(Hash::New());
262             block_hash->update(block_buf, bytes);
263             string block_csum = block_hash->digest_str();
264
265             if (all_zero) {
266                 ref = ObjectReference(ObjectReference::REF_ZERO);
267                 ref.set_range(0, bytes);
268             } else {
269                 ref = db->FindObject(block_csum, bytes);
270             }
271
272             list<ObjectReference> refs;
273
274             // Store a copy of the object if one does not yet exist
275             if (ref.is_null()) {
276                 LbsObject *o = new LbsObject;
277                 int object_group;
278
279                 /* We might still have seen this checksum before, if the object
280                  * was stored at some time in the past, but we have decided to
281                  * clean the segment the object was originally stored in
282                  * (FindObject will not return such objects).  When rewriting
283                  * the object contents, put it in a separate group, so that old
284                  * objects get grouped together.  The hope is that these old
285                  * objects will continue to be used in the future, and we
286                  * obtain segments which will continue to be well-utilized.
287                  * Additionally, keep track of the age of the data by looking
288                  * up the age of the block which was expired and using that
289                  * instead of the current time. */
290                 if (db->IsOldObject(block_csum, bytes,
291                                     &block_age, &object_group)) {
292                     if (object_group == 0) {
293                         o->set_group("data");
294                     } else {
295                         o->set_group(string_printf("compacted-%d",
296                                                    object_group));
297                     }
298                     if (status == NULL)
299                         status = "partial";
300                 } else {
301                     o->set_group("data");
302                     status = "new";
303                 }
304
305                 subfile.analyze_new_block(block_buf, bytes);
306                 refs = subfile.create_incremental(tss, o, block_age);
307             } else {
308                 if (flag_rebuild_statcache && ref.is_normal()) {
309                     subfile.analyze_new_block(block_buf, bytes);
310                     subfile.store_analyzed_signatures(ref);
311                 }
312                 refs.push_back(ref);
313             }
314
315             while (!refs.empty()) {
316                 ref = refs.front(); refs.pop_front();
317
318                 // The file-level checksum guarantees integrity of the data.
319                 // To reduce the metadata log size, do not include checksums on
320                 // individual objects.
321                 ref.clear_checksum();
322
323                 object_list.push_back(ref.to_string());
324                 db->UseObject(ref);
325             }
326             size += bytes;
327
328             if (status == NULL)
329                 status = "old";
330         }
331
332         file_info["checksum"] = file_hash->digest_str();
333     }
334
335     // Sanity check: if the file looks like it hasn't changed, then the
336     // newly-computed checksum should match the checksum in the statcache.  If
337     // not, we have possible disk corruption and report a warning.
338     if (found
339         && metawriter->is_unchanged(&stat_buf)
340         && file_info["checksum"] != metawriter->get_checksum()) {
341         fprintf(stderr,
342                 "Warning: Checksum for %s does not match expected value\n"
343                 "    expected: %s\n"
344                 "    actual:   %s\n",
345                 path.c_str(),
346                 metawriter->get_checksum().c_str(),
347                 file_info["checksum"].c_str());
348     }
349
350     if (verbose && status != NULL)
351         printf("    [%s]\n", status);
352
353     string blocklist = "";
354     for (list<string>::iterator i = object_list.begin();
355          i != object_list.end(); ++i) {
356         if (i != object_list.begin())
357             blocklist += "\n    ";
358         blocklist += *i;
359     }
360     file_info["data"] = blocklist;
361
362     return size;
363 }
364
365 /* Look up a user/group and convert it to string form (either strictly numeric
366  * or numeric plus symbolic).  Caches the results of the call to
367  * getpwuid/getgrgid. */
368 string user_to_string(uid_t uid) {
369     static map<uid_t, string> user_cache;
370     map<uid_t, string>::const_iterator i = user_cache.find(uid);
371     if (i != user_cache.end())
372         return i->second;
373
374     string result = encode_int(uid);
375     struct passwd *pwd = getpwuid(uid);
376     if (pwd != NULL && pwd->pw_name != NULL) {
377         result += " (" + uri_encode(pwd->pw_name) + ")";
378     }
379     user_cache[uid] = result;
380     return result;
381 }
382
383 string group_to_string(gid_t gid) {
384     static map<gid_t, string> group_cache;
385     map<gid_t, string>::const_iterator i = group_cache.find(gid);
386     if (i != group_cache.end())
387         return i->second;
388
389     string result = encode_int(gid);
390     struct group *grp = getgrgid(gid);
391     if (grp != NULL && grp->gr_name != NULL) {
392         result += " (" + uri_encode(grp->gr_name) + ")";
393     }
394     group_cache[gid] = result;
395     return result;
396 }
397
398 /* Dump a specified filesystem object (file, directory, etc.) based on its
399  * inode information.  If the object is a regular file, an open filehandle is
400  * provided. */
401 void dump_inode(const string& path,         // Path within snapshot
402                 const string& fullpath,     // Path to object in filesystem
403                 struct stat& stat_buf,      // Results of stat() call
404                 int fd)                     // Open filehandle if regular file
405 {
406     char *buf;
407     dictionary file_info;
408     int64_t file_size;
409     ssize_t len;
410
411     if (verbose)
412         printf("%s\n", path.c_str());
413     metawriter->find(path);
414
415     file_info["name"] = uri_encode(path);
416     file_info["mode"] = encode_int(stat_buf.st_mode & 07777, 8);
417     file_info["ctime"] = encode_int(stat_buf.st_ctime);
418     file_info["mtime"] = encode_int(stat_buf.st_mtime);
419     file_info["user"] = user_to_string(stat_buf.st_uid);
420     file_info["group"] = group_to_string(stat_buf.st_gid);
421
422     time_t now = time(NULL);
423     if (now - stat_buf.st_ctime < 30 || now - stat_buf.st_mtime < 30)
424         if ((stat_buf.st_mode & S_IFMT) != S_IFDIR)
425             file_info["volatile"] = "1";
426
427     if (stat_buf.st_nlink > 1 && (stat_buf.st_mode & S_IFMT) != S_IFDIR) {
428         file_info["links"] = encode_int(stat_buf.st_nlink);
429     }
430
431     file_info["inode"] = encode_int(major(stat_buf.st_dev))
432         + "/" + encode_int(minor(stat_buf.st_dev))
433         + "/" + encode_int(stat_buf.st_ino);
434
435     char inode_type;
436
437     switch (stat_buf.st_mode & S_IFMT) {
438     case S_IFIFO:
439         inode_type = 'p';
440         break;
441     case S_IFSOCK:
442         inode_type = 's';
443         break;
444     case S_IFBLK:
445     case S_IFCHR:
446         inode_type = ((stat_buf.st_mode & S_IFMT) == S_IFBLK) ? 'b' : 'c';
447         file_info["device"] = encode_int(major(stat_buf.st_rdev))
448             + "/" + encode_int(minor(stat_buf.st_rdev));
449         break;
450     case S_IFLNK:
451         inode_type = 'l';
452
453         /* Use the reported file size to allocate a buffer large enough to read
454          * the symlink.  Allocate slightly more space, so that we ask for more
455          * bytes than we expect and so check for truncation. */
456         buf = new char[stat_buf.st_size + 2];
457         len = readlink(fullpath.c_str(), buf, stat_buf.st_size + 1);
458         if (len < 0) {
459             fprintf(stderr, "error reading symlink: %m\n");
460         } else if (len <= stat_buf.st_size) {
461             buf[len] = '\0';
462             file_info["target"] = uri_encode(buf);
463         } else if (len > stat_buf.st_size) {
464             fprintf(stderr, "error reading symlink: name truncated\n");
465         }
466
467         delete[] buf;
468         break;
469     case S_IFREG:
470         inode_type = 'f';
471
472         file_size = dumpfile(fd, file_info, path, stat_buf);
473         file_info["size"] = encode_int(file_size);
474
475         if (file_size < 0)
476             return;             // error occurred; do not dump file
477
478         if (file_size != stat_buf.st_size) {
479             fprintf(stderr, "Warning: Size of %s changed during reading\n",
480                     path.c_str());
481             file_info["volatile"] = "1";
482         }
483
484         break;
485     case S_IFDIR:
486         inode_type = 'd';
487         break;
488
489     default:
490         fprintf(stderr, "Unknown inode type: mode=%x\n", stat_buf.st_mode);
491         return;
492     }
493
494     file_info["type"] = string(1, inode_type);
495
496     metawriter->add(file_info);
497 }
498
499 /* Converts a path to the normalized form used in the metadata log.  Paths are
500  * written as relative (without any leading slashes).  The root directory is
501  * referred to as ".". */
502 string metafile_path(const string& path)
503 {
504     const char *newpath = path.c_str();
505     if (*newpath == '/')
506         newpath++;
507     if (*newpath == '\0')
508         newpath = ".";
509     return newpath;
510 }
511
512 void try_merge_filter(const string& path, const string& basedir)
513 {
514     struct stat stat_buf;
515     if (lstat(path.c_str(), &stat_buf) < 0)
516         return;
517     if ((stat_buf.st_mode & S_IFMT) != S_IFREG)
518         return;
519     int fd = safe_open(path, NULL);
520     if (fd < 0)
521         return;
522
523     /* As a very crude limit on the complexity of merge rules, only read up to
524      * one block (1 MB) worth of data.  If the file doesn't seems like it might
525      * be larger than that, don't parse the rules in it. */
526     ssize_t bytes = file_read(fd, block_buf, LBS_BLOCK_SIZE);
527     close(fd);
528     if (bytes < 0 || bytes >= static_cast<ssize_t>(LBS_BLOCK_SIZE - 1)) {
529         /* TODO: Add more strict resource limits on merge files? */
530         fprintf(stderr,
531                 "Unable to read filter merge file (possibly size too large\n");
532         return;
533     }
534     filter_rules.merge_patterns(metafile_path(path), basedir,
535                                 string(block_buf, bytes));
536 }
537
538 void scanfile(const string& path)
539 {
540     int fd = -1;
541     struct stat stat_buf;
542     list<string> refs;
543
544     string output_path = metafile_path(path);
545
546     if (lstat(path.c_str(), &stat_buf) < 0) {
547         fprintf(stderr, "lstat(%s): %m\n", path.c_str());
548         return;
549     }
550
551     bool is_directory = ((stat_buf.st_mode & S_IFMT) == S_IFDIR);
552     if (!filter_rules.is_included(output_path, is_directory))
553         return;
554
555     if ((stat_buf.st_mode & S_IFMT) == S_IFREG) {
556         fd = safe_open(path, &stat_buf);
557         if (fd < 0)
558             return;
559     }
560
561     dump_inode(output_path, path, stat_buf, fd);
562
563     if (fd >= 0)
564         close(fd);
565
566     /* If we hit a directory, now that we've written the directory itself,
567      * recursively scan the directory. */
568     if (is_directory) {
569         DIR *dir = opendir(path.c_str());
570
571         if (dir == NULL) {
572             fprintf(stderr, "Error reading directory %s: %m\n",
573                     path.c_str());
574             return;
575         }
576
577         struct dirent *ent;
578         vector<string> contents;
579         while ((ent = readdir(dir)) != NULL) {
580             string filename(ent->d_name);
581             if (filename == "." || filename == "..")
582                 continue;
583             contents.push_back(filename);
584         }
585
586         closedir(dir);
587
588         sort(contents.begin(), contents.end());
589
590         filter_rules.save();
591
592         /* First pass through the directory items: look for any filter rules to
593          * merge and do so. */
594         for (vector<string>::iterator i = contents.begin();
595              i != contents.end(); ++i) {
596             string filename;
597             if (path == ".")
598                 filename = *i;
599             else if (path == "/")
600                 filename = "/" + *i;
601             else
602                 filename = path + "/" + *i;
603             if (filter_rules.is_mergefile(metafile_path(filename))) {
604                 if (verbose) {
605                     printf("Merging directory filter rules %s\n",
606                            filename.c_str());
607                 }
608                 try_merge_filter(filename, output_path);
609             }
610         }
611
612         /* Second pass: recursively scan all items in the directory for backup;
613          * scanfile() will check if the item should be included or not. */
614         for (vector<string>::iterator i = contents.begin();
615              i != contents.end(); ++i) {
616             const string& filename = *i;
617             if (path == ".")
618                 scanfile(filename);
619             else if (path == "/")
620                 scanfile("/" + filename);
621             else
622                 scanfile(path + "/" + filename);
623         }
624
625         filter_rules.restore();
626     }
627 }
628
629 void usage(const char *program)
630 {
631     fprintf(
632         stderr,
633         "Cumulus %s\n\n"
634         "Usage: %s [OPTION]... --dest=DEST PATHS...\n"
635         "Produce backup snapshot of files in SOURCE and store to DEST.\n"
636         "\n"
637         "Options:\n"
638         "  --dest=PATH          path where backup is to be written\n"
639         "  --upload-script=COMMAND\n"
640         "                       program to invoke for each backup file generated\n"
641         "  --exclude=PATTERN    exclude files matching PATTERN from snapshot\n"
642         "  --include=PATTERN    include files matching PATTERN in snapshot\n"
643         "  --dir-merge=PATTERN  parse files matching PATTERN to read additional\n"
644         "                       subtree-specific include/exclude rules during backup\n"
645         "  --localdb=PATH       local backup metadata is stored in PATH\n"
646         "  --tmpdir=PATH        path for temporarily storing backup files\n"
647         "                           (defaults to TMPDIR environment variable or /tmp)\n"
648         "  --filter=COMMAND     program through which to filter segment data\n"
649         "                           (defaults to \"bzip2 -c\")\n"
650         "  --filter-extension=EXT\n"
651         "                       string to append to segment files\n"
652         "                           (defaults to \".bz2\")\n"
653         "  --signature-filter=COMMAND\n"
654         "                       program though which to filter descriptor\n"
655         "  --scheme=NAME        optional name for this snapshot\n"
656         "  --intent=FLOAT       DEPRECATED: ignored, and will be removed soon\n"
657         "  --full-metadata      do not re-use metadata from previous backups\n"
658         "  --rebuild-statcache  re-read all file data to verify statcache\n"
659         "  -v --verbose         list files as they are backed up\n"
660         "\n"
661         "Exactly one of --dest or --upload-script must be specified.\n",
662         cumulus_version, program
663     );
664 }
665
666 int main(int argc, char *argv[])
667 {
668     hash_init();
669
670     string backup_dest = "", backup_script = "";
671     string localdb_dir = "";
672     string backup_scheme = "";
673     string signature_filter = "";
674
675     string tmp_dir = "/tmp";
676     if (getenv("TMPDIR") != NULL)
677         tmp_dir = getenv("TMPDIR");
678
679     while (1) {
680         static struct option long_options[] = {
681             {"localdb", 1, 0, 0},           // 0
682             {"filter", 1, 0, 0},            // 1
683             {"filter-extension", 1, 0, 0},  // 2
684             {"dest", 1, 0, 0},              // 3
685             {"scheme", 1, 0, 0},            // 4
686             {"signature-filter", 1, 0, 0},  // 5
687             {"intent", 1, 0, 0},            // 6, DEPRECATED
688             {"full-metadata", 0, 0, 0},     // 7
689             {"tmpdir", 1, 0, 0},            // 8
690             {"upload-script", 1, 0, 0},     // 9
691             {"rebuild-statcache", 0, 0, 0}, // 10
692             {"include", 1, 0, 0},           // 11
693             {"exclude", 1, 0, 0},           // 12
694             {"dir-merge", 1, 0, 0},         // 13
695             // Aliases for short options
696             {"verbose", 0, 0, 'v'},
697             {NULL, 0, 0, 0},
698         };
699
700         int long_index;
701         int c = getopt_long(argc, argv, "v", long_options, &long_index);
702
703         if (c == -1)
704             break;
705
706         if (c == 0) {
707             switch (long_index) {
708             case 0:     // --localdb
709                 localdb_dir = optarg;
710                 break;
711             case 1:     // --filter
712                 filter_program = optarg;
713                 break;
714             case 2:     // --filter-extension
715                 filter_extension = optarg;
716                 break;
717             case 3:     // --dest
718                 backup_dest = optarg;
719                 break;
720             case 4:     // --scheme
721                 backup_scheme = optarg;
722                 break;
723             case 5:     // --signature-filter
724                 signature_filter = optarg;
725                 break;
726             case 6:     // --intent
727                 fprintf(stderr,
728                         "Warning: The --intent= option is deprecated and will "
729                         "be removed in the future.\n");
730                 break;
731             case 7:     // --full-metadata
732                 flag_full_metadata = true;
733                 break;
734             case 8:     // --tmpdir
735                 tmp_dir = optarg;
736                 break;
737             case 9:     // --upload-script
738                 backup_script = optarg;
739                 break;
740             case 10:    // --rebuild-statcache
741                 flag_rebuild_statcache = true;
742                 break;
743             case 11:    // --include
744                 filter_rules.add_pattern(PathFilterList::INCLUDE, optarg, "");
745                 break;
746             case 12:    // --exclude
747                 filter_rules.add_pattern(PathFilterList::EXCLUDE, optarg, "");
748                 break;
749             case 13:    // --dir-merge
750                 filter_rules.add_pattern(PathFilterList::DIRMERGE, optarg, "");
751                 break;
752             default:
753                 fprintf(stderr, "Unhandled long option!\n");
754                 return 1;
755             }
756         } else {
757             switch (c) {
758             case 'v':
759                 verbose = true;
760                 break;
761             default:
762                 usage(argv[0]);
763                 return 1;
764             }
765         }
766     }
767
768     if (optind == argc) {
769         usage(argv[0]);
770         return 1;
771     }
772
773     if (backup_dest == "" && backup_script == "") {
774         fprintf(stderr,
775                 "Error: Backup destination must be specified using --dest= or --upload-script=\n");
776         usage(argv[0]);
777         return 1;
778     }
779
780     if (backup_dest != "" && backup_script != "") {
781         fprintf(stderr,
782                 "Error: Cannot specify both --dest= and --upload-script=\n");
783         usage(argv[0]);
784         return 1;
785     }
786
787     // Default for --localdb is the same as --dest
788     if (localdb_dir == "") {
789         localdb_dir = backup_dest;
790     }
791     if (localdb_dir == "") {
792         fprintf(stderr,
793                 "Error: Must specify local database path with --localdb=\n");
794         usage(argv[0]);
795         return 1;
796     }
797
798     block_buf = new char[LBS_BLOCK_SIZE];
799
800     /* Initialize the remote storage layer.  If using an upload script, create
801      * a temporary directory for staging files.  Otherwise, write backups
802      * directly to the destination directory. */
803     if (backup_script != "") {
804         tmp_dir = tmp_dir + "/cumulus." + generate_uuid();
805         if (mkdir(tmp_dir.c_str(), 0700) < 0) {
806             fprintf(stderr, "Cannot create temporary directory %s: %m\n",
807                     tmp_dir.c_str());
808             return 1;
809         }
810         remote = new RemoteStore(tmp_dir, backup_script=backup_script);
811     } else {
812         remote = new RemoteStore(backup_dest);
813     }
814
815     /* Store the time when the backup started, so it can be included in the
816      * snapshot name. */
817     time_t now;
818     time(&now);
819     string timestamp
820         = TimeFormat::format(now, TimeFormat::FORMAT_FILENAME, true);
821
822     /* Open the local database which tracks all objects that are stored
823      * remotely, for efficient incrementals.  Provide it with the name of this
824      * snapshot. */
825     string database_path = localdb_dir + "/localdb.sqlite";
826     db = new LocalDb;
827     db->Open(database_path.c_str(), timestamp.c_str(), backup_scheme.c_str());
828
829     tss = new TarSegmentStore(remote, db);
830
831     /* Initialize the stat cache, for skipping over unchanged files. */
832     metawriter = new MetadataWriter(tss, localdb_dir.c_str(), timestamp.c_str(),
833                                     backup_scheme.c_str());
834
835     for (int i = optind; i < argc; i++) {
836         scanfile(argv[i]);
837     }
838
839     ObjectReference root_ref = metawriter->close();
840     string backup_root = root_ref.to_string();
841
842     delete metawriter;
843
844     tss->sync();
845     tss->dump_stats();
846     delete tss;
847
848     /* Write out a summary file with metadata for all the segments in this
849      * snapshot (can be used to reconstruct database contents if needed), and
850      * contains hash values for the segments for quick integrity checks. */
851     string dbmeta_filename = "snapshot-";
852     if (backup_scheme.size() > 0)
853         dbmeta_filename += backup_scheme + "-";
854     dbmeta_filename += timestamp + ".meta" + filter_extension;
855     RemoteFile *dbmeta_file = remote->alloc_file(dbmeta_filename, "meta");
856     scoped_ptr<FileFilter> dbmeta_filter(FileFilter::New(dbmeta_file->get_fd(),
857                                                          filter_program));
858     if (dbmeta_filter == NULL) {
859         fprintf(stderr, "Unable to open descriptor output file: %m\n");
860         return 1;
861     }
862     FILE *dbmeta = fdopen(dbmeta_filter->get_wrapped_fd(), "w");
863
864     std::set<string> segment_list = db->GetUsedSegments();
865     for (std::set<string>::iterator i = segment_list.begin();
866          i != segment_list.end(); ++i) {
867         map<string, string> segment_metadata = db->GetSegmentMetadata(*i);
868         if (segment_metadata.size() > 0) {
869             map<string, string>::const_iterator j;
870             for (j = segment_metadata.begin();
871                  j != segment_metadata.end(); ++j)
872             {
873                 fprintf(dbmeta, "%s: %s\n",
874                         j->first.c_str(), j->second.c_str());
875             }
876             fprintf(dbmeta, "\n");
877         }
878     }
879     fclose(dbmeta);
880     dbmeta_filter->wait();
881
882     string dbmeta_csum
883         = Hash::hash_file(dbmeta_file->get_local_path().c_str());
884     dbmeta_file->send();
885
886     db->Close();
887
888     /* All other files should be flushed to remote storage before writing the
889      * backup descriptor below, so that it is not possible to have a backup
890      * descriptor written out depending on non-existent (not yet written)
891      * files. */
892     remote->sync();
893
894     /* Write a backup descriptor file, which says which segments are needed and
895      * where to start to restore this snapshot.  The filename is based on the
896      * current time.  If a signature filter program was specified, filter the
897      * data through that to give a chance to sign the descriptor contents. */
898     string desc_filename = "snapshot-";
899     if (backup_scheme.size() > 0)
900         desc_filename += backup_scheme + "-";
901     desc_filename = desc_filename + timestamp + ".cumulus";
902
903     RemoteFile *descriptor_file = remote->alloc_file(desc_filename,
904                                                      "snapshots");
905     scoped_ptr<FileFilter> descriptor_filter(
906         FileFilter::New(descriptor_file->get_fd(), signature_filter.c_str()));
907     if (descriptor_filter == NULL) {
908         fprintf(stderr, "Unable to open descriptor output file: %m\n");
909         return 1;
910     }
911     FILE *descriptor = fdopen(descriptor_filter->get_wrapped_fd(), "w");
912
913     fprintf(descriptor, "Format: Cumulus Snapshot v0.11\n");
914     fprintf(descriptor, "Producer: Cumulus %s\n", cumulus_version);
915     string timestamp_local
916         = TimeFormat::format(now, TimeFormat::FORMAT_LOCALTIME, false);
917     fprintf(descriptor, "Date: %s\n", timestamp_local.c_str());
918     if (backup_scheme.size() > 0)
919         fprintf(descriptor, "Scheme: %s\n", backup_scheme.c_str());
920     fprintf(descriptor, "Root: %s\n", backup_root.c_str());
921
922     if (dbmeta_csum.size() > 0) {
923         fprintf(descriptor, "Segment-metadata: %s\n", dbmeta_csum.c_str());
924     }
925
926     fprintf(descriptor, "Segments:\n");
927     for (std::set<string>::iterator i = segment_list.begin();
928          i != segment_list.end(); ++i) {
929         fprintf(descriptor, "    %s\n", i->c_str());
930     }
931
932     fclose(descriptor);
933     if (descriptor_filter->wait() < 0) {
934         fatal("Signature filter process error");
935     }
936
937     descriptor_file->send();
938
939     remote->sync();
940     delete remote;
941
942     if (backup_script != "") {
943         if (rmdir(tmp_dir.c_str()) < 0) {
944             fprintf(stderr,
945                     "Warning: Cannot delete temporary directory %s: %m\n",
946                     tmp_dir.c_str());
947         }
948     }
949
950     return 0;
951 }