Merge git+ssh://c09-44.sysnet.ucsd.edu/scratch/bluesky
[bluesky.git] / bluesky / store-s3.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     int success;
38     BlueSkyRCStr *val;
39     gint offset;
40 };
41
42 struct list_info {
43     int success;
44     char *last_entry;
45     gboolean truncated;
46 };
47
48 static S3Status s3store_get_handler(int bufferSize, const char *buffer,
49                                     void *callbackData)
50 {
51     struct get_info *info = (struct get_info *)callbackData;
52     g_string_append_len(info->buf, buffer, bufferSize);
53     return S3StatusOK;
54 }
55
56 static int s3store_put_handler(int bufferSize, char *buffer,
57                                void *callbackData)
58 {
59     struct put_info *info = (struct put_info *)callbackData;
60     gint bytes = MIN(bufferSize, (int)(info->val->len - info->offset));
61     memcpy(buffer, (char *)info->val->data + info->offset, bytes);
62     info->offset += bytes;
63     return bytes;
64 }
65
66 static S3Status s3store_properties_callback(const S3ResponseProperties *properties,
67                                      void *callbackData)
68 {
69     return S3StatusOK;
70 }
71
72 static void s3store_response_callback(S3Status status,
73                                const S3ErrorDetails *errorDetails,
74                                void *callbackData)
75 {
76     struct get_info *info = (struct get_info *)callbackData;
77
78     if (status == 0) {
79         info->success = 1;
80     }
81
82     if (errorDetails != NULL && errorDetails->message != NULL) {
83         g_print("  Error message: %s\n", errorDetails->message);
84     }
85 }
86
87 static void s3store_task(gpointer a, gpointer s)
88 {
89     BlueSkyStoreAsync *async = (BlueSkyStoreAsync *)a;
90     S3Store *store = (S3Store *)s;
91
92     async->status = ASYNC_RUNNING;
93     async->exec_time = bluesky_now_hires();
94
95     if (async->op == STORE_OP_GET) {
96         struct get_info info;
97         info.buf = g_string_new("");
98         info.success = 0;
99
100         struct S3GetObjectHandler handler;
101         handler.responseHandler.propertiesCallback = s3store_properties_callback;
102         handler.responseHandler.completeCallback = s3store_response_callback;
103         handler.getObjectDataCallback = s3store_get_handler;
104
105         S3_get_object(&store->bucket, async->key, NULL, 0, 0, NULL,
106                       &handler, &info);
107
108         if (info.success) {
109             async->data = bluesky_string_new_from_gstring(info.buf);
110             async->result = 0;
111         } else {
112             g_string_free(info.buf, TRUE);
113         }
114
115     } else if (async->op == STORE_OP_PUT) {
116         struct put_info info;
117         info.val = async->data;
118         info.offset = 0;
119
120         struct S3PutObjectHandler handler;
121         handler.responseHandler.propertiesCallback
122             = s3store_properties_callback;
123         handler.responseHandler.completeCallback = s3store_response_callback;
124         handler.putObjectDataCallback = s3store_put_handler;
125
126         S3_put_object(&store->bucket, async->key, async->data->len, NULL, NULL,
127                       &handler, &info);
128
129         async->result = 0;
130     }
131
132     bluesky_store_async_mark_complete(async);
133     bluesky_store_async_unref(async);
134 }
135
136 static S3Status s3store_list_handler(int isTruncated,
137                                      const char *nextMarker,
138                                      int contentsCount,
139                                      const S3ListBucketContent *contents,
140                                      int commonPrefixesCount,
141                                      const char **commonPrefixes,
142                                      void *callbackData)
143 {
144     struct list_info *info = (struct list_info *)callbackData;
145     if (contentsCount > 0) {
146         g_free(info->last_entry);
147         info->last_entry = g_strdup(contents[contentsCount - 1].key);
148     }
149     info->truncated = isTruncated;
150     return S3StatusOK;
151 }
152
153 static char *s3store_lookup_last(gpointer s, const char *prefix)
154 {
155     S3Store *store = (S3Store *)s;
156     struct list_info info = {0, NULL, FALSE};
157
158     struct S3ListBucketHandler handler;
159     handler.responseHandler.propertiesCallback
160         = s3store_properties_callback;
161     handler.responseHandler.completeCallback = s3store_response_callback;
162     handler.listBucketCallback = s3store_list_handler;
163
164     char *marker = NULL;
165
166     do {
167         S3_list_bucket(&store->bucket, prefix, marker, NULL, 1024, NULL,
168                        &handler, &info);
169         g_free(marker);
170         marker = g_strdup(info.last_entry);
171         g_print("Last key: %s\n", info.last_entry);
172     } while (info.truncated);
173
174     g_free(marker);
175
176     return info.last_entry;
177 }
178
179 static gpointer s3store_new(const gchar *path)
180 {
181     S3Store *store = g_new(S3Store, 1);
182     store->thread_pool = g_thread_pool_new(s3store_task, store, -1, FALSE,
183                                            NULL);
184     if (path == NULL || strlen(path) == 0)
185         store->bucket.bucketName = "mvrable-bluesky";
186     else
187         store->bucket.bucketName = g_strdup(path);
188     store->bucket.protocol = S3ProtocolHTTP;
189     store->bucket.uriStyle = S3UriStylePath;
190     store->bucket.accessKeyId = getenv("AWS_ACCESS_KEY_ID");
191     store->bucket.secretAccessKey = getenv("AWS_SECRET_ACCESS_KEY");
192
193     const char *key = getenv("BLUESKY_KEY");
194     if (key == NULL) {
195         g_error("Encryption key not defined; please set BLUESKY_KEY environment variable");
196         exit(1);
197     }
198
199     bluesky_crypt_hash_key(key, store->encryption_key);
200
201     g_print("Initializing S3 with bucket %s, access key %s, encryption key %s\n",
202             store->bucket.bucketName, store->bucket.accessKeyId, key);
203
204     return store;
205 }
206
207 static void s3store_destroy(gpointer store)
208 {
209     g_free(store);
210 }
211
212 static void s3store_submit(gpointer s, BlueSkyStoreAsync *async)
213 {
214     S3Store *store = (S3Store *)s;
215     g_return_if_fail(async->status == ASYNC_NEW);
216     g_return_if_fail(async->op != STORE_OP_NONE);
217
218     switch (async->op) {
219     case STORE_OP_GET:
220     case STORE_OP_PUT:
221         async->status = ASYNC_PENDING;
222         bluesky_store_async_ref(async);
223         g_thread_pool_push(store->thread_pool, async, NULL);
224         break;
225
226     default:
227         g_warning("Uknown operation type for S3Store: %d\n", async->op);
228         bluesky_store_async_mark_complete(async);
229         break;
230     }
231 }
232
233 static void s3store_cleanup(gpointer store, BlueSkyStoreAsync *async)
234 {
235     GString *buf = (GString *)async->store_private;
236
237     if (buf != NULL) {
238         g_string_free(buf, TRUE);
239         async->store_private = NULL;
240     }
241 }
242
243 static BlueSkyStoreImplementation store_impl = {
244     .create = s3store_new,
245     .destroy = s3store_destroy,
246     .submit = s3store_submit,
247     .cleanup = s3store_cleanup,
248     .lookup_last = s3store_lookup_last,
249 };
250
251 void bluesky_store_init_s3(void)
252 {
253     S3_initialize(NULL, S3_INIT_ALL);
254     bluesky_store_register(&store_impl, "s3");
255 }