auth_none.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:4k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* auth_none.c -  client authentication for remote systems */
  2. /* Copyright 1984-2000 Wind River Systems, Inc. */
  3. #include "copyright_wrs.h"
  4. /*
  5.  * Copyright (c) 1987 Wind River Systems, Inc.
  6.  * Copyright (C) 1984, Sun Microsystems, Inc.
  7.  *
  8.  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  9.  * unrestricted use provided that this legend is included on all tape
  10.  * media and as a part of the software program in whole or part.  Users
  11.  * may copy or modify Sun RPC without charge, but are not authorized
  12.  * to license or distribute it to anyone else except as part of a product or
  13.  * program developed by the user.
  14.  *
  15.  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  16.  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  17.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  18.  *
  19.  * Sun RPC is provided with no support and without any obligation on the
  20.  * part of Sun Microsystems, Inc. to assist in its use, correction,
  21.  * modification or enhancement.
  22.  *
  23.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  24.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  25.  * OR ANY PART THEREOF.
  26.  *
  27.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  28.  * or profits or other special, indirect and consequential damages, even if
  29.  * Sun has been advised of the possibility of such damages.
  30.  *
  31.  * Sun Microsystems, Inc.
  32.  * 2550 Garcia Avenue
  33.  * Mountain View, California  94043
  34.  */
  35. /*
  36. modification history
  37. --------------------
  38. 01h,18apr00,ham  fixed compilation warnings.
  39. 01g,26may92,rrr  the tree shuffle
  40. 01f,04oct91,rrr  passed through the ansification filter
  41.   -changed includes to have absolute path from h/
  42.   -changed copyright notice
  43. 01e,10may90,dnw   moved moduleStatics to rpcGbl; removed init/exit routines
  44.   changed taskModuleList to taskRpcStatics
  45. 01d,27oct89,hjb   upgraded to 4.0
  46. 01c,19apr89,gae   added auth_noneExit to do tidy cleanup of tasks.
  47.   changed auth_noneInit to return pointer to moduleStatics.
  48. 01b,11nov87,jlf   added wrs copyright, title, mod history, etc.
  49. 01a,01nov87,rdc   first VxWorks version
  50. */
  51. /*
  52.  * auth_none.c
  53.  * Creates a client authentication handle for passing "null"
  54.  * credentials and verifiers to remote systems.
  55.  *
  56.  * Copyright (C) 1984, Sun Microsystems, Inc.
  57.  */
  58. #include "rpc/rpctypes.h"
  59. #include "rpc/xdr.h"
  60. #include "rpc/auth.h"
  61. #include "vxWorks.h"
  62. #include "memLib.h"
  63. #include "rpc/rpcGbl.h"
  64. extern bool_t xdr_opaque_auth (XDR *xdrs, struct opaque_auth *ap);
  65. /* XXX #define NULL ((caddr_t)0) */
  66. /* #define MAX_MARSHEL_SIZE 20 XXX moved to rpcGbl */
  67. /*
  68.  * Authenticator operations routines
  69.  */
  70. LOCAL void authnone_verf(); /* 4.0 */
  71. LOCAL void authnone_destroy(); /* 4.0 */
  72. LOCAL bool_t authnone_marshal(); /* 4.0 */
  73. LOCAL bool_t authnone_validate(); /* 4.0 */
  74. LOCAL bool_t authnone_refresh(); /* 4.0 */
  75. static struct auth_ops ops = {
  76. authnone_verf,
  77. authnone_marshal,
  78. authnone_validate,
  79. authnone_refresh,
  80. authnone_destroy
  81. };
  82. AUTH *
  83. authnone_create()
  84. {
  85. XDR xdr_stream;
  86. register XDR *xdrs;
  87. FAST struct auth_none *ms = &taskRpcStatics->auth_none;
  88. if (! ms->mcnt) {
  89. ms->no_client.ah_cred = ms->no_client.ah_verf = _null_auth;
  90. ms->no_client.ah_ops = &ops;
  91. xdrs = &xdr_stream;
  92. xdrmem_create(xdrs, ms->marshalled_client,
  93.     (u_int)MAX_MARSHEL_SIZE, XDR_ENCODE);
  94. (void)xdr_opaque_auth(xdrs, &ms->no_client.ah_cred);
  95. (void)xdr_opaque_auth(xdrs, &ms->no_client.ah_verf);
  96. ms->mcnt = XDR_GETPOS(xdrs);
  97. XDR_DESTROY(xdrs);
  98. }
  99. return (&ms->no_client);
  100. }
  101. /*ARGSUSED*/
  102. LOCAL bool_t /* 4.0 */
  103. authnone_marshal(client, xdrs)
  104. AUTH *client;
  105. XDR *xdrs;
  106. {
  107. FAST struct auth_none *ms = &taskRpcStatics->auth_none;
  108. return ((*xdrs->x_ops->x_putbytes)(xdrs, ms->marshalled_client,
  109.    ms->mcnt));
  110. }
  111. LOCAL void  /* 4.0 */
  112. authnone_verf()
  113. {
  114. }
  115. LOCAL bool_t /* 4.0 */
  116. authnone_validate()
  117. {
  118. return (TRUE);
  119. }
  120. LOCAL bool_t /* 4.0 */
  121. authnone_refresh()
  122. {
  123. return (FALSE);
  124. }
  125. LOCAL void /* 4.0 */
  126. authnone_destroy()
  127. {
  128. }