Add async wb_ping
[Samba.git] / source3 / winbindd / winbindd.c
blobca2377131de8312341881f55e00f32f1b118abc6
1 /*
2 Unix SMB/CIFS implementation.
4 Winbind daemon for ntdom nss module
6 Copyright (C) by Tim Potter 2000-2002
7 Copyright (C) Andrew Tridgell 2002
8 Copyright (C) Jelmer Vernooij 2003
9 Copyright (C) Volker Lendecke 2004
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include "includes.h"
26 #include "winbindd.h"
27 #include "../../nsswitch/libwbclient/wbc_async.h"
29 #undef DBGC_CLASS
30 #define DBGC_CLASS DBGC_WINBIND
32 static bool opt_nocache = False;
33 static bool interactive = False;
35 extern bool override_logfile;
37 struct event_context *winbind_event_context(void)
39 static struct event_context *ctx;
41 if (!ctx && !(ctx = event_context_init(NULL))) {
42 smb_panic("Could not init winbind event context");
44 return ctx;
47 struct messaging_context *winbind_messaging_context(void)
49 static struct messaging_context *ctx;
51 if (ctx == NULL) {
52 ctx = messaging_init(NULL, server_id_self(),
53 winbind_event_context());
55 if (ctx == NULL) {
56 DEBUG(0, ("Could not init winbind messaging context.\n"));
58 return ctx;
61 /* Reload configuration */
63 static bool reload_services_file(const char *lfile)
65 bool ret;
67 if (lp_loaded()) {
68 const char *fname = lp_configfile();
70 if (file_exist(fname) && !strcsequal(fname,get_dyn_CONFIGFILE())) {
71 set_dyn_CONFIGFILE(fname);
75 /* if this is a child, restore the logfile to the special
76 name - <domain>, idmap, etc. */
77 if (lfile && *lfile) {
78 lp_set_logfile(lfile);
81 reopen_logs();
82 ret = lp_load(get_dyn_CONFIGFILE(),False,False,True,True);
84 reopen_logs();
85 load_interfaces();
87 return(ret);
91 /**************************************************************************** **
92 Handle a fault..
93 **************************************************************************** */
95 static void fault_quit(void)
97 dump_core();
100 static void winbindd_status(void)
102 struct winbindd_cli_state *tmp;
104 DEBUG(0, ("winbindd status:\n"));
106 /* Print client state information */
108 DEBUG(0, ("\t%d clients currently active\n", winbindd_num_clients()));
110 if (DEBUGLEVEL >= 2 && winbindd_num_clients()) {
111 DEBUG(2, ("\tclient list:\n"));
112 for(tmp = winbindd_client_list(); tmp; tmp = tmp->next) {
113 DEBUGADD(2, ("\t\tpid %lu, sock %d\n",
114 (unsigned long)tmp->pid, tmp->sock));
119 /* Print winbindd status to log file */
121 static void print_winbindd_status(void)
123 winbindd_status();
126 /* Flush client cache */
128 static void flush_caches(void)
130 /* We need to invalidate cached user list entries on a SIGHUP
131 otherwise cached access denied errors due to restrict anonymous
132 hang around until the sequence number changes. */
134 if (!wcache_invalidate_cache()) {
135 DEBUG(0, ("invalidating the cache failed; revalidate the cache\n"));
136 if (!winbindd_cache_validate_and_initialize()) {
137 exit(1);
142 /* Handle the signal by unlinking socket and exiting */
144 static void terminate(bool is_parent)
146 if (is_parent) {
147 /* When parent goes away we should
148 * remove the socket file. Not so
149 * when children terminate.
151 char *path = NULL;
153 if (asprintf(&path, "%s/%s",
154 get_winbind_pipe_dir(), WINBINDD_SOCKET_NAME) > 0) {
155 unlink(path);
156 SAFE_FREE(path);
160 idmap_close();
162 trustdom_cache_shutdown();
164 #if 0
165 if (interactive) {
166 TALLOC_CTX *mem_ctx = talloc_init("end_description");
167 char *description = talloc_describe_all(mem_ctx);
169 DEBUG(3, ("tallocs left:\n%s\n", description));
170 talloc_destroy(mem_ctx);
172 #endif
174 exit(0);
177 static void winbindd_sig_term_handler(struct tevent_context *ev,
178 struct tevent_signal *se,
179 int signum,
180 int count,
181 void *siginfo,
182 void *private_data)
184 bool *is_parent = talloc_get_type_abort(private_data, bool);
186 DEBUG(0,("Got sig[%d] terminate (is_parent=%d)\n",
187 signum, (int)*is_parent));
188 terminate(*is_parent);
191 bool winbindd_setup_sig_term_handler(bool parent)
193 struct tevent_signal *se;
194 bool *is_parent;
196 is_parent = talloc(winbind_event_context(), bool);
197 if (!is_parent) {
198 return false;
201 *is_parent = parent;
203 se = tevent_add_signal(winbind_event_context(),
204 is_parent,
205 SIGTERM, 0,
206 winbindd_sig_term_handler,
207 is_parent);
208 if (!se) {
209 DEBUG(0,("failed to setup SIGTERM handler"));
210 talloc_free(is_parent);
211 return false;
214 se = tevent_add_signal(winbind_event_context(),
215 is_parent,
216 SIGINT, 0,
217 winbindd_sig_term_handler,
218 is_parent);
219 if (!se) {
220 DEBUG(0,("failed to setup SIGINT handler"));
221 talloc_free(is_parent);
222 return false;
225 se = tevent_add_signal(winbind_event_context(),
226 is_parent,
227 SIGQUIT, 0,
228 winbindd_sig_term_handler,
229 is_parent);
230 if (!se) {
231 DEBUG(0,("failed to setup SIGINT handler"));
232 talloc_free(is_parent);
233 return false;
236 return true;
239 static void winbindd_sig_hup_handler(struct tevent_context *ev,
240 struct tevent_signal *se,
241 int signum,
242 int count,
243 void *siginfo,
244 void *private_data)
246 const char *file = (const char *)private_data;
248 DEBUG(1,("Reloading services after SIGHUP\n"));
249 flush_caches();
250 reload_services_file(file);
253 bool winbindd_setup_sig_hup_handler(const char *lfile)
255 struct tevent_signal *se;
256 char *file = NULL;
258 if (lfile) {
259 file = talloc_strdup(winbind_event_context(),
260 lfile);
261 if (!file) {
262 return false;
266 se = tevent_add_signal(winbind_event_context(),
267 winbind_event_context(),
268 SIGHUP, 0,
269 winbindd_sig_hup_handler,
270 file);
271 if (!se) {
272 return false;
275 return true;
278 static void winbindd_sig_chld_handler(struct tevent_context *ev,
279 struct tevent_signal *se,
280 int signum,
281 int count,
282 void *siginfo,
283 void *private_data)
285 pid_t pid;
287 while ((pid = sys_waitpid(-1, NULL, WNOHANG)) > 0) {
288 winbind_child_died(pid);
292 static bool winbindd_setup_sig_chld_handler(void)
294 struct tevent_signal *se;
296 se = tevent_add_signal(winbind_event_context(),
297 winbind_event_context(),
298 SIGCHLD, 0,
299 winbindd_sig_chld_handler,
300 NULL);
301 if (!se) {
302 return false;
305 return true;
308 static void winbindd_sig_usr2_handler(struct tevent_context *ev,
309 struct tevent_signal *se,
310 int signum,
311 int count,
312 void *siginfo,
313 void *private_data)
315 print_winbindd_status();
318 static bool winbindd_setup_sig_usr2_handler(void)
320 struct tevent_signal *se;
322 se = tevent_add_signal(winbind_event_context(),
323 winbind_event_context(),
324 SIGUSR2, 0,
325 winbindd_sig_usr2_handler,
326 NULL);
327 if (!se) {
328 return false;
331 return true;
334 /* React on 'smbcontrol winbindd reload-config' in the same way as on SIGHUP*/
335 static void msg_reload_services(struct messaging_context *msg,
336 void *private_data,
337 uint32_t msg_type,
338 struct server_id server_id,
339 DATA_BLOB *data)
341 /* Flush various caches */
342 flush_caches();
343 reload_services_file((const char *) private_data);
346 /* React on 'smbcontrol winbindd shutdown' in the same way as on SIGTERM*/
347 static void msg_shutdown(struct messaging_context *msg,
348 void *private_data,
349 uint32_t msg_type,
350 struct server_id server_id,
351 DATA_BLOB *data)
353 /* only the parent waits for this message */
354 DEBUG(0,("Got shutdown message\n"));
355 terminate(true);
359 static void winbind_msg_validate_cache(struct messaging_context *msg_ctx,
360 void *private_data,
361 uint32_t msg_type,
362 struct server_id server_id,
363 DATA_BLOB *data)
365 uint8 ret;
366 pid_t child_pid;
367 struct sigaction act;
368 struct sigaction oldact;
370 DEBUG(10, ("winbindd_msg_validate_cache: got validate-cache "
371 "message.\n"));
374 * call the validation code from a child:
375 * so we don't block the main winbindd and the validation
376 * code can safely use fork/waitpid...
378 CatchChild();
379 child_pid = sys_fork();
381 if (child_pid == -1) {
382 DEBUG(1, ("winbind_msg_validate_cache: Could not fork: %s\n",
383 strerror(errno)));
384 return;
387 if (child_pid != 0) {
388 /* parent */
389 DEBUG(5, ("winbind_msg_validate_cache: child created with "
390 "pid %d.\n", (int)child_pid));
391 return;
394 /* child */
396 /* install default SIGCHLD handler: validation code uses fork/waitpid */
397 ZERO_STRUCT(act);
398 act.sa_handler = SIG_DFL;
399 #ifdef SA_RESTART
400 /* We *want* SIGALRM to interrupt a system call. */
401 act.sa_flags = SA_RESTART;
402 #endif
403 sigemptyset(&act.sa_mask);
404 sigaddset(&act.sa_mask,SIGCHLD);
405 sigaction(SIGCHLD,&act,&oldact);
407 ret = (uint8)winbindd_validate_cache_nobackup();
408 DEBUG(10, ("winbindd_msg_validata_cache: got return value %d\n", ret));
409 messaging_send_buf(msg_ctx, server_id, MSG_WINBIND_VALIDATE_CACHE, &ret,
410 (size_t)1);
411 _exit(0);
414 static struct winbindd_dispatch_table {
415 enum winbindd_cmd cmd;
416 void (*fn)(struct winbindd_cli_state *state);
417 const char *winbindd_cmd_name;
418 } dispatch_table[] = {
420 /* User functions */
422 { WINBINDD_GETPWNAM, winbindd_getpwnam, "GETPWNAM" },
423 { WINBINDD_GETPWUID, winbindd_getpwuid, "GETPWUID" },
424 { WINBINDD_GETPWSID, winbindd_getpwsid, "GETPWSID" },
426 { WINBINDD_SETPWENT, winbindd_setpwent, "SETPWENT" },
427 { WINBINDD_ENDPWENT, winbindd_endpwent, "ENDPWENT" },
428 { WINBINDD_GETPWENT, winbindd_getpwent, "GETPWENT" },
430 { WINBINDD_GETGROUPS, winbindd_getgroups, "GETGROUPS" },
431 { WINBINDD_GETUSERSIDS, winbindd_getusersids, "GETUSERSIDS" },
432 { WINBINDD_GETUSERDOMGROUPS, winbindd_getuserdomgroups,
433 "GETUSERDOMGROUPS" },
434 { WINBINDD_GETSIDALIASES, winbindd_getsidaliases,
435 "LOOKUPUSERALIASES" },
437 /* Group functions */
439 { WINBINDD_GETGRNAM, winbindd_getgrnam, "GETGRNAM" },
440 { WINBINDD_GETGRGID, winbindd_getgrgid, "GETGRGID" },
441 { WINBINDD_SETGRENT, winbindd_setgrent, "SETGRENT" },
442 { WINBINDD_ENDGRENT, winbindd_endgrent, "ENDGRENT" },
443 { WINBINDD_GETGRENT, winbindd_getgrent, "GETGRENT" },
444 { WINBINDD_GETGRLST, winbindd_getgrent, "GETGRLST" },
446 /* PAM auth functions */
448 { WINBINDD_PAM_AUTH, winbindd_pam_auth, "PAM_AUTH" },
449 { WINBINDD_PAM_AUTH_CRAP, winbindd_pam_auth_crap, "AUTH_CRAP" },
450 { WINBINDD_PAM_CHAUTHTOK, winbindd_pam_chauthtok, "CHAUTHTOK" },
451 { WINBINDD_PAM_LOGOFF, winbindd_pam_logoff, "PAM_LOGOFF" },
452 { WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP, winbindd_pam_chng_pswd_auth_crap, "CHNG_PSWD_AUTH_CRAP" },
454 /* Enumeration functions */
456 { WINBINDD_LIST_USERS, winbindd_list_users, "LIST_USERS" },
457 { WINBINDD_LIST_GROUPS, winbindd_list_groups, "LIST_GROUPS" },
458 { WINBINDD_LIST_TRUSTDOM, winbindd_list_trusted_domains,
459 "LIST_TRUSTDOM" },
460 { WINBINDD_SHOW_SEQUENCE, winbindd_show_sequence, "SHOW_SEQUENCE" },
462 /* SID related functions */
464 { WINBINDD_LOOKUPSID, winbindd_lookupsid, "LOOKUPSID" },
465 { WINBINDD_LOOKUPNAME, winbindd_lookupname, "LOOKUPNAME" },
466 { WINBINDD_LOOKUPRIDS, winbindd_lookuprids, "LOOKUPRIDS" },
468 /* Lookup related functions */
470 { WINBINDD_SID_TO_UID, winbindd_sid_to_uid, "SID_TO_UID" },
471 { WINBINDD_SID_TO_GID, winbindd_sid_to_gid, "SID_TO_GID" },
472 { WINBINDD_UID_TO_SID, winbindd_uid_to_sid, "UID_TO_SID" },
473 { WINBINDD_GID_TO_SID, winbindd_gid_to_sid, "GID_TO_SID" },
474 { WINBINDD_ALLOCATE_UID, winbindd_allocate_uid, "ALLOCATE_UID" },
475 { WINBINDD_ALLOCATE_GID, winbindd_allocate_gid, "ALLOCATE_GID" },
476 { WINBINDD_SET_MAPPING, winbindd_set_mapping, "SET_MAPPING" },
477 { WINBINDD_REMOVE_MAPPING, winbindd_remove_mapping, "REMOVE_MAPPING" },
478 { WINBINDD_SET_HWM, winbindd_set_hwm, "SET_HWMS" },
480 /* Miscellaneous */
482 { WINBINDD_CHECK_MACHACC, winbindd_check_machine_acct, "CHECK_MACHACC" },
483 { WINBINDD_PING, winbindd_ping, "PING" },
484 { WINBINDD_INFO, winbindd_info, "INFO" },
485 { WINBINDD_INTERFACE_VERSION, winbindd_interface_version,
486 "INTERFACE_VERSION" },
487 { WINBINDD_DOMAIN_NAME, winbindd_domain_name, "DOMAIN_NAME" },
488 { WINBINDD_DOMAIN_INFO, winbindd_domain_info, "DOMAIN_INFO" },
489 { WINBINDD_NETBIOS_NAME, winbindd_netbios_name, "NETBIOS_NAME" },
490 { WINBINDD_PRIV_PIPE_DIR, winbindd_priv_pipe_dir,
491 "WINBINDD_PRIV_PIPE_DIR" },
492 { WINBINDD_GETDCNAME, winbindd_getdcname, "GETDCNAME" },
493 { WINBINDD_DSGETDCNAME, winbindd_dsgetdcname, "DSGETDCNAME" },
495 /* Credential cache access */
496 { WINBINDD_CCACHE_NTLMAUTH, winbindd_ccache_ntlm_auth, "NTLMAUTH" },
498 /* WINS functions */
500 { WINBINDD_WINS_BYNAME, winbindd_wins_byname, "WINS_BYNAME" },
501 { WINBINDD_WINS_BYIP, winbindd_wins_byip, "WINS_BYIP" },
503 /* End of list */
505 { WINBINDD_NUM_CMDS, NULL, "NONE" }
508 struct winbindd_async_dispatch_table {
509 enum winbindd_cmd cmd;
510 const char *cmd_name;
511 struct tevent_req *(*send_req)(TALLOC_CTX *mem_ctx,
512 struct tevent_context *ev,
513 struct winbindd_request *request);
514 NTSTATUS (*recv_req)(struct tevent_req *req, TALLOC_CTX *mem_ctx,
515 struct winbindd_response **presp);
518 static struct winbindd_async_dispatch_table async_nonpriv_table[] = {
519 { WINBINDD_PING, "PING",
520 wb_ping_send, wb_ping_recv },
522 { 0, NULL, NULL, NULL }
525 static void wb_request_done(struct tevent_req *req);
527 static void process_request(struct winbindd_cli_state *state)
529 struct winbindd_dispatch_table *table = dispatch_table;
530 struct winbindd_async_dispatch_table *atable;
532 ZERO_STRUCT(state->response);
534 state->response.result = WINBINDD_PENDING;
535 state->response.length = sizeof(struct winbindd_response);
537 state->mem_ctx = talloc_init("winbind request");
538 if (state->mem_ctx == NULL)
539 return;
541 /* Remember who asked us. */
542 state->pid = state->request->pid;
544 /* Process command */
546 for (atable = async_nonpriv_table; atable->send_req; atable += 1) {
547 if (state->request->cmd == atable->cmd) {
548 break;
552 if (atable->send_req != NULL) {
553 struct tevent_req *req;
555 DEBUG(10, ("process_request: Handling async request %s\n",
556 atable->cmd_name));
558 req = atable->send_req(state->mem_ctx, winbind_event_context(),
559 state->request);
560 if (req == NULL) {
561 DEBUG(0, ("process_request: atable->send failed for "
562 "%s\n", atable->cmd_name));
563 request_error(state);
564 return;
566 tevent_req_set_callback(req, wb_request_done, state);
567 state->recv_fn = atable->recv_req;
568 return;
571 for (table = dispatch_table; table->fn; table++) {
572 if (state->request->cmd == table->cmd) {
573 DEBUG(10,("process_request: request fn %s\n",
574 table->winbindd_cmd_name ));
575 table->fn(state);
576 break;
580 if (!table->fn) {
581 DEBUG(10,("process_request: unknown request fn number %d\n",
582 (int)state->request->cmd ));
583 request_error(state);
587 static void wb_request_done(struct tevent_req *req)
589 struct winbindd_cli_state *state = tevent_req_callback_data(
590 req, struct winbindd_cli_state);
591 NTSTATUS status;
592 struct winbindd_response *response;
594 status = state->recv_fn(req, state->mem_ctx, &response);
595 TALLOC_FREE(req);
596 if (!NT_STATUS_IS_OK(status)) {
597 DEBUG(10, ("returning %s\n", nt_errstr(status)));
598 request_error(state);
600 state->response = *response;
601 state->response.result = WINBINDD_PENDING;
602 state->response.length = sizeof(struct winbindd_response);
603 request_ok(state);
607 * This is the main event loop of winbind requests. It goes through a
608 * state-machine of 3 read/write requests, 4 if you have extra data to send.
610 * An idle winbind client has a read request of 4 bytes outstanding,
611 * finalizing function is request_len_recv, checking the length. request_recv
612 * then processes the packet. The processing function then at some point has
613 * to call request_finished which schedules sending the response.
616 static void request_finished(struct winbindd_cli_state *state);
618 static void winbind_client_request_read(struct tevent_req *req);
619 static void winbind_client_response_written(struct tevent_req *req);
621 static void request_finished(struct winbindd_cli_state *state)
623 struct tevent_req *req;
625 TALLOC_FREE(state->request);
627 req = wb_resp_write_send(state, winbind_event_context(),
628 state->out_queue, state->sock,
629 &state->response);
630 if (req == NULL) {
631 state->finished = true;
632 return;
634 tevent_req_set_callback(req, winbind_client_response_written, state);
637 static void winbind_client_response_written(struct tevent_req *req)
639 struct winbindd_cli_state *state = tevent_req_callback_data(
640 req, struct winbindd_cli_state);
641 ssize_t ret;
642 int err;
644 ret = wb_resp_write_recv(req, &err);
645 TALLOC_FREE(req);
646 if (ret == -1) {
647 DEBUG(2, ("Could not write response to client: %s\n",
648 strerror(err)));
649 state->finished = true;
650 return;
653 TALLOC_FREE(state->mem_ctx);
655 req = wb_req_read_send(state, winbind_event_context(), state->sock,
656 WINBINDD_MAX_EXTRA_DATA);
657 if (req == NULL) {
658 state->finished = true;
659 return;
661 tevent_req_set_callback(req, winbind_client_request_read, state);
664 void request_error(struct winbindd_cli_state *state)
666 SMB_ASSERT(state->response.result == WINBINDD_PENDING);
667 state->response.result = WINBINDD_ERROR;
668 request_finished(state);
671 void request_ok(struct winbindd_cli_state *state)
673 SMB_ASSERT(state->response.result == WINBINDD_PENDING);
674 state->response.result = WINBINDD_OK;
675 request_finished(state);
678 /* Process a new connection by adding it to the client connection list */
680 static void new_connection(int listen_sock, bool privileged)
682 struct sockaddr_un sunaddr;
683 struct winbindd_cli_state *state;
684 struct tevent_req *req;
685 socklen_t len;
686 int sock;
688 /* Accept connection */
690 len = sizeof(sunaddr);
692 do {
693 sock = accept(listen_sock, (struct sockaddr *)(void *)&sunaddr,
694 &len);
695 } while (sock == -1 && errno == EINTR);
697 if (sock == -1)
698 return;
700 DEBUG(6,("accepted socket %d\n", sock));
702 /* Create new connection structure */
704 if ((state = TALLOC_ZERO_P(NULL, struct winbindd_cli_state)) == NULL) {
705 close(sock);
706 return;
709 state->sock = sock;
711 state->out_queue = tevent_queue_create(state, "winbind client reply");
712 if (state->out_queue == NULL) {
713 close(sock);
714 TALLOC_FREE(state);
715 return;
718 state->last_access = time(NULL);
720 state->privileged = privileged;
722 req = wb_req_read_send(state, winbind_event_context(), state->sock,
723 WINBINDD_MAX_EXTRA_DATA);
724 if (req == NULL) {
725 TALLOC_FREE(state);
726 close(sock);
727 return;
729 tevent_req_set_callback(req, winbind_client_request_read, state);
731 /* Add to connection list */
733 winbindd_add_client(state);
736 static void winbind_client_request_read(struct tevent_req *req)
738 struct winbindd_cli_state *state = tevent_req_callback_data(
739 req, struct winbindd_cli_state);
740 ssize_t ret;
741 int err;
743 ret = wb_req_read_recv(req, state, &state->request, &err);
744 if (ret == -1) {
745 DEBUG(2, ("Could not read client request: %s\n",
746 strerror(err)));
747 state->finished = true;
748 return;
750 process_request(state);
753 /* Remove a client connection from client connection list */
755 static void remove_client(struct winbindd_cli_state *state)
757 char c = 0;
758 int nwritten;
760 /* It's a dead client - hold a funeral */
762 if (state == NULL) {
763 return;
766 /* tell client, we are closing ... */
767 nwritten = write(state->sock, &c, sizeof(c));
768 if (nwritten == -1) {
770 * ignore EPIPE error here, because the other end might
771 * have already closed the socket.
773 if (errno != EPIPE) {
774 DEBUG(2, ("final write to client failed: %s\n",
775 strerror(errno)));
779 /* Close socket */
781 close(state->sock);
783 /* Free any getent state */
785 free_getent_state(state->getpwent_state);
786 free_getent_state(state->getgrent_state);
788 TALLOC_FREE(state->mem_ctx);
790 /* Remove from list and free */
792 winbindd_remove_client(state);
793 TALLOC_FREE(state);
796 /* Shutdown client connection which has been idle for the longest time */
798 static bool remove_idle_client(void)
800 struct winbindd_cli_state *state, *remove_state = NULL;
801 time_t last_access = 0;
802 int nidle = 0;
804 for (state = winbindd_client_list(); state; state = state->next) {
805 if (state->response.result != WINBINDD_PENDING &&
806 !state->getpwent_state && !state->getgrent_state) {
807 nidle++;
808 if (!last_access || state->last_access < last_access) {
809 last_access = state->last_access;
810 remove_state = state;
815 if (remove_state) {
816 DEBUG(5,("Found %d idle client connections, shutting down sock %d, pid %u\n",
817 nidle, remove_state->sock, (unsigned int)remove_state->pid));
818 remove_client(remove_state);
819 return True;
822 return False;
825 struct winbindd_listen_state {
826 bool privileged;
827 int fd;
828 struct tevent_fd *fde;
831 static void winbindd_listen_fde_handler(struct tevent_context *ev,
832 struct tevent_fd *fde,
833 uint16_t flags,
834 void *private_data)
836 struct winbindd_listen_state *s = talloc_get_type_abort(private_data,
837 struct winbindd_listen_state);
839 while (winbindd_num_clients() >
840 WINBINDD_MAX_SIMULTANEOUS_CLIENTS - 1) {
841 DEBUG(5,("winbindd: Exceeding %d client "
842 "connections, removing idle "
843 "connection.\n",
844 WINBINDD_MAX_SIMULTANEOUS_CLIENTS));
845 if (!remove_idle_client()) {
846 DEBUG(0,("winbindd: Exceeding %d "
847 "client connections, no idle "
848 "connection found\n",
849 WINBINDD_MAX_SIMULTANEOUS_CLIENTS));
850 break;
853 new_connection(s->fd, s->privileged);
856 static bool winbindd_setup_listeners(void)
858 struct winbindd_listen_state *pub_state = NULL;
859 struct winbindd_listen_state *priv_state = NULL;
861 pub_state = talloc(winbind_event_context(),
862 struct winbindd_listen_state);
863 if (!pub_state) {
864 goto failed;
867 pub_state->privileged = false;
868 pub_state->fd = open_winbindd_socket();
869 if (pub_state->fd == -1) {
870 goto failed;
873 pub_state->fde = tevent_add_fd(winbind_event_context(),
874 pub_state, pub_state->fd,
875 TEVENT_FD_READ,
876 winbindd_listen_fde_handler,
877 pub_state);
878 if (!pub_state->fde) {
879 close(pub_state->fd);
880 goto failed;
882 tevent_fd_set_auto_close(pub_state->fde);
884 priv_state = talloc(winbind_event_context(),
885 struct winbindd_listen_state);
886 if (!priv_state) {
887 goto failed;
890 priv_state->privileged = true;
891 priv_state->fd = open_winbindd_priv_socket();
892 if (priv_state->fd == -1) {
893 goto failed;
896 priv_state->fde = tevent_add_fd(winbind_event_context(),
897 priv_state, priv_state->fd,
898 TEVENT_FD_READ,
899 winbindd_listen_fde_handler,
900 priv_state);
901 if (!priv_state->fde) {
902 close(priv_state->fd);
903 goto failed;
905 tevent_fd_set_auto_close(priv_state->fde);
907 return true;
908 failed:
909 TALLOC_FREE(pub_state);
910 TALLOC_FREE(priv_state);
911 return false;
914 /* Process incoming clients on listen_sock. We use a tricky non-blocking,
915 non-forking, non-threaded model which allows us to handle many
916 simultaneous connections while remaining impervious to many denial of
917 service attacks. */
919 static void process_loop(void)
921 fd_set r_fds, w_fds;
922 int maxfd = 0, selret;
923 struct timeval timeout, ev_timeout;
925 run_events(winbind_event_context(), 0, NULL, NULL);
927 /* Initialise fd lists for select() */
929 FD_ZERO(&r_fds);
930 FD_ZERO(&w_fds);
932 timeout.tv_sec = WINBINDD_ESTABLISH_LOOP;
933 timeout.tv_usec = 0;
935 /* Check for any event timeouts. */
937 struct timeval now;
938 GetTimeOfDay(&now);
940 event_add_to_select_args(winbind_event_context(), &now,
941 &r_fds, &w_fds, &ev_timeout, &maxfd);
943 if (get_timed_events_timeout(winbind_event_context(), &ev_timeout)) {
944 timeout = timeval_min(&timeout, &ev_timeout);
947 /* Call select */
949 selret = sys_select(maxfd + 1, &r_fds, &w_fds, NULL, &timeout);
951 if (selret == 0) {
952 goto no_fds_ready;
955 if (selret == -1) {
956 if (errno == EINTR) {
957 goto no_fds_ready;
960 /* Select error, something is badly wrong */
962 perror("select");
963 exit(1);
966 /* selret > 0 */
968 run_events(winbind_event_context(), selret, &r_fds, &w_fds);
970 return;
972 no_fds_ready:
974 run_events(winbind_event_context(), selret, &r_fds, &w_fds);
976 #if 0
977 winbindd_check_cache_size(time(NULL));
978 #endif
981 bool winbindd_use_idmap_cache(void)
983 return !opt_nocache;
986 bool winbindd_use_cache(void)
988 return !opt_nocache;
991 /* Main function */
993 int main(int argc, char **argv, char **envp)
995 static bool is_daemon = False;
996 static bool Fork = True;
997 static bool log_stdout = False;
998 static bool no_process_group = False;
999 enum {
1000 OPT_DAEMON = 1000,
1001 OPT_FORK,
1002 OPT_NO_PROCESS_GROUP,
1003 OPT_LOG_STDOUT
1005 struct poptOption long_options[] = {
1006 POPT_AUTOHELP
1007 { "stdout", 'S', POPT_ARG_NONE, NULL, OPT_LOG_STDOUT, "Log to stdout" },
1008 { "foreground", 'F', POPT_ARG_NONE, NULL, OPT_FORK, "Daemon in foreground mode" },
1009 { "no-process-group", 0, POPT_ARG_NONE, NULL, OPT_NO_PROCESS_GROUP, "Don't create a new process group" },
1010 { "daemon", 'D', POPT_ARG_NONE, NULL, OPT_DAEMON, "Become a daemon (default)" },
1011 { "interactive", 'i', POPT_ARG_NONE, NULL, 'i', "Interactive mode" },
1012 { "no-caching", 'n', POPT_ARG_NONE, NULL, 'n', "Disable caching" },
1013 POPT_COMMON_SAMBA
1014 POPT_TABLEEND
1016 poptContext pc;
1017 int opt;
1018 TALLOC_CTX *frame = talloc_stackframe();
1020 /* glibc (?) likes to print "User defined signal 1" and exit if a
1021 SIGUSR[12] is received before a handler is installed */
1023 CatchSignal(SIGUSR1, SIG_IGN);
1024 CatchSignal(SIGUSR2, SIG_IGN);
1026 fault_setup((void (*)(void *))fault_quit );
1027 dump_core_setup("winbindd");
1029 load_case_tables();
1031 /* Initialise for running in non-root mode */
1033 sec_init();
1035 set_remote_machine_name("winbindd", False);
1037 /* Set environment variable so we don't recursively call ourselves.
1038 This may also be useful interactively. */
1040 if ( !winbind_off() ) {
1041 DEBUG(0,("Failed to disable recusive winbindd calls. Exiting.\n"));
1042 exit(1);
1045 /* Initialise samba/rpc client stuff */
1047 pc = poptGetContext("winbindd", argc, (const char **)argv, long_options, 0);
1049 while ((opt = poptGetNextOpt(pc)) != -1) {
1050 switch (opt) {
1051 /* Don't become a daemon */
1052 case OPT_DAEMON:
1053 is_daemon = True;
1054 break;
1055 case 'i':
1056 interactive = True;
1057 log_stdout = True;
1058 Fork = False;
1059 break;
1060 case OPT_FORK:
1061 Fork = false;
1062 break;
1063 case OPT_NO_PROCESS_GROUP:
1064 no_process_group = true;
1065 break;
1066 case OPT_LOG_STDOUT:
1067 log_stdout = true;
1068 break;
1069 case 'n':
1070 opt_nocache = true;
1071 break;
1072 default:
1073 d_fprintf(stderr, "\nInvalid option %s: %s\n\n",
1074 poptBadOption(pc, 0), poptStrerror(opt));
1075 poptPrintUsage(pc, stderr, 0);
1076 exit(1);
1080 if (is_daemon && interactive) {
1081 d_fprintf(stderr,"\nERROR: "
1082 "Option -i|--interactive is not allowed together with -D|--daemon\n\n");
1083 poptPrintUsage(pc, stderr, 0);
1084 exit(1);
1087 if (log_stdout && Fork) {
1088 d_fprintf(stderr, "\nERROR: "
1089 "Can't log to stdout (-S) unless daemon is in foreground +(-F) or interactive (-i)\n\n");
1090 poptPrintUsage(pc, stderr, 0);
1091 exit(1);
1094 poptFreeContext(pc);
1096 if (!override_logfile) {
1097 char *lfile = NULL;
1098 if (asprintf(&lfile,"%s/log.winbindd",
1099 get_dyn_LOGFILEBASE()) > 0) {
1100 lp_set_logfile(lfile);
1101 SAFE_FREE(lfile);
1104 setup_logging("winbindd", log_stdout);
1105 reopen_logs();
1107 DEBUG(0,("winbindd version %s started.\n", samba_version_string()));
1108 DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE));
1110 if (!lp_load_initial_only(get_dyn_CONFIGFILE())) {
1111 DEBUG(0, ("error opening config file\n"));
1112 exit(1);
1115 /* Initialise messaging system */
1117 if (winbind_messaging_context() == NULL) {
1118 exit(1);
1121 if (!reload_services_file(NULL)) {
1122 DEBUG(0, ("error opening config file\n"));
1123 exit(1);
1126 if (!directory_exist(lp_lockdir())) {
1127 mkdir(lp_lockdir(), 0755);
1130 /* Setup names. */
1132 if (!init_names())
1133 exit(1);
1135 load_interfaces();
1137 if (!secrets_init()) {
1139 DEBUG(0,("Could not initialize domain trust account secrets. Giving up\n"));
1140 return False;
1143 /* Enable netbios namecache */
1145 namecache_enable();
1147 /* Unblock all signals we are interested in as they may have been
1148 blocked by the parent process. */
1150 BlockSignals(False, SIGINT);
1151 BlockSignals(False, SIGQUIT);
1152 BlockSignals(False, SIGTERM);
1153 BlockSignals(False, SIGUSR1);
1154 BlockSignals(False, SIGUSR2);
1155 BlockSignals(False, SIGHUP);
1156 BlockSignals(False, SIGCHLD);
1158 if (!interactive)
1159 become_daemon(Fork, no_process_group);
1161 pidfile_create("winbindd");
1163 #if HAVE_SETPGID
1165 * If we're interactive we want to set our own process group for
1166 * signal management.
1168 if (interactive && !no_process_group)
1169 setpgid( (pid_t)0, (pid_t)0);
1170 #endif
1172 TimeInit();
1174 /* Don't use winbindd_reinit_after_fork here as
1175 * we're just starting up and haven't created any
1176 * winbindd-specific resources we must free yet. JRA.
1179 if (!NT_STATUS_IS_OK(reinit_after_fork(winbind_messaging_context(),
1180 winbind_event_context(),
1181 false))) {
1182 DEBUG(0,("reinit_after_fork() failed\n"));
1183 exit(1);
1186 /* Setup signal handlers */
1188 if (!winbindd_setup_sig_term_handler(true))
1189 exit(1);
1190 if (!winbindd_setup_sig_hup_handler(NULL))
1191 exit(1);
1192 if (!winbindd_setup_sig_chld_handler())
1193 exit(1);
1194 if (!winbindd_setup_sig_usr2_handler())
1195 exit(1);
1197 CatchSignal(SIGPIPE, SIG_IGN); /* Ignore sigpipe */
1200 * Ensure all cache and idmap caches are consistent
1201 * and initialized before we startup.
1203 if (!winbindd_cache_validate_and_initialize()) {
1204 exit(1);
1207 /* get broadcast messages */
1208 claim_connection(NULL,"",FLAG_MSG_GENERAL|FLAG_MSG_DBWRAP);
1210 /* React on 'smbcontrol winbindd reload-config' in the same way
1211 as to SIGHUP signal */
1212 messaging_register(winbind_messaging_context(), NULL,
1213 MSG_SMB_CONF_UPDATED, msg_reload_services);
1214 messaging_register(winbind_messaging_context(), NULL,
1215 MSG_SHUTDOWN, msg_shutdown);
1217 /* Handle online/offline messages. */
1218 messaging_register(winbind_messaging_context(), NULL,
1219 MSG_WINBIND_OFFLINE, winbind_msg_offline);
1220 messaging_register(winbind_messaging_context(), NULL,
1221 MSG_WINBIND_ONLINE, winbind_msg_online);
1222 messaging_register(winbind_messaging_context(), NULL,
1223 MSG_WINBIND_ONLINESTATUS, winbind_msg_onlinestatus);
1225 messaging_register(winbind_messaging_context(), NULL,
1226 MSG_DUMP_EVENT_LIST, winbind_msg_dump_event_list);
1228 messaging_register(winbind_messaging_context(), NULL,
1229 MSG_WINBIND_VALIDATE_CACHE,
1230 winbind_msg_validate_cache);
1232 messaging_register(winbind_messaging_context(), NULL,
1233 MSG_WINBIND_DUMP_DOMAIN_LIST,
1234 winbind_msg_dump_domain_list);
1236 /* Register handler for MSG_DEBUG. */
1237 messaging_register(winbind_messaging_context(), NULL,
1238 MSG_DEBUG,
1239 winbind_msg_debug);
1241 netsamlogon_cache_init(); /* Non-critical */
1243 /* clear the cached list of trusted domains */
1245 wcache_tdc_clear();
1247 if (!init_domain_list()) {
1248 DEBUG(0,("unable to initialize domain list\n"));
1249 exit(1);
1252 init_idmap_child();
1253 init_locator_child();
1255 smb_nscd_flush_user_cache();
1256 smb_nscd_flush_group_cache();
1258 /* setup listen sockets */
1260 if (!winbindd_setup_listeners()) {
1261 DEBUG(0,("winbindd_setup_listeners() failed\n"));
1262 exit(1);
1265 TALLOC_FREE(frame);
1266 /* Loop waiting for requests */
1267 while (1) {
1268 struct winbindd_cli_state *state;
1270 frame = talloc_stackframe();
1272 /* refresh the trusted domain cache */
1274 rescan_trusted_domains();
1276 /* Dispose of client connection if it is marked as
1277 finished */
1278 state = winbindd_client_list();
1279 while (state) {
1280 struct winbindd_cli_state *next = state->next;
1282 if (state->finished) {
1283 remove_client(state);
1286 state = next;
1289 process_loop();
1291 TALLOC_FREE(frame);
1294 return 0;