gss_krb5_seal.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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 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/slab.h>
  60. #include <linux/jiffies.h>
  61. #include <linux/sunrpc/gss_krb5.h>
  62. #include <linux/random.h>
  63. #include <asm/scatterlist.h>
  64. #include <linux/crypto.h>
  65. #ifdef RPC_DEBUG
  66. # define RPCDBG_FACILITY RPCDBG_AUTH
  67. #endif
  68. static inline int
  69. gss_krb5_padding(int blocksize, int length) {
  70. /* Most of the code is block-size independent but in practice we
  71. * use only 8: */
  72. BUG_ON(blocksize != 8);
  73. return 8 - (length & 7);
  74. }
  75. u32
  76. krb5_make_token(struct krb5_ctx *ctx, int qop_req,
  77. struct xdr_buf *text, struct xdr_netobj *token,
  78. int toktype)
  79. {
  80. s32 checksum_type;
  81. struct xdr_netobj md5cksum = {.len = 0, .data = NULL};
  82. int blocksize = 0, tmsglen;
  83. unsigned char *ptr, *krb5_hdr, *msg_start;
  84. s32 now;
  85. dprintk("RPC: gss_krb5_seal\n");
  86. now = get_seconds();
  87. if (qop_req != 0)
  88. goto out_err;
  89. switch (ctx->signalg) {
  90. case SGN_ALG_DES_MAC_MD5:
  91. checksum_type = CKSUMTYPE_RSA_MD5;
  92. break;
  93. default:
  94. dprintk("RPC: gss_krb5_seal: ctx->signalg %d not"
  95. " supported\n", ctx->signalg);
  96. goto out_err;
  97. }
  98. if (ctx->sealalg != SEAL_ALG_NONE && ctx->sealalg != SEAL_ALG_DES) {
  99. dprintk("RPC: gss_krb5_seal: ctx->sealalg %d not supported\n",
  100. ctx->sealalg);
  101. goto out_err;
  102. }
  103. if (toktype == KG_TOK_WRAP_MSG) {
  104. blocksize = crypto_tfm_alg_blocksize(ctx->enc);
  105. tmsglen = blocksize + text->len
  106. + gss_krb5_padding(blocksize, blocksize + text->len);
  107. } else {
  108. tmsglen = 0;
  109. }
  110. token->len = g_token_size(&ctx->mech_used, 22 + tmsglen);
  111. ptr = token->data;
  112. g_make_token_header(&ctx->mech_used, 22 + tmsglen, &ptr);
  113. *ptr++ = (unsigned char) ((toktype>>8)&0xff);
  114. *ptr++ = (unsigned char) (toktype&0xff);
  115. /* ptr now at byte 2 of header described in rfc 1964, section 1.2.1: */
  116. krb5_hdr = ptr - 2;
  117. msg_start = krb5_hdr + 24;
  118. *(u16 *)(krb5_hdr + 2) = htons(ctx->signalg);
  119. memset(krb5_hdr + 4, 0xff, 4);
  120. if (toktype == KG_TOK_WRAP_MSG)
  121. *(u16 *)(krb5_hdr + 4) = htons(ctx->sealalg);
  122. if (toktype == KG_TOK_WRAP_MSG) {
  123. /* XXX removing support for now */
  124. goto out_err;
  125. } else { /* Sign only. */
  126. if (make_checksum(checksum_type, krb5_hdr, 8, text,
  127. &md5cksum))
  128. goto out_err;
  129. }
  130. switch (ctx->signalg) {
  131. case SGN_ALG_DES_MAC_MD5:
  132. if (krb5_encrypt(ctx->seq, NULL, md5cksum.data,
  133. md5cksum.data, md5cksum.len))
  134. goto out_err;
  135. memcpy(krb5_hdr + 16,
  136. md5cksum.data + md5cksum.len - KRB5_CKSUM_LENGTH,
  137. KRB5_CKSUM_LENGTH);
  138. dprintk("RPC: make_seal_token: cksum data: \n");
  139. print_hexl((u32 *) (krb5_hdr + 16), KRB5_CKSUM_LENGTH, 0);
  140. break;
  141. default:
  142. BUG();
  143. }
  144. kfree(md5cksum.data);
  145. if ((krb5_make_seq_num(ctx->seq, ctx->initiate ? 0 : 0xff,
  146. ctx->seq_send, krb5_hdr + 16, krb5_hdr + 8)))
  147. goto out_err;
  148. ctx->seq_send++;
  149. return ((ctx->endtime < now) ? GSS_S_CONTEXT_EXPIRED : GSS_S_COMPLETE);
  150. out_err:
  151. if (md5cksum.data) kfree(md5cksum.data);
  152. return GSS_S_FAILURE;
  153. }