1 /* Copyright (c) 1998, 1999 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Thorsten Kukuk <kukuk@vt.uni-paderborn.de>, 1998.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
20 /* nscd - Name Service Cache Daemon. Caches passwd, group, and hosts. */
36 #include <sys/socket.h>
42 /* Get libc version number. */
45 #define PACKAGE _libc_intl_domainname
47 /* Structure used by main() thread to keep track of the number of
48 active threads. Used to limit how many threads it will create
49 and under a shutdown condition to wait till all in-progress
50 requests have finished before "turning off the lights". */
55 pthread_cond_t thread_exit_cv
;
56 pthread_mutex_t mutex
;
59 thread_info_t thread_info
;
62 int disabled_passwd
= 0;
63 int disabled_group
= 0;
64 int go_background
= 1;
65 static const char *conffile
= _PATH_NSCDCONF
;
67 static int check_pid (const char *file
);
68 static int write_pid (const char *file
);
70 /* Name and version of program. */
71 static void print_version (FILE *stream
, struct argp_state
*state
);
72 void (*argp_program_version_hook
) (FILE *, struct argp_state
*) = print_version
;
74 /* Definitions of arguments for argp functions. */
75 static const struct argp_option options
[] =
77 { "config-file", 'f', N_("NAME"), 0,
78 N_("Read configuration data from NAME") },
79 { "debug", 'd', NULL
, 0,
80 N_("Do not fork and display messages on the current tty") },
81 { "nthreads", 't', N_("NUMBER"), 0, N_("Start NUMBER threads") },
82 { "shutdown", 'K', NULL
, 0, N_("Shut the server down") },
83 { "statistic", 'g', NULL
, 0, N_("Print current configuration statistic") },
84 { NULL
, 0, NULL
, 0, NULL
}
87 /* Short description of program. */
88 static const char doc
[] = N_("Name Service Cache Daemon.");
90 /* Prototype for option handler. */
91 static error_t parse_opt
__P ((int key
, char *arg
, struct argp_state
*state
));
93 /* Data structure to communicate with argp functions. */
94 static struct argp argp
=
96 options
, parse_opt
, NULL
, doc
,
100 main (int argc
, char **argv
)
104 /* Set locale via LC_ALL. */
105 setlocale (LC_ALL
, "");
106 /* Set the text message domain. */
107 textdomain (PACKAGE
);
109 /* Parse and process arguments. */
110 argp_parse (&argp
, argc
, argv
, 0, &remaining
, NULL
);
112 if (remaining
!= argc
)
114 error (0, 0, gettext ("wrong number of arguments"));
115 argp_help (&argp
, stdout
, ARGP_HELP_SEE
, program_invocation_short_name
);
119 /* Check if we are already running. */
120 if (check_pid (_PATH_NSCDPID
))
121 error (EXIT_FAILURE
, 0, _("already running"));
123 /* Behave like a daemon. */
131 for (i
= 0; i
< getdtablesize (); i
++)
139 openlog ("nscd", LOG_CONS
| LOG_ODELAY
, LOG_DAEMON
);
141 if (write_pid (_PATH_NSCDPID
) < 0)
142 dbg_log ("%s: %s", _PATH_NSCDPID
, strerror (errno
));
144 /* Ignore job control signals. */
145 signal (SIGTTOU
, SIG_IGN
);
146 signal (SIGTTIN
, SIG_IGN
);
147 signal (SIGTSTP
, SIG_IGN
);
150 signal (SIGINT
, termination_handler
);
151 signal (SIGQUIT
, termination_handler
);
152 signal (SIGTERM
, termination_handler
);
153 signal (SIGPIPE
, SIG_IGN
);
155 /* Cleanup files created by a previous `bind'. */
156 unlink (_PATH_NSCDSOCKET
);
158 /* Init databases. */
159 nscd_init (conffile
);
161 /* Handle incoming requests */
168 /* Handle program arguments. */
170 parse_opt (int key
, char *arg
, struct argp_state
*state
)
185 error (EXIT_FAILURE
, 0, _("Only root is allowed to use this option!"));
187 int sock
= nscd_open_socket ();
194 req
.version
= NSCD_VERSION
;
197 nbytes
= TEMP_FAILURE_RETRY (write (sock
, &req
,
198 sizeof (request_header
)));
200 exit (nbytes
!= sizeof (request_header
) ? EXIT_FAILURE
: EXIT_SUCCESS
);
204 receive_print_stats ();
205 /* Does not return. */
208 nthreads
= atol (arg
);
212 return ARGP_ERR_UNKNOWN
;
218 /* Print the version information. */
220 print_version (FILE *stream
, struct argp_state
*state
)
222 fprintf (stream
, "nscd (GNU %s) %s\n", PACKAGE
, VERSION
);
223 fprintf (stream
, gettext ("\
224 Copyright (C) %s Free Software Foundation, Inc.\n\
225 This is free software; see the source for copying conditions. There is NO\n\
226 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
228 fprintf (stream
, gettext ("Written by %s.\n"),
229 "Thorsten Kukuk and Ulrich Drepper");
233 /* Create a socket connected to a name. */
235 nscd_open_socket (void)
237 struct sockaddr_un addr
;
240 sock
= socket (PF_UNIX
, SOCK_STREAM
, 0);
244 addr
.sun_family
= AF_UNIX
;
245 assert (sizeof (addr
.sun_path
) >= sizeof (_PATH_NSCDSOCKET
));
246 strcpy (addr
.sun_path
, _PATH_NSCDSOCKET
);
247 if (connect (sock
, (struct sockaddr
*) &addr
, sizeof (addr
)) < 0)
258 termination_handler (int signum
)
262 /* Clean up the file created by `bind'. */
263 unlink (_PATH_NSCDSOCKET
);
265 /* Clean up pid file. */
266 unlink (_PATH_NSCDPID
);
271 /* Returns 1 if the process in pid file FILE is running, 0 if not. */
273 check_pid (const char *file
)
277 fp
= fopen (file
, "r");
283 n
= fscanf (fp
, "%d", &pid
);
286 if (n
!= 1 || kill (pid
, 0) == 0)
293 /* Write the current process id to the file FILE.
294 Returns 0 if successful, -1 if not. */
296 write_pid (const char *file
)
300 fp
= fopen (file
, "w");
304 fprintf (fp
, "%d\n", getpid ());
305 if (fflush (fp
) || ferror (fp
))