2 Unix SMB/CIFS implementation.
4 Winbind daemon for ntdom nss module
6 Copyright (C) by Tim Potter 2000-2002
7 Copyright (C) Andrew Tridgell 2002
8 Copyright (C) Jelmer Vernooij 2003
9 Copyright (C) Volker Lendecke 2004
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 #include "popt_common.h"
28 #include "nsswitch/winbind_client.h"
29 #include "../../nsswitch/libwbclient/wbc_async.h"
30 #include "librpc/gen_ndr/messaging.h"
31 #include "../librpc/gen_ndr/srv_lsa.h"
32 #include "../librpc/gen_ndr/srv_samr.h"
37 #define DBGC_CLASS DBGC_WINBIND
39 static bool client_is_idle(struct winbindd_cli_state
*state
);
40 static void remove_client(struct winbindd_cli_state
*state
);
42 static bool opt_nocache
= False
;
43 static bool interactive
= False
;
45 extern bool override_logfile
;
47 /* Reload configuration */
49 static bool reload_services_file(const char *lfile
)
54 const char *fname
= lp_configfile();
56 if (file_exist(fname
) && !strcsequal(fname
,get_dyn_CONFIGFILE())) {
57 set_dyn_CONFIGFILE(fname
);
61 /* if this is a child, restore the logfile to the special
62 name - <domain>, idmap, etc. */
63 if (lfile
&& *lfile
) {
64 lp_set_logfile(lfile
);
68 ret
= lp_load(get_dyn_CONFIGFILE(),False
,False
,True
,True
);
77 /**************************************************************************** **
79 **************************************************************************** */
81 static void fault_quit(void)
86 static void winbindd_status(void)
88 struct winbindd_cli_state
*tmp
;
90 DEBUG(0, ("winbindd status:\n"));
92 /* Print client state information */
94 DEBUG(0, ("\t%d clients currently active\n", winbindd_num_clients()));
96 if (DEBUGLEVEL
>= 2 && winbindd_num_clients()) {
97 DEBUG(2, ("\tclient list:\n"));
98 for(tmp
= winbindd_client_list(); tmp
; tmp
= tmp
->next
) {
99 DEBUGADD(2, ("\t\tpid %lu, sock %d (%s)\n",
100 (unsigned long)tmp
->pid
, tmp
->sock
,
101 client_is_idle(tmp
) ? "idle" : "active"));
106 /* Flush client cache */
108 static void flush_caches(void)
110 /* We need to invalidate cached user list entries on a SIGHUP
111 otherwise cached access denied errors due to restrict anonymous
112 hang around until the sequence number changes. */
114 if (!wcache_invalidate_cache()) {
115 DEBUG(0, ("invalidating the cache failed; revalidate the cache\n"));
116 if (!winbindd_cache_validate_and_initialize()) {
122 static void flush_caches_noinit(void)
125 * We need to invalidate cached user list entries on a SIGHUP
126 * otherwise cached access denied errors due to restrict anonymous
127 * hang around until the sequence number changes.
129 * Skip uninitialized domains when flush cache.
130 * If domain is not initialized, it means it is never
131 * used or never become online. look, wcache_invalidate_cache()
132 * -> get_cache() -> init_dc_connection(). It causes a lot of traffic
133 * for unused domains and large traffic for primay domain's DC if there
137 if (!wcache_invalidate_cache_noinit()) {
138 DEBUG(0, ("invalidating the cache failed; revalidate the cache\n"));
139 if (!winbindd_cache_validate_and_initialize()) {
145 /* Handle the signal by unlinking socket and exiting */
147 static void terminate(bool is_parent
)
150 /* When parent goes away we should
151 * remove the socket file. Not so
152 * when children terminate.
156 if (asprintf(&path
, "%s/%s",
157 get_winbind_pipe_dir(), WINBINDD_SOCKET_NAME
) > 0) {
165 trustdom_cache_shutdown();
167 gencache_stabilize();
171 TALLOC_CTX
*mem_ctx
= talloc_init("end_description");
172 char *description
= talloc_describe_all(mem_ctx
);
174 DEBUG(3, ("tallocs left:\n%s\n", description
));
175 talloc_destroy(mem_ctx
);
180 serverid_deregister(procid_self());
187 static void winbindd_sig_term_handler(struct tevent_context
*ev
,
188 struct tevent_signal
*se
,
194 bool *is_parent
= talloc_get_type_abort(private_data
, bool);
196 DEBUG(0,("Got sig[%d] terminate (is_parent=%d)\n",
197 signum
, (int)*is_parent
));
198 terminate(*is_parent
);
201 bool winbindd_setup_sig_term_handler(bool parent
)
203 struct tevent_signal
*se
;
206 is_parent
= talloc(winbind_event_context(), bool);
213 se
= tevent_add_signal(winbind_event_context(),
216 winbindd_sig_term_handler
,
219 DEBUG(0,("failed to setup SIGTERM handler"));
220 talloc_free(is_parent
);
224 se
= tevent_add_signal(winbind_event_context(),
227 winbindd_sig_term_handler
,
230 DEBUG(0,("failed to setup SIGINT handler"));
231 talloc_free(is_parent
);
235 se
= tevent_add_signal(winbind_event_context(),
238 winbindd_sig_term_handler
,
241 DEBUG(0,("failed to setup SIGINT handler"));
242 talloc_free(is_parent
);
249 static void winbindd_sig_hup_handler(struct tevent_context
*ev
,
250 struct tevent_signal
*se
,
256 const char *file
= (const char *)private_data
;
258 DEBUG(1,("Reloading services after SIGHUP\n"));
259 flush_caches_noinit();
260 reload_services_file(file
);
263 bool winbindd_setup_sig_hup_handler(const char *lfile
)
265 struct tevent_signal
*se
;
269 file
= talloc_strdup(winbind_event_context(),
276 se
= tevent_add_signal(winbind_event_context(),
277 winbind_event_context(),
279 winbindd_sig_hup_handler
,
288 static void winbindd_sig_chld_handler(struct tevent_context
*ev
,
289 struct tevent_signal
*se
,
297 while ((pid
= sys_waitpid(-1, NULL
, WNOHANG
)) > 0) {
298 winbind_child_died(pid
);
302 static bool winbindd_setup_sig_chld_handler(void)
304 struct tevent_signal
*se
;
306 se
= tevent_add_signal(winbind_event_context(),
307 winbind_event_context(),
309 winbindd_sig_chld_handler
,
318 static void winbindd_sig_usr2_handler(struct tevent_context
*ev
,
319 struct tevent_signal
*se
,
328 static bool winbindd_setup_sig_usr2_handler(void)
330 struct tevent_signal
*se
;
332 se
= tevent_add_signal(winbind_event_context(),
333 winbind_event_context(),
335 winbindd_sig_usr2_handler
,
344 /* React on 'smbcontrol winbindd reload-config' in the same way as on SIGHUP*/
345 static void msg_reload_services(struct messaging_context
*msg
,
348 struct server_id server_id
,
351 /* Flush various caches */
353 reload_services_file((const char *) private_data
);
356 /* React on 'smbcontrol winbindd shutdown' in the same way as on SIGTERM*/
357 static void msg_shutdown(struct messaging_context
*msg
,
360 struct server_id server_id
,
363 /* only the parent waits for this message */
364 DEBUG(0,("Got shutdown message\n"));
369 static void winbind_msg_validate_cache(struct messaging_context
*msg_ctx
,
372 struct server_id server_id
,
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...
386 child_pid
= sys_fork();
388 if (child_pid
== -1) {
389 DEBUG(1, ("winbind_msg_validate_cache: Could not fork: %s\n",
394 if (child_pid
!= 0) {
396 DEBUG(5, ("winbind_msg_validate_cache: child created with "
397 "pid %d.\n", (int)child_pid
));
403 if (!winbindd_reinit_after_fork(NULL
)) {
407 /* install default SIGCHLD handler: validation code uses fork/waitpid */
408 CatchSignal(SIGCHLD
, SIG_DFL
);
410 ret
= (uint8
)winbindd_validate_cache_nobackup();
411 DEBUG(10, ("winbindd_msg_validata_cache: got return value %d\n", ret
));
412 messaging_send_buf(msg_ctx
, server_id
, MSG_WINBIND_VALIDATE_CACHE
, &ret
,
417 static struct winbindd_dispatch_table
{
418 enum winbindd_cmd cmd
;
419 void (*fn
)(struct winbindd_cli_state
*state
);
420 const char *winbindd_cmd_name
;
421 } dispatch_table
[] = {
423 /* Enumeration functions */
425 { WINBINDD_LIST_TRUSTDOM
, winbindd_list_trusted_domains
,
430 { WINBINDD_INFO
, winbindd_info
, "INFO" },
431 { WINBINDD_INTERFACE_VERSION
, winbindd_interface_version
,
432 "INTERFACE_VERSION" },
433 { WINBINDD_DOMAIN_NAME
, winbindd_domain_name
, "DOMAIN_NAME" },
434 { WINBINDD_DOMAIN_INFO
, winbindd_domain_info
, "DOMAIN_INFO" },
435 { WINBINDD_NETBIOS_NAME
, winbindd_netbios_name
, "NETBIOS_NAME" },
436 { WINBINDD_PRIV_PIPE_DIR
, winbindd_priv_pipe_dir
,
437 "WINBINDD_PRIV_PIPE_DIR" },
439 /* Credential cache access */
440 { WINBINDD_CCACHE_NTLMAUTH
, winbindd_ccache_ntlm_auth
, "NTLMAUTH" },
441 { WINBINDD_CCACHE_SAVE
, winbindd_ccache_save
, "CCACHE_SAVE" },
445 { WINBINDD_WINS_BYNAME
, winbindd_wins_byname
, "WINS_BYNAME" },
446 { WINBINDD_WINS_BYIP
, winbindd_wins_byip
, "WINS_BYIP" },
450 { WINBINDD_NUM_CMDS
, NULL
, "NONE" }
453 struct winbindd_async_dispatch_table
{
454 enum winbindd_cmd cmd
;
455 const char *cmd_name
;
456 struct tevent_req
*(*send_req
)(TALLOC_CTX
*mem_ctx
,
457 struct tevent_context
*ev
,
458 struct winbindd_cli_state
*cli
,
459 struct winbindd_request
*request
);
460 NTSTATUS (*recv_req
)(struct tevent_req
*req
,
461 struct winbindd_response
*presp
);
464 static struct winbindd_async_dispatch_table async_nonpriv_table
[] = {
465 { WINBINDD_PING
, "PING",
466 wb_ping_send
, wb_ping_recv
},
467 { WINBINDD_LOOKUPSID
, "LOOKUPSID",
468 winbindd_lookupsid_send
, winbindd_lookupsid_recv
},
469 { WINBINDD_LOOKUPNAME
, "LOOKUPNAME",
470 winbindd_lookupname_send
, winbindd_lookupname_recv
},
471 { WINBINDD_SID_TO_UID
, "SID_TO_UID",
472 winbindd_sid_to_uid_send
, winbindd_sid_to_uid_recv
},
473 { WINBINDD_SID_TO_GID
, "SID_TO_GID",
474 winbindd_sid_to_gid_send
, winbindd_sid_to_gid_recv
},
475 { WINBINDD_UID_TO_SID
, "UID_TO_SID",
476 winbindd_uid_to_sid_send
, winbindd_uid_to_sid_recv
},
477 { WINBINDD_GID_TO_SID
, "GID_TO_SID",
478 winbindd_gid_to_sid_send
, winbindd_gid_to_sid_recv
},
479 { WINBINDD_GETPWSID
, "GETPWSID",
480 winbindd_getpwsid_send
, winbindd_getpwsid_recv
},
481 { WINBINDD_GETPWNAM
, "GETPWNAM",
482 winbindd_getpwnam_send
, winbindd_getpwnam_recv
},
483 { WINBINDD_GETPWUID
, "GETPWUID",
484 winbindd_getpwuid_send
, winbindd_getpwuid_recv
},
485 { WINBINDD_GETSIDALIASES
, "GETSIDALIASES",
486 winbindd_getsidaliases_send
, winbindd_getsidaliases_recv
},
487 { WINBINDD_GETUSERDOMGROUPS
, "GETUSERDOMGROUPS",
488 winbindd_getuserdomgroups_send
, winbindd_getuserdomgroups_recv
},
489 { WINBINDD_GETGROUPS
, "GETGROUPS",
490 winbindd_getgroups_send
, winbindd_getgroups_recv
},
491 { WINBINDD_SHOW_SEQUENCE
, "SHOW_SEQUENCE",
492 winbindd_show_sequence_send
, winbindd_show_sequence_recv
},
493 { WINBINDD_GETGRGID
, "GETGRGID",
494 winbindd_getgrgid_send
, winbindd_getgrgid_recv
},
495 { WINBINDD_GETGRNAM
, "GETGRNAM",
496 winbindd_getgrnam_send
, winbindd_getgrnam_recv
},
497 { WINBINDD_GETUSERSIDS
, "GETUSERSIDS",
498 winbindd_getusersids_send
, winbindd_getusersids_recv
},
499 { WINBINDD_LOOKUPRIDS
, "LOOKUPRIDS",
500 winbindd_lookuprids_send
, winbindd_lookuprids_recv
},
501 { WINBINDD_SETPWENT
, "SETPWENT",
502 winbindd_setpwent_send
, winbindd_setpwent_recv
},
503 { WINBINDD_GETPWENT
, "GETPWENT",
504 winbindd_getpwent_send
, winbindd_getpwent_recv
},
505 { WINBINDD_ENDPWENT
, "ENDPWENT",
506 winbindd_endpwent_send
, winbindd_endpwent_recv
},
507 { WINBINDD_DSGETDCNAME
, "DSGETDCNAME",
508 winbindd_dsgetdcname_send
, winbindd_dsgetdcname_recv
},
509 { WINBINDD_GETDCNAME
, "GETDCNAME",
510 winbindd_getdcname_send
, winbindd_getdcname_recv
},
511 { WINBINDD_SETGRENT
, "SETGRENT",
512 winbindd_setgrent_send
, winbindd_setgrent_recv
},
513 { WINBINDD_GETGRENT
, "GETGRENT",
514 winbindd_getgrent_send
, winbindd_getgrent_recv
},
515 { WINBINDD_ENDGRENT
, "ENDGRENT",
516 winbindd_endgrent_send
, winbindd_endgrent_recv
},
517 { WINBINDD_LIST_USERS
, "LIST_USERS",
518 winbindd_list_users_send
, winbindd_list_users_recv
},
519 { WINBINDD_LIST_GROUPS
, "LIST_GROUPS",
520 winbindd_list_groups_send
, winbindd_list_groups_recv
},
521 { WINBINDD_CHECK_MACHACC
, "CHECK_MACHACC",
522 winbindd_check_machine_acct_send
, winbindd_check_machine_acct_recv
},
523 { WINBINDD_PING_DC
, "PING_DC",
524 winbindd_ping_dc_send
, winbindd_ping_dc_recv
},
525 { WINBINDD_PAM_AUTH
, "PAM_AUTH",
526 winbindd_pam_auth_send
, winbindd_pam_auth_recv
},
527 { WINBINDD_PAM_LOGOFF
, "PAM_LOGOFF",
528 winbindd_pam_logoff_send
, winbindd_pam_logoff_recv
},
529 { WINBINDD_PAM_CHAUTHTOK
, "PAM_CHAUTHTOK",
530 winbindd_pam_chauthtok_send
, winbindd_pam_chauthtok_recv
},
531 { WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP
, "PAM_CHNG_PSWD_AUTH_CRAP",
532 winbindd_pam_chng_pswd_auth_crap_send
,
533 winbindd_pam_chng_pswd_auth_crap_recv
},
535 { 0, NULL
, NULL
, NULL
}
538 static struct winbindd_async_dispatch_table async_priv_table
[] = {
539 { WINBINDD_ALLOCATE_UID
, "ALLOCATE_UID",
540 winbindd_allocate_uid_send
, winbindd_allocate_uid_recv
},
541 { WINBINDD_ALLOCATE_GID
, "ALLOCATE_GID",
542 winbindd_allocate_gid_send
, winbindd_allocate_gid_recv
},
543 { WINBINDD_CHANGE_MACHACC
, "CHANGE_MACHACC",
544 winbindd_change_machine_acct_send
, winbindd_change_machine_acct_recv
},
545 { WINBINDD_PAM_AUTH_CRAP
, "PAM_AUTH_CRAP",
546 winbindd_pam_auth_crap_send
, winbindd_pam_auth_crap_recv
},
548 { 0, NULL
, NULL
, NULL
}
551 static void wb_request_done(struct tevent_req
*req
);
553 static void process_request(struct winbindd_cli_state
*state
)
555 struct winbindd_dispatch_table
*table
= dispatch_table
;
556 struct winbindd_async_dispatch_table
*atable
;
558 state
->mem_ctx
= talloc_named(state
, 0, "winbind request");
559 if (state
->mem_ctx
== NULL
)
562 /* Remember who asked us. */
563 state
->pid
= state
->request
->pid
;
565 state
->cmd_name
= "unknown request";
566 state
->recv_fn
= NULL
;
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 state
->cmd_name
= atable
->cmd_name
;
589 state
->recv_fn
= atable
->recv_req
;
591 DEBUG(10, ("process_request: Handling async request %d:%s\n",
592 (int)state
->pid
, state
->cmd_name
));
594 req
= atable
->send_req(state
->mem_ctx
, winbind_event_context(),
595 state
, state
->request
);
597 DEBUG(0, ("process_request: atable->send failed for "
598 "%s\n", atable
->cmd_name
));
599 request_error(state
);
602 tevent_req_set_callback(req
, wb_request_done
, state
);
606 state
->response
= talloc_zero(state
->mem_ctx
,
607 struct winbindd_response
);
608 if (state
->response
== NULL
) {
609 DEBUG(10, ("talloc failed\n"));
610 remove_client(state
);
613 state
->response
->result
= WINBINDD_PENDING
;
614 state
->response
->length
= sizeof(struct winbindd_response
);
616 for (table
= dispatch_table
; table
->fn
; table
++) {
617 if (state
->request
->cmd
== table
->cmd
) {
618 DEBUG(10,("process_request: request fn %s\n",
619 table
->winbindd_cmd_name
));
620 state
->cmd_name
= table
->winbindd_cmd_name
;
627 DEBUG(10,("process_request: unknown request fn number %d\n",
628 (int)state
->request
->cmd
));
629 request_error(state
);
633 static void wb_request_done(struct tevent_req
*req
)
635 struct winbindd_cli_state
*state
= tevent_req_callback_data(
636 req
, struct winbindd_cli_state
);
639 state
->response
= talloc_zero(state
->mem_ctx
,
640 struct winbindd_response
);
641 if (state
->response
== NULL
) {
642 DEBUG(0, ("wb_request_done[%d:%s]: talloc_zero failed - removing client\n",
643 (int)state
->pid
, state
->cmd_name
));
644 remove_client(state
);
647 state
->response
->result
= WINBINDD_PENDING
;
648 state
->response
->length
= sizeof(struct winbindd_response
);
650 status
= state
->recv_fn(req
, state
->response
);
653 DEBUG(10,("wb_request_done[%d:%s]: %s\n",
654 (int)state
->pid
, state
->cmd_name
, nt_errstr(status
)));
656 if (!NT_STATUS_IS_OK(status
)) {
657 request_error(state
);
664 * This is the main event loop of winbind requests. It goes through a
665 * state-machine of 3 read/write requests, 4 if you have extra data to send.
667 * An idle winbind client has a read request of 4 bytes outstanding,
668 * finalizing function is request_len_recv, checking the length. request_recv
669 * then processes the packet. The processing function then at some point has
670 * to call request_finished which schedules sending the response.
673 static void request_finished(struct winbindd_cli_state
*state
);
675 static void winbind_client_request_read(struct tevent_req
*req
);
676 static void winbind_client_response_written(struct tevent_req
*req
);
678 static void request_finished(struct winbindd_cli_state
*state
)
680 struct tevent_req
*req
;
682 TALLOC_FREE(state
->request
);
684 req
= wb_resp_write_send(state
, winbind_event_context(),
685 state
->out_queue
, state
->sock
,
688 DEBUG(10,("request_finished[%d:%s]: wb_resp_write_send() failed\n",
689 (int)state
->pid
, state
->cmd_name
));
690 remove_client(state
);
693 tevent_req_set_callback(req
, winbind_client_response_written
, state
);
696 static void winbind_client_response_written(struct tevent_req
*req
)
698 struct winbindd_cli_state
*state
= tevent_req_callback_data(
699 req
, struct winbindd_cli_state
);
703 ret
= wb_resp_write_recv(req
, &err
);
708 DEBUG(2, ("Could not write response[%d:%s] to client: %s\n",
709 (int)state
->pid
, state
->cmd_name
, strerror(err
)));
710 remove_client(state
);
714 DEBUG(10,("winbind_client_response_written[%d:%s]: delivered response "
715 "to client\n", (int)state
->pid
, state
->cmd_name
));
717 TALLOC_FREE(state
->mem_ctx
);
718 state
->response
= NULL
;
719 state
->cmd_name
= "no request";
720 state
->recv_fn
= NULL
;
722 req
= wb_req_read_send(state
, winbind_event_context(), state
->sock
,
723 WINBINDD_MAX_EXTRA_DATA
);
725 remove_client(state
);
728 tevent_req_set_callback(req
, winbind_client_request_read
, state
);
731 void request_error(struct winbindd_cli_state
*state
)
733 SMB_ASSERT(state
->response
->result
== WINBINDD_PENDING
);
734 state
->response
->result
= WINBINDD_ERROR
;
735 request_finished(state
);
738 void request_ok(struct winbindd_cli_state
*state
)
740 SMB_ASSERT(state
->response
->result
== WINBINDD_PENDING
);
741 state
->response
->result
= WINBINDD_OK
;
742 request_finished(state
);
745 /* Process a new connection by adding it to the client connection list */
747 static void new_connection(int listen_sock
, bool privileged
)
749 struct sockaddr_un sunaddr
;
750 struct winbindd_cli_state
*state
;
751 struct tevent_req
*req
;
755 /* Accept connection */
757 len
= sizeof(sunaddr
);
760 sock
= accept(listen_sock
, (struct sockaddr
*)(void *)&sunaddr
,
762 } while (sock
== -1 && errno
== EINTR
);
767 DEBUG(6,("accepted socket %d\n", sock
));
769 /* Create new connection structure */
771 if ((state
= TALLOC_ZERO_P(NULL
, struct winbindd_cli_state
)) == NULL
) {
778 state
->out_queue
= tevent_queue_create(state
, "winbind client reply");
779 if (state
->out_queue
== NULL
) {
785 state
->last_access
= time(NULL
);
787 state
->privileged
= privileged
;
789 req
= wb_req_read_send(state
, winbind_event_context(), state
->sock
,
790 WINBINDD_MAX_EXTRA_DATA
);
796 tevent_req_set_callback(req
, winbind_client_request_read
, state
);
798 /* Add to connection list */
800 winbindd_add_client(state
);
803 static void winbind_client_request_read(struct tevent_req
*req
)
805 struct winbindd_cli_state
*state
= tevent_req_callback_data(
806 req
, struct winbindd_cli_state
);
810 ret
= wb_req_read_recv(req
, state
, &state
->request
, &err
);
814 DEBUG(6, ("closing socket %d, client exited\n",
817 DEBUG(2, ("Could not read client request from fd %d: "
818 "%s\n", state
->sock
, strerror(err
)));
822 remove_client(state
);
825 process_request(state
);
828 /* Remove a client connection from client connection list */
830 static void remove_client(struct winbindd_cli_state
*state
)
835 /* It's a dead client - hold a funeral */
841 if (state
->sock
!= -1) {
842 /* tell client, we are closing ... */
843 nwritten
= write(state
->sock
, &c
, sizeof(c
));
844 if (nwritten
== -1) {
845 DEBUG(2, ("final write to client failed: %s\n",
855 TALLOC_FREE(state
->mem_ctx
);
857 /* Remove from list and free */
859 winbindd_remove_client(state
);
863 /* Is a client idle? */
865 static bool client_is_idle(struct winbindd_cli_state
*state
) {
866 return (state
->response
== NULL
&&
867 !state
->pwent_state
&& !state
->grent_state
);
870 /* Shutdown client connection which has been idle for the longest time */
872 static bool remove_idle_client(void)
874 struct winbindd_cli_state
*state
, *remove_state
= NULL
;
875 time_t last_access
= 0;
878 for (state
= winbindd_client_list(); state
; state
= state
->next
) {
879 if (client_is_idle(state
)) {
881 if (!last_access
|| state
->last_access
< last_access
) {
882 last_access
= state
->last_access
;
883 remove_state
= state
;
889 DEBUG(5,("Found %d idle client connections, shutting down sock %d, pid %u\n",
890 nidle
, remove_state
->sock
, (unsigned int)remove_state
->pid
));
891 remove_client(remove_state
);
898 struct winbindd_listen_state
{
903 static void winbindd_listen_fde_handler(struct tevent_context
*ev
,
904 struct tevent_fd
*fde
,
908 struct winbindd_listen_state
*s
= talloc_get_type_abort(private_data
,
909 struct winbindd_listen_state
);
911 while (winbindd_num_clients() > lp_winbind_max_clients() - 1) {
912 DEBUG(5,("winbindd: Exceeding %d client "
913 "connections, removing idle "
914 "connection.\n", lp_winbind_max_clients()));
915 if (!remove_idle_client()) {
916 DEBUG(0,("winbindd: Exceeding %d "
917 "client connections, no idle "
918 "connection found\n",
919 lp_winbind_max_clients()));
923 new_connection(s
->fd
, s
->privileged
);
927 * Winbindd socket accessor functions
930 const char *get_winbind_pipe_dir(void)
932 return lp_parm_const_string(-1, "winbindd", "socket dir", WINBINDD_SOCKET_DIR
);
935 char *get_winbind_priv_pipe_dir(void)
937 return lock_path(WINBINDD_PRIV_SOCKET_SUBDIR
);
940 static bool winbindd_setup_listeners(void)
942 struct winbindd_listen_state
*pub_state
= NULL
;
943 struct winbindd_listen_state
*priv_state
= NULL
;
944 struct tevent_fd
*fde
;
946 pub_state
= talloc(winbind_event_context(),
947 struct winbindd_listen_state
);
952 pub_state
->privileged
= false;
953 pub_state
->fd
= create_pipe_sock(
954 get_winbind_pipe_dir(), WINBINDD_SOCKET_NAME
, 0755);
955 if (pub_state
->fd
== -1) {
959 fde
= tevent_add_fd(winbind_event_context(), pub_state
, pub_state
->fd
,
960 TEVENT_FD_READ
, winbindd_listen_fde_handler
,
963 close(pub_state
->fd
);
966 tevent_fd_set_auto_close(fde
);
968 priv_state
= talloc(winbind_event_context(),
969 struct winbindd_listen_state
);
974 priv_state
->privileged
= true;
975 priv_state
->fd
= create_pipe_sock(
976 get_winbind_priv_pipe_dir(), WINBINDD_SOCKET_NAME
, 0750);
977 if (priv_state
->fd
== -1) {
981 fde
= tevent_add_fd(winbind_event_context(), priv_state
,
982 priv_state
->fd
, TEVENT_FD_READ
,
983 winbindd_listen_fde_handler
, priv_state
);
985 close(priv_state
->fd
);
988 tevent_fd_set_auto_close(fde
);
992 TALLOC_FREE(pub_state
);
993 TALLOC_FREE(priv_state
);
997 bool winbindd_use_idmap_cache(void)
1002 bool winbindd_use_cache(void)
1004 return !opt_nocache
;
1007 void winbindd_register_handlers(void)
1009 struct tevent_timer
*te
;
1010 /* Setup signal handlers */
1012 if (!winbindd_setup_sig_term_handler(true))
1014 if (!winbindd_setup_sig_hup_handler(NULL
))
1016 if (!winbindd_setup_sig_chld_handler())
1018 if (!winbindd_setup_sig_usr2_handler())
1021 CatchSignal(SIGPIPE
, SIG_IGN
); /* Ignore sigpipe */
1024 * Ensure all cache and idmap caches are consistent
1025 * and initialized before we startup.
1027 if (!winbindd_cache_validate_and_initialize()) {
1031 /* get broadcast messages */
1033 if (!serverid_register(procid_self(),
1034 FLAG_MSG_GENERAL
|FLAG_MSG_DBWRAP
)) {
1035 DEBUG(1, ("Could not register myself in serverid.tdb\n"));
1039 /* React on 'smbcontrol winbindd reload-config' in the same way
1040 as to SIGHUP signal */
1041 messaging_register(winbind_messaging_context(), NULL
,
1042 MSG_SMB_CONF_UPDATED
, msg_reload_services
);
1043 messaging_register(winbind_messaging_context(), NULL
,
1044 MSG_SHUTDOWN
, msg_shutdown
);
1046 /* Handle online/offline messages. */
1047 messaging_register(winbind_messaging_context(), NULL
,
1048 MSG_WINBIND_OFFLINE
, winbind_msg_offline
);
1049 messaging_register(winbind_messaging_context(), NULL
,
1050 MSG_WINBIND_ONLINE
, winbind_msg_online
);
1051 messaging_register(winbind_messaging_context(), NULL
,
1052 MSG_WINBIND_ONLINESTATUS
, winbind_msg_onlinestatus
);
1054 messaging_register(winbind_messaging_context(), NULL
,
1055 MSG_DUMP_EVENT_LIST
, winbind_msg_dump_event_list
);
1057 messaging_register(winbind_messaging_context(), NULL
,
1058 MSG_WINBIND_VALIDATE_CACHE
,
1059 winbind_msg_validate_cache
);
1061 messaging_register(winbind_messaging_context(), NULL
,
1062 MSG_WINBIND_DUMP_DOMAIN_LIST
,
1063 winbind_msg_dump_domain_list
);
1065 messaging_register(winbind_messaging_context(), NULL
,
1066 MSG_WINBIND_IP_DROPPED
,
1067 winbind_msg_ip_dropped_parent
);
1069 /* Register handler for MSG_DEBUG. */
1070 messaging_register(winbind_messaging_context(), NULL
,
1074 netsamlogon_cache_init(); /* Non-critical */
1076 /* clear the cached list of trusted domains */
1080 if (!init_domain_list()) {
1081 DEBUG(0,("unable to initialize domain list\n"));
1086 init_locator_child();
1088 smb_nscd_flush_user_cache();
1089 smb_nscd_flush_group_cache();
1091 te
= tevent_add_timer(winbind_event_context(), NULL
, timeval_zero(),
1092 rescan_trusted_domains
, NULL
);
1094 DEBUG(0, ("Could not trigger rescan_trusted_domains()\n"));
1102 int main(int argc
, char **argv
, char **envp
)
1104 static bool is_daemon
= False
;
1105 static bool Fork
= True
;
1106 static bool log_stdout
= False
;
1107 static bool no_process_group
= False
;
1111 OPT_NO_PROCESS_GROUP
,
1114 struct poptOption long_options
[] = {
1116 { "stdout", 'S', POPT_ARG_NONE
, NULL
, OPT_LOG_STDOUT
, "Log to stdout" },
1117 { "foreground", 'F', POPT_ARG_NONE
, NULL
, OPT_FORK
, "Daemon in foreground mode" },
1118 { "no-process-group", 0, POPT_ARG_NONE
, NULL
, OPT_NO_PROCESS_GROUP
, "Don't create a new process group" },
1119 { "daemon", 'D', POPT_ARG_NONE
, NULL
, OPT_DAEMON
, "Become a daemon (default)" },
1120 { "interactive", 'i', POPT_ARG_NONE
, NULL
, 'i', "Interactive mode" },
1121 { "no-caching", 'n', POPT_ARG_NONE
, NULL
, 'n', "Disable caching" },
1131 * Do this before any other talloc operation
1133 talloc_enable_null_tracking();
1134 frame
= talloc_stackframe();
1136 /* glibc (?) likes to print "User defined signal 1" and exit if a
1137 SIGUSR[12] is received before a handler is installed */
1139 CatchSignal(SIGUSR1
, SIG_IGN
);
1140 CatchSignal(SIGUSR2
, SIG_IGN
);
1142 fault_setup((void (*)(void *))fault_quit
);
1143 dump_core_setup("winbindd");
1147 /* Initialise for running in non-root mode */
1151 set_remote_machine_name("winbindd", False
);
1153 /* Set environment variable so we don't recursively call ourselves.
1154 This may also be useful interactively. */
1156 if ( !winbind_off() ) {
1157 DEBUG(0,("Failed to disable recusive winbindd calls. Exiting.\n"));
1161 /* Initialise samba/rpc client stuff */
1163 pc
= poptGetContext("winbindd", argc
, (const char **)argv
, long_options
, 0);
1165 while ((opt
= poptGetNextOpt(pc
)) != -1) {
1167 /* Don't become a daemon */
1179 case OPT_NO_PROCESS_GROUP
:
1180 no_process_group
= true;
1182 case OPT_LOG_STDOUT
:
1189 d_fprintf(stderr
, "\nInvalid option %s: %s\n\n",
1190 poptBadOption(pc
, 0), poptStrerror(opt
));
1191 poptPrintUsage(pc
, stderr
, 0);
1196 if (is_daemon
&& interactive
) {
1197 d_fprintf(stderr
,"\nERROR: "
1198 "Option -i|--interactive is not allowed together with -D|--daemon\n\n");
1199 poptPrintUsage(pc
, stderr
, 0);
1203 if (log_stdout
&& Fork
) {
1204 d_fprintf(stderr
, "\nERROR: "
1205 "Can't log to stdout (-S) unless daemon is in foreground +(-F) or interactive (-i)\n\n");
1206 poptPrintUsage(pc
, stderr
, 0);
1210 poptFreeContext(pc
);
1212 if (!override_logfile
) {
1214 if (asprintf(&lfile
,"%s/log.winbindd",
1215 get_dyn_LOGFILEBASE()) > 0) {
1216 lp_set_logfile(lfile
);
1221 setup_logging("winbindd", DEBUG_STDOUT
);
1223 setup_logging("winbindd", DEBUG_FILE
);
1227 DEBUG(0,("winbindd version %s started.\n", samba_version_string()));
1228 DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE
));
1230 if (!lp_load_initial_only(get_dyn_CONFIGFILE())) {
1231 DEBUG(0, ("error opening config file\n"));
1235 /* Initialise messaging system */
1237 if (winbind_messaging_context() == NULL
) {
1241 if (!reload_services_file(NULL
)) {
1242 DEBUG(0, ("error opening config file\n"));
1246 if (!directory_exist(lp_lockdir())) {
1247 mkdir(lp_lockdir(), 0755);
1257 if (!secrets_init()) {
1259 DEBUG(0,("Could not initialize domain trust account secrets. Giving up\n"));
1263 /* Unblock all signals we are interested in as they may have been
1264 blocked by the parent process. */
1266 BlockSignals(False
, SIGINT
);
1267 BlockSignals(False
, SIGQUIT
);
1268 BlockSignals(False
, SIGTERM
);
1269 BlockSignals(False
, SIGUSR1
);
1270 BlockSignals(False
, SIGUSR2
);
1271 BlockSignals(False
, SIGHUP
);
1272 BlockSignals(False
, SIGCHLD
);
1275 become_daemon(Fork
, no_process_group
, log_stdout
);
1277 pidfile_create("winbindd");
1281 * If we're interactive we want to set our own process group for
1282 * signal management.
1284 if (interactive
&& !no_process_group
)
1285 setpgid( (pid_t
)0, (pid_t
)0);
1290 /* Don't use winbindd_reinit_after_fork here as
1291 * we're just starting up and haven't created any
1292 * winbindd-specific resources we must free yet. JRA.
1295 status
= reinit_after_fork(winbind_messaging_context(),
1296 winbind_event_context(),
1297 procid_self(), false);
1298 if (!NT_STATUS_IS_OK(status
)) {
1299 DEBUG(0,("reinit_after_fork() failed\n"));
1303 winbindd_register_handlers();
1305 if (!init_system_info()) {
1306 DEBUG(0,("ERROR: failed to setup system user info.\n"));
1310 rpc_lsarpc_init(NULL
);
1311 rpc_samr_init(NULL
);
1313 /* setup listen sockets */
1315 if (!winbindd_setup_listeners()) {
1316 DEBUG(0,("winbindd_setup_listeners() failed\n"));
1321 /* Loop waiting for requests */
1323 frame
= talloc_stackframe();
1325 if (tevent_loop_once(winbind_event_context()) == -1) {
1326 DEBUG(1, ("tevent_loop_once() failed: %s\n",