auth_none.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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 xdrmem_create __xdrmem_create
  38. #define xdr_opaque_auth __xdr_opaque_auth
  39. #define __FORCE_GLIBC
  40. #include <features.h>
  41. #include "rpc_private.h"
  42. #define MAX_MARSHEL_SIZE 20
  43. /*
  44. * Authenticator operations routines
  45. */
  46. static void authnone_verf (AUTH *);
  47. static void authnone_destroy (AUTH *);
  48. static bool_t authnone_marshal (AUTH *, XDR *);
  49. static bool_t authnone_validate (AUTH *, struct opaque_auth *);
  50. static bool_t authnone_refresh (AUTH *);
  51. static struct auth_ops ops = {
  52. authnone_verf,
  53. authnone_marshal,
  54. authnone_validate,
  55. authnone_refresh,
  56. authnone_destroy
  57. };
  58. struct authnone_private_s {
  59. AUTH no_client;
  60. char marshalled_client[MAX_MARSHEL_SIZE];
  61. u_int mcnt;
  62. };
  63. #ifdef __UCLIBC_HAS_THREADS__
  64. #define authnone_private (*(struct authnone_private_s **)&RPC_THREAD_VARIABLE(authnone_private_s))
  65. #else
  66. static struct authnone_private_s *authnone_private;
  67. #endif
  68. AUTH attribute_hidden *
  69. __authnone_create (void)
  70. {
  71. struct authnone_private_s *ap;
  72. XDR xdr_stream;
  73. XDR *xdrs;
  74. ap = (struct authnone_private_s *) authnone_private;
  75. if (ap == NULL)
  76. {
  77. ap = (struct authnone_private_s *) calloc (1, sizeof (*ap));
  78. if (ap == NULL)
  79. return NULL;
  80. authnone_private = ap;
  81. }
  82. if (!ap->mcnt)
  83. {
  84. ap->no_client.ah_cred = ap->no_client.ah_verf = _null_auth;
  85. ap->no_client.ah_ops = &ops;
  86. xdrs = &xdr_stream;
  87. xdrmem_create (xdrs, ap->marshalled_client, (u_int) MAX_MARSHEL_SIZE,
  88. XDR_ENCODE);
  89. (void) xdr_opaque_auth (xdrs, &ap->no_client.ah_cred);
  90. (void) xdr_opaque_auth (xdrs, &ap->no_client.ah_verf);
  91. ap->mcnt = XDR_GETPOS (xdrs);
  92. XDR_DESTROY (xdrs);
  93. }
  94. return (&ap->no_client);
  95. }
  96. strong_alias(__authnone_create,authnone_create)
  97. /*ARGSUSED */
  98. static bool_t
  99. authnone_marshal (AUTH *client, XDR *xdrs)
  100. {
  101. struct authnone_private_s *ap;
  102. ap = authnone_private;
  103. if (ap == NULL)
  104. return FALSE;
  105. return (*xdrs->x_ops->x_putbytes) (xdrs, ap->marshalled_client, ap->mcnt);
  106. }
  107. static void
  108. authnone_verf (AUTH *auth)
  109. {
  110. }
  111. static bool_t
  112. authnone_validate (AUTH *auth, struct opaque_auth *oa)
  113. {
  114. return TRUE;
  115. }
  116. static bool_t
  117. authnone_refresh (AUTH *auth)
  118. {
  119. return FALSE;
  120. }
  121. static void
  122. authnone_destroy (AUTH *auth)
  123. {
  124. }