gss_init_sec_context.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*-
  2. * SPDX-License-Identifier: BSD-2-Clause
  3. *
  4. * Copyright (c) 2008 Isilon Inc http://www.isilon.com/
  5. * Authors: Doug Rabson <dfr@rabson.org>
  6. * Developed with Red Inc: Alfred Perlstein <alfred@freebsd.org>
  7. *
  8. * Redistribution and use in source and binary forms, with or without
  9. * modification, are permitted provided that the following conditions
  10. * are met:
  11. * 1. Redistributions of source code must retain the above copyright
  12. * notice, this list of conditions and the following disclaimer.
  13. * 2. Redistributions in binary form must reproduce the above copyright
  14. * notice, this list of conditions and the following disclaimer in the
  15. * documentation and/or other materials provided with the distribution.
  16. *
  17. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  18. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  19. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  20. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  21. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  22. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  23. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  24. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  25. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  26. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  27. * SUCH DAMAGE.
  28. */
  29. #include <sys/param.h>
  30. #include <sys/kernel.h>
  31. #include <sys/kobj.h>
  32. #include <sys/lock.h>
  33. #include <sys/malloc.h>
  34. #include <sys/mutex.h>
  35. #include <sys/proc.h>
  36. #include <kgssapi/gssapi.h>
  37. #include <kgssapi/gssapi_impl.h>
  38. #include <rpc/rpc.h>
  39. #include "gssd.h"
  40. #include "kgss_if.h"
  41. OM_uint32
  42. gss_init_sec_context(OM_uint32 * minor_status,
  43. const gss_cred_id_t initiator_cred_handle,
  44. gss_ctx_id_t * context_handle,
  45. const gss_name_t target_name,
  46. const gss_OID input_mech_type,
  47. OM_uint32 req_flags,
  48. OM_uint32 time_req,
  49. const gss_channel_bindings_t input_chan_bindings,
  50. const gss_buffer_t input_token,
  51. gss_OID * actual_mech_type,
  52. gss_buffer_t output_token,
  53. OM_uint32 * ret_flags,
  54. OM_uint32 * time_rec)
  55. {
  56. struct init_sec_context_res res;
  57. struct init_sec_context_args args;
  58. enum clnt_stat stat;
  59. gss_ctx_id_t ctx = *context_handle;
  60. CLIENT *cl;
  61. *minor_status = 0;
  62. cl = kgss_gssd_client();
  63. if (cl == NULL)
  64. return (GSS_S_FAILURE);
  65. args.uid = curthread->td_ucred->cr_uid;
  66. if (initiator_cred_handle)
  67. args.cred = initiator_cred_handle->handle;
  68. else
  69. args.cred = 0;
  70. if (ctx)
  71. args.ctx = ctx->handle;
  72. else
  73. args.ctx = 0;
  74. args.name = target_name->handle;
  75. args.mech_type = input_mech_type;
  76. args.req_flags = req_flags;
  77. args.time_req = time_req;
  78. args.input_chan_bindings = input_chan_bindings;
  79. if (input_token)
  80. args.input_token = *input_token;
  81. else {
  82. args.input_token.length = 0;
  83. args.input_token.value = NULL;
  84. }
  85. bzero(&res, sizeof(res));
  86. stat = gssd_init_sec_context_1(&args, &res, cl);
  87. CLNT_RELEASE(cl);
  88. if (stat != RPC_SUCCESS) {
  89. *minor_status = stat;
  90. return (GSS_S_FAILURE);
  91. }
  92. if (res.major_status != GSS_S_COMPLETE
  93. && res.major_status != GSS_S_CONTINUE_NEEDED) {
  94. *minor_status = res.minor_status;
  95. xdr_free((xdrproc_t) xdr_init_sec_context_res, &res);
  96. return (res.major_status);
  97. }
  98. *minor_status = res.minor_status;
  99. if (!ctx) {
  100. ctx = kgss_create_context(res.actual_mech_type);
  101. if (!ctx) {
  102. xdr_free((xdrproc_t) xdr_init_sec_context_res, &res);
  103. *minor_status = 0;
  104. return (GSS_S_BAD_MECH);
  105. }
  106. }
  107. *context_handle = ctx;
  108. ctx->handle = res.ctx;
  109. if (actual_mech_type)
  110. *actual_mech_type = KGSS_MECH_TYPE(ctx);
  111. kgss_copy_buffer(&res.output_token, output_token);
  112. if (ret_flags)
  113. *ret_flags = res.ret_flags;
  114. if (time_rec)
  115. *time_rec = res.time_rec;
  116. xdr_free((xdrproc_t) xdr_init_sec_context_res, &res);
  117. /*
  118. * If the context establishment is complete, export it from
  119. * userland and hand the result (which includes key material
  120. * etc.) to the kernel implementation.
  121. */
  122. if (res.major_status == GSS_S_COMPLETE)
  123. res.major_status = kgss_transfer_context(ctx);
  124. return (res.major_status);
  125. }