In-progress work to implement inode map loading at server start.
[bluesky.git] / bluesky / bluesky-private.h
1 /* Blue Sky: File Systems in the Cloud
2  *
3  * Copyright (C) 2009  The Regents of the University of California
4  * Written by Michael Vrable <mvrable@cs.ucsd.edu>
5  *
6  * TODO: Licensing
7  */
8
9 /* Declarations internal to the BlueSky library.  This header file should not
10  * be included by any users of the library (such as any filesystem
11  * proxy)--external users should only include bluesky.h. */
12
13 #ifndef _BLUESKY_PRIVATE_H
14 #define _BLUESKY_PRIVATE_H
15
16 #include "bluesky.h"
17
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21
22 extern int bluesky_verbose;
23
24 /* Target cache size levels. */
25 extern int bluesky_watermark_low_dirty;
26 extern int bluesky_watermark_medium_dirty;
27 extern int bluesky_watermark_high_dirty;
28
29 extern int bluesky_watermark_low_total;
30 extern int bluesky_watermark_medium_total;
31 extern int bluesky_watermark_high_total;
32
33 /* TODO: Make this go away entirely. */
34 BlueSkyFS *bluesky_new_fs(gchar *name);
35
36 void bluesky_inode_free_resources(BlueSkyInode *inode);
37
38 /* Linked list update functions for LRU lists. */
39 void bluesky_list_unlink(GList *head, GList *item);
40 GList *bluesky_list_prepend(GList *head, BlueSkyInode *inode);
41 GList *bluesky_list_append(GList *head, BlueSkyInode *inode);
42 BlueSkyInode *bluesky_list_head(GList *head);
43 BlueSkyInode *bluesky_list_tail(GList *head);
44
45 /* Serialization and deserialization of filesystem data for storing to
46  * persistent storage. */
47 void bluesky_serialize_superblock(GString *out, BlueSkyFS *fs);
48 BlueSkyFS *bluesky_deserialize_superblock(const gchar *buf);
49 BlueSkyCloudLog *bluesky_serialize_inode(BlueSkyInode *inode);
50 gboolean bluesky_deserialize_inode(BlueSkyInode *inode, BlueSkyCloudLog *item);
51
52 void bluesky_deserialize_cloudlog(BlueSkyCloudLog *item,
53                                   const char *data,
54                                   size_t len);
55
56 void bluesky_serialize_cloudlog(BlueSkyCloudLog *log,
57                                 GString *encrypted,
58                                 GString *authenticated,
59                                 GString *writable);
60
61 /* Storage layer.  Requests can be performed asynchronously, so these objects
62  * help keep track of operations in progress. */
63 typedef enum {
64     STORE_OP_NONE,
65     STORE_OP_GET,
66     STORE_OP_PUT,
67     STORE_OP_DELETE,
68     STORE_OP_BARRIER,       // Waits for other selected operations to complete
69 } BlueSkyStoreOp;
70
71 typedef enum {
72     ASYNC_NEW,              // Operation not yet submitted to storage layer
73     ASYNC_PENDING,          // Submitted to storage layer
74     ASYNC_RUNNING,          // Operation is in progress
75     ASYNC_COMPLETE,         // Operation finished, results available
76 } BlueSkyAsyncStatus;
77
78 struct BlueSkyNotifierList;
79 typedef struct _BlueSkyStoreAsync BlueSkyStoreAsync;
80 struct _BlueSkyStoreAsync {
81     BlueSkyStore *store;
82
83     GMutex *lock;
84     GCond *completion_cond;     /* Used to wait for operation to complete. */
85
86     gint refcount;              /* Reference count for destruction. */
87
88     BlueSkyAsyncStatus status;
89
90     BlueSkyStoreOp op;
91     gchar *key;                 /* Key to read/write */
92     BlueSkyRCStr *data;         /* Data read/to write */
93
94     int result;                 /* Result code; 0 for success. */
95     struct BlueSkyNotifierList *notifiers;
96     gint notifier_count;
97
98     /* The barrier waiting on this operation.  Support for more than one
99      * barrier for a single async is not well-supported and should be avoided
100      * if possible. */
101     BlueSkyStoreAsync *barrier;
102
103     bluesky_time_hires start_time;  /* Time operation was submitted. */
104     bluesky_time_hires exec_time;   /* Time processing started on operation. */
105
106     gpointer store_private;     /* For use by the storage implementation */
107 };
108
109 /* Support for notification lists.  These are lists of one-shot functions which
110  * can be called when certain events--primarily, competed storage
111  * events--occur.  Multiple notifiers can be added, but no particular order is
112  * guaranteed for the notification functions to be called. */
113 struct BlueSkyNotifierList {
114     struct BlueSkyNotifierList *next;
115     GFunc func;
116     BlueSkyStoreAsync *async;
117     gpointer user_data;     // Passed to the function when called
118 };
119
120 /* The abstraction layer for storage, allowing multiple implementations. */
121 typedef struct {
122     /* Create a new store instance and return a handle to it. */
123     gpointer (*create)(const gchar *path);
124
125     /* Clean up any resources used by this store. */
126     void (*destroy)(gpointer store);
127
128     /* Submit an operation (get/put/delete) to the storage layer to be
129      * performed asynchronously. */
130     void (*submit)(gpointer store, BlueSkyStoreAsync *async);
131
132     /* Clean up any implementation-private data in a BlueSkyStoreAsync. */
133     void (*cleanup)(gpointer store, BlueSkyStoreAsync *async);
134
135     /* Find the lexicographically-largest file starting with the specified
136      * prefix. */
137     char * (*lookup_last)(gpointer store, const gchar *prefix);
138 } BlueSkyStoreImplementation;
139
140 void bluesky_store_register(const BlueSkyStoreImplementation *impl,
141                             const gchar *name);
142
143 char *bluesky_store_lookup_last(BlueSkyStore *store, const char *prefix);
144 BlueSkyStoreAsync *bluesky_store_async_new(BlueSkyStore *store);
145 gpointer bluesky_store_async_get_handle(BlueSkyStoreAsync *async);
146 void bluesky_store_async_ref(BlueSkyStoreAsync *async);
147 void bluesky_store_async_unref(BlueSkyStoreAsync *async);
148 void bluesky_store_async_wait(BlueSkyStoreAsync *async);
149 void bluesky_store_async_add_notifier(BlueSkyStoreAsync *async,
150                                       GFunc func, gpointer user_data);
151 void bluesky_store_async_mark_complete(BlueSkyStoreAsync *async);
152 void bluesky_store_async_submit(BlueSkyStoreAsync *async);
153 void bluesky_store_sync(BlueSkyStore *store);
154
155 void bluesky_store_add_barrier(BlueSkyStoreAsync *barrier,
156                                BlueSkyStoreAsync *async);
157
158 void bluesky_inode_start_sync(BlueSkyInode *inode);
159
160 void bluesky_block_touch(BlueSkyInode *inode, uint64_t i);
161 void bluesky_block_fetch(BlueSkyInode *inode, BlueSkyBlock *block,
162                          BlueSkyStoreAsync *barrier);
163 void bluesky_block_flush(BlueSkyInode *inode, BlueSkyBlock *block,
164                          GList **log_items);
165 void bluesky_file_flush(BlueSkyInode *inode, GList **log_items);
166 void bluesky_file_drop_cached(BlueSkyInode *inode);
167
168 /* Writing of data to the cloud in log segments and tracking the location of
169  * various pieces of data (both where in the cloud and where cached locally).
170  * */
171
172 typedef struct {
173     char bytes[16];
174 } BlueSkyCloudID;
175
176 typedef struct {
177     uint32_t directory;
178     uint32_t sequence;
179     uint32_t offset;
180     uint32_t size;
181 } BlueSkyCloudPointer;
182
183 typedef enum {
184     LOGTYPE_INVALID = -1,
185     LOGTYPE_UNKNOWN = 0,
186     LOGTYPE_DATA = 1,
187     LOGTYPE_INODE = 2,
188     LOGTYPE_INODE_MAP = 3,
189     LOGTYPE_CHECKPOINT = 4,
190 } BlueSkyCloudLogType;
191
192 /* Headers that go on items in local log segments and cloud log segments. */
193 struct log_header {
194     uint32_t magic;             // HEADER_MAGIC
195     uint8_t type;               // Object type + '0'
196     uint32_t offset;            // Starting byte offset of the log header
197     uint32_t size1;             // Size of the data item (bytes)
198     uint32_t size2;             //
199     uint32_t size3;             //
200     uint64_t inum;              // Inode which owns this data, if any
201     BlueSkyCloudID id;          // Object identifier
202 } __attribute__((packed));
203
204 struct log_footer {
205     uint32_t magic;             // FOOTER_MAGIC
206     uint32_t crc;               // Computed from log_header to log_footer.magic
207 } __attribute__((packed));
208
209 struct cloudlog_header {
210     char magic[4];
211     uint8_t type;
212     BlueSkyCloudID id;
213     uint32_t size1, size2, size3;
214 } __attribute__((packed));
215
216 #define JOURNAL_MAGIC "\nLog"
217 #define CLOUDLOG_MAGIC "AgI-"
218
219 /* A record which tracks an object which has been written to a local log,
220  * cached, locally, and/or written to the cloud. */
221 #define CLOUDLOG_JOURNAL    0x01
222 #define CLOUDLOG_CLOUD      0x02
223 #define CLOUDLOG_CACHE      0x04
224 struct _BlueSkyCloudLog {
225     gint refcount;
226     GMutex *lock;
227     GCond *cond;
228
229     BlueSkyFS *fs;
230
231     BlueSkyCloudLogType type;
232
233     // Bitmask of CLOUDLOG_* flags indicating where the object exists.
234     int location_flags;
235     int pending_read, pending_write;
236
237     // A stable identifier for the object (only changes when authenticated data
238     // is written out, but stays the same when the in-cloud cleaner relocates
239     // the object).
240     BlueSkyCloudID id;
241
242     // The inode which owns this data, if any, and an offset.
243     uint64_t inum;
244     int32_t inum_offset;
245
246     // The size of encrypted object data, not including any headers
247     int data_size;
248
249     // The location of the object in the cloud, if available.
250     BlueSkyCloudPointer location;
251
252     // TODO: Location in journal/cache
253     int log_seq, log_offset, log_size;
254
255     // Pointers to other objects.  Each link counts towards the reference count
256     // of the pointed-to object.  To avoid memory leaks there should be no
257     // cycles in the reference graph.
258     GArray *links;
259
260     // Serialized data, if available in memory (otherwise NULL), and a lock
261     // count which tracks if there are users that require the data to be kept
262     // around.
263     BlueSkyRCStr *data;
264     int data_lock_count;
265 };
266
267 /* Serialize objects into a log segment to be written to the cloud. */
268 struct _BlueSkyCloudLogState {
269     GString *data;
270     BlueSkyCloudPointer location;
271     GList *inode_list;
272     GSList *writeback_list;     // Items which are being serialized right now
273     GList *pending_segments;    // Segments which are being uploaded now
274 };
275
276 gboolean bluesky_cloudlog_equal(gconstpointer a, gconstpointer b);
277 guint bluesky_cloudlog_hash(gconstpointer a);
278 BlueSkyCloudLog *bluesky_cloudlog_new(BlueSkyFS *fs, const BlueSkyCloudID *id);
279 gchar *bluesky_cloudlog_id_to_string(BlueSkyCloudID id);
280 BlueSkyCloudID bluesky_cloudlog_id_from_string(const gchar *idstr);
281 void bluesky_cloudlog_ref(BlueSkyCloudLog *log);
282 void bluesky_cloudlog_unref(BlueSkyCloudLog *log);
283 void bluesky_cloudlog_stats_update(BlueSkyCloudLog *log, int type);
284 void bluesky_cloudlog_sync(BlueSkyCloudLog *log);
285 void bluesky_cloudlog_insert(BlueSkyCloudLog *log);
286 BlueSkyCloudLog *bluesky_cloudlog_get(BlueSkyFS *fs, BlueSkyCloudID id);
287 void bluesky_cloudlog_fetch(BlueSkyCloudLog *log);
288 BlueSkyCloudPointer bluesky_cloudlog_serialize(BlueSkyCloudLog *log,
289                                                BlueSkyFS *fs);
290 void bluesky_cloudlog_flush(BlueSkyFS *fs);
291
292 /* Logging infrastructure for ensuring operations are persistently recorded to
293  * disk. */
294 #define BLUESKY_CRC32C_SEED (~(uint32_t)0)
295 #define BLUESKY_CRC32C_VALIDATOR ((uint32_t)0xb798b438UL)
296 uint32_t crc32c(uint32_t crc, const char *buf, unsigned int length);
297 uint32_t crc32c_finalize(uint32_t crc);
298
299 struct _BlueSkyLog {
300     BlueSkyFS *fs;
301     char *log_directory;
302     GAsyncQueue *queue;
303     int fd, dirfd;
304     int seq_num;
305     GSList *committed;
306
307     /* The currently-open log file. */
308     BlueSkyCacheFile *current_log;
309
310     /* Cache of log segments which have been memory-mapped. */
311     GMutex *mmap_lock;
312     GHashTable *mmap_cache;
313
314     /* A count of the disk space consumed (in 1024-byte units) by all files
315      * tracked by mmap_cache (whether mapped or not, actually). */
316     gint disk_used;
317
318     /* The smallest journal sequence number which may still contain data that
319      * must be preserved (since it it not yet in the cloud). */
320     int journal_watermark;
321 };
322
323 /* An object for tracking log files which are stored locally--either the
324  * journal for filesystem consistency or log segments which have been fetched
325  * back from cloud storage. */
326 struct _BlueSkyCacheFile {
327     GMutex *lock;
328     GCond *cond;
329     gint refcount;
330     int type;                   // Only one of CLOUDLOG_{JOURNAL,CLOUD}
331     int log_dir;
332     int log_seq;
333     char *filename;             // Local filename, relateive to log directory
334     gint mapcount;              // References to the mmaped data
335     const char *addr;           // May be null if data is not mapped in memory
336     size_t len;
337     BlueSkyFS *fs;
338     BlueSkyLog *log;
339     gboolean fetching, ready;   // Cloud data: downloading or ready for use
340     int64_t atime;              // Access time, for cache management
341 };
342
343 BlueSkyLog *bluesky_log_new(const char *log_directory);
344 void bluesky_log_item_submit(BlueSkyCloudLog *item, BlueSkyLog *log);
345 void bluesky_log_finish_all(GList *log_items);
346 BlueSkyRCStr *bluesky_log_map_object(BlueSkyFS *fs, int log_dir, int log_seq,
347                                      int log_offset, int log_size);
348 void bluesky_mmap_unref(BlueSkyCacheFile *mmap);
349 void bluesky_cachefile_unref(BlueSkyCacheFile *cachefile);
350
351 BlueSkyCacheFile *bluesky_cachefile_lookup(BlueSkyFS *fs,
352                                            int clouddir, int log_seq);
353 void bluesky_cachefile_gc(BlueSkyFS *fs);
354
355 void bluesky_replay(BlueSkyFS *fs);
356
357 /* Used to track log segments that are being written to the cloud. */
358 typedef struct {
359     BlueSkyRCStr *data;
360     GSList *items;
361     GMutex *lock;
362     GCond *cond;
363     gboolean complete;
364 } SerializedRecord;
365
366 /***** Inode map management *****/
367
368 /* Mapping information for a single inode number.  These are grouped together
369  * into InodeMapRange objects. */
370 typedef struct {
371     uint64_t inum;
372
373     /* The ID of the most recent version of the inode. */
374     BlueSkyCloudID id;
375
376     /* The location where that version is written in the cloud. */
377     BlueSkyCloudPointer location;
378
379     /* If the cloud log entry exists in memory, then a pointer to it, otherwise
380      * NULL. */
381     BlueSkyCloudLog *item;
382 } InodeMapEntry;
383
384 typedef struct {
385     /* Starting and ending inode number values that fall in this section.
386      * Endpoint values are inclusive. */
387     uint64_t start, end;
388
389     /* A sorted list (by inode number) of InodeMapEntry objects. */
390     GSequence *map_entries;
391
392     /* The serialized version of the inode map data. */
393     BlueSkyCloudLog *serialized;
394
395     /* Have there been changes that require writing this section out again? */
396     gboolean dirty;
397 } InodeMapRange;
398
399 InodeMapEntry *bluesky_inode_map_lookup(GSequence *inode_map, uint64_t inum,
400                                         int action);
401 BlueSkyCloudLog *bluesky_inode_map_serialize(BlueSkyFS *fs);
402
403 gboolean bluesky_checkpoint_load(BlueSkyFS *fs);
404
405 #ifdef __cplusplus
406 }
407 #endif
408
409 #endif