r2565: syncing up for 3.0.8pre1
[Samba.git] / source / nsswitch / winbindd.c
blob455fb74f1716b426c71c066bc136366d70d76bcd
1 /*
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
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 #include "includes.h"
26 #include "winbindd.h"
28 BOOL opt_nocache = False;
29 BOOL opt_dual_daemon = True;
31 extern BOOL override_logfile;
33 /* Reload configuration */
35 static BOOL reload_services_file(void)
37 BOOL ret;
39 if (lp_loaded()) {
40 pstring fname;
42 pstrcpy(fname,lp_configfile());
43 if (file_exist(fname,NULL) && !strcsequal(fname,dyn_CONFIGFILE)) {
44 pstrcpy(dyn_CONFIGFILE,fname);
48 reopen_logs();
49 ret = lp_load(dyn_CONFIGFILE,False,False,True);
51 reopen_logs();
52 load_interfaces();
54 return(ret);
58 #if DUMP_CORE
60 /**************************************************************************** **
61 Prepare to dump a core file - carefully!
62 **************************************************************************** */
64 static BOOL dump_core(void)
66 char *p;
67 pstring dname;
68 pstrcpy( dname, lp_logfile() );
69 if ((p=strrchr(dname,'/')))
70 *p=0;
71 pstrcat( dname, "/corefiles" );
72 mkdir( dname, 0700 );
73 sys_chown( dname, getuid(), getgid() );
74 chmod( dname, 0700 );
75 if ( chdir(dname) )
76 return( False );
77 umask( ~(0700) );
79 #ifdef HAVE_GETRLIMIT
80 #ifdef RLIMIT_CORE
82 struct rlimit rlp;
83 getrlimit( RLIMIT_CORE, &rlp );
84 rlp.rlim_cur = MAX( 4*1024*1024, rlp.rlim_cur );
85 setrlimit( RLIMIT_CORE, &rlp );
86 getrlimit( RLIMIT_CORE, &rlp );
87 DEBUG( 3, ( "Core limits now %d %d\n", (int)rlp.rlim_cur, (int)rlp.rlim_max ) );
89 #endif
90 #endif
92 DEBUG(0,("Dumping core in %s\n",dname));
93 abort();
94 return( True );
95 } /* dump_core */
96 #endif
98 /**************************************************************************** **
99 Handle a fault..
100 **************************************************************************** */
102 static void fault_quit(void)
104 #if DUMP_CORE
105 dump_core();
106 #endif
109 static void winbindd_status(void)
111 struct winbindd_cli_state *tmp;
113 DEBUG(0, ("winbindd status:\n"));
115 /* Print client state information */
117 DEBUG(0, ("\t%d clients currently active\n", winbindd_num_clients()));
119 if (DEBUGLEVEL >= 2 && winbindd_num_clients()) {
120 DEBUG(2, ("\tclient list:\n"));
121 for(tmp = winbindd_client_list(); tmp; tmp = tmp->next) {
122 DEBUG(2, ("\t\tpid %lu, sock %d, rbl %d, wbl %d\n",
123 (unsigned long)tmp->pid, tmp->sock, tmp->read_buf_len,
124 tmp->write_buf_len));
129 /* Print winbindd status to log file */
131 static void print_winbindd_status(void)
133 winbindd_status();
134 winbindd_cm_status();
137 /* Flush client cache */
139 static void flush_caches(void)
141 #if 0
142 /* Clear cached user and group enumation info */
143 if (!opt_dual_daemon) /* Until we have coherent cache flush. */
144 wcache_flush_cache();
145 #endif
147 /* We need to invalidate cached user list entries on a SIGHUP
148 otherwise cached access denied errors due to restrict anonymous
149 hang around until the sequence number changes. */
151 wcache_invalidate_cache();
154 /* Handle the signal by unlinking socket and exiting */
156 static void terminate(void)
158 pstring path;
160 idmap_close();
162 /* Remove socket file */
163 pstr_sprintf(path, "%s/%s",
164 WINBINDD_SOCKET_DIR, WINBINDD_SOCKET_NAME);
165 unlink(path);
166 exit(0);
169 static BOOL do_sigterm;
171 static void termination_handler(int signum)
173 do_sigterm = True;
174 sys_select_signal();
177 static BOOL do_sigusr2;
179 static void sigusr2_handler(int signum)
181 do_sigusr2 = True;
182 sys_select_signal();
185 static BOOL do_sighup;
187 static void sighup_handler(int signum)
189 do_sighup = True;
190 sys_select_signal();
193 static void sigchld_handler(int signum)
195 pid_t pid;
196 int status;
198 while ((pid = wait(&status)) != -1 || errno == EINTR) {
199 continue; /* Reap children */
201 sys_select_signal();
204 /* React on 'smbcontrol winbindd reload-config' in the same way as on SIGHUP*/
205 static void msg_reload_services(int msg_type, pid_t src, void *buf, size_t len)
207 /* Flush various caches */
208 flush_caches();
209 reload_services_file();
212 /* React on 'smbcontrol winbindd shutdown' in the same way as on SIGTERM*/
213 static void msg_shutdown(int msg_type, pid_t src, void *buf, size_t len)
215 terminate();
218 struct dispatch_table {
219 enum winbindd_cmd cmd;
220 enum winbindd_result (*fn)(struct winbindd_cli_state *state);
221 const char *winbindd_cmd_name;
224 static struct dispatch_table dispatch_table[] = {
226 /* User functions */
228 { WINBINDD_GETPWNAM, winbindd_getpwnam, "GETPWNAM" },
229 { WINBINDD_GETPWUID, winbindd_getpwuid, "GETPWUID" },
231 { WINBINDD_SETPWENT, winbindd_setpwent, "SETPWENT" },
232 { WINBINDD_ENDPWENT, winbindd_endpwent, "ENDPWENT" },
233 { WINBINDD_GETPWENT, winbindd_getpwent, "GETPWENT" },
235 { WINBINDD_GETGROUPS, winbindd_getgroups, "GETGROUPS" },
236 { WINBINDD_GETUSERSIDS, winbindd_getusersids, "GETUSERSIDS" },
238 /* Group functions */
240 { WINBINDD_GETGRNAM, winbindd_getgrnam, "GETGRNAM" },
241 { WINBINDD_GETGRGID, winbindd_getgrgid, "GETGRGID" },
242 { WINBINDD_SETGRENT, winbindd_setgrent, "SETGRENT" },
243 { WINBINDD_ENDGRENT, winbindd_endgrent, "ENDGRENT" },
244 { WINBINDD_GETGRENT, winbindd_getgrent, "GETGRENT" },
245 { WINBINDD_GETGRLST, winbindd_getgrent, "GETGRLST" },
247 /* PAM auth functions */
249 { WINBINDD_PAM_AUTH, winbindd_pam_auth, "PAM_AUTH" },
250 { WINBINDD_PAM_AUTH_CRAP, winbindd_pam_auth_crap, "AUTH_CRAP" },
251 { WINBINDD_PAM_CHAUTHTOK, winbindd_pam_chauthtok, "CHAUTHTOK" },
253 /* Enumeration functions */
255 { WINBINDD_LIST_USERS, winbindd_list_users, "LIST_USERS" },
256 { WINBINDD_LIST_GROUPS, winbindd_list_groups, "LIST_GROUPS" },
257 { WINBINDD_LIST_TRUSTDOM, winbindd_list_trusted_domains, "LIST_TRUSTDOM" },
258 { WINBINDD_SHOW_SEQUENCE, winbindd_show_sequence, "SHOW_SEQUENCE" },
260 /* SID related functions */
262 { WINBINDD_LOOKUPSID, winbindd_lookupsid, "LOOKUPSID" },
263 { WINBINDD_LOOKUPNAME, winbindd_lookupname, "LOOKUPNAME" },
265 /* Lookup related functions */
267 { WINBINDD_SID_TO_UID, winbindd_sid_to_uid, "SID_TO_UID" },
268 { WINBINDD_SID_TO_GID, winbindd_sid_to_gid, "SID_TO_GID" },
269 { WINBINDD_GID_TO_SID, winbindd_gid_to_sid, "GID_TO_SID" },
270 { WINBINDD_UID_TO_SID, winbindd_uid_to_sid, "UID_TO_SID" },
271 { WINBINDD_ALLOCATE_RID, winbindd_allocate_rid, "ALLOCATE_RID" },
273 /* Miscellaneous */
275 { WINBINDD_CHECK_MACHACC, winbindd_check_machine_acct, "CHECK_MACHACC" },
276 { WINBINDD_PING, winbindd_ping, "PING" },
277 { WINBINDD_INFO, winbindd_info, "INFO" },
278 { WINBINDD_INTERFACE_VERSION, winbindd_interface_version, "INTERFACE_VERSION" },
279 { WINBINDD_DOMAIN_NAME, winbindd_domain_name, "DOMAIN_NAME" },
280 { WINBINDD_DOMAIN_INFO, winbindd_domain_info, "DOMAIN_INFO" },
281 { WINBINDD_NETBIOS_NAME, winbindd_netbios_name, "NETBIOS_NAME" },
282 { WINBINDD_PRIV_PIPE_DIR, winbindd_priv_pipe_dir, "WINBINDD_PRIV_PIPE_DIR" },
284 /* WINS functions */
286 { WINBINDD_WINS_BYNAME, winbindd_wins_byname, "WINS_BYNAME" },
287 { WINBINDD_WINS_BYIP, winbindd_wins_byip, "WINS_BYIP" },
289 /* UNIX account management functions */
290 { WINBINDD_CREATE_USER, winbindd_create_user, "CREATE_USER" },
291 { WINBINDD_CREATE_GROUP, winbindd_create_group, "CREATE_GROUP" },
292 { WINBINDD_ADD_USER_TO_GROUP, winbindd_add_user_to_group, "ADD_USER_TO_GROUP" },
293 { WINBINDD_REMOVE_USER_FROM_GROUP, winbindd_remove_user_from_group,"REMOVE_USER_FROM_GROUP"},
294 { WINBINDD_SET_USER_PRIMARY_GROUP, winbindd_set_user_primary_group,"SET_USER_PRIMARY_GROUP"},
295 { WINBINDD_DELETE_USER, winbindd_delete_user, "DELETE_USER" },
296 { WINBINDD_DELETE_GROUP, winbindd_delete_group, "DELETE_GROUP" },
298 /* End of list */
300 { WINBINDD_NUM_CMDS, NULL, "NONE" }
303 static void process_request(struct winbindd_cli_state *state)
305 struct dispatch_table *table = dispatch_table;
307 /* Free response data - we may be interrupted and receive another
308 command before being able to send this data off. */
310 SAFE_FREE(state->response.extra_data);
312 ZERO_STRUCT(state->response);
314 state->response.result = WINBINDD_ERROR;
315 state->response.length = sizeof(struct winbindd_response);
317 /* Process command */
319 for (table = dispatch_table; table->fn; table++) {
320 if (state->request.cmd == table->cmd) {
321 DEBUG(10,("process_request: request fn %s\n", table->winbindd_cmd_name ));
322 state->response.result = table->fn(state);
323 break;
327 if (!table->fn)
328 DEBUG(10,("process_request: unknown request fn number %d\n", (int)state->request.cmd ));
330 /* In case extra data pointer is NULL */
332 if (!state->response.extra_data)
333 state->response.length = sizeof(struct winbindd_response);
336 /* Process a new connection by adding it to the client connection list */
338 static void new_connection(int listen_sock, BOOL privileged)
340 struct sockaddr_un sunaddr;
341 struct winbindd_cli_state *state;
342 socklen_t len;
343 int sock;
345 /* Accept connection */
347 len = sizeof(sunaddr);
349 do {
350 sock = accept(listen_sock, (struct sockaddr *)&sunaddr, &len);
351 } while (sock == -1 && errno == EINTR);
353 if (sock == -1)
354 return;
356 DEBUG(6,("accepted socket %d\n", sock));
358 /* Create new connection structure */
360 if ((state = (struct winbindd_cli_state *)
361 malloc(sizeof(*state))) == NULL)
362 return;
364 ZERO_STRUCTP(state);
365 state->sock = sock;
367 state->last_access = time(NULL);
369 state->privileged = privileged;
371 /* Add to connection list */
373 winbindd_add_client(state);
376 /* Remove a client connection from client connection list */
378 static void remove_client(struct winbindd_cli_state *state)
380 /* It's a dead client - hold a funeral */
382 if (state != NULL) {
384 /* Close socket */
386 close(state->sock);
388 /* Free any getent state */
390 free_getent_state(state->getpwent_state);
391 free_getent_state(state->getgrent_state);
393 /* We may have some extra data that was not freed if the
394 client was killed unexpectedly */
396 SAFE_FREE(state->response.extra_data);
398 /* Remove from list and free */
400 winbindd_remove_client(state);
401 SAFE_FREE(state);
406 /* Shutdown client connection which has been idle for the longest time */
408 static BOOL remove_idle_client(void)
410 struct winbindd_cli_state *state, *remove_state = NULL;
411 time_t last_access = 0;
412 int nidle = 0;
414 for (state = winbindd_client_list(); state; state = state->next) {
415 if (state->read_buf_len == 0 && state->write_buf_len == 0 &&
416 !state->getpwent_state && !state->getgrent_state) {
417 nidle++;
418 if (!last_access || state->last_access < last_access) {
419 last_access = state->last_access;
420 remove_state = state;
425 if (remove_state) {
426 DEBUG(5,("Found %d idle client connections, shutting down sock %d, pid %u\n",
427 nidle, remove_state->sock, (unsigned int)remove_state->pid));
428 remove_client(remove_state);
429 return True;
432 return False;
435 /* Process a complete received packet from a client */
437 void winbind_process_packet(struct winbindd_cli_state *state)
439 /* Process request */
441 /* Ensure null termination of entire request */
442 state->request.null_term = '\0';
444 state->pid = state->request.pid;
446 process_request(state);
448 /* Update client state */
450 state->read_buf_len = 0;
451 state->write_buf_len = sizeof(struct winbindd_response);
453 /* we might need to send it to the dual daemon */
454 if (opt_dual_daemon) {
455 dual_send_request(state);
459 /* Read some data from a client connection */
461 void winbind_client_read(struct winbindd_cli_state *state)
463 int n;
465 /* Read data */
467 n = sys_read(state->sock, state->read_buf_len +
468 (char *)&state->request,
469 sizeof(state->request) - state->read_buf_len);
471 DEBUG(10,("client_read: read %d bytes. Need %ld more for a full request.\n", n, (unsigned long)(sizeof(state->request) - n - state->read_buf_len) ));
473 /* Read failed, kill client */
475 if (n == -1 || n == 0) {
476 DEBUG(5,("read failed on sock %d, pid %lu: %s\n",
477 state->sock, (unsigned long)state->pid,
478 (n == -1) ? strerror(errno) : "EOF"));
480 state->finished = True;
481 return;
484 /* Update client state */
486 state->read_buf_len += n;
487 state->last_access = time(NULL);
490 /* Write some data to a client connection */
492 static void client_write(struct winbindd_cli_state *state)
494 char *data;
495 int num_written;
497 /* Write some data */
499 * The fancy calculation of data below allows us to handle the
500 * case where write (sys_write) does not write all the data we
501 * gave it. In that case, we will come back through here again
502 * because of the loop above us, and we want to pick up where
503 * we left off.
506 if (!state->write_extra_data) {
508 /* Write response structure */
510 data = (char *)&state->response + sizeof(state->response) -
511 state->write_buf_len;
513 } else {
515 /* Write extra data */
517 data = (char *)state->response.extra_data +
518 state->response.length -
519 sizeof(struct winbindd_response) -
520 state->write_buf_len;
523 num_written = sys_write(state->sock, data, state->write_buf_len);
525 DEBUG(10,("client_write: wrote %d bytes.\n", num_written ));
527 /* Write failed, kill cilent */
529 if (num_written == -1 || num_written == 0) {
531 DEBUG(3,("write failed on sock %d, pid %lu: %s\n",
532 state->sock, (unsigned long)state->pid,
533 (num_written == -1) ? strerror(errno) : "EOF"));
535 state->finished = True;
537 SAFE_FREE(state->response.extra_data);
539 return;
542 /* Update client state */
544 state->write_buf_len -= num_written;
545 state->last_access = time(NULL);
547 /* Have we written all data? */
549 if (state->write_buf_len == 0) {
551 /* Take care of extra data */
553 if (state->write_extra_data) {
555 SAFE_FREE(state->response.extra_data);
557 state->write_extra_data = False;
559 DEBUG(10,("client_write: client_write: complete response written.\n"));
561 } else if (state->response.length >
562 sizeof(struct winbindd_response)) {
564 /* Start writing extra data */
566 state->write_buf_len =
567 state->response.length -
568 sizeof(struct winbindd_response);
570 DEBUG(10,("client_write: need to write %d extra data bytes.\n", (int)state->write_buf_len));
572 state->write_extra_data = True;
577 /* Process incoming clients on listen_sock. We use a tricky non-blocking,
578 non-forking, non-threaded model which allows us to handle many
579 simultaneous connections while remaining impervious to many denial of
580 service attacks. */
582 static void process_loop(void)
584 /* We'll be doing this a lot */
586 while (1) {
587 struct winbindd_cli_state *state;
588 fd_set r_fds, w_fds;
589 int maxfd, listen_sock, listen_priv_sock, selret;
590 struct timeval timeout;
592 again:
593 /* Handle messages */
595 message_dispatch();
597 /* refresh the trusted domain cache */
599 rescan_trusted_domains();
601 /* Free up temporary memory */
603 lp_talloc_free();
604 main_loop_talloc_free();
606 /* Initialise fd lists for select() */
608 listen_sock = open_winbindd_socket();
609 listen_priv_sock = open_winbindd_priv_socket();
611 if (listen_sock == -1 || listen_priv_sock == -1) {
612 perror("open_winbind_socket");
613 exit(1);
616 maxfd = MAX(listen_sock, listen_priv_sock);
618 FD_ZERO(&r_fds);
619 FD_ZERO(&w_fds);
620 FD_SET(listen_sock, &r_fds);
621 FD_SET(listen_priv_sock, &r_fds);
623 timeout.tv_sec = WINBINDD_ESTABLISH_LOOP;
624 timeout.tv_usec = 0;
626 if (opt_dual_daemon) {
627 maxfd = dual_select_setup(&w_fds, maxfd);
630 /* Set up client readers and writers */
632 state = winbindd_client_list();
634 while (state) {
636 /* Dispose of client connection if it is marked as
637 finished */
639 if (state->finished) {
640 struct winbindd_cli_state *next = state->next;
642 remove_client(state);
643 state = next;
644 continue;
647 /* Select requires we know the highest fd used */
649 if (state->sock > maxfd)
650 maxfd = state->sock;
652 /* Add fd for reading */
654 if (state->read_buf_len != sizeof(state->request))
655 FD_SET(state->sock, &r_fds);
657 /* Add fd for writing */
659 if (state->write_buf_len)
660 FD_SET(state->sock, &w_fds);
662 state = state->next;
665 /* Call select */
667 selret = sys_select(maxfd + 1, &r_fds, &w_fds, NULL, &timeout);
669 if (selret == 0)
670 continue;
672 if ((selret == -1 && errno != EINTR) || selret == 0) {
674 /* Select error, something is badly wrong */
676 perror("select");
677 exit(1);
680 /* Create a new connection if listen_sock readable */
682 if (selret > 0) {
684 if (opt_dual_daemon) {
685 dual_select(&w_fds);
688 if (FD_ISSET(listen_sock, &r_fds)) {
689 while (winbindd_num_clients() > WINBINDD_MAX_SIMULTANEOUS_CLIENTS - 1) {
690 DEBUG(5,("winbindd: Exceeding %d client connections, removing idle connection.\n",
691 WINBINDD_MAX_SIMULTANEOUS_CLIENTS));
692 if (!remove_idle_client()) {
693 DEBUG(0,("winbindd: Exceeding %d client connections, no idle connection found\n",
694 WINBINDD_MAX_SIMULTANEOUS_CLIENTS));
695 break;
698 /* new, non-privileged connection */
699 new_connection(listen_sock, False);
702 if (FD_ISSET(listen_priv_sock, &r_fds)) {
703 while (winbindd_num_clients() > WINBINDD_MAX_SIMULTANEOUS_CLIENTS - 1) {
704 DEBUG(5,("winbindd: Exceeding %d client connections, removing idle connection.\n",
705 WINBINDD_MAX_SIMULTANEOUS_CLIENTS));
706 if (!remove_idle_client()) {
707 DEBUG(0,("winbindd: Exceeding %d client connections, no idle connection found\n",
708 WINBINDD_MAX_SIMULTANEOUS_CLIENTS));
709 break;
712 /* new, privileged connection */
713 new_connection(listen_priv_sock, True);
716 /* Process activity on client connections */
718 for (state = winbindd_client_list(); state;
719 state = state->next) {
721 /* Data available for writing */
723 if (FD_ISSET(state->sock, &w_fds))
724 client_write(state);
727 for (state = winbindd_client_list(); state;
728 state = state->next) {
730 /* Data available for reading */
732 if (FD_ISSET(state->sock, &r_fds)) {
734 /* Read data */
736 winbind_client_read(state);
739 * If we have the start of a
740 * packet, then check the
741 * length field to make sure
742 * the client's not talking
743 * Mock Swedish.
746 if (state->read_buf_len >= sizeof(uint32)
747 && *(uint32 *) &state->request != sizeof(state->request)) {
748 DEBUG(0,("process_loop: Invalid request size from pid %lu: %d bytes sent, should be %ld\n",
749 (unsigned long)state->request.pid, *(uint32 *) &state->request, (unsigned long)sizeof(state->request)));
750 DEBUGADD(0, ("This usually means that you are running old wbinfo, pam_winbind or libnss_winbind clients\n"));
752 remove_client(state);
753 break;
756 /* A request packet might be
757 complete */
759 if (state->read_buf_len ==
760 sizeof(state->request)) {
761 winbind_process_packet(state);
762 winbindd_demote_client(state);
763 goto again;
769 #if 0
770 winbindd_check_cache_size(time(NULL));
771 #endif
773 /* Check signal handling things */
775 if (do_sigterm)
776 terminate();
778 if (do_sighup) {
780 DEBUG(3, ("got SIGHUP\n"));
782 msg_reload_services(MSG_SMB_CONF_UPDATED, (pid_t) 0, NULL, 0);
783 do_sighup = False;
786 if (do_sigusr2) {
787 print_winbindd_status();
788 do_sigusr2 = False;
793 /* Main function */
795 struct winbindd_state server_state; /* Server state information */
797 int main(int argc, char **argv)
799 pstring logfile;
800 static BOOL interactive = False;
801 static BOOL Fork = True;
802 static BOOL log_stdout = False;
803 struct poptOption long_options[] = {
804 POPT_AUTOHELP
805 { "stdout", 'S', POPT_ARG_VAL, &log_stdout, True, "Log to stdout" },
806 { "foreground", 'F', POPT_ARG_VAL, &Fork, False, "Daemon in foreground mode" },
807 { "interactive", 'i', POPT_ARG_NONE, NULL, 'i', "Interactive mode" },
808 { "single-daemon", 'Y', POPT_ARG_VAL, &opt_dual_daemon, False, "Single daemon mode" },
809 { "no-caching", 'n', POPT_ARG_VAL, &opt_nocache, True, "Disable caching" },
810 POPT_COMMON_SAMBA
811 POPT_TABLEEND
813 poptContext pc;
814 int opt;
816 /* glibc (?) likes to print "User defined signal 1" and exit if a
817 SIGUSR[12] is received before a handler is installed */
819 CatchSignal(SIGUSR1, SIG_IGN);
820 CatchSignal(SIGUSR2, SIG_IGN);
822 fault_setup((void (*)(void *))fault_quit );
824 /* Initialise for running in non-root mode */
826 sec_init();
828 set_remote_machine_name("winbindd", False);
830 /* Set environment variable so we don't recursively call ourselves.
831 This may also be useful interactively. */
833 setenv(WINBINDD_DONT_ENV, "1", 1);
835 /* Initialise samba/rpc client stuff */
837 pc = poptGetContext("winbindd", argc, (const char **)argv, long_options,
838 POPT_CONTEXT_KEEP_FIRST);
840 while ((opt = poptGetNextOpt(pc)) != -1) {
841 switch (opt) {
842 /* Don't become a daemon */
843 case 'i':
844 interactive = True;
845 log_stdout = True;
846 Fork = False;
847 break;
852 if (log_stdout && Fork) {
853 printf("Can't log to stdout (-S) unless daemon is in foreground +(-F) or interactive (-i)\n");
854 poptPrintUsage(pc, stderr, 0);
855 exit(1);
858 if (!override_logfile) {
859 pstr_sprintf(logfile, "%s/log.winbindd", dyn_LOGFILEBASE);
860 lp_set_logfile(logfile);
862 setup_logging("winbindd", log_stdout);
863 reopen_logs();
865 DEBUG(1, ("winbindd version %s started.\n", SAMBA_VERSION_STRING) );
866 DEBUGADD( 1, ( "Copyright The Samba Team 2000-2004\n" ) );
868 if (!reload_services_file()) {
869 DEBUG(0, ("error opening config file\n"));
870 exit(1);
873 /* Setup names. */
875 if (!init_names())
876 exit(1);
878 load_interfaces();
880 if (!secrets_init()) {
882 DEBUG(0,("Could not initialize domain trust account secrets. Giving up\n"));
883 return False;
886 /* Enable netbios namecache */
888 namecache_enable();
890 /* Check winbindd parameters are valid */
892 ZERO_STRUCT(server_state);
894 /* Winbind daemon initialisation */
896 if ( (!winbindd_param_init()) || (!winbindd_upgrade_idmap()) ||
897 (!idmap_init(lp_idmap_backend())) ) {
898 DEBUG(1, ("Could not init idmap -- netlogon proxy only\n"));
899 idmap_proxyonly();
902 generate_wellknown_sids();
904 /* Unblock all signals we are interested in as they may have been
905 blocked by the parent process. */
907 BlockSignals(False, SIGINT);
908 BlockSignals(False, SIGQUIT);
909 BlockSignals(False, SIGTERM);
910 BlockSignals(False, SIGUSR1);
911 BlockSignals(False, SIGUSR2);
912 BlockSignals(False, SIGHUP);
913 BlockSignals(False, SIGCHLD);
915 /* Setup signal handlers */
917 CatchSignal(SIGINT, termination_handler); /* Exit on these sigs */
918 CatchSignal(SIGQUIT, termination_handler);
919 CatchSignal(SIGTERM, termination_handler);
920 CatchSignal(SIGCHLD, sigchld_handler);
922 CatchSignal(SIGPIPE, SIG_IGN); /* Ignore sigpipe */
924 CatchSignal(SIGUSR2, sigusr2_handler); /* Debugging sigs */
925 CatchSignal(SIGHUP, sighup_handler);
927 if (!interactive)
928 become_daemon(Fork);
930 pidfile_create("winbindd");
932 #if HAVE_SETPGID
934 * If we're interactive we want to set our own process group for
935 * signal management.
937 if (interactive)
938 setpgid( (pid_t)0, (pid_t)0);
939 #endif
941 if (opt_dual_daemon) {
942 do_dual_daemon();
945 /* Initialise messaging system */
947 if (!message_init()) {
948 DEBUG(0, ("unable to initialise messaging system\n"));
949 exit(1);
952 /* React on 'smbcontrol winbindd reload-config' in the same way
953 as to SIGHUP signal */
954 message_register(MSG_SMB_CONF_UPDATED, msg_reload_services);
955 message_register(MSG_SHUTDOWN, msg_shutdown);
957 poptFreeContext(pc);
959 netsamlogon_cache_init(); /* Non-critical */
961 init_domain_list();
963 /* Loop waiting for requests */
965 process_loop();
967 trustdom_cache_shutdown();
969 return 0;