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"
28 #include "librpc/gen_ndr/messaging.h"
31 #define DBGC_CLASS DBGC_WINBIND
33 static void remove_client(struct winbindd_cli_state
*state
);
35 static bool opt_nocache
= False
;
36 static bool interactive
= False
;
38 extern bool override_logfile
;
40 struct messaging_context
*winbind_messaging_context(void)
42 static struct messaging_context
*ctx
;
45 ctx
= messaging_init(NULL
, procid_self(),
46 winbind_event_context());
49 DEBUG(0, ("Could not init winbind messaging context.\n"));
54 /* Reload configuration */
56 static bool reload_services_file(const char *lfile
)
61 const char *fname
= lp_configfile();
63 if (file_exist(fname
) && !strcsequal(fname
,get_dyn_CONFIGFILE())) {
64 set_dyn_CONFIGFILE(fname
);
68 /* if this is a child, restore the logfile to the special
69 name - <domain>, idmap, etc. */
70 if (lfile
&& *lfile
) {
71 lp_set_logfile(lfile
);
75 ret
= lp_load(get_dyn_CONFIGFILE(),False
,False
,True
,True
);
84 /**************************************************************************** **
86 **************************************************************************** */
88 static void fault_quit(void)
93 static void winbindd_status(void)
95 struct winbindd_cli_state
*tmp
;
97 DEBUG(0, ("winbindd status:\n"));
99 /* Print client state information */
101 DEBUG(0, ("\t%d clients currently active\n", winbindd_num_clients()));
103 if (DEBUGLEVEL
>= 2 && winbindd_num_clients()) {
104 DEBUG(2, ("\tclient list:\n"));
105 for(tmp
= winbindd_client_list(); tmp
; tmp
= tmp
->next
) {
106 DEBUGADD(2, ("\t\tpid %lu, sock %d\n",
107 (unsigned long)tmp
->pid
, tmp
->sock
));
112 /* Print winbindd status to log file */
114 static void print_winbindd_status(void)
119 /* Flush client cache */
121 static void flush_caches(void)
123 /* We need to invalidate cached user list entries on a SIGHUP
124 otherwise cached access denied errors due to restrict anonymous
125 hang around until the sequence number changes. */
127 if (!wcache_invalidate_cache()) {
128 DEBUG(0, ("invalidating the cache failed; revalidate the cache\n"));
129 if (!winbindd_cache_validate_and_initialize()) {
135 static void flush_caches_noinit(void)
138 * We need to invalidate cached user list entries on a SIGHUP
139 * otherwise cached access denied errors due to restrict anonymous
140 * hang around until the sequence number changes.
142 * Skip uninitialized domains when flush cache.
143 * If domain is not initialized, it means it is never
144 * used or never become online. look, wcache_invalidate_cache()
145 * -> get_cache() -> init_dc_connection(). It causes a lot of traffic
146 * for unused domains and large traffic for primay domain's DC if there
150 if (!wcache_invalidate_cache_noinit()) {
151 DEBUG(0, ("invalidating the cache failed; revalidate the cache\n"));
152 if (!winbindd_cache_validate_and_initialize()) {
158 /* Handle the signal by unlinking socket and exiting */
160 static void terminate(bool is_parent
)
163 /* When parent goes away we should
164 * remove the socket file. Not so
165 * when children terminate.
169 if (asprintf(&path
, "%s/%s",
170 get_winbind_pipe_dir(), WINBINDD_SOCKET_NAME
) > 0) {
178 trustdom_cache_shutdown();
180 gencache_stabilize();
184 TALLOC_CTX
*mem_ctx
= talloc_init("end_description");
185 char *description
= talloc_describe_all(mem_ctx
);
187 DEBUG(3, ("tallocs left:\n%s\n", description
));
188 talloc_destroy(mem_ctx
);
193 serverid_deregister_self();
200 static void winbindd_sig_term_handler(struct tevent_context
*ev
,
201 struct tevent_signal
*se
,
207 bool *is_parent
= talloc_get_type_abort(private_data
, bool);
209 DEBUG(0,("Got sig[%d] terminate (is_parent=%d)\n",
210 signum
, (int)*is_parent
));
211 terminate(*is_parent
);
214 bool winbindd_setup_sig_term_handler(bool parent
)
216 struct tevent_signal
*se
;
219 is_parent
= talloc(winbind_event_context(), bool);
226 se
= tevent_add_signal(winbind_event_context(),
229 winbindd_sig_term_handler
,
232 DEBUG(0,("failed to setup SIGTERM handler"));
233 talloc_free(is_parent
);
237 se
= tevent_add_signal(winbind_event_context(),
240 winbindd_sig_term_handler
,
243 DEBUG(0,("failed to setup SIGINT handler"));
244 talloc_free(is_parent
);
248 se
= tevent_add_signal(winbind_event_context(),
251 winbindd_sig_term_handler
,
254 DEBUG(0,("failed to setup SIGINT handler"));
255 talloc_free(is_parent
);
262 static void winbindd_sig_hup_handler(struct tevent_context
*ev
,
263 struct tevent_signal
*se
,
269 const char *file
= (const char *)private_data
;
271 DEBUG(1,("Reloading services after SIGHUP\n"));
272 flush_caches_noinit();
273 reload_services_file(file
);
276 bool winbindd_setup_sig_hup_handler(const char *lfile
)
278 struct tevent_signal
*se
;
282 file
= talloc_strdup(winbind_event_context(),
289 se
= tevent_add_signal(winbind_event_context(),
290 winbind_event_context(),
292 winbindd_sig_hup_handler
,
301 static void winbindd_sig_chld_handler(struct tevent_context
*ev
,
302 struct tevent_signal
*se
,
310 while ((pid
= sys_waitpid(-1, NULL
, WNOHANG
)) > 0) {
311 winbind_child_died(pid
);
315 static bool winbindd_setup_sig_chld_handler(void)
317 struct tevent_signal
*se
;
319 se
= tevent_add_signal(winbind_event_context(),
320 winbind_event_context(),
322 winbindd_sig_chld_handler
,
331 static void winbindd_sig_usr2_handler(struct tevent_context
*ev
,
332 struct tevent_signal
*se
,
338 print_winbindd_status();
341 static bool winbindd_setup_sig_usr2_handler(void)
343 struct tevent_signal
*se
;
345 se
= tevent_add_signal(winbind_event_context(),
346 winbind_event_context(),
348 winbindd_sig_usr2_handler
,
357 /* React on 'smbcontrol winbindd reload-config' in the same way as on SIGHUP*/
358 static void msg_reload_services(struct messaging_context
*msg
,
361 struct server_id server_id
,
364 /* Flush various caches */
366 reload_services_file((const char *) private_data
);
369 /* React on 'smbcontrol winbindd shutdown' in the same way as on SIGTERM*/
370 static void msg_shutdown(struct messaging_context
*msg
,
373 struct server_id server_id
,
376 /* only the parent waits for this message */
377 DEBUG(0,("Got shutdown message\n"));
382 static void winbind_msg_validate_cache(struct messaging_context
*msg_ctx
,
385 struct server_id server_id
,
391 DEBUG(10, ("winbindd_msg_validate_cache: got validate-cache "
395 * call the validation code from a child:
396 * so we don't block the main winbindd and the validation
397 * code can safely use fork/waitpid...
399 child_pid
= sys_fork();
401 if (child_pid
== -1) {
402 DEBUG(1, ("winbind_msg_validate_cache: Could not fork: %s\n",
407 if (child_pid
!= 0) {
409 DEBUG(5, ("winbind_msg_validate_cache: child created with "
410 "pid %d.\n", (int)child_pid
));
416 if (!winbindd_reinit_after_fork(NULL
)) {
420 /* install default SIGCHLD handler: validation code uses fork/waitpid */
421 CatchSignal(SIGCHLD
, SIG_DFL
);
423 ret
= (uint8
)winbindd_validate_cache_nobackup();
424 DEBUG(10, ("winbindd_msg_validata_cache: got return value %d\n", ret
));
425 messaging_send_buf(msg_ctx
, server_id
, MSG_WINBIND_VALIDATE_CACHE
, &ret
,
430 static struct winbindd_dispatch_table
{
431 enum winbindd_cmd cmd
;
432 void (*fn
)(struct winbindd_cli_state
*state
);
433 const char *winbindd_cmd_name
;
434 } dispatch_table
[] = {
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" },
454 { WINBINDD_CCACHE_SAVE
, winbindd_ccache_save
, "CCACHE_SAVE" },
458 { WINBINDD_WINS_BYNAME
, winbindd_wins_byname
, "WINS_BYNAME" },
459 { WINBINDD_WINS_BYIP
, winbindd_wins_byip
, "WINS_BYIP" },
463 { WINBINDD_NUM_CMDS
, NULL
, "NONE" }
466 struct winbindd_async_dispatch_table
{
467 enum winbindd_cmd cmd
;
468 const char *cmd_name
;
469 struct tevent_req
*(*send_req
)(TALLOC_CTX
*mem_ctx
,
470 struct tevent_context
*ev
,
471 struct winbindd_cli_state
*cli
,
472 struct winbindd_request
*request
);
473 NTSTATUS (*recv_req
)(struct tevent_req
*req
,
474 struct winbindd_response
*presp
);
477 static struct winbindd_async_dispatch_table async_nonpriv_table
[] = {
478 { WINBINDD_PING
, "PING",
479 wb_ping_send
, wb_ping_recv
},
480 { WINBINDD_LOOKUPSID
, "LOOKUPSID",
481 winbindd_lookupsid_send
, winbindd_lookupsid_recv
},
482 { WINBINDD_LOOKUPNAME
, "LOOKUPNAME",
483 winbindd_lookupname_send
, winbindd_lookupname_recv
},
484 { WINBINDD_SID_TO_UID
, "SID_TO_UID",
485 winbindd_sid_to_uid_send
, winbindd_sid_to_uid_recv
},
486 { WINBINDD_SID_TO_GID
, "SID_TO_GID",
487 winbindd_sid_to_gid_send
, winbindd_sid_to_gid_recv
},
488 { WINBINDD_UID_TO_SID
, "UID_TO_SID",
489 winbindd_uid_to_sid_send
, winbindd_uid_to_sid_recv
},
490 { WINBINDD_GID_TO_SID
, "GID_TO_SID",
491 winbindd_gid_to_sid_send
, winbindd_gid_to_sid_recv
},
492 { WINBINDD_GETPWSID
, "GETPWSID",
493 winbindd_getpwsid_send
, winbindd_getpwsid_recv
},
494 { WINBINDD_GETPWNAM
, "GETPWNAM",
495 winbindd_getpwnam_send
, winbindd_getpwnam_recv
},
496 { WINBINDD_GETPWUID
, "GETPWUID",
497 winbindd_getpwuid_send
, winbindd_getpwuid_recv
},
498 { WINBINDD_GETSIDALIASES
, "GETSIDALIASES",
499 winbindd_getsidaliases_send
, winbindd_getsidaliases_recv
},
500 { WINBINDD_GETUSERDOMGROUPS
, "GETUSERDOMGROUPS",
501 winbindd_getuserdomgroups_send
, winbindd_getuserdomgroups_recv
},
502 { WINBINDD_GETGROUPS
, "GETGROUPS",
503 winbindd_getgroups_send
, winbindd_getgroups_recv
},
504 { WINBINDD_SHOW_SEQUENCE
, "SHOW_SEQUENCE",
505 winbindd_show_sequence_send
, winbindd_show_sequence_recv
},
506 { WINBINDD_GETGRGID
, "GETGRGID",
507 winbindd_getgrgid_send
, winbindd_getgrgid_recv
},
508 { WINBINDD_GETGRNAM
, "GETGRNAM",
509 winbindd_getgrnam_send
, winbindd_getgrnam_recv
},
510 { WINBINDD_GETUSERSIDS
, "GETUSERSIDS",
511 winbindd_getusersids_send
, winbindd_getusersids_recv
},
512 { WINBINDD_LOOKUPRIDS
, "LOOKUPRIDS",
513 winbindd_lookuprids_send
, winbindd_lookuprids_recv
},
514 { WINBINDD_SETPWENT
, "SETPWENT",
515 winbindd_setpwent_send
, winbindd_setpwent_recv
},
516 { WINBINDD_GETPWENT
, "GETPWENT",
517 winbindd_getpwent_send
, winbindd_getpwent_recv
},
518 { WINBINDD_ENDPWENT
, "ENDPWENT",
519 winbindd_endpwent_send
, winbindd_endpwent_recv
},
520 { WINBINDD_DSGETDCNAME
, "DSGETDCNAME",
521 winbindd_dsgetdcname_send
, winbindd_dsgetdcname_recv
},
522 { WINBINDD_GETDCNAME
, "GETDCNAME",
523 winbindd_getdcname_send
, winbindd_getdcname_recv
},
524 { WINBINDD_SETGRENT
, "SETGRENT",
525 winbindd_setgrent_send
, winbindd_setgrent_recv
},
526 { WINBINDD_GETGRENT
, "GETGRENT",
527 winbindd_getgrent_send
, winbindd_getgrent_recv
},
528 { WINBINDD_ENDGRENT
, "ENDGRENT",
529 winbindd_endgrent_send
, winbindd_endgrent_recv
},
530 { WINBINDD_LIST_USERS
, "LIST_USERS",
531 winbindd_list_users_send
, winbindd_list_users_recv
},
532 { WINBINDD_LIST_GROUPS
, "LIST_GROUPS",
533 winbindd_list_groups_send
, winbindd_list_groups_recv
},
534 { WINBINDD_CHECK_MACHACC
, "CHECK_MACHACC",
535 winbindd_check_machine_acct_send
, winbindd_check_machine_acct_recv
},
536 { WINBINDD_PING_DC
, "PING_DC",
537 winbindd_ping_dc_send
, winbindd_ping_dc_recv
},
538 { WINBINDD_PAM_AUTH
, "PAM_AUTH",
539 winbindd_pam_auth_send
, winbindd_pam_auth_recv
},
540 { WINBINDD_PAM_LOGOFF
, "PAM_LOGOFF",
541 winbindd_pam_logoff_send
, winbindd_pam_logoff_recv
},
542 { WINBINDD_PAM_CHAUTHTOK
, "PAM_CHAUTHTOK",
543 winbindd_pam_chauthtok_send
, winbindd_pam_chauthtok_recv
},
544 { WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP
, "PAM_CHNG_PSWD_AUTH_CRAP",
545 winbindd_pam_chng_pswd_auth_crap_send
,
546 winbindd_pam_chng_pswd_auth_crap_recv
},
548 { 0, NULL
, NULL
, NULL
}
551 static struct winbindd_async_dispatch_table async_priv_table
[] = {
552 { WINBINDD_ALLOCATE_UID
, "ALLOCATE_UID",
553 winbindd_allocate_uid_send
, winbindd_allocate_uid_recv
},
554 { WINBINDD_ALLOCATE_GID
, "ALLOCATE_GID",
555 winbindd_allocate_gid_send
, winbindd_allocate_gid_recv
},
556 { WINBINDD_SET_MAPPING
, "SET_MAPPING",
557 winbindd_set_mapping_send
, winbindd_set_mapping_recv
},
558 { WINBINDD_REMOVE_MAPPING
, "SET_MAPPING",
559 winbindd_remove_mapping_send
, winbindd_remove_mapping_recv
},
560 { WINBINDD_SET_HWM
, "SET_HWM",
561 winbindd_set_hwm_send
, winbindd_set_hwm_recv
},
562 { WINBINDD_CHANGE_MACHACC
, "CHANGE_MACHACC",
563 winbindd_change_machine_acct_send
, winbindd_change_machine_acct_recv
},
564 { WINBINDD_PAM_AUTH_CRAP
, "PAM_AUTH_CRAP",
565 winbindd_pam_auth_crap_send
, winbindd_pam_auth_crap_recv
},
567 { 0, NULL
, NULL
, NULL
}
570 static void wb_request_done(struct tevent_req
*req
);
572 static void process_request(struct winbindd_cli_state
*state
)
574 struct winbindd_dispatch_table
*table
= dispatch_table
;
575 struct winbindd_async_dispatch_table
*atable
;
577 state
->mem_ctx
= talloc_named(state
, 0, "winbind request");
578 if (state
->mem_ctx
== NULL
)
581 /* Remember who asked us. */
582 state
->pid
= state
->request
->pid
;
584 state
->cmd_name
= "unknown request";
585 state
->recv_fn
= NULL
;
587 /* Process command */
589 for (atable
= async_nonpriv_table
; atable
->send_req
; atable
+= 1) {
590 if (state
->request
->cmd
== atable
->cmd
) {
595 if ((atable
->send_req
== NULL
) && state
->privileged
) {
596 for (atable
= async_priv_table
; atable
->send_req
;
598 if (state
->request
->cmd
== atable
->cmd
) {
604 if (atable
->send_req
!= NULL
) {
605 struct tevent_req
*req
;
607 state
->cmd_name
= atable
->cmd_name
;
608 state
->recv_fn
= atable
->recv_req
;
610 DEBUG(10, ("process_request: Handling async request %d:%s\n",
611 (int)state
->pid
, state
->cmd_name
));
613 req
= atable
->send_req(state
->mem_ctx
, winbind_event_context(),
614 state
, state
->request
);
616 DEBUG(0, ("process_request: atable->send failed for "
617 "%s\n", atable
->cmd_name
));
618 request_error(state
);
621 tevent_req_set_callback(req
, wb_request_done
, state
);
625 state
->response
= talloc_zero(state
->mem_ctx
,
626 struct winbindd_response
);
627 if (state
->response
== NULL
) {
628 DEBUG(10, ("talloc failed\n"));
629 remove_client(state
);
632 state
->response
->result
= WINBINDD_PENDING
;
633 state
->response
->length
= sizeof(struct winbindd_response
);
635 for (table
= dispatch_table
; table
->fn
; table
++) {
636 if (state
->request
->cmd
== table
->cmd
) {
637 DEBUG(10,("process_request: request fn %s\n",
638 table
->winbindd_cmd_name
));
639 state
->cmd_name
= table
->winbindd_cmd_name
;
646 DEBUG(10,("process_request: unknown request fn number %d\n",
647 (int)state
->request
->cmd
));
648 request_error(state
);
652 static void wb_request_done(struct tevent_req
*req
)
654 struct winbindd_cli_state
*state
= tevent_req_callback_data(
655 req
, struct winbindd_cli_state
);
658 state
->response
= talloc_zero(state
->mem_ctx
,
659 struct winbindd_response
);
660 if (state
->response
== NULL
) {
661 DEBUG(0, ("wb_request_done[%d:%s]: talloc_zero failed - removing client\n",
662 (int)state
->pid
, state
->cmd_name
));
663 remove_client(state
);
666 state
->response
->result
= WINBINDD_PENDING
;
667 state
->response
->length
= sizeof(struct winbindd_response
);
669 status
= state
->recv_fn(req
, state
->response
);
672 DEBUG(10,("wb_request_done[%d:%s]: %s\n",
673 (int)state
->pid
, state
->cmd_name
, nt_errstr(status
)));
675 if (!NT_STATUS_IS_OK(status
)) {
676 request_error(state
);
683 * This is the main event loop of winbind requests. It goes through a
684 * state-machine of 3 read/write requests, 4 if you have extra data to send.
686 * An idle winbind client has a read request of 4 bytes outstanding,
687 * finalizing function is request_len_recv, checking the length. request_recv
688 * then processes the packet. The processing function then at some point has
689 * to call request_finished which schedules sending the response.
692 static void request_finished(struct winbindd_cli_state
*state
);
694 static void winbind_client_request_read(struct tevent_req
*req
);
695 static void winbind_client_response_written(struct tevent_req
*req
);
697 static void request_finished(struct winbindd_cli_state
*state
)
699 struct tevent_req
*req
;
701 TALLOC_FREE(state
->request
);
703 req
= wb_resp_write_send(state
, winbind_event_context(),
704 state
->out_queue
, state
->sock
,
707 DEBUG(10,("request_finished[%d:%s]: wb_resp_write_send() failed\n",
708 (int)state
->pid
, state
->cmd_name
));
709 remove_client(state
);
712 tevent_req_set_callback(req
, winbind_client_response_written
, state
);
715 static void winbind_client_response_written(struct tevent_req
*req
)
717 struct winbindd_cli_state
*state
= tevent_req_callback_data(
718 req
, struct winbindd_cli_state
);
722 ret
= wb_resp_write_recv(req
, &err
);
727 DEBUG(2, ("Could not write response[%d:%s] to client: %s\n",
728 (int)state
->pid
, state
->cmd_name
, strerror(err
)));
729 remove_client(state
);
733 DEBUG(10,("winbind_client_response_written[%d:%s]: delivered response "
734 "to client\n", (int)state
->pid
, state
->cmd_name
));
736 TALLOC_FREE(state
->mem_ctx
);
737 state
->response
= NULL
;
738 state
->cmd_name
= "no request";
739 state
->recv_fn
= NULL
;
741 req
= wb_req_read_send(state
, winbind_event_context(), state
->sock
,
742 WINBINDD_MAX_EXTRA_DATA
);
744 remove_client(state
);
747 tevent_req_set_callback(req
, winbind_client_request_read
, state
);
750 void request_error(struct winbindd_cli_state
*state
)
752 SMB_ASSERT(state
->response
->result
== WINBINDD_PENDING
);
753 state
->response
->result
= WINBINDD_ERROR
;
754 request_finished(state
);
757 void request_ok(struct winbindd_cli_state
*state
)
759 SMB_ASSERT(state
->response
->result
== WINBINDD_PENDING
);
760 state
->response
->result
= WINBINDD_OK
;
761 request_finished(state
);
764 /* Process a new connection by adding it to the client connection list */
766 static void new_connection(int listen_sock
, bool privileged
)
768 struct sockaddr_un sunaddr
;
769 struct winbindd_cli_state
*state
;
770 struct tevent_req
*req
;
774 /* Accept connection */
776 len
= sizeof(sunaddr
);
779 sock
= accept(listen_sock
, (struct sockaddr
*)(void *)&sunaddr
,
781 } while (sock
== -1 && errno
== EINTR
);
786 DEBUG(6,("accepted socket %d\n", sock
));
788 /* Create new connection structure */
790 if ((state
= TALLOC_ZERO_P(NULL
, struct winbindd_cli_state
)) == NULL
) {
797 state
->out_queue
= tevent_queue_create(state
, "winbind client reply");
798 if (state
->out_queue
== NULL
) {
804 state
->last_access
= time(NULL
);
806 state
->privileged
= privileged
;
808 req
= wb_req_read_send(state
, winbind_event_context(), state
->sock
,
809 WINBINDD_MAX_EXTRA_DATA
);
815 tevent_req_set_callback(req
, winbind_client_request_read
, state
);
817 /* Add to connection list */
819 winbindd_add_client(state
);
822 static void winbind_client_request_read(struct tevent_req
*req
)
824 struct winbindd_cli_state
*state
= tevent_req_callback_data(
825 req
, struct winbindd_cli_state
);
829 ret
= wb_req_read_recv(req
, state
, &state
->request
, &err
);
833 DEBUG(6, ("closing socket %d, client exited\n",
836 DEBUG(2, ("Could not read client request from fd %d: "
837 "%s\n", state
->sock
, strerror(err
)));
841 remove_client(state
);
844 process_request(state
);
847 /* Remove a client connection from client connection list */
849 static void remove_client(struct winbindd_cli_state
*state
)
854 /* It's a dead client - hold a funeral */
860 if (state
->sock
!= -1) {
861 /* tell client, we are closing ... */
862 nwritten
= write(state
->sock
, &c
, sizeof(c
));
863 if (nwritten
== -1) {
864 DEBUG(2, ("final write to client failed: %s\n",
874 TALLOC_FREE(state
->mem_ctx
);
876 /* Remove from list and free */
878 winbindd_remove_client(state
);
882 /* Shutdown client connection which has been idle for the longest time */
884 static bool remove_idle_client(void)
886 struct winbindd_cli_state
*state
, *remove_state
= NULL
;
887 time_t last_access
= 0;
890 for (state
= winbindd_client_list(); state
; state
= state
->next
) {
891 if (state
->response
== NULL
&&
892 !state
->pwent_state
&& !state
->grent_state
) {
894 if (!last_access
|| state
->last_access
< last_access
) {
895 last_access
= state
->last_access
;
896 remove_state
= state
;
902 DEBUG(5,("Found %d idle client connections, shutting down sock %d, pid %u\n",
903 nidle
, remove_state
->sock
, (unsigned int)remove_state
->pid
));
904 remove_client(remove_state
);
911 struct winbindd_listen_state
{
916 static void winbindd_listen_fde_handler(struct tevent_context
*ev
,
917 struct tevent_fd
*fde
,
921 struct winbindd_listen_state
*s
= talloc_get_type_abort(private_data
,
922 struct winbindd_listen_state
);
924 while (winbindd_num_clients() >
925 WINBINDD_MAX_SIMULTANEOUS_CLIENTS
- 1) {
926 DEBUG(5,("winbindd: Exceeding %d client "
927 "connections, removing idle "
929 WINBINDD_MAX_SIMULTANEOUS_CLIENTS
));
930 if (!remove_idle_client()) {
931 DEBUG(0,("winbindd: Exceeding %d "
932 "client connections, no idle "
933 "connection found\n",
934 WINBINDD_MAX_SIMULTANEOUS_CLIENTS
));
938 new_connection(s
->fd
, s
->privileged
);
942 * Winbindd socket accessor functions
945 const char *get_winbind_pipe_dir(void)
947 return lp_parm_const_string(-1, "winbindd", "socket dir", WINBINDD_SOCKET_DIR
);
950 char *get_winbind_priv_pipe_dir(void)
952 return lock_path(WINBINDD_PRIV_SOCKET_SUBDIR
);
955 static bool winbindd_setup_listeners(void)
957 struct winbindd_listen_state
*pub_state
= NULL
;
958 struct winbindd_listen_state
*priv_state
= NULL
;
959 struct tevent_fd
*fde
;
961 pub_state
= talloc(winbind_event_context(),
962 struct winbindd_listen_state
);
967 pub_state
->privileged
= false;
968 pub_state
->fd
= create_pipe_sock(
969 get_winbind_pipe_dir(), WINBINDD_SOCKET_NAME
, 0755);
970 if (pub_state
->fd
== -1) {
974 fde
= tevent_add_fd(winbind_event_context(), pub_state
, pub_state
->fd
,
975 TEVENT_FD_READ
, winbindd_listen_fde_handler
,
978 close(pub_state
->fd
);
981 tevent_fd_set_auto_close(fde
);
983 priv_state
= talloc(winbind_event_context(),
984 struct winbindd_listen_state
);
989 priv_state
->privileged
= true;
990 priv_state
->fd
= create_pipe_sock(
991 get_winbind_priv_pipe_dir(), WINBINDD_SOCKET_NAME
, 0750);
992 if (priv_state
->fd
== -1) {
996 fde
= tevent_add_fd(winbind_event_context(), priv_state
,
997 priv_state
->fd
, TEVENT_FD_READ
,
998 winbindd_listen_fde_handler
, priv_state
);
1000 close(priv_state
->fd
);
1003 tevent_fd_set_auto_close(fde
);
1007 TALLOC_FREE(pub_state
);
1008 TALLOC_FREE(priv_state
);
1012 bool winbindd_use_idmap_cache(void)
1014 return !opt_nocache
;
1017 bool winbindd_use_cache(void)
1019 return !opt_nocache
;
1022 void winbindd_register_handlers(void)
1024 struct tevent_timer
*te
;
1025 /* Setup signal handlers */
1027 if (!winbindd_setup_sig_term_handler(true))
1029 if (!winbindd_setup_sig_hup_handler(NULL
))
1031 if (!winbindd_setup_sig_chld_handler())
1033 if (!winbindd_setup_sig_usr2_handler())
1036 CatchSignal(SIGPIPE
, SIG_IGN
); /* Ignore sigpipe */
1039 * Ensure all cache and idmap caches are consistent
1040 * and initialized before we startup.
1042 if (!winbindd_cache_validate_and_initialize()) {
1046 /* get broadcast messages */
1048 if (!serverid_register_self(FLAG_MSG_GENERAL
|FLAG_MSG_DBWRAP
)) {
1049 DEBUG(1, ("Could not register myself in serverid.tdb\n"));
1053 /* React on 'smbcontrol winbindd reload-config' in the same way
1054 as to SIGHUP signal */
1055 messaging_register(winbind_messaging_context(), NULL
,
1056 MSG_SMB_CONF_UPDATED
, msg_reload_services
);
1057 messaging_register(winbind_messaging_context(), NULL
,
1058 MSG_SHUTDOWN
, msg_shutdown
);
1060 /* Handle online/offline messages. */
1061 messaging_register(winbind_messaging_context(), NULL
,
1062 MSG_WINBIND_OFFLINE
, winbind_msg_offline
);
1063 messaging_register(winbind_messaging_context(), NULL
,
1064 MSG_WINBIND_ONLINE
, winbind_msg_online
);
1065 messaging_register(winbind_messaging_context(), NULL
,
1066 MSG_WINBIND_ONLINESTATUS
, winbind_msg_onlinestatus
);
1068 messaging_register(winbind_messaging_context(), NULL
,
1069 MSG_DUMP_EVENT_LIST
, winbind_msg_dump_event_list
);
1071 messaging_register(winbind_messaging_context(), NULL
,
1072 MSG_WINBIND_VALIDATE_CACHE
,
1073 winbind_msg_validate_cache
);
1075 messaging_register(winbind_messaging_context(), NULL
,
1076 MSG_WINBIND_DUMP_DOMAIN_LIST
,
1077 winbind_msg_dump_domain_list
);
1079 /* Register handler for MSG_DEBUG. */
1080 messaging_register(winbind_messaging_context(), NULL
,
1084 netsamlogon_cache_init(); /* Non-critical */
1086 /* clear the cached list of trusted domains */
1090 if (!init_domain_list()) {
1091 DEBUG(0,("unable to initialize domain list\n"));
1096 init_locator_child();
1098 smb_nscd_flush_user_cache();
1099 smb_nscd_flush_group_cache();
1101 te
= tevent_add_timer(winbind_event_context(), NULL
, timeval_zero(),
1102 rescan_trusted_domains
, NULL
);
1104 DEBUG(0, ("Could not trigger rescan_trusted_domains()\n"));
1112 int main(int argc
, char **argv
, char **envp
)
1114 static bool is_daemon
= False
;
1115 static bool Fork
= True
;
1116 static bool log_stdout
= False
;
1117 static bool no_process_group
= False
;
1121 OPT_NO_PROCESS_GROUP
,
1124 struct poptOption long_options
[] = {
1126 { "stdout", 'S', POPT_ARG_NONE
, NULL
, OPT_LOG_STDOUT
, "Log to stdout" },
1127 { "foreground", 'F', POPT_ARG_NONE
, NULL
, OPT_FORK
, "Daemon in foreground mode" },
1128 { "no-process-group", 0, POPT_ARG_NONE
, NULL
, OPT_NO_PROCESS_GROUP
, "Don't create a new process group" },
1129 { "daemon", 'D', POPT_ARG_NONE
, NULL
, OPT_DAEMON
, "Become a daemon (default)" },
1130 { "interactive", 'i', POPT_ARG_NONE
, NULL
, 'i', "Interactive mode" },
1131 { "no-caching", 'n', POPT_ARG_NONE
, NULL
, 'n', "Disable caching" },
1137 TALLOC_CTX
*frame
= talloc_stackframe();
1139 /* glibc (?) likes to print "User defined signal 1" and exit if a
1140 SIGUSR[12] is received before a handler is installed */
1142 CatchSignal(SIGUSR1
, SIG_IGN
);
1143 CatchSignal(SIGUSR2
, SIG_IGN
);
1145 fault_setup((void (*)(void *))fault_quit
);
1146 dump_core_setup("winbindd");
1150 /* Initialise for running in non-root mode */
1154 set_remote_machine_name("winbindd", False
);
1156 /* Set environment variable so we don't recursively call ourselves.
1157 This may also be useful interactively. */
1159 if ( !winbind_off() ) {
1160 DEBUG(0,("Failed to disable recusive winbindd calls. Exiting.\n"));
1164 /* Initialise samba/rpc client stuff */
1166 pc
= poptGetContext("winbindd", argc
, (const char **)argv
, long_options
, 0);
1168 while ((opt
= poptGetNextOpt(pc
)) != -1) {
1170 /* Don't become a daemon */
1182 case OPT_NO_PROCESS_GROUP
:
1183 no_process_group
= true;
1185 case OPT_LOG_STDOUT
:
1192 d_fprintf(stderr
, "\nInvalid option %s: %s\n\n",
1193 poptBadOption(pc
, 0), poptStrerror(opt
));
1194 poptPrintUsage(pc
, stderr
, 0);
1199 if (is_daemon
&& interactive
) {
1200 d_fprintf(stderr
,"\nERROR: "
1201 "Option -i|--interactive is not allowed together with -D|--daemon\n\n");
1202 poptPrintUsage(pc
, stderr
, 0);
1206 if (log_stdout
&& Fork
) {
1207 d_fprintf(stderr
, "\nERROR: "
1208 "Can't log to stdout (-S) unless daemon is in foreground +(-F) or interactive (-i)\n\n");
1209 poptPrintUsage(pc
, stderr
, 0);
1213 poptFreeContext(pc
);
1215 if (!override_logfile
) {
1217 if (asprintf(&lfile
,"%s/log.winbindd",
1218 get_dyn_LOGFILEBASE()) > 0) {
1219 lp_set_logfile(lfile
);
1223 setup_logging("winbindd", log_stdout
);
1226 DEBUG(0,("winbindd version %s started.\n", samba_version_string()));
1227 DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE
));
1229 if (!lp_load_initial_only(get_dyn_CONFIGFILE())) {
1230 DEBUG(0, ("error opening config file\n"));
1234 /* Initialise messaging system */
1236 if (winbind_messaging_context() == NULL
) {
1240 if (!reload_services_file(NULL
)) {
1241 DEBUG(0, ("error opening config file\n"));
1245 if (!directory_exist(lp_lockdir())) {
1246 mkdir(lp_lockdir(), 0755);
1256 if (!secrets_init()) {
1258 DEBUG(0,("Could not initialize domain trust account secrets. Giving up\n"));
1262 /* Unblock all signals we are interested in as they may have been
1263 blocked by the parent process. */
1265 BlockSignals(False
, SIGINT
);
1266 BlockSignals(False
, SIGQUIT
);
1267 BlockSignals(False
, SIGTERM
);
1268 BlockSignals(False
, SIGUSR1
);
1269 BlockSignals(False
, SIGUSR2
);
1270 BlockSignals(False
, SIGHUP
);
1271 BlockSignals(False
, SIGCHLD
);
1274 become_daemon(Fork
, no_process_group
, log_stdout
);
1276 pidfile_create("winbindd");
1280 * If we're interactive we want to set our own process group for
1281 * signal management.
1283 if (interactive
&& !no_process_group
)
1284 setpgid( (pid_t
)0, (pid_t
)0);
1289 /* Don't use winbindd_reinit_after_fork here as
1290 * we're just starting up and haven't created any
1291 * winbindd-specific resources we must free yet. JRA.
1294 if (!NT_STATUS_IS_OK(reinit_after_fork(winbind_messaging_context(),
1295 winbind_event_context(),
1297 DEBUG(0,("reinit_after_fork() failed\n"));
1301 winbindd_register_handlers();
1303 /* setup listen sockets */
1305 if (!winbindd_setup_listeners()) {
1306 DEBUG(0,("winbindd_setup_listeners() failed\n"));
1311 /* Loop waiting for requests */
1313 frame
= talloc_stackframe();
1315 if (tevent_loop_once(winbind_event_context()) == -1) {
1316 DEBUG(1, ("tevent_loop_once() failed: %s\n",