initial checkin
[platform/upstream/libtirpc.git] / src / svc_run.c
1 /*
2  * Copyright (c) 2009, Sun Microsystems, Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * - Redistributions of source code must retain the above copyright notice,
8  *   this list of conditions and the following disclaimer.
9  * - Redistributions in binary form must reproduce the above copyright notice,
10  *   this list of conditions and the following disclaimer in the documentation
11  *   and/or other materials provided with the distribution.
12  * - Neither the name of Sun Microsystems, Inc. nor the names of its
13  *   contributors may be used to endorse or promote products derived
14  *   from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
20  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26  * POSSIBILITY OF SUCH DAMAGE.
27  */
28
29 /*
30  * This is the rpc server side idle loop
31  * Wait for input, call server program.
32  */
33 #include <pthread.h>
34 #include <reentrant.h>
35 #include <err.h>
36 #include <errno.h>
37 #include <rpc/rpc.h>
38 #include <stdio.h>
39 #include <string.h>
40 #include <unistd.h>
41
42 #include <rpc/rpc.h>
43 #include "rpc_com.h"
44 #include <sys/select.h>
45
46 void
47 svc_run()
48 {
49         fd_set readfds, cleanfds;
50         struct timeval timeout;
51         extern rwlock_t svc_fd_lock;
52
53
54         for (;;) {
55                 rwlock_rdlock(&svc_fd_lock);
56                 readfds = svc_fdset;
57                 cleanfds = svc_fdset;
58                 rwlock_unlock(&svc_fd_lock);
59                 timeout.tv_sec = 30;
60                 timeout.tv_usec = 0;
61                 switch (select(svc_maxfd+1, &readfds, NULL, NULL, &timeout)) {
62                 case -1:
63                         FD_ZERO(&readfds);
64                         if (errno == EINTR) {
65                                 continue;
66                         }
67                         warn("svc_run: - select failed");
68                         return;
69                 case 0:
70                         __svc_clean_idle(&cleanfds, 30, FALSE);
71                         continue;
72                 default:
73                         svc_getreqset(&readfds);
74                 }
75         }
76 }
77
78 /*
79  *      This function causes svc_run() to exit by telling it that it has no
80  *      more work to do.
81  */
82 void
83 svc_exit()
84 {
85         extern rwlock_t svc_fd_lock;
86
87         rwlock_wrlock(&svc_fd_lock);
88         FD_ZERO(&svc_fdset);
89         rwlock_unlock(&svc_fd_lock);
90 }