Merge commit 'origin/v3-2-test' into v3-2-stable
[metze/samba/wip.git] / source3 / nmbd / nmbd.c
1 /*
2    Unix SMB/CIFS implementation.
3    NBT netbios routines and daemon - version 2
4    Copyright (C) Andrew Tridgell 1994-1998
5    Copyright (C) Jeremy Allison 1997-2002
6    Copyright (C) Jelmer Vernooij 2002,2003 (Conversion to popt)
7    
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 3 of the License, or
11    (at your option) any later version.
12    
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.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20    
21 */
22
23 #include "includes.h"
24
25 int ClientNMB       = -1;
26 int ClientDGRAM     = -1;
27 int global_nmb_port = -1;
28
29 extern bool rescan_listen_set;
30 extern bool global_in_nmbd;
31
32 extern bool override_logfile;
33
34 /* have we found LanMan clients yet? */
35 bool found_lm_clients = False;
36
37 /* what server type are we currently */
38
39 time_t StartupTime = 0;
40
41 struct event_context *nmbd_event_context(void)
42 {
43         static struct event_context *ctx;
44
45         if (!ctx && !(ctx = event_context_init(NULL))) {
46                 smb_panic("Could not init nmbd event context");
47         }
48         return ctx;
49 }
50
51 struct messaging_context *nmbd_messaging_context(void)
52 {
53         static struct messaging_context *ctx;
54
55         if (!ctx && !(ctx = messaging_init(NULL, server_id_self(),
56                                            nmbd_event_context()))) {
57                 smb_panic("Could not init nmbd messaging context");
58         }
59         return ctx;
60 }
61
62 /**************************************************************************** **
63  Handle a SIGTERM in band.
64  **************************************************************************** */
65
66 static void terminate(void)
67 {
68         DEBUG(0,("Got SIGTERM: going down...\n"));
69   
70         /* Write out wins.dat file if samba is a WINS server */
71         wins_write_database(0,False);
72   
73         /* Remove all SELF registered names from WINS */
74         release_wins_names();
75   
76         /* Announce all server entries as 0 time-to-live, 0 type. */
77         announce_my_servers_removed();
78
79         /* If there was an async dns child - kill it. */
80         kill_async_dns_child();
81
82         exit(0);
83 }
84
85 /**************************************************************************** **
86  Handle a SHUTDOWN message from smbcontrol.
87  **************************************************************************** */
88
89 static void nmbd_terminate(struct messaging_context *msg,
90                            void *private_data,
91                            uint32_t msg_type,
92                            struct server_id server_id,
93                            DATA_BLOB *data)
94 {
95         terminate();
96 }
97
98 /**************************************************************************** **
99  Catch a SIGTERM signal.
100  **************************************************************************** */
101
102 static SIG_ATOMIC_T got_sig_term;
103
104 static void sig_term(int sig)
105 {
106         got_sig_term = 1;
107         sys_select_signal(SIGTERM);
108 }
109
110 /**************************************************************************** **
111  Catch a SIGHUP signal.
112  **************************************************************************** */
113
114 static SIG_ATOMIC_T reload_after_sighup;
115
116 static void sig_hup(int sig)
117 {
118         reload_after_sighup = 1;
119         sys_select_signal(SIGHUP);
120 }
121
122 /**************************************************************************** **
123  Possibly continue after a fault.
124  **************************************************************************** */
125
126 static void fault_continue(void)
127 {
128         dump_core();
129 }
130
131 /**************************************************************************** **
132  Expire old names from the namelist and server list.
133  **************************************************************************** */
134
135 static void expire_names_and_servers(time_t t)
136 {
137         static time_t lastrun = 0;
138   
139         if ( !lastrun )
140                 lastrun = t;
141         if ( t < (lastrun + 5) )
142                 return;
143         lastrun = t;
144
145         /*
146          * Expire any timed out names on all the broadcast
147          * subnets and those registered with the WINS server.
148          * (nmbd_namelistdb.c)
149          */
150
151         expire_names(t);
152
153         /*
154          * Go through all the broadcast subnets and for each
155          * workgroup known on that subnet remove any expired
156          * server names. If a workgroup has an empty serverlist
157          * and has itself timed out then remove the workgroup.
158          * (nmbd_workgroupdb.c)
159          */
160
161         expire_workgroups_and_servers(t);
162 }
163
164 /************************************************************************** **
165  Reload the list of network interfaces.
166  ************************************************************************** */
167
168 static bool reload_interfaces(time_t t)
169 {
170         static time_t lastt;
171         int n;
172         struct subnet_record *subrec;
173
174         if (t && ((t - lastt) < NMBD_INTERFACES_RELOAD)) return False;
175         lastt = t;
176
177         if (!interfaces_changed()) return False;
178
179         /* the list of probed interfaces has changed, we may need to add/remove
180            some subnets */
181         load_interfaces();
182
183         /* find any interfaces that need adding */
184         for (n=iface_count() - 1; n >= 0; n--) {
185                 char str[INET6_ADDRSTRLEN];
186                 const struct interface *iface = get_interface(n);
187                 struct in_addr ip, nmask;
188
189                 if (!iface) {
190                         DEBUG(2,("reload_interfaces: failed to get interface %d\n", n));
191                         continue;
192                 }
193
194                 /* Ensure we're only dealing with IPv4 here. */
195                 if (iface->ip.ss_family != AF_INET) {
196                         DEBUG(2,("reload_interfaces: "
197                                 "ignoring non IPv4 interface.\n"));
198                         continue;
199                 }
200
201                 ip = ((struct sockaddr_in *)&iface->ip)->sin_addr;
202                 nmask = ((struct sockaddr_in *)&iface->netmask)->sin_addr;
203
204                 /*
205                  * We don't want to add a loopback interface, in case
206                  * someone has added 127.0.0.1 for smbd, nmbd needs to
207                  * ignore it here. JRA.
208                  */
209
210                 if (is_loopback_addr(&iface->ip)) {
211                         DEBUG(2,("reload_interfaces: Ignoring loopback "
212                                 "interface %s\n",
213                                 print_sockaddr(str, sizeof(str), &iface->ip) ));
214                         continue;
215                 }
216
217                 for (subrec=subnetlist; subrec; subrec=subrec->next) {
218                         if (ip_equal_v4(ip, subrec->myip) &&
219                             ip_equal_v4(nmask, subrec->mask_ip)) {
220                                 break;
221                         }
222                 }
223
224                 if (!subrec) {
225                         /* it wasn't found! add it */
226                         DEBUG(2,("Found new interface %s\n",
227                                  print_sockaddr(str,
228                                          sizeof(str), &iface->ip) ));
229                         subrec = make_normal_subnet(iface);
230                         if (subrec)
231                                 register_my_workgroup_one_subnet(subrec);
232                 }
233         }
234
235         /* find any interfaces that need deleting */
236         for (subrec=subnetlist; subrec; subrec=subrec->next) {
237                 for (n=iface_count() - 1; n >= 0; n--) {
238                         struct interface *iface = get_interface(n);
239                         struct in_addr ip, nmask;
240                         if (!iface) {
241                                 continue;
242                         }
243                         /* Ensure we're only dealing with IPv4 here. */
244                         if (iface->ip.ss_family != AF_INET) {
245                                 DEBUG(2,("reload_interfaces: "
246                                         "ignoring non IPv4 interface.\n"));
247                                 continue;
248                         }
249                         ip = ((struct sockaddr_in *)&iface->ip)->sin_addr;
250                         nmask = ((struct sockaddr_in *)&iface->netmask)->sin_addr;
251                         if (ip_equal_v4(ip, subrec->myip) &&
252                             ip_equal_v4(nmask, subrec->mask_ip)) {
253                                 break;
254                         }
255                 }
256                 if (n == -1) {
257                         /* oops, an interface has disapeared. This is
258                          tricky, we don't dare actually free the
259                          interface as it could be being used, so
260                          instead we just wear the memory leak and
261                          remove it from the list of interfaces without
262                          freeing it */
263                         DEBUG(2,("Deleting dead interface %s\n",
264                                  inet_ntoa(subrec->myip)));
265                         close_subnet(subrec);
266                 }
267         }
268
269         rescan_listen_set = True;
270
271         /* We need to shutdown if there are no subnets... */
272         if (FIRST_SUBNET == NULL) {
273                 DEBUG(0,("reload_interfaces: No subnets to listen to. Shutting down...\n"));
274                 return True;
275         }
276         return False;
277 }
278
279 /**************************************************************************** **
280  Reload the services file.
281  **************************************************************************** */
282
283 static bool reload_nmbd_services(bool test)
284 {
285         bool ret;
286
287         set_remote_machine_name("nmbd", False);
288
289         if ( lp_loaded() ) {
290                 const char *fname = lp_configfile();
291                 if (file_exist(fname,NULL) && !strcsequal(fname,get_dyn_CONFIGFILE())) {
292                         set_dyn_CONFIGFILE(fname);
293                         test = False;
294                 }
295         }
296
297         if ( test && !lp_file_list_changed() )
298                 return(True);
299
300         ret = lp_load(get_dyn_CONFIGFILE(), True , False, False, True);
301
302         /* perhaps the config filename is now set */
303         if ( !test ) {
304                 DEBUG( 3, ( "services not loaded\n" ) );
305                 reload_nmbd_services( True );
306         }
307
308         return(ret);
309 }
310
311 /**************************************************************************** **
312  * React on 'smbcontrol nmbd reload-config' in the same way as to SIGHUP
313  * We use buf here to return bool result to process() when reload_interfaces()
314  * detects that there are no subnets.
315  **************************************************************************** */
316
317 static void msg_reload_nmbd_services(struct messaging_context *msg,
318                                      void *private_data,
319                                      uint32_t msg_type,
320                                      struct server_id server_id,
321                                      DATA_BLOB *data)
322 {
323         write_browse_list( 0, True );
324         dump_all_namelists();
325         reload_nmbd_services( True );
326         reopen_logs();
327         
328         if (data->data) {
329                 /* We were called from process() */
330                 /* If reload_interfaces() returned True */
331                 /* we need to shutdown if there are no subnets... */
332                 /* pass this info back to process() */
333                 *((bool *)data->data) = reload_interfaces(0);  
334         }
335 }
336
337 static void msg_nmbd_send_packet(struct messaging_context *msg,
338                                  void *private_data,
339                                  uint32_t msg_type,
340                                  struct server_id src,
341                                  DATA_BLOB *data)
342 {
343         struct packet_struct *p = (struct packet_struct *)data->data;
344         struct subnet_record *subrec;
345         struct sockaddr_storage ss;
346         const struct sockaddr_storage *pss;
347         const struct in_addr *local_ip;
348
349         DEBUG(10, ("Received send_packet from %d\n", procid_to_pid(&src)));
350
351         if (data->length != sizeof(struct packet_struct)) {
352                 DEBUG(2, ("Discarding invalid packet length from %d\n",
353                           procid_to_pid(&src)));
354                 return;
355         }
356
357         if ((p->packet_type != NMB_PACKET) &&
358             (p->packet_type != DGRAM_PACKET)) {
359                 DEBUG(2, ("Discarding invalid packet type from %d: %d\n",
360                           procid_to_pid(&src), p->packet_type));
361                 return;
362         }
363
364         in_addr_to_sockaddr_storage(&ss, p->ip);
365         pss = iface_ip(&ss);
366
367         if (pss == NULL) {
368                 DEBUG(2, ("Could not find ip for packet from %d\n",
369                           procid_to_pid(&src)));
370                 return;
371         }
372
373         local_ip = &((const struct sockaddr_in *)pss)->sin_addr;
374         subrec = FIRST_SUBNET;
375
376         p->fd = (p->packet_type == NMB_PACKET) ?
377                 subrec->nmb_sock : subrec->dgram_sock;
378
379         for (subrec = FIRST_SUBNET; subrec != NULL;
380              subrec = NEXT_SUBNET_EXCLUDING_UNICAST(subrec)) {
381                 if (ip_equal_v4(*local_ip, subrec->myip)) {
382                         p->fd = (p->packet_type == NMB_PACKET) ?
383                                 subrec->nmb_sock : subrec->dgram_sock;
384                         break;
385                 }
386         }
387
388         if (p->packet_type == DGRAM_PACKET) {
389                 p->port = 138;
390                 p->packet.dgram.header.source_ip.s_addr = local_ip->s_addr;
391                 p->packet.dgram.header.source_port = 138;
392         }
393
394         send_packet(p);
395 }
396
397 /**************************************************************************** **
398  The main select loop.
399  **************************************************************************** */
400
401 static void process(void)
402 {
403         bool run_election;
404         bool no_subnets;
405
406         while( True ) {
407                 time_t t = time(NULL);
408                 TALLOC_CTX *frame = talloc_stackframe();
409
410                 /* Check for internal messages */
411
412                 message_dispatch(nmbd_messaging_context());
413
414                 /*
415                  * Check all broadcast subnets to see if
416                  * we need to run an election on any of them.
417                  * (nmbd_elections.c)
418                  */
419
420                 run_election = check_elections();
421
422                 /*
423                  * Read incoming UDP packets.
424                  * (nmbd_packets.c)
425                  */
426
427                 if(listen_for_packets(run_election)) {
428                         TALLOC_FREE(frame);
429                         return;
430                 }
431
432                 /*
433                  * Handle termination inband.
434                  */
435
436                 if (got_sig_term) {
437                         got_sig_term = 0;
438                         terminate();
439                 }
440
441                 /*
442                  * Process all incoming packets
443                  * read above. This calls the success and
444                  * failure functions registered when response
445                  * packets arrrive, and also deals with request
446                  * packets from other sources.
447                  * (nmbd_packets.c)
448                  */
449
450                 run_packet_queue();
451
452                 /*
453                  * Run any elections - initiate becoming
454                  * a local master browser if we have won.
455                  * (nmbd_elections.c)
456                  */
457
458                 run_elections(t);
459
460                 /*
461                  * Send out any broadcast announcements
462                  * of our server names. This also announces
463                  * the workgroup name if we are a local
464                  * master browser.
465                  * (nmbd_sendannounce.c)
466                  */
467
468                 announce_my_server_names(t);
469
470                 /*
471                  * Send out any LanMan broadcast announcements
472                  * of our server names.
473                  * (nmbd_sendannounce.c)
474                  */
475
476                 announce_my_lm_server_names(t);
477
478                 /*
479                  * If we are a local master browser, periodically
480                  * announce ourselves to the domain master browser.
481                  * This also deals with syncronising the domain master
482                  * browser server lists with ourselves as a local
483                  * master browser.
484                  * (nmbd_sendannounce.c)
485                  */
486
487                 announce_myself_to_domain_master_browser(t);
488
489                 /*
490                  * Fullfill any remote announce requests.
491                  * (nmbd_sendannounce.c)
492                  */
493
494                 announce_remote(t);
495
496                 /*
497                  * Fullfill any remote browse sync announce requests.
498                  * (nmbd_sendannounce.c)
499                  */
500
501                 browse_sync_remote(t);
502
503                 /*
504                  * Scan the broadcast subnets, and WINS client
505                  * namelists and refresh any that need refreshing.
506                  * (nmbd_mynames.c)
507                  */
508
509                 refresh_my_names(t);
510
511                 /*
512                  * Scan the subnet namelists and server lists and
513                  * expire thos that have timed out.
514                  * (nmbd.c)
515                  */
516
517                 expire_names_and_servers(t);
518
519                 /*
520                  * Write out a snapshot of our current browse list into
521                  * the browse.dat file. This is used by smbd to service
522                  * incoming NetServerEnum calls - used to synchronise
523                  * browse lists over subnets.
524                  * (nmbd_serverlistdb.c)
525                  */
526
527                 write_browse_list(t, False);
528
529                 /*
530                  * If we are a domain master browser, we have a list of
531                  * local master browsers we should synchronise browse
532                  * lists with (these are added by an incoming local
533                  * master browser announcement packet). Expire any of
534                  * these that are no longer current, and pull the server
535                  * lists from each of these known local master browsers.
536                  * (nmbd_browsesync.c)
537                  */
538
539                 dmb_expire_and_sync_browser_lists(t);
540
541                 /*
542                  * Check that there is a local master browser for our
543                  * workgroup for all our broadcast subnets. If one
544                  * is not found, start an election (which we ourselves
545                  * may or may not participate in, depending on the
546                  * setting of the 'local master' parameter.
547                  * (nmbd_elections.c)
548                  */
549
550                 check_master_browser_exists(t);
551
552                 /*
553                  * If we are configured as a logon server, attempt to
554                  * register the special NetBIOS names to become such
555                  * (WORKGROUP<1c> name) on all broadcast subnets and
556                  * with the WINS server (if used). If we are configured
557                  * to become a domain master browser, attempt to register
558                  * the special NetBIOS name (WORKGROUP<1b> name) to
559                  * become such.
560                  * (nmbd_become_dmb.c)
561                  */
562
563                 add_domain_names(t);
564
565                 /*
566                  * If we are a WINS server, do any timer dependent
567                  * processing required.
568                  * (nmbd_winsserver.c)
569                  */
570
571                 initiate_wins_processing(t);
572
573                 /*
574                  * If we are a domain master browser, attempt to contact the
575                  * WINS server to get a list of all known WORKGROUPS/DOMAINS.
576                  * This will only work to a Samba WINS server.
577                  * (nmbd_browsesync.c)
578                  */
579
580                 if (lp_enhanced_browsing())
581                         collect_all_workgroup_names_from_wins_server(t);
582
583                 /*
584                  * Go through the response record queue and time out or re-transmit
585                  * and expired entries.
586                  * (nmbd_packets.c)
587                  */
588
589                 retransmit_or_expire_response_records(t);
590
591                 /*
592                  * check to see if any remote browse sync child processes have completed
593                  */
594
595                 sync_check_completion();
596
597                 /*
598                  * regularly sync with any other DMBs we know about 
599                  */
600
601                 if (lp_enhanced_browsing())
602                         sync_all_dmbs(t);
603
604                 /*
605                  * clear the unexpected packet queue 
606                  */
607
608                 clear_unexpected(t);
609
610                 /*
611                  * Reload the services file if we got a sighup.
612                  */
613
614                 if(reload_after_sighup) {
615                         DATA_BLOB blob = data_blob_const(&no_subnets,
616                                                          sizeof(no_subnets));
617                         DEBUG( 0, ( "Got SIGHUP dumping debug info.\n" ) );
618                         msg_reload_nmbd_services(nmbd_messaging_context(),
619                                                  NULL, MSG_SMB_CONF_UPDATED,
620                                                  procid_self(), &blob);
621
622                         if(no_subnets) {
623                                 TALLOC_FREE(frame);
624                                 return;
625                         }
626                         reload_after_sighup = 0;
627                 }
628
629                 /* check for new network interfaces */
630
631                 if(reload_interfaces(t)) {
632                         TALLOC_FREE(frame);
633                         return;
634                 }
635
636                 /* free up temp memory */
637                 TALLOC_FREE(frame);
638         }
639 }
640
641 /**************************************************************************** **
642  Open the socket communication.
643  **************************************************************************** */
644
645 static bool open_sockets(bool isdaemon, int port)
646 {
647         struct sockaddr_storage ss;
648         const char *sock_addr = lp_socket_address();
649
650         /*
651          * The sockets opened here will be used to receive broadcast
652          * packets *only*. Interface specific sockets are opened in
653          * make_subnet() in namedbsubnet.c. Thus we bind to the
654          * address "0.0.0.0". The parameter 'socket address' is
655          * now deprecated.
656          */
657
658         if (!interpret_string_addr(&ss, sock_addr,
659                                 AI_NUMERICHOST|AI_PASSIVE)) {
660                 DEBUG(0,("open_sockets: unable to get socket address "
661                         "from string %s", sock_addr));
662                 return false;
663         }
664         if (ss.ss_family != AF_INET) {
665                 DEBUG(0,("open_sockets: unable to use IPv6 socket"
666                         "%s in nmbd\n",
667                         sock_addr));
668                 return false;
669         }
670
671         if (isdaemon) {
672                 ClientNMB = open_socket_in(SOCK_DGRAM, port,
673                                            0, &ss,
674                                            true);
675         } else {
676                 ClientNMB = 0;
677         }
678
679         if (ClientNMB == -1) {
680                 return false;
681         }
682
683         ClientDGRAM = open_socket_in(SOCK_DGRAM, DGRAM_PORT,
684                                            3, &ss,
685                                            true);
686
687         if (ClientDGRAM == -1) {
688                 if (ClientNMB != 0) {
689                         close(ClientNMB);
690                 }
691                 return false;
692         }
693
694         /* we are never interested in SIGPIPE */
695         BlockSignals(True,SIGPIPE);
696
697         set_socket_options( ClientNMB,   "SO_BROADCAST" );
698         set_socket_options( ClientDGRAM, "SO_BROADCAST" );
699
700         /* Ensure we're non-blocking. */
701         set_blocking( ClientNMB, False);
702         set_blocking( ClientDGRAM, False);
703
704         DEBUG( 3, ( "open_sockets: Broadcast sockets opened.\n" ) );
705         return( True );
706 }
707
708 /**************************************************************************** **
709  main program
710  **************************************************************************** */
711
712  int main(int argc, const char *argv[])
713 {
714         static bool is_daemon;
715         static bool opt_interactive;
716         static bool Fork = true;
717         static bool no_process_group;
718         static bool log_stdout;
719         poptContext pc;
720         char *p_lmhosts = NULL;
721         int opt;
722         enum {
723                 OPT_DAEMON = 1000,
724                 OPT_INTERACTIVE,
725                 OPT_FORK,
726                 OPT_NO_PROCESS_GROUP,
727                 OPT_LOG_STDOUT
728         };
729         struct poptOption long_options[] = {
730         POPT_AUTOHELP
731         {"daemon", 'D', POPT_ARG_NONE, NULL, OPT_DAEMON, "Become a daemon(default)" },
732         {"interactive", 'i', POPT_ARG_NONE, NULL, OPT_INTERACTIVE, "Run interactive (not a daemon)" },
733         {"foreground", 'F', POPT_ARG_NONE, NULL, OPT_FORK, "Run daemon in foreground (for daemontools & etc)" },
734         {"no-process-group", 0, POPT_ARG_NONE, NULL, OPT_NO_PROCESS_GROUP, "Don't create a new process group" },
735         {"log-stdout", 'S', POPT_ARG_NONE, NULL, OPT_LOG_STDOUT, "Log to stdout" },
736         {"hosts", 'H', POPT_ARG_STRING, &p_lmhosts, 'H', "Load a netbios hosts file"},
737         {"port", 'p', POPT_ARG_INT, &global_nmb_port, NMB_PORT, "Listen on the specified port" },
738         POPT_COMMON_SAMBA
739         { NULL }
740         };
741         TALLOC_CTX *frame = talloc_stackframe(); /* Setup tos. */
742
743         load_case_tables();
744
745         global_nmb_port = NMB_PORT;
746
747         pc = poptGetContext("nmbd", argc, argv, long_options, 0);
748         while ((opt = poptGetNextOpt(pc)) != -1) {
749                 switch (opt) {
750                 case OPT_DAEMON:
751                         is_daemon = true;
752                         break;
753                 case OPT_INTERACTIVE:
754                         opt_interactive = true;
755                         break;
756                 case OPT_FORK:
757                         Fork = false;
758                         break;
759                 case OPT_NO_PROCESS_GROUP:
760                         no_process_group = true;
761                         break;
762                 case OPT_LOG_STDOUT:
763                         log_stdout = true;
764                         break;
765                 default:
766                         d_fprintf(stderr, "\nInvalid option %s: %s\n\n",
767                                   poptBadOption(pc, 0), poptStrerror(opt));
768                         poptPrintUsage(pc, stderr, 0);
769                         exit(1);
770                 }
771         };
772         poptFreeContext(pc);
773
774         global_in_nmbd = true;
775         
776         StartupTime = time(NULL);
777         
778         sys_srandom(time(NULL) ^ sys_getpid());
779         
780         if (!override_logfile) {
781                 char *logfile = NULL;
782                 if (asprintf(&logfile, "%s/log.nmbd", get_dyn_LOGFILEBASE()) < 0) {
783                         exit(1);
784                 }
785                 lp_set_logfile(logfile);
786                 SAFE_FREE(logfile);
787         }
788         
789         fault_setup((void (*)(void *))fault_continue );
790         dump_core_setup("nmbd");
791         
792         /* POSIX demands that signals are inherited. If the invoking process has
793          * these signals masked, we will have problems, as we won't receive them. */
794         BlockSignals(False, SIGHUP);
795         BlockSignals(False, SIGUSR1);
796         BlockSignals(False, SIGTERM);
797         
798         CatchSignal( SIGHUP,  SIGNAL_CAST sig_hup );
799         CatchSignal( SIGTERM, SIGNAL_CAST sig_term );
800         
801 #if defined(SIGFPE)
802         /* we are never interested in SIGFPE */
803         BlockSignals(True,SIGFPE);
804 #endif
805
806         /* We no longer use USR2... */
807 #if defined(SIGUSR2)
808         BlockSignals(True, SIGUSR2);
809 #endif
810
811         if ( opt_interactive ) {
812                 Fork = False;
813                 log_stdout = True;
814         }
815
816         if ( log_stdout && Fork ) {
817                 DEBUG(0,("ERROR: Can't log to stdout (-S) unless daemon is in foreground (-F) or interactive (-i)\n"));
818                 exit(1);
819         }
820
821         setup_logging( argv[0], log_stdout );
822
823         reopen_logs();
824
825         DEBUG(0,("nmbd version %s started.\n", SAMBA_VERSION_STRING));
826         DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE));
827
828         if ( !reload_nmbd_services(False) )
829                 return(-1);
830
831         if(!init_names())
832                 return -1;
833
834         reload_nmbd_services( True );
835
836         if (strequal(lp_workgroup(),"*")) {
837                 DEBUG(0,("ERROR: a workgroup name of * is no longer supported\n"));
838                 exit(1);
839         }
840
841         set_samba_nb_type();
842
843         if (!is_daemon && !is_a_socket(0)) {
844                 DEBUG(0,("standard input is not a socket, assuming -D option\n"));
845                 is_daemon = True;
846         }
847   
848         if (is_daemon && !opt_interactive) {
849                 DEBUG( 2, ( "Becoming a daemon.\n" ) );
850                 become_daemon(Fork, no_process_group);
851         }
852
853 #if HAVE_SETPGID
854         /*
855          * If we're interactive we want to set our own process group for 
856          * signal management.
857          */
858         if (opt_interactive && !no_process_group)
859                 setpgid( (pid_t)0, (pid_t)0 );
860 #endif
861
862         if (nmbd_messaging_context() == NULL) {
863                 return 1;
864         }
865
866 #ifndef SYNC_DNS
867         /* Setup the async dns. We do it here so it doesn't have all the other
868                 stuff initialised and thus chewing memory and sockets */
869         if(lp_we_are_a_wins_server() && lp_dns_proxy()) {
870                 start_async_dns();
871         }
872 #endif
873
874         if (!directory_exist(lp_lockdir(), NULL)) {
875                 mkdir(lp_lockdir(), 0755);
876         }
877
878         pidfile_create("nmbd");
879         messaging_register(nmbd_messaging_context(), NULL,
880                            MSG_FORCE_ELECTION, nmbd_message_election);
881 #if 0
882         /* Until winsrepl is done. */
883         messaging_register(nmbd_messaging_context(), NULL,
884                            MSG_WINS_NEW_ENTRY, nmbd_wins_new_entry);
885 #endif
886         messaging_register(nmbd_messaging_context(), NULL,
887                            MSG_SHUTDOWN, nmbd_terminate);
888         messaging_register(nmbd_messaging_context(), NULL,
889                            MSG_SMB_CONF_UPDATED, msg_reload_nmbd_services);
890         messaging_register(nmbd_messaging_context(), NULL,
891                            MSG_SEND_PACKET, msg_nmbd_send_packet);
892
893         TimeInit();
894
895         DEBUG( 3, ( "Opening sockets %d\n", global_nmb_port ) );
896
897         if ( !open_sockets( is_daemon, global_nmb_port ) ) {
898                 kill_async_dns_child();
899                 return 1;
900         }
901
902         /* Determine all the IP addresses we have. */
903         load_interfaces();
904
905         /* Create an nmbd subnet record for each of the above. */
906         if( False == create_subnets() ) {
907                 DEBUG(0,("ERROR: Failed when creating subnet lists. Exiting.\n"));
908                 kill_async_dns_child();
909                 exit(1);
910         }
911
912         /* Load in any static local names. */ 
913         if (p_lmhosts) {
914                 set_dyn_LMHOSTSFILE(p_lmhosts);
915         }
916         load_lmhosts_file(get_dyn_LMHOSTSFILE());
917         DEBUG(3,("Loaded hosts file %s\n", get_dyn_LMHOSTSFILE()));
918
919         /* If we are acting as a WINS server, initialise data structures. */
920         if( !initialise_wins() ) {
921                 DEBUG( 0, ( "nmbd: Failed when initialising WINS server.\n" ) );
922                 kill_async_dns_child();
923                 exit(1);
924         }
925
926         /* 
927          * Register nmbd primary workgroup and nmbd names on all
928          * the broadcast subnets, and on the WINS server (if specified).
929          * Also initiate the startup of our primary workgroup (start
930          * elections if we are setup as being able to be a local
931          * master browser.
932          */
933
934         if( False == register_my_workgroup_and_names() ) {
935                 DEBUG(0,("ERROR: Failed when creating my my workgroup. Exiting.\n"));
936                 kill_async_dns_child();
937                 exit(1);
938         }
939
940         /* We can only take signals in the select. */
941         BlockSignals( True, SIGTERM );
942
943         TALLOC_FREE(frame);
944         process();
945
946         if (dbf)
947                 x_fclose(dbf);
948         kill_async_dns_child();
949         return(0);
950 }