r560: Fix bugzilla 1279: cannot control individual print jobs using cups
[Samba/gebeck_regimport.git] / source3 / smbd / server.c
blob53d07fd905cc1669387cc694dab24188368c7956
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 int am_parent = 1;
27 /* the last message the was processed */
28 int last_message = -1;
30 /* a useful macro to debug the last message processed */
31 #define LAST_MESSAGE() smb_fn_name(last_message)
33 extern pstring user_socket_options;
34 extern SIG_ATOMIC_T got_sig_term;
35 extern SIG_ATOMIC_T reload_after_sighup;
37 #ifdef WITH_DFS
38 extern int dcelogin_atmost_once;
39 #endif /* WITH_DFS */
41 /* really we should have a top level context structure that has the
42 client file descriptor as an element. That would require a major rewrite :(
44 the following 2 functions are an alternative - they make the file
45 descriptor private to smbd
47 static int server_fd = -1;
49 int smbd_server_fd(void)
51 return server_fd;
54 static void smbd_set_server_fd(int fd)
56 server_fd = fd;
57 client_setfd(fd);
60 /****************************************************************************
61 Terminate signal.
62 ****************************************************************************/
64 static void sig_term(void)
66 got_sig_term = 1;
67 sys_select_signal();
70 /****************************************************************************
71 Catch a sighup.
72 ****************************************************************************/
74 static void sig_hup(int sig)
76 reload_after_sighup = 1;
77 sys_select_signal();
80 /****************************************************************************
81 Send a SIGTERM to our process group.
82 *****************************************************************************/
84 static void killkids(void)
86 if(am_parent) kill(0,SIGTERM);
89 /****************************************************************************
90 Process a sam sync message - not sure whether to do this here or
91 somewhere else.
92 ****************************************************************************/
94 static void msg_sam_sync(int UNUSED(msg_type), pid_t UNUSED(pid),
95 void *UNUSED(buf), size_t UNUSED(len))
97 DEBUG(10, ("** sam sync message received, ignoring\n"));
100 /****************************************************************************
101 Process a sam sync replicate message - not sure whether to do this here or
102 somewhere else.
103 ****************************************************************************/
105 static void msg_sam_repl(int msg_type, pid_t pid, void *buf, size_t len)
107 uint32 low_serial;
109 if (len != sizeof(uint32))
110 return;
112 low_serial = *((uint32 *)buf);
114 DEBUG(3, ("received sam replication message, serial = 0x%04x\n",
115 low_serial));
118 /****************************************************************************
119 Open the socket communication - inetd.
120 ****************************************************************************/
122 static BOOL open_sockets_inetd(void)
124 /* Started from inetd. fd 0 is the socket. */
125 /* We will abort gracefully when the client or remote system
126 goes away */
127 smbd_set_server_fd(dup(0));
129 /* close our standard file descriptors */
130 close_low_fds(False); /* Don't close stderr */
132 set_socket_options(smbd_server_fd(),"SO_KEEPALIVE");
133 set_socket_options(smbd_server_fd(), user_socket_options);
135 return True;
138 static void msg_exit_server(int msg_type, pid_t src, void *buf, size_t len)
140 exit_server("Got a SHUTDOWN message");
144 /****************************************************************************
145 Have we reached the process limit ?
146 ****************************************************************************/
148 static BOOL allowable_number_of_smbd_processes(void)
150 int max_processes = lp_max_smbd_processes();
152 if (!max_processes)
153 return True;
156 TDB_CONTEXT *tdb = conn_tdb_ctx();
157 int32 val;
158 if (!tdb) {
159 DEBUG(0,("allowable_number_of_smbd_processes: can't open connection tdb.\n" ));
160 return False;
163 val = tdb_fetch_int32(tdb, "INFO/total_smbds");
164 if (val == -1 && (tdb_error(tdb) != TDB_ERR_NOEXIST)) {
165 DEBUG(0,("allowable_number_of_smbd_processes: can't fetch INFO/total_smbds. Error %s\n",
166 tdb_errorstr(tdb) ));
167 return False;
169 if (val > max_processes) {
170 DEBUG(0,("allowable_number_of_smbd_processes: number of processes (%d) is over allowed limit (%d)\n",
171 val, max_processes ));
172 return False;
175 return True;
178 /****************************************************************************
179 Open the socket communication.
180 ****************************************************************************/
182 static BOOL open_sockets_smbd(BOOL is_daemon, BOOL interactive, const char *smb_ports)
184 int num_interfaces = iface_count();
185 int num_sockets = 0;
186 int fd_listenset[FD_SETSIZE];
187 fd_set listen_set;
188 int s;
189 int i;
190 char *ports;
192 if (!is_daemon) {
193 return open_sockets_inetd();
197 #ifdef HAVE_ATEXIT
199 static int atexit_set;
200 if(atexit_set == 0) {
201 atexit_set=1;
202 atexit(killkids);
205 #endif
207 /* Stop zombies */
208 CatchChild();
210 FD_ZERO(&listen_set);
212 /* use a reasonable default set of ports - listing on 445 and 139 */
213 if (!smb_ports) {
214 ports = lp_smb_ports();
215 if (!ports || !*ports) {
216 ports = smb_xstrdup(SMB_PORTS);
217 } else {
218 ports = smb_xstrdup(ports);
220 } else {
221 ports = smb_xstrdup(smb_ports);
224 if (lp_interfaces() && lp_bind_interfaces_only()) {
225 /* We have been given an interfaces line, and been
226 told to only bind to those interfaces. Create a
227 socket per interface and bind to only these.
230 /* Now open a listen socket for each of the
231 interfaces. */
232 for(i = 0; i < num_interfaces; i++) {
233 struct in_addr *ifip = iface_n_ip(i);
234 fstring tok;
235 const char *ptr;
237 if(ifip == NULL) {
238 DEBUG(0,("open_sockets_smbd: interface %d has NULL IP address !\n", i));
239 continue;
242 for (ptr=ports; next_token(&ptr, tok, NULL, sizeof(tok)); ) {
243 unsigned port = atoi(tok);
244 if (port == 0) continue;
245 s = fd_listenset[num_sockets] = open_socket_in(SOCK_STREAM, port, 0, ifip->s_addr, True);
246 if(s == -1)
247 return False;
249 /* ready to listen */
250 set_socket_options(s,"SO_KEEPALIVE");
251 set_socket_options(s,user_socket_options);
253 /* Set server socket to non-blocking for the accept. */
254 set_blocking(s,False);
256 if (listen(s, SMBD_LISTEN_BACKLOG) == -1) {
257 DEBUG(0,("listen: %s\n",strerror(errno)));
258 close(s);
259 return False;
261 FD_SET(s,&listen_set);
263 num_sockets++;
264 if (num_sockets >= FD_SETSIZE) {
265 DEBUG(0,("open_sockets_smbd: Too many sockets to bind to\n"));
266 return False;
270 } else {
271 /* Just bind to 0.0.0.0 - accept connections
272 from anywhere. */
274 fstring tok;
275 const char *ptr;
277 num_interfaces = 1;
279 for (ptr=ports; next_token(&ptr, tok, NULL, sizeof(tok)); ) {
280 unsigned port = atoi(tok);
281 if (port == 0) continue;
282 /* open an incoming socket */
283 s = open_socket_in(SOCK_STREAM, port, 0,
284 interpret_addr(lp_socket_address()),True);
285 if (s == -1)
286 return(False);
288 /* ready to listen */
289 set_socket_options(s,"SO_KEEPALIVE");
290 set_socket_options(s,user_socket_options);
292 /* Set server socket to non-blocking for the accept. */
293 set_blocking(s,False);
295 if (listen(s, SMBD_LISTEN_BACKLOG) == -1) {
296 DEBUG(0,("open_sockets_smbd: listen: %s\n",
297 strerror(errno)));
298 close(s);
299 return False;
302 fd_listenset[num_sockets] = s;
303 FD_SET(s,&listen_set);
305 num_sockets++;
307 if (num_sockets >= FD_SETSIZE) {
308 DEBUG(0,("open_sockets_smbd: Too many sockets to bind to\n"));
309 return False;
314 SAFE_FREE(ports);
316 /* Listen to messages */
318 message_register(MSG_SMB_SAM_SYNC, msg_sam_sync);
319 message_register(MSG_SMB_SAM_REPL, msg_sam_repl);
320 message_register(MSG_SHUTDOWN, msg_exit_server);
322 /* now accept incoming connections - forking a new process
323 for each incoming connection */
324 DEBUG(2,("waiting for a connection\n"));
325 while (1) {
326 fd_set lfds;
327 int num;
329 /* Free up temporary memory from the main smbd. */
330 lp_talloc_free();
332 /* Ensure we respond to PING and DEBUG messages from the main smbd. */
333 message_dispatch();
335 memcpy((char *)&lfds, (char *)&listen_set,
336 sizeof(listen_set));
338 num = sys_select(FD_SETSIZE,&lfds,NULL,NULL,NULL);
340 if (num == -1 && errno == EINTR) {
341 if (got_sig_term) {
342 exit_server("Caught TERM signal");
345 /* check for sighup processing */
346 if (reload_after_sighup) {
347 change_to_root_user();
348 DEBUG(1,("Reloading services after SIGHUP\n"));
349 reload_services(False);
350 reload_after_sighup = 0;
353 continue;
356 /* check if we need to reload services */
357 check_reload(time(NULL));
359 /* Find the sockets that are read-ready -
360 accept on these. */
361 for( ; num > 0; num--) {
362 struct sockaddr addr;
363 socklen_t in_addrlen = sizeof(addr);
365 s = -1;
366 for(i = 0; i < num_sockets; i++) {
367 if(FD_ISSET(fd_listenset[i],&lfds)) {
368 s = fd_listenset[i];
369 /* Clear this so we don't look
370 at it again. */
371 FD_CLR(fd_listenset[i],&lfds);
372 break;
376 smbd_set_server_fd(accept(s,&addr,&in_addrlen));
378 if (smbd_server_fd() == -1 && errno == EINTR)
379 continue;
381 if (smbd_server_fd() == -1) {
382 DEBUG(0,("open_sockets_smbd: accept: %s\n",
383 strerror(errno)));
384 continue;
387 /* Ensure child is set to blocking mode */
388 set_blocking(smbd_server_fd(),True);
390 if (smbd_server_fd() != -1 && interactive)
391 return True;
393 if (allowable_number_of_smbd_processes() && smbd_server_fd() != -1 && sys_fork()==0) {
394 /* Child code ... */
396 /* close the listening socket(s) */
397 for(i = 0; i < num_sockets; i++)
398 close(fd_listenset[i]);
400 /* close our standard file
401 descriptors */
402 close_low_fds(False);
403 am_parent = 0;
405 set_socket_options(smbd_server_fd(),"SO_KEEPALIVE");
406 set_socket_options(smbd_server_fd(),user_socket_options);
408 /* this is needed so that we get decent entries
409 in smbstatus for port 445 connects */
410 set_remote_machine_name(get_peer_addr(smbd_server_fd()), False);
412 /* Reset global variables in util.c so
413 that client substitutions will be
414 done correctly in the process. */
415 reset_globals_after_fork();
417 /* tdb needs special fork handling - remove CLEAR_IF_FIRST flags */
418 if (tdb_reopen_all() == -1) {
419 DEBUG(0,("tdb_reopen_all failed.\n"));
420 smb_panic("tdb_reopen_all failed.");
423 return True;
425 /* The parent doesn't need this socket */
426 close(smbd_server_fd());
428 /* Sun May 6 18:56:14 2001 ackley@cs.unm.edu:
429 Clear the closed fd info out of server_fd --
430 and more importantly, out of client_fd in
431 util_sock.c, to avoid a possible
432 getpeername failure if we reopen the logs
433 and use %I in the filename.
436 smbd_set_server_fd(-1);
438 /* Force parent to check log size after
439 * spawning child. Fix from
440 * klausr@ITAP.Physik.Uni-Stuttgart.De. The
441 * parent smbd will log to logserver.smb. It
442 * writes only two messages for each child
443 * started/finished. But each child writes,
444 * say, 50 messages also in logserver.smb,
445 * begining with the debug_count of the
446 * parent, before the child opens its own log
447 * file logserver.client. In a worst case
448 * scenario the size of logserver.smb would be
449 * checked after about 50*50=2500 messages
450 * (ca. 100kb).
451 * */
452 force_check_log_size();
454 } /* end for num */
455 } /* end while 1 */
457 /* NOTREACHED return True; */
460 /****************************************************************************
461 Reload the services file.
462 **************************************************************************/
464 BOOL reload_services(BOOL test)
466 BOOL ret;
468 if (lp_loaded()) {
469 pstring fname;
470 pstrcpy(fname,lp_configfile());
471 if (file_exist(fname, NULL) &&
472 !strcsequal(fname, dyn_CONFIGFILE)) {
473 pstrcpy(dyn_CONFIGFILE, fname);
474 test = False;
478 reopen_logs();
480 if (test && !lp_file_list_changed())
481 return(True);
483 lp_killunused(conn_snum_used);
485 ret = lp_load(dyn_CONFIGFILE, False, False, True);
487 load_printers();
489 /* perhaps the config filename is now set */
490 if (!test)
491 reload_services(True);
493 reopen_logs();
495 load_interfaces();
498 if (smbd_server_fd() != -1) {
499 set_socket_options(smbd_server_fd(),"SO_KEEPALIVE");
500 set_socket_options(smbd_server_fd(), user_socket_options);
504 mangle_reset_cache();
505 reset_stat_cache();
507 /* this forces service parameters to be flushed */
508 set_current_service(NULL,True);
510 return(ret);
514 #if DUMP_CORE
515 /*******************************************************************
516 prepare to dump a core file - carefully!
517 ********************************************************************/
518 static BOOL dump_core(void)
520 char *p;
521 pstring dname;
523 pstrcpy(dname,lp_logfile());
524 if ((p=strrchr_m(dname,'/'))) *p=0;
525 pstrcat(dname,"/corefiles");
526 mkdir(dname,0700);
527 sys_chown(dname,getuid(),getgid());
528 chmod(dname,0700);
529 if (chdir(dname)) return(False);
530 umask(~(0700));
532 #ifdef HAVE_GETRLIMIT
533 #ifdef RLIMIT_CORE
535 struct rlimit rlp;
536 getrlimit(RLIMIT_CORE, &rlp);
537 rlp.rlim_cur = MAX(4*1024*1024,rlp.rlim_cur);
538 setrlimit(RLIMIT_CORE, &rlp);
539 getrlimit(RLIMIT_CORE, &rlp);
540 DEBUG(3,("Core limits now %d %d\n",
541 (int)rlp.rlim_cur,(int)rlp.rlim_max));
543 #endif
544 #endif
547 DEBUG(0,("Dumping core in %s\n", dname));
548 abort();
549 return(True);
551 #endif
553 /****************************************************************************
554 Exit the server.
555 ****************************************************************************/
557 void exit_server(const char *reason)
559 static int firsttime=1;
560 extern char *last_inbuf;
561 extern struct auth_context *negprot_global_auth_context;
563 if (!firsttime)
564 exit(0);
565 firsttime = 0;
567 change_to_root_user();
568 DEBUG(2,("Closing connections\n"));
570 if (negprot_global_auth_context) {
571 (negprot_global_auth_context->free)(&negprot_global_auth_context);
574 conn_close_all();
576 invalidate_all_vuids();
578 print_notify_send_messages(3); /* 3 second timeout. */
580 /* run all registered exit events */
581 smb_run_exit_events();
583 /* delete our entry in the connections database. */
584 yield_connection(NULL,"");
586 respond_to_all_remaining_local_messages();
587 decrement_smbd_process_count();
589 #ifdef WITH_DFS
590 if (dcelogin_atmost_once) {
591 dfs_unlogin();
593 #endif
595 if (!reason) {
596 int oldlevel = DEBUGLEVEL;
597 DEBUGLEVEL = 10;
598 DEBUG(0,("Last message was %s\n",smb_fn_name(last_message)));
599 if (last_inbuf)
600 show_msg(last_inbuf);
601 DEBUGLEVEL = oldlevel;
602 DEBUG(0,("===============================================================\n"));
603 #if DUMP_CORE
604 if (dump_core()) return;
605 #endif
608 locking_end();
609 printing_end();
611 DEBUG(3,("Server exit (%s)\n", (reason ? reason : "")));
612 exit(0);
615 /****************************************************************************
616 Initialise connect, service and file structs.
617 ****************************************************************************/
619 static BOOL init_structs(void )
622 * Set the machine NETBIOS name if not already
623 * set from the config file.
626 if (!init_names())
627 return False;
629 conn_init();
631 file_init();
633 /* for RPC pipes */
634 init_rpc_pipe_hnd();
636 init_dptrs();
638 secrets_init();
640 return True;
643 /****************************************************************************
644 main program.
645 ****************************************************************************/
647 /* Declare prototype for build_options() to avoid having to run it through
648 mkproto.h. Mixing $(builddir) and $(srcdir) source files in the current
649 prototype generation system is too complicated. */
651 void build_options(BOOL screen);
653 int main(int argc,const char *argv[])
655 /* shall I run as a daemon */
656 static BOOL is_daemon = False;
657 static BOOL interactive = False;
658 static BOOL Fork = True;
659 static BOOL log_stdout = False;
660 static char *ports = NULL;
661 int opt;
662 poptContext pc;
664 struct poptOption long_options[] = {
665 POPT_AUTOHELP
666 {"daemon", 'D', POPT_ARG_VAL, &is_daemon, True, "Become a daemon (default)" },
667 {"interactive", 'i', POPT_ARG_VAL, &interactive, True, "Run interactive (not a daemon)"},
668 {"foreground", 'F', POPT_ARG_VAL, &Fork, False, "Run daemon in foreground (for daemontools & etc)" },
669 {"log-stdout", 'S', POPT_ARG_VAL, &log_stdout, True, "Log to stdout" },
670 {"build-options", 'b', POPT_ARG_NONE, NULL, 'b', "Print build options" },
671 {"port", 'p', POPT_ARG_STRING, &ports, 0, "Listen on the specified ports"},
672 POPT_COMMON_SAMBA
673 { NULL }
676 #ifdef HAVE_SET_AUTH_PARAMETERS
677 set_auth_parameters(argc,argv);
678 #endif
680 pc = poptGetContext("smbd", argc, argv, long_options, 0);
682 while((opt = poptGetNextOpt(pc)) != -1) {
683 switch (opt) {
684 case 'b':
685 build_options(True); /* Display output to screen as well as debug */
686 exit(0);
687 break;
691 poptFreeContext(pc);
693 #ifdef HAVE_SETLUID
694 /* needed for SecureWare on SCO */
695 setluid(0);
696 #endif
698 sec_init();
700 load_case_tables();
702 set_remote_machine_name("smbd", False);
704 if (interactive) {
705 Fork = False;
706 log_stdout = True;
709 if (log_stdout && Fork) {
710 DEBUG(0,("ERROR: Can't log to stdout (-S) unless daemon is in foreground (-F) or interactive (-i)\n"));
711 exit(1);
714 setup_logging(argv[0],log_stdout);
716 /* we want to re-seed early to prevent time delays causing
717 client problems at a later date. (tridge) */
718 generate_random_buffer(NULL, 0, False);
720 /* make absolutely sure we run as root - to handle cases where people
721 are crazy enough to have it setuid */
723 gain_root_privilege();
724 gain_root_group_privilege();
726 fault_setup((void (*)(void *))exit_server);
727 CatchSignal(SIGTERM , SIGNAL_CAST sig_term);
728 CatchSignal(SIGHUP,SIGNAL_CAST sig_hup);
730 /* we are never interested in SIGPIPE */
731 BlockSignals(True,SIGPIPE);
733 #if defined(SIGFPE)
734 /* we are never interested in SIGFPE */
735 BlockSignals(True,SIGFPE);
736 #endif
738 #if defined(SIGUSR2)
739 /* We are no longer interested in USR2 */
740 BlockSignals(True,SIGUSR2);
741 #endif
743 /* POSIX demands that signals are inherited. If the invoking process has
744 * these signals masked, we will have problems, as we won't recieve them. */
745 BlockSignals(False, SIGHUP);
746 BlockSignals(False, SIGUSR1);
747 BlockSignals(False, SIGTERM);
749 /* we want total control over the permissions on created files,
750 so set our umask to 0 */
751 umask(0);
753 init_sec_ctx();
755 reopen_logs();
757 DEBUG(0,( "smbd version %s started.\n", SAMBA_VERSION_STRING));
758 DEBUGADD(0,( "Copyright Andrew Tridgell and the Samba Team 1992-2004\n"));
760 DEBUG(2,("uid=%d gid=%d euid=%d egid=%d\n",
761 (int)getuid(),(int)getgid(),(int)geteuid(),(int)getegid()));
763 /* Output the build options to the debug log */
764 build_options(False);
766 if (sizeof(uint16) < 2 || sizeof(uint32) < 4) {
767 DEBUG(0,("ERROR: Samba is not configured correctly for the word size on your machine\n"));
768 exit(1);
772 * Do this before reload_services.
775 if (!reload_services(False))
776 return(-1);
778 init_structs();
780 #ifdef WITH_PROFILE
781 if (!profile_setup(False)) {
782 DEBUG(0,("ERROR: failed to setup profiling\n"));
783 return -1;
785 #endif
787 DEBUG(3,( "loaded services\n"));
789 if (!is_daemon && !is_a_socket(0)) {
790 if (!interactive)
791 DEBUG(0,("standard input is not a socket, assuming -D option\n"));
794 * Setting is_daemon here prevents us from eventually calling
795 * the open_sockets_inetd()
798 is_daemon = True;
801 if (is_daemon && !interactive) {
802 DEBUG( 3, ( "Becoming a daemon.\n" ) );
803 become_daemon(Fork);
806 #if HAVE_SETPGID
808 * If we're interactive we want to set our own process group for
809 * signal management.
811 if (interactive)
812 setpgid( (pid_t)0, (pid_t)0);
813 #endif
815 if (!directory_exist(lp_lockdir(), NULL))
816 mkdir(lp_lockdir(), 0755);
818 if (is_daemon)
819 pidfile_create("smbd");
821 /* Setup all the TDB's - including CLEAR_IF_FIRST tdb's. */
822 if (!message_init())
823 exit(1);
825 if (!session_init())
826 exit(1);
828 if (conn_tdb_ctx() == NULL)
829 exit(1);
831 if (!locking_init(0))
832 exit(1);
834 if (!share_info_db_init())
835 exit(1);
837 namecache_enable();
839 if (!init_registry())
840 exit(1);
842 if (!print_backend_init())
843 exit(1);
845 /* Setup the main smbd so that we can get messages. */
846 claim_connection(NULL,"",0,True,FLAG_MSG_GENERAL|FLAG_MSG_SMBD);
849 DO NOT ENABLE THIS TILL YOU COPE WITH KILLING THESE TASKS AND INETD
850 THIS *killed* LOTS OF BUILD FARM MACHINES. IT CREATED HUNDREDS OF
851 smbd PROCESSES THAT NEVER DIE
852 start_background_queue();
855 if (!open_sockets_smbd(is_daemon, interactive, ports))
856 exit(1);
859 * everything after this point is run after the fork()
862 /* Initialise the password backed before the global_sam_sid
863 to ensure that we fetch from ldap before we make a domain sid up */
865 if(!initialize_password_db(False))
866 exit(1);
868 if(!get_global_sam_sid()) {
869 DEBUG(0,("ERROR: Samba cannot create a SAM SID.\n"));
870 exit(1);
873 static_init_rpc;
875 init_modules();
877 /* possibly reload the services file. */
878 reload_services(True);
880 if (!init_account_policy()) {
881 DEBUG(0,("Could not open account policy tdb.\n"));
882 exit(1);
885 if (*lp_rootdir()) {
886 if (sys_chroot(lp_rootdir()) == 0)
887 DEBUG(2,("Changed root to %s\n", lp_rootdir()));
890 /* Setup oplocks */
891 if (!init_oplocks())
892 exit(1);
894 /* Setup change notify */
895 if (!init_change_notify())
896 exit(1);
898 /* re-initialise the timezone */
899 TimeInit();
901 /* register our message handlers */
902 message_register(MSG_SMB_FORCE_TDIS, msg_force_tdis);
904 smbd_process();
906 namecache_shutdown();
907 exit_server("normal exit");
908 return(0);