1 /* $NetBSD: hpropd.c,v 1.1.1.2 2014/04/24 12:45:27 pettai Exp $ */
4 * Copyright (c) 1997-2006 Kungliga Tekniska Högskolan
5 * (Royal Institute of Technology, Stockholm, Sweden).
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the Institute nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 static int inetd_flag
= -1;
40 static int version_flag
;
41 static int print_dump
;
42 static const char *database
;
43 static int from_stdin
;
44 static char *local_realm
;
45 static char *ktname
= NULL
;
47 struct getargs args
[] = {
48 { "database", 'd', arg_string
, rk_UNCONST(&database
), "database", "file" },
49 { "stdin", 'n', arg_flag
, &from_stdin
, "read from stdin", NULL
},
50 { "print", 0, arg_flag
, &print_dump
, "print dump to stdout", NULL
},
52 { "inetd", 'i', arg_negative_flag
, &inetd_flag
,
53 "Not started from inetd", NULL
},
55 { "keytab", 'k', arg_string
, &ktname
, "keytab to use for authentication", "keytab" },
56 { "realm", 'r', arg_string
, &local_realm
, "realm to use", NULL
},
57 { "version", 0, arg_flag
, &version_flag
, NULL
, NULL
},
58 { "help", 'h', arg_flag
, &help_flag
, NULL
, NULL
}
61 static int num_args
= sizeof(args
) / sizeof(args
[0]);
62 static char unparseable_name
[] = "unparseable name";
67 arg_printusage (args
, num_args
, NULL
, "");
72 main(int argc
, char **argv
)
76 krb5_auth_context ac
= NULL
;
77 krb5_principal c1
, c2
;
78 krb5_authenticator authent
;
80 krb5_socket_t sock
= rk_INVALID_SOCKET
;
84 krb5_log_facility
*fac
;
89 ret
= krb5_init_context(&context
);
93 ret
= krb5_openlog(context
, "hpropd", &fac
);
95 errx(1, "krb5_openlog");
96 krb5_set_warn_dest(context
, fac
);
98 if(getarg(args
, num_args
, argc
, argv
, &optidx
))
101 if(local_realm
!= NULL
)
102 krb5_set_default_realm(context
, local_realm
);
117 if (database
== NULL
)
118 database
= hdb_default_db(context
);
123 struct sockaddr_storage ss
;
124 struct sockaddr
*sa
= (struct sockaddr
*)&ss
;
125 socklen_t sin_len
= sizeof(ss
);
132 if (inetd_flag
== -1) {
133 if (getpeername (sock
, sa
, &sin_len
) < 0) {
143 mini_inetd (krb5_getportbyname (context
, "hprop", "tcp",
146 sin_len
= sizeof(ss
);
147 if(getpeername(sock
, sa
, &sin_len
) < 0)
148 krb5_err(context
, 1, errno
, "getpeername");
150 if (inet_ntop(sa
->sa_family
,
151 socket_get_address (sa
),
153 sizeof(addr_name
)) == NULL
)
154 strlcpy (addr_name
, "unknown address",
157 krb5_log(context
, fac
, 0, "Connection from %s", addr_name
);
159 ret
= krb5_kt_register(context
, &hdb_kt_ops
);
161 krb5_err(context
, 1, ret
, "krb5_kt_register");
163 if (ktname
!= NULL
) {
164 ret
= krb5_kt_resolve(context
, ktname
, &keytab
);
166 krb5_err (context
, 1, ret
, "krb5_kt_resolve %s", ktname
);
168 ret
= krb5_kt_default (context
, &keytab
);
170 krb5_err (context
, 1, ret
, "krb5_kt_default");
173 ret
= krb5_recvauth(context
, &ac
, &sock
, HPROP_VERSION
, NULL
,
176 krb5_err(context
, 1, ret
, "krb5_recvauth");
178 ret
= krb5_unparse_name(context
, ticket
->server
, &server
);
180 krb5_err(context
, 1, ret
, "krb5_unparse_name");
181 if (strncmp(server
, "hprop/", 5) != 0)
182 krb5_errx(context
, 1, "ticket not for hprop (%s)", server
);
185 krb5_free_ticket (context
, ticket
);
187 ret
= krb5_auth_con_getauthenticator(context
, ac
, &authent
);
189 krb5_err(context
, 1, ret
, "krb5_auth_con_getauthenticator");
191 ret
= krb5_make_principal(context
, &c1
, NULL
, "kadmin", "hprop", NULL
);
193 krb5_err(context
, 1, ret
, "krb5_make_principal");
194 _krb5_principalname2krb5_principal(context
, &c2
,
195 authent
->cname
, authent
->crealm
);
196 if(!krb5_principal_compare(context
, c1
, c2
)) {
198 ret
= krb5_unparse_name(context
, c2
, &s
);
200 s
= unparseable_name
;
201 krb5_errx(context
, 1, "Unauthorized connection from %s", s
);
203 krb5_free_principal(context
, c1
);
204 krb5_free_principal(context
, c2
);
206 ret
= krb5_kt_close(context
, keytab
);
208 krb5_err(context
, 1, ret
, "krb5_kt_close");
212 asprintf(&tmp_db
, "%s~", database
);
214 ret
= hdb_create(context
, &db
, tmp_db
);
216 krb5_err(context
, 1, ret
, "hdb_create(%s)", tmp_db
);
217 ret
= db
->hdb_open(context
, db
, O_RDWR
| O_CREAT
| O_TRUNC
, 0600);
219 krb5_err(context
, 1, ret
, "hdb_open(%s)", tmp_db
);
228 ret
= krb5_read_message(context
, &sock
, &data
);
229 if(ret
!= 0 && ret
!= HEIM_ERR_EOF
)
230 krb5_err(context
, 1, ret
, "krb5_read_message");
232 ret
= krb5_read_priv_message(context
, ac
, &sock
, &data
);
234 krb5_err(context
, 1, ret
, "krb5_read_priv_message");
237 if(ret
== HEIM_ERR_EOF
|| data
.length
== 0) {
241 krb5_write_priv_message(context
, ac
, &sock
, &data
);
244 ret
= db
->hdb_close(context
, db
);
246 krb5_err(context
, 1, ret
, "db_close");
247 ret
= db
->hdb_rename(context
, db
, database
);
249 krb5_err(context
, 1, ret
, "db_rename");
253 memset(&entry
, 0, sizeof(entry
));
254 ret
= hdb_value2entry(context
, &data
, &entry
.entry
);
255 krb5_data_free(&data
);
257 krb5_err(context
, 1, ret
, "hdb_value2entry");
259 hdb_print_entry(context
, db
, &entry
, stdout
);
261 ret
= db
->hdb_store(context
, db
, 0, &entry
);
262 if(ret
== HDB_ERR_EXISTS
) {
264 ret
= krb5_unparse_name(context
, entry
.entry
.principal
, &s
);
266 s
= strdup(unparseable_name
);
267 krb5_warnx(context
, "Entry exists: %s", s
);
270 krb5_err(context
, 1, ret
, "db_store");
274 hdb_free_entry(context
, &entry
);
277 krb5_log(context
, fac
, 0, "Received %d principals", nprincs
);
280 rk_closesocket(sock
);