1 /* Cumulus: Efficient Filesystem Backup to the Cloud
2 * Copyright (C) 2006-2008 The Cumulus Developers
3 * See the AUTHORS file for a list of contributors.
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.
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.
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.
20 /* Backup data is stored in a collection of objects, which are grouped together
21 * into segments for storage purposes. This implementation of the object store
22 * represents segments as TAR files and objects as files within them. */
40 #include "third_party/sha1.h"
44 /* In memory datatype to represent key/value pairs of information, such as file
45 * metadata. Currently implemented as map<string, string>. */
46 typedef std::map<std::string, std::string> dictionary;
48 /* Simplified TAR header--we only need to store regular files, don't need to
49 * handle long filenames, etc. */
50 static const int TAR_BLOCK_SIZE = 512;
74 // It is valid for program to be NULL or empty; if so, no filtering is
76 static FileFilter *New(int fd, const char *program);
78 // Wait for the filter process to terminate.
81 // Accessors for the file descriptors.
82 int get_raw_fd() const { return fd_raw; }
83 int get_wrapped_fd() const { return fd_wrapped; }
86 FileFilter(int raw, int wrapped, pid_t pid);
88 // Launch a process to filter data written to a file descriptor. fd_out is
89 // the file descriptor where the filtered data should be written. program
90 // is the filter program to execute (a single string which will be
91 // interpreted by /bin/sh). The return value is a file descriptor to which
92 // the data to be filtered should be written. The process ID of the filter
93 // process is stored at address filter_pid if non-NULL.
94 static int spawn_filter(int fd_out, const char *program, pid_t *filter_pid);
96 // The original file descriptor passed when creating the FileFilter object.
99 // The wrapped file descriptor: writes here are piped through the filter
103 // The filter process if one was launched, or -1 if there is no filter
108 /* A simple wrapper around a single TAR file to represent a segment. Objects
109 * may only be written out all at once, since the tar header must be written
110 * first; incremental writing is not supported. */
113 Tarfile(RemoteFile *file, const std::string &segment);
116 void write_object(int id, const char *data, size_t len);
118 // Return an estimate of the size of the file.
119 size_t size_estimate();
123 std::string segment_name;
126 std::unique_ptr<FileFilter> filter;
128 // Write data to the tar file
129 void tar_write(const char *data, size_t size);
132 class TarSegmentStore {
134 // New segments will be stored in the given directory.
135 TarSegmentStore(RemoteStore *remote,
137 { this->remote = remote; this->db = db; }
138 ~TarSegmentStore() { sync(); }
140 // Writes an object to segment in the store, and returns the name
141 // (segment/object) to refer to it. The optional parameter group can be
142 // used to control object placement; objects with different group
143 // parameters are kept in separate segments.
144 ObjectReference write_object(const char *data, size_t len,
145 const std::string &group = "",
146 const std::string &checksum = "",
149 // Ensure all segments have been fully written.
152 // Dump statistics to stdout about how much data has been written
156 struct segment_info {
159 std::string name; // UUID
160 int count; // Objects written to this segment
161 int data_size; // Combined size of objects written
162 std::string basename; // Name of segment without directory
167 std::map<std::string, struct segment_info *> segments;
170 // Ensure that all segments in the given group have been fully written.
171 void close_segment(const std::string &group);
173 // Parse an object reference string and return just the segment name
175 std::string object_reference_to_segment(const std::string &object);
178 /* An in-memory representation of an object, which can be incrementally built
179 * before it is written out to a segment. */
185 // If an object is placed in a group, it will be written out to segments
186 // only containing other objects in the same group. A group name is simply
188 //std::string get_group() const { return group; }
189 void set_group(const std::string &g) { group = g; }
191 // Data in an object must be written all at once, and cannot be generated
192 // incrementally. Data can be an arbitrary block of binary data of any
193 // size. The pointer to the data need only remain valid until write() is
194 // called. If checksum is non-NULL then it is assumed to contain a hash
195 // value for the data; this provides an optimization in case the caller has
196 // already checksummed the data. Otherwise the set_data will compute a
197 // hash of the data itself.
198 void set_data(const char *d, size_t len, const char *checksum);
200 // Explicitly sets the age of the data, for later garbage-collection or
201 // repacking purposes. If not set, the age defaults to the current time.
202 // The age is stored in the database as a floating point value, expressing
203 // the time in Julian days.
204 void set_age(double age) { this->age = age; }
206 // Write an object to a segment, thus making it permanent. This function
207 // can be called at most once.
208 void write(TarSegmentStore *store);
210 // An object is assigned a permanent name once it has been written to a
211 // segment. Until that time, its name cannot be determined.
212 ObjectReference get_ref() { return ref; }
219 std::string checksum;
225 /* Program through which segment data is piped before being written to file. */
226 extern const char *filter_program;
228 /* Extension which should be appended to segments written out (.tar is already
229 * included; this adds to it) */
230 extern const char *filter_extension;
232 #endif // _LBS_STORE_H