-
Notifications
You must be signed in to change notification settings - Fork 0
/
phone_book_svc.c
251 lines (224 loc) · 5.53 KB
/
phone_book_svc.c
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
/*
* Please do not edit this file.
* It was generated using rpcgen.
*/
#include "phone_book.h"
#include <sys/ioctl.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <rpc/pmap_clnt.h>
#include <string.h>
#include <netdb.h>
#include <signal.h>
#include <sys/ttycom.h>
#ifdef __cplusplus
#include <sysent.h>
#endif /* __cplusplus */
#include <memory.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <syslog.h>
#ifdef __STDC__
#define SIG_PF void(*)(int)
#endif
#ifdef DEBUG
#define RPC_SVC_FG
#endif
#define _RPCSVC_CLOSEDOWN 120
static int _rpcpmstart; /* Started by a port monitor ? */
static int _rpcfdtype; /* Whether Stream or Datagram ? */
static int _rpcsvcdirty; /* Still serving ? */
static
void _msgout(char* msg)
{
#ifdef RPC_SVC_FG
if (_rpcpmstart)
syslog(LOG_ERR, msg);
else
(void) fprintf(stderr, "%s\n", msg);
#else
syslog(LOG_ERR, msg);
#endif
}
static void closedown(void);
static void
closedown()
{
if (_rpcsvcdirty == 0) {
extern fd_set svc_fdset;
static int size;
int i, openfd;
if (_rpcfdtype == SOCK_DGRAM)
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 <= (_rpcpmstart?0:1))
exit(0);
}
(void) alarm(_RPCSVC_CLOSEDOWN);
}
static void phone_book_prog_1(struct svc_req *rqstp, SVCXPRT *transp);
static void
phone_book_prog_1(struct svc_req *rqstp, SVCXPRT *transp)
{
union {
entry add_to_database_1_arg;
char *remove_from_database_1_arg;
char *lookup_name_1_arg;
} argument;
char *result;
xdrproc_t xdr_argument, xdr_result;
char *(*local)(char *, struct svc_req *);
_rpcsvcdirty = 1;
switch (rqstp->rq_proc) {
case NULLPROC:
(void) svc_sendreply(transp, (xdrproc_t) xdr_void, (char *)NULL);
_rpcsvcdirty = 0;
return;
case ADD_TO_DATABASE:
xdr_argument = (xdrproc_t) xdr_entry;
xdr_result = (xdrproc_t) xdr_r_val;
local = (char *(*)(char *, struct svc_req *)) add_to_database_1_svc;
break;
case REMOVE_FROM_DATABASE:
xdr_argument = (xdrproc_t) xdr_wrapstring;
xdr_result = (xdrproc_t) xdr_r_val;
local = (char *(*)(char *, struct svc_req *)) remove_from_database_1_svc;
break;
case LOOKUP_NAME:
xdr_argument = (xdrproc_t) xdr_wrapstring;
xdr_result = (xdrproc_t) xdr_r_val;
local = (char *(*)(char *, struct svc_req *)) lookup_name_1_svc;
break;
case LIST:
xdr_argument = (xdrproc_t) xdr_void;
xdr_result = (xdrproc_t) xdr_r_val;
local = (char *(*)(char *, struct svc_req *)) list_1_svc;
break;
case QUIT:
xdr_argument = (xdrproc_t) xdr_void;
xdr_result = (xdrproc_t) xdr_int;
local = (char *(*)(char *, struct svc_req *)) quit_1_svc;
break;
case TERMINATE:
xdr_argument = (xdrproc_t) xdr_void;
xdr_result = (xdrproc_t) xdr_int;
local = (char *(*)(char *, struct svc_req *)) terminate_1_svc;
break;
default:
svcerr_noproc(transp);
_rpcsvcdirty = 0;
return;
}
(void) memset((char *)&argument, 0, sizeof (argument));
if (!svc_getargs(transp, xdr_argument, (caddr_t) &argument)) {
svcerr_decode(transp);
_rpcsvcdirty = 0;
return;
}
result = (*local)((char *)&argument, rqstp);
if (result != NULL && !svc_sendreply(transp, (xdrproc_t) xdr_result, result)) {
svcerr_systemerr(transp);
}
if (!svc_freeargs(transp, xdr_argument, (caddr_t) &argument)) {
_msgout("unable to free arguments");
exit(1);
}
_rpcsvcdirty = 0;
return;
}
int main( int argc, char* argv[] );
int
main( int argc, char* argv[] )
{
SVCXPRT *transp = NULL;
int sock;
int proto = 0;
struct sockaddr_in saddr;
int asize = sizeof (saddr);
if (getsockname(0, (struct sockaddr *)&saddr, &asize) == 0) {
int ssize = sizeof (int);
if (saddr.sin_family != AF_INET)
exit(1);
if (getsockopt(0, SOL_SOCKET, SO_TYPE,
(char *)&_rpcfdtype, &ssize) == -1)
exit(1);
sock = 0;
_rpcpmstart = 1;
proto = 0;
openlog("phone_book", LOG_PID, LOG_DAEMON);
} else {
#ifndef RPC_SVC_FG
int size;
int pid, i;
pid = fork();
if (pid < 0) {
perror("cannot fork");
exit(1);
}
if (pid)
exit(0);
size = getdtablesize();
for (i = 0; i < size; i++)
(void) close(i);
i = open("/dev/console", 2);
(void) dup2(i, 1);
(void) dup2(i, 2);
i = open("/dev/tty", 2);
if (i >= 0) {
(void) ioctl(i, TIOCNOTTY, (char *)NULL);
(void) close(i);
}
openlog("phone_book", LOG_PID, LOG_DAEMON);
#endif
sock = RPC_ANYSOCK;
(void) pmap_unset(PHONE_BOOK_PROG, PHONE_BOOK_VERS);
}
if ((_rpcfdtype == 0) || (_rpcfdtype == SOCK_DGRAM)) {
transp = svcudp_create(sock);
if (transp == NULL) {
_msgout("cannot create udp service.");
exit(1);
}
if (!_rpcpmstart)
proto = IPPROTO_UDP;
if (!svc_register(transp, PHONE_BOOK_PROG, PHONE_BOOK_VERS, phone_book_prog_1, proto)) {
_msgout("unable to register (PHONE_BOOK_PROG, PHONE_BOOK_VERS, udp).");
exit(1);
}
}
if ((_rpcfdtype == 0) || (_rpcfdtype == SOCK_STREAM)) {
if (_rpcpmstart)
transp = svcfd_create(sock, 0, 0);
else
transp = svctcp_create(sock, 0, 0);
if (transp == NULL) {
_msgout("cannot create tcp service.");
exit(1);
}
if (!_rpcpmstart)
proto = IPPROTO_TCP;
if (!svc_register(transp, PHONE_BOOK_PROG, PHONE_BOOK_VERS, phone_book_prog_1, proto)) {
_msgout("unable to register (PHONE_BOOK_PROG, PHONE_BOOK_VERS, tcp).");
exit(1);
}
}
if (transp == (SVCXPRT *)NULL) {
_msgout("could not create a handle");
exit(1);
}
if (_rpcpmstart) {
(void) signal(SIGALRM, (SIG_PF) closedown);
(void) alarm(_RPCSVC_CLOSEDOWN);
}
svc_run();
_msgout("svc_run returned");
exit(1);
/* NOTREACHED */
}