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 bool opt_nocache
= False
;
33 static bool interactive
= False
;
35 extern bool override_logfile
;
37 struct event_context
*winbind_event_context(void)
39 static struct event_context
*ctx
;
41 if (!ctx
&& !(ctx
= event_context_init(NULL
))) {
42 smb_panic("Could not init winbind event context");
47 struct messaging_context
*winbind_messaging_context(void)
49 static struct messaging_context
*ctx
;
52 ctx
= messaging_init(NULL
, server_id_self(),
53 winbind_event_context());
56 DEBUG(0, ("Could not init winbind messaging context.\n"));
61 /* Reload configuration */
63 static bool reload_services_file(const char *lfile
)
68 const char *fname
= lp_configfile();
70 if (file_exist(fname
) && !strcsequal(fname
,get_dyn_CONFIGFILE())) {
71 set_dyn_CONFIGFILE(fname
);
75 /* if this is a child, restore the logfile to the special
76 name - <domain>, idmap, etc. */
77 if (lfile
&& *lfile
) {
78 lp_set_logfile(lfile
);
82 ret
= lp_load(get_dyn_CONFIGFILE(),False
,False
,True
,True
);
91 /**************************************************************************** **
93 **************************************************************************** */
95 static void fault_quit(void)
100 static void winbindd_status(void)
102 struct winbindd_cli_state
*tmp
;
104 DEBUG(0, ("winbindd status:\n"));
106 /* Print client state information */
108 DEBUG(0, ("\t%d clients currently active\n", winbindd_num_clients()));
110 if (DEBUGLEVEL
>= 2 && winbindd_num_clients()) {
111 DEBUG(2, ("\tclient list:\n"));
112 for(tmp
= winbindd_client_list(); tmp
; tmp
= tmp
->next
) {
113 DEBUGADD(2, ("\t\tpid %lu, sock %d\n",
114 (unsigned long)tmp
->pid
, tmp
->sock
));
119 /* Print winbindd status to log file */
121 static void print_winbindd_status(void)
126 /* Flush client cache */
128 static void flush_caches(void)
130 /* We need to invalidate cached user list entries on a SIGHUP
131 otherwise cached access denied errors due to restrict anonymous
132 hang around until the sequence number changes. */
134 if (!wcache_invalidate_cache()) {
135 DEBUG(0, ("invalidating the cache failed; revalidate the cache\n"));
136 if (!winbindd_cache_validate_and_initialize()) {
142 /* Handle the signal by unlinking socket and exiting */
144 static void terminate(bool is_parent
)
147 /* When parent goes away we should
148 * remove the socket file. Not so
149 * when children terminate.
153 if (asprintf(&path
, "%s/%s",
154 get_winbind_pipe_dir(), WINBINDD_SOCKET_NAME
) > 0) {
162 trustdom_cache_shutdown();
166 TALLOC_CTX
*mem_ctx
= talloc_init("end_description");
167 char *description
= talloc_describe_all(mem_ctx
);
169 DEBUG(3, ("tallocs left:\n%s\n", description
));
170 talloc_destroy(mem_ctx
);
177 static void winbindd_sig_term_handler(struct tevent_context
*ev
,
178 struct tevent_signal
*se
,
184 bool *is_parent
= talloc_get_type_abort(private_data
, bool);
186 DEBUG(0,("Got sig[%d] terminate (is_parent=%d)\n",
187 signum
, (int)*is_parent
));
188 terminate(*is_parent
);
191 bool winbindd_setup_sig_term_handler(bool parent
)
193 struct tevent_signal
*se
;
196 is_parent
= talloc(winbind_event_context(), bool);
203 se
= tevent_add_signal(winbind_event_context(),
206 winbindd_sig_term_handler
,
209 DEBUG(0,("failed to setup SIGTERM handler"));
210 talloc_free(is_parent
);
214 se
= tevent_add_signal(winbind_event_context(),
217 winbindd_sig_term_handler
,
220 DEBUG(0,("failed to setup SIGINT handler"));
221 talloc_free(is_parent
);
225 se
= tevent_add_signal(winbind_event_context(),
228 winbindd_sig_term_handler
,
231 DEBUG(0,("failed to setup SIGINT handler"));
232 talloc_free(is_parent
);
239 static void winbindd_sig_hup_handler(struct tevent_context
*ev
,
240 struct tevent_signal
*se
,
246 const char *file
= (const char *)private_data
;
248 DEBUG(1,("Reloading services after SIGHUP\n"));
250 reload_services_file(file
);
253 bool winbindd_setup_sig_hup_handler(const char *lfile
)
255 struct tevent_signal
*se
;
259 file
= talloc_strdup(winbind_event_context(),
266 se
= tevent_add_signal(winbind_event_context(),
267 winbind_event_context(),
269 winbindd_sig_hup_handler
,
278 static void winbindd_sig_chld_handler(struct tevent_context
*ev
,
279 struct tevent_signal
*se
,
287 while ((pid
= sys_waitpid(-1, NULL
, WNOHANG
)) > 0) {
288 winbind_child_died(pid
);
292 static bool winbindd_setup_sig_chld_handler(void)
294 struct tevent_signal
*se
;
296 se
= tevent_add_signal(winbind_event_context(),
297 winbind_event_context(),
299 winbindd_sig_chld_handler
,
308 static void winbindd_sig_usr2_handler(struct tevent_context
*ev
,
309 struct tevent_signal
*se
,
315 print_winbindd_status();
318 static bool winbindd_setup_sig_usr2_handler(void)
320 struct tevent_signal
*se
;
322 se
= tevent_add_signal(winbind_event_context(),
323 winbind_event_context(),
325 winbindd_sig_usr2_handler
,
334 /* React on 'smbcontrol winbindd reload-config' in the same way as on SIGHUP*/
335 static void msg_reload_services(struct messaging_context
*msg
,
338 struct server_id server_id
,
341 /* Flush various caches */
343 reload_services_file((const char *) private_data
);
346 /* React on 'smbcontrol winbindd shutdown' in the same way as on SIGTERM*/
347 static void msg_shutdown(struct messaging_context
*msg
,
350 struct server_id server_id
,
353 /* only the parent waits for this message */
354 DEBUG(0,("Got shutdown message\n"));
359 static void winbind_msg_validate_cache(struct messaging_context
*msg_ctx
,
362 struct server_id server_id
,
367 struct sigaction act
;
368 struct sigaction oldact
;
370 DEBUG(10, ("winbindd_msg_validate_cache: got validate-cache "
374 * call the validation code from a child:
375 * so we don't block the main winbindd and the validation
376 * code can safely use fork/waitpid...
379 child_pid
= sys_fork();
381 if (child_pid
== -1) {
382 DEBUG(1, ("winbind_msg_validate_cache: Could not fork: %s\n",
387 if (child_pid
!= 0) {
389 DEBUG(5, ("winbind_msg_validate_cache: child created with "
390 "pid %d.\n", (int)child_pid
));
396 /* install default SIGCHLD handler: validation code uses fork/waitpid */
398 act
.sa_handler
= SIG_DFL
;
400 /* We *want* SIGALRM to interrupt a system call. */
401 act
.sa_flags
= SA_RESTART
;
403 sigemptyset(&act
.sa_mask
);
404 sigaddset(&act
.sa_mask
,SIGCHLD
);
405 sigaction(SIGCHLD
,&act
,&oldact
);
407 ret
= (uint8
)winbindd_validate_cache_nobackup();
408 DEBUG(10, ("winbindd_msg_validata_cache: got return value %d\n", ret
));
409 messaging_send_buf(msg_ctx
, server_id
, MSG_WINBIND_VALIDATE_CACHE
, &ret
,
414 static struct winbindd_dispatch_table
{
415 enum winbindd_cmd cmd
;
416 void (*fn
)(struct winbindd_cli_state
*state
);
417 const char *winbindd_cmd_name
;
418 } dispatch_table
[] = {
422 { WINBINDD_GETPWNAM
, winbindd_getpwnam
, "GETPWNAM" },
423 { WINBINDD_GETPWUID
, winbindd_getpwuid
, "GETPWUID" },
424 { WINBINDD_GETPWSID
, winbindd_getpwsid
, "GETPWSID" },
426 { WINBINDD_SETPWENT
, winbindd_setpwent
, "SETPWENT" },
427 { WINBINDD_ENDPWENT
, winbindd_endpwent
, "ENDPWENT" },
428 { WINBINDD_GETPWENT
, winbindd_getpwent
, "GETPWENT" },
430 { WINBINDD_GETGROUPS
, winbindd_getgroups
, "GETGROUPS" },
431 { WINBINDD_GETUSERSIDS
, winbindd_getusersids
, "GETUSERSIDS" },
432 { WINBINDD_GETUSERDOMGROUPS
, winbindd_getuserdomgroups
,
433 "GETUSERDOMGROUPS" },
434 { WINBINDD_GETSIDALIASES
, winbindd_getsidaliases
,
435 "LOOKUPUSERALIASES" },
437 /* Group functions */
439 { WINBINDD_GETGRNAM
, winbindd_getgrnam
, "GETGRNAM" },
440 { WINBINDD_GETGRGID
, winbindd_getgrgid
, "GETGRGID" },
441 { WINBINDD_SETGRENT
, winbindd_setgrent
, "SETGRENT" },
442 { WINBINDD_ENDGRENT
, winbindd_endgrent
, "ENDGRENT" },
443 { WINBINDD_GETGRENT
, winbindd_getgrent
, "GETGRENT" },
444 { WINBINDD_GETGRLST
, winbindd_getgrent
, "GETGRLST" },
446 /* PAM auth functions */
448 { WINBINDD_PAM_AUTH
, winbindd_pam_auth
, "PAM_AUTH" },
449 { WINBINDD_PAM_AUTH_CRAP
, winbindd_pam_auth_crap
, "AUTH_CRAP" },
450 { WINBINDD_PAM_CHAUTHTOK
, winbindd_pam_chauthtok
, "CHAUTHTOK" },
451 { WINBINDD_PAM_LOGOFF
, winbindd_pam_logoff
, "PAM_LOGOFF" },
452 { WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP
, winbindd_pam_chng_pswd_auth_crap
, "CHNG_PSWD_AUTH_CRAP" },
454 /* Enumeration functions */
456 { WINBINDD_LIST_USERS
, winbindd_list_users
, "LIST_USERS" },
457 { WINBINDD_LIST_GROUPS
, winbindd_list_groups
, "LIST_GROUPS" },
458 { WINBINDD_LIST_TRUSTDOM
, winbindd_list_trusted_domains
,
460 { WINBINDD_SHOW_SEQUENCE
, winbindd_show_sequence
, "SHOW_SEQUENCE" },
462 /* SID related functions */
464 { WINBINDD_LOOKUPSID
, winbindd_lookupsid
, "LOOKUPSID" },
465 { WINBINDD_LOOKUPNAME
, winbindd_lookupname
, "LOOKUPNAME" },
466 { WINBINDD_LOOKUPRIDS
, winbindd_lookuprids
, "LOOKUPRIDS" },
468 /* Lookup related functions */
470 { WINBINDD_SID_TO_UID
, winbindd_sid_to_uid
, "SID_TO_UID" },
471 { WINBINDD_SID_TO_GID
, winbindd_sid_to_gid
, "SID_TO_GID" },
472 { WINBINDD_UID_TO_SID
, winbindd_uid_to_sid
, "UID_TO_SID" },
473 { WINBINDD_GID_TO_SID
, winbindd_gid_to_sid
, "GID_TO_SID" },
474 { WINBINDD_ALLOCATE_UID
, winbindd_allocate_uid
, "ALLOCATE_UID" },
475 { WINBINDD_ALLOCATE_GID
, winbindd_allocate_gid
, "ALLOCATE_GID" },
476 { WINBINDD_SET_MAPPING
, winbindd_set_mapping
, "SET_MAPPING" },
477 { WINBINDD_REMOVE_MAPPING
, winbindd_remove_mapping
, "REMOVE_MAPPING" },
478 { WINBINDD_SET_HWM
, winbindd_set_hwm
, "SET_HWMS" },
482 { WINBINDD_CHECK_MACHACC
, winbindd_check_machine_acct
, "CHECK_MACHACC" },
483 { WINBINDD_PING
, winbindd_ping
, "PING" },
484 { WINBINDD_INFO
, winbindd_info
, "INFO" },
485 { WINBINDD_INTERFACE_VERSION
, winbindd_interface_version
,
486 "INTERFACE_VERSION" },
487 { WINBINDD_DOMAIN_NAME
, winbindd_domain_name
, "DOMAIN_NAME" },
488 { WINBINDD_DOMAIN_INFO
, winbindd_domain_info
, "DOMAIN_INFO" },
489 { WINBINDD_NETBIOS_NAME
, winbindd_netbios_name
, "NETBIOS_NAME" },
490 { WINBINDD_PRIV_PIPE_DIR
, winbindd_priv_pipe_dir
,
491 "WINBINDD_PRIV_PIPE_DIR" },
492 { WINBINDD_GETDCNAME
, winbindd_getdcname
, "GETDCNAME" },
493 { WINBINDD_DSGETDCNAME
, winbindd_dsgetdcname
, "DSGETDCNAME" },
495 /* Credential cache access */
496 { WINBINDD_CCACHE_NTLMAUTH
, winbindd_ccache_ntlm_auth
, "NTLMAUTH" },
500 { WINBINDD_WINS_BYNAME
, winbindd_wins_byname
, "WINS_BYNAME" },
501 { WINBINDD_WINS_BYIP
, winbindd_wins_byip
, "WINS_BYIP" },
505 { WINBINDD_NUM_CMDS
, NULL
, "NONE" }
508 struct winbindd_async_dispatch_table
{
509 enum winbindd_cmd cmd
;
510 const char *cmd_name
;
511 struct tevent_req
*(*send_req
)(TALLOC_CTX
*mem_ctx
,
512 struct tevent_context
*ev
,
513 struct winbindd_request
*request
);
514 NTSTATUS (*recv_req
)(struct tevent_req
*req
, TALLOC_CTX
*mem_ctx
,
515 struct winbindd_response
**presp
);
518 static struct winbindd_async_dispatch_table async_nonpriv_table
[] = {
519 { WINBINDD_PING
, "PING",
520 wb_ping_send
, wb_ping_recv
},
522 { 0, NULL
, NULL
, NULL
}
525 static void wb_request_done(struct tevent_req
*req
);
527 static void process_request(struct winbindd_cli_state
*state
)
529 struct winbindd_dispatch_table
*table
= dispatch_table
;
530 struct winbindd_async_dispatch_table
*atable
;
532 ZERO_STRUCT(state
->response
);
534 state
->response
.result
= WINBINDD_PENDING
;
535 state
->response
.length
= sizeof(struct winbindd_response
);
537 state
->mem_ctx
= talloc_init("winbind request");
538 if (state
->mem_ctx
== NULL
)
541 /* Remember who asked us. */
542 state
->pid
= state
->request
->pid
;
544 /* Process command */
546 for (atable
= async_nonpriv_table
; atable
->send_req
; atable
+= 1) {
547 if (state
->request
->cmd
== atable
->cmd
) {
552 if (atable
->send_req
!= NULL
) {
553 struct tevent_req
*req
;
555 DEBUG(10, ("process_request: Handling async request %s\n",
558 req
= atable
->send_req(state
->mem_ctx
, winbind_event_context(),
561 DEBUG(0, ("process_request: atable->send failed for "
562 "%s\n", atable
->cmd_name
));
563 request_error(state
);
566 tevent_req_set_callback(req
, wb_request_done
, state
);
567 state
->recv_fn
= atable
->recv_req
;
571 for (table
= dispatch_table
; table
->fn
; table
++) {
572 if (state
->request
->cmd
== table
->cmd
) {
573 DEBUG(10,("process_request: request fn %s\n",
574 table
->winbindd_cmd_name
));
581 DEBUG(10,("process_request: unknown request fn number %d\n",
582 (int)state
->request
->cmd
));
583 request_error(state
);
587 static void wb_request_done(struct tevent_req
*req
)
589 struct winbindd_cli_state
*state
= tevent_req_callback_data(
590 req
, struct winbindd_cli_state
);
592 struct winbindd_response
*response
;
594 status
= state
->recv_fn(req
, state
->mem_ctx
, &response
);
596 if (!NT_STATUS_IS_OK(status
)) {
597 DEBUG(10, ("returning %s\n", nt_errstr(status
)));
598 request_error(state
);
600 state
->response
= *response
;
601 state
->response
.result
= WINBINDD_PENDING
;
602 state
->response
.length
= sizeof(struct winbindd_response
);
607 * This is the main event loop of winbind requests. It goes through a
608 * state-machine of 3 read/write requests, 4 if you have extra data to send.
610 * An idle winbind client has a read request of 4 bytes outstanding,
611 * finalizing function is request_len_recv, checking the length. request_recv
612 * then processes the packet. The processing function then at some point has
613 * to call request_finished which schedules sending the response.
616 static void request_finished(struct winbindd_cli_state
*state
);
618 static void winbind_client_request_read(struct tevent_req
*req
);
619 static void winbind_client_response_written(struct tevent_req
*req
);
621 static void request_finished(struct winbindd_cli_state
*state
)
623 struct tevent_req
*req
;
625 TALLOC_FREE(state
->request
);
627 req
= wb_resp_write_send(state
, winbind_event_context(),
628 state
->out_queue
, state
->sock
,
631 state
->finished
= true;
634 tevent_req_set_callback(req
, winbind_client_response_written
, state
);
637 static void winbind_client_response_written(struct tevent_req
*req
)
639 struct winbindd_cli_state
*state
= tevent_req_callback_data(
640 req
, struct winbindd_cli_state
);
644 ret
= wb_resp_write_recv(req
, &err
);
647 DEBUG(2, ("Could not write response to client: %s\n",
649 state
->finished
= true;
653 TALLOC_FREE(state
->mem_ctx
);
655 req
= wb_req_read_send(state
, winbind_event_context(), state
->sock
,
656 WINBINDD_MAX_EXTRA_DATA
);
658 state
->finished
= true;
661 tevent_req_set_callback(req
, winbind_client_request_read
, state
);
664 void request_error(struct winbindd_cli_state
*state
)
666 SMB_ASSERT(state
->response
.result
== WINBINDD_PENDING
);
667 state
->response
.result
= WINBINDD_ERROR
;
668 request_finished(state
);
671 void request_ok(struct winbindd_cli_state
*state
)
673 SMB_ASSERT(state
->response
.result
== WINBINDD_PENDING
);
674 state
->response
.result
= WINBINDD_OK
;
675 request_finished(state
);
678 /* Process a new connection by adding it to the client connection list */
680 static void new_connection(int listen_sock
, bool privileged
)
682 struct sockaddr_un sunaddr
;
683 struct winbindd_cli_state
*state
;
684 struct tevent_req
*req
;
688 /* Accept connection */
690 len
= sizeof(sunaddr
);
693 sock
= accept(listen_sock
, (struct sockaddr
*)(void *)&sunaddr
,
695 } while (sock
== -1 && errno
== EINTR
);
700 DEBUG(6,("accepted socket %d\n", sock
));
702 /* Create new connection structure */
704 if ((state
= TALLOC_ZERO_P(NULL
, struct winbindd_cli_state
)) == NULL
) {
711 state
->out_queue
= tevent_queue_create(state
, "winbind client reply");
712 if (state
->out_queue
== NULL
) {
718 state
->last_access
= time(NULL
);
720 state
->privileged
= privileged
;
722 req
= wb_req_read_send(state
, winbind_event_context(), state
->sock
,
723 WINBINDD_MAX_EXTRA_DATA
);
729 tevent_req_set_callback(req
, winbind_client_request_read
, state
);
731 /* Add to connection list */
733 winbindd_add_client(state
);
736 static void winbind_client_request_read(struct tevent_req
*req
)
738 struct winbindd_cli_state
*state
= tevent_req_callback_data(
739 req
, struct winbindd_cli_state
);
743 ret
= wb_req_read_recv(req
, state
, &state
->request
, &err
);
745 DEBUG(2, ("Could not read client request: %s\n",
747 state
->finished
= true;
750 process_request(state
);
753 /* Remove a client connection from client connection list */
755 static void remove_client(struct winbindd_cli_state
*state
)
760 /* It's a dead client - hold a funeral */
766 /* tell client, we are closing ... */
767 nwritten
= write(state
->sock
, &c
, sizeof(c
));
768 if (nwritten
== -1) {
770 * ignore EPIPE error here, because the other end might
771 * have already closed the socket.
773 if (errno
!= EPIPE
) {
774 DEBUG(2, ("final write to client failed: %s\n",
783 /* Free any getent state */
785 free_getent_state(state
->getpwent_state
);
786 free_getent_state(state
->getgrent_state
);
788 TALLOC_FREE(state
->mem_ctx
);
790 /* Remove from list and free */
792 winbindd_remove_client(state
);
796 /* Shutdown client connection which has been idle for the longest time */
798 static bool remove_idle_client(void)
800 struct winbindd_cli_state
*state
, *remove_state
= NULL
;
801 time_t last_access
= 0;
804 for (state
= winbindd_client_list(); state
; state
= state
->next
) {
805 if (state
->response
.result
!= WINBINDD_PENDING
&&
806 !state
->getpwent_state
&& !state
->getgrent_state
) {
808 if (!last_access
|| state
->last_access
< last_access
) {
809 last_access
= state
->last_access
;
810 remove_state
= state
;
816 DEBUG(5,("Found %d idle client connections, shutting down sock %d, pid %u\n",
817 nidle
, remove_state
->sock
, (unsigned int)remove_state
->pid
));
818 remove_client(remove_state
);
825 struct winbindd_listen_state
{
828 struct tevent_fd
*fde
;
831 static void winbindd_listen_fde_handler(struct tevent_context
*ev
,
832 struct tevent_fd
*fde
,
836 struct winbindd_listen_state
*s
= talloc_get_type_abort(private_data
,
837 struct winbindd_listen_state
);
839 while (winbindd_num_clients() >
840 WINBINDD_MAX_SIMULTANEOUS_CLIENTS
- 1) {
841 DEBUG(5,("winbindd: Exceeding %d client "
842 "connections, removing idle "
844 WINBINDD_MAX_SIMULTANEOUS_CLIENTS
));
845 if (!remove_idle_client()) {
846 DEBUG(0,("winbindd: Exceeding %d "
847 "client connections, no idle "
848 "connection found\n",
849 WINBINDD_MAX_SIMULTANEOUS_CLIENTS
));
853 new_connection(s
->fd
, s
->privileged
);
856 static bool winbindd_setup_listeners(void)
858 struct winbindd_listen_state
*pub_state
= NULL
;
859 struct winbindd_listen_state
*priv_state
= NULL
;
861 pub_state
= talloc(winbind_event_context(),
862 struct winbindd_listen_state
);
867 pub_state
->privileged
= false;
868 pub_state
->fd
= open_winbindd_socket();
869 if (pub_state
->fd
== -1) {
873 pub_state
->fde
= tevent_add_fd(winbind_event_context(),
874 pub_state
, pub_state
->fd
,
876 winbindd_listen_fde_handler
,
878 if (!pub_state
->fde
) {
879 close(pub_state
->fd
);
882 tevent_fd_set_auto_close(pub_state
->fde
);
884 priv_state
= talloc(winbind_event_context(),
885 struct winbindd_listen_state
);
890 priv_state
->privileged
= true;
891 priv_state
->fd
= open_winbindd_priv_socket();
892 if (priv_state
->fd
== -1) {
896 priv_state
->fde
= tevent_add_fd(winbind_event_context(),
897 priv_state
, priv_state
->fd
,
899 winbindd_listen_fde_handler
,
901 if (!priv_state
->fde
) {
902 close(priv_state
->fd
);
905 tevent_fd_set_auto_close(priv_state
->fde
);
909 TALLOC_FREE(pub_state
);
910 TALLOC_FREE(priv_state
);
914 /* Process incoming clients on listen_sock. We use a tricky non-blocking,
915 non-forking, non-threaded model which allows us to handle many
916 simultaneous connections while remaining impervious to many denial of
919 static void process_loop(void)
922 int maxfd
= 0, selret
;
923 struct timeval timeout
, ev_timeout
;
925 run_events(winbind_event_context(), 0, NULL
, NULL
);
927 /* Initialise fd lists for select() */
932 timeout
.tv_sec
= WINBINDD_ESTABLISH_LOOP
;
935 /* Check for any event timeouts. */
940 event_add_to_select_args(winbind_event_context(), &now
,
941 &r_fds
, &w_fds
, &ev_timeout
, &maxfd
);
943 if (get_timed_events_timeout(winbind_event_context(), &ev_timeout
)) {
944 timeout
= timeval_min(&timeout
, &ev_timeout
);
949 selret
= sys_select(maxfd
+ 1, &r_fds
, &w_fds
, NULL
, &timeout
);
956 if (errno
== EINTR
) {
960 /* Select error, something is badly wrong */
968 run_events(winbind_event_context(), selret
, &r_fds
, &w_fds
);
974 run_events(winbind_event_context(), selret
, &r_fds
, &w_fds
);
977 winbindd_check_cache_size(time(NULL
));
981 bool winbindd_use_idmap_cache(void)
986 bool winbindd_use_cache(void)
993 int main(int argc
, char **argv
, char **envp
)
995 static bool is_daemon
= False
;
996 static bool Fork
= True
;
997 static bool log_stdout
= False
;
998 static bool no_process_group
= False
;
1002 OPT_NO_PROCESS_GROUP
,
1005 struct poptOption long_options
[] = {
1007 { "stdout", 'S', POPT_ARG_NONE
, NULL
, OPT_LOG_STDOUT
, "Log to stdout" },
1008 { "foreground", 'F', POPT_ARG_NONE
, NULL
, OPT_FORK
, "Daemon in foreground mode" },
1009 { "no-process-group", 0, POPT_ARG_NONE
, NULL
, OPT_NO_PROCESS_GROUP
, "Don't create a new process group" },
1010 { "daemon", 'D', POPT_ARG_NONE
, NULL
, OPT_DAEMON
, "Become a daemon (default)" },
1011 { "interactive", 'i', POPT_ARG_NONE
, NULL
, 'i', "Interactive mode" },
1012 { "no-caching", 'n', POPT_ARG_NONE
, NULL
, 'n', "Disable caching" },
1018 TALLOC_CTX
*frame
= talloc_stackframe();
1020 /* glibc (?) likes to print "User defined signal 1" and exit if a
1021 SIGUSR[12] is received before a handler is installed */
1023 CatchSignal(SIGUSR1
, SIG_IGN
);
1024 CatchSignal(SIGUSR2
, SIG_IGN
);
1026 fault_setup((void (*)(void *))fault_quit
);
1027 dump_core_setup("winbindd");
1031 /* Initialise for running in non-root mode */
1035 set_remote_machine_name("winbindd", False
);
1037 /* Set environment variable so we don't recursively call ourselves.
1038 This may also be useful interactively. */
1040 if ( !winbind_off() ) {
1041 DEBUG(0,("Failed to disable recusive winbindd calls. Exiting.\n"));
1045 /* Initialise samba/rpc client stuff */
1047 pc
= poptGetContext("winbindd", argc
, (const char **)argv
, long_options
, 0);
1049 while ((opt
= poptGetNextOpt(pc
)) != -1) {
1051 /* Don't become a daemon */
1063 case OPT_NO_PROCESS_GROUP
:
1064 no_process_group
= true;
1066 case OPT_LOG_STDOUT
:
1073 d_fprintf(stderr
, "\nInvalid option %s: %s\n\n",
1074 poptBadOption(pc
, 0), poptStrerror(opt
));
1075 poptPrintUsage(pc
, stderr
, 0);
1080 if (is_daemon
&& interactive
) {
1081 d_fprintf(stderr
,"\nERROR: "
1082 "Option -i|--interactive is not allowed together with -D|--daemon\n\n");
1083 poptPrintUsage(pc
, stderr
, 0);
1087 if (log_stdout
&& Fork
) {
1088 d_fprintf(stderr
, "\nERROR: "
1089 "Can't log to stdout (-S) unless daemon is in foreground +(-F) or interactive (-i)\n\n");
1090 poptPrintUsage(pc
, stderr
, 0);
1094 poptFreeContext(pc
);
1096 if (!override_logfile
) {
1098 if (asprintf(&lfile
,"%s/log.winbindd",
1099 get_dyn_LOGFILEBASE()) > 0) {
1100 lp_set_logfile(lfile
);
1104 setup_logging("winbindd", log_stdout
);
1107 DEBUG(0,("winbindd version %s started.\n", samba_version_string()));
1108 DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE
));
1110 if (!lp_load_initial_only(get_dyn_CONFIGFILE())) {
1111 DEBUG(0, ("error opening config file\n"));
1115 /* Initialise messaging system */
1117 if (winbind_messaging_context() == NULL
) {
1121 if (!reload_services_file(NULL
)) {
1122 DEBUG(0, ("error opening config file\n"));
1126 if (!directory_exist(lp_lockdir())) {
1127 mkdir(lp_lockdir(), 0755);
1137 if (!secrets_init()) {
1139 DEBUG(0,("Could not initialize domain trust account secrets. Giving up\n"));
1143 /* Enable netbios namecache */
1147 /* Unblock all signals we are interested in as they may have been
1148 blocked by the parent process. */
1150 BlockSignals(False
, SIGINT
);
1151 BlockSignals(False
, SIGQUIT
);
1152 BlockSignals(False
, SIGTERM
);
1153 BlockSignals(False
, SIGUSR1
);
1154 BlockSignals(False
, SIGUSR2
);
1155 BlockSignals(False
, SIGHUP
);
1156 BlockSignals(False
, SIGCHLD
);
1159 become_daemon(Fork
, no_process_group
);
1161 pidfile_create("winbindd");
1165 * If we're interactive we want to set our own process group for
1166 * signal management.
1168 if (interactive
&& !no_process_group
)
1169 setpgid( (pid_t
)0, (pid_t
)0);
1174 /* Don't use winbindd_reinit_after_fork here as
1175 * we're just starting up and haven't created any
1176 * winbindd-specific resources we must free yet. JRA.
1179 if (!NT_STATUS_IS_OK(reinit_after_fork(winbind_messaging_context(),
1180 winbind_event_context(),
1182 DEBUG(0,("reinit_after_fork() failed\n"));
1186 /* Setup signal handlers */
1188 if (!winbindd_setup_sig_term_handler(true))
1190 if (!winbindd_setup_sig_hup_handler(NULL
))
1192 if (!winbindd_setup_sig_chld_handler())
1194 if (!winbindd_setup_sig_usr2_handler())
1197 CatchSignal(SIGPIPE
, SIG_IGN
); /* Ignore sigpipe */
1200 * Ensure all cache and idmap caches are consistent
1201 * and initialized before we startup.
1203 if (!winbindd_cache_validate_and_initialize()) {
1207 /* get broadcast messages */
1208 claim_connection(NULL
,"",FLAG_MSG_GENERAL
|FLAG_MSG_DBWRAP
);
1210 /* React on 'smbcontrol winbindd reload-config' in the same way
1211 as to SIGHUP signal */
1212 messaging_register(winbind_messaging_context(), NULL
,
1213 MSG_SMB_CONF_UPDATED
, msg_reload_services
);
1214 messaging_register(winbind_messaging_context(), NULL
,
1215 MSG_SHUTDOWN
, msg_shutdown
);
1217 /* Handle online/offline messages. */
1218 messaging_register(winbind_messaging_context(), NULL
,
1219 MSG_WINBIND_OFFLINE
, winbind_msg_offline
);
1220 messaging_register(winbind_messaging_context(), NULL
,
1221 MSG_WINBIND_ONLINE
, winbind_msg_online
);
1222 messaging_register(winbind_messaging_context(), NULL
,
1223 MSG_WINBIND_ONLINESTATUS
, winbind_msg_onlinestatus
);
1225 messaging_register(winbind_messaging_context(), NULL
,
1226 MSG_DUMP_EVENT_LIST
, winbind_msg_dump_event_list
);
1228 messaging_register(winbind_messaging_context(), NULL
,
1229 MSG_WINBIND_VALIDATE_CACHE
,
1230 winbind_msg_validate_cache
);
1232 messaging_register(winbind_messaging_context(), NULL
,
1233 MSG_WINBIND_DUMP_DOMAIN_LIST
,
1234 winbind_msg_dump_domain_list
);
1236 /* Register handler for MSG_DEBUG. */
1237 messaging_register(winbind_messaging_context(), NULL
,
1241 netsamlogon_cache_init(); /* Non-critical */
1243 /* clear the cached list of trusted domains */
1247 if (!init_domain_list()) {
1248 DEBUG(0,("unable to initialize domain list\n"));
1253 init_locator_child();
1255 smb_nscd_flush_user_cache();
1256 smb_nscd_flush_group_cache();
1258 /* setup listen sockets */
1260 if (!winbindd_setup_listeners()) {
1261 DEBUG(0,("winbindd_setup_listeners() failed\n"));
1266 /* Loop waiting for requests */
1268 struct winbindd_cli_state
*state
;
1270 frame
= talloc_stackframe();
1272 /* refresh the trusted domain cache */
1274 rescan_trusted_domains();
1276 /* Dispose of client connection if it is marked as
1278 state
= winbindd_client_list();
1280 struct winbindd_cli_state
*next
= state
->next
;
1282 if (state
->finished
) {
1283 remove_client(state
);