auth_none.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /*
  2. * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  3. * unrestricted use provided that this legend is included on all tape
  4. * media and as a part of the software program in whole or part. Users
  5. * may copy or modify Sun RPC without charge, but are not authorized
  6. * to license or distribute it to anyone else except as part of a product or
  7. * program developed by the user.
  8. *
  9. * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  10. * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  11. * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  12. *
  13. * Sun RPC is provided with no support and without any obligation on the
  14. * part of Sun Microsystems, Inc. to assist in its use, correction,
  15. * modification or enhancement.
  16. *
  17. * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  18. * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  19. * OR ANY PART THEREOF.
  20. *
  21. * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  22. * or profits or other special, indirect and consequential damages, even if
  23. * Sun has been advised of the possibility of such damages.
  24. *
  25. * Sun Microsystems, Inc.
  26. * 2550 Garcia Avenue
  27. * Mountain View, California 94043
  28. */
  29. /*
  30. * Copyright (C) 1984, Sun Microsystems, Inc.
  31. */
  32. /*
  33. * auth_none.c
  34. * Creates a client authentication handle for passing "null"
  35. * credentials and verifiers to remote systems.
  36. */
  37. #define __FORCE_GLIBC
  38. #include <features.h>
  39. #include "rpc_private.h"
  40. #define MAX_MARSHAL_SIZE 20
  41. /*
  42. * Authenticator operations routines
  43. */
  44. static void authnone_verf (AUTH *);
  45. static void authnone_destroy (AUTH *);
  46. static bool_t authnone_marshal (AUTH *, XDR *);
  47. static bool_t authnone_validate (AUTH *, struct opaque_auth *);
  48. static bool_t authnone_refresh (AUTH *);
  49. static const struct auth_ops ops = {
  50. authnone_verf,
  51. authnone_marshal,
  52. authnone_validate,
  53. authnone_refresh,
  54. authnone_destroy
  55. };
  56. /* Internal data and routines */
  57. struct authnone_private_s {
  58. AUTH no_client;
  59. char marshalled_client[MAX_MARSHAL_SIZE];
  60. u_int mcnt;
  61. };
  62. static struct authnone_private_s authnone_private;
  63. #ifdef __UCLIBC_HAS_THREADS__
  64. __libc_once_define(static, authnone_private_guard);
  65. #endif
  66. static void authnone_create_once (void);
  67. static void
  68. authnone_create_once (void)
  69. {
  70. struct authnone_private_s *ap;
  71. XDR xdr_stream;
  72. XDR *xdrs;
  73. ap = &authnone_private;
  74. ap->no_client.ah_cred = ap->no_client.ah_verf = _null_auth;
  75. ap->no_client.ah_ops = (struct auth_ops *) &ops;
  76. xdrs = &xdr_stream;
  77. xdrmem_create(xdrs, ap->marshalled_client,
  78. (u_int) MAX_MARSHAL_SIZE, XDR_ENCODE);
  79. (void) xdr_opaque_auth(xdrs, &ap->no_client.ah_cred);
  80. (void) xdr_opaque_auth(xdrs, &ap->no_client.ah_verf);
  81. ap->mcnt = XDR_GETPOS (xdrs);
  82. XDR_DESTROY (xdrs);
  83. }
  84. AUTH *
  85. authnone_create (void)
  86. {
  87. #ifdef __UCLIBC_HAS_THREADS__
  88. __libc_once (authnone_private_guard, authnone_create_once);
  89. #else
  90. authnone_create_once();
  91. #endif
  92. return &authnone_private.no_client;
  93. }
  94. libc_hidden_def(authnone_create)
  95. static bool_t
  96. authnone_marshal (AUTH *client, XDR *xdrs)
  97. {
  98. struct authnone_private_s *ap;
  99. /* authnone_create returned authnone_private->no_client, which is
  100. the first field of struct authnone_private_s. */
  101. ap = (struct authnone_private_s *) client;
  102. if (ap == NULL)
  103. return FALSE;
  104. return (*xdrs->x_ops->x_putbytes) (xdrs, ap->marshalled_client, ap->mcnt);
  105. }
  106. static void
  107. authnone_verf (AUTH *auth attribute_unused)
  108. {
  109. }
  110. static bool_t
  111. authnone_validate (AUTH *auth attribute_unused, struct opaque_auth *oa attribute_unused)
  112. {
  113. return TRUE;
  114. }
  115. static bool_t
  116. authnone_refresh (AUTH *auth attribute_unused)
  117. {
  118. return FALSE;
  119. }
  120. static void
  121. authnone_destroy (AUTH *auth attribute_unused)
  122. {
  123. }