Allow storse to S3 to execute in the background, in parallel.
[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 static void s3store_task(gpointer s, gpointer o);
32
33 static gpointer s3store_new()
34 {
35     S3Store *store = g_new(S3Store, 1);
36     store->thread_pool = g_thread_pool_new(s3store_task, store, -1, FALSE,
37                                            NULL);
38     store->bucket.bucketName = "mvrable-bluesky";
39     store->bucket.protocol = S3ProtocolHTTP;
40     store->bucket.uriStyle = S3UriStylePath;
41     store->bucket.accessKeyId = getenv("AWS_ACCESS_KEY_ID");
42     store->bucket.secretAccessKey = getenv("AWS_SECRET_ACCESS_KEY");
43
44     const char *key = getenv("BLUESKY_KEY");
45     if (key == NULL) {
46         g_error("Encryption key not defined; please set BLUESKY_KEY environment variable");
47         exit(1);
48     }
49
50     bluesky_crypt_hash_key(key, store->encryption_key);
51
52     g_print("Initializing S3 with bucket %s, access key %s, encryption key %s\n",
53             store->bucket.bucketName, store->bucket.accessKeyId, key);
54
55     return store;
56 }
57
58 static void s3store_destroy(gpointer store)
59 {
60     g_free(store);
61 }
62
63 struct get_info {
64     gchar *buf;
65     gint offset;
66 };
67
68 static S3Status s3store_get_handler(int bufferSize, const char *buffer,
69                                     void *callbackData)
70 {
71     struct get_info *info = (struct get_info *)callbackData;
72     gint bytes = MIN(bufferSize, (int)(BLUESKY_BLOCK_SIZE - info->offset));
73     memcpy(info->buf + info->offset, buffer, bytes);
74     info->offset += bytes;
75     return S3StatusOK;
76 }
77
78 struct put_info {
79     BlueSkyRCStr *val;
80     gint offset;
81 };
82
83 static int s3store_put_handler(int bufferSize, char *buffer,
84                                void *callbackData)
85 {
86     struct put_info *info = (struct put_info *)callbackData;
87     gint bytes = MIN(bufferSize, (int)(info->val->len - info->offset));
88     memcpy(buffer, (char *)info->val->data + info->offset, bytes);
89     info->offset += bytes;
90     return bytes;
91 }
92
93 static S3Status s3store_properties_callback(const S3ResponseProperties *properties,
94                                      void *callbackData)
95 {
96     g_print("(Properties callback)\n");
97     return S3StatusOK;
98 }
99
100 static void s3store_response_callback(S3Status status,
101                                const S3ErrorDetails *errorDetails,
102                                void *callbackData)
103 {
104     g_print("S3 operation complete, status=%s, now=%ld\n",
105             S3_get_status_name(status), bluesky_now_hires());
106     if (errorDetails != NULL) {
107         g_print("  Error message: %s\n", errorDetails->message);
108     }
109 }
110
111 static BlueSkyRCStr *s3store_get(gpointer s, const gchar *key)
112 {
113     S3Store *store = (S3Store *)s;
114
115     struct get_info info;
116     info.buf = (char *)g_malloc0(BLUESKY_BLOCK_SIZE);
117     info.offset = 0;
118
119     struct S3GetObjectHandler handler;
120     handler.responseHandler.propertiesCallback = s3store_properties_callback;
121     handler.responseHandler.completeCallback = s3store_response_callback;
122     handler.getObjectDataCallback = s3store_get_handler;
123
124     g_print("Starting fetch of %s from S3...\n", key);
125     S3_get_object(&store->bucket, key, NULL, 0, 0, NULL,
126                   &handler, &info);
127
128     BlueSkyRCStr *raw, *decrypted;
129     raw = bluesky_string_new(info.buf, BLUESKY_BLOCK_SIZE);
130     decrypted = bluesky_crypt_decrypt(raw, store->encryption_key);
131     bluesky_string_unref(raw);
132     return decrypted;
133 }
134
135 static void s3store_put(gpointer s, const gchar *key, BlueSkyRCStr *val)
136 {
137     S3Store *store = (S3Store *)s;
138
139     S3Op *op = g_new(S3Op, 1);
140     op->op = S3_PUT;
141     op->key = g_strdup(key);
142     bluesky_string_ref(val);
143     op->data = val;
144
145     g_thread_pool_push(store->thread_pool, op, NULL);
146 }
147
148 static void s3store_task(gpointer o, gpointer s)
149 {
150     S3Store *store = (S3Store *)s;
151     S3Op *op = (S3Op *)o;
152
153     g_print("Start task [key=%s]...\n", op->key);
154
155     if (op->op == S3_PUT) {
156         BlueSkyRCStr *encrypted = bluesky_crypt_encrypt(op->data,
157                                                         store->encryption_key);
158
159         struct put_info info;
160         info.val = encrypted;
161         info.offset = 0;
162
163         struct S3PutObjectHandler handler;
164         handler.responseHandler.propertiesCallback
165             = s3store_properties_callback;
166         handler.responseHandler.completeCallback = s3store_response_callback;
167         handler.putObjectDataCallback = s3store_put_handler;
168
169         g_print("Starting store of %s to S3 at %ld...\n",
170                 op->key, bluesky_now_hires());
171         S3_put_object(&store->bucket, op->key, encrypted->len, NULL, NULL,
172                       &handler, &info);
173
174         bluesky_string_unref(encrypted);
175     }
176
177     bluesky_string_unref(op->data);
178     g_free(op->key);
179     g_free(op);
180
181     g_print("Finish task...\n");
182 }
183
184 static BlueSkyStoreImplementation store_impl = {
185     .create = s3store_new,
186     .destroy = s3store_destroy,
187     .get = s3store_get,
188     .put = s3store_put,
189 };
190
191 void bluesky_store_init_s3(void)
192 {
193     S3_initialize(NULL, S3_INIT_ALL);
194     bluesky_store_register(&store_impl, "s3");
195 }