s3:smbd/server: create smbd_parent_context earlier
[kai/samba.git] / source3 / 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) Volker Lendecke                1993-2007
8    Copyright (C) Jeremy Allison                 1993-2007
9
10    This program is free software; you can redistribute it and/or modify
11    it under the terms of the GNU General Public License as published by
12    the Free Software Foundation; either version 3 of the License, or
13    (at your option) any later version.
14
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 */
23
24 #include "includes.h"
25 #include "system/filesys.h"
26 #include "popt_common.h"
27 #include "smbd/smbd.h"
28 #include "smbd/globals.h"
29 #include "registry/reg_init_full.h"
30 #include "libcli/auth/schannel.h"
31 #include "secrets.h"
32 #include "memcache.h"
33 #include "ctdbd_conn.h"
34 #include "printing/queue_process.h"
35 #include "rpc_server/rpc_service_setup.h"
36 #include "rpc_server/rpc_config.h"
37 #include "serverid.h"
38 #include "passdb.h"
39 #include "auth.h"
40 #include "messages.h"
41 #include "smbprofile.h"
42 #include "lib/id_cache.h"
43 #include "lib/param/param.h"
44
45 extern void start_epmd(struct tevent_context *ev_ctx,
46                        struct messaging_context *msg_ctx);
47
48 extern void start_lsasd(struct event_context *ev_ctx,
49                         struct messaging_context *msg_ctx);
50
51 #ifdef WITH_DFS
52 extern int dcelogin_atmost_once;
53 #endif /* WITH_DFS */
54
55 /*******************************************************************
56  What to do when smb.conf is updated.
57  ********************************************************************/
58
59 static void smb_conf_updated(struct messaging_context *msg,
60                              void *private_data,
61                              uint32_t msg_type,
62                              struct server_id server_id,
63                              DATA_BLOB *data)
64 {
65         struct tevent_context *ev_ctx =
66                 talloc_get_type_abort(private_data, struct tevent_context);
67         struct smbd_server_connection *sconn = msg_ctx_to_sconn(msg);
68
69         DEBUG(10,("smb_conf_updated: Got message saying smb.conf was "
70                   "updated. Reloading.\n"));
71         change_to_root_user();
72         reload_services(msg, sconn->sock, False);
73         if (am_parent) {
74                 printing_subsystem_update(ev_ctx, msg, false);
75         }
76 }
77
78 /*******************************************************************
79  What to do when printcap is updated.
80  ********************************************************************/
81
82 static void smb_pcap_updated(struct messaging_context *msg,
83                              void *private_data,
84                              uint32_t msg_type,
85                              struct server_id server_id,
86                              DATA_BLOB *data)
87 {
88         struct tevent_context *ev_ctx =
89                 talloc_get_type_abort(private_data, struct tevent_context);
90
91         DEBUG(10,("Got message saying pcap was updated. Reloading.\n"));
92         change_to_root_user();
93         delete_and_reload_printers(ev_ctx, msg);
94 }
95
96 /*******************************************************************
97  Delete a statcache entry.
98  ********************************************************************/
99
100 static void smb_stat_cache_delete(struct messaging_context *msg,
101                                   void *private_data,
102                                   uint32_t msg_tnype,
103                                   struct server_id server_id,
104                                   DATA_BLOB *data)
105 {
106         const char *name = (const char *)data->data;
107         DEBUG(10,("smb_stat_cache_delete: delete name %s\n", name));
108         stat_cache_delete(name);
109 }
110
111 /****************************************************************************
112   Send a SIGTERM to our process group.
113 *****************************************************************************/
114
115 static void  killkids(void)
116 {
117         if(am_parent) kill(0,SIGTERM);
118 }
119
120 /****************************************************************************
121  Process a sam sync message - not sure whether to do this here or
122  somewhere else.
123 ****************************************************************************/
124
125 static void msg_sam_sync(struct messaging_context *msg,
126                          void *private_data,
127                          uint32_t msg_type,
128                          struct server_id server_id,
129                          DATA_BLOB *data)
130 {
131         DEBUG(10, ("** sam sync message received, ignoring\n"));
132 }
133
134 static void msg_exit_server(struct messaging_context *msg,
135                             void *private_data,
136                             uint32_t msg_type,
137                             struct server_id server_id,
138                             DATA_BLOB *data)
139 {
140         DEBUG(3, ("got a SHUTDOWN message\n"));
141         exit_server_cleanly(NULL);
142 }
143
144 #ifdef DEVELOPER
145 static void msg_inject_fault(struct messaging_context *msg,
146                              void *private_data,
147                              uint32_t msg_type,
148                              struct server_id src,
149                              DATA_BLOB *data)
150 {
151         int sig;
152
153         if (data->length != sizeof(sig)) {
154                 DEBUG(0, ("Process %s sent bogus signal injection request\n",
155                           procid_str_static(&src)));
156                 return;
157         }
158
159         sig = *(int *)data->data;
160         if (sig == -1) {
161                 exit_server("internal error injected");
162                 return;
163         }
164
165 #if HAVE_STRSIGNAL
166         DEBUG(0, ("Process %s requested injection of signal %d (%s)\n",
167                   procid_str_static(&src), sig, strsignal(sig)));
168 #else
169         DEBUG(0, ("Process %s requested injection of signal %d\n",
170                   procid_str_static(&src), sig));
171 #endif
172
173         kill(sys_getpid(), sig);
174 }
175 #endif /* DEVELOPER */
176
177 NTSTATUS messaging_send_to_children(struct messaging_context *msg_ctx,
178                                     uint32_t msg_type, DATA_BLOB* data)
179 {
180         NTSTATUS status;
181         struct child_pid *child;
182
183         for (child = children; child != NULL; child = child->next) {
184                 status = messaging_send(msg_ctx, pid_to_procid(child->pid),
185                                         msg_type, data);
186                 if (!NT_STATUS_IS_OK(status)) {
187                         return status;
188                 }
189         }
190         return NT_STATUS_OK;
191 }
192
193 /*
194  * Parent smbd process sets its own debug level first and then
195  * sends a message to all the smbd children to adjust their debug
196  * level to that of the parent.
197  */
198
199 static void smbd_msg_debug(struct messaging_context *msg_ctx,
200                            void *private_data,
201                            uint32_t msg_type,
202                            struct server_id server_id,
203                            DATA_BLOB *data)
204 {
205         debug_message(msg_ctx, private_data, MSG_DEBUG, server_id, data);
206
207         messaging_send_to_children(msg_ctx, MSG_DEBUG, data);
208 }
209
210 static void add_child_pid(pid_t pid)
211 {
212         struct child_pid *child;
213
214         child = SMB_MALLOC_P(struct child_pid);
215         if (child == NULL) {
216                 DEBUG(0, ("Could not add child struct -- malloc failed\n"));
217                 return;
218         }
219         child->pid = pid;
220         DLIST_ADD(children, child);
221         num_children += 1;
222 }
223
224 /*
225   at most every smbd:cleanuptime seconds (default 20), we scan the BRL
226   and locking database for entries to cleanup. As a side effect this
227   also cleans up dead entries in the connections database (due to the
228   traversal in message_send_all()
229
230   Using a timer for this prevents a flood of traversals when a large
231   number of clients disconnect at the same time (perhaps due to a
232   network outage).  
233 */
234
235 static void cleanup_timeout_fn(struct event_context *event_ctx,
236                                 struct timed_event *te,
237                                 struct timeval now,
238                                 void *private_data)
239 {
240         struct timed_event **cleanup_te = (struct timed_event **)private_data;
241         struct messaging_context *msg = smbd_messaging_context();
242
243         DEBUG(1,("Cleaning up brl and lock database after unclean shutdown\n"));
244         message_send_all(msg, MSG_SMB_UNLOCK, NULL, 0, NULL);
245         messaging_send_buf(msg, messaging_server_id(msg),
246                                 MSG_SMB_BRL_VALIDATE, NULL, 0);
247         /* mark the cleanup as having been done */
248         (*cleanup_te) = NULL;
249 }
250
251 static void remove_child_pid(struct tevent_context *ev_ctx,
252                              pid_t pid,
253                              bool unclean_shutdown)
254 {
255         struct child_pid *child;
256         static struct timed_event *cleanup_te;
257         struct server_id child_id;
258
259         if (unclean_shutdown) {
260                 /* a child terminated uncleanly so tickle all
261                    processes to see if they can grab any of the
262                    pending locks
263                 */
264                 DEBUG(3,(__location__ " Unclean shutdown of pid %u\n",
265                         (unsigned int)pid));
266                 if (!cleanup_te) {
267                         /* call the cleanup timer, but not too often */
268                         int cleanup_time = lp_parm_int(-1, "smbd", "cleanuptime", 20);
269                         cleanup_te = event_add_timed(ev_ctx, NULL,
270                                                 timeval_current_ofs(cleanup_time, 0),
271                                                 cleanup_timeout_fn,
272                                                 &cleanup_te);
273                         DEBUG(1,("Scheduled cleanup of brl and lock database after unclean shutdown\n"));
274                 }
275         }
276
277         child_id = pid_to_procid(pid);
278
279         if (!serverid_deregister(child_id)) {
280                 DEBUG(1, ("Could not remove pid %d from serverid.tdb\n",
281                           (int)pid));
282         }
283
284         for (child = children; child != NULL; child = child->next) {
285                 if (child->pid == pid) {
286                         struct child_pid *tmp = child;
287                         DLIST_REMOVE(children, child);
288                         SAFE_FREE(tmp);
289                         num_children -= 1;
290                         return;
291                 }
292         }
293
294         /* not all forked child processes are added to the children list */
295         DEBUG(1, ("Could not find child %d -- ignoring\n", (int)pid));
296 }
297
298 /****************************************************************************
299  Have we reached the process limit ?
300 ****************************************************************************/
301
302 static bool allowable_number_of_smbd_processes(void)
303 {
304         int max_processes = lp_max_smbd_processes();
305
306         if (!max_processes)
307                 return True;
308
309         return num_children < max_processes;
310 }
311
312 static void smbd_sig_chld_handler(struct tevent_context *ev,
313                                   struct tevent_signal *se,
314                                   int signum,
315                                   int count,
316                                   void *siginfo,
317                                   void *private_data)
318 {
319         pid_t pid;
320         int status;
321
322         while ((pid = sys_waitpid(-1, &status, WNOHANG)) > 0) {
323                 bool unclean_shutdown = False;
324
325                 /* If the child terminated normally, assume
326                    it was an unclean shutdown unless the
327                    status is 0
328                 */
329                 if (WIFEXITED(status)) {
330                         unclean_shutdown = WEXITSTATUS(status);
331                 }
332                 /* If the child terminated due to a signal
333                    we always assume it was unclean.
334                 */
335                 if (WIFSIGNALED(status)) {
336                         unclean_shutdown = True;
337                 }
338                 remove_child_pid(ev, pid, unclean_shutdown);
339         }
340 }
341
342 static void smbd_setup_sig_chld_handler(struct tevent_context *ev_ctx)
343 {
344         struct tevent_signal *se;
345
346         se = tevent_add_signal(ev_ctx,
347                                ev_ctx, /* mem_ctx */
348                                SIGCHLD, 0,
349                                smbd_sig_chld_handler,
350                                NULL);
351         if (!se) {
352                 exit_server("failed to setup SIGCHLD handler");
353         }
354 }
355
356 struct smbd_open_socket;
357
358 struct smbd_parent_context {
359         bool interactive;
360
361         struct tevent_context *ev_ctx;
362         struct messaging_context *msg_ctx;
363
364         /* the list of listening sockets */
365         struct smbd_open_socket *sockets;
366 };
367
368 struct smbd_open_socket {
369         struct smbd_open_socket *prev, *next;
370         struct smbd_parent_context *parent;
371         int fd;
372         struct tevent_fd *fde;
373 };
374
375 static void smbd_open_socket_close_fn(struct tevent_context *ev,
376                                       struct tevent_fd *fde,
377                                       int fd,
378                                       void *private_data)
379 {
380         /* this might be the socket_wrapper swrap_close() */
381         close(fd);
382 }
383
384 static void smbd_accept_connection(struct tevent_context *ev,
385                                    struct tevent_fd *fde,
386                                    uint16_t flags,
387                                    void *private_data)
388 {
389         struct smbd_open_socket *s = talloc_get_type_abort(private_data,
390                                      struct smbd_open_socket);
391         struct messaging_context *msg_ctx = s->parent->msg_ctx;
392         struct smbd_server_connection *sconn = msg_ctx_to_sconn(msg_ctx);
393         struct sockaddr_storage addr;
394         socklen_t in_addrlen = sizeof(addr);
395         int fd;
396         pid_t pid = 0;
397         uint64_t unique_id;
398
399         fd = accept(s->fd, (struct sockaddr *)(void *)&addr,&in_addrlen);
400         sconn->sock = fd;
401         if (fd == -1 && errno == EINTR)
402                 return;
403
404         if (fd == -1) {
405                 DEBUG(0,("open_sockets_smbd: accept: %s\n",
406                          strerror(errno)));
407                 return;
408         }
409
410         if (s->parent->interactive) {
411                 smbd_process(ev, sconn);
412                 exit_server_cleanly("end of interactive mode");
413                 return;
414         }
415
416         if (!allowable_number_of_smbd_processes()) {
417                 close(fd);
418                 sconn->sock = -1;
419                 return;
420         }
421
422         /*
423          * Generate a unique id in the parent process so that we use
424          * the global random state in the parent.
425          */
426         generate_random_buffer((uint8_t *)&unique_id, sizeof(unique_id));
427
428         pid = sys_fork();
429         if (pid == 0) {
430                 NTSTATUS status = NT_STATUS_OK;
431
432                 /* Child code ... */
433                 am_parent = 0;
434
435                 set_my_unique_id(unique_id);
436
437                 /* Stop zombies, the parent explicitly handles
438                  * them, counting worker smbds. */
439                 CatchChild();
440
441                 /* close our standard file
442                    descriptors */
443                 if (!debug_get_output_is_stdout()) {
444                         close_low_fds(False); /* Don't close stderr */
445                 }
446
447                 /*
448                  * Can't use TALLOC_FREE here. Nulling out the argument to it
449                  * would overwrite memory we've just freed.
450                  */
451                 talloc_free(s->parent);
452                 s = NULL;
453
454                 status = reinit_after_fork(msg_ctx,
455                                            ev,
456                                            true);
457                 if (!NT_STATUS_IS_OK(status)) {
458                         if (NT_STATUS_EQUAL(status,
459                                             NT_STATUS_TOO_MANY_OPENED_FILES)) {
460                                 DEBUG(0,("child process cannot initialize "
461                                          "because too many files are open\n"));
462                                 goto exit;
463                         }
464                         if (lp_clustering() &&
465                             NT_STATUS_EQUAL(status,
466                             NT_STATUS_INTERNAL_DB_ERROR)) {
467                                 DEBUG(1,("child process cannot initialize "
468                                          "because connection to CTDB "
469                                          "has failed\n"));
470                                 goto exit;
471                         }
472
473                         DEBUG(0,("reinit_after_fork() failed\n"));
474                         smb_panic("reinit_after_fork() failed");
475                 }
476
477                 smbd_setup_sig_term_handler();
478                 smbd_setup_sig_hup_handler(ev,
479                                            msg_ctx);
480
481                 if (!serverid_register(messaging_server_id(msg_ctx),
482                                        FLAG_MSG_GENERAL|FLAG_MSG_SMBD
483                                        |FLAG_MSG_DBWRAP
484                                        |FLAG_MSG_PRINT_GENERAL)) {
485                         exit_server_cleanly("Could not register myself in "
486                                             "serverid.tdb");
487                 }
488
489                 smbd_process(ev, sconn);
490          exit:
491                 exit_server_cleanly("end of child");
492                 return;
493         }
494
495         if (pid < 0) {
496                 DEBUG(0,("smbd_accept_connection: sys_fork() failed: %s\n",
497                          strerror(errno)));
498         }
499
500         /* The parent doesn't need this socket */
501         close(fd);
502
503         /* Sun May 6 18:56:14 2001 ackley@cs.unm.edu:
504                 Clear the closed fd info out of server_fd --
505                 and more importantly, out of client_fd in
506                 util_sock.c, to avoid a possible
507                 getpeername failure if we reopen the logs
508                 and use %I in the filename.
509         */
510         sconn->sock = -1;
511
512         if (pid != 0) {
513                 add_child_pid(pid);
514         }
515
516         /* Force parent to check log size after
517          * spawning child.  Fix from
518          * klausr@ITAP.Physik.Uni-Stuttgart.De.  The
519          * parent smbd will log to logserver.smb.  It
520          * writes only two messages for each child
521          * started/finished. But each child writes,
522          * say, 50 messages also in logserver.smb,
523          * begining with the debug_count of the
524          * parent, before the child opens its own log
525          * file logserver.client. In a worst case
526          * scenario the size of logserver.smb would be
527          * checked after about 50*50=2500 messages
528          * (ca. 100kb).
529          * */
530         force_check_log_size();
531 }
532
533 static bool smbd_open_one_socket(struct smbd_parent_context *parent,
534                                  struct tevent_context *ev_ctx,
535                                  struct messaging_context *msg_ctx,
536                                  const struct sockaddr_storage *ifss,
537                                  uint16_t port)
538 {
539         struct smbd_open_socket *s;
540
541         s = talloc(parent, struct smbd_open_socket);
542         if (!s) {
543                 return false;
544         }
545
546         s->parent = parent;
547         s->fd = open_socket_in(SOCK_STREAM,
548                                port,
549                                parent->sockets == NULL ? 0 : 2,
550                                ifss,
551                                true);
552         if (s->fd == -1) {
553                 DEBUG(0,("smbd_open_once_socket: open_socket_in: "
554                         "%s\n", strerror(errno)));
555                 TALLOC_FREE(s);
556                 /*
557                  * We ignore an error here, as we've done before
558                  */
559                 return true;
560         }
561
562         /* ready to listen */
563         set_socket_options(s->fd, "SO_KEEPALIVE");
564         set_socket_options(s->fd, lp_socket_options());
565
566         /* Set server socket to
567          * non-blocking for the accept. */
568         set_blocking(s->fd, False);
569
570         if (listen(s->fd, SMBD_LISTEN_BACKLOG) == -1) {
571                 DEBUG(0,("open_sockets_smbd: listen: "
572                         "%s\n", strerror(errno)));
573                         close(s->fd);
574                 TALLOC_FREE(s);
575                 return false;
576         }
577
578         s->fde = tevent_add_fd(ev_ctx,
579                                s,
580                                s->fd, TEVENT_FD_READ,
581                                smbd_accept_connection,
582                                s);
583         if (!s->fde) {
584                 DEBUG(0,("open_sockets_smbd: "
585                          "tevent_add_fd: %s\n",
586                          strerror(errno)));
587                 close(s->fd);
588                 TALLOC_FREE(s);
589                 return false;
590         }
591         tevent_fd_set_close_fn(s->fde, smbd_open_socket_close_fn);
592
593         DLIST_ADD_END(parent->sockets, s, struct smbd_open_socket *);
594
595         return true;
596 }
597
598 /****************************************************************************
599  Open the socket communication.
600 ****************************************************************************/
601
602 static bool open_sockets_smbd(struct smbd_parent_context *parent,
603                               struct tevent_context *ev_ctx,
604                               struct messaging_context *msg_ctx,
605                               const char *smb_ports)
606 {
607         int num_interfaces = iface_count();
608         int i;
609         const char *ports;
610         unsigned dns_port = 0;
611
612 #ifdef HAVE_ATEXIT
613         atexit(killkids);
614 #endif
615
616         /* Stop zombies */
617         smbd_setup_sig_chld_handler(ev_ctx);
618
619         /* use a reasonable default set of ports - listing on 445 and 139 */
620         if (!smb_ports) {
621                 ports = lp_smb_ports();
622                 if (!ports || !*ports) {
623                         ports = talloc_strdup(talloc_tos(), SMB_PORTS);
624                 } else {
625                         ports = talloc_strdup(talloc_tos(), ports);
626                 }
627         } else {
628                 ports = talloc_strdup(talloc_tos(), smb_ports);
629         }
630
631         if (lp_interfaces() && lp_bind_interfaces_only()) {
632                 /* We have been given an interfaces line, and been
633                    told to only bind to those interfaces. Create a
634                    socket per interface and bind to only these.
635                 */
636
637                 /* Now open a listen socket for each of the
638                    interfaces. */
639                 for(i = 0; i < num_interfaces; i++) {
640                         const struct sockaddr_storage *ifss =
641                                         iface_n_sockaddr_storage(i);
642                         char *tok;
643                         const char *ptr;
644
645                         if (ifss == NULL) {
646                                 DEBUG(0,("open_sockets_smbd: "
647                                         "interface %d has NULL IP address !\n",
648                                         i));
649                                 continue;
650                         }
651
652                         for (ptr=ports;
653                              next_token_talloc(talloc_tos(),&ptr, &tok, " \t,");) {
654                                 unsigned port = atoi(tok);
655                                 if (port == 0 || port > 0xffff) {
656                                         continue;
657                                 }
658
659                                 /* Keep the first port for mDNS service
660                                  * registration.
661                                  */
662                                 if (dns_port == 0) {
663                                         dns_port = port;
664                                 }
665
666                                 if (!smbd_open_one_socket(parent,
667                                                           ev_ctx,
668                                                           msg_ctx,
669                                                           ifss,
670                                                           port)) {
671                                         return false;
672                                 }
673                         }
674                 }
675         } else {
676                 /* Just bind to 0.0.0.0 - accept connections
677                    from anywhere. */
678
679                 char *tok;
680                 const char *ptr;
681                 const char *sock_addr = lp_socket_address();
682                 char *sock_tok;
683                 const char *sock_ptr;
684
685                 if (strequal(sock_addr, "0.0.0.0") ||
686                     strequal(sock_addr, "::")) {
687 #if HAVE_IPV6
688                         sock_addr = "::,0.0.0.0";
689 #else
690                         sock_addr = "0.0.0.0";
691 #endif
692                 }
693
694                 for (sock_ptr=sock_addr;
695                      next_token_talloc(talloc_tos(), &sock_ptr, &sock_tok, " \t,"); ) {
696                         for (ptr=ports; next_token_talloc(talloc_tos(), &ptr, &tok, " \t,"); ) {
697                                 struct sockaddr_storage ss;
698
699                                 unsigned port = atoi(tok);
700                                 if (port == 0 || port > 0xffff) {
701                                         continue;
702                                 }
703
704                                 /* Keep the first port for mDNS service
705                                  * registration.
706                                  */
707                                 if (dns_port == 0) {
708                                         dns_port = port;
709                                 }
710
711                                 /* open an incoming socket */
712                                 if (!interpret_string_addr(&ss, sock_tok,
713                                                 AI_NUMERICHOST|AI_PASSIVE)) {
714                                         continue;
715                                 }
716
717                                 if (!smbd_open_one_socket(parent,
718                                                           ev_ctx,
719                                                           msg_ctx,
720                                                           &ss,
721                                                           port)) {
722                                         return false;
723                                 }
724                         }
725                 }
726         }
727
728         if (parent->sockets == NULL) {
729                 DEBUG(0,("open_sockets_smbd: No "
730                         "sockets available to bind to.\n"));
731                 return false;
732         }
733
734         /* Setup the main smbd so that we can get messages. Note that
735            do this after starting listening. This is needed as when in
736            clustered mode, ctdb won't allow us to start doing database
737            operations until it has gone thru a full startup, which
738            includes checking to see that smbd is listening. */
739
740         if (!serverid_register(messaging_server_id(msg_ctx),
741                                FLAG_MSG_GENERAL|FLAG_MSG_SMBD
742                                |FLAG_MSG_PRINT_GENERAL
743                                |FLAG_MSG_DBWRAP)) {
744                 DEBUG(0, ("open_sockets_smbd: Failed to register "
745                           "myself in serverid.tdb\n"));
746                 return false;
747         }
748
749         /* Listen to messages */
750
751         messaging_register(msg_ctx, NULL, MSG_SMB_SAM_SYNC, msg_sam_sync);
752         messaging_register(msg_ctx, NULL, MSG_SHUTDOWN, msg_exit_server);
753         messaging_register(msg_ctx, ev_ctx, MSG_SMB_CONF_UPDATED,
754                            smb_conf_updated);
755         messaging_register(msg_ctx, NULL, MSG_SMB_STAT_CACHE_DELETE,
756                            smb_stat_cache_delete);
757         messaging_register(msg_ctx, NULL, MSG_DEBUG, smbd_msg_debug);
758         messaging_register(msg_ctx, ev_ctx, MSG_PRINTER_PCAP,
759                            smb_pcap_updated);
760         brl_register_msgs(msg_ctx);
761
762         msg_idmap_register_msg(msg_ctx);
763
764 #ifdef CLUSTER_SUPPORT
765         if (lp_clustering()) {
766                 ctdbd_register_reconfigure(messaging_ctdbd_connection());
767         }
768 #endif
769
770 #ifdef DEVELOPER
771         messaging_register(msg_ctx, NULL, MSG_SMB_INJECT_FAULT,
772                            msg_inject_fault);
773 #endif
774
775         if (lp_multicast_dns_register() && (dns_port != 0)) {
776 #ifdef WITH_DNSSD_SUPPORT
777                 smbd_setup_mdns_registration(ev_ctx,
778                                              parent, dns_port);
779 #endif
780 #ifdef WITH_AVAHI_SUPPORT
781                 void *avahi_conn;
782
783                 avahi_conn = avahi_start_register(ev_ctx,
784                                                   ev_ctx,
785                                                   dns_port);
786                 if (avahi_conn == NULL) {
787                         DEBUG(10, ("avahi_start_register failed\n"));
788                 }
789 #endif
790         }
791
792         return true;
793 }
794
795 static void smbd_parent_loop(struct tevent_context *ev_ctx,
796                              struct smbd_parent_context *parent)
797 {
798         /* now accept incoming connections - forking a new process
799            for each incoming connection */
800         DEBUG(2,("waiting for connections\n"));
801         while (1) {
802                 int ret;
803                 TALLOC_CTX *frame = talloc_stackframe();
804
805                 ret = tevent_loop_once(ev_ctx);
806                 if (ret != 0) {
807                         exit_server_cleanly("tevent_loop_once() error");
808                 }
809
810                 TALLOC_FREE(frame);
811         } /* end while 1 */
812
813 /* NOTREACHED   return True; */
814 }
815
816
817 /****************************************************************************
818  Initialise connect, service and file structs.
819 ****************************************************************************/
820
821 static bool init_structs(void )
822 {
823         /*
824          * Set the machine NETBIOS name if not already
825          * set from the config file.
826          */
827
828         if (!init_names())
829                 return False;
830
831         if (!secrets_init())
832                 return False;
833
834         return True;
835 }
836
837 /****************************************************************************
838  main program.
839 ****************************************************************************/
840
841 /* Declare prototype for build_options() to avoid having to run it through
842    mkproto.h.  Mixing $(builddir) and $(srcdir) source files in the current
843    prototype generation system is too complicated. */
844
845 extern void build_options(bool screen);
846
847  int main(int argc,const char *argv[])
848 {
849         /* shall I run as a daemon */
850         bool is_daemon = false;
851         bool interactive = false;
852         bool Fork = true;
853         bool no_process_group = false;
854         bool log_stdout = false;
855         char *ports = NULL;
856         char *profile_level = NULL;
857         int opt;
858         poptContext pc;
859         bool print_build_options = False;
860         enum {
861                 OPT_DAEMON = 1000,
862                 OPT_INTERACTIVE,
863                 OPT_FORK,
864                 OPT_NO_PROCESS_GROUP,
865                 OPT_LOG_STDOUT
866         };
867         struct poptOption long_options[] = {
868         POPT_AUTOHELP
869         {"daemon", 'D', POPT_ARG_NONE, NULL, OPT_DAEMON, "Become a daemon (default)" },
870         {"interactive", 'i', POPT_ARG_NONE, NULL, OPT_INTERACTIVE, "Run interactive (not a daemon)"},
871         {"foreground", 'F', POPT_ARG_NONE, NULL, OPT_FORK, "Run daemon in foreground (for daemontools, etc.)" },
872         {"no-process-group", '\0', POPT_ARG_NONE, NULL, OPT_NO_PROCESS_GROUP, "Don't create a new process group" },
873         {"log-stdout", 'S', POPT_ARG_NONE, NULL, OPT_LOG_STDOUT, "Log to stdout" },
874         {"build-options", 'b', POPT_ARG_NONE, NULL, 'b', "Print build options" },
875         {"port", 'p', POPT_ARG_STRING, &ports, 0, "Listen on the specified ports"},
876         {"profiling-level", 'P', POPT_ARG_STRING, &profile_level, 0, "Set profiling level","PROFILE_LEVEL"},
877         POPT_COMMON_SAMBA
878         POPT_COMMON_DYNCONFIG
879         POPT_TABLEEND
880         };
881         struct smbd_parent_context *parent = NULL;
882         TALLOC_CTX *frame;
883         NTSTATUS status;
884         uint64_t unique_id;
885         struct tevent_context *ev_ctx;
886         struct messaging_context *msg_ctx;
887
888         /*
889          * Do this before any other talloc operation
890          */
891         talloc_enable_null_tracking();
892         frame = talloc_stackframe();
893
894         setup_logging(argv[0], DEBUG_DEFAULT_STDOUT);
895
896         load_case_tables();
897
898         smbd_init_globals();
899
900         TimeInit();
901
902 #ifdef HAVE_SET_AUTH_PARAMETERS
903         set_auth_parameters(argc,argv);
904 #endif
905
906         pc = poptGetContext("smbd", argc, argv, long_options, 0);
907         while((opt = poptGetNextOpt(pc)) != -1) {
908                 switch (opt)  {
909                 case OPT_DAEMON:
910                         is_daemon = true;
911                         break;
912                 case OPT_INTERACTIVE:
913                         interactive = true;
914                         break;
915                 case OPT_FORK:
916                         Fork = false;
917                         break;
918                 case OPT_NO_PROCESS_GROUP:
919                         no_process_group = true;
920                         break;
921                 case OPT_LOG_STDOUT:
922                         log_stdout = true;
923                         break;
924                 case 'b':
925                         print_build_options = True;
926                         break;
927                 default:
928                         d_fprintf(stderr, "\nInvalid option %s: %s\n\n",
929                                   poptBadOption(pc, 0), poptStrerror(opt));
930                         poptPrintUsage(pc, stderr, 0);
931                         exit(1);
932                 }
933         }
934         poptFreeContext(pc);
935
936         if (interactive) {
937                 Fork = False;
938                 log_stdout = True;
939         }
940
941         if (log_stdout) {
942                 setup_logging(argv[0], DEBUG_STDOUT);
943         } else {
944                 setup_logging(argv[0], DEBUG_FILE);
945         }
946
947         if (print_build_options) {
948                 build_options(True); /* Display output to screen as well as debug */
949                 exit(0);
950         }
951
952 #ifdef HAVE_SETLUID
953         /* needed for SecureWare on SCO */
954         setluid(0);
955 #endif
956
957         set_remote_machine_name("smbd", False);
958
959         if (interactive && (DEBUGLEVEL >= 9)) {
960                 talloc_enable_leak_report();
961         }
962
963         if (log_stdout && Fork) {
964                 DEBUG(0,("ERROR: Can't log to stdout (-S) unless daemon is in foreground (-F) or interactive (-i)\n"));
965                 exit(1);
966         }
967
968         /* we want to re-seed early to prevent time delays causing
969            client problems at a later date. (tridge) */
970         generate_random_buffer(NULL, 0);
971
972         /* get initial effective uid and gid */
973         sec_init();
974
975         /* make absolutely sure we run as root - to handle cases where people
976            are crazy enough to have it setuid */
977         gain_root_privilege();
978         gain_root_group_privilege();
979
980         fault_setup();
981         dump_core_setup("smbd", lp_logfile());
982
983         /* we are never interested in SIGPIPE */
984         BlockSignals(True,SIGPIPE);
985
986 #if defined(SIGFPE)
987         /* we are never interested in SIGFPE */
988         BlockSignals(True,SIGFPE);
989 #endif
990
991 #if defined(SIGUSR2)
992         /* We are no longer interested in USR2 */
993         BlockSignals(True,SIGUSR2);
994 #endif
995
996         /* POSIX demands that signals are inherited. If the invoking process has
997          * these signals masked, we will have problems, as we won't recieve them. */
998         BlockSignals(False, SIGHUP);
999         BlockSignals(False, SIGUSR1);
1000         BlockSignals(False, SIGTERM);
1001
1002         /* Ensure we leave no zombies until we
1003          * correctly set up child handling below. */
1004
1005         CatchChild();
1006
1007         /* we want total control over the permissions on created files,
1008            so set our umask to 0 */
1009         umask(0);
1010
1011         reopen_logs();
1012
1013         DEBUG(0,("smbd version %s started.\n", samba_version_string()));
1014         DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE));
1015
1016         DEBUG(2,("uid=%d gid=%d euid=%d egid=%d\n",
1017                  (int)getuid(),(int)getgid(),(int)geteuid(),(int)getegid()));
1018
1019         /* Output the build options to the debug log */ 
1020         build_options(False);
1021
1022         if (sizeof(uint16) < 2 || sizeof(uint32) < 4) {
1023                 DEBUG(0,("ERROR: Samba is not configured correctly for the word size on your machine\n"));
1024                 exit(1);
1025         }
1026
1027         if (!lp_load_initial_only(get_dyn_CONFIGFILE())) {
1028                 DEBUG(0, ("error opening config file '%s'\n", get_dyn_CONFIGFILE()));
1029                 exit(1);
1030         }
1031
1032         /* Init the security context and global current_user */
1033         init_sec_ctx();
1034
1035         /*
1036          * Initialize the event context. The event context needs to be
1037          * initialized before the messaging context, cause the messaging
1038          * context holds an event context.
1039          * FIXME: This should be s3_tevent_context_init()
1040          */
1041         ev_ctx = server_event_context();
1042         if (ev_ctx == NULL) {
1043                 exit(1);
1044         }
1045
1046         /*
1047          * Init the messaging context
1048          * FIXME: This should only call messaging_init()
1049          */
1050         msg_ctx = server_messaging_context();
1051         if (msg_ctx == NULL) {
1052                 exit(1);
1053         }
1054
1055         /*
1056          * Reloading of the printers will not work here as we don't have a
1057          * server info and rpc services set up. It will be called later.
1058          */
1059         if (!reload_services(NULL, -1, False)) {
1060                 exit(1);
1061         }
1062
1063         /* ...NOTE... Log files are working from this point! */
1064
1065         DEBUG(3,("loaded services\n"));
1066
1067         init_structs();
1068
1069 #ifdef WITH_PROFILE
1070         if (!profile_setup(msg_ctx, False)) {
1071                 DEBUG(0,("ERROR: failed to setup profiling\n"));
1072                 return -1;
1073         }
1074         if (profile_level != NULL) {
1075                 int pl = atoi(profile_level);
1076                 struct server_id src;
1077
1078                 DEBUG(1, ("setting profiling level: %s\n",profile_level));
1079                 src.pid = getpid();
1080                 set_profile_level(pl, src);
1081         }
1082 #endif
1083
1084         if (!is_daemon && !is_a_socket(0)) {
1085                 if (!interactive)
1086                         DEBUG(0,("standard input is not a socket, assuming -D option\n"));
1087
1088                 /*
1089                  * Setting is_daemon here prevents us from eventually calling
1090                  * the open_sockets_inetd()
1091                  */
1092
1093                 is_daemon = True;
1094         }
1095
1096         if (is_daemon && !interactive) {
1097                 DEBUG( 3, ( "Becoming a daemon.\n" ) );
1098                 become_daemon(Fork, no_process_group, log_stdout);
1099         }
1100
1101         generate_random_buffer((uint8_t *)&unique_id, sizeof(unique_id));
1102         set_my_unique_id(unique_id);
1103
1104 #if HAVE_SETPGID
1105         /*
1106          * If we're interactive we want to set our own process group for
1107          * signal management.
1108          */
1109         if (interactive && !no_process_group)
1110                 setpgid( (pid_t)0, (pid_t)0);
1111 #endif
1112
1113         if (!directory_exist(lp_lockdir()))
1114                 mkdir(lp_lockdir(), 0755);
1115
1116         if (is_daemon)
1117                 pidfile_create("smbd");
1118
1119         status = reinit_after_fork(msg_ctx,
1120                                    ev_ctx,
1121                                    false);
1122         if (!NT_STATUS_IS_OK(status)) {
1123                 DEBUG(0,("reinit_after_fork() failed\n"));
1124                 exit(1);
1125         }
1126
1127         smbd_server_conn->msg_ctx = msg_ctx;
1128
1129         parent = talloc_zero(ev_ctx, struct smbd_parent_context);
1130         if (!parent) {
1131                 exit_server("talloc(struct smbd_parent_context) failed");
1132         }
1133         parent->interactive = interactive;
1134         parent->ev_ctx = ev_ctx;
1135         parent->msg_ctx = msg_ctx;
1136
1137         smbd_setup_sig_term_handler();
1138         smbd_setup_sig_hup_handler(ev_ctx,
1139                                    msg_ctx);
1140
1141         /* Setup all the TDB's - including CLEAR_IF_FIRST tdb's. */
1142
1143         if (smbd_memcache() == NULL) {
1144                 exit(1);
1145         }
1146
1147         memcache_set_global(smbd_memcache());
1148
1149         /* Initialise the password backed before the global_sam_sid
1150            to ensure that we fetch from ldap before we make a domain sid up */
1151
1152         if(!initialize_password_db(false, ev_ctx))
1153                 exit(1);
1154
1155         if (!secrets_init()) {
1156                 DEBUG(0, ("ERROR: smbd can not open secrets.tdb\n"));
1157                 exit(1);
1158         }
1159
1160         if (lp_server_role() == ROLE_DOMAIN_BDC || lp_server_role() == ROLE_DOMAIN_PDC) {
1161                 struct loadparm_context *lp_ctx = loadparm_init_s3(NULL, loadparm_s3_context());
1162                 if (!open_schannel_session_store(NULL, lp_ctx)) {
1163                         DEBUG(0,("ERROR: Samba cannot open schannel store for secured NETLOGON operations.\n"));
1164                         exit(1);
1165                 }
1166                 TALLOC_FREE(lp_ctx);
1167         }
1168
1169         if(!get_global_sam_sid()) {
1170                 DEBUG(0,("ERROR: Samba cannot create a SAM SID.\n"));
1171                 exit(1);
1172         }
1173
1174         if (!sessionid_init()) {
1175                 exit(1);
1176         }
1177
1178         if (!connections_init(True))
1179                 exit(1);
1180
1181         if (!locking_init())
1182                 exit(1);
1183
1184         if (!messaging_tdb_parent_init(ev_ctx)) {
1185                 exit(1);
1186         }
1187
1188         if (!notify_internal_parent_init(ev_ctx)) {
1189                 exit(1);
1190         }
1191
1192         if (!serverid_parent_init(ev_ctx)) {
1193                 exit(1);
1194         }
1195
1196         if (!W_ERROR_IS_OK(registry_init_full()))
1197                 exit(1);
1198
1199         /* Open the share_info.tdb here, so we don't have to open
1200            after the fork on every single connection.  This is a small
1201            performance improvment and reduces the total number of system
1202            fds used. */
1203         if (!share_info_db_init()) {
1204                 DEBUG(0,("ERROR: failed to load share info db.\n"));
1205                 exit(1);
1206         }
1207
1208         status = init_system_info();
1209         if (!NT_STATUS_IS_OK(status)) {
1210                 DEBUG(1, ("ERROR: failed to setup system user info: %s.\n",
1211                           nt_errstr(status)));
1212                 return -1;
1213         }
1214
1215         if (!init_guest_info()) {
1216                 DEBUG(0,("ERROR: failed to setup guest info.\n"));
1217                 return -1;
1218         }
1219
1220         if (!file_init(smbd_server_conn)) {
1221                 DEBUG(0, ("ERROR: file_init failed\n"));
1222                 return -1;
1223         }
1224
1225         /* This MUST be done before start_epmd() because otherwise
1226          * start_epmd() forks and races against dcesrv_ep_setup() to
1227          * call directory_create_or_exist() */
1228         if (!directory_create_or_exist(lp_ncalrpc_dir(), geteuid(), 0755)) {
1229                 DEBUG(0, ("Failed to create pipe directory %s - %s\n",
1230                           lp_ncalrpc_dir(), strerror(errno)));
1231                 return -1;
1232         }
1233
1234         if (is_daemon && !interactive) {
1235                 if (rpc_epmapper_daemon() == RPC_DAEMON_FORK) {
1236                         start_epmd(ev_ctx, msg_ctx);
1237                 }
1238         }
1239
1240         if (!dcesrv_ep_setup(ev_ctx, msg_ctx)) {
1241                 exit(1);
1242         }
1243
1244         /* only start other daemons if we are running as a daemon
1245          * -- bad things will happen if smbd is launched via inetd
1246          *  and we fork a copy of ourselves here */
1247         if (is_daemon && !interactive) {
1248
1249                 if (rpc_lsasd_daemon() == RPC_DAEMON_FORK) {
1250                         start_lsasd(ev_ctx, msg_ctx);
1251                 }
1252
1253                 if (!_lp_disable_spoolss() &&
1254                     (rpc_spoolss_daemon() != RPC_DAEMON_DISABLED)) {
1255                         bool bgq = lp_parm_bool(-1, "smbd", "backgroundqueue", true);
1256
1257                         if (!printing_subsystem_init(ev_ctx, msg_ctx, true, bgq)) {
1258                                 exit(1);
1259                         }
1260                 }
1261         } else if (!_lp_disable_spoolss() &&
1262                    (rpc_spoolss_daemon() != RPC_DAEMON_DISABLED)) {
1263                 if (!printing_subsystem_init(ev_ctx, msg_ctx, false, false)) {
1264                         exit(1);
1265                 }
1266         }
1267
1268         if (!is_daemon) {
1269                 /* inetd mode */
1270                 TALLOC_FREE(frame);
1271
1272                 /* Started from inetd. fd 0 is the socket. */
1273                 /* We will abort gracefully when the client or remote system
1274                    goes away */
1275                 smbd_server_conn->sock = dup(0);
1276
1277                 /* close our standard file descriptors */
1278                 if (!debug_get_output_is_stdout()) {
1279                         close_low_fds(False); /* Don't close stderr */
1280                 }
1281
1282 #ifdef HAVE_ATEXIT
1283                 atexit(killkids);
1284 #endif
1285
1286                 /* Stop zombies */
1287                 smbd_setup_sig_chld_handler(ev_ctx);
1288
1289                 smbd_process(ev_ctx, smbd_server_conn);
1290
1291                 exit_server_cleanly(NULL);
1292                 return(0);
1293         }
1294
1295         if (!open_sockets_smbd(parent, ev_ctx, msg_ctx, ports))
1296                 exit_server("open_sockets_smbd() failed");
1297
1298         /* do a printer update now that all messaging has been set up,
1299          * before we allow clients to start connecting */
1300         printing_subsystem_update(ev_ctx, msg_ctx, false);
1301
1302         TALLOC_FREE(frame);
1303         /* make sure we always have a valid stackframe */
1304         frame = talloc_stackframe();
1305
1306         smbd_parent_loop(ev_ctx, parent);
1307
1308         exit_server_cleanly(NULL);
1309         TALLOC_FREE(frame);
1310         return(0);
1311 }