I'm doing some things towards the NamedPipes game with lckl and he has asked me
[Samba/ekacnet.git] / source / nsswitch / winbindd.c
blob25b69cee6d85d986199af1e40adf086d62621bae
1 /*
2 Unix SMB/Netbios implementation.
3 Version 3.0
5 Winbind daemon for ntdom nss module
7 Copyright (C) by Tim Potter 2000, 2001
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #include "winbindd.h"
26 /* List of all connected clients */
28 struct winbindd_cli_state *client_list;
29 static int num_clients;
30 BOOL opt_nocache;
32 /* Reload configuration */
34 static BOOL reload_services_file(BOOL test)
36 BOOL ret;
37 pstring logfile;
39 if (lp_loaded()) {
40 pstring fname;
42 pstrcpy(fname,lp_configfile());
43 if (file_exist(fname,NULL) && !strcsequal(fname,dyn_CONFIGFILE)) {
44 pstrcpy(dyn_CONFIGFILE,fname);
45 test = False;
49 snprintf(logfile, sizeof(logfile), "%s/log.winbindd", dyn_LOGFILEBASE);
50 lp_set_logfile(logfile);
52 reopen_logs();
53 ret = lp_load(dyn_CONFIGFILE,False,False,True);
55 snprintf(logfile, sizeof(logfile), "%s/log.winbindd", dyn_LOGFILEBASE);
56 lp_set_logfile(logfile);
58 reopen_logs();
59 load_interfaces();
61 return(ret);
64 #if DUMP_CORE
66 /**************************************************************************** **
67 Prepare to dump a core file - carefully!
68 **************************************************************************** */
70 static BOOL dump_core(void)
72 char *p;
73 pstring dname;
74 pstrcpy( dname, lp_logfile() );
75 if ((p=strrchr(dname,'/')))
76 *p=0;
77 pstrcat( dname, "/corefiles" );
78 mkdir( dname, 0700 );
79 sys_chown( dname, getuid(), getgid() );
80 chmod( dname, 0700 );
81 if ( chdir(dname) )
82 return( False );
83 umask( ~(0700) );
85 #ifdef HAVE_GETRLIMIT
86 #ifdef RLIMIT_CORE
88 struct rlimit rlp;
89 getrlimit( RLIMIT_CORE, &rlp );
90 rlp.rlim_cur = MAX( 4*1024*1024, rlp.rlim_cur );
91 setrlimit( RLIMIT_CORE, &rlp );
92 getrlimit( RLIMIT_CORE, &rlp );
93 DEBUG( 3, ( "Core limits now %d %d\n", (int)rlp.rlim_cur, (int)rlp.rlim_max ) );
95 #endif
96 #endif
98 DEBUG(0,("Dumping core in %s\n",dname));
99 abort();
100 return( True );
101 } /* dump_core */
102 #endif
104 /**************************************************************************** **
105 Handle a fault..
106 **************************************************************************** */
108 static void fault_quit(void)
110 #if DUMP_CORE
111 dump_core();
112 #endif
115 static void winbindd_status(void)
117 struct winbindd_cli_state *tmp;
119 DEBUG(0, ("winbindd status:\n"));
121 /* Print client state information */
123 DEBUG(0, ("\t%d clients currently active\n", num_clients));
125 if (DEBUGLEVEL >= 2 && num_clients) {
126 DEBUG(2, ("\tclient list:\n"));
127 for(tmp = client_list; tmp; tmp = tmp->next) {
128 DEBUG(2, ("\t\tpid %d, sock %d, rbl %d, wbl %d\n",
129 tmp->pid, tmp->sock, tmp->read_buf_len,
130 tmp->write_buf_len));
135 /* Print winbindd status to log file */
137 static void print_winbindd_status(void)
139 winbindd_status();
140 winbindd_idmap_status();
141 winbindd_cm_status();
144 /* Flush client cache */
146 static void flush_caches(void)
148 /* Clear cached user and group enumation info */
149 wcache_flush_cache();
152 /* Handle the signal by unlinking socket and exiting */
154 static void terminate(void)
156 pstring path;
158 /* Remove socket file */
159 snprintf(path, sizeof(path), "%s/%s",
160 WINBINDD_SOCKET_DIR, WINBINDD_SOCKET_NAME);
161 unlink(path);
162 exit(0);
165 static BOOL do_sigterm;
167 static void termination_handler(int signum)
169 do_sigterm = True;
172 static BOOL do_sigusr2;
174 static void sigusr2_handler(int signum)
176 do_sigusr2 = True;
179 static BOOL do_sighup;
181 static void sighup_handler(int signum)
183 do_sighup = True;
186 /* Create winbindd socket */
188 static int create_sock(void)
190 return create_pipe_sock( WINBINDD_SOCKET_DIR,
191 WINBINDD_SOCKET_NAME, 0755);
194 struct dispatch_table {
195 enum winbindd_cmd cmd;
196 enum winbindd_result (*fn)(struct winbindd_cli_state *state);
197 char *winbindd_cmd_name;
200 static struct dispatch_table dispatch_table[] = {
202 /* User functions */
204 { WINBINDD_GETPWNAM, winbindd_getpwnam, "GETPWNAM" },
205 { WINBINDD_GETPWUID, winbindd_getpwuid, "GETPWUID" },
207 { WINBINDD_SETPWENT, winbindd_setpwent, "SETPWENT" },
208 { WINBINDD_ENDPWENT, winbindd_endpwent, "ENDPWENT" },
209 { WINBINDD_GETPWENT, winbindd_getpwent, "GETPWENT" },
211 { WINBINDD_GETGROUPS, winbindd_getgroups, "GETGROUPS" },
213 /* Group functions */
215 { WINBINDD_GETGRNAM, winbindd_getgrnam, "GETGRNAM" },
216 { WINBINDD_GETGRGID, winbindd_getgrgid, "GETGRGID" },
217 { WINBINDD_SETGRENT, winbindd_setgrent, "SETGRENT" },
218 { WINBINDD_ENDGRENT, winbindd_endgrent, "ENDGRENT" },
219 { WINBINDD_GETGRENT, winbindd_getgrent, "GETGRENT" },
221 /* PAM auth functions */
223 { WINBINDD_PAM_AUTH, winbindd_pam_auth, "PAM_AUTH" },
224 { WINBINDD_PAM_AUTH_CRAP, winbindd_pam_auth_crap, "AUTH_CRAP" },
225 { WINBINDD_PAM_CHAUTHTOK, winbindd_pam_chauthtok, "CHAUTHTOK" },
227 /* Enumeration functions */
229 { WINBINDD_LIST_USERS, winbindd_list_users, "LIST_USERS" },
230 { WINBINDD_LIST_GROUPS, winbindd_list_groups, "LIST_GROUPS" },
231 { WINBINDD_LIST_TRUSTDOM, winbindd_list_trusted_domains, "LIST_TRUSTDOM" },
233 /* SID related functions */
235 { WINBINDD_LOOKUPSID, winbindd_lookupsid, "LOOKUPSID" },
236 { WINBINDD_LOOKUPNAME, winbindd_lookupname, "LOOKUPNAME" },
238 /* Lookup related functions */
240 { WINBINDD_SID_TO_UID, winbindd_sid_to_uid, "SID_TO_UID" },
241 { WINBINDD_SID_TO_GID, winbindd_sid_to_gid, "SID_TO_GID" },
242 { WINBINDD_GID_TO_SID, winbindd_gid_to_sid, "GID_TO_SID" },
243 { WINBINDD_UID_TO_SID, winbindd_uid_to_sid, "UID_TO_SID" },
245 /* Miscellaneous */
247 { WINBINDD_CHECK_MACHACC, winbindd_check_machine_acct, "CHECK_MACHACC" },
248 { WINBINDD_PING, winbindd_ping, "PING" },
249 { WINBINDD_INFO, winbindd_info, "INFO" },
250 { WINBINDD_INTERFACE_VERSION, winbindd_interface_version, "INTERFACE_VERSION" },
252 /* End of list */
254 { WINBINDD_NUM_CMDS, NULL, "NONE" }
257 static void process_request(struct winbindd_cli_state *state)
259 struct dispatch_table *table = dispatch_table;
261 /* Free response data - we may be interrupted and receive another
262 command before being able to send this data off. */
264 SAFE_FREE(state->response.extra_data);
266 ZERO_STRUCT(state->response);
268 state->response.result = WINBINDD_ERROR;
269 state->response.length = sizeof(struct winbindd_response);
271 /* Process command */
273 for (table = dispatch_table; table->fn; table++) {
274 if (state->request.cmd == table->cmd) {
275 DEBUG(10,("process_request: request fn %s\n", table->winbindd_cmd_name ));
276 state->response.result = table->fn(state);
277 break;
281 if (!table->fn)
282 DEBUG(10,("process_request: unknown request fn number %d\n", (int)state->request.cmd ));
284 /* In case extra data pointer is NULL */
286 if (!state->response.extra_data)
287 state->response.length = sizeof(struct winbindd_response);
290 /* Process a new connection by adding it to the client connection list */
292 static void new_connection(int accept_sock)
294 struct sockaddr_un sunaddr;
295 struct winbindd_cli_state *state;
296 socklen_t len;
297 int sock;
299 /* Accept connection */
301 len = sizeof(sunaddr);
303 do {
304 sock = accept(accept_sock, (struct sockaddr *)&sunaddr, &len);
305 } while (sock == -1 && errno == EINTR);
307 if (sock == -1)
308 return;
310 DEBUG(6,("accepted socket %d\n", sock));
312 /* Create new connection structure */
314 if ((state = (struct winbindd_cli_state *)
315 malloc(sizeof(*state))) == NULL)
316 return;
318 ZERO_STRUCTP(state);
319 state->sock = sock;
321 /* Add to connection list */
323 DLIST_ADD(client_list, state);
324 num_clients++;
327 /* Remove a client connection from client connection list */
329 static void remove_client(struct winbindd_cli_state *state)
331 /* It's a dead client - hold a funeral */
333 if (state != NULL) {
335 /* Close socket */
337 close(state->sock);
339 /* Free any getent state */
341 free_getent_state(state->getpwent_state);
342 free_getent_state(state->getgrent_state);
344 /* We may have some extra data that was not freed if the
345 client was killed unexpectedly */
347 SAFE_FREE(state->response.extra_data);
349 /* Remove from list and free */
351 DLIST_REMOVE(client_list, state);
352 SAFE_FREE(state);
353 num_clients--;
357 /* Process a complete received packet from a client */
359 static void process_packet(struct winbindd_cli_state *state)
361 /* Process request */
363 state->pid = state->request.pid;
365 process_request(state);
367 /* Update client state */
369 state->read_buf_len = 0;
370 state->write_buf_len = sizeof(struct winbindd_response);
373 /* Read some data from a client connection */
375 static void client_read(struct winbindd_cli_state *state)
377 int n;
379 /* Read data */
381 do {
383 n = read(state->sock, state->read_buf_len +
384 (char *)&state->request,
385 sizeof(state->request) - state->read_buf_len);
387 } while (n == -1 && errno == EINTR);
389 DEBUG(10,("client_read: read %d bytes. Need %d more for a full request.\n", n, sizeof(state->request) - n - state->read_buf_len ));
391 /* Read failed, kill client */
393 if (n == -1 || n == 0) {
394 DEBUG(5,("read failed on sock %d, pid %d: %s\n",
395 state->sock, state->pid,
396 (n == -1) ? strerror(errno) : "EOF"));
398 state->finished = True;
399 return;
402 /* Update client state */
404 state->read_buf_len += n;
407 /* Write some data to a client connection */
409 static void client_write(struct winbindd_cli_state *state)
411 char *data;
412 int num_written;
414 /* Write some data */
416 if (!state->write_extra_data) {
418 /* Write response structure */
420 data = (char *)&state->response + sizeof(state->response) -
421 state->write_buf_len;
423 } else {
425 /* Write extra data */
427 data = (char *)state->response.extra_data +
428 state->response.length -
429 sizeof(struct winbindd_response) -
430 state->write_buf_len;
433 do {
434 num_written = write(state->sock, data, state->write_buf_len);
435 } while (num_written == -1 && errno == EINTR);
437 DEBUG(10,("client_write: wrote %d bytes.\n", num_written ));
439 /* Write failed, kill cilent */
441 if (num_written == -1 || num_written == 0) {
443 DEBUG(3,("write failed on sock %d, pid %d: %s\n",
444 state->sock, state->pid,
445 (num_written == -1) ? strerror(errno) : "EOF"));
447 state->finished = True;
449 SAFE_FREE(state->response.extra_data);
451 return;
454 /* Update client state */
456 state->write_buf_len -= num_written;
458 /* Have we written all data? */
460 if (state->write_buf_len == 0) {
462 /* Take care of extra data */
464 if (state->write_extra_data) {
466 SAFE_FREE(state->response.extra_data);
468 state->write_extra_data = False;
470 DEBUG(10,("client_write: client_write: complete response written.\n"));
472 } else if (state->response.length >
473 sizeof(struct winbindd_response)) {
475 /* Start writing extra data */
477 state->write_buf_len =
478 state->response.length -
479 sizeof(struct winbindd_response);
481 DEBUG(10,("client_write: need to write %d extra data bytes.\n", (int)state->write_buf_len));
483 state->write_extra_data = True;
488 /* Process incoming clients on accept_sock. We use a tricky non-blocking,
489 non-forking, non-threaded model which allows us to handle many
490 simultaneous connections while remaining impervious to many denial of
491 service attacks. */
493 static void process_loop(int accept_sock)
495 /* We'll be doing this a lot */
497 while (1) {
498 struct winbindd_cli_state *state;
499 fd_set r_fds, w_fds;
500 int maxfd = accept_sock, selret;
501 struct timeval timeout;
503 /* Free up temporary memory */
505 lp_talloc_free();
507 /* Initialise fd lists for select() */
509 FD_ZERO(&r_fds);
510 FD_ZERO(&w_fds);
511 FD_SET(accept_sock, &r_fds);
513 timeout.tv_sec = WINBINDD_ESTABLISH_LOOP;
514 timeout.tv_usec = 0;
516 /* Set up client readers and writers */
518 state = client_list;
520 while (state) {
522 /* Dispose of client connection if it is marked as
523 finished */
525 if (state->finished) {
526 struct winbindd_cli_state *next = state->next;
528 remove_client(state);
529 state = next;
530 continue;
533 /* Select requires we know the highest fd used */
535 if (state->sock > maxfd)
536 maxfd = state->sock;
538 /* Add fd for reading */
540 if (state->read_buf_len != sizeof(state->request))
541 FD_SET(state->sock, &r_fds);
543 /* Add fd for writing */
545 if (state->write_buf_len)
546 FD_SET(state->sock, &w_fds);
548 state = state->next;
551 /* Call select */
553 selret = select(maxfd + 1, &r_fds, &w_fds, NULL, &timeout);
555 if (selret == 0)
556 continue;
558 if ((selret == -1 && errno != EINTR) || selret == 0) {
560 /* Select error, something is badly wrong */
562 perror("select");
563 exit(1);
566 /* Create a new connection if accept_sock readable */
568 if (selret > 0) {
570 if (FD_ISSET(accept_sock, &r_fds))
571 new_connection(accept_sock);
573 /* Process activity on client connections */
575 for (state = client_list; state; state = state->next) {
577 /* Data available for reading */
579 if (FD_ISSET(state->sock, &r_fds)) {
581 /* Read data */
583 client_read(state);
586 * If we have the start of a
587 * packet, then check the
588 * length field to make sure
589 * the client's not talking
590 * Mock Swedish.
593 if (state->read_buf_len >= sizeof(uint32)
594 && *(uint32 *) &state->request != sizeof(state->request)) {
595 DEBUG(0,("process_loop: Invalid request size (%d) send, should be (%d)\n",
596 *(uint32 *) &state->request, sizeof(state->request)));
598 remove_client(state);
599 break;
602 /* A request packet might be
603 complete */
605 if (state->read_buf_len ==
606 sizeof(state->request)) {
607 process_packet(state);
611 /* Data available for writing */
613 if (FD_ISSET(state->sock, &w_fds))
614 client_write(state);
618 /* Check signal handling things */
620 if (do_sigterm)
621 terminate();
623 if (do_sighup) {
625 /* Flush winbindd cache */
627 flush_caches();
628 reload_services_file(True);
629 do_sighup = False;
632 if (do_sigusr2) {
633 print_winbindd_status();
634 do_sigusr2 = False;
639 /* Main function */
641 struct winbindd_state server_state; /* Server state information */
643 int main(int argc, char **argv)
645 extern pstring global_myname;
646 extern fstring global_myworkgroup;
647 extern BOOL append_log;
648 pstring logfile;
649 int accept_sock;
650 BOOL interactive = False;
651 int opt, new_debuglevel = -1;
653 /* glibc (?) likes to print "User defined signal 1" and exit if a
654 SIGUSR2 is received before a handler is installed */
656 CatchSignal(SIGUSR2, SIG_IGN);
658 fault_setup((void (*)(void *))fault_quit );
660 /* Append to log file by default as we are a single process daemon
661 program. */
663 append_log = True;
665 snprintf(logfile, sizeof(logfile), "%s/log.winbindd", dyn_LOGFILEBASE);
666 lp_set_logfile(logfile);
668 /* Initialise for running in non-root mode */
670 sec_init();
672 /* Set environment variable so we don't recursively call ourselves.
673 This may also be useful interactively. */
675 SETENV(WINBINDD_DONT_ENV, "1", 1);
677 /* Initialise samba/rpc client stuff */
679 while ((opt = getopt(argc, argv, "id:s:n")) != EOF) {
680 switch (opt) {
682 /* Don't become a daemon */
683 case 'i':
684 interactive = True;
685 break;
687 /* disable cacheing */
688 case 'n':
689 opt_nocache = True;
690 break;
692 /* Run with specified debug level */
693 case 'd':
694 new_debuglevel = atoi(optarg);
695 break;
697 /* Load a different smb.conf file */
698 case 's':
699 pstrcpy(dyn_CONFIGFILE,optarg);
700 break;
702 default:
703 printf("Unknown option %c\n", (char)opt);
704 exit(1);
708 snprintf(logfile, sizeof(logfile), "%s/log.winbindd", dyn_LOGFILEBASE);
709 lp_set_logfile(logfile);
710 setup_logging("winbindd", interactive);
711 reopen_logs();
713 DEBUG(1, ("winbindd version %s started.\n", VERSION ) );
714 DEBUGADD( 1, ( "Copyright The Samba Team 2000-2001\n" ) );
716 if (!reload_services_file(False)) {
717 DEBUG(0, ("error opening config file\n"));
718 exit(1);
721 /* Setup names. */
722 if (!*global_myname) {
723 char *p;
725 fstrcpy(global_myname, myhostname());
726 p = strchr(global_myname, '.');
727 if (p)
728 *p = 0;
731 fstrcpy(global_myworkgroup, lp_workgroup());
733 if (new_debuglevel != -1)
734 DEBUGLEVEL = new_debuglevel;
736 if (!interactive)
737 become_daemon();
739 #if HAVE_SETPGID
741 * If we're interactive we want to set our own process group for
742 * signal management.
744 if (interactive)
745 setpgid( (pid_t)0, (pid_t)0);
746 #endif
748 load_interfaces();
750 secrets_init();
752 /* Get list of domains we look up requests for. This includes the
753 domain which we are a member of as well as any trusted
754 domains. */
756 init_domain_list();
758 ZERO_STRUCT(server_state);
760 /* Winbind daemon initialisation */
762 if (!winbindd_param_init())
763 return 1;
765 if (!winbindd_idmap_init())
766 return 1;
768 /* Unblock all signals we are interested in as they may have been
769 blocked by the parent process. */
771 BlockSignals(False, SIGINT);
772 BlockSignals(False, SIGQUIT);
773 BlockSignals(False, SIGTERM);
774 BlockSignals(False, SIGUSR2);
775 BlockSignals(False, SIGHUP);
777 /* Setup signal handlers */
779 CatchSignal(SIGINT, termination_handler); /* Exit on these sigs */
780 CatchSignal(SIGQUIT, termination_handler);
781 CatchSignal(SIGTERM, termination_handler);
783 CatchSignal(SIGPIPE, SIG_IGN); /* Ignore sigpipe */
784 CatchSignal(SIGUSR1, SIG_IGN); /* Samba messages */
786 CatchSignal(SIGUSR2, sigusr2_handler); /* Debugging sigs */
787 CatchSignal(SIGHUP, sighup_handler);
789 /* Create UNIX domain socket */
791 if ((accept_sock = create_sock()) == -1) {
792 DEBUG(0, ("failed to create socket\n"));
793 return 1;
796 /* Loop waiting for requests */
798 process_loop(accept_sock);
800 uni_group_cache_shutdown();
801 return 0;