2 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3 * unrestricted use provided that this legend is included on all tape
4 * media and as a part of the software program in whole or part. Users
5 * may copy or modify Sun RPC without charge, but are not authorized
6 * to license or distribute it to anyone else except as part of a product or
7 * program developed by the user.
9 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
10 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
11 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
13 * Sun RPC is provided with no support and without any obligation on the
14 * part of Sun Microsystems, Inc. to assist in its use, correction,
15 * modification or enhancement.
17 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
18 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
19 * OR ANY PART THEREOF.
21 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
22 * or profits or other special, indirect and consequential damages, even if
23 * Sun has been advised of the possibility of such damages.
25 * Sun Microsystems, Inc.
27 * Mountain View, California 94043
30 * svc.c, Server-side remote procedure call interface.
32 * There are two sets of procedures here. The xprt routines are
33 * for handling transport handles. The svc routines handle the
34 * list of service routines.
36 * Copyright (C) 1984, Sun Microsystems, Inc.
43 #include <rpc/pmap_clnt.h>
46 #ifdef _RPC_THREAD_SAFE_
47 #define xports RPC_THREAD_VARIABLE(svc_xports_s)
49 static SVCXPRT
**xports
;
52 #define NULL_SVC ((struct svc_callout *)0)
53 #define RQCRED_SIZE 400 /* this size is excessive */
56 Each entry represents a set of procedures (an rpc program).
57 The dispatch routine takes request structs and runs the
58 appropriate procedure. */
60 struct svc_callout
*sc_next
;
63 void (*sc_dispatch
) (struct svc_req
*, SVCXPRT
*);
66 #ifdef _RPC_THREAD_SAFE_
67 #define svc_head RPC_THREAD_VARIABLE(svc_head_s)
69 static struct svc_callout
*svc_head
;
72 /* *************** SVCXPRT related stuff **************** */
74 /* Activate a transport handle. */
76 xprt_register (SVCXPRT
*xprt
)
78 register int sock
= xprt
->xp_sock
;
83 xports
= (SVCXPRT
**) malloc (_rpc_dtablesize () * sizeof (SVCXPRT
*));
84 if (xports
== NULL
) /* DonĀ“t add handle */
88 if (sock
< _rpc_dtablesize ())
90 struct pollfd
*new_svc_pollfd
;
93 if (sock
< FD_SETSIZE
)
94 FD_SET (sock
, &svc_fdset
);
96 /* Check if we have an empty slot */
97 for (i
= 0; i
< svc_max_pollfd
; ++i
)
98 if (svc_pollfd
[i
].fd
== -1)
100 svc_pollfd
[i
].fd
= sock
;
101 svc_pollfd
[i
].events
= (POLLIN
| POLLPRI
|
102 POLLRDNORM
| POLLRDBAND
);
106 new_svc_pollfd
= (struct pollfd
*) realloc (svc_pollfd
,
107 sizeof (struct pollfd
)
108 * (svc_max_pollfd
+ 1));
109 if (new_svc_pollfd
== NULL
) /* Out of memory */
111 svc_pollfd
= new_svc_pollfd
;
114 svc_pollfd
[svc_max_pollfd
- 1].fd
= sock
;
115 svc_pollfd
[svc_max_pollfd
- 1].events
= (POLLIN
| POLLPRI
|
116 POLLRDNORM
| POLLRDBAND
);
119 libc_hidden_def (xprt_register
)
121 /* De-activate a transport handle. */
123 xprt_unregister (SVCXPRT
*xprt
)
125 register int sock
= xprt
->xp_sock
;
128 if ((sock
< _rpc_dtablesize ()) && (xports
[sock
] == xprt
))
130 xports
[sock
] = (SVCXPRT
*) 0;
132 if (sock
< FD_SETSIZE
)
133 FD_CLR (sock
, &svc_fdset
);
135 for (i
= 0; i
< svc_max_pollfd
; ++i
)
136 if (svc_pollfd
[i
].fd
== sock
)
137 svc_pollfd
[i
].fd
= -1;
140 libc_hidden_def (xprt_unregister
)
143 /* ********************** CALLOUT list related stuff ************* */
145 /* Search the callout list for a program number, return the callout
147 static struct svc_callout
*
148 svc_find (rpcprog_t prog
, rpcvers_t vers
, struct svc_callout
**prev
)
150 register struct svc_callout
*s
, *p
;
153 for (s
= svc_head
; s
!= NULL_SVC
; s
= s
->sc_next
)
155 if ((s
->sc_prog
== prog
) && (s
->sc_vers
== vers
))
166 svc_is_mapped (rpcprog_t prog
, rpcvers_t vers
)
168 struct svc_callout
*prev
;
169 register struct svc_callout
*s
;
170 s
= svc_find (prog
, vers
, &prev
);
171 return s
!= NULL_SVC
&& s
->sc_mapped
;
175 /* Add a service program to the callout list.
176 The dispatch routine will be called when a rpc request for this
177 program number comes in. */
179 svc_register (SVCXPRT
* xprt
, rpcprog_t prog
, rpcvers_t vers
,
180 void (*dispatch
) (struct svc_req
*, SVCXPRT
*),
183 struct svc_callout
*prev
;
184 register struct svc_callout
*s
;
186 if ((s
= svc_find (prog
, vers
, &prev
)) != NULL_SVC
)
188 if (s
->sc_dispatch
== dispatch
)
189 goto pmap_it
; /* he is registering another xptr */
192 s
= (struct svc_callout
*) mem_alloc (sizeof (struct svc_callout
));
193 if (s
== (struct svc_callout
*) 0)
198 s
->sc_dispatch
= dispatch
;
199 s
->sc_next
= svc_head
;
200 s
->sc_mapped
= FALSE
;
204 /* now register the information with the local binder service */
207 if (! pmap_set (prog
, vers
, protocol
, xprt
->xp_port
))
215 libc_hidden_def (svc_register
)
217 /* Remove a service program from the callout list. */
219 svc_unregister (rpcprog_t prog
, rpcvers_t vers
)
221 struct svc_callout
*prev
;
222 register struct svc_callout
*s
;
224 if ((s
= svc_find (prog
, vers
, &prev
)) == NULL_SVC
)
227 if (prev
== NULL_SVC
)
228 svc_head
= s
->sc_next
;
230 prev
->sc_next
= s
->sc_next
;
232 s
->sc_next
= NULL_SVC
;
233 mem_free ((char *) s
, (u_int
) sizeof (struct svc_callout
));
234 /* now unregister the information with the local binder service */
235 if (! svc_is_mapped (prog
, vers
))
236 pmap_unset (prog
, vers
);
238 libc_hidden_def (svc_unregister
)
240 /* ******************* REPLY GENERATION ROUTINES ************ */
242 /* Send a reply to an rpc request */
244 svc_sendreply (register SVCXPRT
*xprt
, xdrproc_t xdr_results
,
245 caddr_t xdr_location
)
249 rply
.rm_direction
= REPLY
;
250 rply
.rm_reply
.rp_stat
= MSG_ACCEPTED
;
251 rply
.acpted_rply
.ar_verf
= xprt
->xp_verf
;
252 rply
.acpted_rply
.ar_stat
= SUCCESS
;
253 rply
.acpted_rply
.ar_results
.where
= xdr_location
;
254 rply
.acpted_rply
.ar_results
.proc
= xdr_results
;
255 return SVC_REPLY (xprt
, &rply
);
257 INTDEF (svc_sendreply
)
259 /* No procedure error reply */
261 svcerr_noproc (register SVCXPRT
*xprt
)
265 rply
.rm_direction
= REPLY
;
266 rply
.rm_reply
.rp_stat
= MSG_ACCEPTED
;
267 rply
.acpted_rply
.ar_verf
= xprt
->xp_verf
;
268 rply
.acpted_rply
.ar_stat
= PROC_UNAVAIL
;
269 SVC_REPLY (xprt
, &rply
);
272 /* Can't decode args error reply */
274 svcerr_decode (register SVCXPRT
*xprt
)
278 rply
.rm_direction
= REPLY
;
279 rply
.rm_reply
.rp_stat
= MSG_ACCEPTED
;
280 rply
.acpted_rply
.ar_verf
= xprt
->xp_verf
;
281 rply
.acpted_rply
.ar_stat
= GARBAGE_ARGS
;
282 SVC_REPLY (xprt
, &rply
);
284 INTDEF (svcerr_decode
)
286 /* Some system error */
288 svcerr_systemerr (register SVCXPRT
*xprt
)
292 rply
.rm_direction
= REPLY
;
293 rply
.rm_reply
.rp_stat
= MSG_ACCEPTED
;
294 rply
.acpted_rply
.ar_verf
= xprt
->xp_verf
;
295 rply
.acpted_rply
.ar_stat
= SYSTEM_ERR
;
296 SVC_REPLY (xprt
, &rply
);
299 /* Authentication error reply */
301 svcerr_auth (SVCXPRT
*xprt
, enum auth_stat why
)
305 rply
.rm_direction
= REPLY
;
306 rply
.rm_reply
.rp_stat
= MSG_DENIED
;
307 rply
.rjcted_rply
.rj_stat
= AUTH_ERROR
;
308 rply
.rjcted_rply
.rj_why
= why
;
309 SVC_REPLY (xprt
, &rply
);
311 libc_hidden_def (svcerr_auth
)
313 /* Auth too weak error reply */
315 svcerr_weakauth (SVCXPRT
*xprt
)
317 svcerr_auth (xprt
, AUTH_TOOWEAK
);
320 /* Program unavailable error reply */
322 svcerr_noprog (register SVCXPRT
*xprt
)
326 rply
.rm_direction
= REPLY
;
327 rply
.rm_reply
.rp_stat
= MSG_ACCEPTED
;
328 rply
.acpted_rply
.ar_verf
= xprt
->xp_verf
;
329 rply
.acpted_rply
.ar_stat
= PROG_UNAVAIL
;
330 SVC_REPLY (xprt
, &rply
);
332 libc_hidden_def (svcerr_noprog
)
334 /* Program version mismatch error reply */
336 svcerr_progvers (register SVCXPRT
*xprt
, rpcvers_t low_vers
,
341 rply
.rm_direction
= REPLY
;
342 rply
.rm_reply
.rp_stat
= MSG_ACCEPTED
;
343 rply
.acpted_rply
.ar_verf
= xprt
->xp_verf
;
344 rply
.acpted_rply
.ar_stat
= PROG_MISMATCH
;
345 rply
.acpted_rply
.ar_vers
.low
= low_vers
;
346 rply
.acpted_rply
.ar_vers
.high
= high_vers
;
347 SVC_REPLY (xprt
, &rply
);
349 libc_hidden_def (svcerr_progvers
)
351 /* ******************* SERVER INPUT STUFF ******************* */
354 * Get server side input from some transport.
356 * Statement of authentication parameters management:
357 * This function owns and manages all authentication parameters, specifically
358 * the "raw" parameters (msg.rm_call.cb_cred and msg.rm_call.cb_verf) and
359 * the "cooked" credentials (rqst->rq_clntcred).
360 * However, this function does not know the structure of the cooked
361 * credentials, so it make the following assumptions:
362 * a) the structure is contiguous (no pointers), and
363 * b) the cred structure size does not exceed RQCRED_SIZE bytes.
364 * In all events, all three parameters are freed upon exit from this routine.
365 * The storage is trivially management on the call stack in user land, but
366 * is mallocated in kernel land.
370 svc_getreq (int rdfds
)
375 readfds
.fds_bits
[0] = rdfds
;
376 INTUSE(svc_getreqset
) (&readfds
);
381 svc_getreqset (fd_set
*readfds
)
383 register fd_mask mask
;
384 register fd_mask
*maskp
;
385 register int setsize
;
389 setsize
= _rpc_dtablesize ();
390 if (setsize
> FD_SETSIZE
)
391 setsize
= FD_SETSIZE
;
392 maskp
= readfds
->fds_bits
;
393 for (sock
= 0; sock
< setsize
; sock
+= NFDBITS
)
394 for (mask
= *maskp
++; (bit
= ffsl (mask
)); mask
^= (1L << (bit
- 1)))
395 INTUSE(svc_getreq_common
) (sock
+ bit
- 1);
397 INTDEF (svc_getreqset
)
400 svc_getreq_poll (struct pollfd
*pfdp
, int pollretval
)
405 register int fds_found
;
406 for (int i
= fds_found
= 0; i
< svc_max_pollfd
; ++i
)
408 register struct pollfd
*p
= &pfdp
[i
];
410 if (p
->fd
!= -1 && p
->revents
)
412 /* fd has input waiting */
413 if (p
->revents
& POLLNVAL
)
414 xprt_unregister (xports
[p
->fd
]);
416 INTUSE(svc_getreq_common
) (p
->fd
);
418 if (++fds_found
>= pollretval
)
423 INTDEF (svc_getreq_poll
)
427 svc_getreq_common (const int fd
)
431 register SVCXPRT
*xprt
;
432 char cred_area
[2 * MAX_AUTH_BYTES
+ RQCRED_SIZE
];
433 msg
.rm_call
.cb_cred
.oa_base
= cred_area
;
434 msg
.rm_call
.cb_verf
.oa_base
= &(cred_area
[MAX_AUTH_BYTES
]);
437 /* Do we control fd? */
441 /* now receive msgs from xprtprt (support batch calls) */
444 if (SVC_RECV (xprt
, &msg
))
446 /* now find the exported program and call it */
447 struct svc_callout
*s
;
454 r
.rq_clntcred
= &(cred_area
[2 * MAX_AUTH_BYTES
]);
456 r
.rq_prog
= msg
.rm_call
.cb_prog
;
457 r
.rq_vers
= msg
.rm_call
.cb_vers
;
458 r
.rq_proc
= msg
.rm_call
.cb_proc
;
459 r
.rq_cred
= msg
.rm_call
.cb_cred
;
461 /* first authenticate the message */
462 /* Check for null flavor and bypass these calls if possible */
464 if (msg
.rm_call
.cb_cred
.oa_flavor
== AUTH_NULL
)
466 r
.rq_xprt
->xp_verf
.oa_flavor
= _null_auth
.oa_flavor
;
467 r
.rq_xprt
->xp_verf
.oa_length
= 0;
469 else if ((why
= INTUSE(_authenticate
) (&r
, &msg
)) != AUTH_OK
)
471 svcerr_auth (xprt
, why
);
475 /* now match message with a registered service */
480 for (s
= svc_head
; s
!= NULL_SVC
; s
= s
->sc_next
)
482 if (s
->sc_prog
== r
.rq_prog
)
484 if (s
->sc_vers
== r
.rq_vers
)
486 (*s
->sc_dispatch
) (&r
, xprt
);
489 /* found correct version */
491 if (s
->sc_vers
< low_vers
)
492 low_vers
= s
->sc_vers
;
493 if (s
->sc_vers
> high_vers
)
494 high_vers
= s
->sc_vers
;
496 /* found correct program */
498 /* if we got here, the program or version
501 svcerr_progvers (xprt
, low_vers
, high_vers
);
503 svcerr_noprog (xprt
);
504 /* Fall through to ... */
507 if ((stat
= SVC_STAT (xprt
)) == XPRT_DIED
)
513 while (stat
== XPRT_MOREREQS
);
515 INTDEF (svc_getreq_common
)
517 #ifdef _RPC_THREAD_SAFE_
520 __rpc_thread_svc_cleanup (void)
522 struct svc_callout
*svcp
;
524 while ((svcp
= svc_head
) != NULL
)
525 svc_unregister (svcp
->sc_prog
, svcp
->sc_vers
);
528 #endif /* _RPC_THREAD_SAFE_ */