Whamcloud - gitweb
LU-4307 kerberos: compile errors with gss/kerberos support
[fs/lustre-release.git] / lustre / utils / gss / context_lucid.c
1 /*
2  * COPYRIGHT (c) 2006
3  * The Regents of the University of Michigan
4  * ALL RIGHTS RESERVED
5  *
6  * Permission is granted to use, copy, create derivative works
7  * and redistribute this software and such derivative works
8  * for any purpose, so long as the name of The University of
9  * Michigan is not used in any advertising or publicity
10  * pertaining to the use of distribution of this software
11  * without specific, written prior authorization.  If the
12  * above copyright notice or any other identification of the
13  * University of Michigan is included in any copy of any
14  * portion of this software, then the disclaimer below must
15  * also be included.
16  *
17  * THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION
18  * FROM THE UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY
19  * PURPOSE, AND WITHOUT WARRANTY BY THE UNIVERSITY OF
20  * MICHIGAN OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
21  * WITHOUT LIMITATION THE IMPLIED WARRANTIES OF
22  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE
23  * REGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE
24  * FOR ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR
25  * CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING
26  * OUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN
27  * IF IT HAS BEEN OR IS HEREAFTER ADVISED OF THE POSSIBILITY OF
28  * SUCH DAMAGES.
29  */
30
31 #include "config.h"
32
33 #ifdef HAVE_LUCID_CONTEXT_SUPPORT
34
35 /*
36  * Newer versions of MIT and Heimdal have lucid context support.
37  * We can use common code if it is supported.
38  */
39
40 #include <stdio.h>
41 #include <syslog.h>
42 #include <string.h>
43 #include <errno.h>
44 #include <stdint.h>
45 #include <krb5.h>
46 #include <gssapi/gssapi.h>
47 #ifndef OM_uint64
48 typedef uint64_t OM_uint64;
49 #endif
50 #include <gssapi/gssapi_krb5.h>
51
52 #ifdef _NEW_BUILD_
53 # include "lgss_utils.h"
54 #else
55 # include "gss_util.h"
56 # include "gss_oids.h"
57 # include "err_util.h"
58 #endif
59 #include "write_bytes.h"
60 #include "context.h"
61
62 extern OM_uint32 gss_export_lucid_sec_context(OM_uint32 *min_stat,
63                                               gss_ctx_id_t *ctx,
64                                               OM_uint32 version,
65                                               void **kctx);
66 extern OM_uint32 gss_free_lucid_sec_context(OM_uint32 *min_stat,
67                                             gss_ctx_id_t ctx,
68                                             void *kctx);
69
70 static int
71 write_lucid_keyblock(char **p, char *end, gss_krb5_lucid_key_t *key)
72 {
73         gss_buffer_desc tmp;
74
75         if (WRITE_BYTES(p, end, key->type)) return -1;
76         tmp.length = key->length;
77         tmp.value = key->data;
78         if (write_buffer(p, end, &tmp)) return -1;
79         return 0;
80 }
81
82 static int
83 prepare_krb5_rfc1964_buffer(gss_krb5_lucid_context_v1_t *lctx,
84         gss_buffer_desc *buf)
85 {
86         char *p, *end;
87         static int constant_zero = 0;
88         unsigned char fakeseed[16] = { 0 };
89         uint32_t word_send_seq;
90         gss_krb5_lucid_key_t enc_key;
91         int i;
92         char *skd, *dkd;
93         gss_buffer_desc fakeoid;
94
95         /*
96          * The new Kerberos interface to get the gss context
97          * does not include the seed or seed_init fields
98          * because we never really use them.  But for now,
99          * send down a fake buffer so we can use the same
100          * interface to the kernel.
101          */
102         memset(&enc_key, 0, sizeof(enc_key));
103         memset(&fakeoid, 0, sizeof(fakeoid));
104
105         if (!(buf->value = calloc(1, MAX_CTX_LEN)))
106                 goto out_err;
107         p = buf->value;
108         end = buf->value + MAX_CTX_LEN;
109
110         if (WRITE_BYTES(&p, end, lctx->initiate)) goto out_err;
111
112         /* seed_init and seed not used by kernel anyway */
113         if (WRITE_BYTES(&p, end, constant_zero)) goto out_err;
114         if (write_bytes(&p, end, &fakeseed, 16)) goto out_err;
115
116         if (WRITE_BYTES(&p, end, lctx->rfc1964_kd.sign_alg)) goto out_err;
117         if (WRITE_BYTES(&p, end, lctx->rfc1964_kd.seal_alg)) goto out_err;
118         if (WRITE_BYTES(&p, end, lctx->endtime)) goto out_err;
119         word_send_seq = lctx->send_seq; /* XXX send_seq is 64-bit */
120         if (WRITE_BYTES(&p, end, word_send_seq)) goto out_err;
121         if (write_oid(&p, end, &krb5oid)) goto out_err;
122
123 #ifdef HAVE_HEIMDAL
124         /*
125          * The kernel gss code expects des-cbc-raw for all flavors of des.
126          * The keytype from MIT has this type, but Heimdal does not.
127          * Force the Heimdal keytype to 4 (des-cbc-raw).
128          * Note that the rfc1964 version only supports DES enctypes.
129          */
130         if (lctx->rfc1964_kd.ctx_key.type != 4) {
131                 printerr(2, "%s: overriding heimdal keytype (%d => %d)\n",
132                          __FUNCTION__, lctx->rfc1964_kd.ctx_key.type, 4);
133                 lctx->rfc1964_kd.ctx_key.type = 4;
134         }
135 #endif
136         printerr(2, "%s: serializing keys with enctype %d and length %d\n",
137                  __FUNCTION__, lctx->rfc1964_kd.ctx_key.type,
138                  lctx->rfc1964_kd.ctx_key.length);
139
140         /* derive the encryption key and copy it into buffer */
141         enc_key.type = lctx->rfc1964_kd.ctx_key.type;
142         enc_key.length = lctx->rfc1964_kd.ctx_key.length;
143         if ((enc_key.data = calloc(1, enc_key.length)) == NULL)
144                 goto out_err;
145         skd = (char *) lctx->rfc1964_kd.ctx_key.data;
146         dkd = (char *) enc_key.data;
147         for (i = 0; i < enc_key.length; i++)
148                 dkd[i] = skd[i] ^ 0xf0;
149         if (write_lucid_keyblock(&p, end, &enc_key)) {
150                 free(enc_key.data);
151                 goto out_err;
152         }
153         free(enc_key.data);
154
155         if (write_lucid_keyblock(&p, end, &lctx->rfc1964_kd.ctx_key))
156                 goto out_err;
157
158         buf->length = p - (char *)buf->value;
159         return 0;
160 out_err:
161         printerr(0, "ERROR: failed serializing krb5 context for kernel\n");
162         if (buf->value) free(buf->value);
163         buf->length = 0;
164         if (enc_key.data) free(enc_key.data);
165         return -1;
166 }
167
168 /* XXX Hack alert! XXX  Do NOT submit upstream! XXX */
169 /* XXX Hack alert! XXX  Do NOT submit upstream! XXX */
170
171 /* for 3DES */
172 #define KG_USAGE_SEAL 22
173 #define KG_USAGE_SIGN 23
174 #define KG_USAGE_SEQ  24
175
176 /* for rfc???? */
177 #define KG_USAGE_ACCEPTOR_SEAL  22
178 #define KG_USAGE_ACCEPTOR_SIGN  23
179 #define KG_USAGE_INITIATOR_SEAL 24
180 #define KG_USAGE_INITIATOR_SIGN 25
181
182 /* Lifted from mit src/lib/gssapi/krb5/gssapiP_krb5.h */
183 enum seal_alg {
184   SEAL_ALG_NONE            = 0xffff,
185   SEAL_ALG_DES             = 0x0000,
186   SEAL_ALG_1               = 0x0001, /* not published */
187   SEAL_ALG_MICROSOFT_RC4   = 0x0010, /* microsoft w2k;  */
188   SEAL_ALG_DES3KD          = 0x0002
189 };
190
191 #define KEY_USAGE_SEED_ENCRYPTION       0xAA
192 #define KEY_USAGE_SEED_INTEGRITY        0x55
193 #define KEY_USAGE_SEED_CHECKSUM         0x99
194 #define K5CLENGTH 5
195
196 /* Flags for version 2 context flags */
197 #define KRB5_CTX_FLAG_INITIATOR         0x00000001
198 #define KRB5_CTX_FLAG_CFX               0x00000002
199 #define KRB5_CTX_FLAG_ACCEPTOR_SUBKEY   0x00000004
200
201 /* XXX Hack alert! XXX  Do NOT submit upstream! XXX */
202 /* XXX Hack alert! XXX  Do NOT submit upstream! XXX */
203 /*
204  * We don't have "legal" access to these MIT-only
205  * structures located in libk5crypto
206  */
207 extern void *krb5int_enc_arcfour;
208 extern void *krb5int_enc_des3;
209 extern void *krb5int_enc_aes128;
210 extern void *krb5int_enc_aes256;
211
212 static void
213 key_lucid_to_krb5(const gss_krb5_lucid_key_t *lin, krb5_keyblock *kout)
214 {
215         memset(kout, '\0', sizeof(kout));
216 #ifdef HAVE_KRB5
217         kout->enctype = lin->type;
218         kout->length = lin->length;
219         kout->contents = lin->data;
220 #else
221         kout->keytype = lin->type;
222         kout->keyvalue.length = lin->length;
223         kout->keyvalue.data = lin->data;
224 #endif
225 }
226
227 static void
228 key_krb5_to_lucid(const krb5_keyblock *kin, gss_krb5_lucid_key_t *lout)
229 {
230         memset(lout, '\0', sizeof(lout));
231 #ifdef HAVE_KRB5
232         lout->type = kin->enctype;
233         lout->length = kin->length;
234         lout->data = kin->contents;
235 #else
236         lout->type = kin->keytype;
237         lout->length = kin->keyvalue.length;
238         memcpy(lout->data, kin->keyvalue.data, kin->keyvalue.length);
239 #endif
240 }
241
242 /* XXX Hack alert! XXX  Do NOT submit upstream! XXX */
243 /* XXX Hack alert! XXX  Do NOT submit upstream! XXX */
244 /* XXX Hack alert! XXX  Do NOT submit upstream! XXX */
245 /* XXX Hack alert! XXX  Do NOT submit upstream! XXX */
246 /*
247  * Function to derive a new key from a given key and given constant data.
248  */
249 static krb5_error_code
250 derive_key_lucid(const gss_krb5_lucid_key_t *in, gss_krb5_lucid_key_t *out,
251                  int usage, char extra)
252 {
253         krb5_error_code code;
254         unsigned char constant_data[K5CLENGTH];
255         krb5_data datain;
256         int keylength;
257         void *enc;
258         krb5_keyblock kin, kout;  /* must send krb5_keyblock, not lucid! */
259 #if defined(HAVE_HEIMDAL) || HAVE_KRB5INT_DERIVE_KEY
260         krb5_context kcontext;
261 #endif
262 #if HAVE_KRB5INT_DERIVE_KEY
263         krb5_key key_in, key_out;
264 #endif
265 #ifdef HAVE_HEIMDAL
266         krb5_keyblock *outkey;
267 #endif
268
269         /*
270          * XXX Hack alert.  We don't have "legal" access to these
271          * values and structures located in libk5crypto
272          */
273         switch (in->type) {
274         case ENCTYPE_DES3_CBC_SHA1:
275 #ifdef HAVE_KRB5
276         case ENCTYPE_DES3_CBC_RAW:
277 #endif
278                 keylength = 24;
279 #ifdef HAVE_KRB5
280                 enc = &krb5int_enc_des3;
281 #endif
282                 break;
283         case ENCTYPE_AES128_CTS_HMAC_SHA1_96:
284                 keylength = 16;
285 #ifdef HAVE_KRB5
286                 enc = &krb5int_enc_aes128;
287 #endif
288                 break;
289         case ENCTYPE_AES256_CTS_HMAC_SHA1_96:
290                 keylength = 32;
291 #ifdef HAVE_KRB5
292                 enc = &krb5int_enc_aes256;
293 #endif
294                 break;
295         default:
296                 code = KRB5_BAD_ENCTYPE;
297                 goto out;
298         }
299
300         /* allocate memory for output key */
301         if ((out->data = malloc(keylength)) == NULL) {
302                 code = ENOMEM;
303                 goto out;
304         }
305         out->length = keylength;
306         out->type = in->type;
307
308         /* Convert to correct format for call to krb5_derive_key */
309         key_lucid_to_krb5(in, &kin);
310         key_lucid_to_krb5(out, &kout);
311
312         datain.data = (char *) constant_data;
313         datain.length = K5CLENGTH;
314
315         ((char *)(datain.data))[0] = (usage>>24)&0xff;
316         ((char *)(datain.data))[1] = (usage>>16)&0xff;
317         ((char *)(datain.data))[2] = (usage>>8)&0xff;
318         ((char *)(datain.data))[3] = usage&0xff;
319
320         ((char *)(datain.data))[4] = (char) extra;
321
322 #ifdef HAVE_KRB5
323 #if HAVE_KRB5INT_DERIVE_KEY
324         code = krb5_init_context(&kcontext);
325         if (code) {
326                 free(out->data);
327                 out->data = NULL;
328                 goto out;
329         }
330         code = krb5_k_create_key(kcontext, &kin, &key_in);
331         if (code) {
332                 free(out->data);
333                 out->data = NULL;
334                 goto out;
335         }
336         code = krb5_k_create_key(kcontext, &kout, &key_out);
337         if (code) {
338                 free(out->data);
339                 out->data = NULL;
340                 goto out;
341         }
342         code = krb5int_derive_key(enc, key_in, &key_out, &datain,
343                                   DERIVE_RFC3961);
344 #else  /* !HAVE_KRB5INT_DERIVE_KEY */
345         code = krb5_derive_key(enc, &kin, &kout, &datain);
346 #endif  /* HAVE_KRB5INT_DERIVE_KEY */
347 #else   /* !defined(HAVE_KRB5) */
348         if ((code = krb5_init_context(&kcontext))) {
349         }
350         code = krb5_derive_key(kcontext, &kin, in->type, constant_data, K5CLENGTH, &outkey);
351 #endif  /* defined(HAVE_KRB5) */
352         if (code) {
353                 free(out->data);
354                 out->data = NULL;
355                 goto out;
356         }
357 #ifdef HAVE_KRB5
358         key_krb5_to_lucid(&kout, out);
359 #if HAVE_KRB5INT_DERIVE_KEY
360         krb5_free_context(kcontext);
361 #endif  /* HAVE_KRB5INT_DERIVE_KEY */
362 #else   /* !defined(HAVE_KRB5) */
363         key_krb5_to_lucid(outkey, out);
364         krb5_free_keyblock(kcontext, outkey);
365         krb5_free_context(kcontext);
366 #endif  /* defined(HAVE_KRB5) */
367
368   out:
369         if (code)
370                 printerr(0, "ERROR: %s: returning error %d (%s)\n",
371                          __FUNCTION__, code, error_message(code));
372         return (code);
373 }
374
375
376 /*
377  * Prepare a new-style buffer, as defined in rfc4121 (a.k.a. cfx),
378  * to send to the kernel for newer encryption types -- or for DES3.
379  *
380  * The new format is:
381  *
382  *      u32 initiate;                   ( whether we are the initiator or not )
383  *      s32 endtime;
384  *      u32 flags;
385  *      #define KRB5_CTX_FLAG_INITIATOR         0x00000001
386  *      #define KRB5_CTX_FLAG_CFX               0x00000002
387  *      #define KRB5_CTX_FLAG_ACCEPTOR_SUBKEY   0x00000004
388  *      u64 seq_send;
389  *      u32  enctype;                   ( encrption type of keys )
390  *      u32  size_of_each_key;          ( size of each key in bytes )
391  *      u32  number_of_keys;            ( N -- should always be 3 for now )
392  *      keydata-1;                      ( Ke )
393  *      keydata-2;                      ( Ki )
394  *      keydata-3;                      ( Kc )
395  *
396  */
397 static int
398 prepare_krb5_rfc4121_buffer(gss_krb5_lucid_context_v1_t *lctx,
399                             gss_buffer_desc *buf)
400 {
401         static int constant_two = 2;
402         char *p, *end;
403         uint32_t v2_flags = 0;
404         gss_krb5_lucid_key_t enc_key;
405         gss_krb5_lucid_key_t derived_key;
406         gss_buffer_desc fakeoid;
407         uint32_t enctype;
408         uint32_t keysize;
409         uint32_t numkeys;
410
411         memset(&enc_key, 0, sizeof(enc_key));
412         memset(&fakeoid, 0, sizeof(fakeoid));
413
414         if (!(buf->value = calloc(1, MAX_CTX_LEN)))
415                 goto out_err;
416         p = buf->value;
417         end = buf->value + MAX_CTX_LEN;
418
419         /* Version 2 */
420         if (WRITE_BYTES(&p, end, constant_two)) goto out_err;
421         if (WRITE_BYTES(&p, end, lctx->endtime)) goto out_err;
422
423         if (lctx->initiate)
424                 v2_flags |= KRB5_CTX_FLAG_INITIATOR;
425         if (lctx->protocol != 0)
426                 v2_flags |= KRB5_CTX_FLAG_CFX;
427         if (lctx->protocol != 0 && lctx->cfx_kd.have_acceptor_subkey == 1)
428                 v2_flags |= KRB5_CTX_FLAG_ACCEPTOR_SUBKEY;
429
430         if (WRITE_BYTES(&p, end, v2_flags)) goto out_err;
431
432         if (WRITE_BYTES(&p, end, lctx->send_seq)) goto out_err;
433
434         /* Protocol 0 here implies DES3 or RC4 */
435         printerr(3, "protocol %d\n", lctx->protocol);
436         if (lctx->protocol == 0) {
437                 enctype = lctx->rfc1964_kd.ctx_key.type;
438 #ifdef HAVE_HEIMDAL
439                 /*
440                  * The kernel gss code expects ENCTYPE_DES3_CBC_RAW (6) for
441                  * 3des keys, but Heimdal key has ENCTYPE_DES3_CBC_SHA1 (16).
442                  * Force the Heimdal enctype to 6.
443                  */
444                 if (enctype == ENCTYPE_DES3_CBC_SHA1) {
445                         printerr(2, "%s: overriding heimdal keytype (%d => %d)\n",
446                                  __FUNCTION__, enctype, 6);
447
448                         enctype = 6;
449                 }
450 #endif
451                 keysize = lctx->rfc1964_kd.ctx_key.length;
452                 numkeys = 3;    /* XXX is always gonna be three? */
453         } else {
454                 if (lctx->cfx_kd.have_acceptor_subkey) {
455                         enctype = lctx->cfx_kd.acceptor_subkey.type;
456                         keysize = lctx->cfx_kd.acceptor_subkey.length;
457                 } else {
458                         enctype = lctx->cfx_kd.ctx_key.type;
459                         keysize = lctx->cfx_kd.ctx_key.length;
460                 }
461                 numkeys = 3;
462         }
463         printerr(3, "serializing %d keys with enctype %d and size %d\n",
464                  numkeys, enctype, keysize);
465         if (WRITE_BYTES(&p, end, enctype)) goto out_err;
466         if (WRITE_BYTES(&p, end, keysize)) goto out_err;
467         if (WRITE_BYTES(&p, end, numkeys)) goto out_err;
468
469         if (lctx->protocol == 0) {
470                 /* derive and send down: Ke, Ki, and Kc */
471                 /* Ke */
472                 if (write_bytes(&p, end, lctx->rfc1964_kd.ctx_key.data,
473                                 lctx->rfc1964_kd.ctx_key.length))
474                         goto out_err;
475
476                 /* Ki */
477                 if (write_bytes(&p, end, lctx->rfc1964_kd.ctx_key.data,
478                                 lctx->rfc1964_kd.ctx_key.length))
479                         goto out_err;
480
481                 /* Kc */
482                 /*
483                  * RC4 is special, it dosen't need key derivation. Actually
484                  * the Ke is based on plain text. Here we just let all three
485                  * key identical, kernel will handle everything. --ericm
486                  */
487                 if (lctx->rfc1964_kd.ctx_key.type == ENCTYPE_ARCFOUR_HMAC) {
488                         if (write_bytes(&p, end, lctx->rfc1964_kd.ctx_key.data,
489                                         lctx->rfc1964_kd.ctx_key.length))
490                                 goto out_err;
491                 } else {
492                         if (derive_key_lucid(&lctx->rfc1964_kd.ctx_key,
493                                         &derived_key,
494                                         KG_USAGE_SIGN, KEY_USAGE_SEED_CHECKSUM))
495                                 goto out_err;
496                         if (write_bytes(&p, end, derived_key.data,
497                                         derived_key.length))
498                                 goto out_err;
499                         free(derived_key.data);
500                 }
501         } else {
502                 gss_krb5_lucid_key_t *keyptr;
503                 uint32_t sign_usage, seal_usage;
504
505                 if (lctx->cfx_kd.have_acceptor_subkey)
506                         keyptr = &lctx->cfx_kd.acceptor_subkey;
507                 else
508                         keyptr = &lctx->cfx_kd.ctx_key;
509
510 #if 0
511                 if (lctx->initiate == 1) {
512                         sign_usage = KG_USAGE_INITIATOR_SIGN;
513                         seal_usage = KG_USAGE_INITIATOR_SEAL;
514                 } else {
515                         sign_usage = KG_USAGE_ACCEPTOR_SIGN;
516                         seal_usage = KG_USAGE_ACCEPTOR_SEAL;
517                 }
518 #else
519                 /* FIXME
520                  * These are from rfc4142, but I don't understand: if we supply
521                  * different 'usage' value for client & server, then the peers
522                  * will have different derived keys. How could this work?
523                  *
524                  * Here we simply use old SIGN/SEAL values until we find the
525                  * answer.  --ericm
526                  * FIXME
527                  */
528                 sign_usage = KG_USAGE_SIGN;
529                 seal_usage = KG_USAGE_SEAL;
530 #endif
531
532                 /* derive and send down: Ke, Ki, and Kc */
533
534                 /* Ke */
535                 if (derive_key_lucid(keyptr, &derived_key,
536                                seal_usage, KEY_USAGE_SEED_ENCRYPTION))
537                         goto out_err;
538                 if (write_bytes(&p, end, derived_key.data,
539                                 derived_key.length))
540                         goto out_err;
541                 free(derived_key.data);
542
543                 /* Ki */
544                 if (derive_key_lucid(keyptr, &derived_key,
545                                seal_usage, KEY_USAGE_SEED_INTEGRITY))
546                         goto out_err;
547                 if (write_bytes(&p, end, derived_key.data,
548                                 derived_key.length))
549                         goto out_err;
550                 free(derived_key.data);
551
552                 /* Kc */
553                 if (derive_key_lucid(keyptr, &derived_key,
554                                sign_usage, KEY_USAGE_SEED_CHECKSUM))
555                         goto out_err;
556                 if (write_bytes(&p, end, derived_key.data,
557                                 derived_key.length))
558                         goto out_err;
559                 free(derived_key.data);
560         }
561
562         buf->length = p - (char *)buf->value;
563         return 0;
564
565 out_err:
566         printerr(0, "ERROR: %s: failed serializing krb5 context for kernel\n",
567                  __FUNCTION__);
568         if (buf->value) {
569                 free(buf->value);
570                 buf->value = NULL;
571         }
572         buf->length = 0;
573         if (enc_key.data) {
574                 free(enc_key.data);
575                 enc_key.data = NULL;
576         }
577         return -1;
578 }
579 int
580 serialize_krb5_ctx(gss_ctx_id_t ctx, gss_buffer_desc *buf)
581 {
582         OM_uint32 maj_stat, min_stat;
583         void *return_ctx = 0;
584         OM_uint32 vers;
585         gss_krb5_lucid_context_v1_t *lctx = 0;
586         int retcode = 0;
587
588         printerr(3, "lucid version!\n");
589         maj_stat = gss_export_lucid_sec_context(&min_stat, &ctx,
590                                                 1, &return_ctx);
591         if (maj_stat != GSS_S_COMPLETE) {
592                 pgsserr("gss_export_lucid_sec_context",
593                         maj_stat, min_stat, &krb5oid);
594                 goto out_err;
595         }
596
597         /* Check the version returned, we only support v1 right now */
598         vers = ((gss_krb5_lucid_context_version_t *)return_ctx)->version;
599         switch (vers) {
600         case 1:
601                 lctx = (gss_krb5_lucid_context_v1_t *) return_ctx;
602                 break;
603         default:
604                 printerr(0, "ERROR: unsupported lucid sec context version %d\n",
605                         vers);
606                 goto out_err;
607                 break;
608         }
609
610         /*
611          * Now lctx points to a lucid context that we can send down to kernel
612          *
613          * Note: we send down different information to the kernel depending
614          * on the protocol version and the enctyption type.
615          * For protocol version 0 with all enctypes besides DES3, we use
616          * the original format.  For protocol version != 0 or DES3, we
617          * send down the new style information.
618          */
619
620         if (lctx->protocol == 0 && lctx->rfc1964_kd.ctx_key.type <= 4)
621                 retcode = prepare_krb5_rfc1964_buffer(lctx, buf);
622         else
623                 retcode = prepare_krb5_rfc4121_buffer(lctx, buf);
624
625         maj_stat = gss_free_lucid_sec_context(&min_stat, ctx, return_ctx);
626         if (maj_stat != GSS_S_COMPLETE) {
627                 pgsserr("gss_export_lucid_sec_context",
628                         maj_stat, min_stat, &krb5oid);
629                 printerr(0, "WARN: failed to free lucid sec context\n");
630         }
631
632         if (retcode) {
633                 printerr(1, "%s: prepare_krb5_*_buffer failed (retcode = %d)\n",
634                          __FUNCTION__, retcode);
635                 goto out_err;
636         }
637
638         return 0;
639
640 out_err:
641         printerr(0, "ERROR: failed serializing krb5 context for kernel\n");
642         return -1;
643 }
644
645
646
647 #endif /* HAVE_LUCID_CONTEXT_SUPPORT */