[GLUE] Rsync SAMBA_3_0 SVN r25598 in order to create the v3-0-test branch.
[Samba.git] / source / smbd / server.c
blob89cceae2a6d7f6978e0be700882bd26bc72da20b
1 /*
2 Unix SMB/CIFS implementation.
3 Main SMB server routines
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Martin Pool 2002
6 Copyright (C) Jelmer Vernooij 2002-2003
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include "includes.h"
25 static_decl_rpc;
27 static int am_parent = 1;
29 /* the last message the was processed */
30 int last_message = -1;
32 /* a useful macro to debug the last message processed */
33 #define LAST_MESSAGE() smb_fn_name(last_message)
35 extern struct auth_context *negprot_global_auth_context;
36 extern pstring user_socket_options;
37 extern SIG_ATOMIC_T got_sig_term;
38 extern SIG_ATOMIC_T reload_after_sighup;
39 static SIG_ATOMIC_T got_sig_cld;
41 #ifdef WITH_DFS
42 extern int dcelogin_atmost_once;
43 #endif /* WITH_DFS */
45 /* really we should have a top level context structure that has the
46 client file descriptor as an element. That would require a major rewrite :(
48 the following 2 functions are an alternative - they make the file
49 descriptor private to smbd
51 static int server_fd = -1;
53 int smbd_server_fd(void)
55 return server_fd;
58 static void smbd_set_server_fd(int fd)
60 server_fd = fd;
61 client_setfd(fd);
64 struct event_context *smbd_event_context(void)
66 static struct event_context *ctx;
68 if (!ctx && !(ctx = event_context_init(NULL))) {
69 smb_panic("Could not init smbd event context\n");
71 return ctx;
74 struct messaging_context *smbd_messaging_context(void)
76 static struct messaging_context *ctx;
78 if (!ctx && !(ctx = messaging_init(NULL, server_id_self(),
79 smbd_event_context()))) {
80 smb_panic("Could not init smbd messaging context\n");
82 return ctx;
85 /*******************************************************************
86 What to do when smb.conf is updated.
87 ********************************************************************/
89 static void smb_conf_updated(int msg_type, struct process_id src,
90 void *buf, size_t len, void *private_data)
92 DEBUG(10,("smb_conf_updated: Got message saying smb.conf was updated. Reloading.\n"));
93 reload_services(False);
97 /*******************************************************************
98 Delete a statcache entry.
99 ********************************************************************/
101 static void smb_stat_cache_delete(int msg_type, struct process_id src,
102 void *buf, size_t len, void *private_data)
104 const char *name = (const char *)buf;
105 DEBUG(10,("smb_stat_cache_delete: delete name %s\n", name));
106 stat_cache_delete(name);
109 /****************************************************************************
110 Terminate signal.
111 ****************************************************************************/
113 static void sig_term(void)
115 got_sig_term = 1;
116 sys_select_signal(SIGTERM);
119 /****************************************************************************
120 Catch a sighup.
121 ****************************************************************************/
123 static void sig_hup(int sig)
125 reload_after_sighup = 1;
126 sys_select_signal(SIGHUP);
129 /****************************************************************************
130 Catch a sigcld
131 ****************************************************************************/
132 static void sig_cld(int sig)
134 got_sig_cld = 1;
135 sys_select_signal(SIGCLD);
138 /****************************************************************************
139 Send a SIGTERM to our process group.
140 *****************************************************************************/
142 static void killkids(void)
144 if(am_parent) kill(0,SIGTERM);
147 /****************************************************************************
148 Process a sam sync message - not sure whether to do this here or
149 somewhere else.
150 ****************************************************************************/
152 static void msg_sam_sync(int UNUSED(msg_type), struct process_id UNUSED(pid),
153 void *UNUSED(buf), size_t UNUSED(len),
154 void *private_data)
156 DEBUG(10, ("** sam sync message received, ignoring\n"));
159 /****************************************************************************
160 Process a sam sync replicate message - not sure whether to do this here or
161 somewhere else.
162 ****************************************************************************/
164 static void msg_sam_repl(int msg_type, struct process_id pid,
165 void *buf, size_t len, void *private_data)
167 uint32 low_serial;
169 if (len != sizeof(uint32))
170 return;
172 low_serial = *((uint32 *)buf);
174 DEBUG(3, ("received sam replication message, serial = 0x%04x\n",
175 low_serial));
178 /****************************************************************************
179 Open the socket communication - inetd.
180 ****************************************************************************/
182 static BOOL open_sockets_inetd(void)
184 /* Started from inetd. fd 0 is the socket. */
185 /* We will abort gracefully when the client or remote system
186 goes away */
187 smbd_set_server_fd(dup(0));
189 /* close our standard file descriptors */
190 close_low_fds(False); /* Don't close stderr */
192 set_socket_options(smbd_server_fd(),"SO_KEEPALIVE");
193 set_socket_options(smbd_server_fd(), user_socket_options);
195 return True;
198 static void msg_exit_server(int msg_type, struct process_id src,
199 void *buf, size_t len, void *private_data)
201 DEBUG(3, ("got a SHUTDOWN message\n"));
202 exit_server_cleanly(NULL);
205 #ifdef DEVELOPER
206 static void msg_inject_fault(int msg_type, struct process_id src,
207 void *buf, size_t len, void *private_data)
209 int sig;
211 if (len != sizeof(int)) {
213 DEBUG(0, ("Process %llu sent bogus signal injection request\n",
214 (unsigned long long)src.pid));
215 return;
218 sig = *(int *)buf;
219 if (sig == -1) {
220 exit_server("internal error injected");
221 return;
224 #if HAVE_STRSIGNAL
225 DEBUG(0, ("Process %llu requested injection of signal %d (%s)\n",
226 (unsigned long long)src.pid, sig, strsignal(sig)));
227 #else
228 DEBUG(0, ("Process %llu requested injection of signal %d\n",
229 (unsigned long long)src.pid, sig));
230 #endif
232 kill(sys_getpid(), sig);
234 #endif /* DEVELOPER */
236 struct child_pid {
237 struct child_pid *prev, *next;
238 pid_t pid;
241 static struct child_pid *children;
242 static int num_children;
244 static void add_child_pid(pid_t pid)
246 struct child_pid *child;
248 if (lp_max_smbd_processes() == 0) {
249 /* Don't bother with the child list if we don't care anyway */
250 return;
253 child = SMB_MALLOC_P(struct child_pid);
254 if (child == NULL) {
255 DEBUG(0, ("Could not add child struct -- malloc failed\n"));
256 return;
258 child->pid = pid;
259 DLIST_ADD(children, child);
260 num_children += 1;
263 static void remove_child_pid(pid_t pid)
265 struct child_pid *child;
267 if (lp_max_smbd_processes() == 0) {
268 /* Don't bother with the child list if we don't care anyway */
269 return;
272 for (child = children; child != NULL; child = child->next) {
273 if (child->pid == pid) {
274 struct child_pid *tmp = child;
275 DLIST_REMOVE(children, child);
276 SAFE_FREE(tmp);
277 num_children -= 1;
278 return;
282 DEBUG(0, ("Could not find child %d -- ignoring\n", (int)pid));
285 /****************************************************************************
286 Have we reached the process limit ?
287 ****************************************************************************/
289 static BOOL allowable_number_of_smbd_processes(void)
291 int max_processes = lp_max_smbd_processes();
293 if (!max_processes)
294 return True;
296 return num_children < max_processes;
299 /****************************************************************************
300 Open the socket communication.
301 ****************************************************************************/
303 static BOOL open_sockets_smbd(BOOL is_daemon, BOOL interactive, const char *smb_ports)
305 int num_interfaces = iface_count();
306 int num_sockets = 0;
307 int fd_listenset[FD_SETSIZE];
308 fd_set listen_set;
309 int s;
310 int maxfd = 0;
311 int i;
312 char *ports;
314 if (!is_daemon) {
315 return open_sockets_inetd();
319 #ifdef HAVE_ATEXIT
321 static int atexit_set;
322 if(atexit_set == 0) {
323 atexit_set=1;
324 atexit(killkids);
327 #endif
329 /* Stop zombies */
330 CatchSignal(SIGCLD, sig_cld);
332 FD_ZERO(&listen_set);
334 /* use a reasonable default set of ports - listing on 445 and 139 */
335 if (!smb_ports) {
336 ports = lp_smb_ports();
337 if (!ports || !*ports) {
338 ports = smb_xstrdup(SMB_PORTS);
339 } else {
340 ports = smb_xstrdup(ports);
342 } else {
343 ports = smb_xstrdup(smb_ports);
346 if (lp_interfaces() && lp_bind_interfaces_only()) {
347 /* We have been given an interfaces line, and been
348 told to only bind to those interfaces. Create a
349 socket per interface and bind to only these.
352 /* Now open a listen socket for each of the
353 interfaces. */
354 for(i = 0; i < num_interfaces; i++) {
355 struct in_addr *ifip = iface_n_ip(i);
356 fstring tok;
357 const char *ptr;
359 if(ifip == NULL) {
360 DEBUG(0,("open_sockets_smbd: interface %d has NULL IP address !\n", i));
361 continue;
364 for (ptr=ports; next_token(&ptr, tok, " \t,", sizeof(tok)); ) {
365 unsigned port = atoi(tok);
366 if (port == 0 || port > 0xffff) {
367 continue;
369 s = fd_listenset[num_sockets] = open_socket_in(SOCK_STREAM, port, 0, ifip->s_addr, True);
370 if(s == -1)
371 return False;
373 /* ready to listen */
374 set_socket_options(s,"SO_KEEPALIVE");
375 set_socket_options(s,user_socket_options);
377 /* Set server socket to non-blocking for the accept. */
378 set_blocking(s,False);
380 if (listen(s, SMBD_LISTEN_BACKLOG) == -1) {
381 DEBUG(0,("listen: %s\n",strerror(errno)));
382 close(s);
383 return False;
385 FD_SET(s,&listen_set);
386 maxfd = MAX( maxfd, s);
388 num_sockets++;
389 if (num_sockets >= FD_SETSIZE) {
390 DEBUG(0,("open_sockets_smbd: Too many sockets to bind to\n"));
391 return False;
395 } else {
396 /* Just bind to 0.0.0.0 - accept connections
397 from anywhere. */
399 fstring tok;
400 const char *ptr;
402 num_interfaces = 1;
404 for (ptr=ports; next_token(&ptr, tok, " \t,", sizeof(tok)); ) {
405 unsigned port = atoi(tok);
406 if (port == 0 || port > 0xffff) continue;
407 /* open an incoming socket */
408 s = open_socket_in(SOCK_STREAM, port, 0,
409 interpret_addr(lp_socket_address()),True);
410 if (s == -1)
411 return(False);
413 /* ready to listen */
414 set_socket_options(s,"SO_KEEPALIVE");
415 set_socket_options(s,user_socket_options);
417 /* Set server socket to non-blocking for the accept. */
418 set_blocking(s,False);
420 if (listen(s, SMBD_LISTEN_BACKLOG) == -1) {
421 DEBUG(0,("open_sockets_smbd: listen: %s\n",
422 strerror(errno)));
423 close(s);
424 return False;
427 fd_listenset[num_sockets] = s;
428 FD_SET(s,&listen_set);
429 maxfd = MAX( maxfd, s);
431 num_sockets++;
433 if (num_sockets >= FD_SETSIZE) {
434 DEBUG(0,("open_sockets_smbd: Too many sockets to bind to\n"));
435 return False;
440 SAFE_FREE(ports);
442 /* Listen to messages */
444 message_register(MSG_SMB_SAM_SYNC, msg_sam_sync, NULL);
445 message_register(MSG_SMB_SAM_REPL, msg_sam_repl, NULL);
446 message_register(MSG_SHUTDOWN, msg_exit_server, NULL);
447 message_register(MSG_SMB_FILE_RENAME, msg_file_was_renamed, NULL);
448 message_register(MSG_SMB_CONF_UPDATED, smb_conf_updated, NULL);
449 message_register(MSG_SMB_STAT_CACHE_DELETE, smb_stat_cache_delete,
450 NULL);
452 #ifdef DEVELOPER
453 message_register(MSG_SMB_INJECT_FAULT, msg_inject_fault, NULL);
454 #endif
456 /* now accept incoming connections - forking a new process
457 for each incoming connection */
458 DEBUG(2,("waiting for a connection\n"));
459 while (1) {
460 fd_set lfds;
461 int num;
463 /* Free up temporary memory from the main smbd. */
464 lp_TALLOC_FREE();
466 /* Ensure we respond to PING and DEBUG messages from the main smbd. */
467 message_dispatch();
469 if (got_sig_cld) {
470 pid_t pid;
471 got_sig_cld = False;
473 while ((pid = sys_waitpid(-1, NULL, WNOHANG)) > 0) {
474 remove_child_pid(pid);
478 memcpy((char *)&lfds, (char *)&listen_set,
479 sizeof(listen_set));
481 num = sys_select(maxfd+1,&lfds,NULL,NULL,NULL);
483 if (num == -1 && errno == EINTR) {
484 if (got_sig_term) {
485 exit_server_cleanly(NULL);
488 /* check for sighup processing */
489 if (reload_after_sighup) {
490 change_to_root_user();
491 DEBUG(1,("Reloading services after SIGHUP\n"));
492 reload_services(False);
493 reload_after_sighup = 0;
496 continue;
499 /* check if we need to reload services */
500 check_reload(time(NULL));
502 /* Find the sockets that are read-ready -
503 accept on these. */
504 for( ; num > 0; num--) {
505 struct sockaddr addr;
506 socklen_t in_addrlen = sizeof(addr);
507 pid_t child = 0;
509 s = -1;
510 for(i = 0; i < num_sockets; i++) {
511 if(FD_ISSET(fd_listenset[i],&lfds)) {
512 s = fd_listenset[i];
513 /* Clear this so we don't look
514 at it again. */
515 FD_CLR(fd_listenset[i],&lfds);
516 break;
520 smbd_set_server_fd(accept(s,&addr,&in_addrlen));
522 if (smbd_server_fd() == -1 && errno == EINTR)
523 continue;
525 if (smbd_server_fd() == -1) {
526 DEBUG(0,("open_sockets_smbd: accept: %s\n",
527 strerror(errno)));
528 continue;
531 /* Ensure child is set to blocking mode */
532 set_blocking(smbd_server_fd(),True);
534 if (smbd_server_fd() != -1 && interactive)
535 return True;
537 if (allowable_number_of_smbd_processes() &&
538 smbd_server_fd() != -1 &&
539 ((child = sys_fork())==0)) {
540 /* Child code ... */
542 /* Stop zombies, the parent explicitly handles
543 * them, counting worker smbds. */
544 CatchChild();
546 /* close the listening socket(s) */
547 for(i = 0; i < num_sockets; i++)
548 close(fd_listenset[i]);
550 /* close our standard file
551 descriptors */
552 close_low_fds(False);
553 am_parent = 0;
555 set_socket_options(smbd_server_fd(),"SO_KEEPALIVE");
556 set_socket_options(smbd_server_fd(),user_socket_options);
558 /* this is needed so that we get decent entries
559 in smbstatus for port 445 connects */
560 set_remote_machine_name(get_peer_addr(smbd_server_fd()),
561 False);
563 /* Reset the state of the random
564 * number generation system, so
565 * children do not get the same random
566 * numbers as each other */
568 set_need_random_reseed();
569 /* tdb needs special fork handling - remove
570 * CLEAR_IF_FIRST flags */
571 if (tdb_reopen_all(1) == -1) {
572 DEBUG(0,("tdb_reopen_all failed.\n"));
573 smb_panic("tdb_reopen_all failed.");
576 return True;
578 /* The parent doesn't need this socket */
579 close(smbd_server_fd());
581 /* Sun May 6 18:56:14 2001 ackley@cs.unm.edu:
582 Clear the closed fd info out of server_fd --
583 and more importantly, out of client_fd in
584 util_sock.c, to avoid a possible
585 getpeername failure if we reopen the logs
586 and use %I in the filename.
589 smbd_set_server_fd(-1);
591 if (child != 0) {
592 add_child_pid(child);
595 /* Force parent to check log size after
596 * spawning child. Fix from
597 * klausr@ITAP.Physik.Uni-Stuttgart.De. The
598 * parent smbd will log to logserver.smb. It
599 * writes only two messages for each child
600 * started/finished. But each child writes,
601 * say, 50 messages also in logserver.smb,
602 * begining with the debug_count of the
603 * parent, before the child opens its own log
604 * file logserver.client. In a worst case
605 * scenario the size of logserver.smb would be
606 * checked after about 50*50=2500 messages
607 * (ca. 100kb).
608 * */
609 force_check_log_size();
611 } /* end for num */
612 } /* end while 1 */
614 /* NOTREACHED return True; */
617 /****************************************************************************
618 Reload printers
619 **************************************************************************/
620 void reload_printers(void)
622 int snum;
623 int n_services = lp_numservices();
624 int pnum = lp_servicenumber(PRINTERS_NAME);
625 const char *pname;
627 pcap_cache_reload();
629 /* remove stale printers */
630 for (snum = 0; snum < n_services; snum++) {
631 /* avoid removing PRINTERS_NAME or non-autoloaded printers */
632 if (snum == pnum || !(lp_snum_ok(snum) && lp_print_ok(snum) &&
633 lp_autoloaded(snum)))
634 continue;
636 pname = lp_printername(snum);
637 if (!pcap_printername_ok(pname)) {
638 DEBUG(3, ("removing stale printer %s\n", pname));
640 if (is_printer_published(NULL, snum, NULL))
641 nt_printer_publish(NULL, snum, SPOOL_DS_UNPUBLISH);
642 del_a_printer(pname);
643 lp_killservice(snum);
647 load_printers();
650 /****************************************************************************
651 Reload the services file.
652 **************************************************************************/
654 BOOL reload_services(BOOL test)
656 BOOL ret;
658 if (lp_loaded()) {
659 pstring fname;
660 pstrcpy(fname,lp_configfile());
661 if (file_exist(fname, NULL) &&
662 !strcsequal(fname, dyn_CONFIGFILE)) {
663 pstrcpy(dyn_CONFIGFILE, fname);
664 test = False;
668 reopen_logs();
670 if (test && !lp_file_list_changed())
671 return(True);
673 lp_killunused(conn_snum_used);
675 ret = lp_load(dyn_CONFIGFILE, False, False, True, True);
677 reload_printers();
679 /* perhaps the config filename is now set */
680 if (!test)
681 reload_services(True);
683 reopen_logs();
685 load_interfaces();
687 if (smbd_server_fd() != -1) {
688 set_socket_options(smbd_server_fd(),"SO_KEEPALIVE");
689 set_socket_options(smbd_server_fd(), user_socket_options);
692 mangle_reset_cache();
693 reset_stat_cache();
695 /* this forces service parameters to be flushed */
696 set_current_service(NULL,0,True);
698 return(ret);
701 /****************************************************************************
702 Exit the server.
703 ****************************************************************************/
705 /* Reasons for shutting down a server process. */
706 enum server_exit_reason { SERVER_EXIT_NORMAL, SERVER_EXIT_ABNORMAL };
708 static void exit_server_common(enum server_exit_reason how,
709 const char *const reason) NORETURN_ATTRIBUTE;
711 static void exit_server_common(enum server_exit_reason how,
712 const char *const reason)
714 static int firsttime=1;
716 if (!firsttime)
717 exit(0);
718 firsttime = 0;
720 change_to_root_user();
722 if (negprot_global_auth_context) {
723 (negprot_global_auth_context->free)(&negprot_global_auth_context);
726 conn_close_all();
728 invalidate_all_vuids();
730 print_notify_send_messages(3); /* 3 second timeout. */
732 /* delete our entry in the connections database. */
733 yield_connection(NULL,"");
735 respond_to_all_remaining_local_messages();
737 #ifdef WITH_DFS
738 if (dcelogin_atmost_once) {
739 dfs_unlogin();
741 #endif
743 locking_end();
744 printing_end();
746 if (how != SERVER_EXIT_NORMAL) {
747 int oldlevel = DEBUGLEVEL;
748 char *last_inbuf = get_InBuffer();
750 DEBUGLEVEL = 10;
752 DEBUGSEP(0);
753 DEBUG(0,("Abnormal server exit: %s\n",
754 reason ? reason : "no explanation provided"));
755 DEBUGSEP(0);
757 log_stack_trace();
758 if (last_inbuf) {
759 DEBUG(0,("Last message was %s\n", LAST_MESSAGE()));
760 show_msg(last_inbuf);
763 DEBUGLEVEL = oldlevel;
764 dump_core();
766 } else {
767 DEBUG(3,("Server exit (%s)\n",
768 (reason ? reason : "normal exit")));
771 exit(0);
774 void exit_server(const char *const explanation)
776 exit_server_common(SERVER_EXIT_ABNORMAL, explanation);
779 void exit_server_cleanly(const char *const explanation)
781 exit_server_common(SERVER_EXIT_NORMAL, explanation);
784 void exit_server_fault(void)
786 exit_server("critical server fault");
789 /****************************************************************************
790 Initialise connect, service and file structs.
791 ****************************************************************************/
793 static BOOL init_structs(void )
796 * Set the machine NETBIOS name if not already
797 * set from the config file.
800 if (!init_names())
801 return False;
803 conn_init();
805 file_init();
807 /* for RPC pipes */
808 init_rpc_pipe_hnd();
810 init_dptrs();
812 secrets_init();
814 return True;
817 /****************************************************************************
818 main program.
819 ****************************************************************************/
821 /* Declare prototype for build_options() to avoid having to run it through
822 mkproto.h. Mixing $(builddir) and $(srcdir) source files in the current
823 prototype generation system is too complicated. */
825 extern void build_options(BOOL screen);
827 int main(int argc,const char *argv[])
829 /* shall I run as a daemon */
830 static BOOL is_daemon = False;
831 static BOOL interactive = False;
832 static BOOL Fork = True;
833 static BOOL no_process_group = False;
834 static BOOL log_stdout = False;
835 static char *ports = NULL;
836 static char *profile_level = NULL;
837 int opt;
838 poptContext pc;
840 struct poptOption long_options[] = {
841 POPT_AUTOHELP
842 {"daemon", 'D', POPT_ARG_VAL, &is_daemon, True, "Become a daemon (default)" },
843 {"interactive", 'i', POPT_ARG_VAL, &interactive, True, "Run interactive (not a daemon)"},
844 {"foreground", 'F', POPT_ARG_VAL, &Fork, False, "Run daemon in foreground (for daemontools, etc.)" },
845 {"no-process-group", '\0', POPT_ARG_VAL, &no_process_group, True, "Don't create a new process group" },
846 {"log-stdout", 'S', POPT_ARG_VAL, &log_stdout, True, "Log to stdout" },
847 {"build-options", 'b', POPT_ARG_NONE, NULL, 'b', "Print build options" },
848 {"port", 'p', POPT_ARG_STRING, &ports, 0, "Listen on the specified ports"},
849 {"profiling-level", 'P', POPT_ARG_STRING, &profile_level, 0, "Set profiling level","PROFILE_LEVEL"},
850 POPT_COMMON_SAMBA
851 POPT_COMMON_DYNCONFIG
852 POPT_TABLEEND
855 load_case_tables();
857 TimeInit();
859 #ifdef HAVE_SET_AUTH_PARAMETERS
860 set_auth_parameters(argc,argv);
861 #endif
863 pc = poptGetContext("smbd", argc, argv, long_options, 0);
865 while((opt = poptGetNextOpt(pc)) != -1) {
866 switch (opt) {
867 case 'b':
868 build_options(True); /* Display output to screen as well as debug */
869 exit(0);
870 break;
874 poptFreeContext(pc);
876 #ifdef HAVE_SETLUID
877 /* needed for SecureWare on SCO */
878 setluid(0);
879 #endif
881 sec_init();
883 set_remote_machine_name("smbd", False);
885 if (interactive) {
886 Fork = False;
887 log_stdout = True;
890 if (interactive && (DEBUGLEVEL >= 9)) {
891 talloc_enable_leak_report();
894 if (log_stdout && Fork) {
895 DEBUG(0,("ERROR: Can't log to stdout (-S) unless daemon is in foreground (-F) or interactive (-i)\n"));
896 exit(1);
899 setup_logging(argv[0],log_stdout);
901 /* we want to re-seed early to prevent time delays causing
902 client problems at a later date. (tridge) */
903 generate_random_buffer(NULL, 0);
905 /* make absolutely sure we run as root - to handle cases where people
906 are crazy enough to have it setuid */
908 gain_root_privilege();
909 gain_root_group_privilege();
911 fault_setup((void (*)(void *))exit_server_fault);
912 dump_core_setup("smbd");
914 CatchSignal(SIGTERM , SIGNAL_CAST sig_term);
915 CatchSignal(SIGHUP,SIGNAL_CAST sig_hup);
917 /* we are never interested in SIGPIPE */
918 BlockSignals(True,SIGPIPE);
920 #if defined(SIGFPE)
921 /* we are never interested in SIGFPE */
922 BlockSignals(True,SIGFPE);
923 #endif
925 #if defined(SIGUSR2)
926 /* We are no longer interested in USR2 */
927 BlockSignals(True,SIGUSR2);
928 #endif
930 /* POSIX demands that signals are inherited. If the invoking process has
931 * these signals masked, we will have problems, as we won't recieve them. */
932 BlockSignals(False, SIGHUP);
933 BlockSignals(False, SIGUSR1);
934 BlockSignals(False, SIGTERM);
936 /* we want total control over the permissions on created files,
937 so set our umask to 0 */
938 umask(0);
940 init_sec_ctx();
942 reopen_logs();
944 DEBUG(0,( "smbd version %s started.\n", SAMBA_VERSION_STRING));
945 DEBUGADD( 0, ( "%s\n", COPYRIGHT_STARTUP_MESSAGE ) );
947 DEBUG(2,("uid=%d gid=%d euid=%d egid=%d\n",
948 (int)getuid(),(int)getgid(),(int)geteuid(),(int)getegid()));
950 /* Output the build options to the debug log */
951 build_options(False);
953 if (sizeof(uint16) < 2 || sizeof(uint32) < 4) {
954 DEBUG(0,("ERROR: Samba is not configured correctly for the word size on your machine\n"));
955 exit(1);
959 * Do this before reload_services.
962 if (!reload_services(False))
963 return(-1);
965 init_structs();
967 #ifdef WITH_PROFILE
968 if (!profile_setup(False)) {
969 DEBUG(0,("ERROR: failed to setup profiling\n"));
970 return -1;
972 if (profile_level != NULL) {
973 int pl = atoi(profile_level);
974 struct process_id src;
976 DEBUG(1, ("setting profiling level: %s\n",profile_level));
977 src.pid = getpid();
978 set_profile_level(pl, src);
980 #endif
982 DEBUG(3,( "loaded services\n"));
984 if (!is_daemon && !is_a_socket(0)) {
985 if (!interactive)
986 DEBUG(0,("standard input is not a socket, assuming -D option\n"));
989 * Setting is_daemon here prevents us from eventually calling
990 * the open_sockets_inetd()
993 is_daemon = True;
996 if (is_daemon && !interactive) {
997 DEBUG( 3, ( "Becoming a daemon.\n" ) );
998 become_daemon(Fork, no_process_group);
1001 #if HAVE_SETPGID
1003 * If we're interactive we want to set our own process group for
1004 * signal management.
1006 if (interactive && !no_process_group)
1007 setpgid( (pid_t)0, (pid_t)0);
1008 #endif
1010 if (!directory_exist(lp_lockdir(), NULL))
1011 mkdir(lp_lockdir(), 0755);
1013 if (is_daemon)
1014 pidfile_create("smbd");
1016 /* Setup all the TDB's - including CLEAR_IF_FIRST tdb's. */
1017 if (!message_init())
1018 exit(1);
1020 /* Initialise the password backed before the global_sam_sid
1021 to ensure that we fetch from ldap before we make a domain sid up */
1023 if(!initialize_password_db(False))
1024 exit(1);
1026 if (!secrets_init()) {
1027 DEBUG(0, ("ERROR: smbd can not open secrets.tdb\n"));
1028 exit(1);
1031 if(!get_global_sam_sid()) {
1032 DEBUG(0,("ERROR: Samba cannot create a SAM SID.\n"));
1033 exit(1);
1036 if (!session_init())
1037 exit(1);
1039 if (conn_tdb_ctx() == NULL)
1040 exit(1);
1042 if (!locking_init(0))
1043 exit(1);
1045 namecache_enable();
1047 if (!init_registry())
1048 exit(1);
1050 #if 0
1051 if (!init_svcctl_db())
1052 exit(1);
1053 #endif
1055 if (!print_backend_init())
1056 exit(1);
1058 if (!init_guest_info()) {
1059 DEBUG(0,("ERROR: failed to setup guest info.\n"));
1060 return -1;
1063 /* Setup the main smbd so that we can get messages. */
1064 /* don't worry about general printing messages here */
1066 claim_connection(NULL,"",0,True,FLAG_MSG_GENERAL|FLAG_MSG_SMBD);
1068 /* only start the background queue daemon if we are
1069 running as a daemon -- bad things will happen if
1070 smbd is launched via inetd and we fork a copy of
1071 ourselves here */
1073 if ( is_daemon && !interactive )
1074 start_background_queue();
1076 /* Always attempt to initialize DMAPI. We will only use it later if
1077 * lp_dmapi_support is set on the share, but we need a single global
1078 * session to work with.
1080 dmapi_init_session();
1082 if (!open_sockets_smbd(is_daemon, interactive, ports))
1083 exit(1);
1086 * everything after this point is run after the fork()
1089 static_init_rpc;
1091 init_modules();
1093 /* Possibly reload the services file. Only worth doing in
1094 * daemon mode. In inetd mode, we know we only just loaded this.
1096 if (is_daemon) {
1097 reload_services(True);
1100 if (!init_account_policy()) {
1101 DEBUG(0,("Could not open account policy tdb.\n"));
1102 exit(1);
1105 if (*lp_rootdir()) {
1106 if (sys_chroot(lp_rootdir()) == 0)
1107 DEBUG(2,("Changed root to %s\n", lp_rootdir()));
1110 /* Setup oplocks */
1111 if (!init_oplocks())
1112 exit(1);
1114 /* Setup aio signal handler. */
1115 initialize_async_io_handler();
1117 /* register our message handlers */
1118 message_register(MSG_SMB_FORCE_TDIS, msg_force_tdis, NULL);
1120 smbd_process();
1122 namecache_shutdown();
1124 exit_server_cleanly(NULL);
1125 return(0);