s3-winbind: Register handlers for domain online/offline messages.
[Samba.git] / source3 / winbindd / winbindd.c
blobf447059248b70c025169499496390da2c5abf20e
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 "popt_common.h"
27 #include "winbindd.h"
28 #include "nsswitch/winbind_client.h"
29 #include "nsswitch/wb_reqtrans.h"
30 #include "ntdomain.h"
31 #include "../librpc/gen_ndr/srv_lsa.h"
32 #include "../librpc/gen_ndr/srv_samr.h"
33 #include "secrets.h"
34 #include "idmap.h"
35 #include "lib/addrchange.h"
36 #include "serverid.h"
37 #include "auth.h"
38 #include "messages.h"
40 #undef DBGC_CLASS
41 #define DBGC_CLASS DBGC_WINBIND
43 static bool client_is_idle(struct winbindd_cli_state *state);
44 static void remove_client(struct winbindd_cli_state *state);
46 static bool opt_nocache = False;
47 static bool interactive = False;
49 extern bool override_logfile;
51 struct messaging_context *winbind_messaging_context(void)
53 struct messaging_context *msg_ctx = server_messaging_context();
54 if (likely(msg_ctx != NULL)) {
55 return msg_ctx;
57 smb_panic("Could not init winbindd's messaging context.\n");
58 return NULL;
61 /* Reload configuration */
63 static bool reload_services_file(const char *lfile)
65 bool ret;
67 if (lp_loaded()) {
68 char *fname = lp_configfile();
70 if (file_exist(fname) && !strcsequal(fname,get_dyn_CONFIGFILE())) {
71 set_dyn_CONFIGFILE(fname);
73 TALLOC_FREE(fname);
76 /* if this is a child, restore the logfile to the special
77 name - <domain>, idmap, etc. */
78 if (lfile && *lfile) {
79 lp_set_logfile(lfile);
82 reopen_logs();
83 ret = lp_load(get_dyn_CONFIGFILE(),False,False,True,True);
85 reopen_logs();
86 load_interfaces();
88 return(ret);
92 /**************************************************************************** **
93 Handle a fault..
94 **************************************************************************** */
96 static void fault_quit(void)
98 dump_core();
101 static void winbindd_status(void)
103 struct winbindd_cli_state *tmp;
105 DEBUG(0, ("winbindd status:\n"));
107 /* Print client state information */
109 DEBUG(0, ("\t%d clients currently active\n", winbindd_num_clients()));
111 if (DEBUGLEVEL >= 2 && winbindd_num_clients()) {
112 DEBUG(2, ("\tclient list:\n"));
113 for(tmp = winbindd_client_list(); tmp; tmp = tmp->next) {
114 DEBUGADD(2, ("\t\tpid %lu, sock %d (%s)\n",
115 (unsigned long)tmp->pid, tmp->sock,
116 client_is_idle(tmp) ? "idle" : "active"));
121 /* Flush client cache */
123 static void flush_caches(void)
125 /* We need to invalidate cached user list entries on a SIGHUP
126 otherwise cached access denied errors due to restrict anonymous
127 hang around until the sequence number changes. */
129 if (!wcache_invalidate_cache()) {
130 DEBUG(0, ("invalidating the cache failed; revalidate the cache\n"));
131 if (!winbindd_cache_validate_and_initialize()) {
132 exit(1);
137 static void flush_caches_noinit(void)
140 * We need to invalidate cached user list entries on a SIGHUP
141 * otherwise cached access denied errors due to restrict anonymous
142 * hang around until the sequence number changes.
143 * NB
144 * Skip uninitialized domains when flush cache.
145 * If domain is not initialized, it means it is never
146 * used or never become online. look, wcache_invalidate_cache()
147 * -> get_cache() -> init_dc_connection(). It causes a lot of traffic
148 * for unused domains and large traffic for primay domain's DC if there
149 * are many domains..
152 if (!wcache_invalidate_cache_noinit()) {
153 DEBUG(0, ("invalidating the cache failed; revalidate the cache\n"));
154 if (!winbindd_cache_validate_and_initialize()) {
155 exit(1);
160 /* Handle the signal by unlinking socket and exiting */
162 static void terminate(bool is_parent)
164 if (is_parent) {
165 /* When parent goes away we should
166 * remove the socket file. Not so
167 * when children terminate.
169 char *path = NULL;
171 if (asprintf(&path, "%s/%s",
172 get_winbind_pipe_dir(), WINBINDD_SOCKET_NAME) > 0) {
173 unlink(path);
174 SAFE_FREE(path);
178 idmap_close();
180 trustdom_cache_shutdown();
182 gencache_stabilize();
184 #if 0
185 if (interactive) {
186 TALLOC_CTX *mem_ctx = talloc_init("end_description");
187 char *description = talloc_describe_all(mem_ctx);
189 DEBUG(3, ("tallocs left:\n%s\n", description));
190 talloc_destroy(mem_ctx);
192 #endif
194 if (is_parent) {
195 serverid_deregister(procid_self());
196 pidfile_unlink();
199 exit(0);
202 static void winbindd_sig_term_handler(struct tevent_context *ev,
203 struct tevent_signal *se,
204 int signum,
205 int count,
206 void *siginfo,
207 void *private_data)
209 bool *is_parent = talloc_get_type_abort(private_data, bool);
211 DEBUG(0,("Got sig[%d] terminate (is_parent=%d)\n",
212 signum, (int)*is_parent));
213 terminate(*is_parent);
216 bool winbindd_setup_sig_term_handler(bool parent)
218 struct tevent_signal *se;
219 bool *is_parent;
221 is_parent = talloc(winbind_event_context(), bool);
222 if (!is_parent) {
223 return false;
226 *is_parent = parent;
228 se = tevent_add_signal(winbind_event_context(),
229 is_parent,
230 SIGTERM, 0,
231 winbindd_sig_term_handler,
232 is_parent);
233 if (!se) {
234 DEBUG(0,("failed to setup SIGTERM handler"));
235 talloc_free(is_parent);
236 return false;
239 se = tevent_add_signal(winbind_event_context(),
240 is_parent,
241 SIGINT, 0,
242 winbindd_sig_term_handler,
243 is_parent);
244 if (!se) {
245 DEBUG(0,("failed to setup SIGINT handler"));
246 talloc_free(is_parent);
247 return false;
250 se = tevent_add_signal(winbind_event_context(),
251 is_parent,
252 SIGQUIT, 0,
253 winbindd_sig_term_handler,
254 is_parent);
255 if (!se) {
256 DEBUG(0,("failed to setup SIGINT handler"));
257 talloc_free(is_parent);
258 return false;
261 return true;
264 static void winbindd_sig_hup_handler(struct tevent_context *ev,
265 struct tevent_signal *se,
266 int signum,
267 int count,
268 void *siginfo,
269 void *private_data)
271 const char *file = (const char *)private_data;
273 DEBUG(1,("Reloading services after SIGHUP\n"));
274 flush_caches_noinit();
275 reload_services_file(file);
278 bool winbindd_setup_sig_hup_handler(const char *lfile)
280 struct tevent_signal *se;
281 char *file = NULL;
283 if (lfile) {
284 file = talloc_strdup(winbind_event_context(),
285 lfile);
286 if (!file) {
287 return false;
291 se = tevent_add_signal(winbind_event_context(),
292 winbind_event_context(),
293 SIGHUP, 0,
294 winbindd_sig_hup_handler,
295 file);
296 if (!se) {
297 return false;
300 return true;
303 static void winbindd_sig_chld_handler(struct tevent_context *ev,
304 struct tevent_signal *se,
305 int signum,
306 int count,
307 void *siginfo,
308 void *private_data)
310 pid_t pid;
312 while ((pid = sys_waitpid(-1, NULL, WNOHANG)) > 0) {
313 winbind_child_died(pid);
317 static bool winbindd_setup_sig_chld_handler(void)
319 struct tevent_signal *se;
321 se = tevent_add_signal(winbind_event_context(),
322 winbind_event_context(),
323 SIGCHLD, 0,
324 winbindd_sig_chld_handler,
325 NULL);
326 if (!se) {
327 return false;
330 return true;
333 static void winbindd_sig_usr2_handler(struct tevent_context *ev,
334 struct tevent_signal *se,
335 int signum,
336 int count,
337 void *siginfo,
338 void *private_data)
340 winbindd_status();
343 static bool winbindd_setup_sig_usr2_handler(void)
345 struct tevent_signal *se;
347 se = tevent_add_signal(winbind_event_context(),
348 winbind_event_context(),
349 SIGUSR2, 0,
350 winbindd_sig_usr2_handler,
351 NULL);
352 if (!se) {
353 return false;
356 return true;
359 /* React on 'smbcontrol winbindd reload-config' in the same way as on SIGHUP*/
360 static void msg_reload_services(struct messaging_context *msg,
361 void *private_data,
362 uint32_t msg_type,
363 struct server_id server_id,
364 DATA_BLOB *data)
366 /* Flush various caches */
367 flush_caches();
368 reload_services_file((const char *) private_data);
371 /* React on 'smbcontrol winbindd shutdown' in the same way as on SIGTERM*/
372 static void msg_shutdown(struct messaging_context *msg,
373 void *private_data,
374 uint32_t msg_type,
375 struct server_id server_id,
376 DATA_BLOB *data)
378 /* only the parent waits for this message */
379 DEBUG(0,("Got shutdown message\n"));
380 terminate(true);
384 static void winbind_msg_validate_cache(struct messaging_context *msg_ctx,
385 void *private_data,
386 uint32_t msg_type,
387 struct server_id server_id,
388 DATA_BLOB *data)
390 uint8 ret;
391 pid_t child_pid;
392 NTSTATUS status;
394 DEBUG(10, ("winbindd_msg_validate_cache: got validate-cache "
395 "message.\n"));
398 * call the validation code from a child:
399 * so we don't block the main winbindd and the validation
400 * code can safely use fork/waitpid...
402 child_pid = sys_fork();
404 if (child_pid == -1) {
405 DEBUG(1, ("winbind_msg_validate_cache: Could not fork: %s\n",
406 strerror(errno)));
407 return;
410 if (child_pid != 0) {
411 /* parent */
412 DEBUG(5, ("winbind_msg_validate_cache: child created with "
413 "pid %d.\n", (int)child_pid));
414 return;
417 /* child */
419 status = winbindd_reinit_after_fork(NULL, NULL);
420 if (!NT_STATUS_IS_OK(status)) {
421 DEBUG(1, ("winbindd_reinit_after_fork failed: %s\n",
422 nt_errstr(status)));
423 _exit(0);
426 /* install default SIGCHLD handler: validation code uses fork/waitpid */
427 CatchSignal(SIGCHLD, SIG_DFL);
429 ret = (uint8)winbindd_validate_cache_nobackup();
430 DEBUG(10, ("winbindd_msg_validata_cache: got return value %d\n", ret));
431 messaging_send_buf(msg_ctx, server_id, MSG_WINBIND_VALIDATE_CACHE, &ret,
432 (size_t)1);
433 _exit(0);
436 static struct winbindd_dispatch_table {
437 enum winbindd_cmd cmd;
438 void (*fn)(struct winbindd_cli_state *state);
439 const char *winbindd_cmd_name;
440 } dispatch_table[] = {
442 /* Enumeration functions */
444 { WINBINDD_LIST_TRUSTDOM, winbindd_list_trusted_domains,
445 "LIST_TRUSTDOM" },
447 /* Miscellaneous */
449 { WINBINDD_INFO, winbindd_info, "INFO" },
450 { WINBINDD_INTERFACE_VERSION, winbindd_interface_version,
451 "INTERFACE_VERSION" },
452 { WINBINDD_DOMAIN_NAME, winbindd_domain_name, "DOMAIN_NAME" },
453 { WINBINDD_DOMAIN_INFO, winbindd_domain_info, "DOMAIN_INFO" },
454 { WINBINDD_DC_INFO, winbindd_dc_info, "DC_INFO" },
455 { WINBINDD_NETBIOS_NAME, winbindd_netbios_name, "NETBIOS_NAME" },
456 { WINBINDD_PRIV_PIPE_DIR, winbindd_priv_pipe_dir,
457 "WINBINDD_PRIV_PIPE_DIR" },
459 /* Credential cache access */
460 { WINBINDD_CCACHE_NTLMAUTH, winbindd_ccache_ntlm_auth, "NTLMAUTH" },
461 { WINBINDD_CCACHE_SAVE, winbindd_ccache_save, "CCACHE_SAVE" },
463 /* WINS functions */
465 { WINBINDD_WINS_BYNAME, winbindd_wins_byname, "WINS_BYNAME" },
466 { WINBINDD_WINS_BYIP, winbindd_wins_byip, "WINS_BYIP" },
468 /* End of list */
470 { WINBINDD_NUM_CMDS, NULL, "NONE" }
473 struct winbindd_async_dispatch_table {
474 enum winbindd_cmd cmd;
475 const char *cmd_name;
476 struct tevent_req *(*send_req)(TALLOC_CTX *mem_ctx,
477 struct tevent_context *ev,
478 struct winbindd_cli_state *cli,
479 struct winbindd_request *request);
480 NTSTATUS (*recv_req)(struct tevent_req *req,
481 struct winbindd_response *presp);
484 static struct winbindd_async_dispatch_table async_nonpriv_table[] = {
485 { WINBINDD_PING, "PING",
486 wb_ping_send, wb_ping_recv },
487 { WINBINDD_LOOKUPSID, "LOOKUPSID",
488 winbindd_lookupsid_send, winbindd_lookupsid_recv },
489 { WINBINDD_LOOKUPSIDS, "LOOKUPSIDS",
490 winbindd_lookupsids_send, winbindd_lookupsids_recv },
491 { WINBINDD_LOOKUPNAME, "LOOKUPNAME",
492 winbindd_lookupname_send, winbindd_lookupname_recv },
493 { WINBINDD_SID_TO_UID, "SID_TO_UID",
494 winbindd_sid_to_uid_send, winbindd_sid_to_uid_recv },
495 { WINBINDD_SID_TO_GID, "SID_TO_GID",
496 winbindd_sid_to_gid_send, winbindd_sid_to_gid_recv },
497 { WINBINDD_UID_TO_SID, "UID_TO_SID",
498 winbindd_uid_to_sid_send, winbindd_uid_to_sid_recv },
499 { WINBINDD_GID_TO_SID, "GID_TO_SID",
500 winbindd_gid_to_sid_send, winbindd_gid_to_sid_recv },
501 { WINBINDD_SIDS_TO_XIDS, "SIDS_TO_XIDS",
502 winbindd_sids_to_xids_send, winbindd_sids_to_xids_recv },
503 { WINBINDD_GETPWSID, "GETPWSID",
504 winbindd_getpwsid_send, winbindd_getpwsid_recv },
505 { WINBINDD_GETPWNAM, "GETPWNAM",
506 winbindd_getpwnam_send, winbindd_getpwnam_recv },
507 { WINBINDD_GETPWUID, "GETPWUID",
508 winbindd_getpwuid_send, winbindd_getpwuid_recv },
509 { WINBINDD_GETSIDALIASES, "GETSIDALIASES",
510 winbindd_getsidaliases_send, winbindd_getsidaliases_recv },
511 { WINBINDD_GETUSERDOMGROUPS, "GETUSERDOMGROUPS",
512 winbindd_getuserdomgroups_send, winbindd_getuserdomgroups_recv },
513 { WINBINDD_GETGROUPS, "GETGROUPS",
514 winbindd_getgroups_send, winbindd_getgroups_recv },
515 { WINBINDD_SHOW_SEQUENCE, "SHOW_SEQUENCE",
516 winbindd_show_sequence_send, winbindd_show_sequence_recv },
517 { WINBINDD_GETGRGID, "GETGRGID",
518 winbindd_getgrgid_send, winbindd_getgrgid_recv },
519 { WINBINDD_GETGRNAM, "GETGRNAM",
520 winbindd_getgrnam_send, winbindd_getgrnam_recv },
521 { WINBINDD_GETUSERSIDS, "GETUSERSIDS",
522 winbindd_getusersids_send, winbindd_getusersids_recv },
523 { WINBINDD_LOOKUPRIDS, "LOOKUPRIDS",
524 winbindd_lookuprids_send, winbindd_lookuprids_recv },
525 { WINBINDD_SETPWENT, "SETPWENT",
526 winbindd_setpwent_send, winbindd_setpwent_recv },
527 { WINBINDD_GETPWENT, "GETPWENT",
528 winbindd_getpwent_send, winbindd_getpwent_recv },
529 { WINBINDD_ENDPWENT, "ENDPWENT",
530 winbindd_endpwent_send, winbindd_endpwent_recv },
531 { WINBINDD_DSGETDCNAME, "DSGETDCNAME",
532 winbindd_dsgetdcname_send, winbindd_dsgetdcname_recv },
533 { WINBINDD_GETDCNAME, "GETDCNAME",
534 winbindd_getdcname_send, winbindd_getdcname_recv },
535 { WINBINDD_SETGRENT, "SETGRENT",
536 winbindd_setgrent_send, winbindd_setgrent_recv },
537 { WINBINDD_GETGRENT, "GETGRENT",
538 winbindd_getgrent_send, winbindd_getgrent_recv },
539 { WINBINDD_ENDGRENT, "ENDGRENT",
540 winbindd_endgrent_send, winbindd_endgrent_recv },
541 { WINBINDD_LIST_USERS, "LIST_USERS",
542 winbindd_list_users_send, winbindd_list_users_recv },
543 { WINBINDD_LIST_GROUPS, "LIST_GROUPS",
544 winbindd_list_groups_send, winbindd_list_groups_recv },
545 { WINBINDD_CHECK_MACHACC, "CHECK_MACHACC",
546 winbindd_check_machine_acct_send, winbindd_check_machine_acct_recv },
547 { WINBINDD_PING_DC, "PING_DC",
548 winbindd_ping_dc_send, winbindd_ping_dc_recv },
549 { WINBINDD_PAM_AUTH, "PAM_AUTH",
550 winbindd_pam_auth_send, winbindd_pam_auth_recv },
551 { WINBINDD_PAM_LOGOFF, "PAM_LOGOFF",
552 winbindd_pam_logoff_send, winbindd_pam_logoff_recv },
553 { WINBINDD_PAM_CHAUTHTOK, "PAM_CHAUTHTOK",
554 winbindd_pam_chauthtok_send, winbindd_pam_chauthtok_recv },
555 { WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP, "PAM_CHNG_PSWD_AUTH_CRAP",
556 winbindd_pam_chng_pswd_auth_crap_send,
557 winbindd_pam_chng_pswd_auth_crap_recv },
559 { 0, NULL, NULL, NULL }
562 static struct winbindd_async_dispatch_table async_priv_table[] = {
563 { WINBINDD_ALLOCATE_UID, "ALLOCATE_UID",
564 winbindd_allocate_uid_send, winbindd_allocate_uid_recv },
565 { WINBINDD_ALLOCATE_GID, "ALLOCATE_GID",
566 winbindd_allocate_gid_send, winbindd_allocate_gid_recv },
567 { WINBINDD_CHANGE_MACHACC, "CHANGE_MACHACC",
568 winbindd_change_machine_acct_send, winbindd_change_machine_acct_recv },
569 { WINBINDD_PAM_AUTH_CRAP, "PAM_AUTH_CRAP",
570 winbindd_pam_auth_crap_send, winbindd_pam_auth_crap_recv },
572 { 0, NULL, NULL, NULL }
575 static void wb_request_done(struct tevent_req *req);
577 static void process_request(struct winbindd_cli_state *state)
579 struct winbindd_dispatch_table *table = dispatch_table;
580 struct winbindd_async_dispatch_table *atable;
582 state->mem_ctx = talloc_named(state, 0, "winbind request");
583 if (state->mem_ctx == NULL)
584 return;
586 /* Remember who asked us. */
587 state->pid = state->request->pid;
589 state->cmd_name = "unknown request";
590 state->recv_fn = NULL;
591 state->last_access = time(NULL);
593 /* Process command */
595 for (atable = async_nonpriv_table; atable->send_req; atable += 1) {
596 if (state->request->cmd == atable->cmd) {
597 break;
601 if ((atable->send_req == NULL) && state->privileged) {
602 for (atable = async_priv_table; atable->send_req;
603 atable += 1) {
604 if (state->request->cmd == atable->cmd) {
605 break;
610 if (atable->send_req != NULL) {
611 struct tevent_req *req;
613 state->cmd_name = atable->cmd_name;
614 state->recv_fn = atable->recv_req;
616 DEBUG(10, ("process_request: Handling async request %d:%s\n",
617 (int)state->pid, state->cmd_name));
619 req = atable->send_req(state->mem_ctx, winbind_event_context(),
620 state, state->request);
621 if (req == NULL) {
622 DEBUG(0, ("process_request: atable->send failed for "
623 "%s\n", atable->cmd_name));
624 request_error(state);
625 return;
627 tevent_req_set_callback(req, wb_request_done, state);
628 return;
631 state->response = talloc_zero(state->mem_ctx,
632 struct winbindd_response);
633 if (state->response == NULL) {
634 DEBUG(10, ("talloc failed\n"));
635 remove_client(state);
636 return;
638 state->response->result = WINBINDD_PENDING;
639 state->response->length = sizeof(struct winbindd_response);
641 for (table = dispatch_table; table->fn; table++) {
642 if (state->request->cmd == table->cmd) {
643 DEBUG(10,("process_request: request fn %s\n",
644 table->winbindd_cmd_name ));
645 state->cmd_name = table->winbindd_cmd_name;
646 table->fn(state);
647 break;
651 if (!table->fn) {
652 DEBUG(10,("process_request: unknown request fn number %d\n",
653 (int)state->request->cmd ));
654 request_error(state);
658 static void wb_request_done(struct tevent_req *req)
660 struct winbindd_cli_state *state = tevent_req_callback_data(
661 req, struct winbindd_cli_state);
662 NTSTATUS status;
664 state->response = talloc_zero(state->mem_ctx,
665 struct winbindd_response);
666 if (state->response == NULL) {
667 DEBUG(0, ("wb_request_done[%d:%s]: talloc_zero failed - removing client\n",
668 (int)state->pid, state->cmd_name));
669 remove_client(state);
670 return;
672 state->response->result = WINBINDD_PENDING;
673 state->response->length = sizeof(struct winbindd_response);
675 status = state->recv_fn(req, state->response);
676 TALLOC_FREE(req);
678 DEBUG(10,("wb_request_done[%d:%s]: %s\n",
679 (int)state->pid, state->cmd_name, nt_errstr(status)));
681 if (!NT_STATUS_IS_OK(status)) {
682 request_error(state);
683 return;
685 request_ok(state);
689 * This is the main event loop of winbind requests. It goes through a
690 * state-machine of 3 read/write requests, 4 if you have extra data to send.
692 * An idle winbind client has a read request of 4 bytes outstanding,
693 * finalizing function is request_len_recv, checking the length. request_recv
694 * then processes the packet. The processing function then at some point has
695 * to call request_finished which schedules sending the response.
698 static void request_finished(struct winbindd_cli_state *state);
700 static void winbind_client_request_read(struct tevent_req *req);
701 static void winbind_client_response_written(struct tevent_req *req);
703 static void request_finished(struct winbindd_cli_state *state)
705 struct tevent_req *req;
707 TALLOC_FREE(state->request);
709 req = wb_resp_write_send(state, winbind_event_context(),
710 state->out_queue, state->sock,
711 state->response);
712 if (req == NULL) {
713 DEBUG(10,("request_finished[%d:%s]: wb_resp_write_send() failed\n",
714 (int)state->pid, state->cmd_name));
715 remove_client(state);
716 return;
718 tevent_req_set_callback(req, winbind_client_response_written, state);
721 static void winbind_client_response_written(struct tevent_req *req)
723 struct winbindd_cli_state *state = tevent_req_callback_data(
724 req, struct winbindd_cli_state);
725 ssize_t ret;
726 int err;
728 ret = wb_resp_write_recv(req, &err);
729 TALLOC_FREE(req);
730 if (ret == -1) {
731 close(state->sock);
732 state->sock = -1;
733 DEBUG(2, ("Could not write response[%d:%s] to client: %s\n",
734 (int)state->pid, state->cmd_name, strerror(err)));
735 remove_client(state);
736 return;
739 DEBUG(10,("winbind_client_response_written[%d:%s]: delivered response "
740 "to client\n", (int)state->pid, state->cmd_name));
742 TALLOC_FREE(state->mem_ctx);
743 state->response = NULL;
744 state->cmd_name = "no request";
745 state->recv_fn = NULL;
747 req = wb_req_read_send(state, winbind_event_context(), state->sock,
748 WINBINDD_MAX_EXTRA_DATA);
749 if (req == NULL) {
750 remove_client(state);
751 return;
753 tevent_req_set_callback(req, winbind_client_request_read, state);
756 void request_error(struct winbindd_cli_state *state)
758 SMB_ASSERT(state->response->result == WINBINDD_PENDING);
759 state->response->result = WINBINDD_ERROR;
760 request_finished(state);
763 void request_ok(struct winbindd_cli_state *state)
765 SMB_ASSERT(state->response->result == WINBINDD_PENDING);
766 state->response->result = WINBINDD_OK;
767 request_finished(state);
770 /* Process a new connection by adding it to the client connection list */
772 static void new_connection(int listen_sock, bool privileged)
774 struct sockaddr_un sunaddr;
775 struct winbindd_cli_state *state;
776 struct tevent_req *req;
777 socklen_t len;
778 int sock;
780 /* Accept connection */
782 len = sizeof(sunaddr);
784 sock = accept(listen_sock, (struct sockaddr *)(void *)&sunaddr, &len);
786 if (sock == -1) {
787 if (errno != EINTR) {
788 DEBUG(0, ("Faild to accept socket - %s\n",
789 strerror(errno)));
791 return;
794 DEBUG(6,("accepted socket %d\n", sock));
796 /* Create new connection structure */
798 if ((state = TALLOC_ZERO_P(NULL, struct winbindd_cli_state)) == NULL) {
799 close(sock);
800 return;
803 state->sock = sock;
805 state->out_queue = tevent_queue_create(state, "winbind client reply");
806 if (state->out_queue == NULL) {
807 close(sock);
808 TALLOC_FREE(state);
809 return;
812 state->last_access = time(NULL);
814 state->privileged = privileged;
816 req = wb_req_read_send(state, winbind_event_context(), state->sock,
817 WINBINDD_MAX_EXTRA_DATA);
818 if (req == NULL) {
819 TALLOC_FREE(state);
820 close(sock);
821 return;
823 tevent_req_set_callback(req, winbind_client_request_read, state);
825 /* Add to connection list */
827 winbindd_add_client(state);
830 static void winbind_client_request_read(struct tevent_req *req)
832 struct winbindd_cli_state *state = tevent_req_callback_data(
833 req, struct winbindd_cli_state);
834 ssize_t ret;
835 int err;
837 ret = wb_req_read_recv(req, state, &state->request, &err);
838 TALLOC_FREE(req);
839 if (ret == -1) {
840 if (err == EPIPE) {
841 DEBUG(6, ("closing socket %d, client exited\n",
842 state->sock));
843 } else {
844 DEBUG(2, ("Could not read client request from fd %d: "
845 "%s\n", state->sock, strerror(err)));
847 close(state->sock);
848 state->sock = -1;
849 remove_client(state);
850 return;
852 process_request(state);
855 /* Remove a client connection from client connection list */
857 static void remove_client(struct winbindd_cli_state *state)
859 char c = 0;
860 int nwritten;
862 /* It's a dead client - hold a funeral */
864 if (state == NULL) {
865 return;
868 if (state->sock != -1) {
869 /* tell client, we are closing ... */
870 nwritten = write(state->sock, &c, sizeof(c));
871 if (nwritten == -1) {
872 DEBUG(2, ("final write to client failed: %s\n",
873 strerror(errno)));
876 /* Close socket */
878 close(state->sock);
879 state->sock = -1;
882 TALLOC_FREE(state->mem_ctx);
884 /* Remove from list and free */
886 winbindd_remove_client(state);
887 TALLOC_FREE(state);
890 /* Is a client idle? */
892 static bool client_is_idle(struct winbindd_cli_state *state) {
893 return (state->request == NULL &&
894 state->response == NULL &&
895 !state->pwent_state && !state->grent_state);
898 /* Shutdown client connection which has been idle for the longest time */
900 static bool remove_idle_client(void)
902 struct winbindd_cli_state *state, *remove_state = NULL;
903 time_t last_access = 0;
904 int nidle = 0;
906 for (state = winbindd_client_list(); state; state = state->next) {
907 if (client_is_idle(state)) {
908 nidle++;
909 if (!last_access || state->last_access < last_access) {
910 last_access = state->last_access;
911 remove_state = state;
916 if (remove_state) {
917 DEBUG(5,("Found %d idle client connections, shutting down sock %d, pid %u\n",
918 nidle, remove_state->sock, (unsigned int)remove_state->pid));
919 remove_client(remove_state);
920 return True;
923 return False;
926 struct winbindd_listen_state {
927 bool privileged;
928 int fd;
931 static void winbindd_listen_fde_handler(struct tevent_context *ev,
932 struct tevent_fd *fde,
933 uint16_t flags,
934 void *private_data)
936 struct winbindd_listen_state *s = talloc_get_type_abort(private_data,
937 struct winbindd_listen_state);
939 while (winbindd_num_clients() > lp_winbind_max_clients() - 1) {
940 DEBUG(5,("winbindd: Exceeding %d client "
941 "connections, removing idle "
942 "connection.\n", lp_winbind_max_clients()));
943 if (!remove_idle_client()) {
944 DEBUG(0,("winbindd: Exceeding %d "
945 "client connections, no idle "
946 "connection found\n",
947 lp_winbind_max_clients()));
948 break;
951 new_connection(s->fd, s->privileged);
955 * Winbindd socket accessor functions
958 const char *get_winbind_pipe_dir(void)
960 return lp_parm_const_string(-1, "winbindd", "socket dir", WINBINDD_SOCKET_DIR);
963 char *get_winbind_priv_pipe_dir(void)
965 return lock_path(WINBINDD_PRIV_SOCKET_SUBDIR);
968 static bool winbindd_setup_listeners(void)
970 struct winbindd_listen_state *pub_state = NULL;
971 struct winbindd_listen_state *priv_state = NULL;
972 struct tevent_fd *fde;
974 pub_state = talloc(winbind_event_context(),
975 struct winbindd_listen_state);
976 if (!pub_state) {
977 goto failed;
980 pub_state->privileged = false;
981 pub_state->fd = create_pipe_sock(
982 get_winbind_pipe_dir(), WINBINDD_SOCKET_NAME, 0755);
983 if (pub_state->fd == -1) {
984 goto failed;
987 fde = tevent_add_fd(winbind_event_context(), pub_state, pub_state->fd,
988 TEVENT_FD_READ, winbindd_listen_fde_handler,
989 pub_state);
990 if (fde == NULL) {
991 close(pub_state->fd);
992 goto failed;
994 tevent_fd_set_auto_close(fde);
996 priv_state = talloc(winbind_event_context(),
997 struct winbindd_listen_state);
998 if (!priv_state) {
999 goto failed;
1002 priv_state->privileged = true;
1003 priv_state->fd = create_pipe_sock(
1004 get_winbind_priv_pipe_dir(), WINBINDD_SOCKET_NAME, 0750);
1005 if (priv_state->fd == -1) {
1006 goto failed;
1009 fde = tevent_add_fd(winbind_event_context(), priv_state,
1010 priv_state->fd, TEVENT_FD_READ,
1011 winbindd_listen_fde_handler, priv_state);
1012 if (fde == NULL) {
1013 close(priv_state->fd);
1014 goto failed;
1016 tevent_fd_set_auto_close(fde);
1018 return true;
1019 failed:
1020 TALLOC_FREE(pub_state);
1021 TALLOC_FREE(priv_state);
1022 return false;
1025 bool winbindd_use_idmap_cache(void)
1027 return !opt_nocache;
1030 bool winbindd_use_cache(void)
1032 return !opt_nocache;
1035 void winbindd_register_handlers(void)
1037 /* Setup signal handlers */
1039 if (!winbindd_setup_sig_term_handler(true))
1040 exit(1);
1041 if (!winbindd_setup_sig_hup_handler(NULL))
1042 exit(1);
1043 if (!winbindd_setup_sig_chld_handler())
1044 exit(1);
1045 if (!winbindd_setup_sig_usr2_handler())
1046 exit(1);
1048 CatchSignal(SIGPIPE, SIG_IGN); /* Ignore sigpipe */
1051 * Ensure all cache and idmap caches are consistent
1052 * and initialized before we startup.
1054 if (!winbindd_cache_validate_and_initialize()) {
1055 exit(1);
1058 /* get broadcast messages */
1060 if (!serverid_register(procid_self(),
1061 FLAG_MSG_GENERAL|FLAG_MSG_DBWRAP)) {
1062 DEBUG(1, ("Could not register myself in serverid.tdb\n"));
1063 exit(1);
1066 /* React on 'smbcontrol winbindd reload-config' in the same way
1067 as to SIGHUP signal */
1068 messaging_register(winbind_messaging_context(), NULL,
1069 MSG_SMB_CONF_UPDATED, msg_reload_services);
1070 messaging_register(winbind_messaging_context(), NULL,
1071 MSG_SHUTDOWN, msg_shutdown);
1073 /* Handle online/offline messages. */
1074 messaging_register(winbind_messaging_context(), NULL,
1075 MSG_WINBIND_OFFLINE, winbind_msg_offline);
1076 messaging_register(winbind_messaging_context(), NULL,
1077 MSG_WINBIND_ONLINE, winbind_msg_online);
1078 messaging_register(winbind_messaging_context(), NULL,
1079 MSG_WINBIND_ONLINESTATUS, winbind_msg_onlinestatus);
1081 /* Handle domain online/offline messages for domains */
1082 messaging_register(winbind_messaging_context(), NULL,
1083 MSG_WINBIND_DOMAIN_OFFLINE, winbind_msg_domain_offline);
1084 messaging_register(winbind_messaging_context(), NULL,
1085 MSG_WINBIND_DOMAIN_ONLINE, winbind_msg_domain_online);
1087 messaging_register(winbind_messaging_context(), NULL,
1088 MSG_DUMP_EVENT_LIST, winbind_msg_dump_event_list);
1090 messaging_register(winbind_messaging_context(), NULL,
1091 MSG_WINBIND_VALIDATE_CACHE,
1092 winbind_msg_validate_cache);
1094 messaging_register(winbind_messaging_context(), NULL,
1095 MSG_WINBIND_DUMP_DOMAIN_LIST,
1096 winbind_msg_dump_domain_list);
1098 messaging_register(winbind_messaging_context(), NULL,
1099 MSG_WINBIND_IP_DROPPED,
1100 winbind_msg_ip_dropped_parent);
1102 /* Register handler for MSG_DEBUG. */
1103 messaging_register(winbind_messaging_context(), NULL,
1104 MSG_DEBUG,
1105 winbind_msg_debug);
1107 netsamlogon_cache_init(); /* Non-critical */
1109 /* clear the cached list of trusted domains */
1111 wcache_tdc_clear();
1113 if (!init_domain_list()) {
1114 DEBUG(0,("unable to initialize domain list\n"));
1115 exit(1);
1118 init_idmap_child();
1119 init_locator_child();
1121 smb_nscd_flush_user_cache();
1122 smb_nscd_flush_group_cache();
1124 if (lp_allow_trusted_domains()) {
1125 if (tevent_add_timer(winbind_event_context(), NULL, timeval_zero(),
1126 rescan_trusted_domains, NULL) == NULL) {
1127 DEBUG(0, ("Could not trigger rescan_trusted_domains()\n"));
1128 exit(1);
1134 struct winbindd_addrchanged_state {
1135 struct addrchange_context *ctx;
1136 struct tevent_context *ev;
1137 struct messaging_context *msg_ctx;
1140 static void winbindd_addr_changed(struct tevent_req *req);
1142 static void winbindd_init_addrchange(TALLOC_CTX *mem_ctx,
1143 struct tevent_context *ev,
1144 struct messaging_context *msg_ctx)
1146 struct winbindd_addrchanged_state *state;
1147 struct tevent_req *req;
1148 NTSTATUS status;
1150 state = talloc(mem_ctx, struct winbindd_addrchanged_state);
1151 if (state == NULL) {
1152 DEBUG(10, ("talloc failed\n"));
1153 return;
1155 state->ev = ev;
1156 state->msg_ctx = msg_ctx;
1158 status = addrchange_context_create(state, &state->ctx);
1159 if (!NT_STATUS_IS_OK(status)) {
1160 DEBUG(10, ("addrchange_context_create failed: %s\n",
1161 nt_errstr(status)));
1162 TALLOC_FREE(state);
1163 return;
1165 req = addrchange_send(state, ev, state->ctx);
1166 if (req == NULL) {
1167 DEBUG(0, ("addrchange_send failed\n"));
1168 TALLOC_FREE(state);
1169 return;
1171 tevent_req_set_callback(req, winbindd_addr_changed, state);
1174 static void winbindd_addr_changed(struct tevent_req *req)
1176 struct winbindd_addrchanged_state *state = tevent_req_callback_data(
1177 req, struct winbindd_addrchanged_state);
1178 enum addrchange_type type;
1179 struct sockaddr_storage addr;
1180 NTSTATUS status;
1182 status = addrchange_recv(req, &type, &addr);
1183 TALLOC_FREE(req);
1184 if (!NT_STATUS_IS_OK(status)) {
1185 DEBUG(10, ("addrchange_recv failed: %s, stop listening\n",
1186 nt_errstr(status)));
1187 TALLOC_FREE(state);
1188 return;
1190 if (type == ADDRCHANGE_DEL) {
1191 char addrstr[INET6_ADDRSTRLEN];
1192 DATA_BLOB blob;
1194 print_sockaddr(addrstr, sizeof(addrstr), &addr);
1196 DEBUG(3, ("winbindd: kernel (AF_NETLINK) dropped ip %s\n",
1197 addrstr));
1199 blob = data_blob_const(addrstr, strlen(addrstr)+1);
1201 status = messaging_send(state->msg_ctx,
1202 messaging_server_id(state->msg_ctx),
1203 MSG_WINBIND_IP_DROPPED, &blob);
1204 if (!NT_STATUS_IS_OK(status)) {
1205 DEBUG(10, ("messaging_send failed: %s - ignoring\n",
1206 nt_errstr(status)));
1209 req = addrchange_send(state, state->ev, state->ctx);
1210 if (req == NULL) {
1211 DEBUG(0, ("addrchange_send failed\n"));
1212 TALLOC_FREE(state);
1213 return;
1215 tevent_req_set_callback(req, winbindd_addr_changed, state);
1218 /* Main function */
1220 int main(int argc, char **argv, char **envp)
1222 static bool is_daemon = False;
1223 static bool Fork = True;
1224 static bool log_stdout = False;
1225 static bool no_process_group = False;
1226 enum {
1227 OPT_DAEMON = 1000,
1228 OPT_FORK,
1229 OPT_NO_PROCESS_GROUP,
1230 OPT_LOG_STDOUT
1232 struct poptOption long_options[] = {
1233 POPT_AUTOHELP
1234 { "stdout", 'S', POPT_ARG_NONE, NULL, OPT_LOG_STDOUT, "Log to stdout" },
1235 { "foreground", 'F', POPT_ARG_NONE, NULL, OPT_FORK, "Daemon in foreground mode" },
1236 { "no-process-group", 0, POPT_ARG_NONE, NULL, OPT_NO_PROCESS_GROUP, "Don't create a new process group" },
1237 { "daemon", 'D', POPT_ARG_NONE, NULL, OPT_DAEMON, "Become a daemon (default)" },
1238 { "interactive", 'i', POPT_ARG_NONE, NULL, 'i', "Interactive mode" },
1239 { "no-caching", 'n', POPT_ARG_NONE, NULL, 'n', "Disable caching" },
1240 POPT_COMMON_SAMBA
1241 POPT_TABLEEND
1243 poptContext pc;
1244 int opt;
1245 TALLOC_CTX *frame;
1246 NTSTATUS status;
1249 * Do this before any other talloc operation
1251 talloc_enable_null_tracking();
1252 frame = talloc_stackframe();
1254 /* glibc (?) likes to print "User defined signal 1" and exit if a
1255 SIGUSR[12] is received before a handler is installed */
1257 CatchSignal(SIGUSR1, SIG_IGN);
1258 CatchSignal(SIGUSR2, SIG_IGN);
1260 fault_setup((void (*)(void *))fault_quit );
1261 dump_core_setup("winbindd");
1263 load_case_tables();
1265 /* Initialise for running in non-root mode */
1267 sec_init();
1269 set_remote_machine_name("winbindd", False);
1271 /* Set environment variable so we don't recursively call ourselves.
1272 This may also be useful interactively. */
1274 if ( !winbind_off() ) {
1275 DEBUG(0,("Failed to disable recusive winbindd calls. Exiting.\n"));
1276 exit(1);
1279 /* Initialise samba/rpc client stuff */
1281 pc = poptGetContext("winbindd", argc, (const char **)argv, long_options, 0);
1283 while ((opt = poptGetNextOpt(pc)) != -1) {
1284 switch (opt) {
1285 /* Don't become a daemon */
1286 case OPT_DAEMON:
1287 is_daemon = True;
1288 break;
1289 case 'i':
1290 interactive = True;
1291 log_stdout = True;
1292 Fork = False;
1293 break;
1294 case OPT_FORK:
1295 Fork = false;
1296 break;
1297 case OPT_NO_PROCESS_GROUP:
1298 no_process_group = true;
1299 break;
1300 case OPT_LOG_STDOUT:
1301 log_stdout = true;
1302 break;
1303 case 'n':
1304 opt_nocache = true;
1305 break;
1306 default:
1307 d_fprintf(stderr, "\nInvalid option %s: %s\n\n",
1308 poptBadOption(pc, 0), poptStrerror(opt));
1309 poptPrintUsage(pc, stderr, 0);
1310 exit(1);
1314 /* We call dump_core_setup one more time because the command line can
1315 * set the log file or the log-basename and this will influence where
1316 * cores are stored. Without this call get_dyn_LOGFILEBASE will be
1317 * the default value derived from build's prefix. For EOM this value
1318 * is often not related to the path where winbindd is actually run
1319 * in production.
1321 dump_core_setup("winbindd");
1323 if (is_daemon && interactive) {
1324 d_fprintf(stderr,"\nERROR: "
1325 "Option -i|--interactive is not allowed together with -D|--daemon\n\n");
1326 poptPrintUsage(pc, stderr, 0);
1327 exit(1);
1330 if (log_stdout && Fork) {
1331 d_fprintf(stderr, "\nERROR: "
1332 "Can't log to stdout (-S) unless daemon is in foreground +(-F) or interactive (-i)\n\n");
1333 poptPrintUsage(pc, stderr, 0);
1334 exit(1);
1337 poptFreeContext(pc);
1339 if (!override_logfile) {
1340 char *lfile = NULL;
1341 if (asprintf(&lfile,"%s/log.winbindd",
1342 get_dyn_LOGFILEBASE()) > 0) {
1343 lp_set_logfile(lfile);
1344 SAFE_FREE(lfile);
1347 if (log_stdout) {
1348 setup_logging("winbindd", DEBUG_STDOUT);
1349 } else {
1350 setup_logging("winbindd", DEBUG_FILE);
1352 reopen_logs();
1354 DEBUG(0,("winbindd version %s started.\n", samba_version_string()));
1355 DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE));
1357 if (!lp_load_initial_only(get_dyn_CONFIGFILE())) {
1358 DEBUG(0, ("error opening config file\n"));
1359 exit(1);
1361 /* After parsing the configuration file we setup the core path one more time
1362 * as the log file might have been set in the configuration and cores's
1363 * path is by default basename(lp_logfile()).
1365 dump_core_setup("winbindd");
1367 /* Initialise messaging system */
1369 if (winbind_messaging_context() == NULL) {
1370 exit(1);
1373 if (!reload_services_file(NULL)) {
1374 DEBUG(0, ("error opening config file\n"));
1375 exit(1);
1378 if (!directory_exist(lp_lockdir())) {
1379 mkdir(lp_lockdir(), 0755);
1382 /* Setup names. */
1384 if (!init_names())
1385 exit(1);
1387 load_interfaces();
1389 if (!secrets_init()) {
1391 DEBUG(0,("Could not initialize domain trust account secrets. Giving up\n"));
1392 return False;
1395 /* Unblock all signals we are interested in as they may have been
1396 blocked by the parent process. */
1398 BlockSignals(False, SIGINT);
1399 BlockSignals(False, SIGQUIT);
1400 BlockSignals(False, SIGTERM);
1401 BlockSignals(False, SIGUSR1);
1402 BlockSignals(False, SIGUSR2);
1403 BlockSignals(False, SIGHUP);
1404 BlockSignals(False, SIGCHLD);
1406 if (!interactive)
1407 become_daemon(Fork, no_process_group, log_stdout);
1409 pidfile_create("winbindd");
1411 #if HAVE_SETPGID
1413 * If we're interactive we want to set our own process group for
1414 * signal management.
1416 if (interactive && !no_process_group)
1417 setpgid( (pid_t)0, (pid_t)0);
1418 #endif
1420 TimeInit();
1422 /* Don't use winbindd_reinit_after_fork here as
1423 * we're just starting up and haven't created any
1424 * winbindd-specific resources we must free yet. JRA.
1427 status = reinit_after_fork(winbind_messaging_context(),
1428 winbind_event_context(),
1429 procid_self(), false);
1430 if (!NT_STATUS_IS_OK(status)) {
1431 DEBUG(0,("reinit_after_fork() failed\n"));
1432 exit(1);
1435 winbindd_register_handlers();
1437 status = init_system_info();
1438 if (!NT_STATUS_IS_OK(status)) {
1439 DEBUG(1, ("ERROR: failed to setup system user info: %s.\n",
1440 nt_errstr(status)));
1441 exit(1);
1444 rpc_lsarpc_init(NULL);
1445 rpc_samr_init(NULL);
1447 winbindd_init_addrchange(NULL, winbind_event_context(),
1448 winbind_messaging_context());
1450 /* setup listen sockets */
1452 if (!winbindd_setup_listeners()) {
1453 DEBUG(0,("winbindd_setup_listeners() failed\n"));
1454 exit(1);
1457 TALLOC_FREE(frame);
1458 /* Loop waiting for requests */
1459 while (1) {
1460 frame = talloc_stackframe();
1462 if (tevent_loop_once(winbind_event_context()) == -1) {
1463 DEBUG(1, ("tevent_loop_once() failed: %s\n",
1464 strerror(errno)));
1465 return 1;
1468 TALLOC_FREE(frame);
1471 return 0;