s3:winbind: Convert WINBINDD_GETUSERDOMGROUPS to the new API
[kai/samba.git] / source3 / winbindd / 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 3 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, see <http://www.gnu.org/licenses/>.
23 */
24
25 #include "includes.h"
26 #include "winbindd.h"
27 #include "../../nsswitch/libwbclient/wbc_async.h"
28
29 #undef DBGC_CLASS
30 #define DBGC_CLASS DBGC_WINBIND
31
32 static void remove_client(struct winbindd_cli_state *state);
33
34 static bool opt_nocache = False;
35 static bool interactive = False;
36
37 extern bool override_logfile;
38
39 struct event_context *winbind_event_context(void)
40 {
41         static struct event_context *ctx;
42
43         if (!ctx && !(ctx = event_context_init(NULL))) {
44                 smb_panic("Could not init winbind event context");
45         }
46         return ctx;
47 }
48
49 struct messaging_context *winbind_messaging_context(void)
50 {
51         static struct messaging_context *ctx;
52
53         if (ctx == NULL) {
54                 ctx = messaging_init(NULL, server_id_self(),
55                                      winbind_event_context());
56         }
57         if (ctx == NULL) {
58                 DEBUG(0, ("Could not init winbind messaging context.\n"));
59         }
60         return ctx;
61 }
62
63 /* Reload configuration */
64
65 static bool reload_services_file(const char *lfile)
66 {
67         bool ret;
68
69         if (lp_loaded()) {
70                 const char *fname = lp_configfile();
71
72                 if (file_exist(fname) && !strcsequal(fname,get_dyn_CONFIGFILE())) {
73                         set_dyn_CONFIGFILE(fname);
74                 }
75         }
76
77         /* if this is a child, restore the logfile to the special
78            name - <domain>, idmap, etc. */
79         if (lfile && *lfile) {
80                 lp_set_logfile(lfile);
81         }
82
83         reopen_logs();
84         ret = lp_load(get_dyn_CONFIGFILE(),False,False,True,True);
85
86         reopen_logs();
87         load_interfaces();
88
89         return(ret);
90 }
91
92
93 /**************************************************************************** **
94  Handle a fault..
95  **************************************************************************** */
96
97 static void fault_quit(void)
98 {
99         dump_core();
100 }
101
102 static void winbindd_status(void)
103 {
104         struct winbindd_cli_state *tmp;
105
106         DEBUG(0, ("winbindd status:\n"));
107
108         /* Print client state information */
109
110         DEBUG(0, ("\t%d clients currently active\n", winbindd_num_clients()));
111
112         if (DEBUGLEVEL >= 2 && winbindd_num_clients()) {
113                 DEBUG(2, ("\tclient list:\n"));
114                 for(tmp = winbindd_client_list(); tmp; tmp = tmp->next) {
115                         DEBUGADD(2, ("\t\tpid %lu, sock %d\n",
116                                   (unsigned long)tmp->pid, tmp->sock));
117                 }
118         }
119 }
120
121 /* Print winbindd status to log file */
122
123 static void print_winbindd_status(void)
124 {
125         winbindd_status();
126 }
127
128 /* Flush client cache */
129
130 static void flush_caches(void)
131 {
132         /* We need to invalidate cached user list entries on a SIGHUP 
133            otherwise cached access denied errors due to restrict anonymous
134            hang around until the sequence number changes. */
135
136         if (!wcache_invalidate_cache()) {
137                 DEBUG(0, ("invalidating the cache failed; revalidate the cache\n"));
138                 if (!winbindd_cache_validate_and_initialize()) {
139                         exit(1);
140                 }
141         }
142 }
143
144 /* Handle the signal by unlinking socket and exiting */
145
146 static void terminate(bool is_parent)
147 {
148         if (is_parent) {
149                 /* When parent goes away we should
150                  * remove the socket file. Not so
151                  * when children terminate.
152                  */ 
153                 char *path = NULL;
154
155                 if (asprintf(&path, "%s/%s",
156                         get_winbind_pipe_dir(), WINBINDD_SOCKET_NAME) > 0) {
157                         unlink(path);
158                         SAFE_FREE(path);
159                 }
160         }
161
162         idmap_close();
163
164         trustdom_cache_shutdown();
165
166         gencache_stabilize();
167
168 #if 0
169         if (interactive) {
170                 TALLOC_CTX *mem_ctx = talloc_init("end_description");
171                 char *description = talloc_describe_all(mem_ctx);
172
173                 DEBUG(3, ("tallocs left:\n%s\n", description));
174                 talloc_destroy(mem_ctx);
175         }
176 #endif
177
178         if (is_parent) {
179                 pidfile_unlink();
180         }
181
182         exit(0);
183 }
184
185 static void winbindd_sig_term_handler(struct tevent_context *ev,
186                                       struct tevent_signal *se,
187                                       int signum,
188                                       int count,
189                                       void *siginfo,
190                                       void *private_data)
191 {
192         bool *is_parent = talloc_get_type_abort(private_data, bool);
193
194         DEBUG(0,("Got sig[%d] terminate (is_parent=%d)\n",
195                  signum, (int)*is_parent));
196         terminate(*is_parent);
197 }
198
199 bool winbindd_setup_sig_term_handler(bool parent)
200 {
201         struct tevent_signal *se;
202         bool *is_parent;
203
204         is_parent = talloc(winbind_event_context(), bool);
205         if (!is_parent) {
206                 return false;
207         }
208
209         *is_parent = parent;
210
211         se = tevent_add_signal(winbind_event_context(),
212                                is_parent,
213                                SIGTERM, 0,
214                                winbindd_sig_term_handler,
215                                is_parent);
216         if (!se) {
217                 DEBUG(0,("failed to setup SIGTERM handler"));
218                 talloc_free(is_parent);
219                 return false;
220         }
221
222         se = tevent_add_signal(winbind_event_context(),
223                                is_parent,
224                                SIGINT, 0,
225                                winbindd_sig_term_handler,
226                                is_parent);
227         if (!se) {
228                 DEBUG(0,("failed to setup SIGINT handler"));
229                 talloc_free(is_parent);
230                 return false;
231         }
232
233         se = tevent_add_signal(winbind_event_context(),
234                                is_parent,
235                                SIGQUIT, 0,
236                                winbindd_sig_term_handler,
237                                is_parent);
238         if (!se) {
239                 DEBUG(0,("failed to setup SIGINT handler"));
240                 talloc_free(is_parent);
241                 return false;
242         }
243
244         return true;
245 }
246
247 static void winbindd_sig_hup_handler(struct tevent_context *ev,
248                                      struct tevent_signal *se,
249                                      int signum,
250                                      int count,
251                                      void *siginfo,
252                                      void *private_data)
253 {
254         const char *file = (const char *)private_data;
255
256         DEBUG(1,("Reloading services after SIGHUP\n"));
257         flush_caches();
258         reload_services_file(file);
259 }
260
261 bool winbindd_setup_sig_hup_handler(const char *lfile)
262 {
263         struct tevent_signal *se;
264         char *file = NULL;
265
266         if (lfile) {
267                 file = talloc_strdup(winbind_event_context(),
268                                      lfile);
269                 if (!file) {
270                         return false;
271                 }
272         }
273
274         se = tevent_add_signal(winbind_event_context(),
275                                winbind_event_context(),
276                                SIGHUP, 0,
277                                winbindd_sig_hup_handler,
278                                file);
279         if (!se) {
280                 return false;
281         }
282
283         return true;
284 }
285
286 static void winbindd_sig_chld_handler(struct tevent_context *ev,
287                                       struct tevent_signal *se,
288                                       int signum,
289                                       int count,
290                                       void *siginfo,
291                                       void *private_data)
292 {
293         pid_t pid;
294
295         while ((pid = sys_waitpid(-1, NULL, WNOHANG)) > 0) {
296                 winbind_child_died(pid);
297         }
298 }
299
300 static bool winbindd_setup_sig_chld_handler(void)
301 {
302         struct tevent_signal *se;
303
304         se = tevent_add_signal(winbind_event_context(),
305                                winbind_event_context(),
306                                SIGCHLD, 0,
307                                winbindd_sig_chld_handler,
308                                NULL);
309         if (!se) {
310                 return false;
311         }
312
313         return true;
314 }
315
316 static void winbindd_sig_usr2_handler(struct tevent_context *ev,
317                                       struct tevent_signal *se,
318                                       int signum,
319                                       int count,
320                                       void *siginfo,
321                                       void *private_data)
322 {
323         print_winbindd_status();
324 }
325
326 static bool winbindd_setup_sig_usr2_handler(void)
327 {
328         struct tevent_signal *se;
329
330         se = tevent_add_signal(winbind_event_context(),
331                                winbind_event_context(),
332                                SIGUSR2, 0,
333                                winbindd_sig_usr2_handler,
334                                NULL);
335         if (!se) {
336                 return false;
337         }
338
339         return true;
340 }
341
342 /* React on 'smbcontrol winbindd reload-config' in the same way as on SIGHUP*/
343 static void msg_reload_services(struct messaging_context *msg,
344                                 void *private_data,
345                                 uint32_t msg_type,
346                                 struct server_id server_id,
347                                 DATA_BLOB *data)
348 {
349         /* Flush various caches */
350         flush_caches();
351         reload_services_file((const char *) private_data);
352 }
353
354 /* React on 'smbcontrol winbindd shutdown' in the same way as on SIGTERM*/
355 static void msg_shutdown(struct messaging_context *msg,
356                          void *private_data,
357                          uint32_t msg_type,
358                          struct server_id server_id,
359                          DATA_BLOB *data)
360 {
361         /* only the parent waits for this message */
362         DEBUG(0,("Got shutdown message\n"));
363         terminate(true);
364 }
365
366
367 static void winbind_msg_validate_cache(struct messaging_context *msg_ctx,
368                                        void *private_data,
369                                        uint32_t msg_type,
370                                        struct server_id server_id,
371                                        DATA_BLOB *data)
372 {
373         uint8 ret;
374         pid_t child_pid;
375         struct sigaction act;
376         struct sigaction oldact;
377
378         DEBUG(10, ("winbindd_msg_validate_cache: got validate-cache "
379                    "message.\n"));
380
381         /*
382          * call the validation code from a child:
383          * so we don't block the main winbindd and the validation
384          * code can safely use fork/waitpid...
385          */
386         CatchChild();
387         child_pid = sys_fork();
388
389         if (child_pid == -1) {
390                 DEBUG(1, ("winbind_msg_validate_cache: Could not fork: %s\n",
391                           strerror(errno)));
392                 return;
393         }
394
395         if (child_pid != 0) {
396                 /* parent */
397                 DEBUG(5, ("winbind_msg_validate_cache: child created with "
398                           "pid %d.\n", (int)child_pid));
399                 return;
400         }
401
402         /* child */
403
404         /* install default SIGCHLD handler: validation code uses fork/waitpid */
405         ZERO_STRUCT(act);
406         act.sa_handler = SIG_DFL;
407 #ifdef SA_RESTART
408         /* We *want* SIGALRM to interrupt a system call. */
409         act.sa_flags = SA_RESTART;
410 #endif
411         sigemptyset(&act.sa_mask);
412         sigaddset(&act.sa_mask,SIGCHLD);
413         sigaction(SIGCHLD,&act,&oldact);
414
415         ret = (uint8)winbindd_validate_cache_nobackup();
416         DEBUG(10, ("winbindd_msg_validata_cache: got return value %d\n", ret));
417         messaging_send_buf(msg_ctx, server_id, MSG_WINBIND_VALIDATE_CACHE, &ret,
418                            (size_t)1);
419         _exit(0);
420 }
421
422 static struct winbindd_dispatch_table {
423         enum winbindd_cmd cmd;
424         void (*fn)(struct winbindd_cli_state *state);
425         const char *winbindd_cmd_name;
426 } dispatch_table[] = {
427
428         /* User functions */
429
430         { WINBINDD_SETPWENT, winbindd_setpwent, "SETPWENT" },
431         { WINBINDD_ENDPWENT, winbindd_endpwent, "ENDPWENT" },
432         { WINBINDD_GETPWENT, winbindd_getpwent, "GETPWENT" },
433
434         { WINBINDD_GETGROUPS, winbindd_getgroups, "GETGROUPS" },
435         { WINBINDD_GETUSERSIDS, winbindd_getusersids, "GETUSERSIDS" },
436
437         /* Group functions */
438
439         { WINBINDD_GETGRNAM, winbindd_getgrnam, "GETGRNAM" },
440         { WINBINDD_GETGRGID, winbindd_getgrgid, "GETGRGID" },
441         { WINBINDD_SETGRENT, winbindd_setgrent, "SETGRENT" },
442         { WINBINDD_ENDGRENT, winbindd_endgrent, "ENDGRENT" },
443         { WINBINDD_GETGRENT, winbindd_getgrent, "GETGRENT" },
444         { WINBINDD_GETGRLST, winbindd_getgrent, "GETGRLST" },
445
446         /* PAM auth functions */
447
448         { WINBINDD_PAM_AUTH, winbindd_pam_auth, "PAM_AUTH" },
449         { WINBINDD_PAM_AUTH_CRAP, winbindd_pam_auth_crap, "AUTH_CRAP" },
450         { WINBINDD_PAM_CHAUTHTOK, winbindd_pam_chauthtok, "CHAUTHTOK" },
451         { WINBINDD_PAM_LOGOFF, winbindd_pam_logoff, "PAM_LOGOFF" },
452         { WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP, winbindd_pam_chng_pswd_auth_crap, "CHNG_PSWD_AUTH_CRAP" },
453
454         /* Enumeration functions */
455
456         { WINBINDD_LIST_USERS, winbindd_list_users, "LIST_USERS" },
457         { WINBINDD_LIST_GROUPS, winbindd_list_groups, "LIST_GROUPS" },
458         { WINBINDD_LIST_TRUSTDOM, winbindd_list_trusted_domains,
459           "LIST_TRUSTDOM" },
460         { WINBINDD_SHOW_SEQUENCE, winbindd_show_sequence, "SHOW_SEQUENCE" },
461
462         /* SID related functions */
463
464         { WINBINDD_LOOKUPRIDS, winbindd_lookuprids, "LOOKUPRIDS" },
465
466         /* Lookup related functions */
467
468         { WINBINDD_ALLOCATE_UID, winbindd_allocate_uid, "ALLOCATE_UID" },
469         { WINBINDD_ALLOCATE_GID, winbindd_allocate_gid, "ALLOCATE_GID" },
470         { WINBINDD_SET_MAPPING, winbindd_set_mapping, "SET_MAPPING" },
471         { WINBINDD_REMOVE_MAPPING, winbindd_remove_mapping, "REMOVE_MAPPING" },
472         { WINBINDD_SET_HWM, winbindd_set_hwm, "SET_HWMS" },
473
474         /* Miscellaneous */
475
476         { WINBINDD_CHECK_MACHACC, winbindd_check_machine_acct, "CHECK_MACHACC" },
477         { WINBINDD_INFO, winbindd_info, "INFO" },
478         { WINBINDD_INTERFACE_VERSION, winbindd_interface_version,
479           "INTERFACE_VERSION" },
480         { WINBINDD_DOMAIN_NAME, winbindd_domain_name, "DOMAIN_NAME" },
481         { WINBINDD_DOMAIN_INFO, winbindd_domain_info, "DOMAIN_INFO" },
482         { WINBINDD_NETBIOS_NAME, winbindd_netbios_name, "NETBIOS_NAME" },
483         { WINBINDD_PRIV_PIPE_DIR, winbindd_priv_pipe_dir,
484           "WINBINDD_PRIV_PIPE_DIR" },
485         { WINBINDD_GETDCNAME, winbindd_getdcname, "GETDCNAME" },
486         { WINBINDD_DSGETDCNAME, winbindd_dsgetdcname, "DSGETDCNAME" },
487
488         /* Credential cache access */
489         { WINBINDD_CCACHE_NTLMAUTH, winbindd_ccache_ntlm_auth, "NTLMAUTH" },
490
491         /* WINS functions */
492
493         { WINBINDD_WINS_BYNAME, winbindd_wins_byname, "WINS_BYNAME" },
494         { WINBINDD_WINS_BYIP, winbindd_wins_byip, "WINS_BYIP" },
495
496         /* End of list */
497
498         { WINBINDD_NUM_CMDS, NULL, "NONE" }
499 };
500
501 struct winbindd_async_dispatch_table {
502         enum winbindd_cmd cmd;
503         const char *cmd_name;
504         struct tevent_req *(*send_req)(TALLOC_CTX *mem_ctx,
505                                        struct tevent_context *ev,
506                                        struct winbindd_request *request);
507         NTSTATUS (*recv_req)(struct tevent_req *req,
508                              struct winbindd_response *presp);
509 };
510
511 static struct winbindd_async_dispatch_table async_nonpriv_table[] = {
512         { WINBINDD_PING, "PING",
513           wb_ping_send, wb_ping_recv },
514         { WINBINDD_LOOKUPSID, "LOOKUPSID",
515           winbindd_lookupsid_send, winbindd_lookupsid_recv },
516         { WINBINDD_LOOKUPNAME, "LOOKUPNAME",
517           winbindd_lookupname_send, winbindd_lookupname_recv },
518         { WINBINDD_SID_TO_UID, "SID_TO_UID",
519           winbindd_sid_to_uid_send, winbindd_sid_to_uid_recv },
520         { WINBINDD_SID_TO_GID, "SID_TO_GID",
521           winbindd_sid_to_gid_send, winbindd_sid_to_gid_recv },
522         { WINBINDD_UID_TO_SID, "UID_TO_SID",
523           winbindd_uid_to_sid_send, winbindd_uid_to_sid_recv },
524         { WINBINDD_GID_TO_SID, "GID_TO_SID",
525           winbindd_gid_to_sid_send, winbindd_gid_to_sid_recv },
526         { WINBINDD_GETPWSID, "GETPWSID",
527           winbindd_getpwsid_send, winbindd_getpwsid_recv },
528         { WINBINDD_GETPWNAM, "GETPWNAM",
529           winbindd_getpwnam_send, winbindd_getpwnam_recv },
530         { WINBINDD_GETPWUID, "GETPWUID",
531           winbindd_getpwuid_send, winbindd_getpwuid_recv },
532         { WINBINDD_GETSIDALIASES, "GETSIDALIASES",
533           winbindd_getsidaliases_send, winbindd_getsidaliases_recv },
534         { WINBINDD_GETUSERDOMGROUPS, "GETUSERDOMGROUPS",
535           winbindd_getuserdomgroups_send, winbindd_getuserdomgroups_recv },
536
537         { 0, NULL, NULL, NULL }
538 };
539
540 static void wb_request_done(struct tevent_req *req);
541
542 static void process_request(struct winbindd_cli_state *state)
543 {
544         struct winbindd_dispatch_table *table = dispatch_table;
545         struct winbindd_async_dispatch_table *atable;
546
547         state->mem_ctx = talloc_init("winbind request");
548         if (state->mem_ctx == NULL)
549                 return;
550
551         /* Remember who asked us. */
552         state->pid = state->request->pid;
553
554         /* Process command */
555
556         for (atable = async_nonpriv_table; atable->send_req; atable += 1) {
557                 if (state->request->cmd == atable->cmd) {
558                         break;
559                 }
560         }
561
562         if (atable->send_req != NULL) {
563                 struct tevent_req *req;
564
565                 DEBUG(10, ("process_request: Handling async request %s\n",
566                            atable->cmd_name));
567
568                 req = atable->send_req(state->mem_ctx, winbind_event_context(),
569                                        state->request);
570                 if (req == NULL) {
571                         DEBUG(0, ("process_request: atable->send failed for "
572                                   "%s\n", atable->cmd_name));
573                         request_error(state);
574                         return;
575                 }
576                 tevent_req_set_callback(req, wb_request_done, state);
577                 state->recv_fn = atable->recv_req;
578                 return;
579         }
580
581         state->response = talloc_zero(state->mem_ctx,
582                                       struct winbindd_response);
583         if (state->response == NULL) {
584                 DEBUG(10, ("talloc failed\n"));
585                 remove_client(state);
586                 return;
587         }
588         state->response->result = WINBINDD_PENDING;
589         state->response->length = sizeof(struct winbindd_response);
590
591         for (table = dispatch_table; table->fn; table++) {
592                 if (state->request->cmd == table->cmd) {
593                         DEBUG(10,("process_request: request fn %s\n",
594                                   table->winbindd_cmd_name ));
595                         table->fn(state);
596                         break;
597                 }
598         }
599
600         if (!table->fn) {
601                 DEBUG(10,("process_request: unknown request fn number %d\n",
602                           (int)state->request->cmd ));
603                 request_error(state);
604         }
605 }
606
607 static void wb_request_done(struct tevent_req *req)
608 {
609         struct winbindd_cli_state *state = tevent_req_callback_data(
610                 req, struct winbindd_cli_state);
611         NTSTATUS status;
612
613         state->response = talloc_zero(state, struct winbindd_response);
614         if (state->response == NULL) {
615                 remove_client(state);
616                 return;
617         }
618         state->response->result = WINBINDD_PENDING;
619         state->response->length = sizeof(struct winbindd_response);
620
621         status = state->recv_fn(req, state->response);
622         TALLOC_FREE(req);
623         if (!NT_STATUS_IS_OK(status)) {
624                 DEBUG(10, ("returning %s\n", nt_errstr(status)));
625                 request_error(state);
626                 return;
627         }
628         request_ok(state);
629 }
630
631 /*
632  * This is the main event loop of winbind requests. It goes through a
633  * state-machine of 3 read/write requests, 4 if you have extra data to send.
634  *
635  * An idle winbind client has a read request of 4 bytes outstanding,
636  * finalizing function is request_len_recv, checking the length. request_recv
637  * then processes the packet. The processing function then at some point has
638  * to call request_finished which schedules sending the response.
639  */
640
641 static void request_finished(struct winbindd_cli_state *state);
642
643 static void winbind_client_request_read(struct tevent_req *req);
644 static void winbind_client_response_written(struct tevent_req *req);
645
646 static void request_finished(struct winbindd_cli_state *state)
647 {
648         struct tevent_req *req;
649
650         TALLOC_FREE(state->request);
651
652         req = wb_resp_write_send(state, winbind_event_context(),
653                                  state->out_queue, state->sock,
654                                  state->response);
655         if (req == NULL) {
656                 remove_client(state);
657                 return;
658         }
659         tevent_req_set_callback(req, winbind_client_response_written, state);
660 }
661
662 static void winbind_client_response_written(struct tevent_req *req)
663 {
664         struct winbindd_cli_state *state = tevent_req_callback_data(
665                 req, struct winbindd_cli_state);
666         ssize_t ret;
667         int err;
668
669         ret = wb_resp_write_recv(req, &err);
670         TALLOC_FREE(req);
671         if (ret == -1) {
672                 DEBUG(2, ("Could not write response to client: %s\n",
673                           strerror(err)));
674                 remove_client(state);
675                 return;
676         }
677
678         TALLOC_FREE(state->mem_ctx);
679         state->response = NULL;
680
681         req = wb_req_read_send(state, winbind_event_context(), state->sock,
682                                WINBINDD_MAX_EXTRA_DATA);
683         if (req == NULL) {
684                 remove_client(state);
685                 return;
686         }
687         tevent_req_set_callback(req, winbind_client_request_read, state);
688 }
689
690 void request_error(struct winbindd_cli_state *state)
691 {
692         SMB_ASSERT(state->response->result == WINBINDD_PENDING);
693         state->response->result = WINBINDD_ERROR;
694         request_finished(state);
695 }
696
697 void request_ok(struct winbindd_cli_state *state)
698 {
699         SMB_ASSERT(state->response->result == WINBINDD_PENDING);
700         state->response->result = WINBINDD_OK;
701         request_finished(state);
702 }
703
704 /* Process a new connection by adding it to the client connection list */
705
706 static void new_connection(int listen_sock, bool privileged)
707 {
708         struct sockaddr_un sunaddr;
709         struct winbindd_cli_state *state;
710         struct tevent_req *req;
711         socklen_t len;
712         int sock;
713
714         /* Accept connection */
715
716         len = sizeof(sunaddr);
717
718         do {
719                 sock = accept(listen_sock, (struct sockaddr *)(void *)&sunaddr,
720                               &len);
721         } while (sock == -1 && errno == EINTR);
722
723         if (sock == -1)
724                 return;
725
726         DEBUG(6,("accepted socket %d\n", sock));
727
728         /* Create new connection structure */
729
730         if ((state = TALLOC_ZERO_P(NULL, struct winbindd_cli_state)) == NULL) {
731                 close(sock);
732                 return;
733         }
734
735         state->sock = sock;
736
737         state->out_queue = tevent_queue_create(state, "winbind client reply");
738         if (state->out_queue == NULL) {
739                 close(sock);
740                 TALLOC_FREE(state);
741                 return;
742         }
743
744         state->last_access = time(NULL);        
745
746         state->privileged = privileged;
747
748         req = wb_req_read_send(state, winbind_event_context(), state->sock,
749                                WINBINDD_MAX_EXTRA_DATA);
750         if (req == NULL) {
751                 TALLOC_FREE(state);
752                 close(sock);
753                 return;
754         }
755         tevent_req_set_callback(req, winbind_client_request_read, state);
756
757         /* Add to connection list */
758
759         winbindd_add_client(state);
760 }
761
762 static void winbind_client_request_read(struct tevent_req *req)
763 {
764         struct winbindd_cli_state *state = tevent_req_callback_data(
765                 req, struct winbindd_cli_state);
766         ssize_t ret;
767         int err;
768
769         ret = wb_req_read_recv(req, state, &state->request, &err);
770         TALLOC_FREE(req);
771         if (ret == -1) {
772                 DEBUG(2, ("Could not read client request: %s\n",
773                           strerror(err)));
774                 remove_client(state);
775                 return;
776         }
777         process_request(state);
778 }
779
780 /* Remove a client connection from client connection list */
781
782 static void remove_client(struct winbindd_cli_state *state)
783 {
784         char c = 0;
785         int nwritten;
786
787         /* It's a dead client - hold a funeral */
788
789         if (state == NULL) {
790                 return;
791         }
792
793         /* tell client, we are closing ... */
794         nwritten = write(state->sock, &c, sizeof(c));
795         if (nwritten == -1) {
796                 /* 
797                  * ignore EPIPE error here, because the other end might
798                  * have already closed the socket.
799                  */
800                 if (errno != EPIPE) {
801                         DEBUG(2, ("final write to client failed: %s\n",
802                                 strerror(errno)));
803                 }
804         }
805
806         /* Close socket */
807
808         close(state->sock);
809
810         /* Free any getent state */
811
812         free_getent_state(state->getpwent_state);
813         free_getent_state(state->getgrent_state);
814
815         TALLOC_FREE(state->mem_ctx);
816
817         /* Remove from list and free */
818
819         winbindd_remove_client(state);
820         TALLOC_FREE(state);
821 }
822
823 /* Shutdown client connection which has been idle for the longest time */
824
825 static bool remove_idle_client(void)
826 {
827         struct winbindd_cli_state *state, *remove_state = NULL;
828         time_t last_access = 0;
829         int nidle = 0;
830
831         for (state = winbindd_client_list(); state; state = state->next) {
832                 if (state->response == NULL &&
833                     !state->getpwent_state && !state->getgrent_state) {
834                         nidle++;
835                         if (!last_access || state->last_access < last_access) {
836                                 last_access = state->last_access;
837                                 remove_state = state;
838                         }
839                 }
840         }
841
842         if (remove_state) {
843                 DEBUG(5,("Found %d idle client connections, shutting down sock %d, pid %u\n",
844                         nidle, remove_state->sock, (unsigned int)remove_state->pid));
845                 remove_client(remove_state);
846                 return True;
847         }
848
849         return False;
850 }
851
852 struct winbindd_listen_state {
853         bool privileged;
854         int fd;
855 };
856
857 static void winbindd_listen_fde_handler(struct tevent_context *ev,
858                                         struct tevent_fd *fde,
859                                         uint16_t flags,
860                                         void *private_data)
861 {
862         struct winbindd_listen_state *s = talloc_get_type_abort(private_data,
863                                           struct winbindd_listen_state);
864
865         while (winbindd_num_clients() >
866                WINBINDD_MAX_SIMULTANEOUS_CLIENTS - 1) {
867                 DEBUG(5,("winbindd: Exceeding %d client "
868                          "connections, removing idle "
869                          "connection.\n",
870                          WINBINDD_MAX_SIMULTANEOUS_CLIENTS));
871                 if (!remove_idle_client()) {
872                         DEBUG(0,("winbindd: Exceeding %d "
873                                  "client connections, no idle "
874                                  "connection found\n",
875                                  WINBINDD_MAX_SIMULTANEOUS_CLIENTS));
876                         break;
877                 }
878         }
879         new_connection(s->fd, s->privileged);
880 }
881
882 static bool winbindd_setup_listeners(void)
883 {
884         struct winbindd_listen_state *pub_state = NULL;
885         struct winbindd_listen_state *priv_state = NULL;
886         struct tevent_fd *fde;
887
888         pub_state = talloc(winbind_event_context(),
889                            struct winbindd_listen_state);
890         if (!pub_state) {
891                 goto failed;
892         }
893
894         pub_state->privileged = false;
895         pub_state->fd = open_winbindd_socket();
896         if (pub_state->fd == -1) {
897                 goto failed;
898         }
899
900         fde = tevent_add_fd(winbind_event_context(), pub_state, pub_state->fd,
901                             TEVENT_FD_READ, winbindd_listen_fde_handler,
902                             pub_state);
903         if (fde == NULL) {
904                 close(pub_state->fd);
905                 goto failed;
906         }
907         tevent_fd_set_auto_close(fde);
908
909         priv_state = talloc(winbind_event_context(),
910                             struct winbindd_listen_state);
911         if (!priv_state) {
912                 goto failed;
913         }
914
915         priv_state->privileged = true;
916         priv_state->fd = open_winbindd_priv_socket();
917         if (priv_state->fd == -1) {
918                 goto failed;
919         }
920
921         fde = tevent_add_fd(winbind_event_context(), priv_state,
922                             priv_state->fd, TEVENT_FD_READ,
923                             winbindd_listen_fde_handler, priv_state);
924         if (fde == NULL) {
925                 close(priv_state->fd);
926                 goto failed;
927         }
928         tevent_fd_set_auto_close(fde);
929
930         return true;
931 failed:
932         TALLOC_FREE(pub_state);
933         TALLOC_FREE(priv_state);
934         return false;
935 }
936
937 bool winbindd_use_idmap_cache(void)
938 {
939         return !opt_nocache;
940 }
941
942 bool winbindd_use_cache(void)
943 {
944         return !opt_nocache;
945 }
946
947 /* Main function */
948
949 int main(int argc, char **argv, char **envp)
950 {
951         static bool is_daemon = False;
952         static bool Fork = True;
953         static bool log_stdout = False;
954         static bool no_process_group = False;
955         enum {
956                 OPT_DAEMON = 1000,
957                 OPT_FORK,
958                 OPT_NO_PROCESS_GROUP,
959                 OPT_LOG_STDOUT
960         };
961         struct poptOption long_options[] = {
962                 POPT_AUTOHELP
963                 { "stdout", 'S', POPT_ARG_NONE, NULL, OPT_LOG_STDOUT, "Log to stdout" },
964                 { "foreground", 'F', POPT_ARG_NONE, NULL, OPT_FORK, "Daemon in foreground mode" },
965                 { "no-process-group", 0, POPT_ARG_NONE, NULL, OPT_NO_PROCESS_GROUP, "Don't create a new process group" },
966                 { "daemon", 'D', POPT_ARG_NONE, NULL, OPT_DAEMON, "Become a daemon (default)" },
967                 { "interactive", 'i', POPT_ARG_NONE, NULL, 'i', "Interactive mode" },
968                 { "no-caching", 'n', POPT_ARG_NONE, NULL, 'n', "Disable caching" },
969                 POPT_COMMON_SAMBA
970                 POPT_TABLEEND
971         };
972         poptContext pc;
973         int opt;
974         TALLOC_CTX *frame = talloc_stackframe();
975         struct tevent_timer *te;
976
977         /* glibc (?) likes to print "User defined signal 1" and exit if a
978            SIGUSR[12] is received before a handler is installed */
979
980         CatchSignal(SIGUSR1, SIG_IGN);
981         CatchSignal(SIGUSR2, SIG_IGN);
982
983         fault_setup((void (*)(void *))fault_quit );
984         dump_core_setup("winbindd");
985
986         load_case_tables();
987
988         /* Initialise for running in non-root mode */
989
990         sec_init();
991
992         set_remote_machine_name("winbindd", False);
993
994         /* Set environment variable so we don't recursively call ourselves.
995            This may also be useful interactively. */
996
997         if ( !winbind_off() ) {
998                 DEBUG(0,("Failed to disable recusive winbindd calls.  Exiting.\n"));
999                 exit(1);
1000         }
1001
1002         /* Initialise samba/rpc client stuff */
1003
1004         pc = poptGetContext("winbindd", argc, (const char **)argv, long_options, 0);
1005
1006         while ((opt = poptGetNextOpt(pc)) != -1) {
1007                 switch (opt) {
1008                         /* Don't become a daemon */
1009                 case OPT_DAEMON:
1010                         is_daemon = True;
1011                         break;
1012                 case 'i':
1013                         interactive = True;
1014                         log_stdout = True;
1015                         Fork = False;
1016                         break;
1017                 case OPT_FORK:
1018                         Fork = false;
1019                         break;
1020                 case OPT_NO_PROCESS_GROUP:
1021                         no_process_group = true;
1022                         break;
1023                 case OPT_LOG_STDOUT:
1024                         log_stdout = true;
1025                         break;
1026                 case 'n':
1027                         opt_nocache = true;
1028                         break;
1029                 default:
1030                         d_fprintf(stderr, "\nInvalid option %s: %s\n\n",
1031                                   poptBadOption(pc, 0), poptStrerror(opt));
1032                         poptPrintUsage(pc, stderr, 0);
1033                         exit(1);
1034                 }
1035         }
1036
1037         if (is_daemon && interactive) {
1038                 d_fprintf(stderr,"\nERROR: "
1039                           "Option -i|--interactive is not allowed together with -D|--daemon\n\n");
1040                 poptPrintUsage(pc, stderr, 0);
1041                 exit(1);
1042         }
1043
1044         if (log_stdout && Fork) {
1045                 d_fprintf(stderr, "\nERROR: "
1046                           "Can't log to stdout (-S) unless daemon is in foreground +(-F) or interactive (-i)\n\n");
1047                 poptPrintUsage(pc, stderr, 0);
1048                 exit(1);
1049         }
1050
1051         poptFreeContext(pc);
1052
1053         if (!override_logfile) {
1054                 char *lfile = NULL;
1055                 if (asprintf(&lfile,"%s/log.winbindd",
1056                                 get_dyn_LOGFILEBASE()) > 0) {
1057                         lp_set_logfile(lfile);
1058                         SAFE_FREE(lfile);
1059                 }
1060         }
1061         setup_logging("winbindd", log_stdout);
1062         reopen_logs();
1063
1064         DEBUG(0,("winbindd version %s started.\n", samba_version_string()));
1065         DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE));
1066
1067         if (!lp_load_initial_only(get_dyn_CONFIGFILE())) {
1068                 DEBUG(0, ("error opening config file\n"));
1069                 exit(1);
1070         }
1071
1072         /* Initialise messaging system */
1073
1074         if (winbind_messaging_context() == NULL) {
1075                 exit(1);
1076         }
1077
1078         if (!reload_services_file(NULL)) {
1079                 DEBUG(0, ("error opening config file\n"));
1080                 exit(1);
1081         }
1082
1083         if (!directory_exist(lp_lockdir())) {
1084                 mkdir(lp_lockdir(), 0755);
1085         }
1086
1087         /* Setup names. */
1088
1089         if (!init_names())
1090                 exit(1);
1091
1092         load_interfaces();
1093
1094         if (!secrets_init()) {
1095
1096                 DEBUG(0,("Could not initialize domain trust account secrets. Giving up\n"));
1097                 return False;
1098         }
1099
1100         /* Enable netbios namecache */
1101
1102         namecache_enable();
1103
1104         /* Unblock all signals we are interested in as they may have been
1105            blocked by the parent process. */
1106
1107         BlockSignals(False, SIGINT);
1108         BlockSignals(False, SIGQUIT);
1109         BlockSignals(False, SIGTERM);
1110         BlockSignals(False, SIGUSR1);
1111         BlockSignals(False, SIGUSR2);
1112         BlockSignals(False, SIGHUP);
1113         BlockSignals(False, SIGCHLD);
1114
1115         if (!interactive)
1116                 become_daemon(Fork, no_process_group);
1117
1118         pidfile_create("winbindd");
1119
1120 #if HAVE_SETPGID
1121         /*
1122          * If we're interactive we want to set our own process group for
1123          * signal management.
1124          */
1125         if (interactive && !no_process_group)
1126                 setpgid( (pid_t)0, (pid_t)0);
1127 #endif
1128
1129         TimeInit();
1130
1131         /* Don't use winbindd_reinit_after_fork here as
1132          * we're just starting up and haven't created any
1133          * winbindd-specific resources we must free yet. JRA.
1134          */
1135
1136         if (!NT_STATUS_IS_OK(reinit_after_fork(winbind_messaging_context(),
1137                                                winbind_event_context(),
1138                                                false))) {
1139                 DEBUG(0,("reinit_after_fork() failed\n"));
1140                 exit(1);
1141         }
1142
1143         /* Setup signal handlers */
1144
1145         if (!winbindd_setup_sig_term_handler(true))
1146                 exit(1);
1147         if (!winbindd_setup_sig_hup_handler(NULL))
1148                 exit(1);
1149         if (!winbindd_setup_sig_chld_handler())
1150                 exit(1);
1151         if (!winbindd_setup_sig_usr2_handler())
1152                 exit(1);
1153
1154         CatchSignal(SIGPIPE, SIG_IGN);                 /* Ignore sigpipe */
1155
1156         /*
1157          * Ensure all cache and idmap caches are consistent
1158          * and initialized before we startup.
1159          */
1160         if (!winbindd_cache_validate_and_initialize()) {
1161                 exit(1);
1162         }
1163
1164         /* get broadcast messages */
1165         claim_connection(NULL,"",FLAG_MSG_GENERAL|FLAG_MSG_DBWRAP);
1166
1167         /* React on 'smbcontrol winbindd reload-config' in the same way
1168            as to SIGHUP signal */
1169         messaging_register(winbind_messaging_context(), NULL,
1170                            MSG_SMB_CONF_UPDATED, msg_reload_services);
1171         messaging_register(winbind_messaging_context(), NULL,
1172                            MSG_SHUTDOWN, msg_shutdown);
1173
1174         /* Handle online/offline messages. */
1175         messaging_register(winbind_messaging_context(), NULL,
1176                            MSG_WINBIND_OFFLINE, winbind_msg_offline);
1177         messaging_register(winbind_messaging_context(), NULL,
1178                            MSG_WINBIND_ONLINE, winbind_msg_online);
1179         messaging_register(winbind_messaging_context(), NULL,
1180                            MSG_WINBIND_ONLINESTATUS, winbind_msg_onlinestatus);
1181
1182         messaging_register(winbind_messaging_context(), NULL,
1183                            MSG_DUMP_EVENT_LIST, winbind_msg_dump_event_list);
1184
1185         messaging_register(winbind_messaging_context(), NULL,
1186                            MSG_WINBIND_VALIDATE_CACHE,
1187                            winbind_msg_validate_cache);
1188
1189         messaging_register(winbind_messaging_context(), NULL,
1190                            MSG_WINBIND_DUMP_DOMAIN_LIST,
1191                            winbind_msg_dump_domain_list);
1192
1193         /* Register handler for MSG_DEBUG. */
1194         messaging_register(winbind_messaging_context(), NULL,
1195                            MSG_DEBUG,
1196                            winbind_msg_debug);
1197
1198         netsamlogon_cache_init(); /* Non-critical */
1199
1200         /* clear the cached list of trusted domains */
1201
1202         wcache_tdc_clear();     
1203
1204         if (!init_domain_list()) {
1205                 DEBUG(0,("unable to initialize domain list\n"));
1206                 exit(1);
1207         }
1208
1209         init_idmap_child();
1210         init_locator_child();
1211
1212         smb_nscd_flush_user_cache();
1213         smb_nscd_flush_group_cache();
1214
1215         /* setup listen sockets */
1216
1217         if (!winbindd_setup_listeners()) {
1218                 DEBUG(0,("winbindd_setup_listeners() failed\n"));
1219                 exit(1);
1220         }
1221
1222         te = tevent_add_timer(winbind_event_context(), NULL, timeval_zero(),
1223                               rescan_trusted_domains, NULL);
1224         if (te == NULL) {
1225                 DEBUG(0, ("Could not trigger rescan_trusted_domains()\n"));
1226                 exit(1);
1227         }
1228
1229         TALLOC_FREE(frame);
1230         /* Loop waiting for requests */
1231         while (1) {
1232                 frame = talloc_stackframe();
1233
1234                 if (tevent_loop_once(winbind_event_context()) == -1) {
1235                         DEBUG(1, ("tevent_loop_once() failed: %s\n",
1236                                   strerror(errno)));
1237                         return 1;
1238                 }
1239
1240                 TALLOC_FREE(frame);
1241         }
1242
1243         return 0;
1244 }