Removed global_myworkgroup, global_myname, global_myscope. Added liberal
[ira/wip.git] / source3 / wrepld / server.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Main SMB server routines
4    Copyright (C) Jean François Micouleau      1998-2002.
5    
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 #include "includes.h"
22 #include "wins_repl.h"
23
24 extern pstring user_socket_options;
25
26 extern WINS_OWNER *global_wins_table;
27 extern int partner_count;
28
29 extern fd_set *listen_set;
30 extern int listen_number;
31 extern int *sock_array;
32
33 extern TALLOC_CTX *mem_ctx;
34
35 int wins_port = 42;
36
37 /****************************************************************************
38   when exiting, take the whole family
39 ****************************************************************************/
40 static void *dflt_sig(void)
41 {
42         exit_server("caught signal");
43         return NULL;
44 }
45
46 /****************************************************************************
47   reload the services file
48   **************************************************************************/
49 BOOL reload_services(BOOL test)
50 {
51         BOOL ret;
52         
53         if (lp_loaded()) {
54                 pstring fname;
55                 pstrcpy(fname,lp_configfile());
56                 if (file_exist(fname,NULL) && !strcsequal(fname,dyn_CONFIGFILE)) {
57                         pstrcpy(dyn_CONFIGFILE,fname);
58                         test = False;
59                 }
60         }
61
62         reopen_logs();
63
64         if (test && !lp_file_list_changed())
65                 return(True);
66
67         ret = lp_load(dyn_CONFIGFILE,False,False,True);
68
69
70         /* perhaps the config filename is now set */
71         if (!test)
72                 reload_services(True);
73
74         reopen_logs();
75
76         load_interfaces();
77
78         return(ret);
79 }
80
81 /****************************************************************************
82  Catch a sighup.
83 ****************************************************************************/
84
85 VOLATILE sig_atomic_t reload_after_sighup = False;
86
87 static void sig_hup(int sig)
88 {
89         BlockSignals(True,SIGHUP);
90         DEBUG(0,("Got SIGHUP\n"));
91
92         sys_select_signal();
93         reload_after_sighup = True;
94         BlockSignals(False,SIGHUP);
95 }
96
97 #if DUMP_CORE
98 /*******************************************************************
99 prepare to dump a core file - carefully!
100 ********************************************************************/
101 static BOOL dump_core(void)
102 {
103         char *p;
104         pstring dname;
105         pstrcpy(dname,lp_logfile());
106         if ((p=strrchr_m(dname,'/'))) *p=0;
107         pstrcat(dname,"/corefiles");
108         mkdir(dname,0700);
109         sys_chown(dname,getuid(),getgid());
110         chmod(dname,0700);
111         if (chdir(dname)) return(False);
112         umask(~(0700));
113
114 #ifdef HAVE_GETRLIMIT
115 #ifdef RLIMIT_CORE
116         {
117                 struct rlimit rlp;
118                 getrlimit(RLIMIT_CORE, &rlp);
119                 rlp.rlim_cur = MAX(4*1024*1024,rlp.rlim_cur);
120                 setrlimit(RLIMIT_CORE, &rlp);
121                 getrlimit(RLIMIT_CORE, &rlp);
122                 DEBUG(3,("Core limits now %d %d\n",
123                          (int)rlp.rlim_cur,(int)rlp.rlim_max));
124         }
125 #endif
126 #endif
127
128
129         DEBUG(0,("Dumping core in %s\n",dname));
130         abort();
131         return(True);
132 }
133 #endif
134
135 /****************************************************************************
136 exit the server
137 ****************************************************************************/
138 void exit_server(char *reason)
139 {
140         static int firsttime=1;
141
142         if (!firsttime)
143                 exit(0);
144         firsttime = 0;
145
146         DEBUG(2,("Closing connections\n"));
147
148         if (!reason) {   
149                 int oldlevel = DEBUGLEVEL;
150                 DEBUGLEVEL = 10;
151                 DEBUGLEVEL = oldlevel;
152                 DEBUG(0,("===============================================================\n"));
153 #if DUMP_CORE
154                 if (dump_core()) return;
155 #endif
156         }
157
158         DEBUG(3,("Server exit (%s)\n", (reason ? reason : "")));
159         exit(0);
160 }
161
162 /****************************************************************************
163  Usage of the program.
164 ****************************************************************************/
165
166 static void usage(char *pname)
167 {
168
169         d_printf("Usage: %s [-DaioPh?V] [-d debuglevel] [-l log basename] [-p port]\n", pname);
170         d_printf("       [-O socket options] [-s services file]\n");
171         d_printf("\t-D                    Become a daemon (default)\n");
172         d_printf("\t-a                    Append to log file (default)\n");
173         d_printf("\t-i                    Run interactive (not a daemon)\n" );
174         d_printf("\t-o                    Overwrite log file, don't append\n");
175         d_printf("\t-h                    Print usage\n");
176         d_printf("\t-?                    Print usage\n");
177         d_printf("\t-V                    Print version\n");
178         d_printf("\t-d debuglevel         Set the debuglevel\n");
179         d_printf("\t-l log basename.      Basename for log/debug files\n");
180         d_printf("\t-p port               Listen on the specified port\n");
181         d_printf("\t-O socket options     Socket options\n");
182         d_printf("\t-s services file.     Filename of services file\n");
183         d_printf("\n");
184 }
185
186 /****************************************************************************
187   Create an fd_set containing all the sockets in the subnet structures,
188   plus the broadcast sockets.
189 ***************************************************************************/
190
191 static BOOL create_listen_fdset(void)
192 {
193         int i;
194         int num_interfaces = iface_count();
195         int s;
196
197         listen_set = (fd_set *)malloc(sizeof(fd_set));
198         if(listen_set == NULL) {
199                 DEBUG(0,("create_listen_fdset: malloc fail !\n"));
200                 return True;
201         }
202
203 #ifdef HAVE_ATEXIT
204         {
205                 static int atexit_set;
206                 if(atexit_set == 0) {
207                         atexit_set=1;
208                 }
209         }
210 #endif
211
212         FD_ZERO(listen_set);
213
214         if(lp_interfaces() && lp_bind_interfaces_only()) {
215                 /* We have been given an interfaces line, and been 
216                    told to only bind to those interfaces. Create a
217                    socket per interface and bind to only these.
218                 */
219                 
220                 if(num_interfaces > FD_SETSIZE) {
221                         DEBUG(0,("create_listen_fdset: Too many interfaces specified to bind to. Number was %d max can be %d\n", num_interfaces, FD_SETSIZE));
222                         return False;
223                 }
224
225                 /* Now open a listen socket for each of the interfaces. */
226                 for(i = 0; i < num_interfaces; i++) {
227                         struct in_addr *ifip = iface_n_ip(i);
228                         
229                         if(ifip == NULL) {
230                                 DEBUG(0,("create_listen_fdset: interface %d has NULL IP address !\n", i));
231                                 continue;
232                         }
233                         s = open_socket_in(SOCK_STREAM, wins_port, 0, ifip->s_addr, True);
234                         if(s == -1)
235                                 return False;
236
237                         /* ready to listen */
238                         set_socket_options(s,"SO_KEEPALIVE"); 
239                         set_socket_options(s,user_socket_options);
240       
241                         if (listen(s, 5) == -1) {
242                                 DEBUG(5,("listen: %s\n",strerror(errno)));
243                                 close(s);
244                                 return False;
245                         }
246                         add_fd_to_sock_array(s);
247                         FD_SET(s, listen_set);
248                 }
249         } else {
250                 /* Just bind to 0.0.0.0 - accept connections from anywhere. */
251                 num_interfaces = 1;
252                 
253                 /* open an incoming socket */
254                 s = open_socket_in(SOCK_STREAM, wins_port, 0, interpret_addr(lp_socket_address()),True);
255                 if (s == -1)
256                         return(False);
257                 
258                 /* ready to listen */
259                 set_socket_options(s,"SO_KEEPALIVE"); 
260                 set_socket_options(s,user_socket_options);
261
262                 if (listen(s, 5) == -1) {
263                         DEBUG(0,("create_listen_fdset: listen: %s\n", strerror(errno)));
264                         close(s);
265                         return False;
266                 }
267                 
268                 add_fd_to_sock_array(s);
269                 FD_SET(s, listen_set);
270         } 
271
272         return True;
273 }
274
275 /*******************************************************************
276   read a packet from a socket and parse it, returning a packet ready
277   to be used or put on the queue. This assumes a UDP socket
278   ******************************************************************/
279 static struct wins_packet_struct *read_wins_packet(int fd, int timeout)
280 {
281         struct wins_packet_struct *p;
282         GENERIC_PACKET *q;
283         struct BUFFER inbuf;
284         ssize_t len=0;
285         size_t total=0;  
286         ssize_t ret;
287         BOOL ok = False;
288
289         inbuf.buffer=NULL;
290         inbuf.length=0;
291         inbuf.offset=0;
292
293         if(!grow_buffer(&inbuf, 4))
294                 return NULL;
295
296         ok = (read(fd, inbuf.buffer,4) == 4);
297         if (!ok)
298                 return NULL;
299         len = smb_len(inbuf.buffer);
300
301         if (len<=0)
302                 return NULL;
303
304         if(!grow_buffer(&inbuf, len))
305                 return NULL;
306                 
307         while (total < len) {
308                 ret = read(fd, inbuf.buffer + total + 4, len - total);
309                 if (ret == 0) {
310                         DEBUG(10,("read_socket_data: recv of %d returned 0. Error = %s\n", (int)(len - total), strerror(errno) ));
311                         return NULL;
312                 }
313                 if (ret == -1) {
314                         DEBUG(0,("read_socket_data: recv failure for %d. Error = %s\n", (int)(len - total), strerror(errno) ));
315                         return NULL;
316                 }
317                 total += ret;
318         }
319
320         q = (GENERIC_PACKET *)talloc(mem_ctx, sizeof(GENERIC_PACKET));
321         p = (struct wins_packet_struct *)talloc(mem_ctx, sizeof(*p));
322         if (q==NULL || p==NULL)
323                 return NULL;
324
325         decode_generic_packet(&inbuf, q);
326
327         q->fd=fd;
328         
329         p->next = NULL;
330         p->prev = NULL;
331         p->stop_packet = False;
332         p->timestamp = time(NULL);
333         p->fd = fd;
334         p->packet=q;
335         
336         return p;
337 }
338
339 static struct wins_packet_struct *packet_queue = NULL;
340
341 /*******************************************************************
342   Queue a packet into a packet queue
343 ******************************************************************/
344 static void queue_packet(struct wins_packet_struct *packet)
345 {
346         struct wins_packet_struct *p;
347
348         if (!packet_queue) {
349                 packet->prev = NULL;
350                 packet->next = NULL;
351                 packet_queue = packet;
352                 return;
353         }
354   
355         /* find the bottom */
356         for (p=packet_queue;p->next;p=p->next) 
357                 ;
358
359         p->next = packet;
360         packet->next = NULL;
361         packet->prev = p;
362 }
363
364 /****************************************************************************
365   Listens for NMB or DGRAM packets, and queues them.
366   return True if the socket is dead
367 ***************************************************************************/
368 static BOOL listen_for_wins_packets(void)
369 {
370         int num_interfaces = iface_count();
371         fd_set fds;
372         int i, num, s, new_s;
373         struct timeval timeout;
374
375         if(listen_set == NULL) {
376                 if(!create_listen_fdset()) {
377                         DEBUG(0,("listen_for_packets: Fatal error. unable to create listen set. Exiting.\n"));
378                         return True;
379                 }
380         }
381
382         memcpy((char *)&fds, (char *)listen_set, sizeof(fd_set));
383
384         timeout.tv_sec = NMBD_SELECT_LOOP;
385         timeout.tv_usec = 0;
386
387         /* Prepare for the select - allow certain signals. */
388
389         BlockSignals(False, SIGTERM);
390
391         num = sys_select(FD_SETSIZE, &fds, NULL, NULL, &timeout);
392
393         /* We can only take signals when we are in the select - block them again here. */
394
395         BlockSignals(True, SIGTERM);
396
397         if(num == -1)
398                 return False;
399
400         for (; num > 0; num--) {
401                 s = -1;
402                 /* check the sockets we are only listening on, waiting to accept */             
403                 for (i=0; i<num_interfaces; i++) {
404                         struct sockaddr addr;
405                         socklen_t in_addrlen = sizeof(addr);
406                 
407                         if(FD_ISSET(sock_array[i], &fds)) {
408                                 s = sock_array[i];
409                                 /* Clear this so we don't look at it again. */
410                                 FD_CLR(sock_array[i], &fds);
411
412                                 /* accept and add the new socket to the listen set */
413                                 new_s=accept(s, &addr, &in_addrlen);
414
415                                 if (new_s < 0)
416                                         continue;
417         
418                                 DEBUG(5,("listen_for_wins_packets: new connection, old: %d, new : %d\n", s, new_s));
419                                 
420                                 set_socket_options(new_s, "SO_KEEPALIVE");
421                                 set_socket_options(new_s, user_socket_options);
422                                 FD_SET(new_s, listen_set);
423                                 add_fd_to_sock_array(new_s);
424                         }
425                 }
426
427                 /*
428                  * check for the sockets we are waiting data from
429                  * either client sending datas
430                  * or reply to our requests
431                  */
432                 for (i=num_interfaces; i<listen_number; i++) {
433                         if(FD_ISSET(sock_array[i], &fds)) {
434                                 struct wins_packet_struct *packet = read_wins_packet(sock_array[i], timeout.tv_sec);
435                                 if (packet) {
436                                         packet->fd = sock_array[i];
437                                         queue_packet(packet);
438                                 }
439                                 DEBUG(2,("listen_for_wins_packets: some data on fd %d\n", sock_array[i]));
440                                 FD_CLR(sock_array[i], &fds);
441                                 break;
442                         }
443         
444                 }
445
446         }
447
448         return False;
449 }
450
451
452 /*******************************************************************
453   Run elements off the packet queue till its empty
454 ******************************************************************/
455
456 static void run_wins_packet_queue(void)
457 {
458         struct wins_packet_struct *p;
459
460         while ((p = packet_queue)) {
461                 packet_queue = p->next;
462                 if (packet_queue)
463                         packet_queue->prev = NULL;
464                 p->next = p->prev = NULL;
465
466                 construct_reply(p);
467
468                 /* if it was a stop assoc, close the connection */
469                 if (p->stop_packet) {
470                         FD_CLR(p->fd, listen_set);
471                         remove_fd_from_sock_array(p->fd);
472                         close(p->fd);
473                 }
474         }
475
476
477 /**************************************************************************** **
478  The main select loop.
479  **************************************************************************** */
480 static void process(void)
481 {
482
483         while( True ) {
484                 time_t t = time(NULL);
485
486                 /* check for internal messages */
487                 message_dispatch();
488
489                 if(listen_for_wins_packets())
490                         return;
491
492                 run_wins_packet_queue();
493
494                 run_pull_replication(t);
495                 
496                 run_push_replication(t);
497                 
498                 /*
499                  * Reload the services file if we got a sighup.
500                  */
501
502                 if(reload_after_sighup) {
503                         reload_services( True );
504                         reopen_logs();
505                         reload_after_sighup = False;
506                 }
507
508                 /* free temp memory */
509                 talloc_destroy_pool(mem_ctx);
510
511                 /* free up temp memory */
512                 lp_talloc_free();
513         }
514 } /* process */
515
516 /****************************************************************************
517   main program
518 ****************************************************************************/
519  int main(int argc,char *argv[])
520 {
521         extern char *optarg;
522         /* shall I run as a daemon */
523         BOOL is_daemon = False;
524         BOOL interactive = False;
525         BOOL specified_logfile = False;
526         int opt;
527         pstring logfile;
528
529 #ifdef HAVE_SET_AUTH_PARAMETERS
530         set_auth_parameters(argc,argv);
531 #endif
532
533         /* this is for people who can't start the program correctly */
534         while (argc > 1 && (*argv[1] != '-')) {
535                 argv++;
536                 argc--;
537         }
538
539         while ( EOF != (opt = getopt(argc, argv, "O:l:s:d:Dp:h?Vaiof:")) )
540                 switch (opt)  {
541                 case 'O':
542                         pstrcpy(user_socket_options,optarg);
543                         break;
544
545                 case 's':
546                         pstrcpy(dyn_CONFIGFILE,optarg);
547                         break;
548
549                 case 'l':
550                         specified_logfile = True;
551                         slprintf(logfile, sizeof(logfile)-1, "%s/log.wrepld", optarg);
552                         lp_set_logfile(logfile);
553                         break;
554
555                 case 'i':
556                         interactive = True;
557                         break;
558
559                 case 'D':
560                         is_daemon = True;
561                         break;
562
563                 case 'd':
564                         if (*optarg == 'A')
565                                 DEBUGLEVEL = 10000;
566                         else
567                                 DEBUGLEVEL = atoi(optarg);
568                         break;
569
570                 case 'p':
571                         wins_port = atoi(optarg);
572                         break;
573
574                 case 'h':
575                 case '?':
576                         usage(argv[0]);
577                         exit(0);
578                         break;
579
580                 case 'V':
581                         d_printf("Version %s\n",VERSION);
582                         exit(0);
583                         break;
584                 default:
585                         DEBUG(0,("Incorrect program usage - are you sure the command line is correct?\n"));
586                         usage(argv[0]);
587                         exit(1);
588                 }
589
590 #ifdef HAVE_SETLUID
591         /* needed for SecureWare on SCO */
592         setluid(0);
593 #endif
594
595         sec_init();
596
597         load_case_tables();
598
599         if(!specified_logfile) {
600                 slprintf(logfile, sizeof(logfile)-1, "%s/log.wrepld",
601                          dyn_LOGFILEBASE);
602                 lp_set_logfile(logfile);
603         }
604
605         set_remote_machine_name("wrepld");
606
607         setup_logging(argv[0],interactive);
608
609         /* we want to re-seed early to prevent time delays causing
610            client problems at a later date. (tridge) */
611         generate_random_buffer(NULL, 0, False);
612
613         /* make absolutely sure we run as root - to handle cases where people
614            are crazy enough to have it setuid */
615
616         gain_root_privilege();
617         gain_root_group_privilege();
618
619         fault_setup((void (*)(void *))exit_server);
620         CatchSignal(SIGTERM , SIGNAL_CAST dflt_sig);
621
622         /* we are never interested in SIGPIPE */
623         BlockSignals(True,SIGPIPE);
624
625 #if defined(SIGFPE)
626         /* we are never interested in SIGFPE */
627         BlockSignals(True,SIGFPE);
628 #endif
629
630 #if defined(SIGUSR2)
631         /* We are no longer interested in USR2 */
632         BlockSignals(True,SIGUSR2);
633 #endif
634
635         /* POSIX demands that signals are inherited. If the invoking process has
636          * these signals masked, we will have problems, as we won't recieve them. */
637         BlockSignals(False, SIGHUP);
638         BlockSignals(False, SIGUSR1);
639
640         /* we want total control over the permissions on created files,
641            so set our umask to 0 */
642         umask(0);
643
644         reopen_logs();
645
646         DEBUG(1,( "wrepld version %s started.\n", VERSION));
647         DEBUGADD(1,( "Copyright Andrew Tridgell and the Samba Team 1992-2002\n"));
648
649         DEBUG(2,("uid=%d gid=%d euid=%d egid=%d\n",
650                  (int)getuid(),(int)getgid(),(int)geteuid(),(int)getegid()));
651
652         if (sizeof(uint16) < 2 || sizeof(uint32) < 4) {
653                 DEBUG(0,("ERROR: Samba is not configured correctly for the word size on your machine\n"));
654                 exit(1);
655         }
656
657         /*
658          * Do this before reload_services.
659          */
660
661         if (!reload_services(False))
662                 return(-1);     
663
664         if (!init_names())
665                 return -1;
666         
667 #ifdef WITH_PROFILE
668         if (!profile_setup(False)) {
669                 DEBUG(0,("ERROR: failed to setup profiling\n"));
670                 return -1;
671         }
672 #endif
673
674         CatchSignal(SIGHUP,SIGNAL_CAST sig_hup);
675         
676         DEBUG(3,( "loaded services\n"));
677
678         if (!is_daemon && !is_a_socket(0)) {
679                 DEBUG(0,("standard input is not a socket, assuming -D option\n"));
680                 is_daemon = True;
681         }
682
683         if (is_daemon && !interactive) {
684                 DEBUG( 3, ( "Becoming a daemon.\n" ) );
685                 become_daemon();
686         }
687
688 #if HAVE_SETPGID
689         /*
690          * If we're interactive we want to set our own process group for
691          * signal management.
692          */
693         if (interactive)
694                 setpgid( (pid_t)0, (pid_t)0);
695 #endif
696
697         if (!directory_exist(lp_lockdir(), NULL)) {
698                 mkdir(lp_lockdir(), 0755);
699         }
700
701         if (is_daemon) {
702                 pidfile_create("wrepld");
703         }
704
705         if (!message_init()) {
706                 exit(1);
707         }
708
709         /* Initialise the memory context */
710         mem_ctx=talloc_init_named("wins repl talloc ctx");
711
712         /* initialise the global partners table */
713         partner_count=init_wins_partner_table();
714
715         /* We can only take signals in the select. */
716         BlockSignals( True, SIGTERM );
717
718         process();
719
720         exit_server("normal exit");
721         return(0);
722 }