1 /* $NetBSD: svc_run.c,v 1.22 2013/03/11 20:19:29 tron Exp $ */
4 * Copyright (c) 2010, Oracle America, Inc.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following
14 * disclaimer in the documentation and/or other materials
15 * provided with the distribution.
16 * * Neither the name of the "Oracle America, Inc." nor the names of its
17 * contributors may be used to endorse or promote products derived
18 * from this software without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
27 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
29 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 #include <sys/cdefs.h>
35 #if defined(LIBC_SCCS) && !defined(lint)
37 static char *sccsid
= "@(#)svc_run.c 1.1 87/10/13 Copyr 1984 Sun Micro";
38 static char *sccsid
= "@(#)svc_run.c 2.1 88/07/29 4.0 RPCSRC";
40 __RCSID("$NetBSD: svc_run.c,v 1.22 2013/03/11 20:19:29 tron Exp $");
45 * This is the rpc server side idle loop
46 * Wait for input, call server program.
48 #include "namespace.h"
49 #include "reentrant.h"
58 #include "svc_fdset.h"
59 #include "rpc_internal.h"
62 __weak_alias(svc_run
,_svc_run
)
63 __weak_alias(svc_exit
,_svc_exit
)
69 fd_set readfds
, cleanfds
;
70 struct timeval timeout
;
76 extern rwlock_t svc_fd_lock
;
83 rwlock_rdlock(&svc_fd_lock
);
84 readfds
= *get_fdset();
85 cleanfds
= *get_fdset();
86 maxfd
= *get_fdsetmax();
87 rwlock_unlock(&svc_fd_lock
);
88 switch (select(maxfd
+ 1, &readfds
, NULL
, NULL
, &timeout
)) {
91 if ((errno
== EINTR
|| errno
== EBADF
) && probs
< 100) {
99 warn("%s: select failed", __func__
);
102 __svc_clean_idle(&cleanfds
, 30, FALSE
);
105 svc_getreqset(&readfds
);
114 * This function causes svc_run() to exit by telling it that it has no
121 extern rwlock_t svc_fd_lock
;
124 rwlock_wrlock(&svc_fd_lock
);
125 FD_ZERO(get_fdset());
126 rwlock_unlock(&svc_fd_lock
);