s3:winbind: Convert WINBINDD_GETGRGID to the new API
[nivanova/samba-autobuild/.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_GETUSERSIDS, winbindd_getusersids, "GETUSERSIDS" },
435
436         /* Group functions */
437
438         { WINBINDD_GETGRNAM, winbindd_getgrnam, "GETGRNAM" },
439         { WINBINDD_SETGRENT, winbindd_setgrent, "SETGRENT" },
440         { WINBINDD_ENDGRENT, winbindd_endgrent, "ENDGRENT" },
441         { WINBINDD_GETGRENT, winbindd_getgrent, "GETGRENT" },
442         { WINBINDD_GETGRLST, winbindd_getgrent, "GETGRLST" },
443
444         /* PAM auth functions */
445
446         { WINBINDD_PAM_AUTH, winbindd_pam_auth, "PAM_AUTH" },
447         { WINBINDD_PAM_AUTH_CRAP, winbindd_pam_auth_crap, "AUTH_CRAP" },
448         { WINBINDD_PAM_CHAUTHTOK, winbindd_pam_chauthtok, "CHAUTHTOK" },
449         { WINBINDD_PAM_LOGOFF, winbindd_pam_logoff, "PAM_LOGOFF" },
450         { WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP, winbindd_pam_chng_pswd_auth_crap, "CHNG_PSWD_AUTH_CRAP" },
451
452         /* Enumeration functions */
453
454         { WINBINDD_LIST_USERS, winbindd_list_users, "LIST_USERS" },
455         { WINBINDD_LIST_GROUPS, winbindd_list_groups, "LIST_GROUPS" },
456         { WINBINDD_LIST_TRUSTDOM, winbindd_list_trusted_domains,
457           "LIST_TRUSTDOM" },
458
459         /* SID related functions */
460
461         { WINBINDD_LOOKUPRIDS, winbindd_lookuprids, "LOOKUPRIDS" },
462
463         /* Lookup related functions */
464
465         { WINBINDD_ALLOCATE_UID, winbindd_allocate_uid, "ALLOCATE_UID" },
466         { WINBINDD_ALLOCATE_GID, winbindd_allocate_gid, "ALLOCATE_GID" },
467         { WINBINDD_SET_MAPPING, winbindd_set_mapping, "SET_MAPPING" },
468         { WINBINDD_REMOVE_MAPPING, winbindd_remove_mapping, "REMOVE_MAPPING" },
469         { WINBINDD_SET_HWM, winbindd_set_hwm, "SET_HWMS" },
470
471         /* Miscellaneous */
472
473         { WINBINDD_CHECK_MACHACC, winbindd_check_machine_acct, "CHECK_MACHACC" },
474         { WINBINDD_INFO, winbindd_info, "INFO" },
475         { WINBINDD_INTERFACE_VERSION, winbindd_interface_version,
476           "INTERFACE_VERSION" },
477         { WINBINDD_DOMAIN_NAME, winbindd_domain_name, "DOMAIN_NAME" },
478         { WINBINDD_DOMAIN_INFO, winbindd_domain_info, "DOMAIN_INFO" },
479         { WINBINDD_NETBIOS_NAME, winbindd_netbios_name, "NETBIOS_NAME" },
480         { WINBINDD_PRIV_PIPE_DIR, winbindd_priv_pipe_dir,
481           "WINBINDD_PRIV_PIPE_DIR" },
482         { WINBINDD_GETDCNAME, winbindd_getdcname, "GETDCNAME" },
483         { WINBINDD_DSGETDCNAME, winbindd_dsgetdcname, "DSGETDCNAME" },
484
485         /* Credential cache access */
486         { WINBINDD_CCACHE_NTLMAUTH, winbindd_ccache_ntlm_auth, "NTLMAUTH" },
487
488         /* WINS functions */
489
490         { WINBINDD_WINS_BYNAME, winbindd_wins_byname, "WINS_BYNAME" },
491         { WINBINDD_WINS_BYIP, winbindd_wins_byip, "WINS_BYIP" },
492
493         /* End of list */
494
495         { WINBINDD_NUM_CMDS, NULL, "NONE" }
496 };
497
498 struct winbindd_async_dispatch_table {
499         enum winbindd_cmd cmd;
500         const char *cmd_name;
501         struct tevent_req *(*send_req)(TALLOC_CTX *mem_ctx,
502                                        struct tevent_context *ev,
503                                        struct winbindd_request *request);
504         NTSTATUS (*recv_req)(struct tevent_req *req,
505                              struct winbindd_response *presp);
506 };
507
508 static struct winbindd_async_dispatch_table async_nonpriv_table[] = {
509         { WINBINDD_PING, "PING",
510           wb_ping_send, wb_ping_recv },
511         { WINBINDD_LOOKUPSID, "LOOKUPSID",
512           winbindd_lookupsid_send, winbindd_lookupsid_recv },
513         { WINBINDD_LOOKUPNAME, "LOOKUPNAME",
514           winbindd_lookupname_send, winbindd_lookupname_recv },
515         { WINBINDD_SID_TO_UID, "SID_TO_UID",
516           winbindd_sid_to_uid_send, winbindd_sid_to_uid_recv },
517         { WINBINDD_SID_TO_GID, "SID_TO_GID",
518           winbindd_sid_to_gid_send, winbindd_sid_to_gid_recv },
519         { WINBINDD_UID_TO_SID, "UID_TO_SID",
520           winbindd_uid_to_sid_send, winbindd_uid_to_sid_recv },
521         { WINBINDD_GID_TO_SID, "GID_TO_SID",
522           winbindd_gid_to_sid_send, winbindd_gid_to_sid_recv },
523         { WINBINDD_GETPWSID, "GETPWSID",
524           winbindd_getpwsid_send, winbindd_getpwsid_recv },
525         { WINBINDD_GETPWNAM, "GETPWNAM",
526           winbindd_getpwnam_send, winbindd_getpwnam_recv },
527         { WINBINDD_GETPWUID, "GETPWUID",
528           winbindd_getpwuid_send, winbindd_getpwuid_recv },
529         { WINBINDD_GETSIDALIASES, "GETSIDALIASES",
530           winbindd_getsidaliases_send, winbindd_getsidaliases_recv },
531         { WINBINDD_GETUSERDOMGROUPS, "GETUSERDOMGROUPS",
532           winbindd_getuserdomgroups_send, winbindd_getuserdomgroups_recv },
533         { WINBINDD_GETGROUPS, "GETGROUPS",
534           winbindd_getgroups_send, winbindd_getgroups_recv },
535         { WINBINDD_SHOW_SEQUENCE, "SHOW_SEQUENCE",
536           winbindd_show_sequence_send, winbindd_show_sequence_recv },
537         { WINBINDD_GETGRGID, "GETGRGID",
538           winbindd_getgrgid_send, winbindd_getgrgid_recv },
539
540         { 0, NULL, NULL, NULL }
541 };
542
543 static void wb_request_done(struct tevent_req *req);
544
545 static void process_request(struct winbindd_cli_state *state)
546 {
547         struct winbindd_dispatch_table *table = dispatch_table;
548         struct winbindd_async_dispatch_table *atable;
549
550         state->mem_ctx = talloc_init("winbind request");
551         if (state->mem_ctx == NULL)
552                 return;
553
554         /* Remember who asked us. */
555         state->pid = state->request->pid;
556
557         /* Process command */
558
559         for (atable = async_nonpriv_table; atable->send_req; atable += 1) {
560                 if (state->request->cmd == atable->cmd) {
561                         break;
562                 }
563         }
564
565         if (atable->send_req != NULL) {
566                 struct tevent_req *req;
567
568                 DEBUG(10, ("process_request: Handling async request %s\n",
569                            atable->cmd_name));
570
571                 req = atable->send_req(state->mem_ctx, winbind_event_context(),
572                                        state->request);
573                 if (req == NULL) {
574                         DEBUG(0, ("process_request: atable->send failed for "
575                                   "%s\n", atable->cmd_name));
576                         request_error(state);
577                         return;
578                 }
579                 tevent_req_set_callback(req, wb_request_done, state);
580                 state->recv_fn = atable->recv_req;
581                 return;
582         }
583
584         state->response = talloc_zero(state->mem_ctx,
585                                       struct winbindd_response);
586         if (state->response == NULL) {
587                 DEBUG(10, ("talloc failed\n"));
588                 remove_client(state);
589                 return;
590         }
591         state->response->result = WINBINDD_PENDING;
592         state->response->length = sizeof(struct winbindd_response);
593
594         for (table = dispatch_table; table->fn; table++) {
595                 if (state->request->cmd == table->cmd) {
596                         DEBUG(10,("process_request: request fn %s\n",
597                                   table->winbindd_cmd_name ));
598                         table->fn(state);
599                         break;
600                 }
601         }
602
603         if (!table->fn) {
604                 DEBUG(10,("process_request: unknown request fn number %d\n",
605                           (int)state->request->cmd ));
606                 request_error(state);
607         }
608 }
609
610 static void wb_request_done(struct tevent_req *req)
611 {
612         struct winbindd_cli_state *state = tevent_req_callback_data(
613                 req, struct winbindd_cli_state);
614         NTSTATUS status;
615
616         state->response = talloc_zero(state, struct winbindd_response);
617         if (state->response == NULL) {
618                 remove_client(state);
619                 return;
620         }
621         state->response->result = WINBINDD_PENDING;
622         state->response->length = sizeof(struct winbindd_response);
623
624         status = state->recv_fn(req, state->response);
625         TALLOC_FREE(req);
626         if (!NT_STATUS_IS_OK(status)) {
627                 DEBUG(10, ("returning %s\n", nt_errstr(status)));
628                 request_error(state);
629                 return;
630         }
631         request_ok(state);
632 }
633
634 /*
635  * This is the main event loop of winbind requests. It goes through a
636  * state-machine of 3 read/write requests, 4 if you have extra data to send.
637  *
638  * An idle winbind client has a read request of 4 bytes outstanding,
639  * finalizing function is request_len_recv, checking the length. request_recv
640  * then processes the packet. The processing function then at some point has
641  * to call request_finished which schedules sending the response.
642  */
643
644 static void request_finished(struct winbindd_cli_state *state);
645
646 static void winbind_client_request_read(struct tevent_req *req);
647 static void winbind_client_response_written(struct tevent_req *req);
648
649 static void request_finished(struct winbindd_cli_state *state)
650 {
651         struct tevent_req *req;
652
653         TALLOC_FREE(state->request);
654
655         req = wb_resp_write_send(state, winbind_event_context(),
656                                  state->out_queue, state->sock,
657                                  state->response);
658         if (req == NULL) {
659                 remove_client(state);
660                 return;
661         }
662         tevent_req_set_callback(req, winbind_client_response_written, state);
663 }
664
665 static void winbind_client_response_written(struct tevent_req *req)
666 {
667         struct winbindd_cli_state *state = tevent_req_callback_data(
668                 req, struct winbindd_cli_state);
669         ssize_t ret;
670         int err;
671
672         ret = wb_resp_write_recv(req, &err);
673         TALLOC_FREE(req);
674         if (ret == -1) {
675                 DEBUG(2, ("Could not write response to client: %s\n",
676                           strerror(err)));
677                 remove_client(state);
678                 return;
679         }
680
681         TALLOC_FREE(state->mem_ctx);
682         state->response = NULL;
683
684         req = wb_req_read_send(state, winbind_event_context(), state->sock,
685                                WINBINDD_MAX_EXTRA_DATA);
686         if (req == NULL) {
687                 remove_client(state);
688                 return;
689         }
690         tevent_req_set_callback(req, winbind_client_request_read, state);
691 }
692
693 void request_error(struct winbindd_cli_state *state)
694 {
695         SMB_ASSERT(state->response->result == WINBINDD_PENDING);
696         state->response->result = WINBINDD_ERROR;
697         request_finished(state);
698 }
699
700 void request_ok(struct winbindd_cli_state *state)
701 {
702         SMB_ASSERT(state->response->result == WINBINDD_PENDING);
703         state->response->result = WINBINDD_OK;
704         request_finished(state);
705 }
706
707 /* Process a new connection by adding it to the client connection list */
708
709 static void new_connection(int listen_sock, bool privileged)
710 {
711         struct sockaddr_un sunaddr;
712         struct winbindd_cli_state *state;
713         struct tevent_req *req;
714         socklen_t len;
715         int sock;
716
717         /* Accept connection */
718
719         len = sizeof(sunaddr);
720
721         do {
722                 sock = accept(listen_sock, (struct sockaddr *)(void *)&sunaddr,
723                               &len);
724         } while (sock == -1 && errno == EINTR);
725
726         if (sock == -1)
727                 return;
728
729         DEBUG(6,("accepted socket %d\n", sock));
730
731         /* Create new connection structure */
732
733         if ((state = TALLOC_ZERO_P(NULL, struct winbindd_cli_state)) == NULL) {
734                 close(sock);
735                 return;
736         }
737
738         state->sock = sock;
739
740         state->out_queue = tevent_queue_create(state, "winbind client reply");
741         if (state->out_queue == NULL) {
742                 close(sock);
743                 TALLOC_FREE(state);
744                 return;
745         }
746
747         state->last_access = time(NULL);        
748
749         state->privileged = privileged;
750
751         req = wb_req_read_send(state, winbind_event_context(), state->sock,
752                                WINBINDD_MAX_EXTRA_DATA);
753         if (req == NULL) {
754                 TALLOC_FREE(state);
755                 close(sock);
756                 return;
757         }
758         tevent_req_set_callback(req, winbind_client_request_read, state);
759
760         /* Add to connection list */
761
762         winbindd_add_client(state);
763 }
764
765 static void winbind_client_request_read(struct tevent_req *req)
766 {
767         struct winbindd_cli_state *state = tevent_req_callback_data(
768                 req, struct winbindd_cli_state);
769         ssize_t ret;
770         int err;
771
772         ret = wb_req_read_recv(req, state, &state->request, &err);
773         TALLOC_FREE(req);
774         if (ret == -1) {
775                 DEBUG(2, ("Could not read client request: %s\n",
776                           strerror(err)));
777                 remove_client(state);
778                 return;
779         }
780         process_request(state);
781 }
782
783 /* Remove a client connection from client connection list */
784
785 static void remove_client(struct winbindd_cli_state *state)
786 {
787         char c = 0;
788         int nwritten;
789
790         /* It's a dead client - hold a funeral */
791
792         if (state == NULL) {
793                 return;
794         }
795
796         /* tell client, we are closing ... */
797         nwritten = write(state->sock, &c, sizeof(c));
798         if (nwritten == -1) {
799                 /* 
800                  * ignore EPIPE error here, because the other end might
801                  * have already closed the socket.
802                  */
803                 if (errno != EPIPE) {
804                         DEBUG(2, ("final write to client failed: %s\n",
805                                 strerror(errno)));
806                 }
807         }
808
809         /* Close socket */
810
811         close(state->sock);
812
813         /* Free any getent state */
814
815         free_getent_state(state->getpwent_state);
816         free_getent_state(state->getgrent_state);
817
818         TALLOC_FREE(state->mem_ctx);
819
820         /* Remove from list and free */
821
822         winbindd_remove_client(state);
823         TALLOC_FREE(state);
824 }
825
826 /* Shutdown client connection which has been idle for the longest time */
827
828 static bool remove_idle_client(void)
829 {
830         struct winbindd_cli_state *state, *remove_state = NULL;
831         time_t last_access = 0;
832         int nidle = 0;
833
834         for (state = winbindd_client_list(); state; state = state->next) {
835                 if (state->response == NULL &&
836                     !state->getpwent_state && !state->getgrent_state) {
837                         nidle++;
838                         if (!last_access || state->last_access < last_access) {
839                                 last_access = state->last_access;
840                                 remove_state = state;
841                         }
842                 }
843         }
844
845         if (remove_state) {
846                 DEBUG(5,("Found %d idle client connections, shutting down sock %d, pid %u\n",
847                         nidle, remove_state->sock, (unsigned int)remove_state->pid));
848                 remove_client(remove_state);
849                 return True;
850         }
851
852         return False;
853 }
854
855 struct winbindd_listen_state {
856         bool privileged;
857         int fd;
858 };
859
860 static void winbindd_listen_fde_handler(struct tevent_context *ev,
861                                         struct tevent_fd *fde,
862                                         uint16_t flags,
863                                         void *private_data)
864 {
865         struct winbindd_listen_state *s = talloc_get_type_abort(private_data,
866                                           struct winbindd_listen_state);
867
868         while (winbindd_num_clients() >
869                WINBINDD_MAX_SIMULTANEOUS_CLIENTS - 1) {
870                 DEBUG(5,("winbindd: Exceeding %d client "
871                          "connections, removing idle "
872                          "connection.\n",
873                          WINBINDD_MAX_SIMULTANEOUS_CLIENTS));
874                 if (!remove_idle_client()) {
875                         DEBUG(0,("winbindd: Exceeding %d "
876                                  "client connections, no idle "
877                                  "connection found\n",
878                                  WINBINDD_MAX_SIMULTANEOUS_CLIENTS));
879                         break;
880                 }
881         }
882         new_connection(s->fd, s->privileged);
883 }
884
885 static bool winbindd_setup_listeners(void)
886 {
887         struct winbindd_listen_state *pub_state = NULL;
888         struct winbindd_listen_state *priv_state = NULL;
889         struct tevent_fd *fde;
890
891         pub_state = talloc(winbind_event_context(),
892                            struct winbindd_listen_state);
893         if (!pub_state) {
894                 goto failed;
895         }
896
897         pub_state->privileged = false;
898         pub_state->fd = open_winbindd_socket();
899         if (pub_state->fd == -1) {
900                 goto failed;
901         }
902
903         fde = tevent_add_fd(winbind_event_context(), pub_state, pub_state->fd,
904                             TEVENT_FD_READ, winbindd_listen_fde_handler,
905                             pub_state);
906         if (fde == NULL) {
907                 close(pub_state->fd);
908                 goto failed;
909         }
910         tevent_fd_set_auto_close(fde);
911
912         priv_state = talloc(winbind_event_context(),
913                             struct winbindd_listen_state);
914         if (!priv_state) {
915                 goto failed;
916         }
917
918         priv_state->privileged = true;
919         priv_state->fd = open_winbindd_priv_socket();
920         if (priv_state->fd == -1) {
921                 goto failed;
922         }
923
924         fde = tevent_add_fd(winbind_event_context(), priv_state,
925                             priv_state->fd, TEVENT_FD_READ,
926                             winbindd_listen_fde_handler, priv_state);
927         if (fde == NULL) {
928                 close(priv_state->fd);
929                 goto failed;
930         }
931         tevent_fd_set_auto_close(fde);
932
933         return true;
934 failed:
935         TALLOC_FREE(pub_state);
936         TALLOC_FREE(priv_state);
937         return false;
938 }
939
940 bool winbindd_use_idmap_cache(void)
941 {
942         return !opt_nocache;
943 }
944
945 bool winbindd_use_cache(void)
946 {
947         return !opt_nocache;
948 }
949
950 /* Main function */
951
952 int main(int argc, char **argv, char **envp)
953 {
954         static bool is_daemon = False;
955         static bool Fork = True;
956         static bool log_stdout = False;
957         static bool no_process_group = False;
958         enum {
959                 OPT_DAEMON = 1000,
960                 OPT_FORK,
961                 OPT_NO_PROCESS_GROUP,
962                 OPT_LOG_STDOUT
963         };
964         struct poptOption long_options[] = {
965                 POPT_AUTOHELP
966                 { "stdout", 'S', POPT_ARG_NONE, NULL, OPT_LOG_STDOUT, "Log to stdout" },
967                 { "foreground", 'F', POPT_ARG_NONE, NULL, OPT_FORK, "Daemon in foreground mode" },
968                 { "no-process-group", 0, POPT_ARG_NONE, NULL, OPT_NO_PROCESS_GROUP, "Don't create a new process group" },
969                 { "daemon", 'D', POPT_ARG_NONE, NULL, OPT_DAEMON, "Become a daemon (default)" },
970                 { "interactive", 'i', POPT_ARG_NONE, NULL, 'i', "Interactive mode" },
971                 { "no-caching", 'n', POPT_ARG_NONE, NULL, 'n', "Disable caching" },
972                 POPT_COMMON_SAMBA
973                 POPT_TABLEEND
974         };
975         poptContext pc;
976         int opt;
977         TALLOC_CTX *frame = talloc_stackframe();
978         struct tevent_timer *te;
979
980         /* glibc (?) likes to print "User defined signal 1" and exit if a
981            SIGUSR[12] is received before a handler is installed */
982
983         CatchSignal(SIGUSR1, SIG_IGN);
984         CatchSignal(SIGUSR2, SIG_IGN);
985
986         fault_setup((void (*)(void *))fault_quit );
987         dump_core_setup("winbindd");
988
989         load_case_tables();
990
991         /* Initialise for running in non-root mode */
992
993         sec_init();
994
995         set_remote_machine_name("winbindd", False);
996
997         /* Set environment variable so we don't recursively call ourselves.
998            This may also be useful interactively. */
999
1000         if ( !winbind_off() ) {
1001                 DEBUG(0,("Failed to disable recusive winbindd calls.  Exiting.\n"));
1002                 exit(1);
1003         }
1004
1005         /* Initialise samba/rpc client stuff */
1006
1007         pc = poptGetContext("winbindd", argc, (const char **)argv, long_options, 0);
1008
1009         while ((opt = poptGetNextOpt(pc)) != -1) {
1010                 switch (opt) {
1011                         /* Don't become a daemon */
1012                 case OPT_DAEMON:
1013                         is_daemon = True;
1014                         break;
1015                 case 'i':
1016                         interactive = True;
1017                         log_stdout = True;
1018                         Fork = False;
1019                         break;
1020                 case OPT_FORK:
1021                         Fork = false;
1022                         break;
1023                 case OPT_NO_PROCESS_GROUP:
1024                         no_process_group = true;
1025                         break;
1026                 case OPT_LOG_STDOUT:
1027                         log_stdout = true;
1028                         break;
1029                 case 'n':
1030                         opt_nocache = true;
1031                         break;
1032                 default:
1033                         d_fprintf(stderr, "\nInvalid option %s: %s\n\n",
1034                                   poptBadOption(pc, 0), poptStrerror(opt));
1035                         poptPrintUsage(pc, stderr, 0);
1036                         exit(1);
1037                 }
1038         }
1039
1040         if (is_daemon && interactive) {
1041                 d_fprintf(stderr,"\nERROR: "
1042                           "Option -i|--interactive is not allowed together with -D|--daemon\n\n");
1043                 poptPrintUsage(pc, stderr, 0);
1044                 exit(1);
1045         }
1046
1047         if (log_stdout && Fork) {
1048                 d_fprintf(stderr, "\nERROR: "
1049                           "Can't log to stdout (-S) unless daemon is in foreground +(-F) or interactive (-i)\n\n");
1050                 poptPrintUsage(pc, stderr, 0);
1051                 exit(1);
1052         }
1053
1054         poptFreeContext(pc);
1055
1056         if (!override_logfile) {
1057                 char *lfile = NULL;
1058                 if (asprintf(&lfile,"%s/log.winbindd",
1059                                 get_dyn_LOGFILEBASE()) > 0) {
1060                         lp_set_logfile(lfile);
1061                         SAFE_FREE(lfile);
1062                 }
1063         }
1064         setup_logging("winbindd", log_stdout);
1065         reopen_logs();
1066
1067         DEBUG(0,("winbindd version %s started.\n", samba_version_string()));
1068         DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE));
1069
1070         if (!lp_load_initial_only(get_dyn_CONFIGFILE())) {
1071                 DEBUG(0, ("error opening config file\n"));
1072                 exit(1);
1073         }
1074
1075         /* Initialise messaging system */
1076
1077         if (winbind_messaging_context() == NULL) {
1078                 exit(1);
1079         }
1080
1081         if (!reload_services_file(NULL)) {
1082                 DEBUG(0, ("error opening config file\n"));
1083                 exit(1);
1084         }
1085
1086         if (!directory_exist(lp_lockdir())) {
1087                 mkdir(lp_lockdir(), 0755);
1088         }
1089
1090         /* Setup names. */
1091
1092         if (!init_names())
1093                 exit(1);
1094
1095         load_interfaces();
1096
1097         if (!secrets_init()) {
1098
1099                 DEBUG(0,("Could not initialize domain trust account secrets. Giving up\n"));
1100                 return False;
1101         }
1102
1103         /* Enable netbios namecache */
1104
1105         namecache_enable();
1106
1107         /* Unblock all signals we are interested in as they may have been
1108            blocked by the parent process. */
1109
1110         BlockSignals(False, SIGINT);
1111         BlockSignals(False, SIGQUIT);
1112         BlockSignals(False, SIGTERM);
1113         BlockSignals(False, SIGUSR1);
1114         BlockSignals(False, SIGUSR2);
1115         BlockSignals(False, SIGHUP);
1116         BlockSignals(False, SIGCHLD);
1117
1118         if (!interactive)
1119                 become_daemon(Fork, no_process_group);
1120
1121         pidfile_create("winbindd");
1122
1123 #if HAVE_SETPGID
1124         /*
1125          * If we're interactive we want to set our own process group for
1126          * signal management.
1127          */
1128         if (interactive && !no_process_group)
1129                 setpgid( (pid_t)0, (pid_t)0);
1130 #endif
1131
1132         TimeInit();
1133
1134         /* Don't use winbindd_reinit_after_fork here as
1135          * we're just starting up and haven't created any
1136          * winbindd-specific resources we must free yet. JRA.
1137          */
1138
1139         if (!NT_STATUS_IS_OK(reinit_after_fork(winbind_messaging_context(),
1140                                                winbind_event_context(),
1141                                                false))) {
1142                 DEBUG(0,("reinit_after_fork() failed\n"));
1143                 exit(1);
1144         }
1145
1146         /* Setup signal handlers */
1147
1148         if (!winbindd_setup_sig_term_handler(true))
1149                 exit(1);
1150         if (!winbindd_setup_sig_hup_handler(NULL))
1151                 exit(1);
1152         if (!winbindd_setup_sig_chld_handler())
1153                 exit(1);
1154         if (!winbindd_setup_sig_usr2_handler())
1155                 exit(1);
1156
1157         CatchSignal(SIGPIPE, SIG_IGN);                 /* Ignore sigpipe */
1158
1159         /*
1160          * Ensure all cache and idmap caches are consistent
1161          * and initialized before we startup.
1162          */
1163         if (!winbindd_cache_validate_and_initialize()) {
1164                 exit(1);
1165         }
1166
1167         /* get broadcast messages */
1168         claim_connection(NULL,"",FLAG_MSG_GENERAL|FLAG_MSG_DBWRAP);
1169
1170         /* React on 'smbcontrol winbindd reload-config' in the same way
1171            as to SIGHUP signal */
1172         messaging_register(winbind_messaging_context(), NULL,
1173                            MSG_SMB_CONF_UPDATED, msg_reload_services);
1174         messaging_register(winbind_messaging_context(), NULL,
1175                            MSG_SHUTDOWN, msg_shutdown);
1176
1177         /* Handle online/offline messages. */
1178         messaging_register(winbind_messaging_context(), NULL,
1179                            MSG_WINBIND_OFFLINE, winbind_msg_offline);
1180         messaging_register(winbind_messaging_context(), NULL,
1181                            MSG_WINBIND_ONLINE, winbind_msg_online);
1182         messaging_register(winbind_messaging_context(), NULL,
1183                            MSG_WINBIND_ONLINESTATUS, winbind_msg_onlinestatus);
1184
1185         messaging_register(winbind_messaging_context(), NULL,
1186                            MSG_DUMP_EVENT_LIST, winbind_msg_dump_event_list);
1187
1188         messaging_register(winbind_messaging_context(), NULL,
1189                            MSG_WINBIND_VALIDATE_CACHE,
1190                            winbind_msg_validate_cache);
1191
1192         messaging_register(winbind_messaging_context(), NULL,
1193                            MSG_WINBIND_DUMP_DOMAIN_LIST,
1194                            winbind_msg_dump_domain_list);
1195
1196         /* Register handler for MSG_DEBUG. */
1197         messaging_register(winbind_messaging_context(), NULL,
1198                            MSG_DEBUG,
1199                            winbind_msg_debug);
1200
1201         netsamlogon_cache_init(); /* Non-critical */
1202
1203         /* clear the cached list of trusted domains */
1204
1205         wcache_tdc_clear();     
1206
1207         if (!init_domain_list()) {
1208                 DEBUG(0,("unable to initialize domain list\n"));
1209                 exit(1);
1210         }
1211
1212         init_idmap_child();
1213         init_locator_child();
1214
1215         smb_nscd_flush_user_cache();
1216         smb_nscd_flush_group_cache();
1217
1218         /* setup listen sockets */
1219
1220         if (!winbindd_setup_listeners()) {
1221                 DEBUG(0,("winbindd_setup_listeners() failed\n"));
1222                 exit(1);
1223         }
1224
1225         te = tevent_add_timer(winbind_event_context(), NULL, timeval_zero(),
1226                               rescan_trusted_domains, NULL);
1227         if (te == NULL) {
1228                 DEBUG(0, ("Could not trigger rescan_trusted_domains()\n"));
1229                 exit(1);
1230         }
1231
1232         TALLOC_FREE(frame);
1233         /* Loop waiting for requests */
1234         while (1) {
1235                 frame = talloc_stackframe();
1236
1237                 if (tevent_loop_once(winbind_event_context()) == -1) {
1238                         DEBUG(1, ("tevent_loop_once() failed: %s\n",
1239                                   strerror(errno)));
1240                         return 1;
1241                 }
1242
1243                 TALLOC_FREE(frame);
1244         }
1245
1246         return 0;
1247 }