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/>.
26 #include "popt_common.h"
28 #include "../../nsswitch/libwbclient/wbc_async.h"
29 #include "librpc/gen_ndr/messaging.h"
30 #include "../librpc/gen_ndr/srv_lsa.h"
31 #include "../librpc/gen_ndr/srv_samr.h"
35 #define DBGC_CLASS DBGC_WINBIND
37 static void remove_client(struct winbindd_cli_state
*state
);
39 static bool opt_nocache
= False
;
40 static bool interactive
= False
;
42 extern bool override_logfile
;
44 /* Reload configuration */
46 static bool reload_services_file(const char *lfile
)
51 const char *fname
= lp_configfile();
53 if (file_exist(fname
) && !strcsequal(fname
,get_dyn_CONFIGFILE())) {
54 set_dyn_CONFIGFILE(fname
);
58 /* if this is a child, restore the logfile to the special
59 name - <domain>, idmap, etc. */
60 if (lfile
&& *lfile
) {
61 lp_set_logfile(lfile
);
65 ret
= lp_load(get_dyn_CONFIGFILE(),False
,False
,True
,True
);
74 /**************************************************************************** **
76 **************************************************************************** */
78 static void fault_quit(void)
83 static void winbindd_status(void)
85 struct winbindd_cli_state
*tmp
;
87 DEBUG(0, ("winbindd status:\n"));
89 /* Print client state information */
91 DEBUG(0, ("\t%d clients currently active\n", winbindd_num_clients()));
93 if (DEBUGLEVEL
>= 2 && winbindd_num_clients()) {
94 DEBUG(2, ("\tclient list:\n"));
95 for(tmp
= winbindd_client_list(); tmp
; tmp
= tmp
->next
) {
96 DEBUGADD(2, ("\t\tpid %lu, sock %d\n",
97 (unsigned long)tmp
->pid
, tmp
->sock
));
102 /* Print winbindd status to log file */
104 static void print_winbindd_status(void)
109 /* Flush client cache */
111 static void flush_caches(void)
113 /* We need to invalidate cached user list entries on a SIGHUP
114 otherwise cached access denied errors due to restrict anonymous
115 hang around until the sequence number changes. */
117 if (!wcache_invalidate_cache()) {
118 DEBUG(0, ("invalidating the cache failed; revalidate the cache\n"));
119 if (!winbindd_cache_validate_and_initialize()) {
125 static void flush_caches_noinit(void)
128 * We need to invalidate cached user list entries on a SIGHUP
129 * otherwise cached access denied errors due to restrict anonymous
130 * hang around until the sequence number changes.
132 * Skip uninitialized domains when flush cache.
133 * If domain is not initialized, it means it is never
134 * used or never become online. look, wcache_invalidate_cache()
135 * -> get_cache() -> init_dc_connection(). It causes a lot of traffic
136 * for unused domains and large traffic for primay domain's DC if there
140 if (!wcache_invalidate_cache_noinit()) {
141 DEBUG(0, ("invalidating the cache failed; revalidate the cache\n"));
142 if (!winbindd_cache_validate_and_initialize()) {
148 /* Handle the signal by unlinking socket and exiting */
150 static void terminate(bool is_parent
)
153 /* When parent goes away we should
154 * remove the socket file. Not so
155 * when children terminate.
159 if (asprintf(&path
, "%s/%s",
160 get_winbind_pipe_dir(), WINBINDD_SOCKET_NAME
) > 0) {
168 trustdom_cache_shutdown();
170 gencache_stabilize();
174 TALLOC_CTX
*mem_ctx
= talloc_init("end_description");
175 char *description
= talloc_describe_all(mem_ctx
);
177 DEBUG(3, ("tallocs left:\n%s\n", description
));
178 talloc_destroy(mem_ctx
);
183 serverid_deregister(procid_self());
190 static void winbindd_sig_term_handler(struct tevent_context
*ev
,
191 struct tevent_signal
*se
,
197 bool *is_parent
= talloc_get_type_abort(private_data
, bool);
199 DEBUG(0,("Got sig[%d] terminate (is_parent=%d)\n",
200 signum
, (int)*is_parent
));
201 terminate(*is_parent
);
204 bool winbindd_setup_sig_term_handler(bool parent
)
206 struct tevent_signal
*se
;
209 is_parent
= talloc(winbind_event_context(), bool);
216 se
= tevent_add_signal(winbind_event_context(),
219 winbindd_sig_term_handler
,
222 DEBUG(0,("failed to setup SIGTERM handler"));
223 talloc_free(is_parent
);
227 se
= tevent_add_signal(winbind_event_context(),
230 winbindd_sig_term_handler
,
233 DEBUG(0,("failed to setup SIGINT handler"));
234 talloc_free(is_parent
);
238 se
= tevent_add_signal(winbind_event_context(),
241 winbindd_sig_term_handler
,
244 DEBUG(0,("failed to setup SIGINT handler"));
245 talloc_free(is_parent
);
252 static void winbindd_sig_hup_handler(struct tevent_context
*ev
,
253 struct tevent_signal
*se
,
259 const char *file
= (const char *)private_data
;
261 DEBUG(1,("Reloading services after SIGHUP\n"));
262 flush_caches_noinit();
263 reload_services_file(file
);
266 bool winbindd_setup_sig_hup_handler(const char *lfile
)
268 struct tevent_signal
*se
;
272 file
= talloc_strdup(winbind_event_context(),
279 se
= tevent_add_signal(winbind_event_context(),
280 winbind_event_context(),
282 winbindd_sig_hup_handler
,
291 static void winbindd_sig_chld_handler(struct tevent_context
*ev
,
292 struct tevent_signal
*se
,
300 while ((pid
= sys_waitpid(-1, NULL
, WNOHANG
)) > 0) {
301 winbind_child_died(pid
);
305 static bool winbindd_setup_sig_chld_handler(void)
307 struct tevent_signal
*se
;
309 se
= tevent_add_signal(winbind_event_context(),
310 winbind_event_context(),
312 winbindd_sig_chld_handler
,
321 static void winbindd_sig_usr2_handler(struct tevent_context
*ev
,
322 struct tevent_signal
*se
,
328 print_winbindd_status();
331 static bool winbindd_setup_sig_usr2_handler(void)
333 struct tevent_signal
*se
;
335 se
= tevent_add_signal(winbind_event_context(),
336 winbind_event_context(),
338 winbindd_sig_usr2_handler
,
347 /* React on 'smbcontrol winbindd reload-config' in the same way as on SIGHUP*/
348 static void msg_reload_services(struct messaging_context
*msg
,
351 struct server_id server_id
,
354 /* Flush various caches */
356 reload_services_file((const char *) private_data
);
359 /* React on 'smbcontrol winbindd shutdown' in the same way as on SIGTERM*/
360 static void msg_shutdown(struct messaging_context
*msg
,
363 struct server_id server_id
,
366 /* only the parent waits for this message */
367 DEBUG(0,("Got shutdown message\n"));
372 static void winbind_msg_validate_cache(struct messaging_context
*msg_ctx
,
375 struct server_id server_id
,
381 DEBUG(10, ("winbindd_msg_validate_cache: got validate-cache "
385 * call the validation code from a child:
386 * so we don't block the main winbindd and the validation
387 * code can safely use fork/waitpid...
389 child_pid
= sys_fork();
391 if (child_pid
== -1) {
392 DEBUG(1, ("winbind_msg_validate_cache: Could not fork: %s\n",
397 if (child_pid
!= 0) {
399 DEBUG(5, ("winbind_msg_validate_cache: child created with "
400 "pid %d.\n", (int)child_pid
));
406 if (!winbindd_reinit_after_fork(NULL
)) {
410 /* install default SIGCHLD handler: validation code uses fork/waitpid */
411 CatchSignal(SIGCHLD
, SIG_DFL
);
413 ret
= (uint8
)winbindd_validate_cache_nobackup();
414 DEBUG(10, ("winbindd_msg_validata_cache: got return value %d\n", ret
));
415 messaging_send_buf(msg_ctx
, server_id
, MSG_WINBIND_VALIDATE_CACHE
, &ret
,
420 static struct winbindd_dispatch_table
{
421 enum winbindd_cmd cmd
;
422 void (*fn
)(struct winbindd_cli_state
*state
);
423 const char *winbindd_cmd_name
;
424 } dispatch_table
[] = {
426 /* Enumeration functions */
428 { WINBINDD_LIST_TRUSTDOM
, winbindd_list_trusted_domains
,
433 { WINBINDD_INFO
, winbindd_info
, "INFO" },
434 { WINBINDD_INTERFACE_VERSION
, winbindd_interface_version
,
435 "INTERFACE_VERSION" },
436 { WINBINDD_DOMAIN_NAME
, winbindd_domain_name
, "DOMAIN_NAME" },
437 { WINBINDD_DOMAIN_INFO
, winbindd_domain_info
, "DOMAIN_INFO" },
438 { WINBINDD_NETBIOS_NAME
, winbindd_netbios_name
, "NETBIOS_NAME" },
439 { WINBINDD_PRIV_PIPE_DIR
, winbindd_priv_pipe_dir
,
440 "WINBINDD_PRIV_PIPE_DIR" },
442 /* Credential cache access */
443 { WINBINDD_CCACHE_NTLMAUTH
, winbindd_ccache_ntlm_auth
, "NTLMAUTH" },
444 { WINBINDD_CCACHE_SAVE
, winbindd_ccache_save
, "CCACHE_SAVE" },
448 { WINBINDD_WINS_BYNAME
, winbindd_wins_byname
, "WINS_BYNAME" },
449 { WINBINDD_WINS_BYIP
, winbindd_wins_byip
, "WINS_BYIP" },
453 { WINBINDD_NUM_CMDS
, NULL
, "NONE" }
456 struct winbindd_async_dispatch_table
{
457 enum winbindd_cmd cmd
;
458 const char *cmd_name
;
459 struct tevent_req
*(*send_req
)(TALLOC_CTX
*mem_ctx
,
460 struct tevent_context
*ev
,
461 struct winbindd_cli_state
*cli
,
462 struct winbindd_request
*request
);
463 NTSTATUS (*recv_req
)(struct tevent_req
*req
,
464 struct winbindd_response
*presp
);
467 static struct winbindd_async_dispatch_table async_nonpriv_table
[] = {
468 { WINBINDD_PING
, "PING",
469 wb_ping_send
, wb_ping_recv
},
470 { WINBINDD_LOOKUPSID
, "LOOKUPSID",
471 winbindd_lookupsid_send
, winbindd_lookupsid_recv
},
472 { WINBINDD_LOOKUPNAME
, "LOOKUPNAME",
473 winbindd_lookupname_send
, winbindd_lookupname_recv
},
474 { WINBINDD_SID_TO_UID
, "SID_TO_UID",
475 winbindd_sid_to_uid_send
, winbindd_sid_to_uid_recv
},
476 { WINBINDD_SID_TO_GID
, "SID_TO_GID",
477 winbindd_sid_to_gid_send
, winbindd_sid_to_gid_recv
},
478 { WINBINDD_UID_TO_SID
, "UID_TO_SID",
479 winbindd_uid_to_sid_send
, winbindd_uid_to_sid_recv
},
480 { WINBINDD_GID_TO_SID
, "GID_TO_SID",
481 winbindd_gid_to_sid_send
, winbindd_gid_to_sid_recv
},
482 { WINBINDD_GETPWSID
, "GETPWSID",
483 winbindd_getpwsid_send
, winbindd_getpwsid_recv
},
484 { WINBINDD_GETPWNAM
, "GETPWNAM",
485 winbindd_getpwnam_send
, winbindd_getpwnam_recv
},
486 { WINBINDD_GETPWUID
, "GETPWUID",
487 winbindd_getpwuid_send
, winbindd_getpwuid_recv
},
488 { WINBINDD_GETSIDALIASES
, "GETSIDALIASES",
489 winbindd_getsidaliases_send
, winbindd_getsidaliases_recv
},
490 { WINBINDD_GETUSERDOMGROUPS
, "GETUSERDOMGROUPS",
491 winbindd_getuserdomgroups_send
, winbindd_getuserdomgroups_recv
},
492 { WINBINDD_GETGROUPS
, "GETGROUPS",
493 winbindd_getgroups_send
, winbindd_getgroups_recv
},
494 { WINBINDD_SHOW_SEQUENCE
, "SHOW_SEQUENCE",
495 winbindd_show_sequence_send
, winbindd_show_sequence_recv
},
496 { WINBINDD_GETGRGID
, "GETGRGID",
497 winbindd_getgrgid_send
, winbindd_getgrgid_recv
},
498 { WINBINDD_GETGRNAM
, "GETGRNAM",
499 winbindd_getgrnam_send
, winbindd_getgrnam_recv
},
500 { WINBINDD_GETUSERSIDS
, "GETUSERSIDS",
501 winbindd_getusersids_send
, winbindd_getusersids_recv
},
502 { WINBINDD_LOOKUPRIDS
, "LOOKUPRIDS",
503 winbindd_lookuprids_send
, winbindd_lookuprids_recv
},
504 { WINBINDD_SETPWENT
, "SETPWENT",
505 winbindd_setpwent_send
, winbindd_setpwent_recv
},
506 { WINBINDD_GETPWENT
, "GETPWENT",
507 winbindd_getpwent_send
, winbindd_getpwent_recv
},
508 { WINBINDD_ENDPWENT
, "ENDPWENT",
509 winbindd_endpwent_send
, winbindd_endpwent_recv
},
510 { WINBINDD_DSGETDCNAME
, "DSGETDCNAME",
511 winbindd_dsgetdcname_send
, winbindd_dsgetdcname_recv
},
512 { WINBINDD_GETDCNAME
, "GETDCNAME",
513 winbindd_getdcname_send
, winbindd_getdcname_recv
},
514 { WINBINDD_SETGRENT
, "SETGRENT",
515 winbindd_setgrent_send
, winbindd_setgrent_recv
},
516 { WINBINDD_GETGRENT
, "GETGRENT",
517 winbindd_getgrent_send
, winbindd_getgrent_recv
},
518 { WINBINDD_ENDGRENT
, "ENDGRENT",
519 winbindd_endgrent_send
, winbindd_endgrent_recv
},
520 { WINBINDD_LIST_USERS
, "LIST_USERS",
521 winbindd_list_users_send
, winbindd_list_users_recv
},
522 { WINBINDD_LIST_GROUPS
, "LIST_GROUPS",
523 winbindd_list_groups_send
, winbindd_list_groups_recv
},
524 { WINBINDD_CHECK_MACHACC
, "CHECK_MACHACC",
525 winbindd_check_machine_acct_send
, winbindd_check_machine_acct_recv
},
526 { WINBINDD_PING_DC
, "PING_DC",
527 winbindd_ping_dc_send
, winbindd_ping_dc_recv
},
528 { WINBINDD_PAM_AUTH
, "PAM_AUTH",
529 winbindd_pam_auth_send
, winbindd_pam_auth_recv
},
530 { WINBINDD_PAM_LOGOFF
, "PAM_LOGOFF",
531 winbindd_pam_logoff_send
, winbindd_pam_logoff_recv
},
532 { WINBINDD_PAM_CHAUTHTOK
, "PAM_CHAUTHTOK",
533 winbindd_pam_chauthtok_send
, winbindd_pam_chauthtok_recv
},
534 { WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP
, "PAM_CHNG_PSWD_AUTH_CRAP",
535 winbindd_pam_chng_pswd_auth_crap_send
,
536 winbindd_pam_chng_pswd_auth_crap_recv
},
538 { 0, NULL
, NULL
, NULL
}
541 static struct winbindd_async_dispatch_table async_priv_table
[] = {
542 { WINBINDD_ALLOCATE_UID
, "ALLOCATE_UID",
543 winbindd_allocate_uid_send
, winbindd_allocate_uid_recv
},
544 { WINBINDD_ALLOCATE_GID
, "ALLOCATE_GID",
545 winbindd_allocate_gid_send
, winbindd_allocate_gid_recv
},
546 { WINBINDD_SET_MAPPING
, "SET_MAPPING",
547 winbindd_set_mapping_send
, winbindd_set_mapping_recv
},
548 { WINBINDD_REMOVE_MAPPING
, "SET_MAPPING",
549 winbindd_remove_mapping_send
, winbindd_remove_mapping_recv
},
550 { WINBINDD_SET_HWM
, "SET_HWM",
551 winbindd_set_hwm_send
, winbindd_set_hwm_recv
},
552 { WINBINDD_CHANGE_MACHACC
, "CHANGE_MACHACC",
553 winbindd_change_machine_acct_send
, winbindd_change_machine_acct_recv
},
554 { WINBINDD_PAM_AUTH_CRAP
, "PAM_AUTH_CRAP",
555 winbindd_pam_auth_crap_send
, winbindd_pam_auth_crap_recv
},
557 { 0, NULL
, NULL
, NULL
}
560 static void wb_request_done(struct tevent_req
*req
);
562 static void process_request(struct winbindd_cli_state
*state
)
564 struct winbindd_dispatch_table
*table
= dispatch_table
;
565 struct winbindd_async_dispatch_table
*atable
;
567 state
->mem_ctx
= talloc_named(state
, 0, "winbind request");
568 if (state
->mem_ctx
== NULL
)
571 /* Remember who asked us. */
572 state
->pid
= state
->request
->pid
;
574 state
->cmd_name
= "unknown request";
575 state
->recv_fn
= NULL
;
577 /* Process command */
579 for (atable
= async_nonpriv_table
; atable
->send_req
; atable
+= 1) {
580 if (state
->request
->cmd
== atable
->cmd
) {
585 if ((atable
->send_req
== NULL
) && state
->privileged
) {
586 for (atable
= async_priv_table
; atable
->send_req
;
588 if (state
->request
->cmd
== atable
->cmd
) {
594 if (atable
->send_req
!= NULL
) {
595 struct tevent_req
*req
;
597 state
->cmd_name
= atable
->cmd_name
;
598 state
->recv_fn
= atable
->recv_req
;
600 DEBUG(10, ("process_request: Handling async request %d:%s\n",
601 (int)state
->pid
, state
->cmd_name
));
603 req
= atable
->send_req(state
->mem_ctx
, winbind_event_context(),
604 state
, state
->request
);
606 DEBUG(0, ("process_request: atable->send failed for "
607 "%s\n", atable
->cmd_name
));
608 request_error(state
);
611 tevent_req_set_callback(req
, wb_request_done
, state
);
615 state
->response
= talloc_zero(state
->mem_ctx
,
616 struct winbindd_response
);
617 if (state
->response
== NULL
) {
618 DEBUG(10, ("talloc failed\n"));
619 remove_client(state
);
622 state
->response
->result
= WINBINDD_PENDING
;
623 state
->response
->length
= sizeof(struct winbindd_response
);
625 for (table
= dispatch_table
; table
->fn
; table
++) {
626 if (state
->request
->cmd
== table
->cmd
) {
627 DEBUG(10,("process_request: request fn %s\n",
628 table
->winbindd_cmd_name
));
629 state
->cmd_name
= table
->winbindd_cmd_name
;
636 DEBUG(10,("process_request: unknown request fn number %d\n",
637 (int)state
->request
->cmd
));
638 request_error(state
);
642 static void wb_request_done(struct tevent_req
*req
)
644 struct winbindd_cli_state
*state
= tevent_req_callback_data(
645 req
, struct winbindd_cli_state
);
648 state
->response
= talloc_zero(state
->mem_ctx
,
649 struct winbindd_response
);
650 if (state
->response
== NULL
) {
651 DEBUG(0, ("wb_request_done[%d:%s]: talloc_zero failed - removing client\n",
652 (int)state
->pid
, state
->cmd_name
));
653 remove_client(state
);
656 state
->response
->result
= WINBINDD_PENDING
;
657 state
->response
->length
= sizeof(struct winbindd_response
);
659 status
= state
->recv_fn(req
, state
->response
);
662 DEBUG(10,("wb_request_done[%d:%s]: %s\n",
663 (int)state
->pid
, state
->cmd_name
, nt_errstr(status
)));
665 if (!NT_STATUS_IS_OK(status
)) {
666 request_error(state
);
673 * This is the main event loop of winbind requests. It goes through a
674 * state-machine of 3 read/write requests, 4 if you have extra data to send.
676 * An idle winbind client has a read request of 4 bytes outstanding,
677 * finalizing function is request_len_recv, checking the length. request_recv
678 * then processes the packet. The processing function then at some point has
679 * to call request_finished which schedules sending the response.
682 static void request_finished(struct winbindd_cli_state
*state
);
684 static void winbind_client_request_read(struct tevent_req
*req
);
685 static void winbind_client_response_written(struct tevent_req
*req
);
687 static void request_finished(struct winbindd_cli_state
*state
)
689 struct tevent_req
*req
;
691 TALLOC_FREE(state
->request
);
693 req
= wb_resp_write_send(state
, winbind_event_context(),
694 state
->out_queue
, state
->sock
,
697 DEBUG(10,("request_finished[%d:%s]: wb_resp_write_send() failed\n",
698 (int)state
->pid
, state
->cmd_name
));
699 remove_client(state
);
702 tevent_req_set_callback(req
, winbind_client_response_written
, state
);
705 static void winbind_client_response_written(struct tevent_req
*req
)
707 struct winbindd_cli_state
*state
= tevent_req_callback_data(
708 req
, struct winbindd_cli_state
);
712 ret
= wb_resp_write_recv(req
, &err
);
717 DEBUG(2, ("Could not write response[%d:%s] to client: %s\n",
718 (int)state
->pid
, state
->cmd_name
, strerror(err
)));
719 remove_client(state
);
723 DEBUG(10,("winbind_client_response_written[%d:%s]: delivered response "
724 "to client\n", (int)state
->pid
, state
->cmd_name
));
726 TALLOC_FREE(state
->mem_ctx
);
727 state
->response
= NULL
;
728 state
->cmd_name
= "no request";
729 state
->recv_fn
= NULL
;
731 req
= wb_req_read_send(state
, winbind_event_context(), state
->sock
,
732 WINBINDD_MAX_EXTRA_DATA
);
734 remove_client(state
);
737 tevent_req_set_callback(req
, winbind_client_request_read
, state
);
740 void request_error(struct winbindd_cli_state
*state
)
742 SMB_ASSERT(state
->response
->result
== WINBINDD_PENDING
);
743 state
->response
->result
= WINBINDD_ERROR
;
744 request_finished(state
);
747 void request_ok(struct winbindd_cli_state
*state
)
749 SMB_ASSERT(state
->response
->result
== WINBINDD_PENDING
);
750 state
->response
->result
= WINBINDD_OK
;
751 request_finished(state
);
754 /* Process a new connection by adding it to the client connection list */
756 static void new_connection(int listen_sock
, bool privileged
)
758 struct sockaddr_un sunaddr
;
759 struct winbindd_cli_state
*state
;
760 struct tevent_req
*req
;
764 /* Accept connection */
766 len
= sizeof(sunaddr
);
769 sock
= accept(listen_sock
, (struct sockaddr
*)(void *)&sunaddr
,
771 } while (sock
== -1 && errno
== EINTR
);
776 DEBUG(6,("accepted socket %d\n", sock
));
778 /* Create new connection structure */
780 if ((state
= TALLOC_ZERO_P(NULL
, struct winbindd_cli_state
)) == NULL
) {
787 state
->out_queue
= tevent_queue_create(state
, "winbind client reply");
788 if (state
->out_queue
== NULL
) {
794 state
->last_access
= time(NULL
);
796 state
->privileged
= privileged
;
798 req
= wb_req_read_send(state
, winbind_event_context(), state
->sock
,
799 WINBINDD_MAX_EXTRA_DATA
);
805 tevent_req_set_callback(req
, winbind_client_request_read
, state
);
807 /* Add to connection list */
809 winbindd_add_client(state
);
812 static void winbind_client_request_read(struct tevent_req
*req
)
814 struct winbindd_cli_state
*state
= tevent_req_callback_data(
815 req
, struct winbindd_cli_state
);
819 ret
= wb_req_read_recv(req
, state
, &state
->request
, &err
);
823 DEBUG(6, ("closing socket %d, client exited\n",
826 DEBUG(2, ("Could not read client request from fd %d: "
827 "%s\n", state
->sock
, strerror(err
)));
831 remove_client(state
);
834 process_request(state
);
837 /* Remove a client connection from client connection list */
839 static void remove_client(struct winbindd_cli_state
*state
)
844 /* It's a dead client - hold a funeral */
850 if (state
->sock
!= -1) {
851 /* tell client, we are closing ... */
852 nwritten
= write(state
->sock
, &c
, sizeof(c
));
853 if (nwritten
== -1) {
854 DEBUG(2, ("final write to client failed: %s\n",
864 TALLOC_FREE(state
->mem_ctx
);
866 /* Remove from list and free */
868 winbindd_remove_client(state
);
872 /* Shutdown client connection which has been idle for the longest time */
874 static bool remove_idle_client(void)
876 struct winbindd_cli_state
*state
, *remove_state
= NULL
;
877 time_t last_access
= 0;
880 for (state
= winbindd_client_list(); state
; state
= state
->next
) {
881 if (state
->response
== NULL
&&
882 !state
->pwent_state
&& !state
->grent_state
) {
884 if (!last_access
|| state
->last_access
< last_access
) {
885 last_access
= state
->last_access
;
886 remove_state
= state
;
892 DEBUG(5,("Found %d idle client connections, shutting down sock %d, pid %u\n",
893 nidle
, remove_state
->sock
, (unsigned int)remove_state
->pid
));
894 remove_client(remove_state
);
901 struct winbindd_listen_state
{
906 static void winbindd_listen_fde_handler(struct tevent_context
*ev
,
907 struct tevent_fd
*fde
,
911 struct winbindd_listen_state
*s
= talloc_get_type_abort(private_data
,
912 struct winbindd_listen_state
);
914 while (winbindd_num_clients() >
915 WINBINDD_MAX_SIMULTANEOUS_CLIENTS
- 1) {
916 DEBUG(5,("winbindd: Exceeding %d client "
917 "connections, removing idle "
919 WINBINDD_MAX_SIMULTANEOUS_CLIENTS
));
920 if (!remove_idle_client()) {
921 DEBUG(0,("winbindd: Exceeding %d "
922 "client connections, no idle "
923 "connection found\n",
924 WINBINDD_MAX_SIMULTANEOUS_CLIENTS
));
928 new_connection(s
->fd
, s
->privileged
);
932 * Winbindd socket accessor functions
935 const char *get_winbind_pipe_dir(void)
937 return lp_parm_const_string(-1, "winbindd", "socket dir", WINBINDD_SOCKET_DIR
);
940 char *get_winbind_priv_pipe_dir(void)
942 return lock_path(WINBINDD_PRIV_SOCKET_SUBDIR
);
945 static bool winbindd_setup_listeners(void)
947 struct winbindd_listen_state
*pub_state
= NULL
;
948 struct winbindd_listen_state
*priv_state
= NULL
;
949 struct tevent_fd
*fde
;
951 pub_state
= talloc(winbind_event_context(),
952 struct winbindd_listen_state
);
957 pub_state
->privileged
= false;
958 pub_state
->fd
= create_pipe_sock(
959 get_winbind_pipe_dir(), WINBINDD_SOCKET_NAME
, 0755);
960 if (pub_state
->fd
== -1) {
964 fde
= tevent_add_fd(winbind_event_context(), pub_state
, pub_state
->fd
,
965 TEVENT_FD_READ
, winbindd_listen_fde_handler
,
968 close(pub_state
->fd
);
971 tevent_fd_set_auto_close(fde
);
973 priv_state
= talloc(winbind_event_context(),
974 struct winbindd_listen_state
);
979 priv_state
->privileged
= true;
980 priv_state
->fd
= create_pipe_sock(
981 get_winbind_priv_pipe_dir(), WINBINDD_SOCKET_NAME
, 0750);
982 if (priv_state
->fd
== -1) {
986 fde
= tevent_add_fd(winbind_event_context(), priv_state
,
987 priv_state
->fd
, TEVENT_FD_READ
,
988 winbindd_listen_fde_handler
, priv_state
);
990 close(priv_state
->fd
);
993 tevent_fd_set_auto_close(fde
);
997 TALLOC_FREE(pub_state
);
998 TALLOC_FREE(priv_state
);
1002 bool winbindd_use_idmap_cache(void)
1004 return !opt_nocache
;
1007 bool winbindd_use_cache(void)
1009 return !opt_nocache
;
1012 void winbindd_register_handlers(void)
1014 struct tevent_timer
*te
;
1015 /* Setup signal handlers */
1017 if (!winbindd_setup_sig_term_handler(true))
1019 if (!winbindd_setup_sig_hup_handler(NULL
))
1021 if (!winbindd_setup_sig_chld_handler())
1023 if (!winbindd_setup_sig_usr2_handler())
1026 CatchSignal(SIGPIPE
, SIG_IGN
); /* Ignore sigpipe */
1029 * Ensure all cache and idmap caches are consistent
1030 * and initialized before we startup.
1032 if (!winbindd_cache_validate_and_initialize()) {
1036 /* get broadcast messages */
1038 if (!serverid_register(procid_self(),
1039 FLAG_MSG_GENERAL
|FLAG_MSG_DBWRAP
)) {
1040 DEBUG(1, ("Could not register myself in serverid.tdb\n"));
1044 /* React on 'smbcontrol winbindd reload-config' in the same way
1045 as to SIGHUP signal */
1046 messaging_register(winbind_messaging_context(), NULL
,
1047 MSG_SMB_CONF_UPDATED
, msg_reload_services
);
1048 messaging_register(winbind_messaging_context(), NULL
,
1049 MSG_SHUTDOWN
, msg_shutdown
);
1051 /* Handle online/offline messages. */
1052 messaging_register(winbind_messaging_context(), NULL
,
1053 MSG_WINBIND_OFFLINE
, winbind_msg_offline
);
1054 messaging_register(winbind_messaging_context(), NULL
,
1055 MSG_WINBIND_ONLINE
, winbind_msg_online
);
1056 messaging_register(winbind_messaging_context(), NULL
,
1057 MSG_WINBIND_ONLINESTATUS
, winbind_msg_onlinestatus
);
1059 messaging_register(winbind_messaging_context(), NULL
,
1060 MSG_DUMP_EVENT_LIST
, winbind_msg_dump_event_list
);
1062 messaging_register(winbind_messaging_context(), NULL
,
1063 MSG_WINBIND_VALIDATE_CACHE
,
1064 winbind_msg_validate_cache
);
1066 messaging_register(winbind_messaging_context(), NULL
,
1067 MSG_WINBIND_DUMP_DOMAIN_LIST
,
1068 winbind_msg_dump_domain_list
);
1070 /* Register handler for MSG_DEBUG. */
1071 messaging_register(winbind_messaging_context(), NULL
,
1075 netsamlogon_cache_init(); /* Non-critical */
1077 /* clear the cached list of trusted domains */
1081 if (!init_domain_list()) {
1082 DEBUG(0,("unable to initialize domain list\n"));
1087 init_locator_child();
1089 smb_nscd_flush_user_cache();
1090 smb_nscd_flush_group_cache();
1092 te
= tevent_add_timer(winbind_event_context(), NULL
, timeval_zero(),
1093 rescan_trusted_domains
, NULL
);
1095 DEBUG(0, ("Could not trigger rescan_trusted_domains()\n"));
1103 int main(int argc
, char **argv
, char **envp
)
1105 static bool is_daemon
= False
;
1106 static bool Fork
= True
;
1107 static bool log_stdout
= False
;
1108 static bool no_process_group
= False
;
1112 OPT_NO_PROCESS_GROUP
,
1115 struct poptOption long_options
[] = {
1117 { "stdout", 'S', POPT_ARG_NONE
, NULL
, OPT_LOG_STDOUT
, "Log to stdout" },
1118 { "foreground", 'F', POPT_ARG_NONE
, NULL
, OPT_FORK
, "Daemon in foreground mode" },
1119 { "no-process-group", 0, POPT_ARG_NONE
, NULL
, OPT_NO_PROCESS_GROUP
, "Don't create a new process group" },
1120 { "daemon", 'D', POPT_ARG_NONE
, NULL
, OPT_DAEMON
, "Become a daemon (default)" },
1121 { "interactive", 'i', POPT_ARG_NONE
, NULL
, 'i', "Interactive mode" },
1122 { "no-caching", 'n', POPT_ARG_NONE
, NULL
, 'n', "Disable caching" },
1128 TALLOC_CTX
*frame
= talloc_stackframe();
1131 /* glibc (?) likes to print "User defined signal 1" and exit if a
1132 SIGUSR[12] is received before a handler is installed */
1134 CatchSignal(SIGUSR1
, SIG_IGN
);
1135 CatchSignal(SIGUSR2
, SIG_IGN
);
1137 fault_setup((void (*)(void *))fault_quit
);
1138 dump_core_setup("winbindd");
1142 /* Initialise for running in non-root mode */
1146 set_remote_machine_name("winbindd", False
);
1148 /* Set environment variable so we don't recursively call ourselves.
1149 This may also be useful interactively. */
1151 if ( !winbind_off() ) {
1152 DEBUG(0,("Failed to disable recusive winbindd calls. Exiting.\n"));
1156 /* Initialise samba/rpc client stuff */
1158 pc
= poptGetContext("winbindd", argc
, (const char **)argv
, long_options
, 0);
1160 while ((opt
= poptGetNextOpt(pc
)) != -1) {
1162 /* Don't become a daemon */
1174 case OPT_NO_PROCESS_GROUP
:
1175 no_process_group
= true;
1177 case OPT_LOG_STDOUT
:
1184 d_fprintf(stderr
, "\nInvalid option %s: %s\n\n",
1185 poptBadOption(pc
, 0), poptStrerror(opt
));
1186 poptPrintUsage(pc
, stderr
, 0);
1191 if (is_daemon
&& interactive
) {
1192 d_fprintf(stderr
,"\nERROR: "
1193 "Option -i|--interactive is not allowed together with -D|--daemon\n\n");
1194 poptPrintUsage(pc
, stderr
, 0);
1198 if (log_stdout
&& Fork
) {
1199 d_fprintf(stderr
, "\nERROR: "
1200 "Can't log to stdout (-S) unless daemon is in foreground +(-F) or interactive (-i)\n\n");
1201 poptPrintUsage(pc
, stderr
, 0);
1205 poptFreeContext(pc
);
1207 if (!override_logfile
) {
1209 if (asprintf(&lfile
,"%s/log.winbindd",
1210 get_dyn_LOGFILEBASE()) > 0) {
1211 lp_set_logfile(lfile
);
1215 setup_logging("winbindd", log_stdout
);
1218 DEBUG(0,("winbindd version %s started.\n", samba_version_string()));
1219 DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE
));
1221 if (!lp_load_initial_only(get_dyn_CONFIGFILE())) {
1222 DEBUG(0, ("error opening config file\n"));
1226 /* Initialise messaging system */
1228 if (winbind_messaging_context() == NULL
) {
1232 if (!reload_services_file(NULL
)) {
1233 DEBUG(0, ("error opening config file\n"));
1237 if (!directory_exist(lp_lockdir())) {
1238 mkdir(lp_lockdir(), 0755);
1248 if (!secrets_init()) {
1250 DEBUG(0,("Could not initialize domain trust account secrets. Giving up\n"));
1254 /* Unblock all signals we are interested in as they may have been
1255 blocked by the parent process. */
1257 BlockSignals(False
, SIGINT
);
1258 BlockSignals(False
, SIGQUIT
);
1259 BlockSignals(False
, SIGTERM
);
1260 BlockSignals(False
, SIGUSR1
);
1261 BlockSignals(False
, SIGUSR2
);
1262 BlockSignals(False
, SIGHUP
);
1263 BlockSignals(False
, SIGCHLD
);
1266 become_daemon(Fork
, no_process_group
, log_stdout
);
1268 pidfile_create("winbindd");
1272 * If we're interactive we want to set our own process group for
1273 * signal management.
1275 if (interactive
&& !no_process_group
)
1276 setpgid( (pid_t
)0, (pid_t
)0);
1281 /* Don't use winbindd_reinit_after_fork here as
1282 * we're just starting up and haven't created any
1283 * winbindd-specific resources we must free yet. JRA.
1286 status
= reinit_after_fork(winbind_messaging_context(),
1287 winbind_event_context(),
1288 procid_self(), false);
1289 if (!NT_STATUS_IS_OK(status
)) {
1290 DEBUG(0,("reinit_after_fork() failed\n"));
1294 winbindd_register_handlers();
1296 rpc_lsarpc_init(NULL
);
1297 rpc_samr_init(NULL
);
1299 if (!init_system_info()) {
1300 DEBUG(0,("ERROR: failed to setup system user info.\n"));
1304 /* setup listen sockets */
1306 if (!winbindd_setup_listeners()) {
1307 DEBUG(0,("winbindd_setup_listeners() failed\n"));
1312 /* Loop waiting for requests */
1314 frame
= talloc_stackframe();
1316 if (tevent_loop_once(winbind_event_context()) == -1) {
1317 DEBUG(1, ("tevent_loop_once() failed: %s\n",