~ubuntu-branches/ubuntu/precise/krb5/precise-updates

« back to all changes in this revision

Viewing changes to src/windows/identity/kcreddb/init.c

  • Committer: Package Import Robot
  • Author(s): Sam Hartman
  • Date: 2011-12-01 19:34:41 UTC
  • mfrom: (28.1.14 sid)
  • Revision ID: package-import@ubuntu.com-20111201193441-9tipg3aru1jsidyv
Tags: 1.10+dfsg~alpha1-6
* Fix segfault with unknown hostnames in krb5_sname_to_principal,
  Closes: #650671
* Indicate that this library breaks libsmbclient versions that depend on
  krb5_locate_kdc, Closes: #650603, #650611

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (c) 2005 Massachusetts Institute of Technology
3
 
 *
4
 
 * Permission is hereby granted, free of charge, to any person
5
 
 * obtaining a copy of this software and associated documentation
6
 
 * files (the "Software"), to deal in the Software without
7
 
 * restriction, including without limitation the rights to use, copy,
8
 
 * modify, merge, publish, distribute, sublicense, and/or sell copies
9
 
 * of the Software, and to permit persons to whom the Software is
10
 
 * furnished to do so, subject to the following conditions:
11
 
 *
12
 
 * The above copyright notice and this permission notice shall be
13
 
 * included in all copies or substantial portions of the Software.
14
 
 *
15
 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
 
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
 
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
 
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19
 
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20
 
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21
 
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
 
 * SOFTWARE.
23
 
 */
24
 
 
25
 
/* $Id$ */
26
 
 
27
 
#include<kcreddbinternal.h>
28
 
 
29
 
/* set to TRUE when the configuration is loaded */
30
 
static int kcdb_config_loaded = 0;
31
 
 
32
 
/* global state cs */
33
 
static CRITICAL_SECTION cs_kcdb_global;
34
 
 
35
 
/* forward dcl */
36
 
void KHMAPI kcdb_msg_completion(kmq_message * m);
37
 
 
38
 
void kcdb_init(void) {
39
 
    /* setup the critical sections */
40
 
    InitializeCriticalSection(&cs_kcdb_global);
41
 
 
42
 
    kmq_set_completion_handler(KMSG_KCDB, kcdb_msg_completion);
43
 
 
44
 
    kcdb_credtype_init();
45
 
    kcdbint_ident_init();
46
 
    kcdb_credset_init();
47
 
    kcdb_cred_init();
48
 
    kcdb_type_init();
49
 
    kcdb_attrib_init();
50
 
}
51
 
 
52
 
void kcdb_exit(void) {
53
 
 
54
 
    kcdb_attrib_exit();
55
 
    kcdb_type_exit();
56
 
    kcdb_cred_exit();
57
 
    kcdb_credset_exit();
58
 
    kcdbint_ident_exit();
59
 
    kcdb_credtype_exit();
60
 
 
61
 
    kmq_set_completion_handler(KMSG_KCDB, NULL);
62
 
 
63
 
    DeleteCriticalSection(&cs_kcdb_global);
64
 
}
65
 
 
66
 
khm_handle kcdb_get_config(void) {
67
 
    khm_handle space = NULL;
68
 
 
69
 
    EnterCriticalSection(&cs_kcdb_global);
70
 
    if(!kcdb_config_loaded) {
71
 
        khc_load_schema(NULL, schema_kcdbconfig);
72
 
        kcdb_config_loaded = 1;
73
 
    }
74
 
    khc_open_space(NULL, L"KCDB", 0, &space);
75
 
    LeaveCriticalSection(&cs_kcdb_global);
76
 
 
77
 
    return space;
78
 
}
79
 
 
80
 
void KHMAPI kcdb_msg_completion(kmq_message * m) {
81
 
    if(!m)
82
 
        return;
83
 
    if(m->subtype == KMSG_KCDB_IDENT)
84
 
        kcdbint_ident_msg_completion(m);
85
 
    else if(m->subtype == KMSG_KCDB_ATTRIB)
86
 
        kcdb_attrib_msg_completion(m);
87
 
    else if(m->subtype == KMSG_KCDB_TYPE)
88
 
        kcdb_type_msg_completion(m);
89
 
    else if(m->subtype == KMSG_KCDB_CREDTYPE)
90
 
        kcdb_credtype_msg_completion(m);
91
 
}