2 * linux/net/sunrpc/gss_krb5_mech.c
4 * Copyright (c) 2001-2008 The Regents of the University of Michigan.
7 * Andy Adamson <andros@umich.edu>
8 * J. Bruce Fields <bfields@umich.edu>
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its
20 * contributors may be used to endorse or promote products derived
21 * from this software without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
24 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
30 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
31 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
32 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 #include <linux/err.h>
38 #include <linux/module.h>
39 #include <linux/init.h>
40 #include <linux/types.h>
41 #include <linux/slab.h>
42 #include <linux/sunrpc/auth.h>
43 #include <linux/sunrpc/gss_krb5.h>
44 #include <linux/sunrpc/xdr.h>
45 #include <linux/crypto.h>
48 # define RPCDBG_FACILITY RPCDBG_AUTH
51 static struct gss_api_mech gss_kerberos_mech
; /* forward declaration */
53 static const struct gss_krb5_enctype supported_gss_krb5_enctypes
[] = {
55 * DES (All DES enctypes are mapped to the same gss functionality)
58 .etype
= ENCTYPE_DES_CBC_RAW
,
59 .ctype
= CKSUMTYPE_RSA_MD5
,
60 .name
= "des-cbc-crc",
61 .encrypt_name
= "cbc(des)",
63 .encrypt
= krb5_encrypt
,
64 .decrypt
= krb5_decrypt
,
66 .signalg
= SGN_ALG_DES_MAC_MD5
,
67 .sealalg
= SEAL_ALG_DES
,
79 .etype
= ENCTYPE_ARCFOUR_HMAC
,
80 .ctype
= CKSUMTYPE_HMAC_MD5_ARCFOUR
,
82 .encrypt_name
= "ecb(arc4)",
83 .cksum_name
= "hmac(md5)",
84 .encrypt
= krb5_encrypt
,
85 .decrypt
= krb5_decrypt
,
87 .signalg
= SGN_ALG_HMAC_MD5
,
88 .sealalg
= SEAL_ALG_MICROSOFT_RC4
,
100 .etype
= ENCTYPE_DES3_CBC_RAW
,
101 .ctype
= CKSUMTYPE_HMAC_SHA1_DES3
,
102 .name
= "des3-hmac-sha1",
103 .encrypt_name
= "cbc(des3_ede)",
104 .cksum_name
= "hmac(sha1)",
105 .encrypt
= krb5_encrypt
,
106 .decrypt
= krb5_decrypt
,
107 .mk_key
= gss_krb5_des3_make_key
,
108 .signalg
= SGN_ALG_HMAC_SHA1_DES3_KD
,
109 .sealalg
= SEAL_ALG_DES3KD
,
121 .etype
= ENCTYPE_AES128_CTS_HMAC_SHA1_96
,
122 .ctype
= CKSUMTYPE_HMAC_SHA1_96_AES128
,
123 .name
= "aes128-cts",
124 .encrypt_name
= "cts(cbc(aes))",
125 .cksum_name
= "hmac(sha1)",
126 .encrypt
= krb5_encrypt
,
127 .decrypt
= krb5_decrypt
,
128 .mk_key
= gss_krb5_aes_make_key
,
129 .encrypt_v2
= gss_krb5_aes_encrypt
,
130 .decrypt_v2
= gss_krb5_aes_decrypt
,
144 .etype
= ENCTYPE_AES256_CTS_HMAC_SHA1_96
,
145 .ctype
= CKSUMTYPE_HMAC_SHA1_96_AES256
,
146 .name
= "aes256-cts",
147 .encrypt_name
= "cts(cbc(aes))",
148 .cksum_name
= "hmac(sha1)",
149 .encrypt
= krb5_encrypt
,
150 .decrypt
= krb5_decrypt
,
151 .mk_key
= gss_krb5_aes_make_key
,
152 .encrypt_v2
= gss_krb5_aes_encrypt
,
153 .decrypt_v2
= gss_krb5_aes_decrypt
,
165 static const int num_supported_enctypes
=
166 ARRAY_SIZE(supported_gss_krb5_enctypes
);
169 supported_gss_krb5_enctype(int etype
)
172 for (i
= 0; i
< num_supported_enctypes
; i
++)
173 if (supported_gss_krb5_enctypes
[i
].etype
== etype
)
178 static const struct gss_krb5_enctype
*
179 get_gss_krb5_enctype(int etype
)
182 for (i
= 0; i
< num_supported_enctypes
; i
++)
183 if (supported_gss_krb5_enctypes
[i
].etype
== etype
)
184 return &supported_gss_krb5_enctypes
[i
];
189 simple_get_bytes(const void *p
, const void *end
, void *res
, int len
)
191 const void *q
= (const void *)((const char *)p
+ len
);
192 if (unlikely(q
> end
|| q
< p
))
193 return ERR_PTR(-EFAULT
);
199 simple_get_netobj(const void *p
, const void *end
, struct xdr_netobj
*res
)
204 p
= simple_get_bytes(p
, end
, &len
, sizeof(len
));
207 q
= (const void *)((const char *)p
+ len
);
208 if (unlikely(q
> end
|| q
< p
))
209 return ERR_PTR(-EFAULT
);
210 res
->data
= kmemdup(p
, len
, GFP_NOFS
);
211 if (unlikely(res
->data
== NULL
))
212 return ERR_PTR(-ENOMEM
);
217 static inline const void *
218 get_key(const void *p
, const void *end
,
219 struct krb5_ctx
*ctx
, struct crypto_blkcipher
**res
)
221 struct xdr_netobj key
;
224 p
= simple_get_bytes(p
, end
, &alg
, sizeof(alg
));
229 case ENCTYPE_DES_CBC_CRC
:
230 case ENCTYPE_DES_CBC_MD4
:
231 case ENCTYPE_DES_CBC_MD5
:
232 /* Map all these key types to ENCTYPE_DES_CBC_RAW */
233 alg
= ENCTYPE_DES_CBC_RAW
;
237 if (!supported_gss_krb5_enctype(alg
)) {
238 printk(KERN_WARNING
"gss_kerberos_mech: unsupported "
239 "encryption key algorithm %d\n", alg
);
242 p
= simple_get_netobj(p
, end
, &key
);
246 *res
= crypto_alloc_blkcipher(ctx
->gk5e
->encrypt_name
, 0,
249 printk(KERN_WARNING
"gss_kerberos_mech: unable to initialize "
250 "crypto algorithm %s\n", ctx
->gk5e
->encrypt_name
);
252 goto out_err_free_key
;
254 if (crypto_blkcipher_setkey(*res
, key
.data
, key
.len
)) {
255 printk(KERN_WARNING
"gss_kerberos_mech: error setting key for "
256 "crypto algorithm %s\n", ctx
->gk5e
->encrypt_name
);
257 goto out_err_free_tfm
;
264 crypto_free_blkcipher(*res
);
267 p
= ERR_PTR(-EINVAL
);
273 gss_import_v1_context(const void *p
, const void *end
, struct krb5_ctx
*ctx
)
277 p
= simple_get_bytes(p
, end
, &ctx
->initiate
, sizeof(ctx
->initiate
));
281 /* Old format supports only DES! Any other enctype uses new format */
282 ctx
->enctype
= ENCTYPE_DES_CBC_RAW
;
284 ctx
->gk5e
= get_gss_krb5_enctype(ctx
->enctype
);
285 if (ctx
->gk5e
== NULL
)
288 /* The downcall format was designed before we completely understood
289 * the uses of the context fields; so it includes some stuff we
290 * just give some minimal sanity-checking, and some we ignore
291 * completely (like the next twenty bytes): */
292 if (unlikely(p
+ 20 > end
|| p
+ 20 < p
))
295 p
= simple_get_bytes(p
, end
, &tmp
, sizeof(tmp
));
298 if (tmp
!= SGN_ALG_DES_MAC_MD5
) {
299 p
= ERR_PTR(-ENOSYS
);
302 p
= simple_get_bytes(p
, end
, &tmp
, sizeof(tmp
));
305 if (tmp
!= SEAL_ALG_DES
) {
306 p
= ERR_PTR(-ENOSYS
);
309 p
= simple_get_bytes(p
, end
, &ctx
->endtime
, sizeof(ctx
->endtime
));
312 p
= simple_get_bytes(p
, end
, &ctx
->seq_send
, sizeof(ctx
->seq_send
));
315 p
= simple_get_netobj(p
, end
, &ctx
->mech_used
);
318 p
= get_key(p
, end
, ctx
, &ctx
->enc
);
320 goto out_err_free_mech
;
321 p
= get_key(p
, end
, ctx
, &ctx
->seq
);
323 goto out_err_free_key1
;
325 p
= ERR_PTR(-EFAULT
);
326 goto out_err_free_key2
;
332 crypto_free_blkcipher(ctx
->seq
);
334 crypto_free_blkcipher(ctx
->enc
);
336 kfree(ctx
->mech_used
.data
);
341 struct crypto_blkcipher
*
342 context_v2_alloc_cipher(struct krb5_ctx
*ctx
, const char *cname
, u8
*key
)
344 struct crypto_blkcipher
*cp
;
346 cp
= crypto_alloc_blkcipher(cname
, 0, CRYPTO_ALG_ASYNC
);
348 dprintk("gss_kerberos_mech: unable to initialize "
349 "crypto algorithm %s\n", cname
);
352 if (crypto_blkcipher_setkey(cp
, key
, ctx
->gk5e
->keylength
)) {
353 dprintk("gss_kerberos_mech: error setting key for "
354 "crypto algorithm %s\n", cname
);
355 crypto_free_blkcipher(cp
);
362 set_cdata(u8 cdata
[GSS_KRB5_K5CLENGTH
], u32 usage
, u8 seed
)
364 cdata
[0] = (usage
>>24)&0xff;
365 cdata
[1] = (usage
>>16)&0xff;
366 cdata
[2] = (usage
>>8)&0xff;
367 cdata
[3] = usage
&0xff;
372 context_derive_keys_des3(struct krb5_ctx
*ctx
, gfp_t gfp_mask
)
374 struct xdr_netobj c
, keyin
, keyout
;
375 u8 cdata
[GSS_KRB5_K5CLENGTH
];
378 c
.len
= GSS_KRB5_K5CLENGTH
;
381 keyin
.data
= ctx
->Ksess
;
382 keyin
.len
= ctx
->gk5e
->keylength
;
383 keyout
.len
= ctx
->gk5e
->keylength
;
385 /* seq uses the raw key */
386 ctx
->seq
= context_v2_alloc_cipher(ctx
, ctx
->gk5e
->encrypt_name
,
388 if (ctx
->seq
== NULL
)
391 ctx
->enc
= context_v2_alloc_cipher(ctx
, ctx
->gk5e
->encrypt_name
,
393 if (ctx
->enc
== NULL
)
397 set_cdata(cdata
, KG_USAGE_SIGN
, KEY_USAGE_SEED_CHECKSUM
);
398 keyout
.data
= ctx
->cksum
;
399 err
= krb5_derive_key(ctx
->gk5e
, &keyin
, &keyout
, &c
, gfp_mask
);
401 dprintk("%s: Error %d deriving cksum key\n",
409 crypto_free_blkcipher(ctx
->enc
);
411 crypto_free_blkcipher(ctx
->seq
);
417 * Note that RC4 depends on deriving keys using the sequence
418 * number or the checksum of a token. Therefore, the final keys
419 * cannot be calculated until the token is being constructed!
422 context_derive_keys_rc4(struct krb5_ctx
*ctx
)
424 struct crypto_hash
*hmac
;
425 static const char sigkeyconstant
[] = "signaturekey";
426 int slen
= strlen(sigkeyconstant
) + 1; /* include null terminator */
427 struct hash_desc desc
;
428 struct scatterlist sg
[1];
431 dprintk("RPC: %s: entered\n", __func__
);
433 * derive cksum (aka Ksign) key
435 hmac
= crypto_alloc_hash(ctx
->gk5e
->cksum_name
, 0, CRYPTO_ALG_ASYNC
);
437 dprintk("%s: error %ld allocating hash '%s'\n",
438 __func__
, PTR_ERR(hmac
), ctx
->gk5e
->cksum_name
);
443 err
= crypto_hash_setkey(hmac
, ctx
->Ksess
, ctx
->gk5e
->keylength
);
445 goto out_err_free_hmac
;
447 sg_init_table(sg
, 1);
448 sg_set_buf(sg
, sigkeyconstant
, slen
);
453 err
= crypto_hash_init(&desc
);
455 goto out_err_free_hmac
;
457 err
= crypto_hash_digest(&desc
, sg
, slen
, ctx
->cksum
);
459 goto out_err_free_hmac
;
461 * allocate hash, and blkciphers for data and seqnum encryption
463 ctx
->enc
= crypto_alloc_blkcipher(ctx
->gk5e
->encrypt_name
, 0,
465 if (IS_ERR(ctx
->enc
)) {
466 err
= PTR_ERR(ctx
->enc
);
467 goto out_err_free_hmac
;
470 ctx
->seq
= crypto_alloc_blkcipher(ctx
->gk5e
->encrypt_name
, 0,
472 if (IS_ERR(ctx
->seq
)) {
473 crypto_free_blkcipher(ctx
->enc
);
474 err
= PTR_ERR(ctx
->seq
);
475 goto out_err_free_hmac
;
478 dprintk("RPC: %s: returning success\n", __func__
);
483 crypto_free_hash(hmac
);
485 dprintk("RPC: %s: returning %d\n", __func__
, err
);
490 context_derive_keys_new(struct krb5_ctx
*ctx
, gfp_t gfp_mask
)
492 struct xdr_netobj c
, keyin
, keyout
;
493 u8 cdata
[GSS_KRB5_K5CLENGTH
];
496 c
.len
= GSS_KRB5_K5CLENGTH
;
499 keyin
.data
= ctx
->Ksess
;
500 keyin
.len
= ctx
->gk5e
->keylength
;
501 keyout
.len
= ctx
->gk5e
->keylength
;
503 /* initiator seal encryption */
504 set_cdata(cdata
, KG_USAGE_INITIATOR_SEAL
, KEY_USAGE_SEED_ENCRYPTION
);
505 keyout
.data
= ctx
->initiator_seal
;
506 err
= krb5_derive_key(ctx
->gk5e
, &keyin
, &keyout
, &c
, gfp_mask
);
508 dprintk("%s: Error %d deriving initiator_seal key\n",
512 ctx
->initiator_enc
= context_v2_alloc_cipher(ctx
,
513 ctx
->gk5e
->encrypt_name
,
514 ctx
->initiator_seal
);
515 if (ctx
->initiator_enc
== NULL
)
518 /* acceptor seal encryption */
519 set_cdata(cdata
, KG_USAGE_ACCEPTOR_SEAL
, KEY_USAGE_SEED_ENCRYPTION
);
520 keyout
.data
= ctx
->acceptor_seal
;
521 err
= krb5_derive_key(ctx
->gk5e
, &keyin
, &keyout
, &c
, gfp_mask
);
523 dprintk("%s: Error %d deriving acceptor_seal key\n",
525 goto out_free_initiator_enc
;
527 ctx
->acceptor_enc
= context_v2_alloc_cipher(ctx
,
528 ctx
->gk5e
->encrypt_name
,
530 if (ctx
->acceptor_enc
== NULL
)
531 goto out_free_initiator_enc
;
533 /* initiator sign checksum */
534 set_cdata(cdata
, KG_USAGE_INITIATOR_SIGN
, KEY_USAGE_SEED_CHECKSUM
);
535 keyout
.data
= ctx
->initiator_sign
;
536 err
= krb5_derive_key(ctx
->gk5e
, &keyin
, &keyout
, &c
, gfp_mask
);
538 dprintk("%s: Error %d deriving initiator_sign key\n",
540 goto out_free_acceptor_enc
;
543 /* acceptor sign checksum */
544 set_cdata(cdata
, KG_USAGE_ACCEPTOR_SIGN
, KEY_USAGE_SEED_CHECKSUM
);
545 keyout
.data
= ctx
->acceptor_sign
;
546 err
= krb5_derive_key(ctx
->gk5e
, &keyin
, &keyout
, &c
, gfp_mask
);
548 dprintk("%s: Error %d deriving acceptor_sign key\n",
550 goto out_free_acceptor_enc
;
553 /* initiator seal integrity */
554 set_cdata(cdata
, KG_USAGE_INITIATOR_SEAL
, KEY_USAGE_SEED_INTEGRITY
);
555 keyout
.data
= ctx
->initiator_integ
;
556 err
= krb5_derive_key(ctx
->gk5e
, &keyin
, &keyout
, &c
, gfp_mask
);
558 dprintk("%s: Error %d deriving initiator_integ key\n",
560 goto out_free_acceptor_enc
;
563 /* acceptor seal integrity */
564 set_cdata(cdata
, KG_USAGE_ACCEPTOR_SEAL
, KEY_USAGE_SEED_INTEGRITY
);
565 keyout
.data
= ctx
->acceptor_integ
;
566 err
= krb5_derive_key(ctx
->gk5e
, &keyin
, &keyout
, &c
, gfp_mask
);
568 dprintk("%s: Error %d deriving acceptor_integ key\n",
570 goto out_free_acceptor_enc
;
573 switch (ctx
->enctype
) {
574 case ENCTYPE_AES128_CTS_HMAC_SHA1_96
:
575 case ENCTYPE_AES256_CTS_HMAC_SHA1_96
:
576 ctx
->initiator_enc_aux
=
577 context_v2_alloc_cipher(ctx
, "cbc(aes)",
578 ctx
->initiator_seal
);
579 if (ctx
->initiator_enc_aux
== NULL
)
580 goto out_free_acceptor_enc
;
581 ctx
->acceptor_enc_aux
=
582 context_v2_alloc_cipher(ctx
, "cbc(aes)",
584 if (ctx
->acceptor_enc_aux
== NULL
) {
585 crypto_free_blkcipher(ctx
->initiator_enc_aux
);
586 goto out_free_acceptor_enc
;
592 out_free_acceptor_enc
:
593 crypto_free_blkcipher(ctx
->acceptor_enc
);
594 out_free_initiator_enc
:
595 crypto_free_blkcipher(ctx
->initiator_enc
);
601 gss_import_v2_context(const void *p
, const void *end
, struct krb5_ctx
*ctx
,
606 p
= simple_get_bytes(p
, end
, &ctx
->flags
, sizeof(ctx
->flags
));
609 ctx
->initiate
= ctx
->flags
& KRB5_CTX_FLAG_INITIATOR
;
611 p
= simple_get_bytes(p
, end
, &ctx
->endtime
, sizeof(ctx
->endtime
));
614 p
= simple_get_bytes(p
, end
, &ctx
->seq_send64
, sizeof(ctx
->seq_send64
));
617 /* set seq_send for use by "older" enctypes */
618 ctx
->seq_send
= ctx
->seq_send64
;
619 if (ctx
->seq_send64
!= ctx
->seq_send
) {
620 dprintk("%s: seq_send64 %lx, seq_send %x overflow?\n", __func__
,
621 (long unsigned)ctx
->seq_send64
, ctx
->seq_send
);
624 p
= simple_get_bytes(p
, end
, &ctx
->enctype
, sizeof(ctx
->enctype
));
627 /* Map ENCTYPE_DES3_CBC_SHA1 to ENCTYPE_DES3_CBC_RAW */
628 if (ctx
->enctype
== ENCTYPE_DES3_CBC_SHA1
)
629 ctx
->enctype
= ENCTYPE_DES3_CBC_RAW
;
630 ctx
->gk5e
= get_gss_krb5_enctype(ctx
->enctype
);
631 if (ctx
->gk5e
== NULL
) {
632 dprintk("gss_kerberos_mech: unsupported krb5 enctype %u\n",
634 p
= ERR_PTR(-EINVAL
);
637 keylen
= ctx
->gk5e
->keylength
;
639 p
= simple_get_bytes(p
, end
, ctx
->Ksess
, keylen
);
644 p
= ERR_PTR(-EINVAL
);
648 ctx
->mech_used
.data
= kmemdup(gss_kerberos_mech
.gm_oid
.data
,
649 gss_kerberos_mech
.gm_oid
.len
, gfp_mask
);
650 if (unlikely(ctx
->mech_used
.data
== NULL
)) {
651 p
= ERR_PTR(-ENOMEM
);
654 ctx
->mech_used
.len
= gss_kerberos_mech
.gm_oid
.len
;
656 switch (ctx
->enctype
) {
657 case ENCTYPE_DES3_CBC_RAW
:
658 return context_derive_keys_des3(ctx
, gfp_mask
);
659 case ENCTYPE_ARCFOUR_HMAC
:
660 return context_derive_keys_rc4(ctx
);
661 case ENCTYPE_AES128_CTS_HMAC_SHA1_96
:
662 case ENCTYPE_AES256_CTS_HMAC_SHA1_96
:
663 return context_derive_keys_new(ctx
, gfp_mask
);
673 gss_import_sec_context_kerberos(const void *p
, size_t len
,
674 struct gss_ctx
*ctx_id
,
677 const void *end
= (const void *)((const char *)p
+ len
);
678 struct krb5_ctx
*ctx
;
681 ctx
= kzalloc(sizeof(*ctx
), gfp_mask
);
686 ret
= gss_import_v1_context(p
, end
, ctx
);
688 ret
= gss_import_v2_context(p
, end
, ctx
, gfp_mask
);
691 ctx_id
->internal_ctx_id
= ctx
;
695 dprintk("RPC: %s: returning %d\n", __func__
, ret
);
700 gss_delete_sec_context_kerberos(void *internal_ctx
) {
701 struct krb5_ctx
*kctx
= internal_ctx
;
703 crypto_free_blkcipher(kctx
->seq
);
704 crypto_free_blkcipher(kctx
->enc
);
705 crypto_free_blkcipher(kctx
->acceptor_enc
);
706 crypto_free_blkcipher(kctx
->initiator_enc
);
707 crypto_free_blkcipher(kctx
->acceptor_enc_aux
);
708 crypto_free_blkcipher(kctx
->initiator_enc_aux
);
709 kfree(kctx
->mech_used
.data
);
713 static const struct gss_api_ops gss_kerberos_ops
= {
714 .gss_import_sec_context
= gss_import_sec_context_kerberos
,
715 .gss_get_mic
= gss_get_mic_kerberos
,
716 .gss_verify_mic
= gss_verify_mic_kerberos
,
717 .gss_wrap
= gss_wrap_kerberos
,
718 .gss_unwrap
= gss_unwrap_kerberos
,
719 .gss_delete_sec_context
= gss_delete_sec_context_kerberos
,
722 static struct pf_desc gss_kerberos_pfs
[] = {
724 .pseudoflavor
= RPC_AUTH_GSS_KRB5
,
725 .service
= RPC_GSS_SVC_NONE
,
729 .pseudoflavor
= RPC_AUTH_GSS_KRB5I
,
730 .service
= RPC_GSS_SVC_INTEGRITY
,
734 .pseudoflavor
= RPC_AUTH_GSS_KRB5P
,
735 .service
= RPC_GSS_SVC_PRIVACY
,
740 static struct gss_api_mech gss_kerberos_mech
= {
742 .gm_owner
= THIS_MODULE
,
743 .gm_oid
= {9, (void *)"\x2a\x86\x48\x86\xf7\x12\x01\x02\x02"},
744 .gm_ops
= &gss_kerberos_ops
,
745 .gm_pf_num
= ARRAY_SIZE(gss_kerberos_pfs
),
746 .gm_pfs
= gss_kerberos_pfs
,
747 .gm_upcall_enctypes
= "enctypes=18,17,16,23,3,1,2 ",
750 static int __init
init_kerberos_module(void)
754 status
= gss_mech_register(&gss_kerberos_mech
);
756 printk("Failed to register kerberos gss mechanism!\n");
760 static void __exit
cleanup_kerberos_module(void)
762 gss_mech_unregister(&gss_kerberos_mech
);
765 MODULE_LICENSE("GPL");
766 module_init(init_kerberos_module
);
767 module_exit(cleanup_kerberos_module
);