This commit was manufactured by cvs2svn to create tag
[heimdal.git] / kdc / kdc_locl.h
blobd199b3f80f7531d9731b6a50ac122e4a03859781
1 /*
2 * Copyright (c) 1997-2003 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
4 * All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
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
31 * SUCH DAMAGE.
34 /*
35 * $Id$
38 #ifndef __KDC_LOCL_H__
39 #define __KDC_LOCL_H__
41 #include "headers.h"
43 extern krb5_context context;
45 extern int require_preauth;
46 extern sig_atomic_t exit_flag;
47 extern size_t max_request;
48 extern time_t kdc_warn_pwexpire;
49 extern struct dbinfo {
50 char *realm;
51 char *dbname;
52 char *mkey_file;
53 struct dbinfo *next;
54 } *databases;
55 extern HDB **db;
56 extern int num_db;
57 extern const char *port_str;
58 extern krb5_addresses explicit_addresses;
60 extern int enable_http;
61 extern krb5_boolean encode_as_rep_as_tgs_rep;
62 extern krb5_boolean check_ticket_addresses;
63 extern krb5_boolean allow_null_ticket_addresses;
64 extern krb5_boolean allow_anonymous;
66 #ifdef KRB4
67 extern char *v4_realm;
68 extern int enable_v4;
69 extern int enable_524;
70 extern int enable_v4_cross_realm;
71 extern krb5_boolean enable_kaserver;
72 #endif
74 #define _PATH_KDC_CONF HDB_DB_DIR "/kdc.conf"
75 #define DEFAULT_LOG_DEST "0-1/FILE:" HDB_DB_DIR "/kdc.log"
77 extern struct timeval now;
78 #define kdc_time (now.tv_sec)
80 krb5_error_code as_rep (KDC_REQ*, krb5_data*, const char*, struct sockaddr*);
81 void configure (int, char**);
82 krb5_error_code db_fetch (krb5_principal, hdb_entry**);
83 void free_ent(hdb_entry *);
84 void kdc_log (int, const char*, ...)
85 __attribute__ ((format (printf, 2,3)));
87 char* kdc_log_msg (int, const char*, ...)
88 __attribute__ ((format (printf, 2,3)));
89 char* kdc_log_msg_va (int, const char*, va_list)
90 __attribute__ ((format (printf, 2,0)));
91 void kdc_openlog (void);
92 void loop (void);
93 void set_master_key (EncryptionKey);
94 krb5_error_code tgs_rep (KDC_REQ*, krb5_data*, const char*, struct sockaddr *);
95 Key* unseal_key (Key*);
96 krb5_error_code check_flags(hdb_entry *client, const char *client_name,
97 hdb_entry *server, const char *server_name,
98 krb5_boolean is_as_req);
100 #ifdef KRB4
101 krb5_error_code db_fetch4 (const char*, const char*, const char*, hdb_entry**);
102 krb5_error_code do_524 (const Ticket*, krb5_data*, const char*, struct sockaddr*);
103 krb5_error_code do_version4 (unsigned char*, size_t, krb5_data*, const char*,
104 struct sockaddr_in*);
105 krb5_error_code encode_v4_ticket (void*, size_t, const EncTicketPart*,
106 const PrincipalName*, size_t*);
107 krb5_error_code encrypt_v4_ticket (void*, size_t, des_cblock*, EncryptedData*);
108 krb5_error_code get_des_key(hdb_entry*, krb5_boolean, krb5_boolean, Key**);
109 int maybe_version4 (unsigned char*, int);
110 #endif
112 #ifdef KRB4
113 krb5_error_code do_kaserver (unsigned char*, size_t, krb5_data*, const char*,
114 struct sockaddr_in*);
115 #endif
117 #ifdef HAVE_OPENSSL
118 #define des_new_random_key des_random_key
119 #endif
121 #endif /* __KDC_LOCL_H__ */