2 * Copyright (c) 1997 - 2000 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 kadm5_s_init_with_context(krb5_context context
,
40 const char *client_name
,
41 const char *service_name
,
42 kadm5_config_params
*realm_params
,
43 unsigned long struct_version
,
44 unsigned long api_version
,
48 kadm5_server_context
*ctx
= NULL
;
52 *server_handle
= NULL
;
53 ret
= _kadm5_s_init_context(&ctx
, realm_params
, context
);
59 if (realm_params
->mask
& KADM5_CONFIG_DBNAME
)
60 dbname
= realm_params
->dbname
;
62 dbname
= ctx
->config
.dbname
;
64 if (realm_params
->mask
& KADM5_CONFIG_STASH_FILE
)
65 stash_file
= realm_params
->stash_file
;
67 stash_file
= ctx
->config
.stash_file
;
69 assert(dbname
!= NULL
);
70 assert(stash_file
!= NULL
);
71 assert(ctx
->config
.acl_file
!= NULL
);
72 assert(ctx
->log_context
.log_file
!= NULL
);
73 #ifndef NO_UNIX_SOCKETS
74 assert(ctx
->log_context
.socket_name
.sun_path
[0] != '\0');
76 assert(ctx
->log_context
.socket_info
!= NULL
);
79 ret
= hdb_create(ctx
->context
, &ctx
->db
, dbname
);
81 ret
= hdb_set_master_keyfile(ctx
->context
,
88 ctx
->log_context
.log_fd
= -1;
90 #ifndef NO_UNIX_SOCKETS
91 ctx
->log_context
.socket_fd
= socket(AF_UNIX
, SOCK_DGRAM
, 0);
93 ctx
->log_context
.socket_fd
= socket(ctx
->log_context
.socket_info
->ai_family
,
94 ctx
->log_context
.socket_info
->ai_socktype
,
95 ctx
->log_context
.socket_info
->ai_protocol
);
98 if (ctx
->log_context
.socket_fd
!= rk_INVALID_SOCKET
)
99 socket_set_nonblocking(ctx
->log_context
.socket_fd
, 1);
101 ret
= krb5_parse_name(ctx
->context
, client_name
, &ctx
->caller
);
103 ret
= _kadm5_acl_init(ctx
);
105 kadm5_s_destroy(ctx
);
107 *server_handle
= ctx
;
112 kadm5_s_dup_context(void *vin
, void **out
)
114 kadm5_server_context
*in
= vin
;
118 ret
= krb5_unparse_name(in
->context
, in
->caller
, &p
);
120 ret
= kadm5_s_init_with_context(in
->context
, p
, NULL
,
121 &in
->config
, 0, 0, out
);
127 kadm5_s_init_with_password_ctx(krb5_context context
,
128 const char *client_name
,
129 const char *password
,
130 const char *service_name
,
131 kadm5_config_params
*realm_params
,
132 unsigned long struct_version
,
133 unsigned long api_version
,
134 void **server_handle
)
136 return kadm5_s_init_with_context(context
,
146 kadm5_s_init_with_password(const char *client_name
,
147 const char *password
,
148 const char *service_name
,
149 kadm5_config_params
*realm_params
,
150 unsigned long struct_version
,
151 unsigned long api_version
,
152 void **server_handle
)
154 krb5_context context
;
156 kadm5_server_context
*ctx
;
158 ret
= krb5_init_context(&context
);
161 ret
= kadm5_s_init_with_password_ctx(context
,
170 krb5_free_context(context
);
173 ctx
= *server_handle
;
179 kadm5_s_init_with_skey_ctx(krb5_context context
,
180 const char *client_name
,
182 const char *service_name
,
183 kadm5_config_params
*realm_params
,
184 unsigned long struct_version
,
185 unsigned long api_version
,
186 void **server_handle
)
188 return kadm5_s_init_with_context(context
,
198 kadm5_s_init_with_skey(const char *client_name
,
200 const char *service_name
,
201 kadm5_config_params
*realm_params
,
202 unsigned long struct_version
,
203 unsigned long api_version
,
204 void **server_handle
)
206 krb5_context context
;
208 kadm5_server_context
*ctx
;
210 ret
= krb5_init_context(&context
);
213 ret
= kadm5_s_init_with_skey_ctx(context
,
222 krb5_free_context(context
);
225 ctx
= *server_handle
;
231 kadm5_s_init_with_creds_ctx(krb5_context context
,
232 const char *client_name
,
234 const char *service_name
,
235 kadm5_config_params
*realm_params
,
236 unsigned long struct_version
,
237 unsigned long api_version
,
238 void **server_handle
)
240 return kadm5_s_init_with_context(context
,
250 kadm5_s_init_with_creds(const char *client_name
,
252 const char *service_name
,
253 kadm5_config_params
*realm_params
,
254 unsigned long struct_version
,
255 unsigned long api_version
,
256 void **server_handle
)
258 krb5_context context
;
260 kadm5_server_context
*ctx
;
262 ret
= krb5_init_context(&context
);
265 ret
= kadm5_s_init_with_creds_ctx(context
,
274 krb5_free_context(context
);
277 ctx
= *server_handle
;