]>
git.saurik.com Git - apple/libinfo.git/blob - rpc.subproj/svc.c
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Portions Copyright (c) 1999 Apple Computer, Inc. All Rights
7 * Reserved. This file contains Original Code and/or Modifications of
8 * Original Code as defined in and that are subject to the Apple Public
9 * Source License Version 1.1 (the "License"). You may not use this file
10 * except in compliance with the License. Please obtain a copy of the
11 * License at http://www.apple.com/publicsource and read it before using
14 * The Original Code and all software distributed under the License are
15 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the
19 * License for the specific language governing rights and limitations
22 * @APPLE_LICENSE_HEADER_END@
25 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
26 * unrestricted use provided that this legend is included on all tape
27 * media and as a part of the software program in whole or part. Users
28 * may copy or modify Sun RPC without charge, but are not authorized
29 * to license or distribute it to anyone else except as part of a product or
30 * program developed by the user.
32 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
33 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
34 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
36 * Sun RPC is provided with no support and without any obligation on the
37 * part of Sun Microsystems, Inc. to assist in its use, correction,
38 * modification or enhancement.
40 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
41 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
42 * OR ANY PART THEREOF.
44 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
45 * or profits or other special, indirect and consequential damages, even if
46 * Sun has been advised of the possibility of such damages.
48 * Sun Microsystems, Inc.
50 * Mountain View, California 94043
53 #if defined(LIBC_SCCS) && !defined(lint)
54 /*static char *sccsid = "from: @(#)svc.c 1.44 88/02/08 Copyr 1984 Sun Micro";*/
55 /*static char *sccsid = "from: @(#)svc.c 2.4 88/08/11 4.0 RPCSRC";*/
56 static char *rcsid
= "$Id: svc.c,v 1.4 2002/02/19 20:36:24 epeyton Exp $";
60 * svc.c, Server-side remote procedure call interface.
62 * There are two sets of procedures here. The xprt routines are
63 * for handling transport handles. The svc routines handle the
64 * list of service routines.
66 * Copyright (C) 1984, Sun Microsystems, Inc.
71 #include <sys/errno.h>
73 #include <rpc/pmap_clnt.h>
77 static SVCXPRT
**xports
;
79 #define NULL_SVC ((struct svc_callout *)0)
80 #define RQCRED_SIZE 400 /* this size is excessive */
82 #define max(a, b) (a > b ? a : b)
86 * Each entry represents a set of procedures (an rpc program).
87 * The dispatch routine takes request structs and runs the
88 * apropriate procedure.
90 static struct svc_callout
{
91 struct svc_callout
*sc_next
;
99 void (*sc_dispatch
)();
102 static struct svc_callout
*svc_find();
104 /* *************** SVCXPRT related stuff **************** */
106 extern int svc_maxfd
;
109 * Activate a transport handle.
115 register int sock
= xprt
->xp_sock
;
117 if (xports
== NULL
) {
118 xports
= (SVCXPRT
**)
119 mem_alloc(FD_SETSIZE
* sizeof(SVCXPRT
*));
121 if (sock
< FD_SETSIZE
) {
123 FD_SET(sock
, &svc_fdset
);
124 svc_maxfd
= max(svc_maxfd
, sock
);
129 * De-activate a transport handle.
132 xprt_unregister(xprt
)
135 register int sock
= xprt
->xp_sock
;
137 if ((sock
< FD_SETSIZE
) && (xports
[sock
] == xprt
)) {
138 xports
[sock
] = (SVCXPRT
*)0;
139 FD_CLR(sock
, &svc_fdset
);
140 if (sock
== svc_maxfd
) {
141 for (svc_maxfd
--; svc_maxfd
>=0; svc_maxfd
--)
142 if (xports
[svc_maxfd
])
149 /* ********************** CALLOUT list related stuff ************* */
152 * Add a service program to the callout list.
153 * The dispatch routine will be called when a rpc request for this
154 * program number comes in.
157 svc_register(xprt
, prog
, vers
, dispatch
, protocol
)
172 struct svc_callout
*prev
;
173 register struct svc_callout
*s
;
175 if ((s
= svc_find(prog
, vers
, &prev
)) != NULL_SVC
) {
176 if (s
->sc_dispatch
== dispatch
)
177 goto pmap_it
; /* he is registering another xptr */
180 s
= (struct svc_callout
*)mem_alloc(sizeof(struct svc_callout
));
181 if (s
== (struct svc_callout
*)0) {
186 s
->sc_dispatch
= dispatch
;
187 s
->sc_next
= svc_head
;
190 /* now register the information with the local binder service */
192 return (pmap_set(prog
, vers
, protocol
, xprt
->xp_port
));
198 * Remove a service program from the callout list.
201 svc_unregister(prog
, vers
)
210 struct svc_callout
*prev
;
211 register struct svc_callout
*s
;
213 if ((s
= svc_find(prog
, vers
, &prev
)) == NULL_SVC
)
215 if (prev
== NULL_SVC
) {
216 svc_head
= s
->sc_next
;
218 prev
->sc_next
= s
->sc_next
;
220 s
->sc_next
= NULL_SVC
;
221 mem_free((char *) s
, (u_int
) sizeof(struct svc_callout
));
222 /* now unregister the information with the local binder service */
223 (void)pmap_unset(prog
, vers
);
227 * Search the callout list for a program number, return the callout
230 static struct svc_callout
*
231 svc_find(prog
, vers
, prev
)
239 struct svc_callout
**prev
;
241 register struct svc_callout
*s
, *p
;
244 for (s
= svc_head
; s
!= NULL_SVC
; s
= s
->sc_next
) {
245 if ((s
->sc_prog
== prog
) && (s
->sc_vers
== vers
))
254 /* ******************* REPLY GENERATION ROUTINES ************ */
257 * Send a reply to an rpc request
260 svc_sendreply(xprt
, xdr_results
, xdr_location
)
261 register SVCXPRT
*xprt
;
262 xdrproc_t xdr_results
;
263 caddr_t xdr_location
;
267 rply
.rm_direction
= REPLY
;
268 rply
.rm_reply
.rp_stat
= MSG_ACCEPTED
;
269 rply
.acpted_rply
.ar_verf
= xprt
->xp_verf
;
270 rply
.acpted_rply
.ar_stat
= SUCCESS
;
271 rply
.acpted_rply
.ar_results
.where
= xdr_location
;
272 rply
.acpted_rply
.ar_results
.proc
= xdr_results
;
273 return (SVC_REPLY(xprt
, &rply
));
277 * No procedure error reply
281 register SVCXPRT
*xprt
;
285 rply
.rm_direction
= REPLY
;
286 rply
.rm_reply
.rp_stat
= MSG_ACCEPTED
;
287 rply
.acpted_rply
.ar_verf
= xprt
->xp_verf
;
288 rply
.acpted_rply
.ar_stat
= PROC_UNAVAIL
;
289 SVC_REPLY(xprt
, &rply
);
293 * Can't decode args error reply
297 register SVCXPRT
*xprt
;
301 rply
.rm_direction
= REPLY
;
302 rply
.rm_reply
.rp_stat
= MSG_ACCEPTED
;
303 rply
.acpted_rply
.ar_verf
= xprt
->xp_verf
;
304 rply
.acpted_rply
.ar_stat
= GARBAGE_ARGS
;
305 SVC_REPLY(xprt
, &rply
);
312 svcerr_systemerr(xprt
)
313 register SVCXPRT
*xprt
;
317 rply
.rm_direction
= REPLY
;
318 rply
.rm_reply
.rp_stat
= MSG_ACCEPTED
;
319 rply
.acpted_rply
.ar_verf
= xprt
->xp_verf
;
320 rply
.acpted_rply
.ar_stat
= SYSTEM_ERR
;
321 SVC_REPLY(xprt
, &rply
);
325 * Authentication error reply
328 svcerr_auth(xprt
, why
)
334 rply
.rm_direction
= REPLY
;
335 rply
.rm_reply
.rp_stat
= MSG_DENIED
;
336 rply
.rjcted_rply
.rj_stat
= AUTH_ERROR
;
337 rply
.rjcted_rply
.rj_why
= why
;
338 SVC_REPLY(xprt
, &rply
);
342 * Auth too weak error reply
345 svcerr_weakauth(xprt
)
349 svcerr_auth(xprt
, AUTH_TOOWEAK
);
353 * Program unavailable error reply
357 register SVCXPRT
*xprt
;
361 rply
.rm_direction
= REPLY
;
362 rply
.rm_reply
.rp_stat
= MSG_ACCEPTED
;
363 rply
.acpted_rply
.ar_verf
= xprt
->xp_verf
;
364 rply
.acpted_rply
.ar_stat
= PROG_UNAVAIL
;
365 SVC_REPLY(xprt
, &rply
);
369 * Program version mismatch error reply
372 svcerr_progvers(xprt
, low_vers
, high_vers
)
374 register SVCXPRT
*xprt
;
378 register SVCXPRT
*xprt
;
385 rply
.rm_direction
= REPLY
;
386 rply
.rm_reply
.rp_stat
= MSG_ACCEPTED
;
387 rply
.acpted_rply
.ar_verf
= xprt
->xp_verf
;
388 rply
.acpted_rply
.ar_stat
= PROG_MISMATCH
;
389 rply
.acpted_rply
.ar_vers
.low
= low_vers
;
390 rply
.acpted_rply
.ar_vers
.high
= high_vers
;
391 SVC_REPLY(xprt
, &rply
);
394 /* ******************* SERVER INPUT STUFF ******************* */
397 * Get server side input from some transport.
399 * Statement of authentication parameters management:
400 * This function owns and manages all authentication parameters, specifically
401 * the "raw" parameters (msg.rm_call.cb_cred and msg.rm_call.cb_verf) and
402 * the "cooked" credentials (rqst->rq_clntcred).
403 * However, this function does not know the structure of the cooked
404 * credentials, so it make the following assumptions:
405 * a) the structure is contiguous (no pointers), and
406 * b) the cred structure size does not exceed RQCRED_SIZE bytes.
407 * In all events, all three parameters are freed upon exit from this routine.
408 * The storage is trivially management on the call stack in user land, but
409 * is mallocated in kernel land.
419 readfds
.fds_bits
[0] = rdfds
;
420 svc_getreqset(&readfds
);
424 svc_getreqset(readfds
)
438 register SVCXPRT
*xprt
;
440 register uint32_t mask
;
442 register u_long mask
;
446 register uint32_t *maskp
;
448 register u_long
*maskp
;
451 char cred_area
[2*MAX_AUTH_BYTES
+ RQCRED_SIZE
];
452 msg
.rm_call
.cb_cred
.oa_base
= cred_area
;
453 msg
.rm_call
.cb_verf
.oa_base
= &(cred_area
[MAX_AUTH_BYTES
]);
454 r
.rq_clntcred
= &(cred_area
[2*MAX_AUTH_BYTES
]);
457 maskp
= (uint32_t *)readfds
->fds_bits
;
459 maskp
= (u_long
*)readfds
->fds_bits
;
461 for (sock
= 0; sock
<= svc_maxfd
; sock
+= NFDBITS
) {
462 for (mask
= *maskp
++; (bit
= ffs(mask
)); mask
^= (1 << (bit
- 1))) {
463 if ((sock
+ bit
) > (svc_maxfd
+ 1))
464 /* if we're past our sockets */
466 /* sock has input waiting */
467 xprt
= xports
[sock
+ bit
- 1];
469 /* But do we control sock? */
471 /* now receive msgs from xprtprt (support batch calls) */
473 if (SVC_RECV(xprt
, &msg
)) {
475 /* now find the exported program and call it */
476 register struct svc_callout
*s
;
480 r
.rq_prog
= msg
.rm_call
.cb_prog
;
481 r
.rq_vers
= msg
.rm_call
.cb_vers
;
482 r
.rq_proc
= msg
.rm_call
.cb_proc
;
483 r
.rq_cred
= msg
.rm_call
.cb_cred
;
484 /* first authenticate the message */
485 if ((why
= _authenticate(&r
, &msg
)) != AUTH_OK
) {
486 svcerr_auth(xprt
, why
);
489 /* now match message with a registered service*/
493 for (s
= svc_head
; s
!= NULL_SVC
; s
= s
->sc_next
) {
494 if (s
->sc_prog
== r
.rq_prog
) {
495 if (s
->sc_vers
== r
.rq_vers
) {
496 (*s
->sc_dispatch
)(&r
, xprt
);
498 } /* found correct version */
500 if (s
->sc_vers
< low_vers
)
501 low_vers
= s
->sc_vers
;
502 if (s
->sc_vers
> high_vers
)
503 high_vers
= s
->sc_vers
;
504 } /* found correct program */
507 * if we got here, the program or version
511 svcerr_progvers(xprt
,
512 low_vers
, high_vers
);
515 /* Fall through to ... */
518 if ((stat
= SVC_STAT(xprt
)) == XPRT_DIED
){
522 } while (stat
== XPRT_MOREREQS
);