gss_krb5_seal.c 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. /*
  2. * linux/net/sunrpc/gss_krb5_seal.c
  3. *
  4. * Adapted from MIT Kerberos 5-1.2.1 lib/gssapi/krb5/k5seal.c
  5. *
  6. * Copyright (c) 2000-2008 The Regents of the University of Michigan.
  7. * All rights reserved.
  8. *
  9. * Andy Adamson <andros@umich.edu>
  10. * J. Bruce Fields <bfields@umich.edu>
  11. */
  12. /*
  13. * Copyright 1993 by OpenVision Technologies, Inc.
  14. *
  15. * Permission to use, copy, modify, distribute, and sell this software
  16. * and its documentation for any purpose is hereby granted without fee,
  17. * provided that the above copyright notice appears in all copies and
  18. * that both that copyright notice and this permission notice appear in
  19. * supporting documentation, and that the name of OpenVision not be used
  20. * in advertising or publicity pertaining to distribution of the software
  21. * without specific, written prior permission. OpenVision makes no
  22. * representations about the suitability of this software for any
  23. * purpose. It is provided "as is" without express or implied warranty.
  24. *
  25. * OPENVISION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  26. * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  27. * EVENT SHALL OPENVISION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  28. * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
  29. * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
  30. * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  31. * PERFORMANCE OF THIS SOFTWARE.
  32. */
  33. /*
  34. * Copyright (C) 1998 by the FundsXpress, INC.
  35. *
  36. * All rights reserved.
  37. *
  38. * Export of this software from the United States of America may require
  39. * a specific license from the United States Government. It is the
  40. * responsibility of any person or organization contemplating export to
  41. * obtain such a license before exporting.
  42. *
  43. * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
  44. * distribute this software and its documentation for any purpose and
  45. * without fee is hereby granted, provided that the above copyright
  46. * notice appear in all copies and that both that copyright notice and
  47. * this permission notice appear in supporting documentation, and that
  48. * the name of FundsXpress. not be used in advertising or publicity pertaining
  49. * to distribution of the software without specific, written prior
  50. * permission. FundsXpress makes no representations about the suitability of
  51. * this software for any purpose. It is provided "as is" without express
  52. * or implied warranty.
  53. *
  54. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  55. * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  56. * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  57. */
  58. #include <linux/types.h>
  59. #include <linux/jiffies.h>
  60. #include <linux/sunrpc/gss_krb5.h>
  61. #include <linux/random.h>
  62. #include <linux/crypto.h>
  63. #include <linux/atomic.h>
  64. #if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
  65. # define RPCDBG_FACILITY RPCDBG_AUTH
  66. #endif
  67. DEFINE_SPINLOCK(krb5_seq_lock);
  68. static void *
  69. setup_token(struct krb5_ctx *ctx, struct xdr_netobj *token)
  70. {
  71. u16 *ptr;
  72. void *krb5_hdr;
  73. int body_size = GSS_KRB5_TOK_HDR_LEN + ctx->gk5e->cksumlength;
  74. token->len = g_token_size(&ctx->mech_used, body_size);
  75. ptr = (u16 *)token->data;
  76. g_make_token_header(&ctx->mech_used, body_size, (unsigned char **)&ptr);
  77. /* ptr now at start of header described in rfc 1964, section 1.2.1: */
  78. krb5_hdr = ptr;
  79. *ptr++ = KG_TOK_MIC_MSG;
  80. /*
  81. * signalg is stored as if it were converted from LE to host endian, even
  82. * though it's an opaque pair of bytes according to the RFC.
  83. */
  84. *ptr++ = (__force u16)cpu_to_le16(ctx->gk5e->signalg);
  85. *ptr++ = SEAL_ALG_NONE;
  86. *ptr = 0xffff;
  87. return krb5_hdr;
  88. }
  89. static void *
  90. setup_token_v2(struct krb5_ctx *ctx, struct xdr_netobj *token)
  91. {
  92. u16 *ptr;
  93. void *krb5_hdr;
  94. u8 *p, flags = 0x00;
  95. if ((ctx->flags & KRB5_CTX_FLAG_INITIATOR) == 0)
  96. flags |= 0x01;
  97. if (ctx->flags & KRB5_CTX_FLAG_ACCEPTOR_SUBKEY)
  98. flags |= 0x04;
  99. /* Per rfc 4121, sec 4.2.6.1, there is no header,
  100. * just start the token */
  101. krb5_hdr = ptr = (u16 *)token->data;
  102. *ptr++ = KG2_TOK_MIC;
  103. p = (u8 *)ptr;
  104. *p++ = flags;
  105. *p++ = 0xff;
  106. ptr = (u16 *)p;
  107. *ptr++ = 0xffff;
  108. *ptr = 0xffff;
  109. token->len = GSS_KRB5_TOK_HDR_LEN + ctx->gk5e->cksumlength;
  110. return krb5_hdr;
  111. }
  112. static u32
  113. gss_get_mic_v1(struct krb5_ctx *ctx, struct xdr_buf *text,
  114. struct xdr_netobj *token)
  115. {
  116. char cksumdata[GSS_KRB5_MAX_CKSUM_LEN];
  117. struct xdr_netobj md5cksum = {.len = sizeof(cksumdata),
  118. .data = cksumdata};
  119. void *ptr;
  120. s32 now;
  121. u32 seq_send;
  122. u8 *cksumkey;
  123. dprintk("RPC: %s\n", __func__);
  124. BUG_ON(ctx == NULL);
  125. now = get_seconds();
  126. ptr = setup_token(ctx, token);
  127. if (ctx->gk5e->keyed_cksum)
  128. cksumkey = ctx->cksum;
  129. else
  130. cksumkey = NULL;
  131. if (make_checksum(ctx, ptr, 8, text, 0, cksumkey,
  132. KG_USAGE_SIGN, &md5cksum))
  133. return GSS_S_FAILURE;
  134. memcpy(ptr + GSS_KRB5_TOK_HDR_LEN, md5cksum.data, md5cksum.len);
  135. spin_lock(&krb5_seq_lock);
  136. seq_send = ctx->seq_send++;
  137. spin_unlock(&krb5_seq_lock);
  138. if (krb5_make_seq_num(ctx, ctx->seq, ctx->initiate ? 0 : 0xff,
  139. seq_send, ptr + GSS_KRB5_TOK_HDR_LEN, ptr + 8))
  140. return GSS_S_FAILURE;
  141. return (ctx->endtime < now) ? GSS_S_CONTEXT_EXPIRED : GSS_S_COMPLETE;
  142. }
  143. static u32
  144. gss_get_mic_v2(struct krb5_ctx *ctx, struct xdr_buf *text,
  145. struct xdr_netobj *token)
  146. {
  147. char cksumdata[GSS_KRB5_MAX_CKSUM_LEN];
  148. struct xdr_netobj cksumobj = { .len = sizeof(cksumdata),
  149. .data = cksumdata};
  150. void *krb5_hdr;
  151. s32 now;
  152. u64 seq_send;
  153. u8 *cksumkey;
  154. unsigned int cksum_usage;
  155. __be64 seq_send_be64;
  156. dprintk("RPC: %s\n", __func__);
  157. krb5_hdr = setup_token_v2(ctx, token);
  158. /* Set up the sequence number. Now 64-bits in clear
  159. * text and w/o direction indicator */
  160. spin_lock(&krb5_seq_lock);
  161. seq_send = ctx->seq_send64++;
  162. spin_unlock(&krb5_seq_lock);
  163. seq_send_be64 = cpu_to_be64(seq_send);
  164. memcpy(krb5_hdr + 8, (char *) &seq_send_be64, 8);
  165. if (ctx->initiate) {
  166. cksumkey = ctx->initiator_sign;
  167. cksum_usage = KG_USAGE_INITIATOR_SIGN;
  168. } else {
  169. cksumkey = ctx->acceptor_sign;
  170. cksum_usage = KG_USAGE_ACCEPTOR_SIGN;
  171. }
  172. if (make_checksum_v2(ctx, krb5_hdr, GSS_KRB5_TOK_HDR_LEN,
  173. text, 0, cksumkey, cksum_usage, &cksumobj))
  174. return GSS_S_FAILURE;
  175. memcpy(krb5_hdr + GSS_KRB5_TOK_HDR_LEN, cksumobj.data, cksumobj.len);
  176. now = get_seconds();
  177. return (ctx->endtime < now) ? GSS_S_CONTEXT_EXPIRED : GSS_S_COMPLETE;
  178. }
  179. u32
  180. gss_get_mic_kerberos(struct gss_ctx *gss_ctx, struct xdr_buf *text,
  181. struct xdr_netobj *token)
  182. {
  183. struct krb5_ctx *ctx = gss_ctx->internal_ctx_id;
  184. switch (ctx->enctype) {
  185. default:
  186. BUG();
  187. case ENCTYPE_DES_CBC_RAW:
  188. case ENCTYPE_DES3_CBC_RAW:
  189. case ENCTYPE_ARCFOUR_HMAC:
  190. return gss_get_mic_v1(ctx, text, token);
  191. case ENCTYPE_AES128_CTS_HMAC_SHA1_96:
  192. case ENCTYPE_AES256_CTS_HMAC_SHA1_96:
  193. return gss_get_mic_v2(ctx, text, token);
  194. }
  195. }