1 /* $NetBSD: test_acquire_cred.c,v 1.1.1.2 2014/04/24 12:45:29 pettai Exp $ */
4 * Copyright (c) 2003-2007 Kungliga Tekniska Högskolan
5 * (Royal Institute of Technology, Stockholm, Sweden).
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of KTH nor the names of its contributors may be
20 * used to endorse or promote products derived from this software without
21 * specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS ``AS IS'' AND ANY
24 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
26 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE
27 * LIABLE 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 LIABILITY,
31 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
32 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
33 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 #include <krb5/roken.h>
45 #include <gssapi/gssapi.h>
46 #include <gssapi/gssapi_krb5.h>
47 #include <gssapi/gssapi_spnego.h>
49 #include <krb5/getarg.h>
51 #include "test_common.h"
54 print_time(OM_uint32 time_rec
)
56 if (time_rec
== GSS_C_INDEFINITE
) {
57 printf("cred never expire\n");
59 time_t t
= time_rec
+ time(NULL
);
60 printf("expiration time: %s", ctime(&t
));
67 test_add(gss_cred_id_t cred_handle
)
69 OM_uint32 major_status
, minor_status
;
70 gss_cred_id_t copy_cred
;
73 major_status
= gss_add_cred (&minor_status
,
85 if (GSS_ERROR(major_status
))
86 errx(1, "add_cred failed");
90 major_status
= gss_release_cred(&minor_status
,
92 if (GSS_ERROR(major_status
))
93 errx(1, "release_cred failed");
99 OM_uint32 major_status
, minor_status
;
100 gss_cred_id_t cred_handle
;
103 major_status
= gss_acquire_cred(&minor_status
,
111 if (GSS_ERROR(major_status
))
112 errx(1, "acquire_cred failed");
114 print_time(time_rec
);
116 test_add(cred_handle
);
117 test_add(cred_handle
);
118 test_add(cred_handle
);
120 major_status
= gss_release_cred(&minor_status
,
122 if (GSS_ERROR(major_status
))
123 errx(1, "release_cred failed");
128 acquire_cred_service(const char *service
,
133 OM_uint32 major_status
, minor_status
;
134 gss_cred_id_t cred_handle
;
136 gss_buffer_desc name_buffer
;
137 gss_name_t name
= GSS_C_NO_NAME
;
140 name_buffer
.value
= rk_UNCONST(service
);
141 name_buffer
.length
= strlen(service
);
143 major_status
= gss_import_name(&minor_status
,
147 if (GSS_ERROR(major_status
))
148 errx(1, "import_name failed");
151 major_status
= gss_acquire_cred(&minor_status
,
159 if (GSS_ERROR(major_status
)) {
160 warnx("acquire_cred failed: %s",
161 gssapi_err(major_status
, minor_status
, GSS_C_NO_OID
));
163 print_time(time_rec
);
164 gss_release_cred(&minor_status
, &cred_handle
);
167 if (name
!= GSS_C_NO_NAME
)
168 gss_release_name(&minor_status
, &name
);
170 if (GSS_ERROR(major_status
))
176 static int version_flag
= 0;
177 static int help_flag
= 0;
178 static int kerberos_flag
= 0;
179 static int enctype
= 0;
180 static char *acquire_name
;
181 static char *acquire_type
;
182 static char *target_name
;
183 static char *name_type
;
185 static int num_loops
= 1;
187 static struct getargs args
[] = {
188 {"acquire-name", 0, arg_string
, &acquire_name
, "name", NULL
},
189 {"acquire-type", 0, arg_string
, &acquire_type
, "type", NULL
},
190 {"enctype", 0, arg_integer
, &enctype
, "enctype-num", NULL
},
191 {"loops", 0, arg_integer
, &num_loops
, "enctype-num", NULL
},
192 {"kerberos", 0, arg_flag
, &kerberos_flag
, "enctype-num", NULL
},
193 {"target-name", 0, arg_string
, &target_name
, "name", NULL
},
194 {"ccache", 0, arg_string
, &ccache
, "name", NULL
},
195 {"name-type", 0, arg_string
, &name_type
, "type", NULL
},
196 {"version", 0, arg_flag
, &version_flag
, "print version", NULL
},
197 {"help", 0, arg_flag
, &help_flag
, NULL
, NULL
}
203 arg_printusage (args
, sizeof(args
)/sizeof(*args
), NULL
, "");
208 main(int argc
, char **argv
)
210 gss_OID_set oidset
= GSS_C_NULL_OID_SET
;
211 gss_OID mechoid
= GSS_C_NO_OID
;
212 OM_uint32 maj_stat
, min_stat
;
214 gss_name_t target
= GSS_C_NO_NAME
;
219 setprogname(argv
[0]);
220 if(getarg(args
, sizeof(args
) / sizeof(args
[0]), argc
, argv
, &optidx
))
238 if (strcasecmp(acquire_type
, "both") == 0)
240 else if (strcasecmp(acquire_type
, "accept") == 0)
242 else if (strcasecmp(acquire_type
, "initiate") == 0)
243 flag
= GSS_C_INITIATE
;
245 errx(1, "unknown type %s", acquire_type
);
250 if (strcasecmp("hostbased-service", name_type
) == 0)
251 type
= GSS_C_NT_HOSTBASED_SERVICE
;
252 else if (strcasecmp("user-name", name_type
) == 0)
253 type
= GSS_C_NT_USER_NAME
;
255 errx(1, "unknown name type %s", name_type
);
257 type
= GSS_C_NT_HOSTBASED_SERVICE
;
260 maj_stat
= gss_krb5_ccache_name(&min_stat
, ccache
, NULL
);
261 if (GSS_ERROR(maj_stat
))
262 errx(1, "gss_krb5_ccache_name %s",
263 gssapi_err(maj_stat
, min_stat
, GSS_C_NO_OID
));
267 mechoid
= GSS_KRB5_MECHANISM
;
269 maj_stat
= gss_create_empty_oid_set(&min_stat
, &oidset
);
270 if (maj_stat
!= GSS_S_COMPLETE
)
271 errx(1, "gss_create_empty_oid_set: %s",
272 gssapi_err(maj_stat
, min_stat
, GSS_C_NO_OID
));
274 maj_stat
= gss_add_oid_set_member(&min_stat
, GSS_KRB5_MECHANISM
, &oidset
);
275 if (maj_stat
!= GSS_S_COMPLETE
)
276 errx(1, "gss_add_oid_set_member: %s",
277 gssapi_err(maj_stat
, min_stat
, GSS_C_NO_OID
));
281 gss_buffer_desc name
;
283 name
.value
= target_name
;
284 name
.length
= strlen(target_name
);
285 maj_stat
= gss_import_name(&min_stat
, &name
,
286 GSS_C_NT_HOSTBASED_SERVICE
, &target
);
287 if (maj_stat
!= GSS_S_COMPLETE
)
288 errx(1, "gss_import_name: %s",
289 gssapi_err(maj_stat
, min_stat
, GSS_C_NO_OID
));
292 for (i
= 0; i
< num_loops
; i
++) {
294 cred
= acquire_cred_service(acquire_name
, type
, oidset
, flag
);
297 int32_t enctypelist
= enctype
;
299 maj_stat
= gss_krb5_set_allowable_enctypes(&min_stat
, cred
,
302 errx(1, "gss_krb5_set_allowable_enctypes: %s",
303 gssapi_err(maj_stat
, min_stat
, GSS_C_NO_OID
));
307 gss_ctx_id_t context
= GSS_C_NO_CONTEXT
;
313 maj_stat
= gss_init_sec_context(&min_stat
,
316 GSS_C_MUTUAL_FLAG
, 0, NULL
,
317 GSS_C_NO_BUFFER
, NULL
,
319 if (maj_stat
!= GSS_S_COMPLETE
&& maj_stat
!= GSS_S_CONTINUE_NEEDED
)
320 errx(1, "init_sec_context failed: %s",
321 gssapi_err(maj_stat
, min_stat
, GSS_C_NO_OID
));
323 gss_release_buffer(&min_stat
, &out
);
324 gss_delete_sec_context(&min_stat
, &context
, NULL
);
326 gss_release_cred(&min_stat
, &cred
);