2 * Copyright (c) 1999 - 2003 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * 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.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #include "gssapi_locl.h"
36 RCSID("$Id: export_sec_context.c,v 1.6 2003/03/16 18:02:52 lha Exp $");
39 gss_export_sec_context (
40 OM_uint32
* minor_status
,
41 gss_ctx_id_t
* context_handle
,
42 gss_buffer_t interprocess_token
47 OM_uint32 ret
= GSS_S_COMPLETE
;
49 gss_buffer_desc buffer
;
55 if (!((*context_handle
)->flags
& GSS_C_TRANS_FLAG
)) {
57 return GSS_S_UNAVAILABLE
;
60 sp
= krb5_storage_emem ();
62 *minor_status
= ENOMEM
;
65 ac
= (*context_handle
)->auth_context
;
67 /* flagging included fields */
70 if (ac
->local_address
)
71 flags
|= SC_LOCAL_ADDRESS
;
72 if (ac
->remote_address
)
73 flags
|= SC_REMOTE_ADDRESS
;
77 flags
|= SC_LOCAL_SUBKEY
;
78 if (ac
->remote_subkey
)
79 flags
|= SC_REMOTE_SUBKEY
;
81 kret
= krb5_store_int32 (sp
, flags
);
87 /* marshall auth context */
89 kret
= krb5_store_int32 (sp
, ac
->flags
);
94 if (ac
->local_address
) {
95 kret
= krb5_store_address (sp
, *ac
->local_address
);
101 if (ac
->remote_address
) {
102 kret
= krb5_store_address (sp
, *ac
->remote_address
);
104 *minor_status
= kret
;
108 kret
= krb5_store_int16 (sp
, ac
->local_port
);
110 *minor_status
= kret
;
113 kret
= krb5_store_int16 (sp
, ac
->remote_port
);
115 *minor_status
= kret
;
119 kret
= krb5_store_keyblock (sp
, *ac
->keyblock
);
121 *minor_status
= kret
;
125 if (ac
->local_subkey
) {
126 kret
= krb5_store_keyblock (sp
, *ac
->local_subkey
);
128 *minor_status
= kret
;
132 if (ac
->remote_subkey
) {
133 kret
= krb5_store_keyblock (sp
, *ac
->remote_subkey
);
135 *minor_status
= kret
;
139 kret
= krb5_store_int32 (sp
, ac
->local_seqnumber
);
141 *minor_status
= kret
;
144 kret
= krb5_store_int32 (sp
, ac
->remote_seqnumber
);
146 *minor_status
= kret
;
150 kret
= krb5_store_int32 (sp
, ac
->keytype
);
152 *minor_status
= kret
;
155 kret
= krb5_store_int32 (sp
, ac
->cksumtype
);
157 *minor_status
= kret
;
163 ret
= gss_export_name (minor_status
, (*context_handle
)->source
, &buffer
);
166 data
.data
= buffer
.value
;
167 data
.length
= buffer
.length
;
168 kret
= krb5_store_data (sp
, data
);
169 gss_release_buffer (&minor
, &buffer
);
171 *minor_status
= kret
;
175 ret
= gss_export_name (minor_status
, (*context_handle
)->target
, &buffer
);
178 data
.data
= buffer
.value
;
179 data
.length
= buffer
.length
;
183 kret
= krb5_store_data (sp
, data
);
184 gss_release_buffer (&minor
, &buffer
);
186 *minor_status
= kret
;
190 kret
= krb5_store_int32 (sp
, (*context_handle
)->flags
);
192 *minor_status
= kret
;
195 kret
= krb5_store_int32 (sp
, (*context_handle
)->more_flags
);
197 *minor_status
= kret
;
200 kret
= krb5_store_int32 (sp
, (*context_handle
)->lifetime
);
202 *minor_status
= kret
;
206 kret
= krb5_storage_to_data (sp
, &data
);
207 krb5_storage_free (sp
);
209 *minor_status
= kret
;
210 return GSS_S_FAILURE
;
212 interprocess_token
->length
= data
.length
;
213 interprocess_token
->value
= data
.data
;
214 ret
= gss_delete_sec_context (minor_status
, context_handle
,
216 if (ret
!= GSS_S_COMPLETE
)
217 gss_release_buffer (NULL
, interprocess_token
);
221 krb5_storage_free (sp
);