Back out dirty reference tracking, as the design was flawed.
[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 // Target amount of disk space to use for the journal and cache files, in
42 // kilobytes.
43 #define DISK_CACHE_SIZE_TARGET (64 * 1024)
44
45 #define HEADER_MAGIC 0x676f4c0a
46 #define FOOTER_MAGIC 0x2e435243
47
48 struct log_header {
49     uint32_t magic;             // HEADER_MAGIC
50     uint64_t offset;            // Starting byte offset of the log header
51     uint32_t size;              // Size of the data item (bytes)
52     BlueSkyCloudID id;          // Object identifier
53 } __attribute__((packed));
54
55 struct log_footer {
56     uint32_t magic;             // FOOTER_MAGIC
57     uint32_t crc;               // Computed from log_header to log_footer.magic
58 } __attribute__((packed));
59
60 static void writebuf(int fd, const char *buf, size_t len)
61 {
62     while (len > 0) {
63         ssize_t written;
64         written = write(fd, buf, len);
65         if (written < 0 && errno == EINTR)
66             continue;
67         g_assert(written >= 0);
68         buf += written;
69         len -= written;
70     }
71 }
72
73 static void log_commit(BlueSkyLog *log)
74 {
75     int batchsize = 0;
76
77     if (log->fd < 0)
78         return;
79
80     fdatasync(log->fd);
81     while (log->committed != NULL) {
82         BlueSkyCloudLog *item = (BlueSkyCloudLog *)log->committed->data;
83         g_mutex_lock(item->lock);
84         bluesky_cloudlog_stats_update(item, -1);
85         item->pending_write &= ~CLOUDLOG_JOURNAL;
86         item->location_flags |= CLOUDLOG_JOURNAL;
87         bluesky_cloudlog_stats_update(item, 1);
88         g_cond_signal(item->cond);
89         g_mutex_unlock(item->lock);
90         log->committed = g_slist_delete_link(log->committed, log->committed);
91         bluesky_cloudlog_unref(item);
92         batchsize++;
93     }
94
95     if (bluesky_verbose && batchsize > 1)
96         g_print("Log batch size: %d\n", batchsize);
97 }
98
99 static gboolean log_open(BlueSkyLog *log)
100 {
101     char logname[64];
102
103     if (log->fd >= 0) {
104         log_commit(log);
105         close(log->fd);
106         log->seq_num++;
107         log->fd = -1;
108     }
109
110     if (log->current_log != NULL) {
111         bluesky_cachefile_unref(log->current_log);
112         log->current_log = NULL;
113     }
114
115     while (log->fd < 0) {
116         g_snprintf(logname, sizeof(logname), "journal-%08d", log->seq_num);
117         log->fd = openat(log->dirfd, logname, O_CREAT|O_WRONLY|O_EXCL, 0600);
118         if (log->fd < 0 && errno == EEXIST) {
119             fprintf(stderr, "Log file %s already exists...\n", logname);
120             log->seq_num++;
121             continue;
122         } else if (log->fd < 0) {
123             fprintf(stderr, "Error opening logfile %s: %m\n", logname);
124             return FALSE;
125         }
126     }
127
128     log->current_log = bluesky_cachefile_lookup(log->fs, -1, log->seq_num);
129     g_assert(log->current_log != NULL);
130     g_mutex_unlock(log->current_log->lock);
131
132     if (ftruncate(log->fd, LOG_SEGMENT_SIZE) < 0) {
133         fprintf(stderr, "Unable to truncate logfile %s: %m\n", logname);
134     }
135     fsync(log->fd);
136     fsync(log->dirfd);
137     return TRUE;
138 }
139
140 /* All log writes (at least for a single log) are made by one thread, so we
141  * don't need to worry about concurrent access to the log file.  Log items to
142  * write are pulled off a queue (and so may be posted by any thread).
143  * fdatasync() is used to ensure the log items are stable on disk.
144  *
145  * The log is broken up into separate files, roughly of size LOG_SEGMENT_SIZE
146  * each.  If a log segment is not currently open (log->fd is negative), a new
147  * one is created.  Log segment filenames are assigned sequentially.
148  *
149  * Log replay ought to be implemented later, and ought to set the initial
150  * sequence number appropriately.
151  */
152 static gpointer log_thread(gpointer d)
153 {
154     BlueSkyLog *log = (BlueSkyLog *)d;
155
156     while (TRUE) {
157         if (log->fd < 0) {
158             if (!log_open(log)) {
159                 return NULL;
160             }
161         }
162
163         BlueSkyCloudLog *item
164             = (BlueSkyCloudLog *)g_async_queue_pop(log->queue);
165         g_mutex_lock(item->lock);
166         g_assert(item->data != NULL);
167
168         /* The item may have already been written to the journal... */
169         if ((item->location_flags | item->pending_write) & CLOUDLOG_JOURNAL) {
170             g_mutex_unlock(item->lock);
171             bluesky_cloudlog_unref(item);
172             g_atomic_int_add(&item->data_lock_count, -1);
173             continue;
174         }
175
176         bluesky_cloudlog_stats_update(item, -1);
177         item->pending_write |= CLOUDLOG_JOURNAL;
178         bluesky_cloudlog_stats_update(item, 1);
179
180         struct log_header header;
181         struct log_footer footer;
182         size_t size = sizeof(header) + sizeof(footer) + item->data->len;
183         off_t offset = 0;
184         if (log->fd >= 0)
185             offset = lseek(log->fd, 0, SEEK_CUR);
186
187         /* Check whether the item would overflow the allocated journal size.
188          * If so, start a new log segment.  We only allow oversized log
189          * segments if they contain a single log entry. */
190         if (offset + size >= LOG_SEGMENT_SIZE && offset > 0) {
191             log_open(log);
192             offset = 0;
193         }
194
195         header.magic = GUINT32_TO_LE(HEADER_MAGIC);
196         header.offset = GUINT64_TO_LE(offset);
197         header.size = GUINT32_TO_LE(item->data->len);
198         header.id = item->id;
199         footer.magic = GUINT32_TO_LE(FOOTER_MAGIC);
200
201         uint32_t crc = BLUESKY_CRC32C_SEED;
202
203         writebuf(log->fd, (const char *)&header, sizeof(header));
204         crc = crc32c(crc, (const char *)&header, sizeof(header));
205
206         writebuf(log->fd, item->data->data, item->data->len);
207         crc = crc32c(crc, item->data->data, item->data->len);
208
209         crc = crc32c(crc, (const char *)&footer,
210                      sizeof(footer) - sizeof(uint32_t));
211         footer.crc = crc32c_finalize(crc);
212         writebuf(log->fd, (const char *)&footer, sizeof(footer));
213
214         item->log_seq = log->seq_num;
215         item->log_offset = offset + sizeof(header);
216         item->log_size = item->data->len;
217
218         offset += sizeof(header) + sizeof(footer) + item->data->len;
219
220         /* Replace the log item's string data with a memory-mapped copy of the
221          * data, now that it has been written to the log file.  (Even if it
222          * isn't yet on disk, it should at least be in the page cache and so
223          * available to memory map.) */
224         bluesky_string_unref(item->data);
225         item->data = NULL;
226         bluesky_cloudlog_fetch(item);
227
228         log->committed  = g_slist_prepend(log->committed, item);
229         g_atomic_int_add(&item->data_lock_count, -1);
230         g_mutex_unlock(item->lock);
231
232         /* Force an if there are no other log items currently waiting to be
233          * written. */
234         if (g_async_queue_length(log->queue) <= 0)
235             log_commit(log);
236     }
237
238     return NULL;
239 }
240
241 BlueSkyLog *bluesky_log_new(const char *log_directory)
242 {
243     BlueSkyLog *log = g_new0(BlueSkyLog, 1);
244
245     log->log_directory = g_strdup(log_directory);
246     log->fd = -1;
247     log->seq_num = 0;
248     log->queue = g_async_queue_new();
249     log->mmap_lock = g_mutex_new();
250     log->mmap_cache = g_hash_table_new(g_str_hash, g_str_equal);
251
252     log->dirfd = open(log->log_directory, O_DIRECTORY);
253     if (log->dirfd < 0) {
254         fprintf(stderr, "Unable to open logging directory: %m\n");
255         return NULL;
256     }
257
258     g_thread_create(log_thread, log, FALSE, NULL);
259
260     return log;
261 }
262
263 void bluesky_log_item_submit(BlueSkyCloudLog *item, BlueSkyLog *log)
264 {
265     bluesky_cloudlog_ref(item);
266     g_atomic_int_add(&item->data_lock_count, 1);
267     g_async_queue_push(log->queue, item);
268 }
269
270 void bluesky_log_finish_all(GList *log_items)
271 {
272     while (log_items != NULL) {
273         BlueSkyCloudLog *item = (BlueSkyCloudLog *)log_items->data;
274
275         g_mutex_lock(item->lock);
276         while ((item->pending_write & CLOUDLOG_JOURNAL))
277             g_cond_wait(item->cond, item->lock);
278         g_mutex_unlock(item->lock);
279         bluesky_cloudlog_unref(item);
280
281         log_items = g_list_delete_link(log_items, log_items);
282     }
283 }
284
285 /* Memory-map the given log object into memory (read-only) and return a pointer
286  * to it. */
287 static int page_size = 0;
288
289 void bluesky_cachefile_unref(BlueSkyCacheFile *cachefile)
290 {
291     g_atomic_int_add(&cachefile->refcount, -1);
292 }
293
294 static void cloudlog_fetch_complete(BlueSkyStoreAsync *async,
295                                     BlueSkyCacheFile *cachefile);
296
297 static void cloudlog_fetch_start(BlueSkyCacheFile *cachefile)
298 {
299     g_atomic_int_inc(&cachefile->refcount);
300     cachefile->fetching = TRUE;
301     g_print("Starting fetch of %s from cloud\n", cachefile->filename);
302     BlueSkyStoreAsync *async = bluesky_store_async_new(cachefile->fs->store);
303     async->op = STORE_OP_GET;
304     async->key = g_strdup(cachefile->filename);
305     bluesky_store_async_add_notifier(async,
306                                      (GFunc)cloudlog_fetch_complete,
307                                      cachefile);
308     bluesky_store_async_submit(async);
309     bluesky_store_async_unref(async);
310 }
311
312 static void cloudlog_fetch_complete(BlueSkyStoreAsync *async,
313                                     BlueSkyCacheFile *cachefile)
314 {
315     g_print("Fetch of %s from cloud complete, status = %d\n",
316             async->key, async->result);
317
318     g_mutex_lock(cachefile->lock);
319     if (async->result >= 0) {
320         char *pathname = g_strdup_printf("%s/%s",
321                                          cachefile->log->log_directory,
322                                          cachefile->filename);
323         if (!g_file_set_contents(pathname, async->data->data, async->data->len,
324                                  NULL))
325             g_print("Error writing out fetched file to cache!\n");
326         g_free(pathname);
327
328         cachefile->fetching = FALSE;
329         cachefile->ready = TRUE;
330     } else {
331         g_print("Error fetching from cloud, retrying...\n");
332         cloudlog_fetch_start(cachefile);
333     }
334
335     bluesky_cachefile_unref(cachefile);
336     g_cond_broadcast(cachefile->cond);
337     g_mutex_unlock(cachefile->lock);
338 }
339
340 /* Find the BlueSkyCacheFile object for the given journal or cloud log segment.
341  * Returns the object in the locked state and with a reference taken. */
342 BlueSkyCacheFile *bluesky_cachefile_lookup(BlueSkyFS *fs,
343                                            int clouddir, int log_seq)
344 {
345     if (page_size == 0) {
346         page_size = getpagesize();
347     }
348
349     BlueSkyLog *log = fs->log;
350
351     struct stat statbuf;
352     char logname[64];
353     int type;
354
355     // A request for a local log file
356     if (clouddir < 0) {
357         sprintf(logname, "journal-%08d", log_seq);
358         type = CLOUDLOG_JOURNAL;
359     } else {
360         sprintf(logname, "log-%08d-%08d", clouddir, log_seq);
361         type = CLOUDLOG_CLOUD;
362     }
363
364     BlueSkyCacheFile *map;
365     g_mutex_lock(log->mmap_lock);
366     map = g_hash_table_lookup(log->mmap_cache, logname);
367
368     if (map == NULL
369         && type == CLOUDLOG_JOURNAL
370         && fstatat(log->dirfd, logname, &statbuf, 0) < 0) {
371         /* A stale reference to a journal file which doesn't exist any longer
372          * because it was reclaimed.  Return NULL. */
373     } else if (map == NULL) {
374         g_print("Adding cache file %s\n", logname);
375
376         map = g_new0(BlueSkyCacheFile, 1);
377         map->fs = fs;
378         map->type = type;
379         map->lock = g_mutex_new();
380         map->type = type;
381         g_mutex_lock(map->lock);
382         map->cond = g_cond_new();
383         map->filename = g_strdup(logname);
384         map->log_seq = log_seq;
385         map->log = log;
386         g_atomic_int_set(&map->mapcount, 0);
387         g_atomic_int_set(&map->refcount, 0);
388
389         g_hash_table_insert(log->mmap_cache, map->filename, map);
390
391         // If the log file is stored in the cloud, we may need to fetch it
392         if (clouddir >= 0)
393             cloudlog_fetch_start(map);
394     } else {
395         g_mutex_lock(map->lock);
396     }
397
398     g_mutex_unlock(log->mmap_lock);
399     if (map != NULL)
400         g_atomic_int_inc(&map->refcount);
401     return map;
402 }
403
404 BlueSkyRCStr *bluesky_log_map_object(BlueSkyFS *fs, int log_dir,
405                                      int log_seq, int log_offset, int log_size)
406 {
407     if (page_size == 0) {
408         page_size = getpagesize();
409     }
410
411     BlueSkyLog *log = fs->log;
412     BlueSkyCacheFile *map = bluesky_cachefile_lookup(fs, log_dir, log_seq);
413
414     if (map == NULL) {
415         return NULL;
416     }
417
418     if (map->addr == NULL) {
419         while (!map->ready && map->fetching) {
420             g_print("Waiting for log segment to be fetched from cloud...\n");
421             g_cond_wait(map->cond, map->lock);
422         }
423
424         int fd = openat(log->dirfd, map->filename, O_RDONLY);
425
426         if (fd < 0) {
427             fprintf(stderr, "Error opening logfile %s: %m\n", map->filename);
428             bluesky_cachefile_unref(map);
429             g_mutex_unlock(map->lock);
430             return NULL;
431         }
432
433         off_t length = lseek(fd, 0, SEEK_END);
434         map->addr = (const char *)mmap(NULL, length, PROT_READ, MAP_SHARED,
435                                        fd, 0);
436         g_atomic_int_add(&log->disk_used, -(map->len / 1024));
437         map->len = length;
438         g_atomic_int_add(&log->disk_used, map->len / 1024);
439
440         g_print("Re-mapped log segment %d...\n", log_seq);
441         g_atomic_int_inc(&map->refcount);
442
443         close(fd);
444     }
445
446     g_mutex_unlock(log->mmap_lock);
447
448     BlueSkyRCStr *str;
449     map->atime = bluesky_get_current_time();
450     str = bluesky_string_new_from_mmap(map, log_offset, log_size);
451     bluesky_cachefile_unref(map);
452     g_mutex_unlock(map->lock);
453     return str;
454 }
455
456 void bluesky_mmap_unref(BlueSkyCacheFile *mmap)
457 {
458     if (mmap == NULL)
459         return;
460
461     if (g_atomic_int_dec_and_test(&mmap->mapcount)) {
462         g_mutex_lock(mmap->lock);
463         if (g_atomic_int_get(&mmap->mapcount) == 0) {
464             g_print("Unmapped log segment %d...\n", mmap->log_seq);
465             munmap((void *)mmap->addr, mmap->len);
466             mmap->addr = NULL;
467             g_atomic_int_add(&mmap->refcount, -1);
468         }
469         g_mutex_unlock(mmap->lock);
470     }
471 }
472
473 /* Scan through all currently-stored files in the journal/cache and garbage
474  * collect old unused ones, if needed. */
475 static void gather_cachefiles(gpointer key, gpointer value, gpointer user_data)
476 {
477     GList **files = (GList **)user_data;
478     *files = g_list_prepend(*files, value);
479 }
480
481 static gint compare_cachefiles(gconstpointer a, gconstpointer b)
482 {
483     int64_t ta, tb;
484
485     ta = ((BlueSkyCacheFile *)a)->atime;
486     tb = ((BlueSkyCacheFile *)b)->atime;
487     if (ta < tb)
488         return -1;
489     else if (ta > tb)
490         return 1;
491     else
492         return 0;
493 }
494
495 void bluesky_cachefile_gc(BlueSkyFS *fs)
496 {
497     GList *files = NULL;
498
499     g_mutex_lock(fs->log->mmap_lock);
500     g_hash_table_foreach(fs->log->mmap_cache, gather_cachefiles, &files);
501
502     /* Sort based on atime.  The atime should be stable since it shouln't be
503      * updated except by threads which can grab the mmap_lock, which we already
504      * hold. */
505     files = g_list_sort(files, compare_cachefiles);
506
507     /* Walk the list of files, starting with the oldest, deleting files if
508      * possible until enough space has been reclaimed. */
509     g_print("\nScanning cache: (total size = %d kB)\n", fs->log->disk_used);
510     while (files != NULL) {
511         BlueSkyCacheFile *cachefile = (BlueSkyCacheFile *)files->data;
512         /* Try to lock the structure, but if the lock is held by another thread
513          * then we'll just skip the file on this pass. */
514         if (g_mutex_trylock(cachefile->lock)) {
515             int64_t age = bluesky_get_current_time() - cachefile->atime;
516             g_print("%s addr=%p mapcount=%d refcount=%d atime_age=%f",
517                     cachefile->filename, cachefile->addr, cachefile->mapcount,
518                     cachefile->refcount, age / 1e6);
519             if (cachefile->fetching)
520                 g_print(" (fetching)");
521             g_print("\n");
522
523             if (g_atomic_int_get(&fs->log->disk_used) > DISK_CACHE_SIZE_TARGET
524                 && g_atomic_int_get(&cachefile->refcount) == 0
525                 && g_atomic_int_get(&cachefile->mapcount) == 0)
526             {
527                 g_print("   ...deleting\n");
528                 if (unlinkat(fs->log->dirfd, cachefile->filename, 0) < 0) {
529                     fprintf(stderr, "Unable to unlink journal %s: %m\n",
530                             cachefile->filename);
531                 }
532
533                 g_atomic_int_add(&fs->log->disk_used, -(cachefile->len / 1024));
534                 g_hash_table_remove(fs->log->mmap_cache, cachefile->filename);
535                 g_mutex_unlock(cachefile->lock);
536                 g_mutex_free(cachefile->lock);
537                 g_cond_free(cachefile->cond);
538                 g_free(cachefile->filename);
539                 g_free(cachefile);
540             } else {
541                 g_mutex_unlock(cachefile->lock);
542             }
543         }
544         files = g_list_delete_link(files, files);
545     }
546     g_list_free(files);
547
548     g_mutex_unlock(fs->log->mmap_lock);
549 }