Rework the storage interface so that operations are asynchronous.
[bluesky.git] / bluesky / s3store.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 <stdint.h>
10 #include <stdlib.h>
11 #include <glib.h>
12 #include <string.h>
13
14 #include "bluesky-private.h"
15 #include "libs3.h"
16
17 /* Interface to Amazon S3 storage. */
18
19 typedef struct {
20     GThreadPool *thread_pool;
21     S3BucketContext bucket;
22     uint8_t encryption_key[CRYPTO_KEY_SIZE];
23 } S3Store;
24
25 typedef struct {
26     enum { S3_GET, S3_PUT } op;
27     gchar *key;
28     BlueSkyRCStr *data;
29 } S3Op;
30
31 struct get_info {
32     int success;
33     GString *buf;
34 };
35
36 struct put_info {
37     BlueSkyRCStr *val;
38     gint offset;
39 };
40
41 static S3Status s3store_get_handler(int bufferSize, const char *buffer,
42                                     void *callbackData)
43 {
44     struct get_info *info = (struct get_info *)callbackData;
45     g_string_append_len(info->buf, buffer, bufferSize);
46     return S3StatusOK;
47 }
48
49 static int s3store_put_handler(int bufferSize, char *buffer,
50                                void *callbackData)
51 {
52     struct put_info *info = (struct put_info *)callbackData;
53     gint bytes = MIN(bufferSize, (int)(info->val->len - info->offset));
54     memcpy(buffer, (char *)info->val->data + info->offset, bytes);
55     info->offset += bytes;
56     return bytes;
57 }
58
59 static S3Status s3store_properties_callback(const S3ResponseProperties *properties,
60                                      void *callbackData)
61 {
62     g_print("(Properties callback)\n");
63     return S3StatusOK;
64 }
65
66 static void s3store_response_callback(S3Status status,
67                                const S3ErrorDetails *errorDetails,
68                                void *callbackData)
69 {
70     struct get_info *info = (struct get_info *)callbackData;
71
72     g_print("S3 operation complete, status=%s, now=%ld\n",
73             S3_get_status_name(status), bluesky_now_hires());
74
75     if (status == 0) {
76         info->success = 1;
77     }
78
79     if (errorDetails != NULL) {
80         g_print("  Error message: %s\n", errorDetails->message);
81     }
82 }
83
84 static void s3store_task(gpointer a, gpointer s)
85 {
86     BlueSkyStoreAsync *async = (BlueSkyStoreAsync *)a;
87     S3Store *store = (S3Store *)s;
88
89     g_print("Start task [key=%s]...\n", async->key);
90     async->status = ASYNC_RUNNING;
91
92     if (async->op == STORE_OP_GET) {
93         struct get_info info;
94         info.buf = g_string_new("");
95         info.success = 0;
96
97         struct S3GetObjectHandler handler;
98         handler.responseHandler.propertiesCallback = s3store_properties_callback;
99         handler.responseHandler.completeCallback = s3store_response_callback;
100         handler.getObjectDataCallback = s3store_get_handler;
101
102         g_print("Starting fetch of %s from S3...\n", async->key);
103         S3_get_object(&store->bucket, async->key, NULL, 0, 0, NULL,
104                       &handler, &info);
105
106         if (info.success) {
107             BlueSkyRCStr *raw, *decrypted;
108             raw = bluesky_string_new_from_gstring(info.buf);
109             decrypted = bluesky_crypt_decrypt(raw, store->encryption_key);
110             bluesky_string_unref(raw);
111             async->data = decrypted;
112             async->result = 0;
113         } else {
114             g_string_free(info.buf, TRUE);
115         }
116
117     } else if (async->op == STORE_OP_PUT) {
118         BlueSkyRCStr *encrypted = bluesky_crypt_encrypt(async->data,
119                                                         store->encryption_key);
120
121         struct put_info info;
122         info.val = encrypted;
123         info.offset = 0;
124
125         struct S3PutObjectHandler handler;
126         handler.responseHandler.propertiesCallback
127             = s3store_properties_callback;
128         handler.responseHandler.completeCallback = s3store_response_callback;
129         handler.putObjectDataCallback = s3store_put_handler;
130
131         g_print("Starting store of %s to S3 at %ld...\n",
132                 async->key, bluesky_now_hires());
133         S3_put_object(&store->bucket, async->key, encrypted->len, NULL, NULL,
134                       &handler, &info);
135
136         bluesky_string_unref(encrypted);
137
138         async->result = 0;
139     }
140
141     // TODO: Deallocate resources
142
143     g_print("Finish task...\n");
144     bluesky_store_async_mark_complete(async);
145 }
146
147 static gpointer s3store_new()
148 {
149     S3Store *store = g_new(S3Store, 1);
150     store->thread_pool = g_thread_pool_new(s3store_task, store, -1, FALSE,
151                                            NULL);
152     store->bucket.bucketName = "mvrable-bluesky";
153     store->bucket.protocol = S3ProtocolHTTP;
154     store->bucket.uriStyle = S3UriStylePath;
155     store->bucket.accessKeyId = getenv("AWS_ACCESS_KEY_ID");
156     store->bucket.secretAccessKey = getenv("AWS_SECRET_ACCESS_KEY");
157
158     const char *key = getenv("BLUESKY_KEY");
159     if (key == NULL) {
160         g_error("Encryption key not defined; please set BLUESKY_KEY environment variable");
161         exit(1);
162     }
163
164     bluesky_crypt_hash_key(key, store->encryption_key);
165
166     g_print("Initializing S3 with bucket %s, access key %s, encryption key %s\n",
167             store->bucket.bucketName, store->bucket.accessKeyId, key);
168
169     return store;
170 }
171
172 static void s3store_destroy(gpointer store)
173 {
174     g_free(store);
175 }
176
177 static void s3store_submit(gpointer s, BlueSkyStoreAsync *async)
178 {
179     S3Store *store = (S3Store *)s;
180     g_return_if_fail(async->status == ASYNC_NEW);
181     g_return_if_fail(async->op != STORE_OP_NONE);
182
183     switch (async->op) {
184     case STORE_OP_GET:
185     case STORE_OP_PUT:
186         async->status = ASYNC_PENDING;
187         g_thread_pool_push(store->thread_pool, async, NULL);
188         break;
189
190     default:
191         g_warning("Uknown operation type for S3Store: %d\n", async->op);
192         bluesky_store_async_mark_complete(async);
193         break;
194     }
195 }
196
197 static void s3store_cleanup(gpointer store, BlueSkyStoreAsync *async)
198 {
199     GString *buf = (GString *)async->store_private;
200
201     if (buf != NULL) {
202         g_string_free(buf, TRUE);
203         async->store_private = NULL;
204     }
205 }
206
207 static BlueSkyStoreImplementation store_impl = {
208     .create = s3store_new,
209     .destroy = s3store_destroy,
210     .submit = s3store_submit,
211     .cleanup = s3store_cleanup,
212 };
213
214 void bluesky_store_init_s3(void)
215 {
216     S3_initialize(NULL, S3_INIT_ALL);
217     bluesky_store_register(&store_impl, "s3");
218 }