1 /* 2 * Copyright (c) 1997-1999 Kungliga Tekniska H�gskolan 3 * (Royal Institute of Technology, Stockholm, Sweden). 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 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. 16 * 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. 20 * 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. 32 */ 33 34 /* 35 * $Id: kdc_locl.h,v 1.39 1999/12/02 17:04:59 joda Exp $ 36 */ 37 38 #ifndef __KDC_LOCL_H__ 39 #define __KDC_LOCL_H__ 40 41 #include "headers.h" 42 43 extern krb5_context context; 44 45 extern int require_preauth; 46 extern sig_atomic_t exit_flag; 47 extern char *keyfile; 48 extern size_t max_request; 49 extern time_t kdc_warn_pwexpire; 50 extern struct dbinfo { 51 char *realm; 52 char *dbname; 53 char *mkey_file; 54 struct dbinfo *next; 55 } *databases; 56 extern HDB **db; 57 extern int num_db; 58 extern char *port_str; 59 extern int enable_http; 60 extern krb5_boolean encode_as_rep_as_tgs_rep; 61 extern krb5_boolean check_ticket_addresses; 62 extern krb5_boolean allow_null_ticket_addresses; 63 64 #ifdef KRB4 65 extern char *v4_realm; 66 #endif 67 #ifdef KASERVER 68 extern krb5_boolean enable_kaserver; 69 #endif 70 71 extern struct timeval now; 72 #define kdc_time (now.tv_sec) 73 74 krb5_error_code as_rep (KDC_REQ*, krb5_data*, const char*, struct sockaddr*); 75 void configure (int, char**); 76 hdb_entry* db_fetch (krb5_principal); 77 void kdc_log (int, const char*, ...); 78 char* kdc_log_msg (int, const char*, ...); 79 char* kdc_log_msg_va (int, const char*, va_list); 80 void kdc_openlog (krb5_config_section*); 81 void loop (void); 82 void set_master_key (EncryptionKey); 83 krb5_error_code tgs_rep (KDC_REQ*, krb5_data*, const char*, struct sockaddr *); 84 Key* unseal_key (Key*); 85 86 #ifdef KRB4 87 hdb_entry* db_fetch4 (const char*, const char*, const char*); 88 krb5_error_code do_524 (Ticket*, krb5_data*, const char*, struct sockaddr*); 89 krb5_error_code do_version4 (unsigned char*, size_t, krb5_data*, const char*, 90 struct sockaddr_in*); 91 krb5_error_code encode_v4_ticket (void*, size_t, EncTicketPart*, 92 PrincipalName*, size_t*); 93 krb5_error_code encrypt_v4_ticket (void*, size_t, des_cblock*, EncryptedData*); 94 krb5_error_code get_des_key(hdb_entry*, Key**); 95 int maybe_version4 (unsigned char*, int); 96 #endif 97 98 #ifdef KASERVER 99 krb5_error_code do_kaserver (unsigned char*, size_t, krb5_data*, const char*, 100 struct sockaddr_in*); 101 #endif 102 103 #endif /* __KDC_LOCL_H__ */ 104