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