1 /* 2 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 3 * Use is subject to license terms. 4 */ 5 6 #ifndef __KRB5_KDC_EXTERN__ 7 #define __KRB5_KDC_EXTERN__ 8 9 #pragma ident "%Z%%M% %I% %E% SMI" 10 11 #include <netinet/in.h> 12 13 #ifdef __cplusplus 14 extern "C" { 15 #endif 16 17 /* 18 * Copyright 1990 by the Massachusetts Institute of Technology. 19 * 20 * Export of this software from the United States of America may 21 * require a specific license from the United States Government. 22 * It is the responsibility of any person or organization contemplating 23 * export to obtain such a license before exporting. 24 * 25 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and 26 * distribute this software and its documentation for any purpose and 27 * without fee is hereby granted, provided that the above copyright 28 * notice appear in all copies and that both that copyright notice and 29 * this permission notice appear in supporting documentation, and that 30 * the name of M.I.T. not be used in advertising or publicity pertaining 31 * to distribution of the software without specific, written prior 32 * permission. Furthermore if you modify this software you must label 33 * your software as modified software and not distribute it in such a 34 * fashion that it might be confused with the original M.I.T. software. 35 * M.I.T. makes no representations about the suitability of 36 * this software for any purpose. It is provided "as is" without express 37 * or implied warranty. 38 * 39 * 40 * <<< Description >>> 41 */ 42 43 typedef struct __kdc_realm_data { 44 /* 45 * General Kerberos per-realm data. 46 */ 47 char * realm_name; /* Realm name */ 48 /* XXX the real context should go away once the db_context is done. 49 * The db_context is then associated with the realm keytab using 50 * krb5_ktkdb_resolv(). There should be nothing in the context which 51 * cannot span multiple realms -- proven */ 52 krb5_context realm_context; /* Context to be used for realm */ 53 krb5_keytab realm_keytab; /* keytab to be used for this realm */ 54 char * realm_profile; /* Profile file for this realm */ 55 /* 56 * Database per-realm data. 57 */ 58 char * realm_dbname; /* Database name for realm */ 59 char * realm_stash; /* Stash file name for realm */ 60 char * realm_mpname; /* Master principal name for realm */ 61 krb5_principal realm_mprinc; /* Master principal for realm */ 62 krb5_keyblock realm_mkey; /* Master key for this realm */ 63 krb5_kvno realm_mkvno; /* Master key vno for this realm */ 64 /* 65 * TGS per-realm data. 66 */ 67 krb5_principal realm_tgsprinc; /* TGS principal for this realm */ 68 krb5_keyblock realm_tgskey; /* TGS' key for this realm */ 69 krb5_kvno realm_tgskvno; /* TGS' key vno for this realm */ 70 /* 71 * Other per-realm data. 72 */ 73 char *realm_ports; /* Per-realm KDC UDP port */ 74 char *realm_tcp_ports; /* Per-realm KDC TCP port */ 75 /* 76 * Per-realm parameters. 77 */ 78 krb5_deltat realm_maxlife; /* Maximum ticket life for realm */ 79 krb5_deltat realm_maxrlife; /* Maximum renewable life for realm */ 80 void *realm_kstypes; /* Key/Salts supported for realm */ 81 krb5_int32 realm_nkstypes; /* Number of key/salts */ 82 } kdc_realm_t; 83 84 extern kdc_realm_t **kdc_realmlist; 85 extern int kdc_numrealms; 86 extern kdc_realm_t *kdc_active_realm; 87 88 /* 89 * Replace previously used global variables with the active (e.g. request's) 90 * realm data. This allows us to support multiple realms with minimal logic 91 * changes. 92 */ 93 #define kdc_context kdc_active_realm->realm_context 94 #define max_life_for_realm kdc_active_realm->realm_maxlife 95 #define max_renewable_life_for_realm kdc_active_realm->realm_maxrlife 96 #define master_keyblock kdc_active_realm->realm_mkey 97 #define master_princ kdc_active_realm->realm_mprinc 98 #define tgs_key kdc_active_realm->realm_tgskey 99 #define tgs_kvno kdc_active_realm->realm_tgskvno 100 #define tgs_server_struct *(kdc_active_realm->realm_tgsprinc) 101 #define tgs_server kdc_active_realm->realm_tgsprinc 102 #define dbm_db_name kdc_active_realm->realm_dbname 103 #define primary_port kdc_active_realm->realm_pport 104 105 /* various externs for KDC */ 106 extern krb5_data empty_string; /* an empty string */ 107 extern krb5_timestamp kdc_infinity; /* greater than all other timestamps */ 108 extern krb5_rcache kdc_rcache; /* replay cache */ 109 extern krb5_keyblock psr_key; /* key for predicted sam response */ 110 111 extern volatile int signal_requests_exit; 112 extern volatile int signal_requests_hup; 113 114 /* libbsm */ 115 extern void audit_krb5kdc_as_req(struct in_addr *, in_port_t, in_port_t, 116 char *, char *, int); 117 extern void audit_krb5kdc_tgs_req(struct in_addr *, in_port_t, in_port_t, 118 char *, char *, int); 119 extern void audit_krb5kdc_tgs_req_2ndtktmm(struct in_addr *, in_port_t, 120 in_port_t, char *, char *); 121 extern void audit_krb5kdc_tgs_req_alt_tgt(struct in_addr *, in_port_t, 122 in_port_t, char *, char *, int); 123 124 #ifdef __cplusplus 125 } 126 #endif 127 128 #endif /* !__KRB5_KDC_EXTERN__ */ 129