Chromium Code Reviews| Index: src/trusted/service_runtime/nacl_secure_service.c |
| diff --git a/src/trusted/service_runtime/nacl_secure_service.c b/src/trusted/service_runtime/nacl_secure_service.c |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c97b705492db243371c59f4262015f6e0781b311 |
| --- /dev/null |
| +++ b/src/trusted/service_runtime/nacl_secure_service.c |
| @@ -0,0 +1,436 @@ |
| +/* |
| + * Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| + * Use of this source code is governed by a BSD-style license that can be |
| + * found in the LICENSE file. |
| + */ |
| + |
| +#include "native_client/src/trusted/service_runtime/nacl_secure_service.h" |
| + |
| +#include "native_client/src/shared/platform/nacl_exit.h" |
| +#include "native_client/src/shared/platform/nacl_log.h" |
| +#include "native_client/src/shared/platform/nacl_sync.h" |
| +#include "native_client/src/shared/platform/nacl_sync_checked.h" |
| +#include "native_client/src/shared/srpc/nacl_srpc.h" |
| + |
| +#include "native_client/src/trusted/fault_injection/fault_injection.h" |
| +#include "native_client/src/trusted/simple_service/nacl_simple_service.h" |
| +#include "native_client/src/trusted/service_runtime/sel_ldr.h" |
| + |
| + |
| +int NaClSecureThreadIfFactoryFn( |
| + void *factory_data, |
| + NaClThreadIfStartFunction fn_ptr, |
| + void *thread_data, |
| + size_t thread_stack_size, |
| + struct NaClThreadInterface **out_new_thread); |
| + |
| +int NaClSecureServiceCtor(struct NaClSecureService *self, |
| + struct NaClSrpcHandlerDesc const *srpc_handlers, |
| + struct NaClApp *nap, |
| + struct NaClDesc *service_port, |
| + struct NaClDesc *sock_addr) { |
| + NaClLog(4, |
| + "Entered NaClSecureServiceCtor: self 0x%"NACL_PRIxPTR"\n", |
| + (uintptr_t) self); |
| + if (NACL_FI_ERROR_COND( |
| + "NaClSecureServiceCtor__NaClSimpleServiceWithSocketCtor", |
| + !NaClSimpleServiceWithSocketCtor( |
| + &self->base, |
| + srpc_handlers, |
| + NaClSecureThreadIfFactoryFn, |
| + (void *) self, |
| + service_port, |
| + sock_addr))) { |
| + goto done; |
| + } |
| + if (!NaClMutexCtor(&self->mu)) { |
| + NaClLog(4, "NaClMutexCtor failed\n"); |
| + goto failure_mutex_ctor; |
| + } |
| + self->nap = nap; |
| + self->thread_count = 0; |
| + NACL_VTBL(NaClRefCount, self) = |
| + (struct NaClRefCountVtbl *) &kNaClSecureServiceVtbl; |
| + return 1; |
| + |
| + failure_mutex_ctor: |
| + (*NACL_VTBL(NaClRefCount, self)->Dtor)((struct NaClRefCount *) self); |
| + done: |
| + return 0; |
| +} |
| + |
| +void NaClSecureServiceDtor(struct NaClRefCount *vself) { |
| + struct NaClSecureService *self = (struct NaClSecureService *) vself; |
| + |
| + if (0 != self->thread_count) { |
| + NaClLog(LOG_FATAL, |
| + "SecureService dtor when thread count is nonzero\n"); |
| + } |
| + NaClMutexDtor(&self->mu); |
| + |
| + NACL_VTBL(NaClRefCount, self) = (struct NaClRefCountVtbl const *) |
| + &kNaClSimpleServiceVtbl; |
| + (*NACL_VTBL(NaClRefCount, self)->Dtor)(vself); |
| +} |
| + |
| +int NaClSecureServiceConnectionFactory( |
| + struct NaClSimpleService *vself, |
| + struct NaClDesc *conn, |
| + struct NaClSimpleServiceConnection **out) { |
| + struct NaClSecureService *self = |
| + (struct NaClSecureService *) vself; |
| + |
| + /* our instance_data is not connection specific */ |
| + return NaClSimpleServiceConnectionFactoryWithInstanceData( |
| + vself, conn, (void *) self->nap, out); |
| +} |
| + |
| +static void NaClSecureServiceThreadCountIncr( |
| + struct NaClSecureService *self) { |
| + NaClLog(5, "NaClSecureServiceThreadCountIncr\n"); |
| + NaClXMutexLock(&self->mu); |
| + if (0 == ++self->thread_count) { |
| + NaClLog(LOG_FATAL, |
| + "NaClSecureServiceThreadCountIncr: " |
| + "thread count overflow!\n"); |
| + } |
| + NaClXMutexUnlock(&self->mu); |
| +} |
| + |
| +static void NaClSecureServiceThreadCountDecr( |
| + struct NaClSecureService *self) { |
| + NaClLog(5, "NaClSecureServiceThreadCountDecr\n"); |
| + NaClXMutexLock(&self->mu); |
| + if (0 == self->thread_count) { |
| + NaClLog(LOG_FATAL, |
| + "NaClSecureServiceThreadCountDecr: " |
| + "decrementing thread count when count is zero\n"); |
| + } |
| + if (0 == --self->thread_count) { |
| + NaClLog(4, "NaClSecureServiceThread: channel closed, exiting.\n"); |
| + NaClExit(0); |
| + } |
| + NaClXMutexUnlock(&self->mu); |
| +} |
| + |
| +struct NaClSecureThreadInterface { |
| + struct NaClThreadInterface base NACL_IS_REFCOUNT_SUBCLASS; |
| + struct NaClSecureService *secure_service; |
| +}; |
| + |
| +extern struct NaClThreadInterfaceVtbl |
| + const kNaClSecureThreadInterfaceVtbl; /* fwd */ |
| + |
| +int NaClReverseThreadIfCtor_protected( |
| + struct NaClSecureThreadInterface *self, |
| + void *factory_data, |
| + NaClThreadIfStartFunction fn_ptr, |
| + void *thread_data, |
| + size_t thread_stack_size) { |
| + struct NaClSecureService *service = (struct NaClSecureService *) factory_data; |
| + |
| + NaClLog(3, "Entered NaClSecureThreadIfCtor_protected\n"); |
| + if (!NaClThreadInterfaceCtor_protected( |
| + (struct NaClThreadInterface *) self, |
| + NaClSecureThreadIfFactoryFn, |
| + NaClRefCountRef((struct NaClRefCount *) service), |
| + fn_ptr, |
| + thread_data, |
| + thread_stack_size)) { |
| + NaClLog(4, "NaClThreadInterfaceCtor_protected failed\n"); |
| + NaClRefCountUnref((struct NaClRefCount *) service); |
| + return 0; |
| + } |
| + |
| + self->secure_service = service; |
| + NaClSecureServiceThreadCountIncr(service); |
| + |
| + NACL_VTBL(NaClRefCount, self) = |
| + (struct NaClRefCountVtbl *) &kNaClSecureThreadInterfaceVtbl; |
| + |
| + NaClLog(3, "Leaving NaClSecureThreadIfCtor_protected\n"); |
| + return 1; |
| +} |
| + |
| +int NaClSecureThreadIfFactoryFn( |
| + void *factory_data, |
| + NaClThreadIfStartFunction fn_ptr, |
| + void *thread_data, |
| + size_t thread_stack_size, |
| + struct NaClThreadInterface **out_new_thread) { |
| + struct NaClSecureThreadInterface *new_thread; |
| + int rv = 1; |
|
bsy
2012/09/26 18:01:44
indent. either line up, or one space after type s
Petr Hosek
2012/09/26 18:49:34
Fixed.
|
| + |
| + NaClLog(3, "Entered NaClSecureThreadIfFactoryFn\n"); |
| + new_thread = (struct NaClSecureThreadInterface *) |
| + malloc(sizeof *new_thread); |
| + if (NULL == new_thread) { |
| + rv = 0; |
| + goto cleanup; |
| + } |
| + |
| + if (!(rv = |
| + NaClReverseThreadIfCtor_protected(new_thread, |
| + factory_data, |
| + fn_ptr, |
| + thread_data, |
| + thread_stack_size))) { |
| + goto cleanup; |
| + } |
| + |
| + *out_new_thread = (struct NaClThreadInterface *) new_thread; |
| + new_thread = NULL; |
| + |
| + cleanup: |
| + free(new_thread); |
| + NaClLog(3, |
| + "Leaving NaClSecureThreadIfFactoryFn, rv %d\n", |
| + rv); |
| + return rv; |
| +} |
| + |
| +void NaClSecureThreadIfDtor(struct NaClRefCount *vself) { |
| + struct NaClSecureThreadInterface *self = |
| + (struct NaClSecureThreadInterface *) vself; |
| + |
| + NaClRefCountUnref((struct NaClRefCount *) self->secure_service); |
| + self->secure_service = NULL; |
| + NACL_VTBL(NaClRefCount, self) = &kNaClRefCountVtbl; |
| + (*NACL_VTBL(NaClRefCount, self)->Dtor)(vself); |
| +} |
| + |
| +void NaClSecureThreadIfLaunchCallback(struct NaClThreadInterface *self) { |
| + NaClLog(4, |
| + ("NaClSecureThreadIfLaunchCallback: thread 0x%"NACL_PRIxPTR |
| + " is launching\n"), |
| + (uintptr_t) self); |
| +} |
| + |
| +void NaClSecureThreadIfExit(struct NaClThreadInterface *vself, |
| + void *exit_code) { |
| + struct NaClSecureThreadInterface *self = |
| + (struct NaClSecureThreadInterface *) vself; |
| + NaClLog(4, |
| + ("NaClSecureThreadIfExit: thread 0x%"NACL_PRIxPTR |
| + " is exiting\n"), |
| + (uintptr_t) vself); |
| + |
| + NaClSecureServiceThreadCountDecr(self->secure_service); |
| + NaClRefCountUnref((struct NaClRefCount *) self); |
| + NaClThreadExit((int)(uintptr_t) exit_code); |
| +} |
| + |
| +struct NaClThreadInterfaceVtbl const kNaClSecureThreadInterfaceVtbl = { |
| + { |
| + NaClSecureThreadIfDtor, |
| + }, |
| + NaClThreadInterfaceStartThread, |
| + NaClSecureThreadIfLaunchCallback, |
| + NaClSecureThreadIfExit, |
| +}; |
| + |
| +struct NaClSimpleServiceVtbl const kNaClSecureServiceVtbl = { |
| + { |
| + NaClSecureServiceDtor, |
| + }, |
| + NaClSecureServiceConnectionFactory, |
| + NaClSimpleServiceAcceptConnection, |
| + NaClSimpleServiceAcceptAndSpawnHandler, |
| + NaClSimpleServiceRpcHandler, |
| +}; |
| + |
| +struct NaClSecureRevClientConnHandler { |
| + struct NaClSecureRevClientConnHandler *next; |
| + |
| + /* used by NaClSimpleRevServiceClient's ClientCallback fn */ |
| + void (*handler)( |
| + void *state, |
| + struct NaClThreadInterface *tif, |
| + struct NaClDesc *conn); |
| + void *state; |
| +}; |
| + |
| +static void NaClSecureReverseClientInternalCallback( |
| + void *state, |
| + struct NaClThreadInterface *tif, |
| + struct NaClDesc *conn) { |
| + struct NaClSecureReverseClient *self = |
| + (struct NaClSecureReverseClient *) state; |
| + struct NaClSecureRevClientConnHandler *hand_ptr; |
| + |
| + UNREFERENCED_PARAMETER(tif); |
|
bsy
2012/09/26 18:01:44
this is wrong, since tif is used in the hand_ptr->
Petr Hosek
2012/09/26 18:49:34
Removed.
|
| + NaClLog(4, "Entered NaClSecureReverseClientInternalCallback\n"); |
| + hand_ptr = (*NACL_VTBL(NaClSecureReverseClient, self)->RemoveHandler)(self); |
| + NaClLog(4, " got callback object %"NACL_PRIxPTR"\n", (uintptr_t) hand_ptr); |
| + NaClLog(4, |
| + " callback:0x%"NACL_PRIxPTR"(0x%"NACL_PRIxPTR",0x%"NACL_PRIxPTR")\n", |
| + (uintptr_t) hand_ptr->handler, |
| + (uintptr_t) hand_ptr->state, |
| + (uintptr_t) conn); |
| + (*hand_ptr->handler)(hand_ptr->state, tif, conn); |
| + NaClLog(4, "NaClSecureReverseClientInternalCallback: freeing memory\n"); |
| + free(hand_ptr); |
| + NaClLog(4, "Leaving NaClSecureReverseClientInternalCallback\n"); |
| +} |
| + |
| +/* |
| + * Require an initial connection handler in the Ctor, so that it's |
| + * obvious that a reverse client needs to accept an IMC connection |
| + * from the server to get things bootstrapped. |
| + */ |
| +int NaClSecureReverseClientCtor( |
| + struct NaClSecureReverseClient *self, |
| + void (*client_callback)( |
| + void *, struct NaClThreadInterface*, struct NaClDesc *), |
| + void *state, |
| + struct NaClApp *nap) { |
| + NaClLog(4, |
| + ("Entered NaClSecureReverseClientCtor, self 0x%"NACL_PRIxPTR"," |
| + " nap 0x%"NACL_PRIxPTR"\n"), |
| + (uintptr_t) self, |
| + (uintptr_t) nap); |
| + if (!NaClSimpleRevClientCtor(&self->base, |
| + NaClSecureReverseClientInternalCallback, |
| + (void *) self, |
| + NaClThreadInterfaceThreadFactory, |
| + (void *) NULL)) { |
| + goto failure_simple_ctor; |
| + } |
| + NaClLog(4, "NaClSecureReverseClientCtor: Mutex\n"); |
| + if (!NaClMutexCtor(&self->mu)) { |
| + goto failure_mutex_ctor; |
| + } |
| + self->nap = nap; |
| + self->queue_head = (struct NaClSecureRevClientConnHandler *) NULL; |
| + self->queue_insert = &self->queue_head; |
| + |
| + NACL_VTBL(NaClRefCount, self) = |
| + (struct NaClRefCountVtbl *) &kNaClSecureReverseClientVtbl; |
| + |
| + NaClLog(4, "NaClSecureReverseClientCtor: InsertHandler\n"); |
| + if (!(*NACL_VTBL(NaClSecureReverseClient, self)-> |
| + InsertHandler)(self, client_callback, state)) { |
| + goto failure_handler_insert; |
| + } |
| + |
| + NaClLog(4, "Leaving NaClSecureReverseClientCtor\n"); |
| + return 1; |
| + |
| + failure_handler_insert: |
| + NaClLog(4, "NaClSecureReverseClientCtor: InsertHandler failed\n"); |
| + NACL_VTBL(NaClRefCount, self) = |
| + (struct NaClRefCountVtbl *) &kNaClSimpleRevClientVtbl; |
| + |
| + self->nap = NULL; |
| + self->queue_insert = (struct NaClSecureRevClientConnHandler **) NULL; |
| + NaClMutexDtor(&self->mu); |
| + |
| + failure_mutex_ctor: |
| + NaClLog(4, "NaClSecureReverseClientCtor: Mutex failed\n"); |
| + (*NACL_VTBL(NaClRefCount, self)->Dtor)((struct NaClRefCount *) self); |
| + failure_simple_ctor: |
| + NaClLog(4, "Leaving NaClSecureReverseClientCtor\n"); |
| + return 0; |
| +} |
| + |
| +void NaClSecureReverseClientDtor(struct NaClRefCount *vself) { |
| + struct NaClSecureReverseClient *self = |
| + (struct NaClSecureReverseClient *) vself; |
| + |
| + struct NaClSecureRevClientConnHandler *entry; |
| + struct NaClSecureRevClientConnHandler *next; |
| + |
| + for (entry = self->queue_head; NULL != entry; entry = next) { |
| + next = entry->next; |
| + free(entry); |
| + } |
| + NaClMutexDtor(&self->mu); |
| + |
| + NACL_VTBL(NaClRefCount, self) = (struct NaClRefCountVtbl const *) |
| + &kNaClSimpleRevClientVtbl; |
| + (*NACL_VTBL(NaClRefCount, self)->Dtor)(vself); |
| +} |
| + |
| +/* |
| + * Caller must set up handler before issuing connection request RPC on |
| + * nap->reverse_channel, since otherwise the connection handler queue |
| + * may be empty and the connect code would abort. Because the connect |
| + * doesn't wait for a handler, we don't need a condvar. |
| + * |
| + * We do not need to serialize on the handlers, since the |
| + * RPC-server/IMC-client implementation should not distinguish one |
| + * connection from another: it is okay for two handlers to be |
| + * inserted, and two connection request RPCs to be preformed |
| + * (sequentially, since they are over a single channel), and have the |
| + * server side spawn threads that asynchronously connect twice, in the |
| + * "incorrect" order, etc. |
| + */ |
| +int NaClSecureReverseClientInsertHandler( |
| + struct NaClSecureReverseClient *self, |
|
bsy
2012/09/26 18:01:44
indent. either line up or use single-space after
Petr Hosek
2012/09/26 18:49:34
Fixed.
|
| + void (*handler)( |
| + void *handler_state, |
| + struct NaClThreadInterface *thread_if, |
| + struct NaClDesc *new_conn), |
| + void *state) { |
| + struct NaClSecureRevClientConnHandler *entry; |
| + int retval = 0; /* fail */ |
| + |
| + NaClLog(4, |
| + ("NaClSecureReverseClientInsertHandler: " |
| + "handler 0x%"NACL_PRIxPTR", state 0x%"NACL_PRIxPTR"\n"), |
| + (uintptr_t) handler, (uintptr_t) state); |
| + |
| + NaClXMutexLock(&self->mu); |
| + |
| + entry = (struct NaClSecureRevClientConnHandler *) malloc(sizeof *entry); |
| + if (NULL == entry) { |
| + goto cleanup; |
| + } |
| + entry->handler = handler; |
| + entry->state = state; |
| + entry->next = (struct NaClSecureRevClientConnHandler *) NULL; |
| + *self->queue_insert = entry; |
| + self->queue_insert = &entry->next; |
| + retval = 1; |
| + |
| + cleanup: |
| + NaClXMutexUnlock(&self->mu); |
| + return retval; |
| +} |
| + |
| +struct NaClSecureRevClientConnHandler *NaClSecureReverseClientRemoveHandler( |
| + struct NaClSecureReverseClient *self) { |
| + struct NaClSecureRevClientConnHandler *head; |
| + |
| + NaClLog(4, "Entered NaClSecureReverseClientRemoveHandler, acquiring lock\n"); |
| + NaClXMutexLock(&self->mu); |
| + NaClLog(4, "NaClSecureReverseClientRemoveHandler, got lock\n"); |
| + head = self->queue_head; |
| + if (NULL == head) { |
| + NaClLog(LOG_FATAL, |
| + "NaClSecureReverseClientRemoveHandler: empty handler queue\n"); |
| + } |
| + if (NULL == (self->queue_head = head->next)) { |
| + NaClLog(4, "NaClSecureReverseClientRemoveHandler, last elt patch up\n"); |
| + self->queue_insert = &self->queue_head; |
| + } |
| + NaClLog(4, "NaClSecureReverseClientRemoveHandler, unlocking\n"); |
| + NaClXMutexUnlock(&self->mu); |
| + |
| + head->next = NULL; |
| + NaClLog(4, |
| + ("Leaving NaClSecureReverseClientRemoveHandler:" |
| + " returning %"NACL_PRIxPTR"\n"), |
| + (uintptr_t) head); |
| + return head; |
| +} |
| + |
| +struct NaClSecureReverseClientVtbl const kNaClSecureReverseClientVtbl = { |
| + { |
| + { |
| + NaClSecureReverseClientDtor, |
| + }, |
| + }, |
| + NaClSecureReverseClientInsertHandler, |
| + NaClSecureReverseClientRemoveHandler, |
| +}; |