1 /* lib/rpc/svc_auth_none.c */ 2 /* 3 Copyright (c) 2000 The Regents of the University of Michigan. 4 All rights reserved. 5 6 Copyright (c) 2000 Dug Song <dugsong@UMICH.EDU>. 7 All rights reserved, all wrongs reversed. 8 9 Redistribution and use in source and binary forms, with or without 10 modification, are permitted provided that the following conditions 11 are met: 12 13 1. Redistributions of source code must retain the above copyright 14 notice, this list of conditions and the following disclaimer. 15 2. Redistributions in binary form must reproduce the above copyright 16 notice, this list of conditions and the following disclaimer in the 17 documentation and/or other materials provided with the distribution. 18 3. Neither the name of the University nor the names of its 19 contributors may be used to endorse or promote products derived 20 from this software without specific prior written permission. 21 22 THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 23 WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 24 MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 25 DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 26 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 27 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 28 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR 29 BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 30 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 31 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 32 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 33 34 Id: svc_auth_none.c,v 1.1 2000/08/24 20:51:34 dugsong Exp 35 */ 36 37 #include <gssrpc/rpc.h> 38 39 static bool_t svcauth_none_destroy(SVCAUTH *); 40 static bool_t svcauth_none_wrap(SVCAUTH *, XDR *, xdrproc_t, 41 caddr_t); 42 43 struct svc_auth_ops svc_auth_none_ops = { 44 svcauth_none_wrap, 45 svcauth_none_wrap, 46 svcauth_none_destroy 47 }; 48 49 SVCAUTH svc_auth_none = { 50 &svc_auth_none_ops, 51 NULL, 52 }; 53 54 static bool_t 55 svcauth_none_destroy(SVCAUTH *auth) 56 { 57 return (TRUE); 58 } 59 60 static bool_t 61 svcauth_none_wrap(SVCAUTH *auth, XDR *xdrs, xdrproc_t xdr_func, 62 caddr_t xdr_ptr) 63 { 64 return ((*xdr_func)(xdrs, xdr_ptr)); 65 } 66 67 enum auth_stat 68 gssrpc__svcauth_none(struct svc_req *rqst, struct rpc_msg *msg, 69 bool_t *no_dispatch) 70 { 71 rqst->rq_xprt->xp_auth = &svc_auth_none; 72 73 return (AUTH_OK); 74 } 75