r23241: In preparation for the cluster messaging import the parent smbd needs to
[samba.git] / source / smbd / server.c
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
7    Copyright (C) James Peach                    2007
8    
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #include "includes.h"
25
26 static_decl_rpc;
27
28 static int am_parent = 1;
29
30 /* the last message the was processed */
31 int last_message = -1;
32
33 /* a useful macro to debug the last message processed */
34 #define LAST_MESSAGE() smb_fn_name(last_message)
35
36 extern struct auth_context *negprot_global_auth_context;
37 extern pstring user_socket_options;
38 extern SIG_ATOMIC_T got_sig_term;
39 extern SIG_ATOMIC_T reload_after_sighup;
40 static SIG_ATOMIC_T got_sig_cld;
41
42 #ifdef WITH_DFS
43 extern int dcelogin_atmost_once;
44 #endif /* WITH_DFS */
45
46 /* really we should have a top level context structure that has the
47    client file descriptor as an element. That would require a major rewrite :(
48
49    the following 2 functions are an alternative - they make the file
50    descriptor private to smbd
51  */
52 static int server_fd = -1;
53
54 int smbd_server_fd(void)
55 {
56         return server_fd;
57 }
58
59 static void smbd_set_server_fd(int fd)
60 {
61         server_fd = fd;
62         client_setfd(fd);
63 }
64
65 struct event_context *smbd_event_context(void)
66 {
67         static struct event_context *ctx;
68
69         if (!ctx && !(ctx = event_context_init(NULL))) {
70                 smb_panic("Could not init smbd event context\n");
71         }
72         return ctx;
73 }
74
75 struct messaging_context *smbd_messaging_context(void)
76 {
77         static struct messaging_context *ctx;
78
79         if (!ctx && !(ctx = messaging_init(NULL, server_id_self(),
80                                            smbd_event_context()))) {
81                 smb_panic("Could not init smbd messaging context\n");
82         }
83         return ctx;
84 }
85
86 /*******************************************************************
87  What to do when smb.conf is updated.
88  ********************************************************************/
89
90 static void smb_conf_updated(struct messaging_context *msg,
91                              void *private_data,
92                              uint32_t msg_type,
93                              struct server_id server_id,
94                              DATA_BLOB *data)
95 {
96         DEBUG(10,("smb_conf_updated: Got message saying smb.conf was "
97                   "updated. Reloading.\n"));
98         reload_services(False);
99 }
100
101
102 /*******************************************************************
103  Delete a statcache entry.
104  ********************************************************************/
105
106 static void smb_stat_cache_delete(struct messaging_context *msg,
107                                   void *private_data,
108                                   uint32_t msg_tnype,
109                                   struct server_id server_id,
110                                   DATA_BLOB *data)
111 {
112         const char *name = (const char *)data->data;
113         DEBUG(10,("smb_stat_cache_delete: delete name %s\n", name));
114         stat_cache_delete(name);
115 }
116
117 /****************************************************************************
118  Terminate signal.
119 ****************************************************************************/
120
121 static void sig_term(void)
122 {
123         got_sig_term = 1;
124         sys_select_signal(SIGTERM);
125 }
126
127 /****************************************************************************
128  Catch a sighup.
129 ****************************************************************************/
130
131 static void sig_hup(int sig)
132 {
133         reload_after_sighup = 1;
134         sys_select_signal(SIGHUP);
135 }
136
137 /****************************************************************************
138  Catch a sigcld
139 ****************************************************************************/
140 static void sig_cld(int sig)
141 {
142         got_sig_cld = 1;
143         sys_select_signal(SIGCLD);
144 }
145
146 /****************************************************************************
147   Send a SIGTERM to our process group.
148 *****************************************************************************/
149
150 static void  killkids(void)
151 {
152         if(am_parent) kill(0,SIGTERM);
153 }
154
155 /****************************************************************************
156  Process a sam sync message - not sure whether to do this here or
157  somewhere else.
158 ****************************************************************************/
159
160 static void msg_sam_sync(struct messaging_context *msg,
161                          void *private_data,
162                          uint32_t msg_type,
163                          struct server_id server_id,
164                          DATA_BLOB *data)
165 {
166         DEBUG(10, ("** sam sync message received, ignoring\n"));
167 }
168
169 /****************************************************************************
170  Process a sam sync replicate message - not sure whether to do this here or
171  somewhere else.
172 ****************************************************************************/
173
174 static void msg_sam_repl(struct messaging_context *msg,
175                          void *private_data,
176                          uint32_t msg_type,
177                          struct server_id server_id,
178                          DATA_BLOB *data)
179 {
180         uint32 low_serial;
181
182         if (data->length != sizeof(low_serial))
183                 return;
184
185         low_serial = *((uint32 *)data->data);
186
187         DEBUG(3, ("received sam replication message, serial = 0x%04x\n",
188                   low_serial));
189 }
190
191 /****************************************************************************
192  Open the socket communication - inetd.
193 ****************************************************************************/
194
195 static BOOL open_sockets_inetd(void)
196 {
197         /* Started from inetd. fd 0 is the socket. */
198         /* We will abort gracefully when the client or remote system 
199            goes away */
200         smbd_set_server_fd(dup(0));
201         
202         /* close our standard file descriptors */
203         close_low_fds(False); /* Don't close stderr */
204         
205         set_socket_options(smbd_server_fd(),"SO_KEEPALIVE");
206         set_socket_options(smbd_server_fd(), user_socket_options);
207
208         return True;
209 }
210
211 static void msg_exit_server(struct messaging_context *msg,
212                             void *private_data,
213                             uint32_t msg_type,
214                             struct server_id server_id,
215                             DATA_BLOB *data)
216 {
217         DEBUG(3, ("got a SHUTDOWN message\n"));
218         exit_server_cleanly(NULL);
219 }
220
221 #ifdef DEVELOPER
222 static void msg_inject_fault(struct messaging_context *msg,
223                              void *private_data,
224                              uint32_t msg_type,
225                              struct server_id src,
226                              DATA_BLOB *data)
227 {
228         int sig;
229
230         if (data->length != sizeof(sig)) {
231                 
232                 DEBUG(0, ("Process %s sent bogus signal injection request\n",
233                           procid_str_static(&src)));
234                 return;
235         }
236
237         sig = *(int *)data->data;
238         if (sig == -1) {
239                 exit_server("internal error injected");
240                 return;
241         }
242
243 #if HAVE_STRSIGNAL
244         DEBUG(0, ("Process %s requested injection of signal %d (%s)\n",
245                   procid_str_static(&src), sig, strsignal(sig)));
246 #else
247         DEBUG(0, ("Process %s requested injection of signal %d\n",
248                   procid_str_static(&src), sig));
249 #endif
250
251         kill(sys_getpid(), sig);
252 }
253 #endif /* DEVELOPER */
254
255 struct child_pid {
256         struct child_pid *prev, *next;
257         pid_t pid;
258 };
259
260 static struct child_pid *children;
261 static int num_children;
262
263 static void add_child_pid(pid_t pid)
264 {
265         struct child_pid *child;
266
267         if (lp_max_smbd_processes() == 0) {
268                 /* Don't bother with the child list if we don't care anyway */
269                 return;
270         }
271
272         child = SMB_MALLOC_P(struct child_pid);
273         if (child == NULL) {
274                 DEBUG(0, ("Could not add child struct -- malloc failed\n"));
275                 return;
276         }
277         child->pid = pid;
278         DLIST_ADD(children, child);
279         num_children += 1;
280 }
281
282 static void remove_child_pid(pid_t pid)
283 {
284         struct child_pid *child;
285
286         if (lp_max_smbd_processes() == 0) {
287                 /* Don't bother with the child list if we don't care anyway */
288                 return;
289         }
290
291         for (child = children; child != NULL; child = child->next) {
292                 if (child->pid == pid) {
293                         struct child_pid *tmp = child;
294                         DLIST_REMOVE(children, child);
295                         SAFE_FREE(tmp);
296                         num_children -= 1;
297                         return;
298                 }
299         }
300
301         DEBUG(0, ("Could not find child %d -- ignoring\n", (int)pid));
302 }
303
304 /****************************************************************************
305  Have we reached the process limit ?
306 ****************************************************************************/
307
308 static BOOL allowable_number_of_smbd_processes(void)
309 {
310         int max_processes = lp_max_smbd_processes();
311
312         if (!max_processes)
313                 return True;
314
315         return num_children < max_processes;
316 }
317
318 /****************************************************************************
319  Open the socket communication.
320 ****************************************************************************/
321
322 static BOOL open_sockets_smbd(enum smb_server_mode server_mode, const char *smb_ports)
323 {
324         int num_sockets = 0;
325         int fd_listenset[FD_SETSIZE];
326         fd_set listen_set;
327         int s;
328         int maxfd = 0;
329         int i;
330         struct timeval idle_timeout = timeval_zero();
331
332         if (server_mode == SERVER_MODE_INETD) {
333                 return open_sockets_inetd();
334         }
335
336 #ifdef HAVE_ATEXIT
337         {
338                 static int atexit_set;
339                 if(atexit_set == 0) {
340                         atexit_set=1;
341                         atexit(killkids);
342                 }
343         }
344 #endif
345
346         /* Stop zombies */
347         CatchSignal(SIGCLD, sig_cld);
348
349         FD_ZERO(&listen_set);
350
351         /* At this point, it doesn't matter what daemon mode we are in, we
352          * need some sockets to listen on.
353          */
354         num_sockets = smbd_sockinit(smb_ports, fd_listenset, &idle_timeout);
355         if (num_sockets == 0) {
356                 return False;
357         }
358
359         for (i = 0; i < num_sockets; ++i) {
360                 FD_SET(fd_listenset[i], &listen_set);
361                 maxfd = MAX(maxfd, fd_listenset[i]);
362         }
363
364         /* Listen to messages */
365
366         messaging_register(smbd_messaging_context(), NULL,
367                            MSG_SMB_SAM_SYNC, msg_sam_sync);
368         messaging_register(smbd_messaging_context(), NULL,
369                            MSG_SMB_SAM_REPL, msg_sam_repl);
370         messaging_register(smbd_messaging_context(), NULL,
371                            MSG_SHUTDOWN, msg_exit_server);
372         messaging_register(smbd_messaging_context(), NULL,
373                            MSG_SMB_FILE_RENAME, msg_file_was_renamed);
374         messaging_register(smbd_messaging_context(), NULL,
375                            MSG_SMB_CONF_UPDATED, smb_conf_updated); 
376         messaging_register(smbd_messaging_context(), NULL,
377                            MSG_SMB_STAT_CACHE_DELETE, smb_stat_cache_delete);
378         brl_register_msgs(smbd_messaging_context());
379
380 #ifdef DEVELOPER
381         messaging_register(smbd_messaging_context(), NULL,
382                            MSG_SMB_INJECT_FAULT, msg_inject_fault);
383 #endif
384
385         /* now accept incoming connections - forking a new process
386            for each incoming connection */
387         DEBUG(2,("waiting for a connection\n"));
388         while (1) {
389                 struct timeval now;
390                 fd_set r_fds, w_fds;
391                 int num;
392                 
393                 /* Free up temporary memory from the main smbd. */
394                 lp_TALLOC_FREE();
395
396                 /* Ensure we respond to PING and DEBUG messages from the main smbd. */
397                 message_dispatch(smbd_messaging_context());
398
399                 if (got_sig_cld) {
400                         pid_t pid;
401                         got_sig_cld = False;
402
403                         while ((pid = sys_waitpid(-1, NULL, WNOHANG)) > 0) {
404                                 remove_child_pid(pid);
405                         }
406                 }
407
408                 memcpy((char *)&r_fds, (char *)&listen_set, 
409                        sizeof(listen_set));
410                 FD_ZERO(&w_fds);
411                 GetTimeOfDay(&now);
412
413                 event_add_to_select_args(smbd_event_context(), &now,
414                                          &r_fds, &w_fds, &idle_timeout,
415                                          &maxfd);
416
417                 num = sys_select(maxfd+1,&r_fds,&w_fds,NULL,
418                                  timeval_is_zero(&idle_timeout) ?
419                                  NULL : &idle_timeout);
420                 
421                 run_events(smbd_event_context(), num, &r_fds, &w_fds);
422
423                 if (num == -1 && errno == EINTR) {
424                         if (got_sig_term) {
425                                 exit_server_cleanly(NULL);
426                         }
427
428                         /* check for sighup processing */
429                         if (reload_after_sighup) {
430                                 change_to_root_user();
431                                 DEBUG(1,("Reloading services after SIGHUP\n"));
432                                 reload_services(False);
433                                 reload_after_sighup = 0;
434                         }
435
436                         continue;
437                 }
438
439 #if 0
440                 Deactivated for now, this needs to become a timed event
441                 vl
442
443                 /* If the idle timeout fired and we don't have any connected
444                  * users, exit gracefully. We should be running under a process
445                  * controller that will restart us if necessry.
446                  */
447                 if (num == 0 && count_all_current_connections() == 0) {
448                         exit_server_cleanly("idle timeout");
449                 }
450 #endif
451
452                 /* check if we need to reload services */
453                 check_reload(time(NULL));
454
455                 /* Find the sockets that are read-ready -
456                    accept on these. */
457                 for( ; num > 0; num--) {
458                         struct sockaddr addr;
459                         socklen_t in_addrlen = sizeof(addr);
460                         pid_t child = 0;
461
462                         s = -1;
463                         for(i = 0; i < num_sockets; i++) {
464                                 if(FD_ISSET(fd_listenset[i],&r_fds)) {
465                                         s = fd_listenset[i];
466                                         /* Clear this so we don't look
467                                            at it again. */
468                                         FD_CLR(fd_listenset[i],&r_fds);
469                                         break;
470                                 }
471                         }
472
473                         smbd_set_server_fd(accept(s,&addr,&in_addrlen));
474                         
475                         if (smbd_server_fd() == -1 && errno == EINTR)
476                                 continue;
477                         
478                         if (smbd_server_fd() == -1) {
479                                 DEBUG(0,("open_sockets_smbd: accept: %s\n",
480                                          strerror(errno)));
481                                 continue;
482                         }
483
484                         /* Ensure child is set to blocking mode */
485                         set_blocking(smbd_server_fd(),True);
486
487                         /* In interactive mode, return with a connected socket.
488                          * Foreground and daemon modes should fork worker
489                          * processes.
490                          */
491                         if (server_mode == SERVER_MODE_INTERACTIVE) {
492                                 return True;
493                         }
494                         
495                         if (allowable_number_of_smbd_processes() &&
496                             smbd_server_fd() != -1 &&
497                             ((child = sys_fork())==0)) {
498                                 /* Child code ... */
499
500                                 /* Stop zombies, the parent explicitly handles
501                                  * them, counting worker smbds. */
502                                 CatchChild();
503                                 
504                                 /* close the listening socket(s) */
505                                 for(i = 0; i < num_sockets; i++)
506                                         close(fd_listenset[i]);
507                                 
508                                 /* close our standard file
509                                    descriptors */
510                                 close_low_fds(False);
511                                 am_parent = 0;
512                                 
513                                 set_socket_options(smbd_server_fd(),"SO_KEEPALIVE");
514                                 set_socket_options(smbd_server_fd(),user_socket_options);
515                                 
516                                 /* this is needed so that we get decent entries
517                                    in smbstatus for port 445 connects */
518                                 set_remote_machine_name(get_peer_addr(smbd_server_fd()),
519                                                         False);
520                                 
521                                 /* Reset the state of the random
522                                  * number generation system, so
523                                  * children do not get the same random
524                                  * numbers as each other */
525
526                                 set_need_random_reseed();
527                                 /* tdb needs special fork handling - remove
528                                  * CLEAR_IF_FIRST flags */
529                                 if (tdb_reopen_all(1) == -1) {
530                                         DEBUG(0,("tdb_reopen_all failed.\n"));
531                                         smb_panic("tdb_reopen_all failed.");
532                                 }
533
534                                 return True; 
535                         }
536                         /* The parent doesn't need this socket */
537                         close(smbd_server_fd()); 
538
539                         /* Sun May 6 18:56:14 2001 ackley@cs.unm.edu:
540                                 Clear the closed fd info out of server_fd --
541                                 and more importantly, out of client_fd in
542                                 util_sock.c, to avoid a possible
543                                 getpeername failure if we reopen the logs
544                                 and use %I in the filename.
545                         */
546
547                         smbd_set_server_fd(-1);
548
549                         if (child != 0) {
550                                 add_child_pid(child);
551                         }
552
553                         /* Force parent to check log size after
554                          * spawning child.  Fix from
555                          * klausr@ITAP.Physik.Uni-Stuttgart.De.  The
556                          * parent smbd will log to logserver.smb.  It
557                          * writes only two messages for each child
558                          * started/finished. But each child writes,
559                          * say, 50 messages also in logserver.smb,
560                          * begining with the debug_count of the
561                          * parent, before the child opens its own log
562                          * file logserver.client. In a worst case
563                          * scenario the size of logserver.smb would be
564                          * checked after about 50*50=2500 messages
565                          * (ca. 100kb).
566                          * */
567                         force_check_log_size();
568  
569                 } /* end for num */
570         } /* end while 1 */
571
572 /* NOTREACHED   return True; */
573 }
574
575 /****************************************************************************
576  Reload printers
577 **************************************************************************/
578 void reload_printers(void)
579 {
580         int snum;
581         int n_services = lp_numservices();
582         int pnum = lp_servicenumber(PRINTERS_NAME);
583         const char *pname;
584
585         pcap_cache_reload();
586
587         /* remove stale printers */
588         for (snum = 0; snum < n_services; snum++) {
589                 /* avoid removing PRINTERS_NAME or non-autoloaded printers */
590                 if (snum == pnum || !(lp_snum_ok(snum) && lp_print_ok(snum) &&
591                                       lp_autoloaded(snum)))
592                         continue;
593
594                 pname = lp_printername(snum);
595                 if (!pcap_printername_ok(pname)) {
596                         DEBUG(3, ("removing stale printer %s\n", pname));
597
598                         if (is_printer_published(NULL, snum, NULL))
599                                 nt_printer_publish(NULL, snum, SPOOL_DS_UNPUBLISH);
600                         del_a_printer(pname);
601                         lp_killservice(snum);
602                 }
603         }
604
605         load_printers();
606 }
607
608 /****************************************************************************
609  Reload the services file.
610 **************************************************************************/
611
612 BOOL reload_services(BOOL test)
613 {
614         BOOL ret;
615         
616         if (lp_loaded()) {
617                 pstring fname;
618                 pstrcpy(fname,lp_configfile());
619                 if (file_exist(fname, NULL) &&
620                     !strcsequal(fname, dyn_CONFIGFILE)) {
621                         pstrcpy(dyn_CONFIGFILE, fname);
622                         test = False;
623                 }
624         }
625
626         reopen_logs();
627
628         if (test && !lp_file_list_changed())
629                 return(True);
630
631         lp_killunused(conn_snum_used);
632
633         ret = lp_load(dyn_CONFIGFILE, False, False, True, True);
634
635         reload_printers();
636
637         /* perhaps the config filename is now set */
638         if (!test)
639                 reload_services(True);
640
641         reopen_logs();
642
643         load_interfaces();
644
645         if (smbd_server_fd() != -1) {      
646                 set_socket_options(smbd_server_fd(),"SO_KEEPALIVE");
647                 set_socket_options(smbd_server_fd(), user_socket_options);
648         }
649
650         mangle_reset_cache();
651         reset_stat_cache();
652
653         /* this forces service parameters to be flushed */
654         set_current_service(NULL,0,True);
655
656         return(ret);
657 }
658
659 /****************************************************************************
660  Exit the server.
661 ****************************************************************************/
662
663 /* Reasons for shutting down a server process. */
664 enum server_exit_reason { SERVER_EXIT_NORMAL, SERVER_EXIT_ABNORMAL };
665
666 static void exit_server_common(enum server_exit_reason how,
667         const char *const reason) NORETURN_ATTRIBUTE;
668
669 static void exit_server_common(enum server_exit_reason how,
670         const char *const reason)
671 {
672         static int firsttime=1;
673
674         if (!firsttime)
675                 exit(0);
676         firsttime = 0;
677
678         change_to_root_user();
679
680         if (negprot_global_auth_context) {
681                 (negprot_global_auth_context->free)(&negprot_global_auth_context);
682         }
683
684         conn_close_all();
685
686         invalidate_all_vuids();
687
688         /* 3 second timeout. */
689         print_notify_send_messages(smbd_messaging_context(), 3);
690
691         /* delete our entry in the connections database. */
692         yield_connection(NULL,"");
693
694         respond_to_all_remaining_local_messages();
695
696 #ifdef WITH_DFS
697         if (dcelogin_atmost_once) {
698                 dfs_unlogin();
699         }
700 #endif
701
702         locking_end();
703         printing_end();
704
705         server_encryption_shutdown();
706
707         if (how != SERVER_EXIT_NORMAL) {
708                 int oldlevel = DEBUGLEVEL;
709                 char *last_inbuf = get_InBuffer();
710
711                 DEBUGLEVEL = 10;
712
713                 DEBUGSEP(0);
714                 DEBUG(0,("Abnormal server exit: %s\n",
715                         reason ? reason : "no explanation provided"));
716                 DEBUGSEP(0);
717
718                 log_stack_trace();
719                 if (last_inbuf) {
720                         DEBUG(0,("Last message was %s\n", LAST_MESSAGE()));
721                         show_msg(last_inbuf);
722                 }
723
724                 DEBUGLEVEL = oldlevel;
725                 dump_core();
726
727         } else {    
728                 DEBUG(3,("Server exit (%s)\n",
729                         (reason ? reason : "normal exit")));
730         }
731
732         exit(0);
733 }
734
735 void exit_server(const char *const explanation)
736 {
737         exit_server_common(SERVER_EXIT_ABNORMAL, explanation);
738 }
739
740 void exit_server_cleanly(const char *const explanation)
741 {
742         exit_server_common(SERVER_EXIT_NORMAL, explanation);
743 }
744
745 void exit_server_fault(void)
746 {
747         exit_server("critical server fault");
748 }
749
750 /****************************************************************************
751  Initialise connect, service and file structs.
752 ****************************************************************************/
753
754 static BOOL init_structs(void )
755 {
756         /*
757          * Set the machine NETBIOS name if not already
758          * set from the config file.
759          */
760
761         if (!init_names())
762                 return False;
763
764         conn_init();
765
766         file_init();
767
768         /* for RPC pipes */
769         init_rpc_pipe_hnd();
770
771         init_dptrs();
772
773         secrets_init();
774
775         return True;
776 }
777
778 /*
779  * Send keepalive packets to our client
780  */
781 static BOOL keepalive_fn(const struct timeval *now, void *private_data)
782 {
783         if (!send_keepalive(smbd_server_fd())) {
784                 DEBUG( 2, ( "Keepalive failed - exiting.\n" ) );
785                 return False;
786         }
787         return True;
788 }
789
790 /*
791  * Do the recurring check if we're idle
792  */
793 static BOOL deadtime_fn(const struct timeval *now, void *private_data)
794 {
795         if ((conn_num_open() == 0)
796             || (conn_idle_all(now->tv_sec))) {
797                 DEBUG( 2, ( "Closing idle connection\n" ) );
798                 messaging_send(smbd_messaging_context(), procid_self(),
799                                MSG_SHUTDOWN, &data_blob_null);
800                 return False;
801         }
802
803         return True;
804 }
805
806
807 /****************************************************************************
808  main program.
809 ****************************************************************************/
810
811 /* Declare prototype for build_options() to avoid having to run it through
812    mkproto.h.  Mixing $(builddir) and $(srcdir) source files in the current
813    prototype generation system is too complicated. */
814
815 extern void build_options(BOOL screen);
816
817  int main(int argc,const char *argv[])
818 {
819         /* shall I run as a daemon */
820         BOOL no_process_group = False;
821         BOOL log_stdout = False;
822         const char *ports = NULL;
823         const char *profile_level = NULL;
824         int opt;
825         poptContext pc;
826
827         enum smb_server_mode server_mode = SERVER_MODE_DAEMON;
828
829         struct poptOption long_options[] = {
830         POPT_AUTOHELP
831         {"daemon", 'D', POPT_ARG_VAL, &server_mode, SERVER_MODE_DAEMON,
832                 "Become a daemon (default)" },
833         {"interactive", 'i', POPT_ARG_VAL, &server_mode, SERVER_MODE_INTERACTIVE,
834                 "Run interactive (not a daemon)"},
835         {"foreground", 'F', POPT_ARG_VAL, &server_mode, SERVER_MODE_FOREGROUND,
836                 "Run daemon in foreground (for daemontools, etc.)" },
837         {"no-process-group", '\0', POPT_ARG_VAL, &no_process_group, True,
838                 "Don't create a new process group" },
839         {"log-stdout", 'S', POPT_ARG_VAL, &log_stdout, True, "Log to stdout" },
840         {"build-options", 'b', POPT_ARG_NONE, NULL, 'b', "Print build options" },
841         {"port", 'p', POPT_ARG_STRING, &ports, 0, "Listen on the specified ports"},
842         {"profiling-level", 'P', POPT_ARG_STRING, &profile_level, 0, "Set profiling level","PROFILE_LEVEL"},
843         POPT_COMMON_SAMBA
844         POPT_COMMON_DYNCONFIG
845         POPT_TABLEEND
846         };
847
848         load_case_tables();
849
850         TimeInit();
851
852 #ifdef HAVE_SET_AUTH_PARAMETERS
853         set_auth_parameters(argc,argv);
854 #endif
855
856         pc = poptGetContext("smbd", argc, argv, long_options, 0);
857         
858         while((opt = poptGetNextOpt(pc)) != -1) {
859                 switch (opt)  {
860                 case 'b':
861                         build_options(True); /* Display output to screen as well as debug */ 
862                         exit(0);
863                         break;
864                 }
865         }
866
867         poptFreeContext(pc);
868
869 #ifdef HAVE_SETLUID
870         /* needed for SecureWare on SCO */
871         setluid(0);
872 #endif
873
874         sec_init();
875
876         set_remote_machine_name("smbd", False);
877
878         if (server_mode == SERVER_MODE_INTERACTIVE) {
879                 log_stdout = True;
880                 if (DEBUGLEVEL >= 9) {
881                         talloc_enable_leak_report();
882                 }
883         }
884
885         if (log_stdout && server_mode == SERVER_MODE_DAEMON) {
886                 DEBUG(0,("ERROR: Can't log to stdout (-S) unless daemon is in foreground (-F) or interactive (-i)\n"));
887                 exit(1);
888         }
889
890         setup_logging(argv[0],log_stdout);
891
892         /* we want to re-seed early to prevent time delays causing
893            client problems at a later date. (tridge) */
894         generate_random_buffer(NULL, 0);
895
896         /* make absolutely sure we run as root - to handle cases where people
897            are crazy enough to have it setuid */
898
899         gain_root_privilege();
900         gain_root_group_privilege();
901
902         fault_setup((void (*)(void *))exit_server_fault);
903         dump_core_setup("smbd");
904
905         CatchSignal(SIGTERM , SIGNAL_CAST sig_term);
906         CatchSignal(SIGHUP,SIGNAL_CAST sig_hup);
907         
908         /* we are never interested in SIGPIPE */
909         BlockSignals(True,SIGPIPE);
910
911 #if defined(SIGFPE)
912         /* we are never interested in SIGFPE */
913         BlockSignals(True,SIGFPE);
914 #endif
915
916 #if defined(SIGUSR2)
917         /* We are no longer interested in USR2 */
918         BlockSignals(True,SIGUSR2);
919 #endif
920
921         /* POSIX demands that signals are inherited. If the invoking process has
922          * these signals masked, we will have problems, as we won't recieve them. */
923         BlockSignals(False, SIGHUP);
924         BlockSignals(False, SIGUSR1);
925         BlockSignals(False, SIGTERM);
926
927         /* we want total control over the permissions on created files,
928            so set our umask to 0 */
929         umask(0);
930
931         init_sec_ctx();
932
933         reopen_logs();
934
935         DEBUG(0,( "smbd version %s started.\n", SAMBA_VERSION_STRING));
936         DEBUGADD( 0, ( "%s\n", COPYRIGHT_STARTUP_MESSAGE ) );
937
938         DEBUG(2,("uid=%d gid=%d euid=%d egid=%d\n",
939                  (int)getuid(),(int)getgid(),(int)geteuid(),(int)getegid()));
940
941         /* Output the build options to the debug log */ 
942         build_options(False);
943
944         if (sizeof(uint16) < 2 || sizeof(uint32) < 4) {
945                 DEBUG(0,("ERROR: Samba is not configured correctly for the word size on your machine\n"));
946                 exit(1);
947         }
948
949         /*
950          * Do this before reload_services.
951          */
952
953         if (!reload_services(False))
954                 return(-1);     
955
956         init_structs();
957
958 #ifdef WITH_PROFILE
959         if (!profile_setup(smbd_messaging_context(), False)) {
960                 DEBUG(0,("ERROR: failed to setup profiling\n"));
961                 return -1;
962         }
963         if (profile_level != NULL) {
964                 int pl = atoi(profile_level);
965                 struct server_id src;
966
967                 DEBUG(1, ("setting profiling level: %s\n",profile_level));
968                 src.pid = getpid();
969                 set_profile_level(pl, src);
970         }
971 #endif
972
973         DEBUG(3,( "loaded services\n"));
974
975         if (is_a_socket(0)) {
976                 if (server_mode == SERVER_MODE_DAEMON) {
977                         DEBUG(0,("standard input is a socket, "
978                                     "assuming -F option\n"));
979                 }
980                 server_mode = SERVER_MODE_INETD;
981         }
982
983         if (server_mode == SERVER_MODE_DAEMON) {
984                 DEBUG( 3, ( "Becoming a daemon.\n" ) );
985                 become_daemon(True, no_process_group);
986         } else if (server_mode == SERVER_MODE_FOREGROUND) {
987                 become_daemon(False, no_process_group);
988         }
989
990 #if HAVE_SETPGID
991         /*
992          * If we're interactive we want to set our own process group for
993          * signal management.
994          */
995         if (server_mode == SERVER_MODE_INTERACTIVE && !no_process_group) {
996                 setpgid( (pid_t)0, (pid_t)0);
997         }
998 #endif
999
1000         if (!directory_exist(lp_lockdir(), NULL))
1001                 mkdir(lp_lockdir(), 0755);
1002
1003         if (server_mode != SERVER_MODE_INETD &&
1004             server_mode != SERVER_MODE_INTERACTIVE) {
1005                 pidfile_create("smbd");
1006         }
1007
1008         /* Setup all the TDB's - including CLEAR_IF_FIRST tdb's. */
1009
1010         if (smbd_messaging_context() == NULL)
1011                 exit(1);
1012
1013         /* Initialise the password backed before the global_sam_sid
1014            to ensure that we fetch from ldap before we make a domain sid up */
1015
1016         if(!initialize_password_db(False, smbd_event_context()))
1017                 exit(1);
1018
1019         if (!secrets_init()) {
1020                 DEBUG(0, ("ERROR: smbd can not open secrets.tdb\n"));
1021                 exit(1);
1022         }
1023
1024         if(!get_global_sam_sid()) {
1025                 DEBUG(0,("ERROR: Samba cannot create a SAM SID.\n"));
1026                 exit(1);
1027         }
1028
1029         if (!session_init())
1030                 exit(1);
1031
1032         if (!connections_init(True))
1033                 exit(1);
1034
1035         if (!locking_init(0))
1036                 exit(1);
1037
1038         namecache_enable();
1039
1040         if (!init_registry())
1041                 exit(1);
1042
1043 #if 0
1044         if (!init_svcctl_db())
1045                 exit(1);
1046 #endif
1047
1048         if (!print_backend_init(smbd_messaging_context()))
1049                 exit(1);
1050
1051         if (!init_guest_info()) {
1052                 DEBUG(0,("ERROR: failed to setup guest info.\n"));
1053                 return -1;
1054         }
1055
1056         /* Setup the main smbd so that we can get messages. */
1057         /* don't worry about general printing messages here */
1058
1059         claim_connection(NULL,"",FLAG_MSG_GENERAL|FLAG_MSG_SMBD);
1060
1061         /* only start the background queue daemon if we are 
1062            running as a daemon -- bad things will happen if
1063            smbd is launched via inetd and we fork a copy of 
1064            ourselves here */
1065         if (server_mode != SERVER_MODE_INETD &&
1066             server_mode != SERVER_MODE_INTERACTIVE) {
1067                 start_background_queue(); 
1068         }
1069
1070         /* Always attempt to initialize DMAPI. We will only use it later if
1071          * lp_dmapi_support is set on the share, but we need a single global
1072          * session to work with.
1073          */
1074         dmapi_init_session();
1075
1076         if (!open_sockets_smbd(server_mode, ports)) {
1077                 exit(1);
1078         }
1079
1080         /*
1081          * everything after this point is run after the fork()
1082          */ 
1083
1084         static_init_rpc;
1085
1086         init_modules();
1087
1088         /* Possibly reload the services file. Only worth doing in
1089          * daemon mode. In inetd mode, we know we only just loaded this.
1090          */
1091         if (server_mode != SERVER_MODE_INETD &&
1092             server_mode != SERVER_MODE_INTERACTIVE) {
1093                 reload_services(True);
1094         }
1095
1096         if (!init_account_policy()) {
1097                 DEBUG(0,("Could not open account policy tdb.\n"));
1098                 exit(1);
1099         }
1100
1101         if (*lp_rootdir()) {
1102                 if (sys_chroot(lp_rootdir()) == 0)
1103                         DEBUG(2,("Changed root to %s\n", lp_rootdir()));
1104         }
1105
1106         /* Setup oplocks */
1107         if (!init_oplocks(smbd_messaging_context()))
1108                 exit(1);
1109         
1110         /* Setup aio signal handler. */
1111         initialize_async_io_handler();
1112
1113         /* register our message handlers */
1114         messaging_register(smbd_messaging_context(), NULL,
1115                            MSG_SMB_FORCE_TDIS, msg_force_tdis);
1116
1117         if ((lp_keepalive() != 0)
1118             && !(event_add_idle(smbd_event_context(), NULL,
1119                                 timeval_set(lp_keepalive(), 0),
1120                                 "keepalive", keepalive_fn,
1121                                 NULL))) {
1122                 DEBUG(0, ("Could not add keepalive event\n"));
1123                 exit(1);
1124         }
1125
1126         if (!(event_add_idle(smbd_event_context(), NULL,
1127                              timeval_set(IDLE_CLOSED_TIMEOUT, 0),
1128                              "deadtime", deadtime_fn, NULL))) {
1129                 DEBUG(0, ("Could not add deadtime event\n"));
1130                 exit(1);
1131         }
1132
1133         smbd_process();
1134
1135         namecache_shutdown();
1136
1137         exit_server_cleanly(NULL);
1138         return(0);
1139 }