Initial implementation of metadata log sharing.
[cumulus.git] / scandir.cc
1 /* Recursively descend the filesystem and visit each file. */
2
3 #include <dirent.h>
4 #include <errno.h>
5 #include <fcntl.h>
6 #include <getopt.h>
7 #include <grp.h>
8 #include <pwd.h>
9 #include <stdint.h>
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <sys/stat.h>
13 #include <sys/sysmacros.h>
14 #include <sys/types.h>
15 #include <sys/wait.h>
16 #include <unistd.h>
17
18 #include <algorithm>
19 #include <fstream>
20 #include <iostream>
21 #include <list>
22 #include <set>
23 #include <sstream>
24 #include <string>
25 #include <vector>
26
27 #include "localdb.h"
28 #include "metadata.h"
29 #include "store.h"
30 #include "sha1.h"
31 #include "statcache.h"
32 #include "util.h"
33
34 using std::list;
35 using std::string;
36 using std::vector;
37 using std::ostream;
38
39 /* Version information.  This will be filled in by the Makefile. */
40 #ifndef LBS_VERSION
41 #define LBS_VERSION Unknown
42 #endif
43 #define LBS_STRINGIFY(s) LBS_STRINGIFY2(s)
44 #define LBS_STRINGIFY2(s) #s
45 static const char lbs_version[] = LBS_STRINGIFY(LBS_VERSION);
46
47 static TarSegmentStore *tss = NULL;
48 static MetadataWriter *metawriter = NULL;
49
50 /* Buffer for holding a single block of data read from a file. */
51 static const size_t LBS_BLOCK_SIZE = 1024 * 1024;
52 static char *block_buf;
53
54 /* Local database, which tracks objects written in this and previous
55  * invocations to help in creating incremental snapshots. */
56 LocalDb *db;
57
58 /* Stat cache, which stored data locally to speed the backup process by quickly
59  * skipping files which have not changed. */
60 StatCache *statcache;
61
62 /* Keep track of all segments which are needed to reconstruct the snapshot. */
63 std::set<string> segment_list;
64
65 /* Selection of files to include/exclude in the snapshot. */
66 std::list<string> includes;         // Paths in which files should be saved
67 std::list<string> excludes;         // Paths which will not be saved
68 std::list<string> searches;         // Directories we don't want to save, but
69                                     //   do want to descend searching for data
70                                     //   in included paths
71
72 bool relative_paths = true;
73
74 /* Ensure that the given segment is listed as a dependency of the current
75  * snapshot. */
76 void add_segment(const string& segment)
77 {
78     segment_list.insert(segment);
79 }
80
81 /* Read data from a file descriptor and return the amount of data read.  A
82  * short read (less than the requested size) will only occur if end-of-file is
83  * hit. */
84 ssize_t file_read(int fd, char *buf, size_t maxlen)
85 {
86     size_t bytes_read = 0;
87
88     while (true) {
89         ssize_t res = read(fd, buf, maxlen);
90         if (res < 0) {
91             if (errno == EINTR)
92                 continue;
93             fprintf(stderr, "error reading file: %m\n");
94             return -1;
95         } else if (res == 0) {
96             break;
97         } else {
98             bytes_read += res;
99             buf += res;
100             maxlen -= res;
101         }
102     }
103
104     return bytes_read;
105 }
106
107 /* Read the contents of a file (specified by an open file descriptor) and copy
108  * the data to the store.  Returns the size of the file (number of bytes
109  * dumped), or -1 on error. */
110 int64_t dumpfile(int fd, dictionary &file_info, const string &path,
111                  struct stat& stat_buf)
112 {
113     int64_t size = 0;
114     list<string> object_list;
115     const char *status = NULL;          /* Status indicator printed out */
116
117     /* Look up this file in the old stat cache, if we can.  If the stat
118      * information indicates that the file has not changed, do not bother
119      * re-reading the entire contents. */
120     bool cached = false;
121
122     if (statcache->Find(path, &stat_buf)) {
123         cached = true;
124         const list<ObjectReference> &blocks = statcache->get_blocks();
125
126         /* If any of the blocks in the object have been expired, then we should
127          * fall back to fully reading in the file. */
128         for (list<ObjectReference>::const_iterator i = blocks.begin();
129              i != blocks.end(); ++i) {
130             const ObjectReference &ref = *i;
131             if (!db->IsAvailable(ref)) {
132                 cached = false;
133                 status = "repack";
134                 break;
135             }
136         }
137
138         /* If everything looks okay, use the cached information */
139         if (cached) {
140             file_info["checksum"] = statcache->get_checksum();
141             for (list<ObjectReference>::const_iterator i = blocks.begin();
142                  i != blocks.end(); ++i) {
143                 const ObjectReference &ref = *i;
144                 object_list.push_back(ref.to_string());
145                 segment_list.insert(ref.get_segment());
146                 db->UseObject(ref);
147             }
148             size = stat_buf.st_size;
149         }
150     }
151
152     /* If the file is new or changed, we must read in the contents a block at a
153      * time. */
154     if (!cached) {
155         SHA1Checksum hash;
156         while (true) {
157             ssize_t bytes = file_read(fd, block_buf, LBS_BLOCK_SIZE);
158             if (bytes == 0)
159                 break;
160             if (bytes < 0) {
161                 fprintf(stderr, "Backup contents for %s may be incorrect\n",
162                         path.c_str());
163                 break;
164             }
165
166             hash.process(block_buf, bytes);
167
168             // Either find a copy of this block in an already-existing segment,
169             // or index it so it can be re-used in the future
170             double block_age = 0.0;
171             SHA1Checksum block_hash;
172             block_hash.process(block_buf, bytes);
173             string block_csum = block_hash.checksum_str();
174             ObjectReference ref = db->FindObject(block_csum, bytes);
175
176             // Store a copy of the object if one does not yet exist
177             if (ref.get_segment().size() == 0) {
178                 LbsObject *o = new LbsObject;
179                 int object_group;
180
181                 /* We might still have seen this checksum before, if the object
182                  * was stored at some time in the past, but we have decided to
183                  * clean the segment the object was originally stored in
184                  * (FindObject will not return such objects).  When rewriting
185                  * the object contents, put it in a separate group, so that old
186                  * objects get grouped together.  The hope is that these old
187                  * objects will continue to be used in the future, and we
188                  * obtain segments which will continue to be well-utilized.
189                  * Additionally, keep track of the age of the data by looking
190                  * up the age of the block which was expired and using that
191                  * instead of the current time. */
192                 if (db->IsOldObject(block_csum, bytes,
193                                     &block_age, &object_group)) {
194                     if (object_group == 0) {
195                         o->set_group("data");
196                     } else {
197                         char group[32];
198                         sprintf(group, "compacted-%d", object_group);
199                         o->set_group(group);
200                     }
201                     if (status == NULL)
202                         status = "partial";
203                 } else {
204                     o->set_group("data");
205                     status = "new";
206                 }
207
208                 o->set_data(block_buf, bytes);
209                 o->write(tss);
210                 ref = o->get_ref();
211                 db->StoreObject(ref, block_csum, bytes, block_age);
212                 delete o;
213             }
214
215             object_list.push_back(ref.to_string());
216             segment_list.insert(ref.get_segment());
217             db->UseObject(ref);
218             size += bytes;
219
220             if (status == NULL)
221                 status = "old";
222         }
223
224         file_info["checksum"] = hash.checksum_str();
225     }
226
227     if (status != NULL)
228         printf("    [%s]\n", status);
229
230     statcache->Save(path, &stat_buf, file_info["checksum"], object_list);
231
232     string blocklist = "";
233     for (list<string>::iterator i = object_list.begin();
234          i != object_list.end(); ++i) {
235         if (i != object_list.begin())
236             blocklist += "\n    ";
237         blocklist += *i;
238     }
239     file_info["data"] = blocklist;
240
241     return size;
242 }
243
244 /* Dump a specified filesystem object (file, directory, etc.) based on its
245  * inode information.  If the object is a regular file, an open filehandle is
246  * provided. */
247 void dump_inode(const string& path,         // Path within snapshot
248                 const string& fullpath,     // Path to object in filesystem
249                 struct stat& stat_buf,      // Results of stat() call
250                 int fd)                     // Open filehandle if regular file
251 {
252     char *buf;
253     dictionary file_info;
254     int64_t file_size;
255     ssize_t len;
256
257     printf("%s\n", path.c_str());
258
259     if (metawriter->find(path)) {
260         ObjectReference *r = metawriter->old_ref();
261         if (r != NULL) {
262             string s = r->to_string();
263             printf("    cached at %s\n", s.c_str());
264             delete r;
265         }
266     }
267
268     file_info["path"] = uri_encode(path);
269     file_info["mode"] = encode_int(stat_buf.st_mode & 07777, 8);
270     file_info["ctime"] = encode_int(stat_buf.st_ctime);
271     file_info["mtime"] = encode_int(stat_buf.st_mtime);
272     file_info["user"] = encode_int(stat_buf.st_uid);
273     file_info["group"] = encode_int(stat_buf.st_gid);
274
275     struct passwd *pwd = getpwuid(stat_buf.st_uid);
276     if (pwd != NULL) {
277         file_info["user"] += " (" + uri_encode(pwd->pw_name) + ")";
278     }
279
280     struct group *grp = getgrgid(stat_buf.st_gid);
281     if (pwd != NULL) {
282         file_info["group"] += " (" + uri_encode(grp->gr_name) + ")";
283     }
284
285     if (stat_buf.st_nlink > 1 && (stat_buf.st_mode & S_IFMT) != S_IFDIR) {
286         file_info["links"] = encode_int(stat_buf.st_nlink);
287     }
288
289     file_info["inode"] = encode_int(major(stat_buf.st_dev))
290         + "/" + encode_int(minor(stat_buf.st_dev))
291         + "/" + encode_int(stat_buf.st_ino);
292
293     char inode_type;
294
295     switch (stat_buf.st_mode & S_IFMT) {
296     case S_IFIFO:
297         inode_type = 'p';
298         break;
299     case S_IFSOCK:
300         inode_type = 's';
301         break;
302     case S_IFBLK:
303     case S_IFCHR:
304         inode_type = ((stat_buf.st_mode & S_IFMT) == S_IFBLK) ? 'b' : 'c';
305         file_info["device"] = encode_int(major(stat_buf.st_rdev))
306             + "/" + encode_int(minor(stat_buf.st_rdev));
307         break;
308     case S_IFLNK:
309         inode_type = 'l';
310
311         /* Use the reported file size to allocate a buffer large enough to read
312          * the symlink.  Allocate slightly more space, so that we ask for more
313          * bytes than we expect and so check for truncation. */
314         buf = new char[stat_buf.st_size + 2];
315         len = readlink(fullpath.c_str(), buf, stat_buf.st_size + 1);
316         if (len < 0) {
317             fprintf(stderr, "error reading symlink: %m\n");
318         } else if (len <= stat_buf.st_size) {
319             buf[len] = '\0';
320             file_info["target"] = uri_encode(buf);
321         } else if (len > stat_buf.st_size) {
322             fprintf(stderr, "error reading symlink: name truncated\n");
323         }
324
325         delete[] buf;
326         break;
327     case S_IFREG:
328         inode_type = 'f';
329
330         file_size = dumpfile(fd, file_info, path, stat_buf);
331         file_info["size"] = encode_int(file_size);
332
333         if (file_size < 0)
334             return;             // error occurred; do not dump file
335
336         if (file_size != stat_buf.st_size) {
337             fprintf(stderr, "Warning: Size of %s changed during reading\n",
338                     path.c_str());
339         }
340
341         break;
342     case S_IFDIR:
343         inode_type = 'd';
344         break;
345
346     default:
347         fprintf(stderr, "Unknown inode type: mode=%x\n", stat_buf.st_mode);
348         return;
349     }
350
351     file_info["type"] = string(1, inode_type);
352
353     metawriter->add(file_info);
354 }
355
356 void scanfile(const string& path, bool include)
357 {
358     int fd = -1;
359     long flags;
360     struct stat stat_buf;
361     list<string> refs;
362
363     string true_path;
364     if (relative_paths)
365         true_path = path;
366     else
367         true_path = "/" + path;
368
369     // Set to true if we should scan through the contents of this directory,
370     // but not actually back files up
371     bool scan_only = false;
372
373     // Check this file against the include/exclude list to see if it should be
374     // considered
375     for (list<string>::iterator i = includes.begin();
376          i != includes.end(); ++i) {
377         if (path == *i) {
378             printf("Including %s\n", path.c_str());
379             include = true;
380         }
381     }
382
383     for (list<string>::iterator i = excludes.begin();
384          i != excludes.end(); ++i) {
385         if (path == *i) {
386             printf("Excluding %s\n", path.c_str());
387             include = false;
388         }
389     }
390
391     for (list<string>::iterator i = searches.begin();
392          i != searches.end(); ++i) {
393         if (path == *i) {
394             printf("Scanning %s\n", path.c_str());
395             scan_only = true;
396         }
397     }
398
399     if (!include && !scan_only)
400         return;
401
402     if (lstat(true_path.c_str(), &stat_buf) < 0) {
403         fprintf(stderr, "lstat(%s): %m\n", path.c_str());
404         return;
405     }
406
407     if ((stat_buf.st_mode & S_IFMT) == S_IFREG) {
408         /* Be paranoid when opening the file.  We have no guarantee that the
409          * file was not replaced between the stat() call above and the open()
410          * call below, so we might not even be opening a regular file.  We
411          * supply flags to open to to guard against various conditions before
412          * we can perform an lstat to check that the file is still a regular
413          * file:
414          *   - O_NOFOLLOW: in the event the file was replaced by a symlink
415          *   - O_NONBLOCK: prevents open() from blocking if the file was
416          *     replaced by a fifo
417          * We also add in O_NOATIME, since this may reduce disk writes (for
418          * inode updates).  However, O_NOATIME may result in EPERM, so if the
419          * initial open fails, try again without O_NOATIME.  */
420         fd = open(true_path.c_str(), O_RDONLY|O_NOATIME|O_NOFOLLOW|O_NONBLOCK);
421         if (fd < 0) {
422             fd = open(true_path.c_str(), O_RDONLY|O_NOFOLLOW|O_NONBLOCK);
423         }
424         if (fd < 0) {
425             fprintf(stderr, "Unable to open file %s: %m\n", path.c_str());
426             return;
427         }
428
429         /* Drop the use of the O_NONBLOCK flag; we only wanted that for file
430          * open. */
431         flags = fcntl(fd, F_GETFL);
432         fcntl(fd, F_SETFL, flags & ~O_NONBLOCK);
433
434         /* Perform the stat call again, and check that we still have a regular
435          * file. */
436         if (fstat(fd, &stat_buf) < 0) {
437             fprintf(stderr, "fstat: %m\n");
438             close(fd);
439             return;
440         }
441
442         if ((stat_buf.st_mode & S_IFMT) != S_IFREG) {
443             fprintf(stderr, "file is no longer a regular file!\n");
444             close(fd);
445             return;
446         }
447     }
448
449     dump_inode(path, true_path, stat_buf, fd);
450
451     if (fd >= 0)
452         close(fd);
453
454     // If we hit a directory, now that we've written the directory itself,
455     // recursively scan the directory.
456     if ((stat_buf.st_mode & S_IFMT) == S_IFDIR) {
457         DIR *dir = opendir(true_path.c_str());
458
459         if (dir == NULL) {
460             fprintf(stderr, "Error: %m\n");
461             return;
462         }
463
464         struct dirent *ent;
465         vector<string> contents;
466         while ((ent = readdir(dir)) != NULL) {
467             string filename(ent->d_name);
468             if (filename == "." || filename == "..")
469                 continue;
470             contents.push_back(filename);
471         }
472
473         closedir(dir);
474
475         sort(contents.begin(), contents.end());
476
477         for (vector<string>::iterator i = contents.begin();
478              i != contents.end(); ++i) {
479             const string& filename = *i;
480             if (path == ".")
481                 scanfile(filename, include);
482             else
483                 scanfile(path + "/" + filename, include);
484         }
485     }
486 }
487
488 /* Include the specified file path in the backups.  Append the path to the
489  * includes list, and to ensure that we actually see the path when scanning the
490  * directory tree, add all the parent directories to the search list, which
491  * means we will scan through the directory listing even if the files
492  * themselves are excluded from being backed up. */
493 void add_include(const char *path)
494 {
495     printf("Add: %s\n", path);
496     /* Was an absolute path specified?  If so, we'll need to start scanning
497      * from the root directory.  Make sure that the user was consistent in
498      * providing either all relative paths or all absolute paths. */
499     if (path[0] == '/') {
500         if (includes.size() > 0 && relative_paths == true) {
501             fprintf(stderr,
502                     "Error: Cannot mix relative and absolute paths!\n");
503             exit(1);
504         }
505
506         relative_paths = false;
507
508         // Skip over leading '/'
509         path++;
510     } else if (relative_paths == false && path[0] != '/') {
511         fprintf(stderr, "Error: Cannot mix relative and absolute paths!\n");
512         exit(1);
513     }
514
515     includes.push_back(path);
516
517     /* Split the specified path into directory components, and ensure that we
518      * descend into all the directories along the path. */
519     const char *slash = path;
520
521     if (path[0] == '\0')
522         return;
523
524     while ((slash = strchr(slash + 1, '/')) != NULL) {
525         string component(path, slash - path);
526         searches.push_back(component);
527     }
528 }
529
530 void usage(const char *program)
531 {
532     fprintf(
533         stderr,
534         "LBS %s\n\n"
535         "Usage: %s [OPTION]... --dest=DEST PATHS...\n"
536         "Produce backup snapshot of files in SOURCE and store to DEST.\n"
537         "\n"
538         "Options:\n"
539         "  --dest=PATH          path where backup is to be written [REQUIRED]\n"
540         "  --exclude=PATH       exclude files in PATH from snapshot\n"
541         "  --localdb=PATH       local backup metadata is stored in PATH\n"
542         "  --filter=COMMAND     program through which to filter segment data\n"
543         "                           (defaults to \"bzip2 -c\")\n"
544         "  --filter-extension=EXT\n"
545         "                       string to append to segment files\n"
546         "                           (defaults to \".bz2\")\n"
547         "  --signature-filter=COMMAND\n"
548         "                       program though which to filter descriptor\n"
549         "  --scheme=NAME        optional name for this snapshot\n",
550         lbs_version, program
551     );
552 }
553
554 int main(int argc, char *argv[])
555 {
556     string backup_dest = "";
557     string localdb_dir = "";
558     string backup_scheme = "";
559     string signature_filter = "";
560
561     while (1) {
562         static struct option long_options[] = {
563             {"localdb", 1, 0, 0},           // 0
564             {"exclude", 1, 0, 0},           // 1
565             {"filter", 1, 0, 0},            // 2
566             {"filter-extension", 1, 0, 0},  // 3
567             {"dest", 1, 0, 0},              // 4
568             {"scheme", 1, 0, 0},            // 5
569             {"signature-filter", 1, 0, 0},  // 6
570             {NULL, 0, 0, 0},
571         };
572
573         int long_index;
574         int c = getopt_long(argc, argv, "", long_options, &long_index);
575
576         if (c == -1)
577             break;
578
579         if (c == 0) {
580             switch (long_index) {
581             case 0:     // --localdb
582                 localdb_dir = optarg;
583                 break;
584             case 1:     // --exclude
585                 if (optarg[0] != '/')
586                     excludes.push_back(optarg);
587                 else
588                     excludes.push_back(optarg + 1);
589                 break;
590             case 2:     // --filter
591                 filter_program = optarg;
592                 break;
593             case 3:     // --filter-extension
594                 filter_extension = optarg;
595                 break;
596             case 4:     // --dest
597                 backup_dest = optarg;
598                 break;
599             case 5:     // --scheme
600                 backup_scheme = optarg;
601                 break;
602             case 6:     // --signature-filter
603                 signature_filter = optarg;
604                 break;
605             default:
606                 fprintf(stderr, "Unhandled long option!\n");
607                 return 1;
608             }
609         } else {
610             usage(argv[0]);
611             return 1;
612         }
613     }
614
615     if (optind == argc) {
616         usage(argv[0]);
617         return 1;
618     }
619
620     searches.push_back(".");
621     for (int i = optind; i < argc; i++)
622         add_include(argv[i]);
623
624     if (backup_dest == "") {
625         fprintf(stderr,
626                 "Error: Backup destination must be specified with --dest=\n");
627         usage(argv[0]);
628         return 1;
629     }
630
631     // Default for --localdb is the same as --dest
632     if (localdb_dir == "") {
633         localdb_dir = backup_dest;
634     }
635
636     // Dump paths for debugging/informational purposes
637     {
638         list<string>::const_iterator i;
639
640         printf("LBS Version: %s\n", lbs_version);
641
642         printf("--dest=%s\n--localdb=%s\n\n",
643                backup_dest.c_str(), localdb_dir.c_str());
644
645         printf("Includes:\n");
646         for (i = includes.begin(); i != includes.end(); ++i)
647             printf("    %s\n", i->c_str());
648
649         printf("Excludes:\n");
650         for (i = excludes.begin(); i != excludes.end(); ++i)
651             printf("    %s\n", i->c_str());
652
653         printf("Searching:\n");
654         for (i = searches.begin(); i != searches.end(); ++i)
655             printf("    %s\n", i->c_str());
656     }
657
658     block_buf = new char[LBS_BLOCK_SIZE];
659
660     /* Store the time when the backup started, so it can be included in the
661      * snapshot name. */
662     time_t now;
663     struct tm time_buf;
664     char desc_buf[256];
665     time(&now);
666     localtime_r(&now, &time_buf);
667     strftime(desc_buf, sizeof(desc_buf), "%Y%m%dT%H%M%S", &time_buf);
668
669     /* Open the local database which tracks all objects that are stored
670      * remotely, for efficient incrementals.  Provide it with the name of this
671      * snapshot. */
672     string database_path = localdb_dir + "/localdb.sqlite";
673     db = new LocalDb;
674     db->Open(database_path.c_str(), desc_buf,
675              backup_scheme.size() ? backup_scheme.c_str() : NULL);
676
677     tss = new TarSegmentStore(backup_dest, db);
678
679     /* Initialize the stat cache, for skipping over unchanged files. */
680     statcache = new StatCache;
681     statcache->Open(localdb_dir.c_str(), desc_buf,
682                     backup_scheme.size() ? backup_scheme.c_str() : NULL);
683
684     metawriter = new MetadataWriter(tss, localdb_dir.c_str(), desc_buf,
685                                     backup_scheme.size()
686                                         ? backup_scheme.c_str()
687                                         : NULL);
688
689     scanfile(".", false);
690
691     ObjectReference root_ref = metawriter->close();
692     add_segment(root_ref.get_segment());
693     string backup_root = root_ref.to_string();
694
695     statcache->Close();
696     delete statcache;
697
698     delete metawriter;
699
700     tss->sync();
701     tss->dump_stats();
702     delete tss;
703
704     /* Write out a checksums file which lists the checksums for all the
705      * segments included in this snapshot.  The format is designed so that it
706      * may be easily verified using the sha1sums command. */
707     const char csum_type[] = "sha1";
708     string checksum_filename = backup_dest + "/snapshot-";
709     if (backup_scheme.size() > 0)
710         checksum_filename += backup_scheme + "-";
711     checksum_filename = checksum_filename + desc_buf + "." + csum_type + "sums";
712     FILE *checksums = fopen(checksum_filename.c_str(), "w");
713     if (checksums != NULL) {
714         for (std::set<string>::iterator i = segment_list.begin();
715              i != segment_list.end(); ++i) {
716             string seg_path, seg_csum;
717             if (db->GetSegmentChecksum(*i, &seg_path, &seg_csum)) {
718                 const char *raw_checksum = NULL;
719                 if (strncmp(seg_csum.c_str(), csum_type,
720                             strlen(csum_type)) == 0) {
721                     raw_checksum = seg_csum.c_str() + strlen(csum_type);
722                     if (*raw_checksum == '=')
723                         raw_checksum++;
724                     else
725                         raw_checksum = NULL;
726                 }
727
728                 if (raw_checksum != NULL)
729                     fprintf(checksums, "%s *%s\n",
730                             raw_checksum, seg_path.c_str());
731             }
732         }
733         fclose(checksums);
734     } else {
735         fprintf(stderr, "ERROR: Unable to write checksums file: %m\n");
736     }
737
738     db->Close();
739
740     /* Write a backup descriptor file, which says which segments are needed and
741      * where to start to restore this snapshot.  The filename is based on the
742      * current time.  If a signature filter program was specified, filter the
743      * data through that to give a chance to sign the descriptor contents. */
744     string desc_filename = backup_dest + "/snapshot-";
745     if (backup_scheme.size() > 0)
746         desc_filename += backup_scheme + "-";
747     desc_filename = desc_filename + desc_buf + ".lbs";
748
749     int descriptor_fd = open(desc_filename.c_str(), O_WRONLY | O_CREAT, 0666);
750     if (descriptor_fd < 0) {
751         fprintf(stderr, "Unable to open descriptor output file: %m\n");
752         return 1;
753     }
754     pid_t signature_pid = 0;
755     if (signature_filter.size() > 0) {
756         int new_fd = spawn_filter(descriptor_fd, signature_filter.c_str(),
757                                   &signature_pid);
758         close(descriptor_fd);
759         descriptor_fd = new_fd;
760     }
761     FILE *descriptor = fdopen(descriptor_fd, "w");
762
763     fprintf(descriptor, "Format: LBS Snapshot v0.6\n");
764     fprintf(descriptor, "Producer: LBS %s\n", lbs_version);
765     strftime(desc_buf, sizeof(desc_buf), "%Y-%m-%d %H:%M:%S %z", &time_buf);
766     fprintf(descriptor, "Date: %s\n", desc_buf);
767     if (backup_scheme.size() > 0)
768         fprintf(descriptor, "Scheme: %s\n", backup_scheme.c_str());
769     fprintf(descriptor, "Root: %s\n", backup_root.c_str());
770
771     SHA1Checksum checksum_csum;
772     if (checksum_csum.process_file(checksum_filename.c_str())) {
773         string csum = checksum_csum.checksum_str();
774         fprintf(descriptor, "Checksums: %s\n", csum.c_str());
775     }
776
777     fprintf(descriptor, "Segments:\n");
778     for (std::set<string>::iterator i = segment_list.begin();
779          i != segment_list.end(); ++i) {
780         fprintf(descriptor, "    %s\n", i->c_str());
781     }
782
783     fclose(descriptor);
784
785     if (signature_pid) {
786         int status;
787         waitpid(signature_pid, &status, 0);
788
789         if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
790             throw IOException("Signature filter process error");
791         }
792     }
793
794     return 0;
795 }