xref: /freebsd/lib/libc/rpc/svc.c (revision c17d43407fe04133a94055b0dbc7ea8965654a9f)
1 /*	$NetBSD: svc.c,v 1.21 2000/07/06 03:10:35 christos Exp $	*/
2 
3 /*
4  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
5  * unrestricted use provided that this legend is included on all tape
6  * media and as a part of the software program in whole or part.  Users
7  * may copy or modify Sun RPC without charge, but are not authorized
8  * to license or distribute it to anyone else except as part of a product or
9  * program developed by the user.
10  *
11  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
12  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
13  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
14  *
15  * Sun RPC is provided with no support and without any obligation on the
16  * part of Sun Microsystems, Inc. to assist in its use, correction,
17  * modification or enhancement.
18  *
19  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
20  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
21  * OR ANY PART THEREOF.
22  *
23  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
24  * or profits or other special, indirect and consequential damages, even if
25  * Sun has been advised of the possibility of such damages.
26  *
27  * Sun Microsystems, Inc.
28  * 2550 Garcia Avenue
29  * Mountain View, California  94043
30  */
31 
32 #if defined(LIBC_SCCS) && !defined(lint)
33 static char *sccsid = "@(#)svc.c 1.44 88/02/08 Copyr 1984 Sun Micro";
34 static char *sccsid = "@(#)svc.c	2.4 88/08/11 4.0 RPCSRC";
35 #endif
36 #include <sys/cdefs.h>
37 __FBSDID("$FreeBSD$");
38 
39 /*
40  * svc.c, Server-side remote procedure call interface.
41  *
42  * There are two sets of procedures here.  The xprt routines are
43  * for handling transport handles.  The svc routines handle the
44  * list of service routines.
45  *
46  * Copyright (C) 1984, Sun Microsystems, Inc.
47  */
48 
49 #include "namespace.h"
50 #include "reentrant.h"
51 #include <sys/types.h>
52 #include <sys/poll.h>
53 #include <assert.h>
54 #include <errno.h>
55 #include <stdlib.h>
56 #include <string.h>
57 
58 #include <rpc/rpc.h>
59 #ifdef PORTMAP
60 #include <rpc/pmap_clnt.h>
61 #endif				/* PORTMAP */
62 #include "un-namespace.h"
63 
64 #include "rpc_com.h"
65 
66 static SVCXPRT **xports;
67 
68 #define	RQCRED_SIZE	400		/* this size is excessive */
69 
70 #define SVC_VERSQUIET 0x0001		/* keep quiet about vers mismatch */
71 #define version_keepquiet(xp) ((u_long)(xp)->xp_p3 & SVC_VERSQUIET)
72 
73 #define max(a, b) (a > b ? a : b)
74 
75 /*
76  * The services list
77  * Each entry represents a set of procedures (an rpc program).
78  * The dispatch routine takes request structs and runs the
79  * apropriate procedure.
80  */
81 static struct svc_callout {
82 	struct svc_callout *sc_next;
83 	rpcprog_t	    sc_prog;
84 	rpcvers_t	    sc_vers;
85 	char		   *sc_netid;
86 	void		    (*sc_dispatch)(struct svc_req *, SVCXPRT *);
87 } *svc_head;
88 
89 extern rwlock_t svc_lock;
90 extern rwlock_t svc_fd_lock;
91 
92 static struct svc_callout *svc_find(rpcprog_t, rpcvers_t,
93     struct svc_callout **, char *);
94 
95 /* ***************  SVCXPRT related stuff **************** */
96 
97 /*
98  * Activate a transport handle.
99  */
100 void
101 xprt_register(xprt)
102 	SVCXPRT *xprt;
103 {
104 	int sock;
105 
106 	assert(xprt != NULL);
107 
108 	sock = xprt->xp_fd;
109 
110 	rwlock_wrlock(&svc_fd_lock);
111 	if (xports == NULL) {
112 		xports = (SVCXPRT **)
113 			mem_alloc(FD_SETSIZE * sizeof(SVCXPRT *));
114 		if (xports == NULL)
115 			return;
116 		memset(xports, '\0', FD_SETSIZE * sizeof(SVCXPRT *));
117 	}
118 	if (sock < FD_SETSIZE) {
119 		xports[sock] = xprt;
120 		FD_SET(sock, &svc_fdset);
121 		svc_maxfd = max(svc_maxfd, sock);
122 	}
123 	rwlock_unlock(&svc_fd_lock);
124 }
125 
126 /*
127  * De-activate a transport handle.
128  */
129 void
130 xprt_unregister(xprt)
131 	SVCXPRT *xprt;
132 {
133 	int sock;
134 
135 	assert(xprt != NULL);
136 
137 	sock = xprt->xp_fd;
138 
139 	rwlock_wrlock(&svc_fd_lock);
140 	if ((sock < FD_SETSIZE) && (xports[sock] == xprt)) {
141 		xports[sock] = NULL;
142 		FD_CLR(sock, &svc_fdset);
143 		if (sock >= svc_maxfd) {
144 			for (svc_maxfd--; svc_maxfd>=0; svc_maxfd--)
145 				if (xports[svc_maxfd])
146 					break;
147 		}
148 	}
149 	rwlock_unlock(&svc_fd_lock);
150 }
151 
152 /*
153  * Add a service program to the callout list.
154  * The dispatch routine will be called when a rpc request for this
155  * program number comes in.
156  */
157 bool_t
158 svc_reg(xprt, prog, vers, dispatch, nconf)
159 	SVCXPRT *xprt;
160 	const rpcprog_t prog;
161 	const rpcvers_t vers;
162 	void (*dispatch)(struct svc_req *, SVCXPRT *);
163 	const struct netconfig *nconf;
164 {
165 	bool_t dummy;
166 	struct svc_callout *prev;
167 	struct svc_callout *s;
168 	struct netconfig *tnconf;
169 	char *netid = NULL;
170 	int flag = 0;
171 
172 /* VARIABLES PROTECTED BY svc_lock: s, prev, svc_head */
173 
174 	if (xprt->xp_netid) {
175 		netid = strdup(xprt->xp_netid);
176 		flag = 1;
177 	} else if (nconf && nconf->nc_netid) {
178 		netid = strdup(nconf->nc_netid);
179 		flag = 1;
180 	} else if ((tnconf = __rpcgettp(xprt->xp_fd)) != NULL) {
181 		netid = strdup(tnconf->nc_netid);
182 		flag = 1;
183 		freenetconfigent(tnconf);
184 	} /* must have been created with svc_raw_create */
185 	if ((netid == NULL) && (flag == 1)) {
186 		return (FALSE);
187 	}
188 
189 	rwlock_wrlock(&svc_lock);
190 	if ((s = svc_find(prog, vers, &prev, netid)) != NULL) {
191 		if (netid)
192 			free(netid);
193 		if (s->sc_dispatch == dispatch)
194 			goto rpcb_it; /* he is registering another xptr */
195 		rwlock_unlock(&svc_lock);
196 		return (FALSE);
197 	}
198 	s = mem_alloc(sizeof (struct svc_callout));
199 	if (s == NULL) {
200 		if (netid)
201 			free(netid);
202 		rwlock_unlock(&svc_lock);
203 		return (FALSE);
204 	}
205 
206 	s->sc_prog = prog;
207 	s->sc_vers = vers;
208 	s->sc_dispatch = dispatch;
209 	s->sc_netid = netid;
210 	s->sc_next = svc_head;
211 	svc_head = s;
212 
213 	if ((xprt->xp_netid == NULL) && (flag == 1) && netid)
214 		((SVCXPRT *) xprt)->xp_netid = strdup(netid);
215 
216 rpcb_it:
217 	rwlock_unlock(&svc_lock);
218 	/* now register the information with the local binder service */
219 	if (nconf) {
220 		/*LINTED const castaway*/
221 		dummy = rpcb_set(prog, vers, (struct netconfig *) nconf,
222 		&((SVCXPRT *) xprt)->xp_ltaddr);
223 		return (dummy);
224 	}
225 	return (TRUE);
226 }
227 
228 /*
229  * Remove a service program from the callout list.
230  */
231 void
232 svc_unreg(prog, vers)
233 	const rpcprog_t prog;
234 	const rpcvers_t vers;
235 {
236 	struct svc_callout *prev;
237 	struct svc_callout *s;
238 
239 	/* unregister the information anyway */
240 	(void) rpcb_unset(prog, vers, NULL);
241 	rwlock_wrlock(&svc_lock);
242 	while ((s = svc_find(prog, vers, &prev, NULL)) != NULL) {
243 		if (prev == NULL) {
244 			svc_head = s->sc_next;
245 		} else {
246 			prev->sc_next = s->sc_next;
247 		}
248 		s->sc_next = NULL;
249 		if (s->sc_netid)
250 			mem_free(s->sc_netid, sizeof (s->sc_netid) + 1);
251 		mem_free(s, sizeof (struct svc_callout));
252 	}
253 	rwlock_unlock(&svc_lock);
254 }
255 
256 /* ********************** CALLOUT list related stuff ************* */
257 
258 #ifdef PORTMAP
259 /*
260  * Add a service program to the callout list.
261  * The dispatch routine will be called when a rpc request for this
262  * program number comes in.
263  */
264 bool_t
265 svc_register(xprt, prog, vers, dispatch, protocol)
266 	SVCXPRT *xprt;
267 	u_long prog;
268 	u_long vers;
269 	void (*dispatch)(struct svc_req *, SVCXPRT *);
270 	int protocol;
271 {
272 	struct svc_callout *prev;
273 	struct svc_callout *s;
274 
275 	assert(xprt != NULL);
276 	assert(dispatch != NULL);
277 
278 	if ((s = svc_find((rpcprog_t)prog, (rpcvers_t)vers, &prev, NULL)) !=
279 	    NULL) {
280 		if (s->sc_dispatch == dispatch)
281 			goto pmap_it;  /* he is registering another xptr */
282 		return (FALSE);
283 	}
284 	s = mem_alloc(sizeof(struct svc_callout));
285 	if (s == NULL) {
286 		return (FALSE);
287 	}
288 	s->sc_prog = (rpcprog_t)prog;
289 	s->sc_vers = (rpcvers_t)vers;
290 	s->sc_dispatch = dispatch;
291 	s->sc_next = svc_head;
292 	svc_head = s;
293 pmap_it:
294 	/* now register the information with the local binder service */
295 	if (protocol) {
296 		return (pmap_set(prog, vers, protocol, xprt->xp_port));
297 	}
298 	return (TRUE);
299 }
300 
301 /*
302  * Remove a service program from the callout list.
303  */
304 void
305 svc_unregister(prog, vers)
306 	u_long prog;
307 	u_long vers;
308 {
309 	struct svc_callout *prev;
310 	struct svc_callout *s;
311 
312 	if ((s = svc_find((rpcprog_t)prog, (rpcvers_t)vers, &prev, NULL)) ==
313 	    NULL)
314 		return;
315 	if (prev == NULL) {
316 		svc_head = s->sc_next;
317 	} else {
318 		prev->sc_next = s->sc_next;
319 	}
320 	s->sc_next = NULL;
321 	mem_free(s, sizeof(struct svc_callout));
322 	/* now unregister the information with the local binder service */
323 	(void)pmap_unset(prog, vers);
324 }
325 #endif				/* PORTMAP */
326 
327 /*
328  * Search the callout list for a program number, return the callout
329  * struct.
330  */
331 static struct svc_callout *
332 svc_find(prog, vers, prev, netid)
333 	rpcprog_t prog;
334 	rpcvers_t vers;
335 	struct svc_callout **prev;
336 	char *netid;
337 {
338 	struct svc_callout *s, *p;
339 
340 	assert(prev != NULL);
341 
342 	p = NULL;
343 	for (s = svc_head; s != NULL; s = s->sc_next) {
344 		if (((s->sc_prog == prog) && (s->sc_vers == vers)) &&
345 		    ((netid == NULL) || (s->sc_netid == NULL) ||
346 		    (strcmp(netid, s->sc_netid) == 0)))
347 			break;
348 		p = s;
349 	}
350 	*prev = p;
351 	return (s);
352 }
353 
354 /* ******************* REPLY GENERATION ROUTINES  ************ */
355 
356 /*
357  * Send a reply to an rpc request
358  */
359 bool_t
360 svc_sendreply(xprt, xdr_results, xdr_location)
361 	SVCXPRT *xprt;
362 	xdrproc_t xdr_results;
363 	caddr_t xdr_location;
364 {
365 	struct rpc_msg rply;
366 
367 	assert(xprt != NULL);
368 
369 	rply.rm_direction = REPLY;
370 	rply.rm_reply.rp_stat = MSG_ACCEPTED;
371 	rply.acpted_rply.ar_verf = xprt->xp_verf;
372 	rply.acpted_rply.ar_stat = SUCCESS;
373 	rply.acpted_rply.ar_results.where = xdr_location;
374 	rply.acpted_rply.ar_results.proc = xdr_results;
375 	return (SVC_REPLY(xprt, &rply));
376 }
377 
378 /*
379  * No procedure error reply
380  */
381 void
382 svcerr_noproc(xprt)
383 	SVCXPRT *xprt;
384 {
385 	struct rpc_msg rply;
386 
387 	assert(xprt != NULL);
388 
389 	rply.rm_direction = REPLY;
390 	rply.rm_reply.rp_stat = MSG_ACCEPTED;
391 	rply.acpted_rply.ar_verf = xprt->xp_verf;
392 	rply.acpted_rply.ar_stat = PROC_UNAVAIL;
393 	SVC_REPLY(xprt, &rply);
394 }
395 
396 /*
397  * Can't decode args error reply
398  */
399 void
400 svcerr_decode(xprt)
401 	SVCXPRT *xprt;
402 {
403 	struct rpc_msg rply;
404 
405 	assert(xprt != NULL);
406 
407 	rply.rm_direction = REPLY;
408 	rply.rm_reply.rp_stat = MSG_ACCEPTED;
409 	rply.acpted_rply.ar_verf = xprt->xp_verf;
410 	rply.acpted_rply.ar_stat = GARBAGE_ARGS;
411 	SVC_REPLY(xprt, &rply);
412 }
413 
414 /*
415  * Some system error
416  */
417 void
418 svcerr_systemerr(xprt)
419 	SVCXPRT *xprt;
420 {
421 	struct rpc_msg rply;
422 
423 	assert(xprt != NULL);
424 
425 	rply.rm_direction = REPLY;
426 	rply.rm_reply.rp_stat = MSG_ACCEPTED;
427 	rply.acpted_rply.ar_verf = xprt->xp_verf;
428 	rply.acpted_rply.ar_stat = SYSTEM_ERR;
429 	SVC_REPLY(xprt, &rply);
430 }
431 
432 #if 0
433 /*
434  * Tell RPC package to not complain about version errors to the client.	 This
435  * is useful when revving broadcast protocols that sit on a fixed address.
436  * There is really one (or should be only one) example of this kind of
437  * protocol: the portmapper (or rpc binder).
438  */
439 void
440 __svc_versquiet_on(xprt)
441 	SVCXPRT *xprt;
442 {
443 	u_long	tmp;
444 
445 	tmp = ((u_long) xprt->xp_p3) | SVC_VERSQUIET;
446 	xprt->xp_p3 = (caddr_t) tmp;
447 }
448 
449 void
450 __svc_versquiet_off(xprt)
451 	SVCXPRT *xprt;
452 {
453 	u_long	tmp;
454 
455 	tmp = ((u_long) xprt->xp_p3) & ~SVC_VERSQUIET;
456 	xprt->xp_p3 = (caddr_t) tmp;
457 }
458 
459 void
460 svc_versquiet(xprt)
461 	SVCXPRT *xprt;
462 {
463 	__svc_versquiet_on(xprt);
464 }
465 
466 int
467 __svc_versquiet_get(xprt)
468 	SVCXPRT *xprt;
469 {
470 	return ((int) xprt->xp_p3) & SVC_VERSQUIET;
471 }
472 #endif
473 
474 /*
475  * Authentication error reply
476  */
477 void
478 svcerr_auth(xprt, why)
479 	SVCXPRT *xprt;
480 	enum auth_stat why;
481 {
482 	struct rpc_msg rply;
483 
484 	assert(xprt != NULL);
485 
486 	rply.rm_direction = REPLY;
487 	rply.rm_reply.rp_stat = MSG_DENIED;
488 	rply.rjcted_rply.rj_stat = AUTH_ERROR;
489 	rply.rjcted_rply.rj_why = why;
490 	SVC_REPLY(xprt, &rply);
491 }
492 
493 /*
494  * Auth too weak error reply
495  */
496 void
497 svcerr_weakauth(xprt)
498 	SVCXPRT *xprt;
499 {
500 
501 	assert(xprt != NULL);
502 
503 	svcerr_auth(xprt, AUTH_TOOWEAK);
504 }
505 
506 /*
507  * Program unavailable error reply
508  */
509 void
510 svcerr_noprog(xprt)
511 	SVCXPRT *xprt;
512 {
513 	struct rpc_msg rply;
514 
515 	assert(xprt != NULL);
516 
517 	rply.rm_direction = REPLY;
518 	rply.rm_reply.rp_stat = MSG_ACCEPTED;
519 	rply.acpted_rply.ar_verf = xprt->xp_verf;
520 	rply.acpted_rply.ar_stat = PROG_UNAVAIL;
521 	SVC_REPLY(xprt, &rply);
522 }
523 
524 /*
525  * Program version mismatch error reply
526  */
527 void
528 svcerr_progvers(xprt, low_vers, high_vers)
529 	SVCXPRT *xprt;
530 	rpcvers_t low_vers;
531 	rpcvers_t high_vers;
532 {
533 	struct rpc_msg rply;
534 
535 	assert(xprt != NULL);
536 
537 	rply.rm_direction = REPLY;
538 	rply.rm_reply.rp_stat = MSG_ACCEPTED;
539 	rply.acpted_rply.ar_verf = xprt->xp_verf;
540 	rply.acpted_rply.ar_stat = PROG_MISMATCH;
541 	rply.acpted_rply.ar_vers.low = (u_int32_t)low_vers;
542 	rply.acpted_rply.ar_vers.high = (u_int32_t)high_vers;
543 	SVC_REPLY(xprt, &rply);
544 }
545 
546 /* ******************* SERVER INPUT STUFF ******************* */
547 
548 /*
549  * Get server side input from some transport.
550  *
551  * Statement of authentication parameters management:
552  * This function owns and manages all authentication parameters, specifically
553  * the "raw" parameters (msg.rm_call.cb_cred and msg.rm_call.cb_verf) and
554  * the "cooked" credentials (rqst->rq_clntcred).
555  * However, this function does not know the structure of the cooked
556  * credentials, so it make the following assumptions:
557  *   a) the structure is contiguous (no pointers), and
558  *   b) the cred structure size does not exceed RQCRED_SIZE bytes.
559  * In all events, all three parameters are freed upon exit from this routine.
560  * The storage is trivially management on the call stack in user land, but
561  * is mallocated in kernel land.
562  */
563 
564 void
565 svc_getreq(rdfds)
566 	int rdfds;
567 {
568 	fd_set readfds;
569 
570 	FD_ZERO(&readfds);
571 	readfds.fds_bits[0] = rdfds;
572 	svc_getreqset(&readfds);
573 }
574 
575 void
576 svc_getreqset(readfds)
577 	fd_set *readfds;
578 {
579 	int bit, fd;
580 	fd_mask mask, *maskp;
581 	int sock;
582 
583 	assert(readfds != NULL);
584 
585 	maskp = readfds->fds_bits;
586 	for (sock = 0; sock < FD_SETSIZE; sock += NFDBITS) {
587 	    for (mask = *maskp++; (bit = ffs(mask)) != 0;
588 		mask ^= (1 << (bit - 1))) {
589 		/* sock has input waiting */
590 		fd = sock + bit - 1;
591 		svc_getreq_common(fd);
592 	    }
593 	}
594 }
595 
596 void
597 svc_getreq_common(fd)
598 	int fd;
599 {
600 	SVCXPRT *xprt;
601 	struct svc_req r;
602 	struct rpc_msg msg;
603 	int prog_found;
604 	rpcvers_t low_vers;
605 	rpcvers_t high_vers;
606 	enum xprt_stat stat;
607 	char cred_area[2*MAX_AUTH_BYTES + RQCRED_SIZE];
608 
609 	msg.rm_call.cb_cred.oa_base = cred_area;
610 	msg.rm_call.cb_verf.oa_base = &(cred_area[MAX_AUTH_BYTES]);
611 	r.rq_clntcred = &(cred_area[2*MAX_AUTH_BYTES]);
612 
613 	rwlock_rdlock(&svc_fd_lock);
614 	xprt = xports[fd];
615 	rwlock_unlock(&svc_fd_lock);
616 	if (xprt == NULL)
617 		/* But do we control sock? */
618 		return;
619 	/* now receive msgs from xprtprt (support batch calls) */
620 	do {
621 		if (SVC_RECV(xprt, &msg)) {
622 
623 			/* now find the exported program and call it */
624 			struct svc_callout *s;
625 			enum auth_stat why;
626 
627 			r.rq_xprt = xprt;
628 			r.rq_prog = msg.rm_call.cb_prog;
629 			r.rq_vers = msg.rm_call.cb_vers;
630 			r.rq_proc = msg.rm_call.cb_proc;
631 			r.rq_cred = msg.rm_call.cb_cred;
632 			/* first authenticate the message */
633 			if ((why = _authenticate(&r, &msg)) != AUTH_OK) {
634 				svcerr_auth(xprt, why);
635 				goto call_done;
636 			}
637 			/* now match message with a registered service*/
638 			prog_found = FALSE;
639 			low_vers = (rpcvers_t) -1L;
640 			high_vers = (rpcvers_t) 0L;
641 			for (s = svc_head; s != NULL; s = s->sc_next) {
642 				if (s->sc_prog == r.rq_prog) {
643 					if (s->sc_vers == r.rq_vers) {
644 						(*s->sc_dispatch)(&r, xprt);
645 						goto call_done;
646 					}  /* found correct version */
647 					prog_found = TRUE;
648 					if (s->sc_vers < low_vers)
649 						low_vers = s->sc_vers;
650 					if (s->sc_vers > high_vers)
651 						high_vers = s->sc_vers;
652 				}   /* found correct program */
653 			}
654 			/*
655 			 * if we got here, the program or version
656 			 * is not served ...
657 			 */
658 			if (prog_found)
659 				svcerr_progvers(xprt, low_vers, high_vers);
660 			else
661 				 svcerr_noprog(xprt);
662 			/* Fall through to ... */
663 		}
664 		/*
665 		 * Check if the xprt has been disconnected in a
666 		 * recursive call in the service dispatch routine.
667 		 * If so, then break.
668 		 */
669 		rwlock_rdlock(&svc_fd_lock);
670 		if (xprt != xports[fd]) {
671 			rwlock_unlock(&svc_fd_lock);
672 			break;
673 		}
674 		rwlock_unlock(&svc_fd_lock);
675 call_done:
676 		if ((stat = SVC_STAT(xprt)) == XPRT_DIED){
677 			SVC_DESTROY(xprt);
678 			break;
679 		}
680 	} while (stat == XPRT_MOREREQS);
681 }
682 
683 
684 void
685 svc_getreq_poll(pfdp, pollretval)
686 	struct pollfd	*pfdp;
687 	int	pollretval;
688 {
689 	int i;
690 	int fds_found;
691 
692 	for (i = fds_found = 0; fds_found < pollretval; i++) {
693 		struct pollfd *p = &pfdp[i];
694 
695 		if (p->revents) {
696 			/* fd has input waiting */
697 			fds_found++;
698 			/*
699 			 *	We assume that this function is only called
700 			 *	via someone _select()ing from svc_fdset or
701 			 *	_poll()ing from svc_pollset[].  Thus it's safe
702 			 *	to handle the POLLNVAL event by simply turning
703 			 *	the corresponding bit off in svc_fdset.  The
704 			 *	svc_pollset[] array is derived from svc_fdset
705 			 *	and so will also be updated eventually.
706 			 *
707 			 *	XXX Should we do an xprt_unregister() instead?
708 			 */
709 			if (p->revents & POLLNVAL) {
710 				rwlock_wrlock(&svc_fd_lock);
711 				FD_CLR(p->fd, &svc_fdset);
712 				rwlock_unlock(&svc_fd_lock);
713 			} else
714 				svc_getreq_common(p->fd);
715 		}
716 	}
717 }
718