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
,
375 struct sigaction act
;
376 struct sigaction oldact
;
378 DEBUG(10, ("winbindd_msg_validate_cache: got validate-cache "
382 * call the validation code from a child:
383 * so we don't block the main winbindd and the validation
384 * code can safely use fork/waitpid...
387 child_pid
= sys_fork();
389 if (child_pid
== -1) {
390 DEBUG(1, ("winbind_msg_validate_cache: Could not fork: %s\n",
395 if (child_pid
!= 0) {
397 DEBUG(5, ("winbind_msg_validate_cache: child created with "
398 "pid %d.\n", (int)child_pid
));
404 /* install default SIGCHLD handler: validation code uses fork/waitpid */
406 act
.sa_handler
= SIG_DFL
;
408 /* We *want* SIGALRM to interrupt a system call. */
409 act
.sa_flags
= SA_RESTART
;
411 sigemptyset(&act
.sa_mask
);
412 sigaddset(&act
.sa_mask
,SIGCHLD
);
413 sigaction(SIGCHLD
,&act
,&oldact
);
415 ret
= (uint8
)winbindd_validate_cache_nobackup();
416 DEBUG(10, ("winbindd_msg_validata_cache: got return value %d\n", ret
));
417 messaging_send_buf(msg_ctx
, server_id
, MSG_WINBIND_VALIDATE_CACHE
, &ret
,
422 static struct winbindd_dispatch_table
{
423 enum winbindd_cmd cmd
;
424 void (*fn
)(struct winbindd_cli_state
*state
);
425 const char *winbindd_cmd_name
;
426 } dispatch_table
[] = {
428 /* PAM auth functions */
430 { WINBINDD_PAM_AUTH
, winbindd_pam_auth
, "PAM_AUTH" },
431 { WINBINDD_PAM_AUTH_CRAP
, winbindd_pam_auth_crap
, "AUTH_CRAP" },
432 { WINBINDD_PAM_CHAUTHTOK
, winbindd_pam_chauthtok
, "CHAUTHTOK" },
433 { WINBINDD_PAM_LOGOFF
, winbindd_pam_logoff
, "PAM_LOGOFF" },
434 { WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP
, winbindd_pam_chng_pswd_auth_crap
, "CHNG_PSWD_AUTH_CRAP" },
436 /* Enumeration functions */
438 { WINBINDD_LIST_TRUSTDOM
, winbindd_list_trusted_domains
,
443 { WINBINDD_INFO
, winbindd_info
, "INFO" },
444 { WINBINDD_INTERFACE_VERSION
, winbindd_interface_version
,
445 "INTERFACE_VERSION" },
446 { WINBINDD_DOMAIN_NAME
, winbindd_domain_name
, "DOMAIN_NAME" },
447 { WINBINDD_DOMAIN_INFO
, winbindd_domain_info
, "DOMAIN_INFO" },
448 { WINBINDD_NETBIOS_NAME
, winbindd_netbios_name
, "NETBIOS_NAME" },
449 { WINBINDD_PRIV_PIPE_DIR
, winbindd_priv_pipe_dir
,
450 "WINBINDD_PRIV_PIPE_DIR" },
452 /* Credential cache access */
453 { WINBINDD_CCACHE_NTLMAUTH
, winbindd_ccache_ntlm_auth
, "NTLMAUTH" },
457 { WINBINDD_WINS_BYNAME
, winbindd_wins_byname
, "WINS_BYNAME" },
458 { WINBINDD_WINS_BYIP
, winbindd_wins_byip
, "WINS_BYIP" },
462 { WINBINDD_NUM_CMDS
, NULL
, "NONE" }
465 struct winbindd_async_dispatch_table
{
466 enum winbindd_cmd cmd
;
467 const char *cmd_name
;
468 struct tevent_req
*(*send_req
)(TALLOC_CTX
*mem_ctx
,
469 struct tevent_context
*ev
,
470 struct winbindd_cli_state
*cli
,
471 struct winbindd_request
*request
);
472 NTSTATUS (*recv_req
)(struct tevent_req
*req
,
473 struct winbindd_response
*presp
);
476 static struct winbindd_async_dispatch_table async_nonpriv_table
[] = {
477 { WINBINDD_PING
, "PING",
478 wb_ping_send
, wb_ping_recv
},
479 { WINBINDD_LOOKUPSID
, "LOOKUPSID",
480 winbindd_lookupsid_send
, winbindd_lookupsid_recv
},
481 { WINBINDD_LOOKUPNAME
, "LOOKUPNAME",
482 winbindd_lookupname_send
, winbindd_lookupname_recv
},
483 { WINBINDD_SID_TO_UID
, "SID_TO_UID",
484 winbindd_sid_to_uid_send
, winbindd_sid_to_uid_recv
},
485 { WINBINDD_SID_TO_GID
, "SID_TO_GID",
486 winbindd_sid_to_gid_send
, winbindd_sid_to_gid_recv
},
487 { WINBINDD_UID_TO_SID
, "UID_TO_SID",
488 winbindd_uid_to_sid_send
, winbindd_uid_to_sid_recv
},
489 { WINBINDD_GID_TO_SID
, "GID_TO_SID",
490 winbindd_gid_to_sid_send
, winbindd_gid_to_sid_recv
},
491 { WINBINDD_GETPWSID
, "GETPWSID",
492 winbindd_getpwsid_send
, winbindd_getpwsid_recv
},
493 { WINBINDD_GETPWNAM
, "GETPWNAM",
494 winbindd_getpwnam_send
, winbindd_getpwnam_recv
},
495 { WINBINDD_GETPWUID
, "GETPWUID",
496 winbindd_getpwuid_send
, winbindd_getpwuid_recv
},
497 { WINBINDD_GETSIDALIASES
, "GETSIDALIASES",
498 winbindd_getsidaliases_send
, winbindd_getsidaliases_recv
},
499 { WINBINDD_GETUSERDOMGROUPS
, "GETUSERDOMGROUPS",
500 winbindd_getuserdomgroups_send
, winbindd_getuserdomgroups_recv
},
501 { WINBINDD_GETGROUPS
, "GETGROUPS",
502 winbindd_getgroups_send
, winbindd_getgroups_recv
},
503 { WINBINDD_SHOW_SEQUENCE
, "SHOW_SEQUENCE",
504 winbindd_show_sequence_send
, winbindd_show_sequence_recv
},
505 { WINBINDD_GETGRGID
, "GETGRGID",
506 winbindd_getgrgid_send
, winbindd_getgrgid_recv
},
507 { WINBINDD_GETGRNAM
, "GETGRNAM",
508 winbindd_getgrnam_send
, winbindd_getgrnam_recv
},
509 { WINBINDD_GETUSERSIDS
, "GETUSERSIDS",
510 winbindd_getusersids_send
, winbindd_getusersids_recv
},
511 { WINBINDD_LOOKUPRIDS
, "LOOKUPRIDS",
512 winbindd_lookuprids_send
, winbindd_lookuprids_recv
},
513 { WINBINDD_SETPWENT
, "SETPWENT",
514 winbindd_setpwent_send
, winbindd_setpwent_recv
},
515 { WINBINDD_GETPWENT
, "GETPWENT",
516 winbindd_getpwent_send
, winbindd_getpwent_recv
},
517 { WINBINDD_ENDPWENT
, "ENDPWENT",
518 winbindd_endpwent_send
, winbindd_endpwent_recv
},
519 { WINBINDD_DSGETDCNAME
, "DSGETDCNAME",
520 winbindd_dsgetdcname_send
, winbindd_dsgetdcname_recv
},
521 { WINBINDD_GETDCNAME
, "GETDCNAME",
522 winbindd_getdcname_send
, winbindd_getdcname_recv
},
523 { WINBINDD_SETGRENT
, "SETGRENT",
524 winbindd_setgrent_send
, winbindd_setgrent_recv
},
525 { WINBINDD_GETGRENT
, "GETGRENT",
526 winbindd_getgrent_send
, winbindd_getgrent_recv
},
527 { WINBINDD_ENDGRENT
, "ENDGRENT",
528 winbindd_endgrent_send
, winbindd_endgrent_recv
},
529 { WINBINDD_LIST_USERS
, "LIST_USERS",
530 winbindd_list_users_send
, winbindd_list_users_recv
},
531 { WINBINDD_LIST_GROUPS
, "LIST_GROUPS",
532 winbindd_list_groups_send
, winbindd_list_groups_recv
},
533 { WINBINDD_CHECK_MACHACC
, "CHECK_MACHACC",
534 winbindd_check_machine_acct_send
, winbindd_check_machine_acct_recv
},
536 { 0, NULL
, NULL
, NULL
}
539 static struct winbindd_async_dispatch_table async_priv_table
[] = {
540 { WINBINDD_ALLOCATE_UID
, "ALLOCATE_UID",
541 winbindd_allocate_uid_send
, winbindd_allocate_uid_recv
},
542 { WINBINDD_ALLOCATE_GID
, "ALLOCATE_GID",
543 winbindd_allocate_gid_send
, winbindd_allocate_gid_recv
},
544 { WINBINDD_SET_MAPPING
, "SET_MAPPING",
545 winbindd_set_mapping_send
, winbindd_set_mapping_recv
},
546 { WINBINDD_REMOVE_MAPPING
, "SET_MAPPING",
547 winbindd_remove_mapping_send
, winbindd_remove_mapping_recv
},
548 { WINBINDD_SET_HWM
, "SET_HWM",
549 winbindd_set_hwm_send
, winbindd_set_hwm_recv
},
551 { 0, NULL
, NULL
, NULL
}
554 static void wb_request_done(struct tevent_req
*req
);
556 static void process_request(struct winbindd_cli_state
*state
)
558 struct winbindd_dispatch_table
*table
= dispatch_table
;
559 struct winbindd_async_dispatch_table
*atable
;
561 state
->mem_ctx
= talloc_init("winbind request");
562 if (state
->mem_ctx
== NULL
)
565 /* Remember who asked us. */
566 state
->pid
= state
->request
->pid
;
568 /* Process command */
570 for (atable
= async_nonpriv_table
; atable
->send_req
; atable
+= 1) {
571 if (state
->request
->cmd
== atable
->cmd
) {
576 if ((atable
->send_req
== NULL
) && state
->privileged
) {
577 for (atable
= async_priv_table
; atable
->send_req
;
579 if (state
->request
->cmd
== atable
->cmd
) {
585 if (atable
->send_req
!= NULL
) {
586 struct tevent_req
*req
;
588 DEBUG(10, ("process_request: Handling async request %s\n",
591 req
= atable
->send_req(state
->mem_ctx
, winbind_event_context(),
592 state
, state
->request
);
594 DEBUG(0, ("process_request: atable->send failed for "
595 "%s\n", atable
->cmd_name
));
596 request_error(state
);
599 tevent_req_set_callback(req
, wb_request_done
, state
);
600 state
->recv_fn
= atable
->recv_req
;
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
));
624 DEBUG(10,("process_request: unknown request fn number %d\n",
625 (int)state
->request
->cmd
));
626 request_error(state
);
630 static void wb_request_done(struct tevent_req
*req
)
632 struct winbindd_cli_state
*state
= tevent_req_callback_data(
633 req
, struct winbindd_cli_state
);
636 state
->response
= talloc_zero(state
, struct winbindd_response
);
637 if (state
->response
== NULL
) {
638 remove_client(state
);
641 state
->response
->result
= WINBINDD_PENDING
;
642 state
->response
->length
= sizeof(struct winbindd_response
);
644 status
= state
->recv_fn(req
, state
->response
);
646 if (!NT_STATUS_IS_OK(status
)) {
647 DEBUG(10, ("returning %s\n", nt_errstr(status
)));
648 request_error(state
);
655 * This is the main event loop of winbind requests. It goes through a
656 * state-machine of 3 read/write requests, 4 if you have extra data to send.
658 * An idle winbind client has a read request of 4 bytes outstanding,
659 * finalizing function is request_len_recv, checking the length. request_recv
660 * then processes the packet. The processing function then at some point has
661 * to call request_finished which schedules sending the response.
664 static void request_finished(struct winbindd_cli_state
*state
);
666 static void winbind_client_request_read(struct tevent_req
*req
);
667 static void winbind_client_response_written(struct tevent_req
*req
);
669 static void request_finished(struct winbindd_cli_state
*state
)
671 struct tevent_req
*req
;
673 TALLOC_FREE(state
->request
);
675 req
= wb_resp_write_send(state
, winbind_event_context(),
676 state
->out_queue
, state
->sock
,
679 remove_client(state
);
682 tevent_req_set_callback(req
, winbind_client_response_written
, state
);
685 static void winbind_client_response_written(struct tevent_req
*req
)
687 struct winbindd_cli_state
*state
= tevent_req_callback_data(
688 req
, struct winbindd_cli_state
);
692 ret
= wb_resp_write_recv(req
, &err
);
695 DEBUG(2, ("Could not write response to client: %s\n",
697 remove_client(state
);
701 TALLOC_FREE(state
->mem_ctx
);
702 state
->response
= NULL
;
704 req
= wb_req_read_send(state
, winbind_event_context(), state
->sock
,
705 WINBINDD_MAX_EXTRA_DATA
);
707 remove_client(state
);
710 tevent_req_set_callback(req
, winbind_client_request_read
, state
);
713 void request_error(struct winbindd_cli_state
*state
)
715 SMB_ASSERT(state
->response
->result
== WINBINDD_PENDING
);
716 state
->response
->result
= WINBINDD_ERROR
;
717 request_finished(state
);
720 void request_ok(struct winbindd_cli_state
*state
)
722 SMB_ASSERT(state
->response
->result
== WINBINDD_PENDING
);
723 state
->response
->result
= WINBINDD_OK
;
724 request_finished(state
);
727 /* Process a new connection by adding it to the client connection list */
729 static void new_connection(int listen_sock
, bool privileged
)
731 struct sockaddr_un sunaddr
;
732 struct winbindd_cli_state
*state
;
733 struct tevent_req
*req
;
737 /* Accept connection */
739 len
= sizeof(sunaddr
);
742 sock
= accept(listen_sock
, (struct sockaddr
*)(void *)&sunaddr
,
744 } while (sock
== -1 && errno
== EINTR
);
749 DEBUG(6,("accepted socket %d\n", sock
));
751 /* Create new connection structure */
753 if ((state
= TALLOC_ZERO_P(NULL
, struct winbindd_cli_state
)) == NULL
) {
760 state
->out_queue
= tevent_queue_create(state
, "winbind client reply");
761 if (state
->out_queue
== NULL
) {
767 state
->last_access
= time(NULL
);
769 state
->privileged
= privileged
;
771 req
= wb_req_read_send(state
, winbind_event_context(), state
->sock
,
772 WINBINDD_MAX_EXTRA_DATA
);
778 tevent_req_set_callback(req
, winbind_client_request_read
, state
);
780 /* Add to connection list */
782 winbindd_add_client(state
);
785 static void winbind_client_request_read(struct tevent_req
*req
)
787 struct winbindd_cli_state
*state
= tevent_req_callback_data(
788 req
, struct winbindd_cli_state
);
792 ret
= wb_req_read_recv(req
, state
, &state
->request
, &err
);
795 DEBUG(2, ("Could not read client request: %s\n",
797 remove_client(state
);
800 process_request(state
);
803 /* Remove a client connection from client connection list */
805 static void remove_client(struct winbindd_cli_state
*state
)
810 /* It's a dead client - hold a funeral */
816 /* tell client, we are closing ... */
817 nwritten
= write(state
->sock
, &c
, sizeof(c
));
818 if (nwritten
== -1) {
820 * ignore EPIPE error here, because the other end might
821 * have already closed the socket.
823 if (errno
!= EPIPE
) {
824 DEBUG(2, ("final write to client failed: %s\n",
833 /* Free any getent state */
835 free_getent_state(state
->getgrent_state
);
837 TALLOC_FREE(state
->mem_ctx
);
839 /* Remove from list and free */
841 winbindd_remove_client(state
);
845 /* Shutdown client connection which has been idle for the longest time */
847 static bool remove_idle_client(void)
849 struct winbindd_cli_state
*state
, *remove_state
= NULL
;
850 time_t last_access
= 0;
853 for (state
= winbindd_client_list(); state
; state
= state
->next
) {
854 if (state
->response
== NULL
&&
855 !state
->pwent_state
&& !state
->getgrent_state
) {
857 if (!last_access
|| state
->last_access
< last_access
) {
858 last_access
= state
->last_access
;
859 remove_state
= state
;
865 DEBUG(5,("Found %d idle client connections, shutting down sock %d, pid %u\n",
866 nidle
, remove_state
->sock
, (unsigned int)remove_state
->pid
));
867 remove_client(remove_state
);
874 struct winbindd_listen_state
{
879 static void winbindd_listen_fde_handler(struct tevent_context
*ev
,
880 struct tevent_fd
*fde
,
884 struct winbindd_listen_state
*s
= talloc_get_type_abort(private_data
,
885 struct winbindd_listen_state
);
887 while (winbindd_num_clients() >
888 WINBINDD_MAX_SIMULTANEOUS_CLIENTS
- 1) {
889 DEBUG(5,("winbindd: Exceeding %d client "
890 "connections, removing idle "
892 WINBINDD_MAX_SIMULTANEOUS_CLIENTS
));
893 if (!remove_idle_client()) {
894 DEBUG(0,("winbindd: Exceeding %d "
895 "client connections, no idle "
896 "connection found\n",
897 WINBINDD_MAX_SIMULTANEOUS_CLIENTS
));
901 new_connection(s
->fd
, s
->privileged
);
904 static bool winbindd_setup_listeners(void)
906 struct winbindd_listen_state
*pub_state
= NULL
;
907 struct winbindd_listen_state
*priv_state
= NULL
;
908 struct tevent_fd
*fde
;
910 pub_state
= talloc(winbind_event_context(),
911 struct winbindd_listen_state
);
916 pub_state
->privileged
= false;
917 pub_state
->fd
= open_winbindd_socket();
918 if (pub_state
->fd
== -1) {
922 fde
= tevent_add_fd(winbind_event_context(), pub_state
, pub_state
->fd
,
923 TEVENT_FD_READ
, winbindd_listen_fde_handler
,
926 close(pub_state
->fd
);
929 tevent_fd_set_auto_close(fde
);
931 priv_state
= talloc(winbind_event_context(),
932 struct winbindd_listen_state
);
937 priv_state
->privileged
= true;
938 priv_state
->fd
= open_winbindd_priv_socket();
939 if (priv_state
->fd
== -1) {
943 fde
= tevent_add_fd(winbind_event_context(), priv_state
,
944 priv_state
->fd
, TEVENT_FD_READ
,
945 winbindd_listen_fde_handler
, priv_state
);
947 close(priv_state
->fd
);
950 tevent_fd_set_auto_close(fde
);
954 TALLOC_FREE(pub_state
);
955 TALLOC_FREE(priv_state
);
959 bool winbindd_use_idmap_cache(void)
964 bool winbindd_use_cache(void)
971 int main(int argc
, char **argv
, char **envp
)
973 static bool is_daemon
= False
;
974 static bool Fork
= True
;
975 static bool log_stdout
= False
;
976 static bool no_process_group
= False
;
980 OPT_NO_PROCESS_GROUP
,
983 struct poptOption long_options
[] = {
985 { "stdout", 'S', POPT_ARG_NONE
, NULL
, OPT_LOG_STDOUT
, "Log to stdout" },
986 { "foreground", 'F', POPT_ARG_NONE
, NULL
, OPT_FORK
, "Daemon in foreground mode" },
987 { "no-process-group", 0, POPT_ARG_NONE
, NULL
, OPT_NO_PROCESS_GROUP
, "Don't create a new process group" },
988 { "daemon", 'D', POPT_ARG_NONE
, NULL
, OPT_DAEMON
, "Become a daemon (default)" },
989 { "interactive", 'i', POPT_ARG_NONE
, NULL
, 'i', "Interactive mode" },
990 { "no-caching", 'n', POPT_ARG_NONE
, NULL
, 'n', "Disable caching" },
996 TALLOC_CTX
*frame
= talloc_stackframe();
997 struct tevent_timer
*te
;
999 /* glibc (?) likes to print "User defined signal 1" and exit if a
1000 SIGUSR[12] is received before a handler is installed */
1002 CatchSignal(SIGUSR1
, SIG_IGN
);
1003 CatchSignal(SIGUSR2
, SIG_IGN
);
1005 fault_setup((void (*)(void *))fault_quit
);
1006 dump_core_setup("winbindd");
1010 /* Initialise for running in non-root mode */
1014 set_remote_machine_name("winbindd", False
);
1016 /* Set environment variable so we don't recursively call ourselves.
1017 This may also be useful interactively. */
1019 if ( !winbind_off() ) {
1020 DEBUG(0,("Failed to disable recusive winbindd calls. Exiting.\n"));
1024 /* Initialise samba/rpc client stuff */
1026 pc
= poptGetContext("winbindd", argc
, (const char **)argv
, long_options
, 0);
1028 while ((opt
= poptGetNextOpt(pc
)) != -1) {
1030 /* Don't become a daemon */
1042 case OPT_NO_PROCESS_GROUP
:
1043 no_process_group
= true;
1045 case OPT_LOG_STDOUT
:
1052 d_fprintf(stderr
, "\nInvalid option %s: %s\n\n",
1053 poptBadOption(pc
, 0), poptStrerror(opt
));
1054 poptPrintUsage(pc
, stderr
, 0);
1059 if (is_daemon
&& interactive
) {
1060 d_fprintf(stderr
,"\nERROR: "
1061 "Option -i|--interactive is not allowed together with -D|--daemon\n\n");
1062 poptPrintUsage(pc
, stderr
, 0);
1066 if (log_stdout
&& Fork
) {
1067 d_fprintf(stderr
, "\nERROR: "
1068 "Can't log to stdout (-S) unless daemon is in foreground +(-F) or interactive (-i)\n\n");
1069 poptPrintUsage(pc
, stderr
, 0);
1073 poptFreeContext(pc
);
1075 if (!override_logfile
) {
1077 if (asprintf(&lfile
,"%s/log.winbindd",
1078 get_dyn_LOGFILEBASE()) > 0) {
1079 lp_set_logfile(lfile
);
1083 setup_logging("winbindd", log_stdout
);
1086 DEBUG(0,("winbindd version %s started.\n", samba_version_string()));
1087 DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE
));
1089 if (!lp_load_initial_only(get_dyn_CONFIGFILE())) {
1090 DEBUG(0, ("error opening config file\n"));
1094 /* Initialise messaging system */
1096 if (winbind_messaging_context() == NULL
) {
1100 if (!reload_services_file(NULL
)) {
1101 DEBUG(0, ("error opening config file\n"));
1105 if (!directory_exist(lp_lockdir())) {
1106 mkdir(lp_lockdir(), 0755);
1116 if (!secrets_init()) {
1118 DEBUG(0,("Could not initialize domain trust account secrets. Giving up\n"));
1122 /* Enable netbios namecache */
1126 /* Unblock all signals we are interested in as they may have been
1127 blocked by the parent process. */
1129 BlockSignals(False
, SIGINT
);
1130 BlockSignals(False
, SIGQUIT
);
1131 BlockSignals(False
, SIGTERM
);
1132 BlockSignals(False
, SIGUSR1
);
1133 BlockSignals(False
, SIGUSR2
);
1134 BlockSignals(False
, SIGHUP
);
1135 BlockSignals(False
, SIGCHLD
);
1138 become_daemon(Fork
, no_process_group
);
1140 pidfile_create("winbindd");
1144 * If we're interactive we want to set our own process group for
1145 * signal management.
1147 if (interactive
&& !no_process_group
)
1148 setpgid( (pid_t
)0, (pid_t
)0);
1153 /* Don't use winbindd_reinit_after_fork here as
1154 * we're just starting up and haven't created any
1155 * winbindd-specific resources we must free yet. JRA.
1158 if (!NT_STATUS_IS_OK(reinit_after_fork(winbind_messaging_context(),
1159 winbind_event_context(),
1161 DEBUG(0,("reinit_after_fork() failed\n"));
1165 /* Setup signal handlers */
1167 if (!winbindd_setup_sig_term_handler(true))
1169 if (!winbindd_setup_sig_hup_handler(NULL
))
1171 if (!winbindd_setup_sig_chld_handler())
1173 if (!winbindd_setup_sig_usr2_handler())
1176 CatchSignal(SIGPIPE
, SIG_IGN
); /* Ignore sigpipe */
1179 * Ensure all cache and idmap caches are consistent
1180 * and initialized before we startup.
1182 if (!winbindd_cache_validate_and_initialize()) {
1186 /* get broadcast messages */
1187 claim_connection(NULL
,"",FLAG_MSG_GENERAL
|FLAG_MSG_DBWRAP
);
1189 /* React on 'smbcontrol winbindd reload-config' in the same way
1190 as to SIGHUP signal */
1191 messaging_register(winbind_messaging_context(), NULL
,
1192 MSG_SMB_CONF_UPDATED
, msg_reload_services
);
1193 messaging_register(winbind_messaging_context(), NULL
,
1194 MSG_SHUTDOWN
, msg_shutdown
);
1196 /* Handle online/offline messages. */
1197 messaging_register(winbind_messaging_context(), NULL
,
1198 MSG_WINBIND_OFFLINE
, winbind_msg_offline
);
1199 messaging_register(winbind_messaging_context(), NULL
,
1200 MSG_WINBIND_ONLINE
, winbind_msg_online
);
1201 messaging_register(winbind_messaging_context(), NULL
,
1202 MSG_WINBIND_ONLINESTATUS
, winbind_msg_onlinestatus
);
1204 messaging_register(winbind_messaging_context(), NULL
,
1205 MSG_DUMP_EVENT_LIST
, winbind_msg_dump_event_list
);
1207 messaging_register(winbind_messaging_context(), NULL
,
1208 MSG_WINBIND_VALIDATE_CACHE
,
1209 winbind_msg_validate_cache
);
1211 messaging_register(winbind_messaging_context(), NULL
,
1212 MSG_WINBIND_DUMP_DOMAIN_LIST
,
1213 winbind_msg_dump_domain_list
);
1215 /* Register handler for MSG_DEBUG. */
1216 messaging_register(winbind_messaging_context(), NULL
,
1220 netsamlogon_cache_init(); /* Non-critical */
1222 /* clear the cached list of trusted domains */
1226 if (!init_domain_list()) {
1227 DEBUG(0,("unable to initialize domain list\n"));
1232 init_locator_child();
1234 smb_nscd_flush_user_cache();
1235 smb_nscd_flush_group_cache();
1237 /* setup listen sockets */
1239 if (!winbindd_setup_listeners()) {
1240 DEBUG(0,("winbindd_setup_listeners() failed\n"));
1244 te
= tevent_add_timer(winbind_event_context(), NULL
, timeval_zero(),
1245 rescan_trusted_domains
, NULL
);
1247 DEBUG(0, ("Could not trigger rescan_trusted_domains()\n"));
1252 /* Loop waiting for requests */
1254 frame
= talloc_stackframe();
1256 if (tevent_loop_once(winbind_event_context()) == -1) {
1257 DEBUG(1, ("tevent_loop_once() failed: %s\n",