aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/ypserv/yp_main.c
blob: 8c538ca8ca4601d6e00944333985d63ee9c493f7 (plain) (blame)
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
/*
 * Copyright (c) 1995
 *	Bill Paul <wpaul@ctr.columbia.edu>.  All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *	This product includes software developed by Bill Paul.
 * 4. Neither the name of the author nor the names of any co-contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 */

#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");

/*
 * ypserv startup function.
 * We need out own main() since we have to do some additional work
 * that rpcgen won't do for us. Most of this file was generated using
 * rpcgen.new, and later modified.
 */

#include <sys/types.h>
#include <sys/mman.h>
#include <sys/queue.h>
#include <sys/socket.h>
#include <sys/wait.h>
#include "yp.h"
#include <err.h>
#include <errno.h>
#include <memory.h>
#include <stdio.h>
#include <signal.h>
#include <stdarg.h>
#include <stdlib.h> /* getenv, exit */
#include <string.h> /* strcmp */
#include <syslog.h>
#include <unistd.h>
#ifdef __cplusplus
#include <sysent.h> /* getdtablesize, open */
#endif /* __cplusplus */
#include <netinet/in.h>
#include <netdb.h>
#include "yp_extern.h"
#include <netconfig.h>
#include <rpc/rpc.h>
#include <rpc/rpc_com.h>

#ifndef SIG_PF
#define	SIG_PF void(*)(int)
#endif

#define	_RPCSVC_CLOSEDOWN 120
int _rpcpmstart;		/* Started by a port monitor ? */
static int _rpcfdtype;  /* Whether Stream or Datagram? */
static int _rpcaf;
static int _rpcfd;

/* States a server can be in wrt request */
#define	_IDLE 0
#define	_SERVED 1
#define	_SERVING 2

extern void ypprog_1(struct svc_req *, SVCXPRT *);
extern void ypprog_2(struct svc_req *, SVCXPRT *);
extern int _rpc_dtablesize(void);
extern int _rpcsvcstate;	 /* Set when a request is serviced */
char *progname = "ypserv";
char *yp_dir = _PATH_YP;
/*int debug = 0;*/
int do_dns = 0;
int resfd;

struct socklistent {
	int				sle_sock;
	struct sockaddr_storage		sle_ss;
	SLIST_ENTRY(socklistent)	sle_next;
};
static SLIST_HEAD(, socklistent) sle_head =
	SLIST_HEAD_INITIALIZER(sle_head);

struct bindaddrlistent {
	const char			*ble_hostname;
	SLIST_ENTRY(bindaddrlistent)	ble_next;
};
static SLIST_HEAD(, bindaddrlistent) ble_head =
	SLIST_HEAD_INITIALIZER(ble_head);

static char *servname = "0";

static
void _msgout(char* msg, ...)
{
	va_list ap;

	va_start(ap, msg);
	if (debug) {
		if (_rpcpmstart)
			vsyslog(LOG_ERR, msg, ap);
		else
			vwarnx(msg, ap);
	} else
		vsyslog(LOG_ERR, msg, ap);
	va_end(ap);
}

pid_t	yp_pid;

static void
yp_svc_run(void)
{
#ifdef FD_SETSIZE
	fd_set readfds;
#else
	int readfds;
#endif /* def FD_SETSIZE */
	int fd_setsize = _rpc_dtablesize();
	struct timeval timeout;

	/* Establish the identity of the parent ypserv process. */
	yp_pid = getpid();

	for (;;) {
#ifdef FD_SETSIZE
		readfds = svc_fdset;
#else
		readfds = svc_fds;
#endif /* def FD_SETSIZE */

		FD_SET(resfd, &readfds);

		timeout.tv_sec = RESOLVER_TIMEOUT;
		timeout.tv_usec = 0;
		switch (select(fd_setsize, &readfds, NULL, NULL,
			       &timeout)) {
		case -1:
			if (errno == EINTR) {
				continue;
			}
			warn("svc_run: - select failed");
			return;
		case 0:
			if (getpid() == yp_pid)
				yp_prune_dnsq();
			break;
		default:
			if (getpid() == yp_pid) {
				if (FD_ISSET(resfd, &readfds)) {
					yp_run_dnsq();
					FD_CLR(resfd, &readfds);
				}
				svc_getreqset(&readfds);
			}
		}
		if (yp_pid != getpid())
			_exit(0);
	}
}

static void
unregister(void)
{
	(void)svc_unreg(YPPROG, YPVERS);
	(void)svc_unreg(YPPROG, YPOLDVERS);
}

static void
reaper(int sig)
{
	int			status;
	int			saved_errno;

	saved_errno = errno;

	if (sig == SIGHUP) {
		load_securenets();
#ifdef DB_CACHE
		yp_flush_all();
#endif
		errno = saved_errno;
		return;
	}

	if (sig == SIGCHLD) {
		while (wait3(&status, WNOHANG, NULL) > 0)
			children--;
	} else {
		unregister();
		exit(0);
	}
	errno = saved_errno;
	return;
}

static void
usage(void)
{
	fprintf(stderr, "usage: ypserv [-h addr] [-d] [-n] [-p path] [-P port]\n");
	exit(1);
}

static void
closedown(int sig)
{
	if (_rpcsvcstate == _IDLE) {
		extern fd_set svc_fdset;
		static int size;
		int i, openfd;

		if (_rpcfdtype == SOCK_DGRAM) {
			unregister();
			exit(0);
		}
		if (size == 0) {
			size = getdtablesize();
		}
		for (i = 0, openfd = 0; i < size && openfd < 2; i++)
			if (FD_ISSET(i, &svc_fdset))
				openfd++;
		if (openfd <= 1) {
			unregister();
			exit(0);
		}
	}
	if (_rpcsvcstate == _SERVED)
		_rpcsvcstate = _IDLE;

	(void) signal(SIGALRM, (SIG_PF) closedown);
	(void) alarm(_RPCSVC_CLOSEDOWN/2);
}

static int
create_service(const int sock, const struct netconfig *nconf,
	const struct __rpc_sockinfo *si)
{
	int error;

	SVCXPRT *transp;
	struct addrinfo hints, *res, *res0;
	struct socklistent *slep;
	struct bindaddrlistent *blep;
	struct netbuf svcaddr;

	SLIST_INIT(&sle_head);
	memset(&hints, 0, sizeof(hints));
	memset(&svcaddr, 0, sizeof(svcaddr));

	hints.ai_family = si->si_af;
	hints.ai_socktype = si->si_socktype;
	hints.ai_protocol = si->si_proto;

	/*
	 * Build socketlist from bindaddrlist.
	 */
	if (sock == RPC_ANYFD) {
		SLIST_FOREACH(blep, &ble_head, ble_next) {
			if (blep->ble_hostname == NULL)
				hints.ai_flags = AI_PASSIVE;
			else
				hints.ai_flags = 0;
			error = getaddrinfo(blep->ble_hostname, servname,
				    &hints, &res0);
			if (error) {
				_msgout("getaddrinfo(): %s",
				    gai_strerror(error));
				return -1;
			}
			for (res = res0; res; res = res->ai_next) {
				int s;

				s = __rpc_nconf2fd(nconf);
				if (s < 0) {
					if (errno == EAFNOSUPPORT)
						_msgout("unsupported"
						    " transport: %s",
						    nconf->nc_netid);
					else
						_msgout("cannot create"
						    " %s socket: %s",
						    nconf->nc_netid,
						    strerror(errno));
					freeaddrinfo(res0);
					return -1;
				}
				if (bindresvport_sa(s, res->ai_addr) == -1) {
					if ((errno != EPERM) ||
					    (bind(s, res->ai_addr,
					    res->ai_addrlen) == -1)) {
						_msgout("cannot bind "
						    "%s socket: %s",
						    nconf->nc_netid,
						strerror(errno));
						freeaddrinfo(res0);
						close(sock);
						return -1;
					}
				}
				if (nconf->nc_semantics != NC_TPI_CLTS)
					listen(s, SOMAXCONN);

				slep = malloc(sizeof(*slep));
				if (slep == NULL) {
					_msgout("malloc failed: %s",
					    strerror(errno));
					freeaddrinfo(res0);
					close(s);
					return -1;
				}
				memset(slep, 0, sizeof(*slep));
				memcpy(&slep->sle_ss, res->ai_addr,
				    res->ai_addrlen);
				slep->sle_sock = s;
				SLIST_INSERT_HEAD(&sle_head, slep, sle_next);

				/*
				 * If servname == "0", redefine it by using
				 * the bound socket.
				 */
				if (strncmp("0", servname, 1) == 0) {
					struct sockaddr *sap;
					socklen_t slen;
					char *sname;

					sname = malloc(NI_MAXSERV);
					if (sname == NULL) {
						_msgout("malloc(): %s",
						    strerror(errno));
						freeaddrinfo(res0);
						close(s);
						return -1;
					}
					memset(sname, 0, NI_MAXSERV);

					sap = (struct sockaddr *)&slep->sle_ss;
					slen = sizeof(*sap);
					error = getsockname(s, sap, &slen);
					if (error) {
						_msgout("getsockname(): %s",
						    strerror(errno));
						freeaddrinfo(res0);
						close(s);
						free(sname);
						return -1;
					}
					error = getnameinfo(sap, slen,
					    NULL, 0,
					    sname, NI_MAXSERV,
					    NI_NUMERICHOST | NI_NUMERICSERV);
					if (error) {
						_msgout("getnameinfo(): %s",
						    strerror(errno));
						freeaddrinfo(res0);
						close(s);
						free(sname);
						return -1;
					}
					servname = sname;
				}
			}
			freeaddrinfo(res0);
		}
	} else {
		slep = malloc(sizeof(*slep));
		if (slep == NULL) {
			_msgout("malloc failed: %s", strerror(errno));
			return -1;
		}
		memset(slep, 0, sizeof(*slep));
		slep->sle_sock = sock;
		SLIST_INSERT_HEAD(&sle_head, slep, sle_next);
	}

	/*
	 * Traverse socketlist and create rpc service handles for each socket.
	 */
	SLIST_FOREACH(slep, &sle_head, sle_next) {
		if (nconf->nc_semantics == NC_TPI_CLTS)
			transp = svc_dg_create(slep->sle_sock, 0, 0);
		else
			transp = svc_vc_create(slep->sle_sock, RPC_MAXDATASIZE,
			    RPC_MAXDATASIZE);
		if (transp == NULL) {
			_msgout("unable to create service: %s",
			    nconf->nc_netid);
			continue;
		}
		if (!svc_reg(transp, YPPROG, YPOLDVERS, ypprog_1, NULL)) {
			svc_destroy(transp);
			close(slep->sle_sock);
			_msgout("unable to register (YPPROG, YPOLDVERS, %s):"
			    " %s", nconf->nc_netid, strerror(errno));
			continue;
		}
		if (!svc_reg(transp, YPPROG, YPVERS, ypprog_2, NULL)) {
			svc_destroy(transp);
			close(slep->sle_sock);
			_msgout("unable to register (YPPROG, YPVERS, %s): %s",
			    nconf->nc_netid, strerror(errno));
			continue;
		}
	}
	while(!(SLIST_EMPTY(&sle_head)))
		SLIST_REMOVE_HEAD(&sle_head, sle_next);

	/*
	 * Register RPC service to rpcbind by using AI_PASSIVE address.
	 */
	hints.ai_flags = AI_PASSIVE;
	error = getaddrinfo(NULL, servname, &hints, &res0);
	if (error) {
		_msgout("getaddrinfo(): %s", gai_strerror(error));
		return -1;
	}
	svcaddr.buf = res0->ai_addr;
	svcaddr.len = res0->ai_addrlen;

	if (si->si_af == AF_INET) {
		/* XXX: ignore error intentionally */
		rpcb_set(YPPROG, YPOLDVERS, nconf, &svcaddr);
	}
	/* XXX: ignore error intentionally */
	rpcb_set(YPPROG, YPVERS, nconf, &svcaddr);
	freeaddrinfo(res0);
	return 0;
}

int
main(int argc, char *argv[])
{
	int ch;
	int error;
	int ntrans;
	
	void *nc_handle;
	struct netconfig *nconf;
	struct __rpc_sockinfo si;
	struct bindaddrlistent *blep;

	memset(&si, 0, sizeof(si));
	SLIST_INIT(&ble_head);

	while ((ch = getopt(argc, argv, "dh:np:P:")) != -1) {
		switch (ch) {
		case 'd':
			debug = ypdb_debug = 1;
			break;
		case 'h':
			blep = malloc(sizeof(*blep));
			if (blep == NULL)
				err(1, "malloc() failed: -h %s", optarg);
			blep->ble_hostname = optarg;
			SLIST_INSERT_HEAD(&ble_head, blep, ble_next);
			break;
		case 'n':
			do_dns = 1;
			break;
		case 'p':
			yp_dir = optarg;
			break;
		case 'P':
			servname = optarg;
			break;
		default:
			usage();
		}
	}
	/*
	 * Add "anyaddr" entry if no -h is specified.
	 */
	if (SLIST_EMPTY(&ble_head)) {
		blep = malloc(sizeof(*blep));
		if (blep == NULL)
			err(1, "malloc() failed");
		memset(blep, 0, sizeof(*blep));
		SLIST_INSERT_HEAD(&ble_head, blep, ble_next);
	}

	load_securenets();
	yp_init_resolver();
#ifdef DB_CACHE
	yp_init_dbs();
#endif
	nc_handle = setnetconfig();
	if (nc_handle == NULL)
		err(1, "cannot read %s", NETCONFIG);
	if (__rpc_fd2sockinfo(0, &si) != 0) {
		/* invoked from inetd */
		_rpcpmstart = 1;
		_rpcfdtype = si.si_socktype;
		_rpcaf = si.si_af;
		_rpcfd = 0;
		openlog("ypserv", LOG_PID, LOG_DAEMON);
	} else {
		/* standalone mode */
		if (!debug) {
			if (daemon(0,0)) {
				err(1,"cannot fork");
			}
			openlog("ypserv", LOG_PID, LOG_DAEMON);
		}
		_rpcpmstart = 0;
		_rpcaf = AF_INET;
		_rpcfd = RPC_ANYFD;
		unregister();
	}

	if (madvise(NULL, 0, MADV_PROTECT) != 0)
		_msgout("madvise(): %s", strerror(errno));

	/*
	 * Create RPC service for each transport.
	 */
	ntrans = 0;
	while((nconf = getnetconfig(nc_handle))) {
		if ((nconf->nc_flag & NC_VISIBLE)) {
			if (__rpc_nconf2sockinfo(nconf, &si) == 0) {
				_msgout("cannot get information for %s.  "
				    "Ignored.", nconf->nc_netid);
				continue;
			}
			if (_rpcpmstart) {
				if (si.si_socktype != _rpcfdtype ||
				    si.si_af != _rpcaf)
					continue;
			} else if (si.si_af != _rpcaf)
					continue;
			error = create_service(_rpcfd, nconf, &si);
			if (error) {
				endnetconfig(nc_handle);
				exit(1);
			}
			ntrans++;
		}
	}
	endnetconfig(nc_handle);
	while(!(SLIST_EMPTY(&ble_head)))
		SLIST_REMOVE_HEAD(&ble_head, ble_next);
	if (ntrans == 0) {
		_msgout("no transport is available.  Aborted.");
		exit(1);
	}
	if (_rpcpmstart) {
		(void) signal(SIGALRM, (SIG_PF) closedown);
		(void) alarm(_RPCSVC_CLOSEDOWN/2);
	}
/*
 * Make sure SIGPIPE doesn't blow us away while servicing TCP
 * connections.
 */
	(void) signal(SIGPIPE, SIG_IGN);
	(void) signal(SIGCHLD, (SIG_PF) reaper);
	(void) signal(SIGTERM, (SIG_PF) reaper);
	(void) signal(SIGINT, (SIG_PF) reaper);
	(void) signal(SIGHUP, (SIG_PF) reaper);
	yp_svc_run();
	_msgout("svc_run returned");
	exit(1);
	/* NOTREACHED */
}