Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / crypto / kerberosIV / kadmin / kadm_locl.h
1 /*
2  * Copyright (c) 1995, 1996, 1997, 1998 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 /* $Id: kadm_locl.h,v 1.31 1999/12/02 16:58:36 joda Exp $ */
35 /* $FreeBSD: src/crypto/kerberosIV/kadmin/kadm_locl.h,v 1.2.2.1 2003/02/13 21:34:35 nectar Exp $ */
36 /* $DragonFly: src/crypto/kerberosIV/kadmin/Attic/kadm_locl.h,v 1.2 2003/06/17 04:24:36 dillon Exp $ */
37
38 #include "config.h"
39 #include "protos.h"
40
41 #include <stdio.h>
42 #include <stdlib.h>
43 #include <ctype.h>
44 #include <string.h>
45
46 #ifdef HAVE_SYS_TYPES_H
47 #include <sys/types.h>
48 #endif
49
50 #ifdef TIME_WITH_SYS_TIME
51 #include <sys/time.h>
52 #include <time.h>
53 #elif defined(HAVE_SYS_TIME_H)
54 #include <sys/time.h>
55 #else
56 #include <time.h>
57 #endif
58
59 #ifdef HAVE_SYS_STAT_H
60 #include <sys/stat.h>
61 #endif
62 #ifdef HAVE_SYS_SELECT_H
63 #include <sys/select.h>
64 #endif
65 #ifdef HAVE_FCNTL_H
66 #include <fcntl.h>
67 #endif
68
69 #include <errno.h>
70 #include <signal.h>
71 #ifdef HAVE_UNISTD_H
72 #include <unistd.h>
73 #endif
74
75 #ifdef HAVE_SYS_RESOURCE_H
76 #include <sys/resource.h>
77 #endif /* HAVE_SYS_RESOURCE_H */
78 #ifdef HAVE_SYS_WAIT_H
79 #include <sys/wait.h>
80 #endif
81 #ifdef HAVE_PWD_H
82 #include <pwd.h>
83 #endif
84
85 #ifdef HAVE_SYS_SOCKET_H
86 #include <sys/socket.h>
87 #endif
88 #ifdef HAVE_NETINET_IN_H
89 #include <netinet/in.h>
90 #endif
91 #ifdef HAVE_NETDB_H
92 #include <netdb.h>
93 #endif
94 #ifdef HAVE_ARPA_INET_H
95 #include <arpa/inet.h>
96 #endif
97
98 #ifdef HAVE_SYSLOG_H
99 #include <syslog.h>
100 #endif
101
102 #include <err.h>
103
104 #ifdef SOCKS
105 #include <socks.h>
106 /* This doesn't belong here. */
107 struct tm *localtime(const time_t *);
108 struct hostent  *gethostbyname(const char *);
109 #endif
110
111 #include <roken.h>
112
113 #include <com_err.h>
114 #include <sl.h>
115
116 #define OPENSSL_DES_LIBDES_COMPATIBILITY
117 #include <openssl/des.h>
118 #include <krb.h>
119 #include <krb_err.h>
120 #include <krb_db.h>
121 #include <kadm.h>
122 #include <kadm_err.h>
123 #include <acl.h>
124
125 #include <krb_log.h>
126
127 #include "kadm_server.h"
128 #include "pw_check.h"
129
130 /* from libacl */
131 /* int acl_check(char *acl, char *principal); */
132
133 /* GLOBALS */
134 extern char *acldir;
135 extern Kadm_Server server_parm;
136
137 /* Utils */
138 int kadm_change (char *, char *, char *, des_cblock);
139 int kadm_add_entry (char *, char *, char *, Kadm_vals *, Kadm_vals *);
140 int kadm_mod_entry (char *, char *, char *, Kadm_vals *, Kadm_vals *, Kadm_vals *);
141 int kadm_get_entry (char *, char *, char *, Kadm_vals *, u_char *, Kadm_vals *);
142 int kadm_delete_entry (char *, char *, char *, Kadm_vals *);
143 int kadm_ser_cpw (u_char *, int, AUTH_DAT *, u_char **, int *);
144 int kadm_ser_add (u_char *, int, AUTH_DAT *, u_char **, int *);
145 int kadm_ser_mod (u_char *, int, AUTH_DAT *, u_char **, int *);
146 int kadm_ser_get (u_char *, int, AUTH_DAT *, u_char **, int *);
147 int kadm_ser_delete (u_char *, int, AUTH_DAT *, u_char **, int *);
148 int kadm_ser_init (int inter, char realm[], struct in_addr);
149 int kadm_ser_in (u_char **, int *, u_char *);
150
151 int get_pw_new_pwd  (char *pword, int pwlen, krb_principal *pr, int print_realm);
152
153 /* cracklib */
154 char *FascistCheck (char *password, char *path, char **strings);
155
156 void
157 random_password(char *pw, size_t len, u_int32_t *low, u_int32_t *high);