1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656
|
/* Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006 Thorsten Kukuk
Author: Thorsten Kukuk <kukuk@suse.de>
The YP Server is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
version 2 as published by the Free Software Foundation.
The YP Server is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public
License along with the YP Server; see the file COPYING. If
not, write to the Free Software Foundation, Inc., 675 Mass Ave,
Cambridge, MA 02139, USA. */
#define _GNU_SOURCE
#if defined(HAVE_CONFIG_H)
#include "config.h"
#endif
#include <stdio.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <memory.h>
#include <unistd.h>
#include <syslog.h>
#include <signal.h>
#if defined(HAVE_GETOPT_H)
#include <getopt.h>
#endif
#include <sys/file.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <sys/socket.h>
#include <rpc/rpc.h>
#include <rpc/pmap_clnt.h>
#if defined(HAVE_RPC_SVC_SOC_H)
#include <rpc/svc_soc.h> /* for svcudp_create() */
#endif /* HAVE_RPC_SVC_SOC_H */
#include "yp.h"
#include "access.h"
#include "log_msg.h"
#include "ypserv_conf.h"
#include "compat.h"
#if USE_SLP
#include "reg_slp.h"
#endif
#ifdef HAVE_PATHS_H
#include <paths.h>
#endif
#ifndef _PATH_VARRUN
#define _PATH_VARRUN "/etc/"
#endif
#define _YPSERV_PIDFILE _PATH_VARRUN"ypserv.pid"
#ifndef YPOLDVERS
#define YPOLDVERS 1
#endif
static char *path_ypdb = YPMAPDIR;
static void
ypprog_2 (struct svc_req *rqstp, register SVCXPRT * transp)
{
union {
domainname ypproc_domain_2_arg;
domainname ypproc_domain_nonack_2_arg;
ypreq_key ypproc_match_2_arg;
ypreq_nokey ypproc_first_2_arg;
ypreq_key ypproc_next_2_arg;
ypreq_xfr ypproc_xfr_2_arg;
ypreq_nokey ypproc_all_2_arg;
ypreq_nokey ypproc_master_2_arg;
ypreq_nokey ypproc_order_2_arg;
domainname ypproc_maplist_2_arg;
} argument;
union {
bool_t ypproc_domain_2_res;
bool_t ypproc_domain_nonack_2_res;
ypresp_val ypproc_match_2_res;
ypresp_key_val ypproc_first_2_res;
ypresp_key_val ypproc_next_2_res;
ypresp_xfr ypproc_xfr_2_res;
ypresp_all ypproc_all_2_res;
ypresp_master ypproc_master_2_res;
ypresp_order ypproc_order_2_res;
ypresp_maplist ypproc_maplist_2_res;
} result;
bool_t retval;
xdrproc_t _xdr_argument, _xdr_result;
bool_t (*local) (char *, void *, struct svc_req *);
switch (rqstp->rq_proc)
{
case YPPROC_NULL:
_xdr_argument = (xdrproc_t) xdr_void;
_xdr_result = (xdrproc_t) xdr_void;
local =
(bool_t (*)(char *, void *, struct svc_req *)) ypproc_null_2_svc;
break;
case YPPROC_DOMAIN:
_xdr_argument = (xdrproc_t) xdr_domainname;
_xdr_result = (xdrproc_t) xdr_bool;
local =
(bool_t (*)(char *, void *, struct svc_req *)) ypproc_domain_2_svc;
break;
case YPPROC_DOMAIN_NONACK:
_xdr_argument = (xdrproc_t) xdr_domainname;
_xdr_result = (xdrproc_t) xdr_bool;
local =
(bool_t (*)(char *, void *, struct svc_req *))
ypproc_domain_nonack_2_svc;
break;
case YPPROC_MATCH:
_xdr_argument = (xdrproc_t) xdr_ypreq_key;
_xdr_result = (xdrproc_t) xdr_ypresp_val;
local =
(bool_t (*)(char *, void *, struct svc_req *)) ypproc_match_2_svc;
break;
case YPPROC_FIRST:
_xdr_argument = (xdrproc_t) xdr_ypreq_nokey;
_xdr_result = (xdrproc_t) xdr_ypresp_key_val;
local =
(bool_t (*)(char *, void *, struct svc_req *)) ypproc_first_2_svc;
break;
case YPPROC_NEXT:
_xdr_argument = (xdrproc_t) xdr_ypreq_key;
_xdr_result = (xdrproc_t) xdr_ypresp_key_val;
local =
(bool_t (*)(char *, void *, struct svc_req *)) ypproc_next_2_svc;
break;
case YPPROC_XFR:
_xdr_argument = (xdrproc_t) xdr_ypreq_xfr;
_xdr_result = (xdrproc_t) xdr_ypresp_xfr;
local = (bool_t (*)(char *, void *, struct svc_req *)) ypproc_xfr_2_svc;
break;
case YPPROC_CLEAR:
_xdr_argument = (xdrproc_t) xdr_void;
_xdr_result = (xdrproc_t) xdr_void;
local =
(bool_t (*)(char *, void *, struct svc_req *)) ypproc_clear_2_svc;
break;
case YPPROC_ALL:
_xdr_argument = (xdrproc_t) xdr_ypreq_nokey;
_xdr_result = (xdrproc_t) xdr_ypresp_all;
local = (bool_t (*)(char *, void *, struct svc_req *)) ypproc_all_2_svc;
break;
case YPPROC_MASTER:
_xdr_argument = (xdrproc_t) xdr_ypreq_nokey;
_xdr_result = (xdrproc_t) xdr_ypresp_master;
local =
(bool_t (*)(char *, void *, struct svc_req *)) ypproc_master_2_svc;
break;
case YPPROC_ORDER:
_xdr_argument = (xdrproc_t) xdr_ypreq_nokey;
_xdr_result = (xdrproc_t) xdr_ypresp_order;
local =
(bool_t (*)(char *, void *, struct svc_req *)) ypproc_order_2_svc;
break;
case YPPROC_MAPLIST:
_xdr_argument = (xdrproc_t) xdr_domainname;
_xdr_result = (xdrproc_t) xdr_ypresp_maplist;
local =
(bool_t (*)(char *, void *, struct svc_req *)) ypproc_maplist_2_svc;
break;
default:
svcerr_noproc (transp);
return;
}
memset ((char *) &argument, 0, sizeof (argument));
if (!svc_getargs (transp, _xdr_argument, (caddr_t) &argument))
{
svcerr_decode (transp);
return;
}
retval = (bool_t) (*local) ((char *) &argument, (void *) &result, rqstp);
if (retval > 0 && !svc_sendreply (transp, _xdr_result, (char *) &result))
svcerr_systemerr (transp);
if (!svc_freeargs (transp, _xdr_argument, (caddr_t) &argument))
{
log_msg ("unable to free arguments");
exit (1);
}
if (!ypprog_2_freeresult (transp, _xdr_result, (caddr_t) &result))
log_msg ("unable to free results");
return;
}
#if 0
static void
mysvc_run (void)
{
#ifdef FD_SETSIZE
fd_set readfds;
#else
int readfds;
#endif /* def FD_SETSIZE */
for (;;)
{
#ifdef FD_SETSIZE
readfds = svc_fdset;
#else
readfds = svc_fds;
#endif /* def FD_SETSIZE */
switch (select (_rpc_dtablesize (), &readfds, (fd_set *)NULL,
(fd_set *)NULL, (struct timeval *) 0))
{
case -1:
if (errno == EINTR)
{
continue;
}
perror ("svc_run: - select failed");
return;
case 0:
continue;
default:
svc_getreqset (&readfds);
}
}
}
#endif
/* Create a pidfile on startup */
static void
create_pidfile (void)
{
int fd, left, written, flags;
pid_t pid;
char pbuf[10], *ptr;
struct flock lock;
fd = open (_YPSERV_PIDFILE, O_CREAT | O_RDWR,
S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
if (fd < 0)
{
log_msg ("cannot create pidfile %s", _YPSERV_PIDFILE);
if (debug_flag)
log_msg ("\n");
return;
}
/* Make sure file gets correctly closed when process finished. */
flags = fcntl (fd, F_GETFD, 0);
if (flags == -1)
{
/* Cannot get file flags. */
close (fd);
return;
}
flags |= FD_CLOEXEC; /* Close on exit. */
if (fcntl (fd, F_SETFD, flags) < 0)
{
/* Cannot set new flags. */
close (fd);
return;
}
lock.l_type = F_WRLCK;
lock.l_start = 0;
lock.l_whence = SEEK_SET;
lock.l_len = 0;
/* Is the pidfile locked by another ypserv ? */
if (fcntl (fd, F_GETLK, &lock) < 0)
{
log_msg ("fcntl error");
if (debug_flag)
log_msg ("\n");
}
if (lock.l_type == F_UNLCK)
pid = 0; /* false, not locked by another proc */
else
pid = lock.l_pid; /* true, return pid of lock owner */
if (0 != pid)
{
log_msg ("ypserv already running (pid %d) - exiting", pid);
if (debug_flag)
log_msg ("\n");
exit (1);
}
/* write lock */
lock.l_type = F_WRLCK;
lock.l_start = 0;
lock.l_whence = SEEK_SET;
lock.l_len = 0;
if (0 != fcntl (fd, F_SETLK, &lock))
log_msg ("cannot lock pidfile");
sprintf (pbuf, "%ld\n", (long) getpid ());
left = strlen (pbuf);
ptr = pbuf;
while (left > 0)
{
if ((written = write (fd, ptr, left)) <= 0)
return; /* error */
left -= written;
ptr += written;
}
return;
}
extern FILE *debug_output;
/* SIGUSR1: enable/disable debug output. */
static void
sig_usr1 (int sig UNUSED)
{
int save_errno = errno;
if (debug_flag)
{
debug_flag = 0;
if (debug_output != stderr)
fclose (debug_output);
debug_output = stderr;
}
else
{
debug_output = fopen ("/var/yp/ypserv.log", "a");
if (debug_output != NULL)
debug_flag = 1;
}
errno = save_errno;
}
/* Clean up if we quit the program. */
static void
sig_quit (int sig UNUSED)
{
pmap_unset (YPPROG, YPVERS);
pmap_unset (YPPROG, YPOLDVERS);
unlink (_YPSERV_PIDFILE);
#if USE_SLP
if (slp_flag)
deregister_slp ();
#endif
exit (0);
}
/* Reload securenets and config file */
static void
sig_hup (int sig UNUSED)
{
int save_errno = errno;
int old_cached_filehandles = cached_filehandles;
load_securenets ();
load_config ();
/* Don't allow to decrease the number of max. cached files with
SIGHUP. */
if (cached_filehandles < old_cached_filehandles)
cached_filehandles = old_cached_filehandles;
errno = save_errno;
}
/* Clean up after child processes signal their termination. */
static void
sig_child (int sig UNUSED)
{
int save_errno = errno;
while (wait3 (NULL, WNOHANG, NULL) > 0)
;
errno = save_errno;
}
static void
Usage (int exitcode)
{
fputs ("usage: ypserv [-d [path]] [-p port]\n", stderr);
fputs (" ypserv --version\n", stderr);
exit (exitcode);
}
int
main (int argc, char **argv)
{
SVCXPRT *transp;
int my_port = -1, my_socket, result;
struct sockaddr_in s_in;
openlog ("ypserv", LOG_PID, LOG_DAEMON);
while (1)
{
int c;
int option_index = 0;
static struct option long_options[] = {
{"version", no_argument, NULL, 'v'},
{"debug", no_argument, NULL, 'd'},
{"port", required_argument, NULL, 'p'},
{"usage", no_argument, NULL, 'u'},
{"help", no_argument, NULL, 'h'},
{NULL, 0, NULL, '\0'}
};
c = getopt_long (argc, argv, "vdp:buh", long_options, &option_index);
if (c == -1)
break;
switch (c)
{
case 'v':
debug_flag = 1;
log_msg ("ypserv (%s) %s\n", PACKAGE, VERSION);
return 0;
case 'd':
++debug_flag;
break;
case 'p':
my_port = atoi (optarg);
if (debug_flag)
log_msg ("Using port %d\n", my_port);
break;
case 'u':
case 'h':
Usage (0);
break;
default:
Usage (1);
break;
}
}
argc -= optind;
argv += optind;
if (debug_flag)
log_msg ("[ypserv (%s) %s]\n", PACKAGE, VERSION);
else
{
int i;
if ((i = fork ()) > 0)
exit (0);
if (i < 0)
{
log_msg ("Cannot fork: %s\n", strerror (errno));
exit (-1);
}
if (setsid () == -1)
{
log_msg ("Cannot setsid: %s\n", strerror (errno));
exit (1);
}
if ((i = fork ()) > 0)
exit (0);
if (i < 0)
{
log_msg ("Cannot fork: %s\n", strerror (errno));
exit (-1);
}
for (i = 0; i < getdtablesize (); ++i)
close (i);
errno = 0;
umask (0);
i = open ("/dev/null", O_RDWR);
if (dup (i) == -1)
{
log_msg ("dup failed: %s\n", strerror (errno));
exit (1);
}
if (dup (i) == -1)
{
log_msg ("dup failed: %s\n", strerror (errno));
exit (1);
}
}
if (argc > 0 && debug_flag)
{
path_ypdb = argv[0];
log_msg ("Using database directory: %s\n", path_ypdb);
}
/* Change current directory to database location */
if (chdir (path_ypdb) < 0)
{
log_msg ("ypserv: chdir: %s", strerror (errno));
exit (1);
}
create_pidfile ();
load_securenets ();
load_config ();
/*
* Ignore SIGPIPEs. They can hurt us if someone does a ypcat
* and then hits CTRL-C before it terminates.
*/
signal (SIGPIPE, SIG_IGN);
/*
* If program quits, give ports free.
*/
signal (SIGTERM, sig_quit);
signal (SIGINT, sig_quit);
/*
* If we get a SIGHUP, reload the securenets and config file.
*/
signal (SIGHUP, sig_hup);
/*
* If we get a SIGUSR1, enable/disable debuging.
*/
signal (SIGUSR1, sig_usr1);
/*
* On SIGCHLD wait for the child process, so it can give free all
* resources.
*/
signal (SIGCHLD, sig_child);
pmap_unset (YPPROG, YPVERS);
pmap_unset (YPPROG, YPOLDVERS);
if (my_port >= 0)
{
my_socket = socket (AF_INET, SOCK_DGRAM, 0);
if (my_socket < 0)
{
log_msg ("can not create UDP: %s", strerror (errno));
exit (1);
}
memset ((char *) &s_in, 0, sizeof (s_in));
s_in.sin_family = AF_INET;
s_in.sin_addr.s_addr = htonl (INADDR_ANY);
s_in.sin_port = htons (my_port);
result = bind (my_socket, (struct sockaddr *) &s_in,
sizeof (s_in));
if (result < 0)
{
log_msg ("ypserv: can not bind UDP: %s ", strerror (errno));
exit (1);
}
}
else
my_socket = RPC_ANYSOCK;
transp = svcudp_create (my_socket);
if (transp == NULL)
{
log_msg ("cannot create udp service.");
exit (1);
}
if (!svc_register (transp, YPPROG, YPVERS, ypprog_2, IPPROTO_UDP))
{
log_msg ("unable to register (YPPROG, YPVERS, udp).");
exit (1);
}
/* XXX ypprog_2 should be ypprog_1 */
if (!svc_register (transp, YPPROG, YPOLDVERS, ypprog_2, IPPROTO_UDP))
{
log_msg ("unable to register (YPPROG, YPOLDVERS, udp).");
exit (1);
}
if (my_port >= 0)
{
my_socket = socket (AF_INET, SOCK_STREAM, 0);
if (my_socket < 0)
{
log_msg ("ypserv: can not create TCP: %s", strerror (errno));
exit (1);
}
memset (&s_in, 0, sizeof (s_in));
s_in.sin_family = AF_INET;
s_in.sin_addr.s_addr = htonl (INADDR_ANY);
s_in.sin_port = htons (my_port);
result = bind (my_socket, (struct sockaddr *) &s_in,
sizeof (s_in));
if (result < 0)
{
log_msg ("ypserv: can not bind TCP ", strerror (errno));
exit (1);
}
}
else
my_socket = RPC_ANYSOCK;
transp = svctcp_create (my_socket, 0, 0);
if (transp == NULL)
{
log_msg ("ypserv: cannot create tcp service\n");
exit (1);
}
if (!svc_register (transp, YPPROG, YPVERS, ypprog_2, IPPROTO_TCP))
{
log_msg ("ypserv: unable to register (YPPROG, YPVERS, tcp)\n");
exit (1);
}
/* XXX ypprog_2 should be ypprog_1 */
if (!svc_register (transp, YPPROG, YPOLDVERS, ypprog_2, IPPROTO_TCP))
{
log_msg ("ypserv: unable to register (YPPROG, YPOLDVERS, tcp)\n");
exit (1);
}
#if USE_SLP
if (slp_flag)
register_slp ();
#endif
#if 0
mysvc_run ();
#else
svc_run ();
#endif
log_msg ("svc_run returned");
unlink (_YPSERV_PIDFILE);
#if USE_SLP
if (slp_flag)
deregister_slp ();
#endif
exit (1);
/* NOTREACHED */
}
|