Flush file blocks to storage before the inode.
[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     }
96
97     g_print("Initializing fresh filesystem\n");
98     BlueSkyFS *fs = bluesky_new_fs(name);
99     fs->store = store;
100
101     BlueSkyInode *root = bluesky_new_inode(BLUESKY_ROOT_INUM, fs,
102                                            BLUESKY_DIRECTORY);
103     root->nlink = 1;
104     root->mode = 0755;
105     bluesky_insert_inode(fs, root);
106
107     bluesky_inode_flush(fs, root);
108     bluesky_superblock_flush(fs);
109
110     return fs;
111 }
112
113 /* Inode reference counting. */
114 void bluesky_inode_ref(BlueSkyInode *inode)
115 {
116     g_atomic_int_inc(&inode->refcount);
117 }
118
119 void bluesky_inode_unref(BlueSkyInode *inode)
120 {
121     if (g_atomic_int_dec_and_test(&inode->refcount)) {
122         g_error("Reference count for inode %"PRIu64" dropped to zero!\n",
123                 inode->inum);
124     }
125 }
126
127 /* Allocate a fresh inode number which has not been used before within a
128  * filesystem.  fs must already be locked. */
129 uint64_t bluesky_fs_alloc_inode(BlueSkyFS *fs)
130 {
131     uint64_t inum;
132
133     inum = fs->next_inum;
134     fs->next_inum++;
135
136     bluesky_superblock_flush(fs);
137
138     return inum;
139 }
140
141 /* Perform type-specification initialization of an inode.  Normally performed
142  * in bluesky_new_inode, but can be separated if an inode is created first,
143  * then deserialized. */
144 void bluesky_init_inode(BlueSkyInode *i, BlueSkyFileType type)
145 {
146     i->type = type;
147
148     switch (type) {
149     case BLUESKY_REGULAR:
150         i->blocks = g_array_new(FALSE, TRUE, sizeof(BlueSkyBlock));
151         break;
152     case BLUESKY_DIRECTORY:
153         i->dirents = g_sequence_new(bluesky_dirent_destroy);
154         i->dirhash = g_hash_table_new(g_str_hash, g_str_equal);
155         i->dirhash_folded = g_hash_table_new(g_str_hash, g_str_equal);
156         break;
157     default:
158         break;
159     }
160 }
161
162 BlueSkyInode *bluesky_new_inode(uint64_t inum, BlueSkyFS *fs,
163                                 BlueSkyFileType type)
164 {
165     BlueSkyInode *i = g_new0(BlueSkyInode, 1);
166
167     i->lock = g_mutex_new();
168     i->refcount = 1;
169     i->fs = fs;
170     i->inum = inum;
171     i->change_count = 1;
172     bluesky_init_inode(i, type);
173
174     return i;
175 }
176
177 /* Retrieve an inode from the filesystem.  Eventually this will be a cache and
178  * so we might need to go fetch the inode from elsewhere; for now all
179  * filesystem state is stored here.  inode is returned with a reference held
180  * but not locked. */
181 BlueSkyInode *bluesky_get_inode(BlueSkyFS *fs, uint64_t inum)
182 {
183     BlueSkyInode *inode = NULL;
184
185     if (inum == 0) {
186         return NULL;
187     }
188
189     g_mutex_lock(fs->lock);
190     inode = (BlueSkyInode *)g_hash_table_lookup(fs->inodes, &inum);
191
192     if (inode == NULL) {
193         bluesky_inode_fetch(fs, inum);
194         inode = (BlueSkyInode *)g_hash_table_lookup(fs->inodes, &inum);
195     }
196
197     if (inode != NULL) {
198         bluesky_inode_ref(inode);
199     }
200
201     g_mutex_unlock(fs->lock);
202
203     return inode;
204 }
205
206 /* Insert an inode into the filesystem inode cache.  fs should be locked. */
207 void bluesky_insert_inode(BlueSkyFS *fs, BlueSkyInode *inode)
208 {
209     g_hash_table_insert(fs->inodes, &inode->inum, inode);
210 }
211
212 /* Deprecated: Synchronize an inode to stable storage. */
213 void bluesky_inode_flush(BlueSkyFS *fs, BlueSkyInode *inode)
214 {
215     GString *buf = g_string_new("");
216     bluesky_serialize_inode(buf, inode);
217     BlueSkyRCStr *data = bluesky_string_new_from_gstring(buf);
218
219     char key[64];
220     sprintf(key, "inode-%016"PRIx64, inode->inum);
221
222     BlueSkyStoreAsync *async = bluesky_store_async_new(fs->store);
223     async->op = STORE_OP_PUT;
224     async->key = g_strdup(key);
225     async->data = data;
226     bluesky_store_async_submit(async);
227     bluesky_store_async_unref(async);
228 }
229
230 /* Start writeback of an inode and all associated data. */
231 void bluesky_inode_start_sync(BlueSkyInode *inode, BlueSkyStoreAsync *barrier)
232 {
233     BlueSkyFS *fs = inode->fs;
234
235     if (inode->type == BLUESKY_REGULAR)
236         bluesky_file_flush(inode, barrier);
237
238     GString *buf = g_string_new("");
239     bluesky_serialize_inode(buf, inode);
240     BlueSkyRCStr *data = bluesky_string_new_from_gstring(buf);
241
242     char key[64];
243     sprintf(key, "inode-%016"PRIx64, inode->inum);
244
245     BlueSkyStoreAsync *async = bluesky_store_async_new(fs->store);
246     async->op = STORE_OP_PUT;
247     async->key = g_strdup(key);
248     async->data = data;
249     bluesky_store_async_submit(async);
250     if (barrier != NULL)
251         bluesky_store_add_barrier(barrier, async);
252     bluesky_store_async_unref(async);
253 }
254
255 /* Fetch an inode from stable storage. */
256 void bluesky_inode_fetch(BlueSkyFS *fs, uint64_t inum)
257 {
258     char key[64];
259     sprintf(key, "inode-%016"PRIx64, inum);
260     BlueSkyRCStr *data = bluesky_store_get(fs->store, key);
261     if (data == NULL)
262         return;
263
264     BlueSkyInode *inode = bluesky_new_inode(inum, fs, BLUESKY_PENDING);
265     bluesky_inode_ref(inode);
266     g_mutex_lock(inode->lock);
267     bluesky_insert_inode(fs, inode);
268
269     if (!bluesky_deserialize_inode(inode, data->data)) {
270         g_hash_table_remove(fs->inodes, &inode->inum);
271         bluesky_inode_unref(inode);
272     }
273
274     g_mutex_unlock(inode->lock);
275     bluesky_inode_unref(inode);
276 }
277
278 /* Synchronize filesystem superblock to stable storage. */
279 void bluesky_superblock_flush(BlueSkyFS *fs)
280 {
281     GString *buf = g_string_new("");
282     bluesky_serialize_superblock(buf, fs);
283     BlueSkyRCStr *data = bluesky_string_new_from_gstring(buf);
284
285     BlueSkyStoreAsync *async = bluesky_store_async_new(fs->store);
286     async->op = STORE_OP_PUT;
287     async->key = g_strdup("superblock");
288     async->data = data;
289     bluesky_store_async_submit(async);
290     bluesky_store_async_unref(async);
291
292     bluesky_store_sync(fs->store);
293 }