X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=tid%2Ftids.c;h=bcbd820cbce894e7505a2030aeb55c410f1a01a5;hb=1a106110e5e7f214ea60e7787d02c5565e7193f0;hp=2ec7dc1fcd749b7d43c71cf4f830f979749b1655;hpb=cdb5040af341d3523dd78d7dd1546094d2c5db6f;p=trust_router.git diff --git a/tid/tids.c b/tid/tids.c index 2ec7dc1..bcbd820 100644 --- a/tid/tids.c +++ b/tid/tids.c @@ -101,8 +101,8 @@ static int tids_handle_request(TIDS_INSTANCE *tids, TID_REQ *req, TID_RESP *resp (!(req->realm)) || (!(req->comm))) { tr_notice("tids_handle_request(): Not a valid TID Request."); - resp->result = TID_ERROR; - resp->err_msg = tr_new_name("Bad request format"); + tid_resp_set_result(resp, TID_ERROR); + tid_resp_set_err_msg(resp, tr_new_name("Bad request format")); return -1; } @@ -114,14 +114,13 @@ static int tids_handle_request(TIDS_INSTANCE *tids, TID_REQ *req, TID_RESP *resp if (0 > (rc = (*tids->req_handler)(tids, req, resp, tids->cookie))) { /* set-up an error response */ tr_debug("tids_handle_request: req_handler returned error."); - resp->result = TID_ERROR; - if (!resp->err_msg) /* Use msg set by handler, if any */ - resp->err_msg = tr_new_name("Internal processing error"); - } - else { + tid_resp_set_result(resp, TID_ERROR); + if (!tid_resp_get_err_msg(resp)) /* Use msg set by handler, if any */ + tid_resp_set_err_msg(resp, tr_new_name("Internal processing error")); + } else { /* set-up a success response */ tr_debug("tids_handle_request: req_handler returned success."); - resp->result = TID_SUCCESS; + tid_resp_set_result(resp, TID_SUCCESS); resp->err_msg = NULL; /* No error msg on successful return */ } @@ -256,41 +255,45 @@ int tids_send_response (TIDS_INSTANCE *tids, TID_REQ *req, TID_RESP *resp) * @param data pointer to a TIDS_INSTANCE * @return pointer to the response string or null to send no response */ -static char *tids_req_cb(TALLOC_CTX *mem_ctx, const char *req_str, void *data) +static TR_MSG *tids_req_cb(TALLOC_CTX *mem_ctx, TR_MSG *mreq, void *data) { + TALLOC_CTX *tmp_ctx = talloc_new(NULL); TIDS_INSTANCE *tids = talloc_get_type_abort(data, TIDS_INSTANCE); - TR_MSG *mreq = NULL; TID_REQ *req = NULL; TID_RESP *resp = NULL; - char *resp_str = NULL; + TR_MSG *resp_msg = NULL; /* this is the return value */ int rc = 0; - mreq = tr_msg_decode(req_str, strlen(req_str)); // allocates memory on success! - if (mreq == NULL) { - tr_debug("tids_req_cb: Error decoding request."); - return NULL; - } - /* If this isn't a TID Request, just drop it. */ if (mreq->msg_type != TID_REQUEST) { - tr_msg_free_decoded(mreq); tr_debug("tids_req_cb: Not a TID request, dropped."); - return NULL; + goto cleanup; } /* Get a handle on the request itself. Don't free req - it belongs to mreq */ req = tr_msg_get_req(mreq); - /* Allocate a response structure and populate common fields. The resp is in req's talloc context, - * which will be cleaned up when mreq is freed. */ - resp = tids_create_response(req, req); + /* Allocate a response message */ + resp_msg = talloc(tmp_ctx, TR_MSG); + if (resp_msg == NULL) { + /* We cannot create a response message, so all we can really do is emit + * an error message and return. */ + tr_crit("tids_req_cb: Error allocating response message."); + goto cleanup; + } + + /* Allocate a response structure and populate common fields. Put it in the + * response message's talloc context. */ + resp = tids_create_response(resp_msg, req); if (resp == NULL) { /* If we were unable to create a response, we cannot reply. Log an * error if we can, then drop the request. */ - tr_msg_free_decoded(mreq); tr_crit("tids_req_cb: Error creating response structure."); - return NULL; + resp_msg = NULL; /* the contents are in tmp_ctx, so they will still be cleaned up */ + goto cleanup; } + /* Now officially assign the response to the message. */ + tr_msg_set_resp(resp_msg, resp); /* Handle the request and fill in resp */ rc = tids_handle_request(tids, req, resp); @@ -299,17 +302,34 @@ static char *tids_req_cb(TALLOC_CTX *mem_ctx, const char *req_str, void *data) /* Fall through, to send the response, either way */ } - /* Convert the completed response into an encoded response */ - resp_str = tids_encode_response(mem_ctx, NULL); + /* put the response message in the caller's context */ + talloc_steal(mem_ctx, resp_msg); - /* Finished; free the request and return */ - tr_msg_free_decoded(mreq); // this frees req and resp, too - return resp_str; +cleanup: + talloc_free(tmp_ctx); + return resp_msg; +} + +static int tids_destructor(void *object) +{ + TIDS_INSTANCE *tids = talloc_get_type_abort(object, TIDS_INSTANCE); + if (tids->pids) + g_array_unref(tids->pids); + return 0; } TIDS_INSTANCE *tids_new(TALLOC_CTX *mem_ctx) { - return talloc_zero(mem_ctx, TIDS_INSTANCE); + TIDS_INSTANCE *tids = talloc_zero(mem_ctx, TIDS_INSTANCE); + if (tids) { + tids->pids = g_array_new(FALSE, FALSE, sizeof(pid_t)); + if (tids->pids == NULL) { + talloc_free(tids); + return NULL; + } + talloc_set_destructor((void *)tids, tids_destructor); + } + return tids; } /** @@ -320,8 +340,9 @@ TIDS_INSTANCE *tids_new(TALLOC_CTX *mem_ctx) */ TIDS_INSTANCE *tids_create(void) { - return talloc_zero(NULL, TIDS_INSTANCE); + return tids_new(NULL); } + /* Get a listener for tids requests, returns its socket fd. Accept * connections with tids_accept() */ nfds_t tids_get_listener(TIDS_INSTANCE *tids, @@ -395,16 +416,49 @@ int tids_accept(TIDS_INSTANCE *tids, int listen) ); close(conn); exit(0); /* exit to kill forked child process */ - } else { - close(conn); } - /* clean up any processes that have completed (TBD: move to main loop?) */ - while (waitpid(-1, 0, WNOHANG) > 0); + /* Only the parent process gets here */ + close(conn); /* connection belongs to the child */ + g_array_append_val(tids->pids, pid); /* remember the PID of our child process */ + + /* clean up any processes that have completed */ + tids_sweep_procs(tids); return 0; } +void tids_sweep_procs(TIDS_INSTANCE *tids) +{ + guint ii; + pid_t pid; + int status; + + /* loop backwards over the array so we can remove elements as we go */ + for (ii=tids->pids->len; ii > 0; ii--) { + /* ii-1 is the current index */ + pid = g_array_index(tids->pids, pid_t, ii-1); + if (waitpid(pid, &status, WNOHANG) > 0) { + /* the process exited */ + tr_debug("tids_sweep_procs: TID process %d terminated.", pid); + + g_array_remove_index_fast(tids->pids, ii-1); /* disturbs only indices >= ii-1 which we've already handled */ + if (WIFEXITED(status) && (WEXITSTATUS(status) == 0)) { + tr_debug("tids_sweep_procs: TID process succeeded"); + tids->req_count++; + } else { + tids->error_count++; + + if (WIFEXITED(status)) { + tr_debug("tids_sweep_procs: TID process %d exited with status %d", pid, WTERMSIG(status)); + } else if (WIFSIGNALED(status)) { + tr_debug("tids_sweep_procs: TID process %d terminated by signal %d", pid, WTERMSIG(status)); + } + } + } + } +} + /* Process tids requests forever. Should not return except on error. */ int tids_start (TIDS_INSTANCE *tids, TIDS_REQ_FUNC *req_handler,