Sync usage with man page.
[netbsd-mini2440.git] / crypto / dist / heimdal / kadmin / kadmind.c
blob821f3c33837fdaf0bfbe4d40db083f108010740b
1 /*
2 * Copyright (c) 1997-2004 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 #include "kadmin_locl.h"
36 __RCSID("$Heimdal: kadmind.c 22250 2007-12-09 05:57:31Z lha $"
37 "$NetBSD$");
39 static char *check_library = NULL;
40 static char *check_function = NULL;
41 static getarg_strings policy_libraries = { 0, NULL };
42 static char *config_file;
43 static char *keytab_str = "HDB:";
44 static int help_flag;
45 static int version_flag;
46 static int debug_flag;
47 static char *port_str;
48 char *realm;
50 static struct getargs args[] = {
52 "config-file", 'c', arg_string, &config_file,
53 "location of config file", "file"
56 "keytab", 0, arg_string, &keytab_str,
57 "what keytab to use", "keytab"
59 { "realm", 'r', arg_string, &realm,
60 "realm to use", "realm"
62 #ifdef HAVE_DLOPEN
63 { "check-library", 0, arg_string, &check_library,
64 "library to load password check function from", "library" },
65 { "check-function", 0, arg_string, &check_function,
66 "password check function to load", "function" },
67 { "policy-libraries", 0, arg_strings, &policy_libraries,
68 "password check function to load", "function" },
69 #endif
70 { "debug", 'd', arg_flag, &debug_flag,
71 "enable debugging"
73 { "ports", 'p', arg_string, &port_str,
74 "ports to listen to", "port" },
75 { "help", 'h', arg_flag, &help_flag },
76 { "version", 'v', arg_flag, &version_flag }
79 static int num_args = sizeof(args) / sizeof(args[0]);
81 krb5_context context;
83 static void
84 usage(int ret)
86 arg_printusage (args, num_args, NULL, "");
87 exit (ret);
90 int
91 main(int argc, char **argv)
93 krb5_error_code ret;
94 char **files;
95 int optidx = 0;
96 int e, i;
97 krb5_log_facility *logfacility;
98 krb5_keytab keytab;
100 setprogname(argv[0]);
102 ret = krb5_init_context(&context);
103 if (ret)
104 errx (1, "krb5_init_context failed: %d", ret);
106 while((e = getarg(args, num_args, argc, argv, &optidx)))
107 warnx("error at argument `%s'", argv[optidx]);
109 if (help_flag)
110 usage (0);
112 if (version_flag) {
113 print_version(NULL);
114 exit(0);
117 argc -= optidx;
118 argv += optidx;
120 if (config_file == NULL) {
121 asprintf(&config_file, "%s/kdc.conf", hdb_db_dir(context));
122 if (config_file == NULL)
123 errx(1, "out of memory");
126 ret = krb5_prepend_config_files_default(config_file, &files);
127 if (ret)
128 krb5_err(context, 1, ret, "getting configuration files");
130 ret = krb5_set_config_files(context, files);
131 krb5_free_config_files(files);
132 if(ret)
133 krb5_err(context, 1, ret, "reading configuration files");
135 ret = krb5_openlog(context, "kadmind", &logfacility);
136 if (ret)
137 krb5_err(context, 1, ret, "krb5_openlog");
138 ret = krb5_set_warn_dest(context, logfacility);
139 if (ret)
140 krb5_err(context, 1, ret, "krb5_set_warn_dest");
142 ret = krb5_kt_register(context, &hdb_kt_ops);
143 if(ret)
144 krb5_err(context, 1, ret, "krb5_kt_register");
146 ret = krb5_kt_resolve(context, keytab_str, &keytab);
147 if(ret)
148 krb5_err(context, 1, ret, "krb5_kt_resolve");
150 kadm5_setup_passwd_quality_check (context, check_library, check_function);
152 for (i = 0; i < policy_libraries.num_strings; i++) {
153 ret = kadm5_add_passwd_quality_verifier(context,
154 policy_libraries.strings[i]);
155 if (ret)
156 krb5_err(context, 1, ret, "kadm5_add_passwd_quality_verifier");
158 ret = kadm5_add_passwd_quality_verifier(context, NULL);
159 if (ret)
160 krb5_err(context, 1, ret, "kadm5_add_passwd_quality_verifier");
163 int fd = 0;
164 struct sockaddr_storage __ss;
165 struct sockaddr *sa = (struct sockaddr *)&__ss;
166 socklen_t sa_size = sizeof(__ss);
167 krb5_auth_context ac = NULL;
168 int debug_port;
170 if(debug_flag) {
171 if(port_str == NULL)
172 debug_port = krb5_getportbyname (context, "kerberos-adm",
173 "tcp", 749);
174 else
175 debug_port = htons(atoi(port_str));
176 mini_inetd(debug_port);
177 } else if(roken_getsockname(STDIN_FILENO, sa, &sa_size) < 0 &&
178 errno == ENOTSOCK) {
179 parse_ports(context, port_str ? port_str : "+");
180 pidfile(NULL);
181 start_server(context);
183 if(realm)
184 krb5_set_default_realm(context, realm); /* XXX */
185 kadmind_loop(context, ac, keytab, fd);
187 return 0;