auth.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. /* @(#)auth.h 2.3 88/08/07 4.0 RPCSRC; from 1.17 88/02/08 SMI */
  2. /*
  3. * Copyright (c) 2010, Oracle America, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions are met:
  9. *
  10. * * Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. *
  13. * * Redistributions in binary form must reproduce the above copyright
  14. * notice, this list of conditions and the following disclaimer in
  15. * the documentation and/or other materials provided with the
  16. * distribution.
  17. *
  18. * * Neither the name of the "Oracle America, Inc." nor the names of
  19. * its contributors may be used to endorse or promote products
  20. * derived from this software without specific prior written permission.
  21. *
  22. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
  23. * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  24. * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  25. * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  26. * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  27. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
  28. * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  29. * PROFITS; OR 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. /*
  35. * auth.h, Authentication interface.
  36. *
  37. * The data structures are completely opaque to the client. The client
  38. * is required to pass a AUTH * to routines that create rpc
  39. * "sessions".
  40. */
  41. #ifndef GSSRPC_AUTH_H
  42. #define GSSRPC_AUTH_H
  43. #include <gssrpc/xdr.h>
  44. GSSRPC__BEGIN_DECLS
  45. #define MAX_AUTH_BYTES 400
  46. #define MAXNETNAMELEN 255 /* maximum length of network user's name */
  47. /*
  48. * Status returned from authentication check
  49. */
  50. enum auth_stat {
  51. AUTH_OK=0,
  52. /*
  53. * failed at remote end
  54. */
  55. AUTH_BADCRED=1, /* bogus credentials (seal broken) */
  56. AUTH_REJECTEDCRED=2, /* client should begin new session */
  57. AUTH_BADVERF=3, /* bogus verifier (seal broken) */
  58. AUTH_REJECTEDVERF=4, /* verifier expired or was replayed */
  59. AUTH_TOOWEAK=5, /* rejected due to security reasons */
  60. /*
  61. * failed locally
  62. */
  63. AUTH_INVALIDRESP=6, /* bogus response verifier */
  64. AUTH_FAILED=7, /* some unknown reason */
  65. /*
  66. * RPCSEC_GSS errors
  67. */
  68. RPCSEC_GSS_CREDPROBLEM = 13,
  69. RPCSEC_GSS_CTXPROBLEM = 14
  70. };
  71. union des_block {
  72. char c[8];
  73. };
  74. typedef union des_block des_block;
  75. extern bool_t xdr_des_block(XDR *, des_block *);
  76. /*
  77. * Authentication info. Opaque to client.
  78. */
  79. struct opaque_auth {
  80. enum_t oa_flavor; /* flavor of auth */
  81. caddr_t oa_base; /* address of more auth stuff */
  82. u_int oa_length; /* not to exceed MAX_AUTH_BYTES */
  83. };
  84. /*
  85. * Auth handle, interface to client side authenticators.
  86. */
  87. struct rpc_msg;
  88. typedef struct AUTH {
  89. struct opaque_auth ah_cred;
  90. struct opaque_auth ah_verf;
  91. union des_block ah_key;
  92. struct auth_ops {
  93. void (*ah_nextverf)(struct AUTH *);
  94. /* nextverf & serialize */
  95. int (*ah_marshal)(struct AUTH *, XDR *);
  96. /* validate varifier */
  97. int (*ah_validate)(struct AUTH *,
  98. struct opaque_auth *);
  99. /* refresh credentials */
  100. int (*ah_refresh)(struct AUTH *, struct rpc_msg *);
  101. /* destroy this structure */
  102. void (*ah_destroy)(struct AUTH *);
  103. /* encode data for wire */
  104. int (*ah_wrap)(struct AUTH *, XDR *,
  105. xdrproc_t, caddr_t);
  106. /* decode data from wire */
  107. int (*ah_unwrap)(struct AUTH *, XDR *,
  108. xdrproc_t, caddr_t);
  109. } *ah_ops;
  110. void *ah_private;
  111. } AUTH;
  112. /*
  113. * Authentication ops.
  114. * The ops and the auth handle provide the interface to the authenticators.
  115. *
  116. * AUTH *auth;
  117. * XDR *xdrs;
  118. * struct opaque_auth verf;
  119. */
  120. #define AUTH_NEXTVERF(auth) \
  121. ((*((auth)->ah_ops->ah_nextverf))(auth))
  122. #define auth_nextverf(auth) \
  123. ((*((auth)->ah_ops->ah_nextverf))(auth))
  124. #define AUTH_MARSHALL(auth, xdrs) \
  125. ((*((auth)->ah_ops->ah_marshal))(auth, xdrs))
  126. #define auth_marshall(auth, xdrs) \
  127. ((*((auth)->ah_ops->ah_marshal))(auth, xdrs))
  128. #define AUTH_VALIDATE(auth, verfp) \
  129. ((*((auth)->ah_ops->ah_validate))((auth), verfp))
  130. #define auth_validate(auth, verfp) \
  131. ((*((auth)->ah_ops->ah_validate))((auth), verfp))
  132. #define AUTH_REFRESH(auth, msg) \
  133. ((*((auth)->ah_ops->ah_refresh))(auth, msg))
  134. #define auth_refresh(auth, msg) \
  135. ((*((auth)->ah_ops->ah_refresh))(auth, msg))
  136. #define AUTH_WRAP(auth, xdrs, xfunc, xwhere) \
  137. ((*((auth)->ah_ops->ah_wrap))(auth, xdrs, \
  138. xfunc, xwhere))
  139. #define auth_wrap(auth, xdrs, xfunc, xwhere) \
  140. ((*((auth)->ah_ops->ah_wrap))(auth, xdrs, \
  141. xfunc, xwhere))
  142. #define AUTH_UNWRAP(auth, xdrs, xfunc, xwhere) \
  143. ((*((auth)->ah_ops->ah_unwrap))(auth, xdrs, \
  144. xfunc, xwhere))
  145. #define auth_unwrap(auth, xdrs, xfunc, xwhere) \
  146. ((*((auth)->ah_ops->ah_unwrap))(auth, xdrs, \
  147. xfunc, xwhere))
  148. #define AUTH_DESTROY(auth) \
  149. ((*((auth)->ah_ops->ah_destroy))(auth))
  150. #define auth_destroy(auth) \
  151. ((*((auth)->ah_ops->ah_destroy))(auth))
  152. #ifdef GSSRPC__IMPL
  153. /* RENAMED: should be _null_auth if we can use reserved namespace. */
  154. extern struct opaque_auth gssrpc__null_auth;
  155. #endif
  156. /*
  157. * These are the various implementations of client side authenticators.
  158. */
  159. /*
  160. * Unix style authentication
  161. * AUTH *authunix_create(machname, uid, gid, len, aup_gids)
  162. * char *machname;
  163. * int uid;
  164. * int gid;
  165. * int len;
  166. * int *aup_gids;
  167. */
  168. extern AUTH *authunix_create(char *machname, int uid, int gid, int len,
  169. int *aup_gids);
  170. extern AUTH *authunix_create_default(void); /* takes no parameters */
  171. extern AUTH *authnone_create(void); /* takes no parameters */
  172. extern bool_t xdr_opaque_auth(XDR *, struct opaque_auth *);
  173. #define AUTH_NONE 0 /* no authentication */
  174. #define AUTH_NULL 0 /* backward compatibility */
  175. #define AUTH_UNIX 1 /* unix style (uid, gids) */
  176. #define AUTH_SHORT 2 /* short hand unix style */
  177. #define AUTH_DES 3 /* des style (encrypted timestamps) */
  178. #define AUTH_GSSAPI 300001 /* GSS-API style */
  179. #define RPCSEC_GSS 6 /* RPCSEC_GSS */
  180. GSSRPC__END_DECLS
  181. #endif /* !defined(GSSRPC_AUTH_H) */