Add very rudimentary eviction data blocks from the cache.
[bluesky.git] / bluesky / inode.c
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 #include <stdio.h>
10 #include <stdint.h>
11 #include <inttypes.h>
12 #include <glib.h>
13 #include <string.h>
14
15 #include "bluesky-private.h"
16
17 /* Core filesystem.  Different proxies, such as the NFSv3 one, interface to
18  * this, but the core actually tracks the data which is stored.  So far we just
19  * implement an in-memory filesystem, but eventually this will be state which
20  * is persisted to the cloud. */
21
22 /* Return the current time, in microseconds since the epoch. */
23 int64_t bluesky_get_current_time()
24 {
25     GTimeVal t;
26     g_get_current_time(&t);
27     return (int64_t)t.tv_sec * 1000000 + t.tv_usec;
28 }
29
30 /* Update an inode to indicate that a modification was made.  This increases
31  * the change counter, updates the ctime to the current time, and optionally
32  * updates the mtime.  This also makes the inode contents subject to writeback
33  * to storage in the future.  inode must already be locked. */
34 void bluesky_inode_update_ctime(BlueSkyInode *inode, gboolean update_mtime)
35 {
36     int64_t now = bluesky_get_current_time();
37     inode->change_count++;
38     inode->ctime = now;
39     if (update_mtime)
40         inode->mtime = now;
41
42     if (inode->change_time == 0)
43         inode->change_time = now;
44
45     if (bluesky_options.writethrough_cache)
46         bluesky_file_flush(inode, NULL);
47 }
48
49 /* Unfortunately a glib hash table is only guaranteed to be able to store
50  * 32-bit keys if we use the key directly.  If we want 64-bit inode numbers,
51  * we'll have to allocate memory to store the 64-bit inumber, and use a pointer
52  * to it.  Rather than allocate the memory for the key, we'll just include a
53  * pointer to the 64-bit inum stored in the inode itself, so that we don't need
54  * to do any more memory management.  */
55 static guint bluesky_fs_key_hash_func(gconstpointer key)
56 {
57     uint64_t inum = *(const uint64_t *)key;
58     return (guint)inum;
59 }
60
61 static gboolean bluesky_fs_key_equal_func(gconstpointer a, gconstpointer b)
62 {
63     uint64_t i1 = *(const uint64_t *)a;
64     uint64_t i2 = *(const uint64_t *)b;
65     return i1 == i2;
66 }
67
68 /* Filesystem-level operations.  A filesystem is like a directory tree that we
69  * are willing to export. */
70 BlueSkyFS *bluesky_new_fs(gchar *name)
71 {
72     BlueSkyFS *fs = g_new0(BlueSkyFS, 1);
73     fs->lock = g_mutex_new();
74     fs->name = g_strdup(name);
75     fs->inodes = g_hash_table_new(bluesky_fs_key_hash_func,
76                                   bluesky_fs_key_equal_func);
77     fs->next_inum = BLUESKY_ROOT_INUM + 1;
78     fs->store = bluesky_store_new("file");
79
80     return fs;
81 }
82
83 BlueSkyFS *bluesky_init_fs(gchar *name, BlueSkyStore *store)
84 {
85     BlueSkyRCStr *data = bluesky_store_get(store, "superblock");
86     if (data != NULL) {
87         BlueSkyFS *fs = bluesky_deserialize_superblock(data->data);
88         if (fs != NULL) {
89             fs->store = store;
90             g_print("Loaded filesystem superblock\n");
91             g_free(fs->name);
92             fs->name = g_strdup(name);
93             return fs;
94         }
95         bluesky_string_unref(data);
96     }
97
98     g_print("Initializing fresh filesystem\n");
99     BlueSkyFS *fs = bluesky_new_fs(name);
100     fs->store = store;
101
102     BlueSkyInode *root = bluesky_new_inode(BLUESKY_ROOT_INUM, fs,
103                                            BLUESKY_DIRECTORY);
104     root->nlink = 1;
105     root->mode = 0755;
106     bluesky_insert_inode(fs, root);
107
108     bluesky_inode_flush(fs, root);
109     bluesky_superblock_flush(fs);
110
111     return fs;
112 }
113
114 /* Inode reference counting. */
115 void bluesky_inode_ref(BlueSkyInode *inode)
116 {
117     g_atomic_int_inc(&inode->refcount);
118 }
119
120 void bluesky_inode_unref(BlueSkyInode *inode)
121 {
122     if (g_atomic_int_dec_and_test(&inode->refcount)) {
123         g_error("Reference count for inode %"PRIu64" dropped to zero!\n",
124                 inode->inum);
125     }
126 }
127
128 /* Allocate a fresh inode number which has not been used before within a
129  * filesystem.  fs must already be locked. */
130 uint64_t bluesky_fs_alloc_inode(BlueSkyFS *fs)
131 {
132     uint64_t inum;
133
134     inum = fs->next_inum;
135     fs->next_inum++;
136
137     bluesky_superblock_flush(fs);
138
139     return inum;
140 }
141
142 /* Perform type-specification initialization of an inode.  Normally performed
143  * in bluesky_new_inode, but can be separated if an inode is created first,
144  * then deserialized. */
145 void bluesky_init_inode(BlueSkyInode *i, BlueSkyFileType type)
146 {
147     i->type = type;
148
149     switch (type) {
150     case BLUESKY_REGULAR:
151         i->blocks = g_array_new(FALSE, TRUE, sizeof(BlueSkyBlock));
152         break;
153     case BLUESKY_DIRECTORY:
154         i->dirents = g_sequence_new(bluesky_dirent_destroy);
155         i->dirhash = g_hash_table_new(g_str_hash, g_str_equal);
156         i->dirhash_folded = g_hash_table_new(g_str_hash, g_str_equal);
157         break;
158     default:
159         break;
160     }
161 }
162
163 BlueSkyInode *bluesky_new_inode(uint64_t inum, BlueSkyFS *fs,
164                                 BlueSkyFileType type)
165 {
166     BlueSkyInode *i = g_new0(BlueSkyInode, 1);
167
168     i->lock = g_mutex_new();
169     i->refcount = 1;
170     i->fs = fs;
171     i->inum = inum;
172     i->change_count = 1;
173     bluesky_init_inode(i, type);
174
175     return i;
176 }
177
178 /* Retrieve an inode from the filesystem.  Eventually this will be a cache and
179  * so we might need to go fetch the inode from elsewhere; for now all
180  * filesystem state is stored here.  inode is returned with a reference held
181  * but not locked. */
182 BlueSkyInode *bluesky_get_inode(BlueSkyFS *fs, uint64_t inum)
183 {
184     BlueSkyInode *inode = NULL;
185
186     if (inum == 0) {
187         return NULL;
188     }
189
190     g_mutex_lock(fs->lock);
191     inode = (BlueSkyInode *)g_hash_table_lookup(fs->inodes, &inum);
192
193     if (inode == NULL) {
194         bluesky_inode_fetch(fs, inum);
195         inode = (BlueSkyInode *)g_hash_table_lookup(fs->inodes, &inum);
196     }
197
198     if (inode != NULL) {
199         bluesky_inode_ref(inode);
200
201         /* FIXME: We assume we can atomically update the in-memory access time
202          * without a lock. */
203         inode->access_time = bluesky_get_current_time();
204     }
205
206     g_mutex_unlock(fs->lock);
207
208     return inode;
209 }
210
211 /* Insert an inode into the filesystem inode cache.  fs should be locked. */
212 void bluesky_insert_inode(BlueSkyFS *fs, BlueSkyInode *inode)
213 {
214     g_hash_table_insert(fs->inodes, &inode->inum, inode);
215 }
216
217 /* Deprecated: Synchronize an inode to stable storage. */
218 void bluesky_inode_flush(BlueSkyFS *fs, BlueSkyInode *inode)
219 {
220     GString *buf = g_string_new("");
221     bluesky_serialize_inode(buf, inode);
222     BlueSkyRCStr *data = bluesky_string_new_from_gstring(buf);
223
224     char key[64];
225     sprintf(key, "inode-%016"PRIx64, inode->inum);
226
227     BlueSkyStoreAsync *async = bluesky_store_async_new(fs->store);
228     async->op = STORE_OP_PUT;
229     async->key = g_strdup(key);
230     async->data = data;
231     bluesky_store_async_submit(async);
232     bluesky_store_async_unref(async);
233 }
234
235 /* Start writeback of an inode and all associated data. */
236 void bluesky_inode_start_sync(BlueSkyInode *inode, BlueSkyStoreAsync *barrier)
237 {
238     BlueSkyFS *fs = inode->fs;
239
240     if (inode->type == BLUESKY_REGULAR)
241         bluesky_file_flush(inode, barrier);
242
243     GString *buf = g_string_new("");
244     bluesky_serialize_inode(buf, inode);
245     BlueSkyRCStr *data = bluesky_string_new_from_gstring(buf);
246
247     char key[64];
248     sprintf(key, "inode-%016"PRIx64, inode->inum);
249
250     BlueSkyStoreAsync *async = bluesky_store_async_new(fs->store);
251     async->op = STORE_OP_PUT;
252     async->key = g_strdup(key);
253     async->data = data;
254     bluesky_store_async_submit(async);
255     if (barrier != NULL)
256         bluesky_store_add_barrier(barrier, async);
257     bluesky_store_async_unref(async);
258 }
259
260 /* Write back an inode and all associated data and wait for completion.  Inode
261  * should already be locked. */
262 void bluesky_inode_do_sync(BlueSkyInode *inode)
263 {
264     BlueSkyStoreAsync *barrier = bluesky_store_async_new(inode->fs->store);
265     barrier->op = STORE_OP_BARRIER;
266
267     g_log("bluesky/inode", G_LOG_LEVEL_DEBUG,
268           "Synchronous writeback for inode %"PRIu64"...", inode->inum);
269     bluesky_inode_start_sync(inode, barrier);
270     bluesky_store_async_submit(barrier);
271     bluesky_store_async_wait(barrier);
272     bluesky_store_async_unref(barrier);
273     g_log("bluesky/inode", G_LOG_LEVEL_DEBUG,
274           "Writeback for inode %"PRIu64" complete", inode->inum);
275 }
276
277 static void complete_inode_fetch(BlueSkyStoreAsync *async, BlueSkyInode *inode)
278 {
279     g_print("Completing fetch of inode %"PRIu64"...\n", inode->inum);
280
281     if (async->result != 0
282         || !bluesky_deserialize_inode(inode, async->data->data))
283     {
284         g_print("    failed to load inode, cleaning up\n");
285         g_mutex_lock(inode->fs->lock);
286         g_hash_table_remove(inode->fs->inodes, &inode->inum);
287         g_mutex_unlock(inode->fs->lock);
288         bluesky_inode_unref(inode);
289     }
290
291     g_mutex_unlock(inode->lock);
292     bluesky_inode_unref(inode);
293 }
294
295 /* Fetch an inode from stable storage.  The fetch can be performed
296  * asynchronously: the in-memory inode is allocated, but not filled with data
297  * immediately.  It is kept locked until it has been filled in, so any users
298  * should try to acquire the lock on the inode before accessing any data.  The
299  * fs lock must be held. */
300 void bluesky_inode_fetch(BlueSkyFS *fs, uint64_t inum)
301 {
302     char key[64];
303     sprintf(key, "inode-%016"PRIx64, inum);
304
305     BlueSkyInode *inode = bluesky_new_inode(inum, fs, BLUESKY_PENDING);
306     bluesky_inode_ref(inode);       // Extra ref held by fetching process
307     g_mutex_lock(inode->lock);
308     bluesky_insert_inode(fs, inode);
309
310     BlueSkyStoreAsync *async = bluesky_store_async_new(fs->store);
311     async->op = STORE_OP_GET;
312     async->key = g_strdup(key);
313
314     bluesky_store_async_add_notifier(async, (GFunc)complete_inode_fetch, inode);
315     bluesky_store_async_submit(async);
316
317     if (bluesky_options.sync_inode_fetches) {
318         bluesky_store_async_wait(async);
319     }
320
321     bluesky_store_async_unref(async);
322 }
323
324 /* Synchronize filesystem superblock to stable storage. */
325 void bluesky_superblock_flush(BlueSkyFS *fs)
326 {
327     GString *buf = g_string_new("");
328     bluesky_serialize_superblock(buf, fs);
329     BlueSkyRCStr *data = bluesky_string_new_from_gstring(buf);
330
331     BlueSkyStoreAsync *async = bluesky_store_async_new(fs->store);
332     async->op = STORE_OP_PUT;
333     async->key = g_strdup("superblock");
334     async->data = data;
335     bluesky_store_async_submit(async);
336     bluesky_store_async_unref(async);
337
338     bluesky_store_sync(fs->store);
339 }