X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-xreq.c;h=696bf9d4bc6cac692364a9b715122e599c91a3ac;hb=91b744a510bbf41526f0931df2320379bec87c38;hp=de0710de9badf0089ee9ac03e99afe23e041afa1;hpb=15d0dae1cd6ab982137a7c2848de9303a9c969f0;p=src%2Fapp-framework-binder.git diff --git a/src/afb-xreq.c b/src/afb-xreq.c index de0710de..696bf9d4 100644 --- a/src/afb-xreq.c +++ b/src/afb-xreq.c @@ -40,30 +40,33 @@ /******************************************************************************/ -static inline void xreq_addref(struct afb_xreq *xreq) +static void xreq_finalize(struct afb_xreq *xreq) +{ + if (!xreq->replied) + afb_xreq_fail(xreq, "error", "no reply"); + if (xreq->hookflags) + afb_hook_xreq_end(xreq); + if (xreq->caller) + afb_xreq_unhooked_unref(xreq->caller); + xreq->queryitf->unref(xreq); +} + +inline void afb_xreq_unhooked_addref(struct afb_xreq *xreq) { __atomic_add_fetch(&xreq->refcount, 1, __ATOMIC_RELAXED); } -static inline void xreq_unref(struct afb_xreq *xreq) +inline void afb_xreq_unhooked_unref(struct afb_xreq *xreq) { - if (!__atomic_sub_fetch(&xreq->refcount, 1, __ATOMIC_RELAXED)) { - if (!xreq->replied) - afb_xreq_fail(xreq, "error", "no reply"); - if (xreq->hookflags) - afb_hook_xreq_end(xreq); - xreq->queryitf->unref(xreq); - } + if (!__atomic_sub_fetch(&xreq->refcount, 1, __ATOMIC_RELAXED)) + xreq_finalize(xreq); } /******************************************************************************/ -extern const struct afb_req_itf xreq_itf; -extern const struct afb_req_itf xreq_hooked_itf; - static inline struct afb_req to_req(struct afb_xreq *xreq) { - return (struct afb_req){ .itf = xreq->hookflags ? &xreq_hooked_itf : &xreq_itf, .closure = xreq }; + return (struct afb_req){ .itf = xreq->itf, .closure = xreq }; } /******************************************************************************/ @@ -71,7 +74,6 @@ static inline struct afb_req to_req(struct afb_xreq *xreq) struct subcall { struct afb_xreq xreq; - struct afb_xreq *caller; void (*completion)(struct subcall*, int, struct json_object*); @@ -95,14 +97,14 @@ static int subcall_subscribe_cb(struct afb_xreq *xreq, struct afb_event event) { struct subcall *subcall = CONTAINER_OF_XREQ(struct subcall, xreq); - return afb_xreq_subscribe(subcall->caller, event); + return afb_xreq_subscribe(subcall->xreq.caller, event); } static int subcall_unsubscribe_cb(struct afb_xreq *xreq, struct afb_event event) { struct subcall *subcall = CONTAINER_OF_XREQ(struct subcall, xreq); - return afb_xreq_unsubscribe(subcall->caller, event); + return afb_xreq_unsubscribe(subcall->xreq.caller, event); } static void subcall_reply_cb(struct afb_xreq *xreq, int status, struct json_object *result) @@ -111,7 +113,7 @@ static void subcall_reply_cb(struct afb_xreq *xreq, int status, struct json_obje subcall->completion(subcall, status, result); json_object_put(result); - afb_xreq_unref(&subcall->xreq); + afb_xreq_unhooked_unref(&subcall->xreq); } static void subcall_destroy_cb(struct afb_xreq *xreq) @@ -120,7 +122,6 @@ static void subcall_destroy_cb(struct afb_xreq *xreq) json_object_put(subcall->xreq.json); afb_cred_unref(subcall->xreq.cred); - xreq_unref(subcall->caller); free(subcall); } @@ -161,8 +162,8 @@ static struct subcall *subcall_alloc( subcall->xreq.json = args; subcall->xreq.api = api; subcall->xreq.verb = verb; - subcall->caller = caller; - xreq_addref(caller); + subcall->xreq.caller = caller; + afb_xreq_unhooked_addref(caller); } return subcall; } @@ -175,18 +176,18 @@ static void subcall_on_reply(struct subcall *subcall, int status, struct json_ob static void subcall_req_on_reply(struct subcall *subcall, int status, struct json_object *result) { - subcall->callback2(subcall->closure, status, result, to_req(subcall->caller)); + subcall->callback2(subcall->closure, status, result, to_req(subcall->xreq.caller)); } static void subcall_hooked_on_reply(struct subcall *subcall, int status, struct json_object *result) { - afb_hook_xreq_subcall_result(subcall->caller, status, result); + afb_hook_xreq_subcall_result(subcall->xreq.caller, status, result); subcall_on_reply(subcall, status, result); } static void subcall_req_hooked_on_reply(struct subcall *subcall, int status, struct json_object *result) { - afb_hook_xreq_subcall_req_result(subcall->caller, status, result); + afb_hook_xreq_subcall_req_result(subcall->xreq.caller, status, result); subcall_req_on_reply(subcall, status, result); } @@ -206,13 +207,13 @@ static void subcall_reply_direct_cb(void *closure, int status, struct json_objec static void subcall_process(struct subcall *subcall, void (*completion)(struct subcall*, int, struct json_object*)) { subcall->completion = completion; - if (subcall->caller->queryitf->subcall) { - subcall->caller->queryitf->subcall( - subcall->caller, subcall->xreq.api, subcall->xreq.verb, + if (subcall->xreq.caller->queryitf->subcall) { + subcall->xreq.caller->queryitf->subcall( + subcall->xreq.caller, subcall->xreq.api, subcall->xreq.verb, subcall->xreq.json, subcall_reply_direct_cb, &subcall->xreq); } else { - afb_xreq_addref(&subcall->xreq); - afb_xreq_process(&subcall->xreq, subcall->caller->apiset); + afb_xreq_unhooked_addref(&subcall->xreq); + afb_xreq_process(&subcall->xreq, subcall->xreq.caller->apiset); } } @@ -277,14 +278,14 @@ static int subcallsync(struct subcall *subcall, struct json_object **result) { int rc; - afb_xreq_addref(&subcall->xreq); + afb_xreq_unhooked_addref(&subcall->xreq); rc = jobs_enter(NULL, 0, subcall_sync_enter, subcall); *result = subcall->result; if (rc < 0 || subcall->status < 0) { *result = *result ?: afb_msg_json_internal_error(); rc = -1; } - afb_xreq_unref(&subcall->xreq); + afb_xreq_unhooked_unref(&subcall->xreq); return rc; } @@ -387,13 +388,13 @@ static void xreq_context_set_cb(void *closure, void *value, void (*free_value)(v static void xreq_addref_cb(void *closure) { struct afb_xreq *xreq = closure; - xreq_addref(xreq); + afb_xreq_unhooked_addref(xreq); } static void xreq_unref_cb(void *closure) { struct afb_xreq *xreq = closure; - xreq_unref(xreq); + afb_xreq_unhooked_unref(xreq); } static void xreq_session_close_cb(void *closure) @@ -526,6 +527,12 @@ static char *xreq_get_application_id_cb(void*closure) return xreq->cred && xreq->cred->id ? strdup(xreq->cred->id) : NULL; } +static void *xreq_context_make_cb(void *closure, int replace, void *(*create_value)(void*), void (*free_value)(void*), void *create_closure) +{ + struct afb_xreq *xreq = closure; + return afb_context_make(&xreq->context, replace, create_value, free_value, create_closure); +} + /******************************************************************************/ static struct json_object *xreq_hooked_json_cb(void *closure) @@ -695,6 +702,13 @@ static char *xreq_hooked_get_application_id_cb(void*closure) return afb_hook_xreq_get_application_id(xreq, r); } +static void *xreq_hooked_context_make_cb(void *closure, int replace, void *(*create_value)(void*), void (*free_value)(void*), void *create_closure) +{ + struct afb_xreq *xreq = closure; + void *result = xreq_context_make_cb(closure, replace, create_value, free_value, create_closure); + return afb_hook_xreq_context_make(xreq, replace, create_value, free_value, create_closure, result); +} + /******************************************************************************/ const struct afb_req_itf xreq_itf = { @@ -718,7 +732,8 @@ const struct afb_req_itf xreq_itf = { .store = xreq_store_cb, .subcall_req = xreq_subcall_req_cb, .has_permission = xreq_has_permission_cb, - .get_application_id = xreq_get_application_id_cb + .get_application_id = xreq_get_application_id_cb, + .context_make = xreq_context_make_cb }; const struct afb_req_itf xreq_hooked_itf = { @@ -742,7 +757,8 @@ const struct afb_req_itf xreq_hooked_itf = { .store = xreq_hooked_store_cb, .subcall_req = xreq_hooked_subcall_req_cb, .has_permission = xreq_hooked_has_permission_cb, - .get_application_id = xreq_hooked_get_application_id_cb + .get_application_id = xreq_hooked_get_application_id_cb, + .context_make = xreq_hooked_context_make_cb }; /******************************************************************************/ @@ -767,14 +783,11 @@ void afb_xreq_success(struct afb_xreq *xreq, struct json_object *obj, const char void afb_xreq_success_f(struct afb_xreq *xreq, struct json_object *obj, const char *info, ...) { - char *message; va_list args; + va_start(args, info); - if (info == NULL || vasprintf(&message, info, args) < 0) - message = NULL; + afb_req_success_v(to_req(xreq), obj, info, args); va_end(args); - afb_xreq_success(xreq, obj, message); - free(message); } void afb_xreq_fail(struct afb_xreq *xreq, const char *status, const char *info) @@ -784,14 +797,12 @@ void afb_xreq_fail(struct afb_xreq *xreq, const char *status, const char *info) void afb_xreq_fail_f(struct afb_xreq *xreq, const char *status, const char *info, ...) { - char *message; va_list args; + va_start(args, info); - if (info == NULL || vasprintf(&message, info, args) < 0) - message = NULL; + afb_req_fail_v(to_req(xreq), status, info, args); va_end(args); - afb_xreq_fail(xreq, status, message); - free(message); + } const char *afb_xreq_raw(struct afb_xreq *xreq, size_t *size) @@ -932,6 +943,7 @@ void afb_xreq_call_verb_v2(struct afb_xreq *xreq, const struct afb_verb_v2 *verb void afb_xreq_init(struct afb_xreq *xreq, const struct afb_xreq_query_itf *queryitf) { memset(xreq, 0, sizeof *xreq); + xreq->itf = &xreq_hooked_itf; /* hook by default */ xreq->refcount = 1; xreq->queryitf = queryitf; } @@ -946,55 +958,102 @@ void afb_xreq_fail_unknown_verb(struct afb_xreq *xreq) afb_xreq_fail_f(xreq, "unknown-verb", "verb %s unknown within api %s", xreq->verb, xreq->api); } -static void process_sync(struct afb_xreq *xreq) +static void init_hooking(struct afb_xreq *xreq) { - const struct afb_api *api; - - /* init hooking */ afb_hook_init_xreq(xreq); if (xreq->hookflags) afb_hook_xreq_begin(xreq); - - /* search the api */ - api = (const struct afb_api*)xreq->context.api_key; - if (api) - api->itf->call(api->closure, xreq); - else { - api = afb_apiset_lookup_started(xreq->apiset, xreq->api, 1); - if (errno == ENOENT) - afb_xreq_fail_f(xreq, "unknown-api", "api %s not found", xreq->api); - else - afb_xreq_fail_f(xreq, "bad-api-state", "api %s not started correctly: %m", xreq->api); - } + else + xreq->itf = &xreq_itf; /* unhook the interface */ } +/** + * job callback for asynchronous and secured processing of the request. + */ static void process_async(int signum, void *arg) { struct afb_xreq *xreq = arg; + const struct afb_api *api; if (signum != 0) { + /* emit the error (assumes that hooking is initialised) */ afb_xreq_fail_f(xreq, "aborted", "signal %s(%d) caught", strsignal(signum), signum); } else { - process_sync(xreq); + /* init hooking */ + init_hooking(xreq); + /* invoke api call method to process the reqiest */ + api = (const struct afb_api*)xreq->context.api_key; + api->itf->call(api->closure, xreq); } - xreq_unref(xreq); + /* release the request */ + afb_xreq_unhooked_unref(xreq); } +/** + * Early request failure of the request 'xreq' with, as usual, 'status' and 'info' + * The early failure occurs only in function 'afb_xreq_process' where normally, + * the hooking is not initialised. So this "early" failure takes care to initialise + * the hooking in first. + */ +static void early_failure(struct afb_xreq *xreq, const char *status, const char *info, ...) +{ + va_list args; + + /* init hooking */ + init_hooking(xreq); + + /* send error */ + va_start(args, info); + afb_req_fail_v(to_req(xreq), status, info, args); + va_end(args); +} + +/** + * Enqueue a job for processing the request 'xreq' using the given 'apiset'. + * Errors are reported as request failures. + */ void afb_xreq_process(struct afb_xreq *xreq, struct afb_apiset *apiset) { const struct afb_api *api; + struct afb_xreq *caller; + /* lookup at the api */ xreq->apiset = apiset; api = afb_apiset_lookup_started(apiset, xreq->api, 1); - xreq->context.api_key = (void*)api; + if (!api) { + if (errno == ENOENT) + early_failure(xreq, "unknown-api", "api %s not found (for verb %s)", xreq->api, xreq->verb); + else + early_failure(xreq, "bad-api-state", "api %s not started correctly: %m", xreq->api); + goto end; + } + xreq->context.api_key = api; + + /* check self locking */ + if (!api->noconcurrency) + api = NULL; + else { + caller = xreq->caller; + while (caller) { + if (caller->context.api_key == api) { + /* noconcurrency lock detected */ + ERROR("self-lock detected in call stack for API %s", xreq->api); + early_failure(xreq, "self-locked", "recursive self lock, API %s", xreq->api); + goto end; + } + caller = caller->caller; + } + } - xreq_addref(xreq); - if (jobs_queue(api && api->noconcurrency ? (void*)api : NULL, afb_apiset_timeout_get(apiset), process_async, xreq) < 0) { + /* queue the request job */ + afb_xreq_unhooked_addref(xreq); + if (jobs_queue(api, afb_apiset_timeout_get(apiset), process_async, xreq) < 0) { /* TODO: allows or not to proccess it directly as when no threading? (see above) */ ERROR("can't process job with threads: %m"); - afb_xreq_fail_f(xreq, "cancelled", "not able to create a job for the task"); - xreq_unref(xreq); + early_failure(xreq, "cancelled", "not able to create a job for the task"); + afb_xreq_unhooked_unref(xreq); } - xreq_unref(xreq); +end: + afb_xreq_unhooked_unref(xreq); }