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