2 * Copyright (c) 1997 - 2002 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
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
34 #include "kadm5_locl.h"
39 set_funcs(kadm5_server_context
*c
)
41 #define SET(C, F) (C)->funcs.F = kadm5_s_ ## F
42 SET(c
, chpass_principal
);
43 SET(c
, chpass_principal_with_key
);
44 SET(c
, create_principal
);
45 SET(c
, delete_principal
);
48 SET(c
, get_principal
);
49 SET(c
, get_principals
);
51 SET(c
, modify_principal
);
52 SET(c
, randkey_principal
);
53 SET(c
, rename_principal
);
57 set_socket_name(krb5_context context
, struct sockaddr_un
*un
)
59 const char *fn
= kadm5_log_signal_socket(context
);
61 memset(un
, 0, sizeof(*un
));
62 un
->sun_family
= AF_UNIX
;
63 strlcpy (un
->sun_path
, fn
, sizeof(un
->sun_path
));
67 find_db_spec(kadm5_server_context
*ctx
)
69 krb5_context context
= ctx
->context
;
70 struct hdb_dbinfo
*info
, *d
;
73 if (ctx
->config
.realm
) {
74 /* fetch the databases */
75 ret
= hdb_get_dbinfo(context
, &info
);
80 while ((d
= hdb_dbinfo_get_next(info
, d
)) != NULL
) {
81 const char *p
= hdb_dbinfo_get_realm(context
, d
);
83 /* match default (realm-less) */
84 if(p
!= NULL
&& strcmp(ctx
->config
.realm
, p
) != 0)
87 p
= hdb_dbinfo_get_dbname(context
, d
);
89 ctx
->config
.dbname
= strdup(p
);
91 p
= hdb_dbinfo_get_acl_file(context
, d
);
93 ctx
->config
.acl_file
= strdup(p
);
95 p
= hdb_dbinfo_get_mkey_file(context
, d
);
97 ctx
->config
.stash_file
= strdup(p
);
99 p
= hdb_dbinfo_get_log_file(context
, d
);
101 ctx
->log_context
.log_file
= strdup(p
);
104 hdb_free_dbinfo(context
, &info
);
107 /* If any of the values was unset, pick up the default value */
109 if (ctx
->config
.dbname
== NULL
)
110 ctx
->config
.dbname
= strdup(hdb_default_db(context
));
111 if (ctx
->config
.acl_file
== NULL
)
112 asprintf(&ctx
->config
.acl_file
, "%s/kadmind.acl", hdb_db_dir(context
));
113 if (ctx
->config
.stash_file
== NULL
)
114 asprintf(&ctx
->config
.stash_file
, "%s/m-key", hdb_db_dir(context
));
115 if (ctx
->log_context
.log_file
== NULL
)
116 asprintf(&ctx
->log_context
.log_file
, "%s/log", hdb_db_dir(context
));
118 set_socket_name(context
, &ctx
->log_context
.socket_name
);
124 _kadm5_s_init_context(kadm5_server_context
**ctx
,
125 kadm5_config_params
*params
,
126 krb5_context context
)
128 *ctx
= malloc(sizeof(**ctx
));
131 memset(*ctx
, 0, sizeof(**ctx
));
133 (*ctx
)->context
= context
;
134 krb5_add_et_list (context
, initialize_kadm5_error_table_r
);
135 #define is_set(M) (params && params->mask & KADM5_CONFIG_ ## M)
137 (*ctx
)->config
.realm
= strdup(params
->realm
);
139 krb5_get_default_realm(context
, &(*ctx
)->config
.realm
);
141 (*ctx
)->config
.dbname
= strdup(params
->dbname
);
143 (*ctx
)->config
.acl_file
= strdup(params
->acl_file
);
144 if(is_set(STASH_FILE
))
145 (*ctx
)->config
.stash_file
= strdup(params
->stash_file
);
149 /* PROFILE can't be specified for now */
150 /* KADMIND_PORT is supposed to be used on the server also,
151 but this doesn't make sense */
152 /* ADMIN_SERVER is client only */
153 /* ADNAME is not used at all (as far as I can tell) */
154 /* ADB_LOCKFILE ditto */
157 /* MKEY_FROM_KEYBOARD is not supported */
158 /* MKEY_NAME neither */
170 _kadm5_s_get_db(void *server_handle
)
172 kadm5_server_context
*context
= server_handle
;