1 /* Blue Sky: File Systems in the Cloud
3 * Copyright (C) 2009 The Regents of the University of California
4 * Written by Michael Vrable <mvrable@cs.ucsd.edu>
14 #include "bluesky-private.h"
16 /* The locations hash table in the file system is used to map objects to their locations. Objects are named using 128- */
21 BlueSkyCloudPointer *cloud_loc;
22 } BlueSkyLocationEntry;
24 BlueSkyCloudID bluesky_cloudlog_new_id()
27 bluesky_crypt_random_bytes((uint8_t *)&id.bytes, sizeof(id));
31 gchar *bluesky_cloudlog_id_to_string(BlueSkyCloudID id)
33 char buf[sizeof(BlueSkyCloudID) * 2 + 1];
36 for (int i = 0; i < sizeof(BlueSkyCloudID); i++) {
37 sprintf(&buf[2*i], "%02x", (uint8_t)(id.bytes[i]));
43 BlueSkyCloudID bluesky_cloudlog_id_from_string(const gchar *idstr)
46 memset(&id, 0, sizeof(id));
47 for (int i = 0; i < 2*sizeof(BlueSkyCloudID); i++) {
50 g_warning("Short cloud id: %s\n", idstr);
54 if (c >= '0' && c <= '9')
56 else if (c >= 'a' && c <= 'f')
59 g_warning("Bad character in cloud id: %s\n", idstr);
60 id.bytes[i / 2] += val << (i % 2 ? 0 : 4);
65 gboolean bluesky_cloudlog_equal(gconstpointer a, gconstpointer b)
67 BlueSkyCloudID *id1 = (BlueSkyCloudID *)a, *id2 = (BlueSkyCloudID *)b;
69 return memcmp(id1, id2, sizeof(BlueSkyCloudID)) == 0;
72 guint bluesky_cloudlog_hash(gconstpointer a)
74 BlueSkyCloudID *id = (BlueSkyCloudID *)a;
76 // Assume that bits in the ID are randomly chosen so that any subset of the
77 // bits can be used as a hash key.
78 return *(guint *)(&id->bytes);
81 /* Formatting of cloud log segments. This handles grouping items together
82 * before writing a batch to the cloud, handling indirection through items like
83 * the inode map, etc. */
85 BlueSkyCloudLog *bluesky_cloudlog_new(BlueSkyFS *fs)
87 BlueSkyCloudLog *log = g_new0(BlueSkyCloudLog, 1);
89 log->lock = g_mutex_new();
90 log->cond = g_cond_new();
92 log->type = LOGTYPE_UNKNOWN;
93 log->id = bluesky_cloudlog_new_id();
94 log->pointers = g_array_new(FALSE, TRUE, sizeof(BlueSkyCloudID));
95 g_atomic_int_set(&log->refcount, 1);
100 void bluesky_cloudlog_ref(BlueSkyCloudLog *log)
105 g_atomic_int_inc(&log->refcount);
108 void bluesky_cloudlog_unref(BlueSkyCloudLog *log)
113 if (g_atomic_int_dec_and_test(&log->refcount)) {
114 g_print("Cloud log refcount dropped to zero.\n");
118 /* Start a write of the object to the local log. */
119 void bluesky_cloudlog_sync(BlueSkyCloudLog *log)
121 bluesky_log_item_submit(log, log->fs->log);
124 /* Add the given entry to the global hash table containing cloud log entries.
125 * Takes ownership of the caller's reference. */
126 void bluesky_cloudlog_insert(BlueSkyCloudLog *log)
128 g_mutex_lock(log->fs->lock);
129 g_hash_table_insert(log->fs->locations, &log->id, log);
130 g_mutex_unlock(log->fs->lock);
137 uint32_t pointer_count;
138 } __attribute__((packed));
142 BlueSkyCloudPointer location;
143 } __attribute__((packed));
147 struct logref refs[0];
150 BlueSkyCloudPointer bluesky_cloudlog_serialize(BlueSkyCloudLog *log,
151 BlueSkyCloudLogState *state)
153 if (log->location_flags & CLOUDLOG_CLOUD) {
154 return log->location;
157 g_print("Flushing object %s to cloud...\n",
158 bluesky_cloudlog_id_to_string(log->id));
160 for (int i = 0; i < log->pointers->len; i++) {
161 BlueSkyCloudID id = g_array_index(log->pointers, BlueSkyCloudID, i);
162 g_print(" ...checking reference %s...\n",
163 bluesky_cloudlog_id_to_string(id));
164 g_mutex_lock(log->fs->lock);
165 BlueSkyCloudLog *log2
166 = (BlueSkyCloudLog *)g_hash_table_lookup(log->fs->locations, &id);
168 g_mutex_unlock(log->fs->lock);
169 g_assert(log2 != NULL);
170 bluesky_cloudlog_serialize(log2, state);
173 g_assert(log->data != NULL);
175 log->location = state->location;
176 log->location.offset = state->data->len;
178 = sizeof(struct log_header) + sizeof(BlueSkyCloudID) * 0
181 struct log_header header;
182 memcpy(header.magic, "AgI ", 4);
183 header.size = GUINT32_TO_LE(log->location.size);
185 header.pointer_count = GUINT32_TO_LE(0);
187 g_string_append_len(state->data, (const char *)&header, sizeof(header));
188 g_string_append_len(state->data, log->data->data, log->data->len);
190 log->location_flags |= CLOUDLOG_CLOUD;
192 return log->location;
195 static void find_inodes(gpointer key, gpointer value, gpointer user_data)
197 BlueSkyCloudLogState *state = (BlueSkyCloudLogState *)user_data;
198 BlueSkyCloudLog *item = (BlueSkyCloudLog *)value;
200 if (item->type != LOGTYPE_INODE)
203 bluesky_cloudlog_ref(item);
204 state->inode_list = g_list_prepend(state->inode_list, item);
207 void bluesky_cloudlog_write_log(BlueSkyFS *fs)
209 g_print("Starting cloudlog write...\n");
211 BlueSkyCloudLogState *state = fs->log_state;
212 if (state->data == NULL)
213 state->data = g_string_new("");
215 g_mutex_lock(fs->lock);
216 g_hash_table_foreach(fs->locations, find_inodes, state);
217 g_mutex_unlock(fs->lock);
219 while (state->inode_list != NULL) {
220 BlueSkyCloudLog *log = (BlueSkyCloudLog *)state->inode_list->data;
221 bluesky_cloudlog_serialize(log, state);
222 state->inode_list = g_list_delete_link(state->inode_list,
226 if (state->data->len > 0) {
227 g_print("Serialized %zd bytes of data\n", state->data->len);
229 BlueSkyStoreAsync *async = bluesky_store_async_new(fs->store);
230 async->op = STORE_OP_PUT;
231 async->key = g_strdup_printf("log-%08d-%08d",
232 state->location.directory,
233 state->location.sequence);
234 async->data = bluesky_string_new_from_gstring(state->data);
235 bluesky_store_async_submit(async);
236 bluesky_store_async_wait(async);
237 bluesky_store_async_unref(async);
239 state->location.sequence++;
240 state->location.offset = 0;
246 /* Ensure that a cloud log item is loaded in memory, and if not read it in.
247 * TODO: Make asynchronous, and make this also fetch from the cloud. Right now
248 * we only read from the log. Log item must be locked. */
249 void bluesky_cloudlog_fetch(BlueSkyCloudLog *log)
251 if (log->data != NULL)
254 g_print("Re-mapping log entry %d/%d/%d...\n",
255 log->log_seq, log->log_offset, log->log_size);
257 g_assert(log->location_flags & CLOUDLOG_JOURNAL);
259 log->data = bluesky_log_map_object(log->fs->log, log->log_seq,
260 log->log_offset, log->log_size);