]> git.ipfire.org Git - thirdparty/glibc.git/blame - sunrpc/svc_run.c
Fix http: URL in 'configure'
[thirdparty/glibc.git] / sunrpc / svc_run.c
CommitLineData
28f540f4 1/*
a7ab6ec8
UD
2 * Copyright (c) 2010, Oracle America, Inc.
3 * Redistribution and use in source and binary forms, with or without
4 * modification, are permitted provided that the following conditions are
5 * met:
c4029823 6 *
a7ab6ec8
UD
7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above
10 * copyright notice, this list of conditions and the following
11 * disclaimer in the documentation and/or other materials
12 * provided with the distribution.
13 * * Neither the name of the "Oracle America, Inc." nor the names of its
14 * contributors may be used to endorse or promote products derived
15 * from this software without specific prior written permission.
c4029823 16 *
a7ab6ec8
UD
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
20 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
21 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
22 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
24 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
c4029823 29 *
28f540f4
RM
30 * This is the rpc server side idle loop
31 * Wait for input, call server program.
32 */
bdb04ee8 33
e7fd8a39 34#include <errno.h>
bdb04ee8 35#include <unistd.h>
4360eafd 36#include <libintl.h>
bdb04ee8 37#include <sys/poll.h>
28f540f4 38#include <rpc/rpc.h>
82f43dd2 39#include <shlib-compat.h>
28f540f4 40
1f07e617
UD
41/* This function can be used as a signal handler to terminate the
42 server loop. */
43void
44svc_exit (void)
45{
bdb04ee8
UD
46 free (svc_pollfd);
47 svc_pollfd = NULL;
48 svc_max_pollfd = 0;
1f07e617 49}
021db4be 50libc_hidden_nolink_sunrpc (svc_exit, GLIBC_2_0)
1f07e617 51
28f540f4 52void
e7fd8a39 53svc_run (void)
28f540f4 54{
bdb04ee8 55 int i;
11bf311e
UD
56 struct pollfd *my_pollfd = NULL;
57 int last_max_pollfd = 0;
1f07e617 58
e7fd8a39
UD
59 for (;;)
60 {
11bf311e
UD
61 int max_pollfd = svc_max_pollfd;
62 if (max_pollfd == 0 && svc_pollfd == NULL)
63 break;
bdb04ee8 64
11bf311e 65 if (last_max_pollfd != max_pollfd)
32c075e1 66 {
11bf311e
UD
67 struct pollfd *new_pollfd
68 = realloc (my_pollfd, sizeof (struct pollfd) * max_pollfd);
69
70 if (new_pollfd == NULL)
71 {
72 perror (_("svc_run: - out of memory"));
73 break;
74 }
75
76 my_pollfd = new_pollfd;
77 last_max_pollfd = max_pollfd;
b1a758f3 78 }
1f07e617 79
11bf311e 80 for (i = 0; i < max_pollfd; ++i)
bdb04ee8
UD
81 {
82 my_pollfd[i].fd = svc_pollfd[i].fd;
83 my_pollfd[i].events = svc_pollfd[i].events;
84 my_pollfd[i].revents = 0;
85 }
86
11bf311e 87 switch (i = __poll (my_pollfd, max_pollfd, -1))
e7fd8a39
UD
88 {
89 case -1:
90 if (errno == EINTR)
bdb04ee8
UD
91 continue;
92 perror (_("svc_run: - poll failed"));
11bf311e 93 break;
e7fd8a39
UD
94 case 0:
95 continue;
96 default:
7b57bfe5 97 svc_getreq_poll (my_pollfd, i);
11bf311e 98 continue;
28f540f4 99 }
11bf311e 100 break;
e7fd8a39 101 }
11bf311e
UD
102
103 free (my_pollfd);
28f540f4 104}
4df46dbd
L
105#ifdef EXPORT_RPC_SYMBOLS
106libc_hidden_def (svc_run)
107#else
021db4be 108libc_hidden_nolink_sunrpc (svc_run, GLIBC_2_0)
4df46dbd 109#endif