aboutsummaryrefslogtreecommitdiff
path: root/src/lib/krb5/os/t_ctxprf.c
blob: c804d4896ef4e4a116c7808d5f7a97f58a2fca37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/* lib/krb5/krb/t_ctxprf.c - krb5_init_context_profile() test */
/*
 * Copyright (C) 2024 by the Massachusetts Institute of Technology.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * * Redistributions of source code must retain the above copyright
 *   notice, this list of conditions and the following disclaimer.
 *
 * * Redistributions in binary form must reproduce the above copyright
 *   notice, this list of conditions and the following disclaimer in
 *   the documentation and/or other materials provided with the
 *   distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 */

/*
 * This program tests the use of krb5_init_context_profile() with a modified
 * profile object.  If run with the single argument "empty", we create and
 * modifiemodify an empty profile; otherwise, we retrieve and modify the
 * profile for a normally created libkrb5 context.  In both cases, we set a
 * realm KDC value in the profile and use k5_locate_kdc() to verify that the
 * setting is reflected in a libkrb5 context created using the modified
 * profile.
 */

#include "k5-int.h"
#include "os-proto.h"

static void
check(long code)
{
    assert(code == 0);
}

int
main(int argc, char **argv)
{
    profile_t p;
    krb5_context ctx;
    const char *names[] = { "realms", "KRBTEST.COM", "kdc", NULL };
    krb5_data realm = string2data("KRBTEST.COM");
    struct serverlist sl;

    if (argc > 1 && strcmp(argv[1], "empty") == 0) {
        check(profile_init(NULL, &p));
    } else {
        check(krb5_init_context(&ctx));
        check(krb5_get_profile(ctx, &p));
        krb5_free_context(ctx);
        profile_clear_relation(p, names);
    }
    check(profile_add_relation(p, names, "ctx.prf.test"));

    check(krb5_init_context_profile(p, 0, &ctx));
    check(k5_locate_kdc(ctx, &realm, &sl, FALSE, FALSE));
    assert(sl.nservers == 1);
    assert(strcmp(sl.servers[0].hostname, "ctx.prf.test") == 0);

    profile_abandon(p);
    k5_free_serverlist(&sl);
    krb5_free_context(ctx);
}