r9588: remove netsamlogon_cache interface...everything seems to work fine. Will...
[bbaumbach/samba-autobuild/.git] / source3 / nsswitch / winbindd.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    Winbind daemon for ntdom nss module
5
6    Copyright (C) by Tim Potter 2000-2002
7    Copyright (C) Andrew Tridgell 2002
8    Copyright (C) Jelmer Vernooij 2003
9    Copyright (C) Volker Lendecke 2004
10    
11    This program is free software; you can redistribute it and/or modify
12    it under the terms of the GNU General Public License as published by
13    the Free Software Foundation; either version 2 of the License, or
14    (at your option) any later version.
15    
16    This program is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19    GNU General Public License for more details.
20    
21    You should have received a copy of the GNU General Public License
22    along with this program; if not, write to the Free Software
23    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 */
25
26 #include "includes.h"
27 #include "winbindd.h"
28
29 BOOL opt_nocache = False;
30 static BOOL interactive = False;
31
32 extern BOOL override_logfile;
33
34 /* Reload configuration */
35
36 static BOOL reload_services_file(void)
37 {
38         BOOL ret;
39
40         if (lp_loaded()) {
41                 pstring fname;
42
43                 pstrcpy(fname,lp_configfile());
44                 if (file_exist(fname,NULL) && !strcsequal(fname,dyn_CONFIGFILE)) {
45                         pstrcpy(dyn_CONFIGFILE,fname);
46                 }
47         }
48
49         reopen_logs();
50         ret = lp_load(dyn_CONFIGFILE,False,False,True);
51
52         reopen_logs();
53         load_interfaces();
54
55         return(ret);
56 }
57
58
59 #if DUMP_CORE
60
61 /**************************************************************************** **
62  Prepare to dump a core file - carefully!
63  **************************************************************************** */
64
65 static BOOL dump_core(void)
66 {
67         char *p;
68         pstring dname;
69         pstrcpy( dname, lp_logfile() );
70         if ((p=strrchr(dname,'/')))
71                 *p=0;
72         pstrcat( dname, "/corefiles" );
73         mkdir( dname, 0700 );
74         sys_chown( dname, getuid(), getgid() );
75         chmod( dname, 0700 );
76         if ( chdir(dname) )
77                 return( False );
78         umask( ~(0700) );
79  
80 #ifdef HAVE_GETRLIMIT
81 #ifdef RLIMIT_CORE
82         {
83                 struct rlimit rlp;
84                 getrlimit( RLIMIT_CORE, &rlp );
85                 rlp.rlim_cur = MAX( 4*1024*1024, rlp.rlim_cur );
86                 setrlimit( RLIMIT_CORE, &rlp );
87                 getrlimit( RLIMIT_CORE, &rlp );
88                 DEBUG( 3, ( "Core limits now %d %d\n", (int)rlp.rlim_cur, (int)rlp.rlim_max ) );
89         }
90 #endif
91 #endif
92  
93         DEBUG(0,("Dumping core in %s\n",dname));
94         abort();
95         return( True );
96 } /* dump_core */
97 #endif
98
99 /**************************************************************************** **
100  Handle a fault..
101  **************************************************************************** */
102
103 static void fault_quit(void)
104 {
105 #if DUMP_CORE
106         dump_core();
107 #endif
108 }
109
110 static void winbindd_status(void)
111 {
112         struct winbindd_cli_state *tmp;
113
114         DEBUG(0, ("winbindd status:\n"));
115
116         /* Print client state information */
117         
118         DEBUG(0, ("\t%d clients currently active\n", winbindd_num_clients()));
119         
120         if (DEBUGLEVEL >= 2 && winbindd_num_clients()) {
121                 DEBUG(2, ("\tclient list:\n"));
122                 for(tmp = winbindd_client_list(); tmp; tmp = tmp->next) {
123                         DEBUG(2, ("\t\tpid %lu, sock %d, rbl %d, wbl %d\n",
124                                   (unsigned long)tmp->pid, tmp->sock, tmp->read_buf_len, 
125                                   tmp->write_buf_len));
126                 }
127         }
128 }
129
130 /* Print winbindd status to log file */
131
132 static void print_winbindd_status(void)
133 {
134         winbindd_status();
135 }
136
137 /* Flush client cache */
138
139 static void flush_caches(void)
140 {
141         /* We need to invalidate cached user list entries on a SIGHUP 
142            otherwise cached access denied errors due to restrict anonymous
143            hang around until the sequence number changes. */
144
145         wcache_invalidate_cache();
146 }
147
148 /* Handle the signal by unlinking socket and exiting */
149
150 static void terminate(void)
151 {
152         pstring path;
153
154         idmap_close();
155         
156         /* Remove socket file */
157         pstr_sprintf(path, "%s/%s", 
158                  WINBINDD_SOCKET_DIR, WINBINDD_SOCKET_NAME);
159         unlink(path);
160
161 #if 0
162         if (interactive) {
163                 TALLOC_CTX *mem_ctx = talloc_init("end_description");
164                 char *description = talloc_describe_all(mem_ctx);
165
166                 DEBUG(3, ("tallocs left:\n%s\n", description));
167                 talloc_destroy(mem_ctx);
168         }
169 #endif
170
171         exit(0);
172 }
173
174 static BOOL do_sigterm;
175
176 static void termination_handler(int signum)
177 {
178         do_sigterm = True;
179         sys_select_signal(signum);
180 }
181
182 static BOOL do_sigusr2;
183
184 static void sigusr2_handler(int signum)
185 {
186         do_sigusr2 = True;
187         sys_select_signal(SIGUSR2);
188 }
189
190 static BOOL do_sighup;
191
192 static void sighup_handler(int signum)
193 {
194         do_sighup = True;
195         sys_select_signal(SIGHUP);
196 }
197
198 static BOOL do_sigchld;
199
200 static void sigchld_handler(int signum)
201 {
202         do_sigchld = True;
203         sys_select_signal(SIGCHLD);
204 }
205
206 /* React on 'smbcontrol winbindd reload-config' in the same way as on SIGHUP*/
207 static void msg_reload_services(int msg_type, pid_t src, void *buf, size_t len)
208 {
209         /* Flush various caches */
210         flush_caches();
211         reload_services_file();
212 }
213
214 /* React on 'smbcontrol winbindd shutdown' in the same way as on SIGTERM*/
215 static void msg_shutdown(int msg_type, pid_t src, void *buf, size_t len)
216 {
217         terminate();
218 }
219
220 static struct winbindd_dispatch_table {
221         enum winbindd_cmd cmd;
222         void (*fn)(struct winbindd_cli_state *state);
223         const char *winbindd_cmd_name;
224 } dispatch_table[] = {
225         
226         /* User functions */
227
228         { WINBINDD_GETPWNAM, winbindd_getpwnam, "GETPWNAM" },
229         { WINBINDD_GETPWUID, winbindd_getpwuid, "GETPWUID" },
230
231         { WINBINDD_SETPWENT, winbindd_setpwent, "SETPWENT" },
232         { WINBINDD_ENDPWENT, winbindd_endpwent, "ENDPWENT" },
233         { WINBINDD_GETPWENT, winbindd_getpwent, "GETPWENT" },
234
235         { WINBINDD_GETGROUPS, winbindd_getgroups, "GETGROUPS" },
236         { WINBINDD_GETUSERSIDS, winbindd_getusersids, "GETUSERSIDS" },
237         { WINBINDD_GETUSERDOMGROUPS, winbindd_getuserdomgroups,
238           "GETUSERDOMGROUPS" },
239
240         /* Group functions */
241
242         { WINBINDD_GETGRNAM, winbindd_getgrnam, "GETGRNAM" },
243         { WINBINDD_GETGRGID, winbindd_getgrgid, "GETGRGID" },
244         { WINBINDD_SETGRENT, winbindd_setgrent, "SETGRENT" },
245         { WINBINDD_ENDGRENT, winbindd_endgrent, "ENDGRENT" },
246         { WINBINDD_GETGRENT, winbindd_getgrent, "GETGRENT" },
247         { WINBINDD_GETGRLST, winbindd_getgrent, "GETGRLST" },
248
249         /* PAM auth functions */
250
251         { WINBINDD_PAM_AUTH, winbindd_pam_auth, "PAM_AUTH" },
252         { WINBINDD_PAM_AUTH_CRAP, winbindd_pam_auth_crap, "AUTH_CRAP" },
253         { WINBINDD_PAM_CHAUTHTOK, winbindd_pam_chauthtok, "CHAUTHTOK" },
254
255         /* Enumeration functions */
256
257         { WINBINDD_LIST_USERS, winbindd_list_users, "LIST_USERS" },
258         { WINBINDD_LIST_GROUPS, winbindd_list_groups, "LIST_GROUPS" },
259         { WINBINDD_LIST_TRUSTDOM, winbindd_list_trusted_domains,
260           "LIST_TRUSTDOM" },
261         { WINBINDD_SHOW_SEQUENCE, winbindd_show_sequence, "SHOW_SEQUENCE" },
262
263         /* SID related functions */
264
265         { WINBINDD_LOOKUPSID, winbindd_lookupsid, "LOOKUPSID" },
266         { WINBINDD_LOOKUPNAME, winbindd_lookupname, "LOOKUPNAME" },
267
268         /* Lookup related functions */
269
270         { WINBINDD_SID_TO_UID, winbindd_sid_to_uid, "SID_TO_UID" },
271         { WINBINDD_SID_TO_GID, winbindd_sid_to_gid, "SID_TO_GID" },
272         { WINBINDD_UID_TO_SID, winbindd_uid_to_sid, "UID_TO_SID" },
273         { WINBINDD_GID_TO_SID, winbindd_gid_to_sid, "GID_TO_SID" },
274         { WINBINDD_ALLOCATE_RID, winbindd_allocate_rid, "ALLOCATE_RID" },
275         { WINBINDD_ALLOCATE_RID_AND_GID, winbindd_allocate_rid_and_gid,
276           "ALLOCATE_RID_AND_GID" },
277
278         /* Miscellaneous */
279
280         { WINBINDD_CHECK_MACHACC, winbindd_check_machine_acct, "CHECK_MACHACC" },
281         { WINBINDD_PING, winbindd_ping, "PING" },
282         { WINBINDD_INFO, winbindd_info, "INFO" },
283         { WINBINDD_INTERFACE_VERSION, winbindd_interface_version,
284           "INTERFACE_VERSION" },
285         { WINBINDD_DOMAIN_NAME, winbindd_domain_name, "DOMAIN_NAME" },
286         { WINBINDD_DOMAIN_INFO, winbindd_domain_info, "DOMAIN_INFO" },
287         { WINBINDD_NETBIOS_NAME, winbindd_netbios_name, "NETBIOS_NAME" },
288         { WINBINDD_PRIV_PIPE_DIR, winbindd_priv_pipe_dir,
289           "WINBINDD_PRIV_PIPE_DIR" },
290         { WINBINDD_GETDCNAME, winbindd_getdcname, "GETDCNAME" },
291
292         /* WINS functions */
293
294         { WINBINDD_WINS_BYNAME, winbindd_wins_byname, "WINS_BYNAME" },
295         { WINBINDD_WINS_BYIP, winbindd_wins_byip, "WINS_BYIP" },
296         
297         /* End of list */
298
299         { WINBINDD_NUM_CMDS, NULL, "NONE" }
300 };
301
302 static void process_request(struct winbindd_cli_state *state)
303 {
304         struct winbindd_dispatch_table *table = dispatch_table;
305
306         /* Free response data - we may be interrupted and receive another
307            command before being able to send this data off. */
308
309         SAFE_FREE(state->response.extra_data);  
310
311         ZERO_STRUCT(state->response);
312
313         state->response.result = WINBINDD_PENDING;
314         state->response.length = sizeof(struct winbindd_response);
315
316         state->mem_ctx = talloc_init("winbind request");
317         if (state->mem_ctx == NULL)
318                 return;
319
320         /* Process command */
321
322         for (table = dispatch_table; table->fn; table++) {
323                 if (state->request.cmd == table->cmd) {
324                         DEBUG(10,("process_request: request fn %s\n",
325                                   table->winbindd_cmd_name ));
326                         table->fn(state);
327                         break;
328                 }
329         }
330
331         if (!table->fn) {
332                 DEBUG(10,("process_request: unknown request fn number %d\n",
333                           (int)state->request.cmd ));
334                 request_error(state);
335         }
336 }
337
338 /*
339  * A list of file descriptors being monitored by select in the main processing
340  * loop. fd_event->handler is called whenever the socket is readable/writable.
341  */
342
343 static struct fd_event *fd_events = NULL;
344
345 void add_fd_event(struct fd_event *ev)
346 {
347         struct fd_event *match;
348
349         /* only add unique fd_event structs */
350
351         for (match=fd_events; match; match=match->next ) {
352 #ifdef DEVELOPER
353                 SMB_ASSERT( match != ev );
354 #else
355                 if ( match == ev )
356                         return;
357 #endif
358         }
359
360         DLIST_ADD(fd_events, ev);
361 }
362
363 void remove_fd_event(struct fd_event *ev)
364 {
365         DLIST_REMOVE(fd_events, ev);
366 }
367
368 /*
369  * Handler for fd_events to complete a read/write request, set up by
370  * setup_async_read/setup_async_write.
371  */
372
373 static void rw_callback(struct fd_event *event, int flags)
374 {
375         size_t todo;
376         ssize_t done = 0;
377
378         todo = event->length - event->done;
379
380         if (event->flags & EVENT_FD_WRITE) {
381                 SMB_ASSERT(flags == EVENT_FD_WRITE);
382                 done = sys_write(event->fd,
383                                  &((char *)event->data)[event->done],
384                                  todo);
385
386                 if (done <= 0) {
387                         event->flags = 0;
388                         event->finished(event->private_data, False);
389                         return;
390                 }
391         }
392
393         if (event->flags & EVENT_FD_READ) {
394                 SMB_ASSERT(flags == EVENT_FD_READ);
395                 done = sys_read(event->fd, &((char *)event->data)[event->done],
396                                 todo);
397
398                 if (done <= 0) {
399                         event->flags = 0;
400                         event->finished(event->private_data, False);
401                         return;
402                 }
403         }
404
405         event->done += done;
406
407         if (event->done == event->length) {
408                 event->flags = 0;
409                 event->finished(event->private_data, True);
410         }
411 }
412
413 /*
414  * Request an async read/write on a fd_event structure. (*finished) is called
415  * when the request is completed or an error had occurred.
416  */
417
418 void setup_async_read(struct fd_event *event, void *data, size_t length,
419                       void (*finished)(void *private_data, BOOL success),
420                       void *private_data)
421 {
422         SMB_ASSERT(event->flags == 0);
423         event->data = data;
424         event->length = length;
425         event->done = 0;
426         event->handler = rw_callback;
427         event->finished = finished;
428         event->private_data = private_data;
429         event->flags = EVENT_FD_READ;
430 }
431
432 void setup_async_write(struct fd_event *event, void *data, size_t length,
433                        void (*finished)(void *private_data, BOOL success),
434                        void *private_data)
435 {
436         SMB_ASSERT(event->flags == 0);
437         event->data = data;
438         event->length = length;
439         event->done = 0;
440         event->handler = rw_callback;
441         event->finished = finished;
442         event->private_data = private_data;
443         event->flags = EVENT_FD_WRITE;
444 }
445
446 /*
447  * This is the main event loop of winbind requests. It goes through a
448  * state-machine of 3 read/write requests, 4 if you have extra data to send.
449  *
450  * An idle winbind client has a read request of 4 bytes outstanding,
451  * finalizing function is request_len_recv, checking the length. request_recv
452  * then processes the packet. The processing function then at some point has
453  * to call request_finished which schedules sending the response.
454  */
455
456 static void request_len_recv(void *private_data, BOOL success);
457 static void request_recv(void *private_data, BOOL success);
458 static void request_finished(struct winbindd_cli_state *state);
459 void request_finished_cont(void *private_data, BOOL success);
460 static void response_main_sent(void *private_data, BOOL success);
461 static void response_extra_sent(void *private_data, BOOL success);
462
463 static void response_extra_sent(void *private_data, BOOL success)
464 {
465         struct winbindd_cli_state *state =
466                 talloc_get_type_abort(private_data, struct winbindd_cli_state);
467
468         if (state->mem_ctx != NULL) {
469                 talloc_destroy(state->mem_ctx);
470                 state->mem_ctx = NULL;
471         }
472
473         if (!success) {
474                 state->finished = True;
475                 return;
476         }
477
478         SAFE_FREE(state->response.extra_data);
479
480         setup_async_read(&state->fd_event, &state->request, sizeof(uint32),
481                          request_len_recv, state);
482 }
483
484 static void response_main_sent(void *private_data, BOOL success)
485 {
486         struct winbindd_cli_state *state =
487                 talloc_get_type_abort(private_data, struct winbindd_cli_state);
488
489         if (!success) {
490                 state->finished = True;
491                 return;
492         }
493
494         if (state->response.length == sizeof(state->response)) {
495                 if (state->mem_ctx != NULL) {
496                         talloc_destroy(state->mem_ctx);
497                         state->mem_ctx = NULL;
498                 }
499
500                 setup_async_read(&state->fd_event, &state->request,
501                                  sizeof(uint32), request_len_recv, state);
502                 return;
503         }
504
505         setup_async_write(&state->fd_event, state->response.extra_data,
506                           state->response.length - sizeof(state->response),
507                           response_extra_sent, state);
508 }
509
510 static void request_finished(struct winbindd_cli_state *state)
511 {
512         setup_async_write(&state->fd_event, &state->response,
513                           sizeof(state->response), response_main_sent, state);
514 }
515
516 void request_error(struct winbindd_cli_state *state)
517 {
518         SMB_ASSERT(state->response.result == WINBINDD_PENDING);
519         state->response.result = WINBINDD_ERROR;
520         request_finished(state);
521 }
522
523 void request_ok(struct winbindd_cli_state *state)
524 {
525         SMB_ASSERT(state->response.result == WINBINDD_PENDING);
526         state->response.result = WINBINDD_OK;
527         request_finished(state);
528 }
529
530 void request_finished_cont(void *private_data, BOOL success)
531 {
532         struct winbindd_cli_state *state =
533                 talloc_get_type_abort(private_data, struct winbindd_cli_state);
534
535         if (success)
536                 request_ok(state);
537         else
538                 request_error(state);
539 }
540
541 static void request_recv(void *private_data, BOOL success)
542 {
543         struct winbindd_cli_state *state =
544                 talloc_get_type_abort(private_data, struct winbindd_cli_state);
545
546         if (!success) {
547                 state->finished = True;
548                 return;
549         }
550
551         process_request(state);
552 }
553
554 static void request_len_recv(void *private_data, BOOL success)
555 {
556         struct winbindd_cli_state *state =
557                 talloc_get_type_abort(private_data, struct winbindd_cli_state);
558
559         if (!success) {
560                 state->finished = True;
561                 return;
562         }
563
564         if (*(uint32 *)(&state->request) != sizeof(state->request)) {
565                 DEBUG(0,("request_len_recv: Invalid request size received: %d\n",
566                          *(uint32 *)(&state->request)));
567                 state->finished = True;
568                 return;
569         }
570
571         setup_async_read(&state->fd_event, (uint32 *)(&state->request)+1,
572                          sizeof(state->request) - sizeof(uint32),
573                          request_recv, state);
574 }
575
576 /* Process a new connection by adding it to the client connection list */
577
578 static void new_connection(int listen_sock, BOOL privileged)
579 {
580         struct sockaddr_un sunaddr;
581         struct winbindd_cli_state *state;
582         socklen_t len;
583         int sock;
584         
585         /* Accept connection */
586         
587         len = sizeof(sunaddr);
588
589         do {
590                 sock = accept(listen_sock, (struct sockaddr *)&sunaddr, &len);
591         } while (sock == -1 && errno == EINTR);
592
593         if (sock == -1)
594                 return;
595         
596         DEBUG(6,("accepted socket %d\n", sock));
597         
598         /* Create new connection structure */
599         
600         if ((state = TALLOC_ZERO_P(NULL, struct winbindd_cli_state)) == NULL)
601                 return;
602         
603         state->sock = sock;
604
605         state->last_access = time(NULL);        
606
607         state->privileged = privileged;
608
609         state->fd_event.fd = state->sock;
610         state->fd_event.flags = 0;
611         add_fd_event(&state->fd_event);
612
613         setup_async_read(&state->fd_event, &state->request, sizeof(uint32),
614                          request_len_recv, state);
615
616         /* Add to connection list */
617         
618         winbindd_add_client(state);
619 }
620
621 /* Remove a client connection from client connection list */
622
623 static void remove_client(struct winbindd_cli_state *state)
624 {
625         /* It's a dead client - hold a funeral */
626         
627         if (state != NULL) {
628                 
629                 /* Close socket */
630                 
631                 close(state->sock);
632                 
633                 /* Free any getent state */
634                 
635                 free_getent_state(state->getpwent_state);
636                 free_getent_state(state->getgrent_state);
637                 
638                 /* We may have some extra data that was not freed if the
639                    client was killed unexpectedly */
640
641                 SAFE_FREE(state->response.extra_data);
642
643                 if (state->mem_ctx != NULL) {
644                         talloc_destroy(state->mem_ctx);
645                         state->mem_ctx = NULL;
646                 }
647
648                 remove_fd_event(&state->fd_event);
649                 
650                 /* Remove from list and free */
651                 
652                 winbindd_remove_client(state);
653                 talloc_free(state);
654         }
655 }
656
657
658 /* Shutdown client connection which has been idle for the longest time */
659
660 static BOOL remove_idle_client(void)
661 {
662         struct winbindd_cli_state *state, *remove_state = NULL;
663         time_t last_access = 0;
664         int nidle = 0;
665
666         for (state = winbindd_client_list(); state; state = state->next) {
667                 if (state->read_buf_len == 0 && state->write_buf_len == 0 &&
668                     state->response.result != WINBINDD_PENDING &&
669                     !state->getpwent_state && !state->getgrent_state) {
670                         nidle++;
671                         if (!last_access || state->last_access < last_access) {
672                                 last_access = state->last_access;
673                                 remove_state = state;
674                         }
675                 }
676         }
677
678         if (remove_state) {
679                 DEBUG(5,("Found %d idle client connections, shutting down sock %d, pid %u\n",
680                         nidle, remove_state->sock, (unsigned int)remove_state->pid));
681                 remove_client(remove_state);
682                 return True;
683         }
684
685         return False;
686 }
687
688 /* Process incoming clients on listen_sock.  We use a tricky non-blocking,
689    non-forking, non-threaded model which allows us to handle many
690    simultaneous connections while remaining impervious to many denial of
691    service attacks. */
692
693 static void process_loop(void)
694 {
695         struct winbindd_cli_state *state;
696         struct fd_event *ev;
697         fd_set r_fds, w_fds;
698         int maxfd, listen_sock, listen_priv_sock, selret;
699         struct timeval timeout;
700
701         /* We'll be doing this a lot */
702
703         /* Handle messages */
704
705         message_dispatch();
706
707         /* refresh the trusted domain cache */
708                    
709         rescan_trusted_domains();
710
711         /* Free up temporary memory */
712
713         lp_talloc_free();
714         main_loop_talloc_free();
715
716         /* Initialise fd lists for select() */
717
718         listen_sock = open_winbindd_socket();
719         listen_priv_sock = open_winbindd_priv_socket();
720
721         if (listen_sock == -1 || listen_priv_sock == -1) {
722                 perror("open_winbind_socket");
723                 exit(1);
724         }
725
726         maxfd = MAX(listen_sock, listen_priv_sock);
727
728         FD_ZERO(&r_fds);
729         FD_ZERO(&w_fds);
730         FD_SET(listen_sock, &r_fds);
731         FD_SET(listen_priv_sock, &r_fds);
732
733         timeout.tv_sec = WINBINDD_ESTABLISH_LOOP;
734         timeout.tv_usec = 0;
735
736         /* Set up client readers and writers */
737
738         state = winbindd_client_list();
739
740         while (state) {
741
742                 struct winbindd_cli_state *next = state->next;
743
744                 /* Dispose of client connection if it is marked as 
745                    finished */ 
746
747                 if (state->finished)
748                         remove_client(state);
749
750                 state = next;
751         }
752
753         for (ev = fd_events; ev; ev = ev->next) {
754                 if (ev->flags & EVENT_FD_READ) {
755                         FD_SET(ev->fd, &r_fds);
756                         maxfd = MAX(ev->fd, maxfd);
757                 }
758                 if (ev->flags & EVENT_FD_WRITE) {
759                         FD_SET(ev->fd, &w_fds);
760                         maxfd = MAX(ev->fd, maxfd);
761                 }
762         }
763
764         /* Call select */
765         
766         selret = sys_select(maxfd + 1, &r_fds, &w_fds, NULL, &timeout);
767
768         if (selret == 0)
769                 goto no_fds_ready;
770
771         if ((selret == -1 && errno != EINTR) || selret == 0) {
772
773                 /* Select error, something is badly wrong */
774
775                 perror("select");
776                 exit(1);
777         }
778
779         ev = fd_events;
780         while (ev != NULL) {
781                 struct fd_event *next = ev->next;
782                 int flags = 0;
783                 if (FD_ISSET(ev->fd, &r_fds))
784                         flags |= EVENT_FD_READ;
785                 if (FD_ISSET(ev->fd, &w_fds))
786                         flags |= EVENT_FD_WRITE;
787                 if (flags)
788                         ev->handler(ev, flags);
789                 ev = next;
790         }
791
792         if (FD_ISSET(listen_sock, &r_fds)) {
793                 while (winbindd_num_clients() >
794                        WINBINDD_MAX_SIMULTANEOUS_CLIENTS - 1) {
795                         DEBUG(5,("winbindd: Exceeding %d client "
796                                  "connections, removing idle "
797                                  "connection.\n",
798                                  WINBINDD_MAX_SIMULTANEOUS_CLIENTS));
799                         if (!remove_idle_client()) {
800                                 DEBUG(0,("winbindd: Exceeding %d "
801                                          "client connections, no idle "
802                                          "connection found\n",
803                                          WINBINDD_MAX_SIMULTANEOUS_CLIENTS));
804                                 break;
805                         }
806                 }
807                 /* new, non-privileged connection */
808                 new_connection(listen_sock, False);
809         }
810             
811         if (FD_ISSET(listen_priv_sock, &r_fds)) {
812                 while (winbindd_num_clients() >
813                        WINBINDD_MAX_SIMULTANEOUS_CLIENTS - 1) {
814                         DEBUG(5,("winbindd: Exceeding %d client "
815                                  "connections, removing idle "
816                                  "connection.\n",
817                                  WINBINDD_MAX_SIMULTANEOUS_CLIENTS));
818                         if (!remove_idle_client()) {
819                                 DEBUG(0,("winbindd: Exceeding %d "
820                                          "client connections, no idle "
821                                          "connection found\n",
822                                          WINBINDD_MAX_SIMULTANEOUS_CLIENTS));
823                                 break;
824                         }
825                 }
826                 /* new, privileged connection */
827                 new_connection(listen_priv_sock, True);
828         }
829
830  no_fds_ready:
831
832 #if 0
833         winbindd_check_cache_size(time(NULL));
834 #endif
835
836         /* Check signal handling things */
837
838         if (do_sigterm)
839                 terminate();
840
841         if (do_sighup) {
842
843                 DEBUG(3, ("got SIGHUP\n"));
844
845                 msg_reload_services(MSG_SMB_CONF_UPDATED, (pid_t) 0, NULL, 0);
846                 do_sighup = False;
847         }
848
849         if (do_sigusr2) {
850                 print_winbindd_status();
851                 do_sigusr2 = False;
852         }
853
854         if (do_sigchld) {
855                 pid_t pid;
856
857                 do_sigchld = False;
858
859                 while ((pid = sys_waitpid(-1, NULL, WNOHANG)) > 0) {
860                         winbind_child_died(pid);
861                 }
862         }
863 }
864
865 /* Main function */
866
867 struct winbindd_state server_state;   /* Server state information */
868
869 int main(int argc, char **argv)
870 {
871         pstring logfile;
872         static BOOL Fork = True;
873         static BOOL log_stdout = False;
874         struct poptOption long_options[] = {
875                 POPT_AUTOHELP
876                 { "stdout", 'S', POPT_ARG_VAL, &log_stdout, True, "Log to stdout" },
877                 { "foreground", 'F', POPT_ARG_VAL, &Fork, False, "Daemon in foreground mode" },
878                 { "interactive", 'i', POPT_ARG_NONE, NULL, 'i', "Interactive mode" },
879                 { "no-caching", 'n', POPT_ARG_VAL, &opt_nocache, True, "Disable caching" },
880                 POPT_COMMON_SAMBA
881                 POPT_TABLEEND
882         };
883         poptContext pc;
884         int opt;
885
886         /* glibc (?) likes to print "User defined signal 1" and exit if a
887            SIGUSR[12] is received before a handler is installed */
888
889         CatchSignal(SIGUSR1, SIG_IGN);
890         CatchSignal(SIGUSR2, SIG_IGN);
891
892         fault_setup((void (*)(void *))fault_quit );
893
894         /* Initialise for running in non-root mode */
895
896         sec_init();
897
898         set_remote_machine_name("winbindd", False);
899
900         /* Set environment variable so we don't recursively call ourselves.
901            This may also be useful interactively. */
902
903         setenv(WINBINDD_DONT_ENV, "1", 1);
904
905         /* Initialise samba/rpc client stuff */
906
907         pc = poptGetContext("winbindd", argc, (const char **)argv, long_options,
908                                                 POPT_CONTEXT_KEEP_FIRST);
909
910         while ((opt = poptGetNextOpt(pc)) != -1) {
911                 switch (opt) {
912                         /* Don't become a daemon */
913                 case 'i':
914                         interactive = True;
915                         log_stdout = True;
916                         Fork = False;
917                         break;
918                 }
919         }
920
921
922         if (log_stdout && Fork) {
923                 printf("Can't log to stdout (-S) unless daemon is in foreground +(-F) or interactive (-i)\n");
924                 poptPrintUsage(pc, stderr, 0);
925                 exit(1);
926         }
927
928         if (!override_logfile) {
929                 pstr_sprintf(logfile, "%s/log.winbindd", dyn_LOGFILEBASE);
930                 lp_set_logfile(logfile);
931         }
932         setup_logging("winbindd", log_stdout);
933         reopen_logs();
934
935         DEBUG(1, ("winbindd version %s started.\n", SAMBA_VERSION_STRING) );
936         DEBUGADD( 1, ( "Copyright The Samba Team 2000-2004\n" ) );
937
938         if (!reload_services_file()) {
939                 DEBUG(0, ("error opening config file\n"));
940                 exit(1);
941         }
942
943         /* Setup names. */
944
945         if (!init_names())
946                 exit(1);
947
948         load_interfaces();
949
950         if (!secrets_init()) {
951
952                 DEBUG(0,("Could not initialize domain trust account secrets. Giving up\n"));
953                 return False;
954         }
955
956         /* Enable netbios namecache */
957
958         namecache_enable();
959
960         /* Check winbindd parameters are valid */
961
962         ZERO_STRUCT(server_state);
963
964         /* Winbind daemon initialisation */
965
966         if ( (!winbindd_param_init()) || (!winbindd_upgrade_idmap()) ||
967              (!idmap_init(lp_idmap_backend())) ) {
968                 DEBUG(1, ("Could not init idmap -- netlogon proxy only\n"));
969                 idmap_set_proxyonly();
970         }
971
972         /* Unblock all signals we are interested in as they may have been
973            blocked by the parent process. */
974
975         BlockSignals(False, SIGINT);
976         BlockSignals(False, SIGQUIT);
977         BlockSignals(False, SIGTERM);
978         BlockSignals(False, SIGUSR1);
979         BlockSignals(False, SIGUSR2);
980         BlockSignals(False, SIGHUP);
981         BlockSignals(False, SIGCHLD);
982
983         /* Setup signal handlers */
984         
985         CatchSignal(SIGINT, termination_handler);      /* Exit on these sigs */
986         CatchSignal(SIGQUIT, termination_handler);
987         CatchSignal(SIGTERM, termination_handler);
988         CatchSignal(SIGCHLD, sigchld_handler);
989
990         CatchSignal(SIGPIPE, SIG_IGN);                 /* Ignore sigpipe */
991
992         CatchSignal(SIGUSR2, sigusr2_handler);         /* Debugging sigs */
993         CatchSignal(SIGHUP, sighup_handler);
994
995         if (!interactive)
996                 become_daemon(Fork);
997
998         pidfile_create("winbindd");
999
1000 #if HAVE_SETPGID
1001         /*
1002          * If we're interactive we want to set our own process group for
1003          * signal management.
1004          */
1005         if (interactive)
1006                 setpgid( (pid_t)0, (pid_t)0);
1007 #endif
1008
1009         /* Initialise messaging system */
1010
1011         if (!message_init()) {
1012                 DEBUG(0, ("unable to initialise messaging system\n"));
1013                 exit(1);
1014         }
1015         
1016         /* React on 'smbcontrol winbindd reload-config' in the same way
1017            as to SIGHUP signal */
1018         message_register(MSG_SMB_CONF_UPDATED, msg_reload_services);
1019         message_register(MSG_SHUTDOWN, msg_shutdown);
1020         
1021         poptFreeContext(pc);
1022
1023         init_domain_list();
1024
1025         init_idmap_child();
1026
1027         /* Loop waiting for requests */
1028
1029         while (1)
1030                 process_loop();
1031
1032         trustdom_cache_shutdown();
1033
1034         return 0;
1035 }