diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-03-05 11:16:12 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-03-05 14:03:55 +0100 |
commit | 31293c64a323eb59fd8e81cd44bb33768a43e0c0 (patch) | |
tree | 28d40496f0d7a006561be6424e05ea2eae0627c9 | |
parent | 6f118189230da5764d8f8dd7c234a43298b6115d (diff) | |
download | samba-31293c64a323eb59fd8e81cd44bb33768a43e0c0.tar.gz samba-31293c64a323eb59fd8e81cd44bb33768a43e0c0.tar.bz2 samba-31293c64a323eb59fd8e81cd44bb33768a43e0c0.zip |
s3:winbindd: add DEBUG(10,...) for the end of each top level
That will hopefully make debugging a bit easier (at least for me).
metze
-rw-r--r-- | source3/winbindd/winbindd.c | 30 | ||||
-rw-r--r-- | source3/winbindd/winbindd.h | 1 |
2 files changed, 25 insertions, 6 deletions
diff --git a/source3/winbindd/winbindd.c b/source3/winbindd/winbindd.c index e4df27b45e..411f079137 100644 --- a/source3/winbindd/winbindd.c +++ b/source3/winbindd/winbindd.c @@ -593,6 +593,9 @@ static void process_request(struct winbindd_cli_state *state) /* Remember who asked us. */ state->pid = state->request->pid; + state->cmd_name = "unknown request"; + state->recv_fn = NULL; + /* Process command */ for (atable = async_nonpriv_table; atable->send_req; atable += 1) { @@ -613,8 +616,11 @@ static void process_request(struct winbindd_cli_state *state) if (atable->send_req != NULL) { struct tevent_req *req; - DEBUG(10, ("process_request: Handling async request %s\n", - atable->cmd_name)); + state->cmd_name = atable->cmd_name; + state->recv_fn = atable->recv_req; + + DEBUG(10, ("process_request: Handling async request %d:%s\n", + (int)state->pid, state->cmd_name)); req = atable->send_req(state->mem_ctx, winbind_event_context(), state, state->request); @@ -625,7 +631,6 @@ static void process_request(struct winbindd_cli_state *state) return; } tevent_req_set_callback(req, wb_request_done, state); - state->recv_fn = atable->recv_req; return; } @@ -643,6 +648,7 @@ static void process_request(struct winbindd_cli_state *state) if (state->request->cmd == table->cmd) { DEBUG(10,("process_request: request fn %s\n", table->winbindd_cmd_name )); + state->cmd_name = table->winbindd_cmd_name; table->fn(state); break; } @@ -663,6 +669,8 @@ static void wb_request_done(struct tevent_req *req) state->response = talloc_zero(state, struct winbindd_response); if (state->response == NULL) { + DEBUG(0, ("wb_request_done[%d:%s]: talloc_zero failed - removing client\n", + (int)state->pid, state->cmd_name)); remove_client(state); return; } @@ -671,8 +679,11 @@ static void wb_request_done(struct tevent_req *req) status = state->recv_fn(req, state->response); TALLOC_FREE(req); + + DEBUG(10,("wb_request_done[%d:%s]: %s\n", + (int)state->pid, state->cmd_name, nt_errstr(status))); + if (!NT_STATUS_IS_OK(status)) { - DEBUG(10, ("returning %s\n", nt_errstr(status))); request_error(state); return; } @@ -704,6 +715,8 @@ static void request_finished(struct winbindd_cli_state *state) state->out_queue, state->sock, state->response); if (req == NULL) { + DEBUG(10,("request_finished[%d:%s]: wb_resp_write_send() failed\n", + (int)state->pid, state->cmd_name)); remove_client(state); return; } @@ -722,14 +735,19 @@ static void winbind_client_response_written(struct tevent_req *req) if (ret == -1) { close(state->sock); state->sock = -1; - DEBUG(2, ("Could not write response to client: %s\n", - strerror(err))); + DEBUG(2, ("Could not write response[%d:%s] to client: %s\n", + (int)state->pid, state->cmd_name, strerror(err))); remove_client(state); return; } + DEBUG(10,("winbind_client_response_written[%d:%s]: deliverd response to client\n", + (int)state->pid, state->cmd_name)); + TALLOC_FREE(state->mem_ctx); state->response = NULL; + state->cmd_name = "no request"; + state->recv_fn = NULL; req = wb_req_read_send(state, winbind_event_context(), state->sock, WINBINDD_MAX_EXTRA_DATA); diff --git a/source3/winbindd/winbindd.h b/source3/winbindd/winbindd.h index ea791234fb..f1815ac870 100644 --- a/source3/winbindd/winbindd.h +++ b/source3/winbindd/winbindd.h @@ -56,6 +56,7 @@ struct winbindd_cli_state { bool privileged; /* Is the client 'privileged' */ TALLOC_CTX *mem_ctx; /* memory per request */ + const char *cmd_name; NTSTATUS (*recv_fn)(struct tevent_req *req, struct winbindd_response *presp); struct winbindd_request *request; /* Request from client */ |