Implement very basic grouped fetches of objects from the cloud.
[bluesky.git] / bluesky / log.c
1 /* Blue Sky: File Systems in the Cloud
2  *
3  * Copyright (C) 2010  The Regents of the University of California
4  * Written by Michael Vrable <mvrable@cs.ucsd.edu>
5  *
6  * TODO: Licensing
7  */
8
9 #define _GNU_SOURCE
10 #define _ATFILE_SOURCE
11
12 #include <stdio.h>
13 #include <stdint.h>
14 #include <stdlib.h>
15 #include <glib.h>
16 #include <string.h>
17 #include <errno.h>
18 #include <sys/types.h>
19 #include <sys/stat.h>
20 #include <fcntl.h>
21 #include <unistd.h>
22 #include <sys/mman.h>
23
24 #include "bluesky-private.h"
25
26 /* The logging layer for BlueSky.  This is used to write filesystem changes
27  * durably to disk so that they can be recovered in the event of a system
28  * crash. */
29
30 /* The logging layer takes care out writing out a sequence of log records to
31  * disk.  On disk, each record consists of a header, a data payload, and a
32  * footer.  The footer contains a checksum of the record, meant to help with
33  * identifying corrupt log records (we would assume because the log record was
34  * only incompletely written out before a crash, which should only happen for
35  * log records that were not considered committed). */
36
37 // Rough size limit for a log segment.  This is not a firm limit and there are
38 // no absolute guarantees on the size of a log segment.
39 #define LOG_SEGMENT_SIZE (1 << 22)
40
41 #define HEADER_MAGIC 0x676f4c0a
42 #define FOOTER_MAGIC 0x2e435243
43
44 static void writebuf(int fd, const char *buf, size_t len)
45 {
46     while (len > 0) {
47         ssize_t written;
48         written = write(fd, buf, len);
49         if (written < 0 && errno == EINTR)
50             continue;
51         g_assert(written >= 0);
52         buf += written;
53         len -= written;
54     }
55 }
56
57 static void log_commit(BlueSkyLog *log)
58 {
59     int batchsize = 0;
60
61     if (log->fd < 0)
62         return;
63
64     fdatasync(log->fd);
65
66     /* Update disk-space usage statistics for the journal file. */
67     g_atomic_int_add(&log->disk_used, -log->current_log->disk_used);
68     struct stat statbuf;
69     if (fstat(log->fd, &statbuf) >= 0) {
70         /* Convert from 512-byte blocks to 1-kB units */
71         log->current_log->disk_used = (statbuf.st_blocks + 1) / 2;
72     }
73     g_atomic_int_add(&log->disk_used, log->current_log->disk_used);
74
75     while (log->committed != NULL) {
76         BlueSkyCloudLog *item = (BlueSkyCloudLog *)log->committed->data;
77         g_mutex_lock(item->lock);
78         bluesky_cloudlog_stats_update(item, -1);
79         item->pending_write &= ~CLOUDLOG_JOURNAL;
80         item->location_flags
81             = (item->location_flags & ~CLOUDLOG_UNCOMMITTED) | CLOUDLOG_JOURNAL;
82         bluesky_cloudlog_stats_update(item, 1);
83         g_cond_signal(item->cond);
84         g_mutex_unlock(item->lock);
85         log->committed = g_slist_delete_link(log->committed, log->committed);
86         bluesky_cloudlog_unref(item);
87         batchsize++;
88     }
89
90     if (bluesky_verbose && batchsize > 1)
91         g_print("Log batch size: %d\n", batchsize);
92 }
93
94 static gboolean log_open(BlueSkyLog *log)
95 {
96     char logname[64];
97
98     if (log->fd >= 0) {
99         log_commit(log);
100         close(log->fd);
101         log->seq_num++;
102         log->fd = -1;
103     }
104
105     if (log->current_log != NULL) {
106         bluesky_cachefile_unref(log->current_log);
107         log->current_log = NULL;
108     }
109
110     while (log->fd < 0) {
111         g_snprintf(logname, sizeof(logname), "journal-%08d", log->seq_num);
112         log->fd = openat(log->dirfd, logname, O_CREAT|O_WRONLY|O_EXCL, 0600);
113         if (log->fd < 0 && errno == EEXIST) {
114             fprintf(stderr, "Log file %s already exists...\n", logname);
115             log->seq_num++;
116             continue;
117         } else if (log->fd < 0) {
118             fprintf(stderr, "Error opening logfile %s: %m\n", logname);
119             return FALSE;
120         }
121     }
122
123     log->current_log = bluesky_cachefile_lookup(log->fs, -1, log->seq_num,
124                                                 FALSE);
125     g_assert(log->current_log != NULL);
126     g_mutex_unlock(log->current_log->lock);
127
128     if (ftruncate(log->fd, LOG_SEGMENT_SIZE) < 0) {
129         fprintf(stderr, "Unable to truncate logfile %s: %m\n", logname);
130     }
131     fsync(log->fd);
132     fsync(log->dirfd);
133     return TRUE;
134 }
135
136 /* All log writes (at least for a single log) are made by one thread, so we
137  * don't need to worry about concurrent access to the log file.  Log items to
138  * write are pulled off a queue (and so may be posted by any thread).
139  * fdatasync() is used to ensure the log items are stable on disk.
140  *
141  * The log is broken up into separate files, roughly of size LOG_SEGMENT_SIZE
142  * each.  If a log segment is not currently open (log->fd is negative), a new
143  * one is created.  Log segment filenames are assigned sequentially.
144  *
145  * Log replay ought to be implemented later, and ought to set the initial
146  * sequence number appropriately.
147  */
148 static gpointer log_thread(gpointer d)
149 {
150     BlueSkyLog *log = (BlueSkyLog *)d;
151
152     while (TRUE) {
153         if (log->fd < 0) {
154             if (!log_open(log)) {
155                 return NULL;
156             }
157         }
158
159         BlueSkyCloudLog *item
160             = (BlueSkyCloudLog *)g_async_queue_pop(log->queue);
161         g_mutex_lock(item->lock);
162         g_assert(item->data != NULL);
163
164         /* The item may have already been written to the journal... */
165         if ((item->location_flags | item->pending_write) & CLOUDLOG_JOURNAL) {
166             g_mutex_unlock(item->lock);
167             bluesky_cloudlog_unref(item);
168             g_atomic_int_add(&item->data_lock_count, -1);
169             continue;
170         }
171
172         bluesky_cloudlog_stats_update(item, -1);
173         item->pending_write |= CLOUDLOG_JOURNAL;
174         bluesky_cloudlog_stats_update(item, 1);
175
176         GString *data1 = g_string_new("");
177         GString *data2 = g_string_new("");
178         GString *data3 = g_string_new("");
179         bluesky_serialize_cloudlog(item, data1, data2, data3);
180
181         struct log_header header;
182         struct log_footer footer;
183         size_t size = sizeof(header) + sizeof(footer);
184         size += data1->len + data2->len + data3->len;
185         off_t offset = 0;
186         if (log->fd >= 0)
187             offset = lseek(log->fd, 0, SEEK_CUR);
188
189         /* Check whether the item would overflow the allocated journal size.
190          * If so, start a new log segment.  We only allow oversized log
191          * segments if they contain a single log entry. */
192         if (offset + size >= LOG_SEGMENT_SIZE && offset > 0) {
193             log_open(log);
194             offset = 0;
195         }
196
197         header.magic = GUINT32_TO_LE(HEADER_MAGIC);
198         header.offset = GUINT32_TO_LE(offset);
199         header.size1 = GUINT32_TO_LE(data1->len);
200         header.size2 = GUINT32_TO_LE(data2->len);
201         header.size3 = GUINT32_TO_LE(data3->len);
202         header.type = item->type + '0';
203         header.id = item->id;
204         header.inum = GUINT64_TO_LE(item->inum);
205         footer.magic = GUINT32_TO_LE(FOOTER_MAGIC);
206
207         uint32_t crc = BLUESKY_CRC32C_SEED;
208
209         writebuf(log->fd, (const char *)&header, sizeof(header));
210         crc = crc32c(crc, (const char *)&header, sizeof(header));
211
212         writebuf(log->fd, data1->str, data1->len);
213         crc = crc32c(crc, data1->str, data1->len);
214         writebuf(log->fd, data2->str, data2->len);
215         crc = crc32c(crc, data2->str, data2->len);
216         writebuf(log->fd, data3->str, data3->len);
217         crc = crc32c(crc, data3->str, data3->len);
218
219         crc = crc32c(crc, (const char *)&footer,
220                      sizeof(footer) - sizeof(uint32_t));
221         footer.crc = crc32c_finalize(crc);
222         writebuf(log->fd, (const char *)&footer, sizeof(footer));
223
224         item->log_seq = log->seq_num;
225         item->log_offset = offset;
226         item->log_size = size;
227         item->data_size = item->data->len;
228
229         offset += size;
230
231         g_string_free(data1, TRUE);
232         g_string_free(data2, TRUE);
233         g_string_free(data3, TRUE);
234
235         /* Replace the log item's string data with a memory-mapped copy of the
236          * data, now that it has been written to the log file.  (Even if it
237          * isn't yet on disk, it should at least be in the page cache and so
238          * available to memory map.) */
239         bluesky_string_unref(item->data);
240         item->data = NULL;
241         bluesky_cloudlog_fetch(item);
242
243         log->committed = g_slist_prepend(log->committed, item);
244         g_atomic_int_add(&item->data_lock_count, -1);
245         g_mutex_unlock(item->lock);
246
247         /* Force an if there are no other log items currently waiting to be
248          * written. */
249         if (g_async_queue_length(log->queue) <= 0)
250             log_commit(log);
251     }
252
253     return NULL;
254 }
255
256 BlueSkyLog *bluesky_log_new(const char *log_directory)
257 {
258     BlueSkyLog *log = g_new0(BlueSkyLog, 1);
259
260     log->log_directory = g_strdup(log_directory);
261     log->fd = -1;
262     log->seq_num = 0;
263     log->queue = g_async_queue_new();
264     log->mmap_lock = g_mutex_new();
265     log->mmap_cache = g_hash_table_new(g_str_hash, g_str_equal);
266
267     /* Determine the highest-numbered log file, so that we can start writing
268      * out new journal entries at the next sequence number. */
269     GDir *dir = g_dir_open(log_directory, 0, NULL);
270     if (dir != NULL) {
271         const gchar *file;
272         while ((file = g_dir_read_name(dir)) != NULL) {
273             if (strncmp(file, "journal-", 8) == 0) {
274                 log->seq_num = MAX(log->seq_num, atoi(&file[8]) + 1);
275             }
276         }
277         g_dir_close(dir);
278         g_print("Starting journal at sequence number %d\n", log->seq_num);
279     }
280
281     log->dirfd = open(log->log_directory, O_DIRECTORY);
282     if (log->dirfd < 0) {
283         fprintf(stderr, "Unable to open logging directory: %m\n");
284         return NULL;
285     }
286
287     g_thread_create(log_thread, log, FALSE, NULL);
288
289     return log;
290 }
291
292 void bluesky_log_item_submit(BlueSkyCloudLog *item, BlueSkyLog *log)
293 {
294     if (!(item->location_flags & CLOUDLOG_JOURNAL)) {
295         bluesky_cloudlog_ref(item);
296         item->location_flags |= CLOUDLOG_UNCOMMITTED;
297         g_atomic_int_add(&item->data_lock_count, 1);
298         g_async_queue_push(log->queue, item);
299     }
300 }
301
302 void bluesky_log_finish_all(GList *log_items)
303 {
304     while (log_items != NULL) {
305         BlueSkyCloudLog *item = (BlueSkyCloudLog *)log_items->data;
306
307         g_mutex_lock(item->lock);
308         while ((item->location_flags & CLOUDLOG_UNCOMMITTED))
309             g_cond_wait(item->cond, item->lock);
310         g_mutex_unlock(item->lock);
311         bluesky_cloudlog_unref(item);
312
313         log_items = g_list_delete_link(log_items, log_items);
314     }
315 }
316
317 /* Return a committed cloud log record that can be used as a watermark for how
318  * much of the journal has been written. */
319 BlueSkyCloudLog *bluesky_log_get_commit_point(BlueSkyFS *fs)
320 {
321     BlueSkyCloudLog *marker = bluesky_cloudlog_new(fs, NULL);
322     marker->type = LOGTYPE_JOURNAL_MARKER;
323     marker->data = bluesky_string_new(g_strdup(""), 0);
324     bluesky_cloudlog_stats_update(marker, 1);
325     bluesky_cloudlog_sync(marker);
326
327     g_mutex_lock(marker->lock);
328     while ((marker->pending_write & CLOUDLOG_JOURNAL))
329         g_cond_wait(marker->cond, marker->lock);
330     g_mutex_unlock(marker->lock);
331
332     return marker;
333 }
334
335 void bluesky_log_write_commit_point(BlueSkyFS *fs, BlueSkyCloudLog *marker)
336 {
337     BlueSkyCloudLog *commit = bluesky_cloudlog_new(fs, NULL);
338     commit->type = LOGTYPE_JOURNAL_CHECKPOINT;
339
340     uint32_t seq, offset;
341     seq = GUINT32_TO_LE(marker->log_seq);
342     offset = GUINT32_TO_LE(marker->log_offset);
343     GString *loc = g_string_new("");
344     g_string_append_len(loc, (const gchar *)&seq, sizeof(seq));
345     g_string_append_len(loc, (const gchar *)&offset, sizeof(offset));
346     commit->data = bluesky_string_new_from_gstring(loc);
347     bluesky_cloudlog_stats_update(commit, 1);
348     bluesky_cloudlog_sync(commit);
349
350     g_mutex_lock(commit->lock);
351     while ((commit->location_flags & CLOUDLOG_UNCOMMITTED))
352         g_cond_wait(commit->cond, commit->lock);
353     g_mutex_unlock(commit->lock);
354
355     bluesky_cloudlog_unref(marker);
356     bluesky_cloudlog_unref(commit);
357 }
358
359 /* Memory-map the given log object into memory (read-only) and return a pointer
360  * to it. */
361 static int page_size = 0;
362
363 void bluesky_cachefile_unref(BlueSkyCacheFile *cachefile)
364 {
365     g_atomic_int_add(&cachefile->refcount, -1);
366 }
367
368 static void cloudlog_fetch_start(BlueSkyCacheFile *cachefile);
369
370 /* Find the BlueSkyCacheFile object for the given journal or cloud log segment.
371  * Returns the object in the locked state and with a reference taken. */
372 BlueSkyCacheFile *bluesky_cachefile_lookup(BlueSkyFS *fs,
373                                            int clouddir, int log_seq,
374                                            gboolean start_fetch)
375 {
376     if (page_size == 0) {
377         page_size = getpagesize();
378     }
379
380     BlueSkyLog *log = fs->log;
381
382     struct stat statbuf;
383     char logname[64];
384     int type;
385
386     // A request for a local log file
387     if (clouddir < 0) {
388         sprintf(logname, "journal-%08d", log_seq);
389         type = CLOUDLOG_JOURNAL;
390     } else {
391         sprintf(logname, "log-%08d-%08d", clouddir, log_seq);
392         type = CLOUDLOG_CLOUD;
393     }
394
395     BlueSkyCacheFile *map;
396     g_mutex_lock(log->mmap_lock);
397     map = g_hash_table_lookup(log->mmap_cache, logname);
398
399     if (map == NULL
400         && type == CLOUDLOG_JOURNAL
401         && fstatat(log->dirfd, logname, &statbuf, 0) < 0) {
402         /* A stale reference to a journal file which doesn't exist any longer
403          * because it was reclaimed.  Return NULL. */
404     } else if (map == NULL) {
405         g_print("Adding cache file %s\n", logname);
406
407         map = g_new0(BlueSkyCacheFile, 1);
408         map->fs = fs;
409         map->type = type;
410         map->lock = g_mutex_new();
411         map->type = type;
412         g_mutex_lock(map->lock);
413         map->cond = g_cond_new();
414         map->filename = g_strdup(logname);
415         map->log_seq = log_seq;
416         map->log = log;
417         g_atomic_int_set(&map->mapcount, 0);
418         g_atomic_int_set(&map->refcount, 0);
419         map->items = bluesky_rangeset_new();
420
421         g_hash_table_insert(log->mmap_cache, map->filename, map);
422
423         int fd = openat(log->dirfd, logname, O_WRONLY | O_CREAT, 0600);
424         if (fd >= 0) {
425             ftruncate(fd, 5 << 20);     // FIXME
426             close(fd);
427         }
428
429         // If the log file is stored in the cloud, we may need to fetch it
430         if (clouddir >= 0 && start_fetch)
431             cloudlog_fetch_start(map);
432     } else {
433         g_mutex_lock(map->lock);
434     }
435
436     g_mutex_unlock(log->mmap_lock);
437     if (map != NULL)
438         g_atomic_int_inc(&map->refcount);
439     return map;
440 }
441
442 static void robust_pwrite(int fd, const char *buf, ssize_t count, off_t offset)
443 {
444     while (count > 0) {
445         ssize_t written = pwrite(fd, buf, count, offset);
446         if (written < 0) {
447             if (errno == EINTR)
448                 continue;
449             g_warning("pwrite failure: %m");
450             return;
451         }
452         buf += written;
453         count -= written;
454         offset += written;
455     }
456 }
457
458 static void cloudlog_partial_fetch_complete(BlueSkyStoreAsync *async,
459                                             BlueSkyCacheFile *cachefile);
460
461 static void cloudlog_partial_fetch_start(BlueSkyCacheFile *cachefile,
462                                          size_t offset, size_t length)
463 {
464     g_atomic_int_inc(&cachefile->refcount);
465     g_print("Starting fetch of %s from cloud\n", cachefile->filename);
466     BlueSkyStoreAsync *async = bluesky_store_async_new(cachefile->fs->store);
467     async->op = STORE_OP_GET;
468     async->key = g_strdup(cachefile->filename);
469     async->start = offset;
470     async->len = length;
471     bluesky_store_async_add_notifier(async,
472                                      (GFunc)cloudlog_partial_fetch_complete,
473                                      cachefile);
474     bluesky_store_async_submit(async);
475     bluesky_store_async_unref(async);
476 }
477
478 static void cloudlog_partial_fetch_complete(BlueSkyStoreAsync *async,
479                                             BlueSkyCacheFile *cachefile)
480 {
481     g_print("Partial fetch of %s from cloud complete, status = %d\n",
482             async->key, async->result);
483
484     g_mutex_lock(cachefile->lock);
485     if (async->result >= 0) {
486         /* Descrypt items fetched and write valid items out to the local log,
487          * but only if they do not overlap existing objects.  This will protect
488          * against an attack by the cloud provider where one valid object is
489          * moved to another offset and used to overwrite data that we already
490          * have fetched. */
491         BlueSkyRangeset *items = bluesky_rangeset_new();
492         int fd = openat(cachefile->log->dirfd, cachefile->filename, O_WRONLY);
493         if (fd >= 0) {
494             async->data = bluesky_string_dup(async->data);
495             bluesky_cloudlog_decrypt(async->data->data, async->data->len,
496                                      cachefile->fs->keys, items);
497             uint64_t item_offset = 0;
498             while (TRUE) {
499                 const BlueSkyRangesetItem *item;
500                 item = bluesky_rangeset_lookup_next(items, item_offset);
501                 if (item == NULL)
502                     break;
503                 g_print("  item offset from range request: %d\n",
504                         (int)(item->start + async->start));
505                 if (bluesky_rangeset_insert(cachefile->items,
506                                             async->start + item->start,
507                                             item->length, item->data))
508                 {
509                     robust_pwrite(fd, async->data->data + item->start,
510                                   item->length, async->start + item->start);
511                 } else {
512                     g_print("    item overlaps existing data!\n");
513                 }
514                 item_offset = item->start + 1;
515             }
516             /* TODO: Iterate over items and merge into cached file. */
517             close(fd);
518         } else {
519             g_warning("Unable to open and write to cache file %s: %m",
520                       cachefile->filename);
521         }
522     } else {
523         g_print("Error fetching from cloud, retrying...\n");
524         cloudlog_partial_fetch_start(cachefile, async->start, async->len);
525     }
526
527     /* Update disk-space usage statistics, since the writes above may have
528      * consumed more space. */
529     g_atomic_int_add(&cachefile->log->disk_used, -cachefile->disk_used);
530     struct stat statbuf;
531     if (fstatat(cachefile->log->dirfd, cachefile->filename, &statbuf, 0) >= 0) {
532         /* Convert from 512-byte blocks to 1-kB units */
533         cachefile->disk_used = (statbuf.st_blocks + 1) / 2;
534     }
535     g_atomic_int_add(&cachefile->log->disk_used, cachefile->disk_used);
536
537     bluesky_cachefile_unref(cachefile);
538     g_cond_broadcast(cachefile->cond);
539     g_mutex_unlock(cachefile->lock);
540 }
541
542 static void cloudlog_fetch_start(BlueSkyCacheFile *cachefile)
543 {
544     g_atomic_int_inc(&cachefile->refcount);
545     cachefile->fetching = TRUE;
546     g_print("Starting fetch of %s from cloud\n", cachefile->filename);
547     BlueSkyStoreAsync *async = bluesky_store_async_new(cachefile->fs->store);
548     async->op = STORE_OP_GET;
549     async->key = g_strdup(cachefile->filename);
550     bluesky_store_async_add_notifier(async,
551                                      (GFunc)cloudlog_partial_fetch_complete,
552                                      cachefile);
553     bluesky_store_async_submit(async);
554     bluesky_store_async_unref(async);
555 }
556
557 /* The arguments are mostly straightforward.  log_dir is -1 for access from the
558  * journal, and non-negative for access to a cloud log segment.  map_data
559  * should be TRUE for the case that are mapping just the data of an item where
560  * we have already parsed the item headers; this surpresses the error when the
561  * access is not to the first bytes of the item. */
562 BlueSkyRCStr *bluesky_log_map_object(BlueSkyCloudLog *item, gboolean map_data)
563 {
564     BlueSkyFS *fs = item->fs;
565     BlueSkyLog *log = fs->log;
566     BlueSkyCacheFile *map = NULL;
567     BlueSkyRCStr *str = NULL;
568     int location = 0;
569     size_t file_offset = 0, file_size = 0;
570     gboolean range_request = TRUE;
571
572     if (page_size == 0) {
573         page_size = getpagesize();
574     }
575
576     bluesky_cloudlog_stats_update(item, -1);
577
578     /* First, check to see if the journal still contains a copy of the item and
579      * if so use that. */
580     if ((item->location_flags | item->pending_write) & CLOUDLOG_JOURNAL) {
581         map = bluesky_cachefile_lookup(fs, -1, item->log_seq, TRUE);
582         if (map != NULL) {
583             location = CLOUDLOG_JOURNAL;
584             file_offset = item->log_offset;
585             file_size = item->log_size;
586         }
587     }
588
589     if (location == 0 && (item->location_flags & CLOUDLOG_CLOUD)) {
590         item->location_flags &= ~CLOUDLOG_JOURNAL;
591         map = bluesky_cachefile_lookup(fs,
592                                        item->location.directory,
593                                        item->location.sequence,
594                                        !range_request);
595         if (map == NULL) {
596             g_warning("Unable to remap cloud log segment!");
597             goto exit1;
598         }
599         location = CLOUDLOG_CLOUD;
600         file_offset = item->location.offset;
601         file_size = item->location.size;
602     }
603
604     /* Log segments fetched from the cloud might only be partially-fetched.
605      * Check whether the object we are interested in is available. */
606     if (location == CLOUDLOG_CLOUD) {
607         while (TRUE) {
608             const BlueSkyRangesetItem *rangeitem;
609             rangeitem = bluesky_rangeset_lookup(map->items, file_offset);
610             if (rangeitem != NULL && (rangeitem->start != file_offset
611                                       || rangeitem->length != file_size)) {
612                 g_warning("log-%d: Item offset %zd seems to be invalid!",
613                           (int)item->location.sequence, file_offset);
614                 goto exit2;
615             }
616             if (rangeitem == NULL) {
617                 g_print("Item at offset 0x%zx not available, need to fetch.\n",
618                         file_offset);
619                 if (range_request) {
620                     uint64_t start = 0, length = 0, end;
621                     if (map->prefetches != NULL)
622                         bluesky_rangeset_get_extents(map->prefetches,
623                                                      &start, &length);
624                     start = MIN(start, file_offset);
625                     end = MAX(start + length, file_offset + file_size);
626                     length = end - start;
627                     cloudlog_partial_fetch_start(map, start, length);
628                     if (map->prefetches != NULL) {
629                         bluesky_rangeset_free(map->prefetches);
630                         map->prefetches = NULL;
631                     }
632                 }
633                 g_cond_wait(map->cond, map->lock);
634             } else if (rangeitem->start == file_offset
635                        && rangeitem->length == file_size) {
636                 g_print("Item now available.\n");
637                 break;
638             }
639         }
640     }
641
642     if (map->addr == NULL) {
643         int fd = openat(log->dirfd, map->filename, O_RDONLY);
644
645         if (fd < 0) {
646             fprintf(stderr, "Error opening logfile %s: %m\n", map->filename);
647             goto exit2;
648         }
649
650         off_t length = lseek(fd, 0, SEEK_END);
651         map->addr = (const char *)mmap(NULL, length, PROT_READ, MAP_SHARED,
652                                        fd, 0);
653         map->len = length;
654
655         g_atomic_int_inc(&map->refcount);
656
657         close(fd);
658     }
659
660     if (map_data) {
661         if (location == CLOUDLOG_JOURNAL)
662             file_offset += sizeof(struct log_header);
663         else
664             file_offset += sizeof(struct cloudlog_header);
665
666         file_size = item->data_size;
667     }
668     str = bluesky_string_new_from_mmap(map, file_offset, file_size);
669     map->atime = bluesky_get_current_time();
670
671 exit2:
672     bluesky_cachefile_unref(map);
673     g_mutex_unlock(map->lock);
674 exit1:
675     bluesky_cloudlog_stats_update(item, 1);
676     return str;
677 }
678
679 void bluesky_mmap_unref(BlueSkyCacheFile *mmap)
680 {
681     if (mmap == NULL)
682         return;
683
684     if (g_atomic_int_dec_and_test(&mmap->mapcount)) {
685         g_mutex_lock(mmap->lock);
686         if (g_atomic_int_get(&mmap->mapcount) == 0) {
687             g_print("Unmapped log segment %d...\n", mmap->log_seq);
688             munmap((void *)mmap->addr, mmap->len);
689             mmap->addr = NULL;
690             g_atomic_int_add(&mmap->refcount, -1);
691         }
692         g_mutex_unlock(mmap->lock);
693     }
694 }
695
696 /******************************* JOURNAL REPLAY *******************************
697  * The journal replay code is used to recover filesystem state after a
698  * filesystem restart.  We first look for the most recent commit record in the
699  * journal, which indicates the point before which all data in the journal has
700  * also been committed to the cloud.  Then, we read in all data in the log past
701  * that point.
702  */
703 static GList *directory_contents(const char *dirname)
704 {
705     GList *contents = NULL;
706     GDir *dir = g_dir_open(dirname, 0, NULL);
707     if (dir == NULL) {
708         g_warning("Unable to open journal directory: %s", dirname);
709         return NULL;
710     }
711
712     const gchar *file;
713     while ((file = g_dir_read_name(dir)) != NULL) {
714         if (strncmp(file, "journal-", 8) == 0)
715             contents = g_list_prepend(contents, g_strdup(file));
716     }
717     g_dir_close(dir);
718
719     contents = g_list_sort(contents, (GCompareFunc)strcmp);
720
721     return contents;
722 }
723
724 static gboolean validate_journal_item(const char *buf, size_t len, off_t offset)
725 {
726     const struct log_header *header;
727     const struct log_footer *footer;
728
729     if (offset + sizeof(struct log_header) + sizeof(struct log_footer) > len)
730         return FALSE;
731
732     header = (const struct log_header *)(buf + offset);
733     if (GUINT32_FROM_LE(header->magic) != HEADER_MAGIC)
734         return FALSE;
735     if (GUINT32_FROM_LE(header->offset) != offset)
736         return FALSE;
737     size_t size = GUINT32_FROM_LE(header->size1)
738                    + GUINT32_FROM_LE(header->size2)
739                    + GUINT32_FROM_LE(header->size3);
740
741     off_t footer_offset = offset + sizeof(struct log_header) + size;
742     if (footer_offset + sizeof(struct log_footer) > len)
743         return FALSE;
744     footer = (const struct log_footer *)(buf + footer_offset);
745
746     if (GUINT32_FROM_LE(footer->magic) != FOOTER_MAGIC)
747         return FALSE;
748
749     uint32_t crc = crc32c(BLUESKY_CRC32C_SEED, buf + offset,
750                           sizeof(struct log_header) + sizeof(struct log_footer)
751                           + size);
752     if (crc != BLUESKY_CRC32C_VALIDATOR) {
753         g_warning("Journal entry failed to validate: CRC %08x != %08x",
754                   crc, BLUESKY_CRC32C_VALIDATOR);
755         return FALSE;
756     }
757
758     return TRUE;
759 }
760
761 /* Scan through a journal segment to extract correctly-written items (those
762  * that pass sanity checks and have a valid checksum). */
763 static void bluesky_replay_scan_journal(const char *buf, size_t len,
764                                         uint32_t *seq, uint32_t *start_offset)
765 {
766     const struct log_header *header;
767     off_t offset = 0;
768
769     while (validate_journal_item(buf, len, offset)) {
770         header = (const struct log_header *)(buf + offset);
771         size_t size = GUINT32_FROM_LE(header->size1)
772                        + GUINT32_FROM_LE(header->size2)
773                        + GUINT32_FROM_LE(header->size3);
774
775         if (header->type - '0' == LOGTYPE_JOURNAL_CHECKPOINT) {
776             const uint32_t *data = (const uint32_t *)((const char *)header + sizeof(struct log_header));
777             *seq = GUINT32_FROM_LE(data[0]);
778             *start_offset = GUINT32_FROM_LE(data[1]);
779         }
780
781         offset += sizeof(struct log_header) + size + sizeof(struct log_footer);
782     }
783 }
784
785 static void reload_item(BlueSkyCloudLog *log_item,
786                         const char *data,
787                         size_t len1, size_t len2, size_t len3)
788 {
789     BlueSkyFS *fs = log_item->fs;
790     /*const char *data1 = data;*/
791     const BlueSkyCloudID *data2
792         = (const BlueSkyCloudID *)(data + len1);
793     /*const BlueSkyCloudPointer *data3
794         = (const BlueSkyCloudPointer *)(data + len1 + len2);*/
795
796     bluesky_cloudlog_stats_update(log_item, -1);
797     bluesky_string_unref(log_item->data);
798     log_item->data = NULL;
799     log_item->location_flags = CLOUDLOG_JOURNAL;
800     bluesky_cloudlog_stats_update(log_item, 1);
801
802     BlueSkyCloudID id0;
803     memset(&id0, 0, sizeof(id0));
804
805     int link_count = len2 / sizeof(BlueSkyCloudID);
806     GArray *new_links = g_array_new(FALSE, TRUE, sizeof(BlueSkyCloudLog *));
807     for (int i = 0; i < link_count; i++) {
808         BlueSkyCloudID id = data2[i];
809         BlueSkyCloudLog *ref = NULL;
810         if (memcmp(&id, &id0, sizeof(BlueSkyCloudID)) != 0) {
811             g_mutex_lock(fs->lock);
812             ref = g_hash_table_lookup(fs->locations, &id);
813             if (ref != NULL) {
814                 bluesky_cloudlog_ref(ref);
815             }
816             g_mutex_unlock(fs->lock);
817         }
818         g_array_append_val(new_links, ref);
819     }
820
821     for (int i = 0; i < log_item->links->len; i++) {
822         BlueSkyCloudLog *c = g_array_index(log_item->links,
823                                            BlueSkyCloudLog *, i);
824         bluesky_cloudlog_unref(c);
825     }
826     g_array_unref(log_item->links);
827     log_item->links = new_links;
828 }
829
830 static void bluesky_replay_scan_journal2(BlueSkyFS *fs, GList **objects,
831                                          int log_seq, int start_offset,
832                                          const char *buf, size_t len)
833 {
834     const struct log_header *header;
835     off_t offset = start_offset;
836
837     while (validate_journal_item(buf, len, offset)) {
838         header = (const struct log_header *)(buf + offset);
839         g_print("In replay found valid item at offset %zd\n", offset);
840         size_t size = GUINT32_FROM_LE(header->size1)
841                        + GUINT32_FROM_LE(header->size2)
842                        + GUINT32_FROM_LE(header->size3);
843
844         BlueSkyCloudLog *log_item = bluesky_cloudlog_get(fs, header->id);
845         g_mutex_lock(log_item->lock);
846         *objects = g_list_prepend(*objects, log_item);
847
848         log_item->inum = GUINT64_FROM_LE(header->inum);
849         reload_item(log_item, buf + offset + sizeof(struct log_header),
850                     GUINT32_FROM_LE(header->size1),
851                     GUINT32_FROM_LE(header->size2),
852                     GUINT32_FROM_LE(header->size3));
853         log_item->log_seq = log_seq;
854         log_item->log_offset = offset + sizeof(struct log_header);
855         log_item->log_size = header->size1;
856
857         bluesky_string_unref(log_item->data);
858         log_item->data = bluesky_string_new(g_memdup(buf + offset + sizeof(struct log_header), GUINT32_FROM_LE(header->size1)), GUINT32_FROM_LE(header->size1));
859
860         /* For any inodes which were read from the journal, deserialize the
861          * inode information, overwriting any old inode data. */
862         if (header->type - '0' == LOGTYPE_INODE) {
863             uint64_t inum = GUINT64_FROM_LE(header->inum);
864             BlueSkyInode *inode;
865             g_mutex_lock(fs->lock);
866             inode = (BlueSkyInode *)g_hash_table_lookup(fs->inodes, &inum);
867             if (inode == NULL) {
868                 inode = bluesky_new_inode(inum, fs, BLUESKY_PENDING);
869                 inode->change_count = 0;
870                 bluesky_insert_inode(fs, inode);
871             }
872             g_mutex_lock(inode->lock);
873             bluesky_inode_free_resources(inode);
874             if (!bluesky_deserialize_inode(inode, log_item))
875                 g_print("Error deserializing inode %"PRIu64"\n", inum);
876             fs->next_inum = MAX(fs->next_inum, inum + 1);
877             bluesky_list_unlink(&fs->accessed_list, inode->accessed_list);
878             inode->accessed_list = bluesky_list_prepend(&fs->accessed_list, inode);
879             bluesky_list_unlink(&fs->dirty_list, inode->dirty_list);
880             inode->dirty_list = bluesky_list_prepend(&fs->dirty_list, inode);
881             bluesky_list_unlink(&fs->unlogged_list, inode->unlogged_list);
882             inode->unlogged_list = NULL;
883             inode->change_cloud = inode->change_commit;
884             bluesky_cloudlog_ref(log_item);
885             bluesky_cloudlog_unref(inode->committed_item);
886             inode->committed_item = log_item;
887             g_mutex_unlock(inode->lock);
888             g_mutex_unlock(fs->lock);
889         }
890         bluesky_string_unref(log_item->data);
891         log_item->data = NULL;
892         g_mutex_unlock(log_item->lock);
893
894         offset += sizeof(struct log_header) + size + sizeof(struct log_footer);
895     }
896 }
897
898 void bluesky_replay(BlueSkyFS *fs)
899 {
900     BlueSkyLog *log = fs->log;
901     GList *logfiles = directory_contents(log->log_directory);
902
903     /* Scan through log files in reverse order to find the most recent commit
904      * record. */
905     logfiles = g_list_reverse(logfiles);
906     uint32_t seq_num = 0, start_offset = 0;
907     while (logfiles != NULL) {
908         char *filename = g_strdup_printf("%s/%s", log->log_directory,
909                                          (char *)logfiles->data);
910         g_print("Scanning file %s\n", filename);
911         GMappedFile *map = g_mapped_file_new(filename, FALSE, NULL);
912         if (map == NULL) {
913             g_warning("Mapping logfile %s failed!\n", filename);
914         } else {
915             bluesky_replay_scan_journal(g_mapped_file_get_contents(map),
916                                         g_mapped_file_get_length(map),
917                                         &seq_num, &start_offset);
918             g_mapped_file_unref(map);
919         }
920         g_free(filename);
921
922         g_free(logfiles->data);
923         logfiles = g_list_delete_link(logfiles, logfiles);
924         if (seq_num != 0 || start_offset != 0)
925             break;
926     }
927     g_list_foreach(logfiles, (GFunc)g_free, NULL);
928     g_list_free(logfiles);
929
930     /* Now, scan forward starting from the given point in the log to
931      * reconstruct all filesystem state.  As we reload objects we hold a
932      * reference to each loaded object.  At the end we free all these
933      * references, so that any objects which were not linked into persistent
934      * filesystem data structures are freed. */
935     GList *objects = NULL;
936     while (TRUE) {
937         char *filename = g_strdup_printf("%s/journal-%08d",
938                                          log->log_directory, seq_num);
939         g_print("Replaying file %s from offset %d\n", filename, start_offset);
940         GMappedFile *map = g_mapped_file_new(filename, FALSE, NULL);
941         g_free(filename);
942         if (map == NULL) {
943             g_warning("Mapping logfile failed, assuming end of journal\n");
944             break;
945         }
946
947         bluesky_replay_scan_journal2(fs, &objects, seq_num, start_offset,
948                                      g_mapped_file_get_contents(map),
949                                      g_mapped_file_get_length(map));
950         g_mapped_file_unref(map);
951         seq_num++;
952         start_offset = 0;
953     }
954
955     while (objects != NULL) {
956         bluesky_cloudlog_unref((BlueSkyCloudLog *)objects->data);
957         objects = g_list_delete_link(objects, objects);
958     }
959 }