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/>.
27 #include "../../nsswitch/libwbclient/wbc_async.h"
30 #define DBGC_CLASS DBGC_WINBIND
32 static void remove_client(struct winbindd_cli_state
*state
);
34 static bool opt_nocache
= False
;
35 static bool interactive
= False
;
37 extern bool override_logfile
;
39 struct event_context
*winbind_event_context(void)
41 static struct event_context
*ctx
;
43 if (!ctx
&& !(ctx
= event_context_init(NULL
))) {
44 smb_panic("Could not init winbind event context");
49 struct messaging_context
*winbind_messaging_context(void)
51 static struct messaging_context
*ctx
;
54 ctx
= messaging_init(NULL
, server_id_self(),
55 winbind_event_context());
58 DEBUG(0, ("Could not init winbind messaging context.\n"));
63 /* Reload configuration */
65 static bool reload_services_file(const char *lfile
)
70 const char *fname
= lp_configfile();
72 if (file_exist(fname
) && !strcsequal(fname
,get_dyn_CONFIGFILE())) {
73 set_dyn_CONFIGFILE(fname
);
77 /* if this is a child, restore the logfile to the special
78 name - <domain>, idmap, etc. */
79 if (lfile
&& *lfile
) {
80 lp_set_logfile(lfile
);
84 ret
= lp_load(get_dyn_CONFIGFILE(),False
,False
,True
,True
);
93 /**************************************************************************** **
95 **************************************************************************** */
97 static void fault_quit(void)
102 static void winbindd_status(void)
104 struct winbindd_cli_state
*tmp
;
106 DEBUG(0, ("winbindd status:\n"));
108 /* Print client state information */
110 DEBUG(0, ("\t%d clients currently active\n", winbindd_num_clients()));
112 if (DEBUGLEVEL
>= 2 && winbindd_num_clients()) {
113 DEBUG(2, ("\tclient list:\n"));
114 for(tmp
= winbindd_client_list(); tmp
; tmp
= tmp
->next
) {
115 DEBUGADD(2, ("\t\tpid %lu, sock %d\n",
116 (unsigned long)tmp
->pid
, tmp
->sock
));
121 /* Print winbindd status to log file */
123 static void print_winbindd_status(void)
128 /* Flush client cache */
130 static void flush_caches(void)
132 /* We need to invalidate cached user list entries on a SIGHUP
133 otherwise cached access denied errors due to restrict anonymous
134 hang around until the sequence number changes. */
136 if (!wcache_invalidate_cache()) {
137 DEBUG(0, ("invalidating the cache failed; revalidate the cache\n"));
138 if (!winbindd_cache_validate_and_initialize()) {
144 /* Handle the signal by unlinking socket and exiting */
146 static void terminate(bool is_parent
)
149 /* When parent goes away we should
150 * remove the socket file. Not so
151 * when children terminate.
155 if (asprintf(&path
, "%s/%s",
156 get_winbind_pipe_dir(), WINBINDD_SOCKET_NAME
) > 0) {
164 trustdom_cache_shutdown();
166 gencache_stabilize();
170 TALLOC_CTX
*mem_ctx
= talloc_init("end_description");
171 char *description
= talloc_describe_all(mem_ctx
);
173 DEBUG(3, ("tallocs left:\n%s\n", description
));
174 talloc_destroy(mem_ctx
);
185 static void winbindd_sig_term_handler(struct tevent_context
*ev
,
186 struct tevent_signal
*se
,
192 bool *is_parent
= talloc_get_type_abort(private_data
, bool);
194 DEBUG(0,("Got sig[%d] terminate (is_parent=%d)\n",
195 signum
, (int)*is_parent
));
196 terminate(*is_parent
);
199 bool winbindd_setup_sig_term_handler(bool parent
)
201 struct tevent_signal
*se
;
204 is_parent
= talloc(winbind_event_context(), bool);
211 se
= tevent_add_signal(winbind_event_context(),
214 winbindd_sig_term_handler
,
217 DEBUG(0,("failed to setup SIGTERM handler"));
218 talloc_free(is_parent
);
222 se
= tevent_add_signal(winbind_event_context(),
225 winbindd_sig_term_handler
,
228 DEBUG(0,("failed to setup SIGINT handler"));
229 talloc_free(is_parent
);
233 se
= tevent_add_signal(winbind_event_context(),
236 winbindd_sig_term_handler
,
239 DEBUG(0,("failed to setup SIGINT handler"));
240 talloc_free(is_parent
);
247 static void winbindd_sig_hup_handler(struct tevent_context
*ev
,
248 struct tevent_signal
*se
,
254 const char *file
= (const char *)private_data
;
256 DEBUG(1,("Reloading services after SIGHUP\n"));
258 reload_services_file(file
);
261 bool winbindd_setup_sig_hup_handler(const char *lfile
)
263 struct tevent_signal
*se
;
267 file
= talloc_strdup(winbind_event_context(),
274 se
= tevent_add_signal(winbind_event_context(),
275 winbind_event_context(),
277 winbindd_sig_hup_handler
,
286 static void winbindd_sig_chld_handler(struct tevent_context
*ev
,
287 struct tevent_signal
*se
,
295 while ((pid
= sys_waitpid(-1, NULL
, WNOHANG
)) > 0) {
296 winbind_child_died(pid
);
300 static bool winbindd_setup_sig_chld_handler(void)
302 struct tevent_signal
*se
;
304 se
= tevent_add_signal(winbind_event_context(),
305 winbind_event_context(),
307 winbindd_sig_chld_handler
,
316 static void winbindd_sig_usr2_handler(struct tevent_context
*ev
,
317 struct tevent_signal
*se
,
323 print_winbindd_status();
326 static bool winbindd_setup_sig_usr2_handler(void)
328 struct tevent_signal
*se
;
330 se
= tevent_add_signal(winbind_event_context(),
331 winbind_event_context(),
333 winbindd_sig_usr2_handler
,
342 /* React on 'smbcontrol winbindd reload-config' in the same way as on SIGHUP*/
343 static void msg_reload_services(struct messaging_context
*msg
,
346 struct server_id server_id
,
349 /* Flush various caches */
351 reload_services_file((const char *) private_data
);
354 /* React on 'smbcontrol winbindd shutdown' in the same way as on SIGTERM*/
355 static void msg_shutdown(struct messaging_context
*msg
,
358 struct server_id server_id
,
361 /* only the parent waits for this message */
362 DEBUG(0,("Got shutdown message\n"));
367 static void winbind_msg_validate_cache(struct messaging_context
*msg_ctx
,
370 struct server_id server_id
,
376 DEBUG(10, ("winbindd_msg_validate_cache: got validate-cache "
380 * call the validation code from a child:
381 * so we don't block the main winbindd and the validation
382 * code can safely use fork/waitpid...
384 child_pid
= sys_fork();
386 if (child_pid
== -1) {
387 DEBUG(1, ("winbind_msg_validate_cache: Could not fork: %s\n",
392 if (child_pid
!= 0) {
394 DEBUG(5, ("winbind_msg_validate_cache: child created with "
395 "pid %d.\n", (int)child_pid
));
401 if (!winbindd_reinit_after_fork(NULL
)) {
405 ret
= (uint8
)winbindd_validate_cache_nobackup();
406 DEBUG(10, ("winbindd_msg_validata_cache: got return value %d\n", ret
));
407 messaging_send_buf(msg_ctx
, server_id
, MSG_WINBIND_VALIDATE_CACHE
, &ret
,
412 static struct winbindd_dispatch_table
{
413 enum winbindd_cmd cmd
;
414 void (*fn
)(struct winbindd_cli_state
*state
);
415 const char *winbindd_cmd_name
;
416 } dispatch_table
[] = {
418 /* PAM auth functions */
420 { WINBINDD_PAM_AUTH
, winbindd_pam_auth
, "PAM_AUTH" },
421 { WINBINDD_PAM_AUTH_CRAP
, winbindd_pam_auth_crap
, "AUTH_CRAP" },
422 { WINBINDD_PAM_CHAUTHTOK
, winbindd_pam_chauthtok
, "CHAUTHTOK" },
423 { WINBINDD_PAM_LOGOFF
, winbindd_pam_logoff
, "PAM_LOGOFF" },
424 { WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP
, winbindd_pam_chng_pswd_auth_crap
, "CHNG_PSWD_AUTH_CRAP" },
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
},
529 { 0, NULL
, NULL
, NULL
}
532 static struct winbindd_async_dispatch_table async_priv_table
[] = {
533 { WINBINDD_ALLOCATE_UID
, "ALLOCATE_UID",
534 winbindd_allocate_uid_send
, winbindd_allocate_uid_recv
},
535 { WINBINDD_ALLOCATE_GID
, "ALLOCATE_GID",
536 winbindd_allocate_gid_send
, winbindd_allocate_gid_recv
},
537 { WINBINDD_SET_MAPPING
, "SET_MAPPING",
538 winbindd_set_mapping_send
, winbindd_set_mapping_recv
},
539 { WINBINDD_REMOVE_MAPPING
, "SET_MAPPING",
540 winbindd_remove_mapping_send
, winbindd_remove_mapping_recv
},
541 { WINBINDD_SET_HWM
, "SET_HWM",
542 winbindd_set_hwm_send
, winbindd_set_hwm_recv
},
543 { WINBINDD_CHANGE_MACHACC
, "CHANGE_MACHACC",
544 winbindd_change_machine_acct_send
, winbindd_change_machine_acct_recv
},
546 { 0, NULL
, NULL
, NULL
}
549 static void wb_request_done(struct tevent_req
*req
);
551 static void process_request(struct winbindd_cli_state
*state
)
553 struct winbindd_dispatch_table
*table
= dispatch_table
;
554 struct winbindd_async_dispatch_table
*atable
;
556 state
->mem_ctx
= talloc_init("winbind request");
557 if (state
->mem_ctx
== NULL
)
560 /* Remember who asked us. */
561 state
->pid
= state
->request
->pid
;
563 state
->cmd_name
= "unknown request";
564 state
->recv_fn
= NULL
;
566 /* Process command */
568 for (atable
= async_nonpriv_table
; atable
->send_req
; atable
+= 1) {
569 if (state
->request
->cmd
== atable
->cmd
) {
574 if ((atable
->send_req
== NULL
) && state
->privileged
) {
575 for (atable
= async_priv_table
; atable
->send_req
;
577 if (state
->request
->cmd
== atable
->cmd
) {
583 if (atable
->send_req
!= NULL
) {
584 struct tevent_req
*req
;
586 state
->cmd_name
= atable
->cmd_name
;
587 state
->recv_fn
= atable
->recv_req
;
589 DEBUG(10, ("process_request: Handling async request %d:%s\n",
590 (int)state
->pid
, state
->cmd_name
));
592 req
= atable
->send_req(state
->mem_ctx
, winbind_event_context(),
593 state
, state
->request
);
595 DEBUG(0, ("process_request: atable->send failed for "
596 "%s\n", atable
->cmd_name
));
597 request_error(state
);
600 tevent_req_set_callback(req
, wb_request_done
, state
);
604 state
->response
= talloc_zero(state
->mem_ctx
,
605 struct winbindd_response
);
606 if (state
->response
== NULL
) {
607 DEBUG(10, ("talloc failed\n"));
608 remove_client(state
);
611 state
->response
->result
= WINBINDD_PENDING
;
612 state
->response
->length
= sizeof(struct winbindd_response
);
614 for (table
= dispatch_table
; table
->fn
; table
++) {
615 if (state
->request
->cmd
== table
->cmd
) {
616 DEBUG(10,("process_request: request fn %s\n",
617 table
->winbindd_cmd_name
));
618 state
->cmd_name
= table
->winbindd_cmd_name
;
625 DEBUG(10,("process_request: unknown request fn number %d\n",
626 (int)state
->request
->cmd
));
627 request_error(state
);
631 static void wb_request_done(struct tevent_req
*req
)
633 struct winbindd_cli_state
*state
= tevent_req_callback_data(
634 req
, struct winbindd_cli_state
);
637 state
->response
= talloc_zero(state
->mem_ctx
,
638 struct winbindd_response
);
639 if (state
->response
== NULL
) {
640 DEBUG(0, ("wb_request_done[%d:%s]: talloc_zero failed - removing client\n",
641 (int)state
->pid
, state
->cmd_name
));
642 remove_client(state
);
645 state
->response
->result
= WINBINDD_PENDING
;
646 state
->response
->length
= sizeof(struct winbindd_response
);
648 status
= state
->recv_fn(req
, state
->response
);
651 DEBUG(10,("wb_request_done[%d:%s]: %s\n",
652 (int)state
->pid
, state
->cmd_name
, nt_errstr(status
)));
654 if (!NT_STATUS_IS_OK(status
)) {
655 request_error(state
);
662 * This is the main event loop of winbind requests. It goes through a
663 * state-machine of 3 read/write requests, 4 if you have extra data to send.
665 * An idle winbind client has a read request of 4 bytes outstanding,
666 * finalizing function is request_len_recv, checking the length. request_recv
667 * then processes the packet. The processing function then at some point has
668 * to call request_finished which schedules sending the response.
671 static void request_finished(struct winbindd_cli_state
*state
);
673 static void winbind_client_request_read(struct tevent_req
*req
);
674 static void winbind_client_response_written(struct tevent_req
*req
);
676 static void request_finished(struct winbindd_cli_state
*state
)
678 struct tevent_req
*req
;
680 TALLOC_FREE(state
->request
);
682 req
= wb_resp_write_send(state
, winbind_event_context(),
683 state
->out_queue
, state
->sock
,
686 DEBUG(10,("request_finished[%d:%s]: wb_resp_write_send() failed\n",
687 (int)state
->pid
, state
->cmd_name
));
688 remove_client(state
);
691 tevent_req_set_callback(req
, winbind_client_response_written
, state
);
694 static void winbind_client_response_written(struct tevent_req
*req
)
696 struct winbindd_cli_state
*state
= tevent_req_callback_data(
697 req
, struct winbindd_cli_state
);
701 ret
= wb_resp_write_recv(req
, &err
);
706 DEBUG(2, ("Could not write response[%d:%s] to client: %s\n",
707 (int)state
->pid
, state
->cmd_name
, strerror(err
)));
708 remove_client(state
);
712 DEBUG(10,("winbind_client_response_written[%d:%s]: deliverd response to client\n",
713 (int)state
->pid
, state
->cmd_name
));
715 TALLOC_FREE(state
->mem_ctx
);
716 state
->response
= NULL
;
717 state
->cmd_name
= "no request";
718 state
->recv_fn
= NULL
;
720 req
= wb_req_read_send(state
, winbind_event_context(), state
->sock
,
721 WINBINDD_MAX_EXTRA_DATA
);
723 remove_client(state
);
726 tevent_req_set_callback(req
, winbind_client_request_read
, state
);
729 void request_error(struct winbindd_cli_state
*state
)
731 SMB_ASSERT(state
->response
->result
== WINBINDD_PENDING
);
732 state
->response
->result
= WINBINDD_ERROR
;
733 request_finished(state
);
736 void request_ok(struct winbindd_cli_state
*state
)
738 SMB_ASSERT(state
->response
->result
== WINBINDD_PENDING
);
739 state
->response
->result
= WINBINDD_OK
;
740 request_finished(state
);
743 /* Process a new connection by adding it to the client connection list */
745 static void new_connection(int listen_sock
, bool privileged
)
747 struct sockaddr_un sunaddr
;
748 struct winbindd_cli_state
*state
;
749 struct tevent_req
*req
;
753 /* Accept connection */
755 len
= sizeof(sunaddr
);
758 sock
= accept(listen_sock
, (struct sockaddr
*)(void *)&sunaddr
,
760 } while (sock
== -1 && errno
== EINTR
);
765 DEBUG(6,("accepted socket %d\n", sock
));
767 /* Create new connection structure */
769 if ((state
= TALLOC_ZERO_P(NULL
, struct winbindd_cli_state
)) == NULL
) {
776 state
->out_queue
= tevent_queue_create(state
, "winbind client reply");
777 if (state
->out_queue
== NULL
) {
783 state
->last_access
= time(NULL
);
785 state
->privileged
= privileged
;
787 req
= wb_req_read_send(state
, winbind_event_context(), state
->sock
,
788 WINBINDD_MAX_EXTRA_DATA
);
794 tevent_req_set_callback(req
, winbind_client_request_read
, state
);
796 /* Add to connection list */
798 winbindd_add_client(state
);
801 static void winbind_client_request_read(struct tevent_req
*req
)
803 struct winbindd_cli_state
*state
= tevent_req_callback_data(
804 req
, struct winbindd_cli_state
);
808 ret
= wb_req_read_recv(req
, state
, &state
->request
, &err
);
812 DEBUG(6, ("closing socket %d, client exited\n",
815 DEBUG(2, ("Could not read client request from fd %d: "
816 "%s\n", state
->sock
, strerror(err
)));
820 remove_client(state
);
823 process_request(state
);
826 /* Remove a client connection from client connection list */
828 static void remove_client(struct winbindd_cli_state
*state
)
833 /* It's a dead client - hold a funeral */
839 if (state
->sock
!= -1) {
840 /* tell client, we are closing ... */
841 nwritten
= write(state
->sock
, &c
, sizeof(c
));
842 if (nwritten
== -1) {
843 DEBUG(2, ("final write to client failed: %s\n",
853 TALLOC_FREE(state
->mem_ctx
);
855 /* Remove from list and free */
857 winbindd_remove_client(state
);
861 /* Shutdown client connection which has been idle for the longest time */
863 static bool remove_idle_client(void)
865 struct winbindd_cli_state
*state
, *remove_state
= NULL
;
866 time_t last_access
= 0;
869 for (state
= winbindd_client_list(); state
; state
= state
->next
) {
870 if (state
->response
== NULL
&&
871 !state
->pwent_state
&& !state
->grent_state
) {
873 if (!last_access
|| state
->last_access
< last_access
) {
874 last_access
= state
->last_access
;
875 remove_state
= state
;
881 DEBUG(5,("Found %d idle client connections, shutting down sock %d, pid %u\n",
882 nidle
, remove_state
->sock
, (unsigned int)remove_state
->pid
));
883 remove_client(remove_state
);
890 struct winbindd_listen_state
{
895 static void winbindd_listen_fde_handler(struct tevent_context
*ev
,
896 struct tevent_fd
*fde
,
900 struct winbindd_listen_state
*s
= talloc_get_type_abort(private_data
,
901 struct winbindd_listen_state
);
903 while (winbindd_num_clients() >
904 WINBINDD_MAX_SIMULTANEOUS_CLIENTS
- 1) {
905 DEBUG(5,("winbindd: Exceeding %d client "
906 "connections, removing idle "
908 WINBINDD_MAX_SIMULTANEOUS_CLIENTS
));
909 if (!remove_idle_client()) {
910 DEBUG(0,("winbindd: Exceeding %d "
911 "client connections, no idle "
912 "connection found\n",
913 WINBINDD_MAX_SIMULTANEOUS_CLIENTS
));
917 new_connection(s
->fd
, s
->privileged
);
920 static bool winbindd_setup_listeners(void)
922 struct winbindd_listen_state
*pub_state
= NULL
;
923 struct winbindd_listen_state
*priv_state
= NULL
;
924 struct tevent_fd
*fde
;
926 pub_state
= talloc(winbind_event_context(),
927 struct winbindd_listen_state
);
932 pub_state
->privileged
= false;
933 pub_state
->fd
= open_winbindd_socket();
934 if (pub_state
->fd
== -1) {
938 fde
= tevent_add_fd(winbind_event_context(), pub_state
, pub_state
->fd
,
939 TEVENT_FD_READ
, winbindd_listen_fde_handler
,
942 close(pub_state
->fd
);
945 tevent_fd_set_auto_close(fde
);
947 priv_state
= talloc(winbind_event_context(),
948 struct winbindd_listen_state
);
953 priv_state
->privileged
= true;
954 priv_state
->fd
= open_winbindd_priv_socket();
955 if (priv_state
->fd
== -1) {
959 fde
= tevent_add_fd(winbind_event_context(), priv_state
,
960 priv_state
->fd
, TEVENT_FD_READ
,
961 winbindd_listen_fde_handler
, priv_state
);
963 close(priv_state
->fd
);
966 tevent_fd_set_auto_close(fde
);
970 TALLOC_FREE(pub_state
);
971 TALLOC_FREE(priv_state
);
975 bool winbindd_use_idmap_cache(void)
980 bool winbindd_use_cache(void)
987 int main(int argc
, char **argv
, char **envp
)
989 static bool is_daemon
= False
;
990 static bool Fork
= True
;
991 static bool log_stdout
= False
;
992 static bool no_process_group
= False
;
996 OPT_NO_PROCESS_GROUP
,
999 struct poptOption long_options
[] = {
1001 { "stdout", 'S', POPT_ARG_NONE
, NULL
, OPT_LOG_STDOUT
, "Log to stdout" },
1002 { "foreground", 'F', POPT_ARG_NONE
, NULL
, OPT_FORK
, "Daemon in foreground mode" },
1003 { "no-process-group", 0, POPT_ARG_NONE
, NULL
, OPT_NO_PROCESS_GROUP
, "Don't create a new process group" },
1004 { "daemon", 'D', POPT_ARG_NONE
, NULL
, OPT_DAEMON
, "Become a daemon (default)" },
1005 { "interactive", 'i', POPT_ARG_NONE
, NULL
, 'i', "Interactive mode" },
1006 { "no-caching", 'n', POPT_ARG_NONE
, NULL
, 'n', "Disable caching" },
1012 TALLOC_CTX
*frame
= talloc_stackframe();
1013 struct tevent_timer
*te
;
1015 /* glibc (?) likes to print "User defined signal 1" and exit if a
1016 SIGUSR[12] is received before a handler is installed */
1018 CatchSignal(SIGUSR1
, SIG_IGN
);
1019 CatchSignal(SIGUSR2
, SIG_IGN
);
1021 fault_setup((void (*)(void *))fault_quit
);
1022 dump_core_setup("winbindd");
1026 /* Initialise for running in non-root mode */
1030 set_remote_machine_name("winbindd", False
);
1032 /* Set environment variable so we don't recursively call ourselves.
1033 This may also be useful interactively. */
1035 if ( !winbind_off() ) {
1036 DEBUG(0,("Failed to disable recusive winbindd calls. Exiting.\n"));
1040 /* Initialise samba/rpc client stuff */
1042 pc
= poptGetContext("winbindd", argc
, (const char **)argv
, long_options
, 0);
1044 while ((opt
= poptGetNextOpt(pc
)) != -1) {
1046 /* Don't become a daemon */
1058 case OPT_NO_PROCESS_GROUP
:
1059 no_process_group
= true;
1061 case OPT_LOG_STDOUT
:
1068 d_fprintf(stderr
, "\nInvalid option %s: %s\n\n",
1069 poptBadOption(pc
, 0), poptStrerror(opt
));
1070 poptPrintUsage(pc
, stderr
, 0);
1075 if (is_daemon
&& interactive
) {
1076 d_fprintf(stderr
,"\nERROR: "
1077 "Option -i|--interactive is not allowed together with -D|--daemon\n\n");
1078 poptPrintUsage(pc
, stderr
, 0);
1082 if (log_stdout
&& Fork
) {
1083 d_fprintf(stderr
, "\nERROR: "
1084 "Can't log to stdout (-S) unless daemon is in foreground +(-F) or interactive (-i)\n\n");
1085 poptPrintUsage(pc
, stderr
, 0);
1089 poptFreeContext(pc
);
1091 if (!override_logfile
) {
1093 if (asprintf(&lfile
,"%s/log.winbindd",
1094 get_dyn_LOGFILEBASE()) > 0) {
1095 lp_set_logfile(lfile
);
1099 setup_logging("winbindd", log_stdout
);
1102 DEBUG(0,("winbindd version %s started.\n", samba_version_string()));
1103 DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE
));
1105 if (!lp_load_initial_only(get_dyn_CONFIGFILE())) {
1106 DEBUG(0, ("error opening config file\n"));
1110 /* Initialise messaging system */
1112 if (winbind_messaging_context() == NULL
) {
1116 if (!reload_services_file(NULL
)) {
1117 DEBUG(0, ("error opening config file\n"));
1121 if (!directory_exist(lp_lockdir())) {
1122 mkdir(lp_lockdir(), 0755);
1132 if (!secrets_init()) {
1134 DEBUG(0,("Could not initialize domain trust account secrets. Giving up\n"));
1138 /* Enable netbios namecache */
1142 /* Unblock all signals we are interested in as they may have been
1143 blocked by the parent process. */
1145 BlockSignals(False
, SIGINT
);
1146 BlockSignals(False
, SIGQUIT
);
1147 BlockSignals(False
, SIGTERM
);
1148 BlockSignals(False
, SIGUSR1
);
1149 BlockSignals(False
, SIGUSR2
);
1150 BlockSignals(False
, SIGHUP
);
1151 BlockSignals(False
, SIGCHLD
);
1154 become_daemon(Fork
, no_process_group
);
1156 pidfile_create("winbindd");
1160 * If we're interactive we want to set our own process group for
1161 * signal management.
1163 if (interactive
&& !no_process_group
)
1164 setpgid( (pid_t
)0, (pid_t
)0);
1169 /* Don't use winbindd_reinit_after_fork here as
1170 * we're just starting up and haven't created any
1171 * winbindd-specific resources we must free yet. JRA.
1174 if (!NT_STATUS_IS_OK(reinit_after_fork(winbind_messaging_context(),
1175 winbind_event_context(),
1177 DEBUG(0,("reinit_after_fork() failed\n"));
1181 /* Setup signal handlers */
1183 if (!winbindd_setup_sig_term_handler(true))
1185 if (!winbindd_setup_sig_hup_handler(NULL
))
1187 if (!winbindd_setup_sig_chld_handler())
1189 if (!winbindd_setup_sig_usr2_handler())
1192 CatchSignal(SIGPIPE
, SIG_IGN
); /* Ignore sigpipe */
1195 * Ensure all cache and idmap caches are consistent
1196 * and initialized before we startup.
1198 if (!winbindd_cache_validate_and_initialize()) {
1202 /* get broadcast messages */
1203 claim_connection(NULL
,"",FLAG_MSG_GENERAL
|FLAG_MSG_DBWRAP
);
1205 /* React on 'smbcontrol winbindd reload-config' in the same way
1206 as to SIGHUP signal */
1207 messaging_register(winbind_messaging_context(), NULL
,
1208 MSG_SMB_CONF_UPDATED
, msg_reload_services
);
1209 messaging_register(winbind_messaging_context(), NULL
,
1210 MSG_SHUTDOWN
, msg_shutdown
);
1212 /* Handle online/offline messages. */
1213 messaging_register(winbind_messaging_context(), NULL
,
1214 MSG_WINBIND_OFFLINE
, winbind_msg_offline
);
1215 messaging_register(winbind_messaging_context(), NULL
,
1216 MSG_WINBIND_ONLINE
, winbind_msg_online
);
1217 messaging_register(winbind_messaging_context(), NULL
,
1218 MSG_WINBIND_ONLINESTATUS
, winbind_msg_onlinestatus
);
1220 messaging_register(winbind_messaging_context(), NULL
,
1221 MSG_DUMP_EVENT_LIST
, winbind_msg_dump_event_list
);
1223 messaging_register(winbind_messaging_context(), NULL
,
1224 MSG_WINBIND_VALIDATE_CACHE
,
1225 winbind_msg_validate_cache
);
1227 messaging_register(winbind_messaging_context(), NULL
,
1228 MSG_WINBIND_DUMP_DOMAIN_LIST
,
1229 winbind_msg_dump_domain_list
);
1231 /* Register handler for MSG_DEBUG. */
1232 messaging_register(winbind_messaging_context(), NULL
,
1236 netsamlogon_cache_init(); /* Non-critical */
1238 /* clear the cached list of trusted domains */
1242 if (!init_domain_list()) {
1243 DEBUG(0,("unable to initialize domain list\n"));
1248 init_locator_child();
1250 smb_nscd_flush_user_cache();
1251 smb_nscd_flush_group_cache();
1253 /* setup listen sockets */
1255 if (!winbindd_setup_listeners()) {
1256 DEBUG(0,("winbindd_setup_listeners() failed\n"));
1260 te
= tevent_add_timer(winbind_event_context(), NULL
, timeval_zero(),
1261 rescan_trusted_domains
, NULL
);
1263 DEBUG(0, ("Could not trigger rescan_trusted_domains()\n"));
1268 /* Loop waiting for requests */
1270 frame
= talloc_stackframe();
1272 if (tevent_loop_once(winbind_event_context()) == -1) {
1273 DEBUG(1, ("tevent_loop_once() failed: %s\n",