1 /* $NetBSD: hprop.c,v 1.1.1.2 2014/04/24 12:45:27 pettai Exp $ */
4 * Copyright (c) 1997 - 2005 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
36 #define KRB5_DEPRECATED /* uses v4 functions that will die */
40 static int version_flag
;
42 static const char *ktname
= HPROP_KEYTAB
;
43 static const char *database
;
44 static char *mkeyfile
;
46 static int verbose_flag
;
47 static int encrypt_flag
;
48 static int decrypt_flag
;
49 static hdb_master_key mkey5
;
51 static char *source_type
;
53 static char *local_realm
=NULL
;
56 open_socket(krb5_context context
, const char *hostname
, const char *port
)
58 struct addrinfo
*ai
, *a
;
59 struct addrinfo hints
;
62 memset (&hints
, 0, sizeof(hints
));
63 hints
.ai_socktype
= SOCK_STREAM
;
64 hints
.ai_protocol
= IPPROTO_TCP
;
66 error
= getaddrinfo (hostname
, port
, &hints
, &ai
);
68 warnx ("%s: %s", hostname
, gai_strerror(error
));
72 for (a
= ai
; a
!= NULL
; a
= a
->ai_next
) {
75 s
= socket (a
->ai_family
, a
->ai_socktype
, a
->ai_protocol
);
78 if (connect (s
, a
->ai_addr
, a
->ai_addrlen
) < 0) {
79 warn ("connect(%s)", hostname
);
86 warnx ("failed to contact %s", hostname
);
92 v5_prop(krb5_context context
, HDB
*db
, hdb_entry_ex
*entry
, void *appdata
)
95 struct prop_data
*pd
= appdata
;
99 ret
= hdb_seal_keys_mkey(context
, &entry
->entry
, mkey5
);
101 krb5_warn(context
, ret
, "hdb_seal_keys_mkey");
106 ret
= hdb_unseal_keys_mkey(context
, &entry
->entry
, mkey5
);
108 krb5_warn(context
, ret
, "hdb_unseal_keys_mkey");
113 ret
= hdb_entry2value(context
, &entry
->entry
, &data
);
115 krb5_warn(context
, ret
, "hdb_entry2value");
120 ret
= krb5_write_message(context
, &pd
->sock
, &data
);
122 ret
= krb5_write_priv_message(context
, pd
->auth_context
,
124 krb5_data_free(&data
);
128 struct getargs args
[] = {
129 { "master-key", 'm', arg_string
, &mkeyfile
, "v5 master key file", "file" },
130 { "database", 'd', arg_string
, rk_UNCONST(&database
), "database", "file" },
131 { "source", 0, arg_string
, &source_type
, "type of database to read",
136 { "keytab", 'k', arg_string
, rk_UNCONST(&ktname
),
137 "keytab to use for authentication", "keytab" },
138 { "v5-realm", 'R', arg_string
, &local_realm
, "v5 realm to use", NULL
},
139 { "decrypt", 'D', arg_flag
, &decrypt_flag
, "decrypt keys", NULL
},
140 { "encrypt", 'E', arg_flag
, &encrypt_flag
, "encrypt keys", NULL
},
141 { "stdout", 'n', arg_flag
, &to_stdout
, "dump to stdout", NULL
},
142 { "verbose", 'v', arg_flag
, &verbose_flag
, NULL
, NULL
},
143 { "version", 0, arg_flag
, &version_flag
, NULL
, NULL
},
144 { "help", 'h', arg_flag
, &help_flag
, NULL
, NULL
}
147 static int num_args
= sizeof(args
) / sizeof(args
[0]);
152 arg_printusage (args
, num_args
, NULL
, "[host[:port]] ...");
157 get_creds(krb5_context context
, krb5_ccache
*cache
)
160 krb5_principal client
;
162 krb5_get_init_creds_opt
*init_opts
;
163 krb5_preauthtype preauth
= KRB5_PADATA_ENC_TIMESTAMP
;
166 ret
= krb5_kt_register(context
, &hdb_kt_ops
);
167 if(ret
) krb5_err(context
, 1, ret
, "krb5_kt_register");
169 ret
= krb5_kt_resolve(context
, ktname
, &keytab
);
170 if(ret
) krb5_err(context
, 1, ret
, "krb5_kt_resolve");
172 ret
= krb5_make_principal(context
, &client
, NULL
,
173 "kadmin", HPROP_NAME
, NULL
);
174 if(ret
) krb5_err(context
, 1, ret
, "krb5_make_principal");
176 ret
= krb5_get_init_creds_opt_alloc(context
, &init_opts
);
177 if(ret
) krb5_err(context
, 1, ret
, "krb5_get_init_creds_opt_alloc");
178 krb5_get_init_creds_opt_set_preauth_list(init_opts
, &preauth
, 1);
180 ret
= krb5_get_init_creds_keytab(context
, &creds
, client
, keytab
, 0, NULL
, init_opts
);
181 if(ret
) krb5_err(context
, 1, ret
, "krb5_get_init_creds");
183 krb5_get_init_creds_opt_free(context
, init_opts
);
185 ret
= krb5_kt_close(context
, keytab
);
186 if(ret
) krb5_err(context
, 1, ret
, "krb5_kt_close");
188 ret
= krb5_cc_new_unique(context
, krb5_cc_type_memory
, NULL
, cache
);
189 if(ret
) krb5_err(context
, 1, ret
, "krb5_cc_new_unique");
191 ret
= krb5_cc_initialize(context
, *cache
, client
);
192 if(ret
) krb5_err(context
, 1, ret
, "krb5_cc_initialize");
194 krb5_free_principal(context
, client
);
196 ret
= krb5_cc_store_cred(context
, *cache
, &creds
);
197 if(ret
) krb5_err(context
, 1, ret
, "krb5_cc_store_cred");
199 krb5_free_cred_contents(context
, &creds
);
211 { HPROP_HEIMDAL
, "heimdal" },
212 { HPROP_MIT_DUMP
, "mit-dump" }
216 parse_source_type(const char *s
)
219 for(i
= 0; i
< sizeof(types
) / sizeof(types
[0]); i
++) {
220 if(strstr(types
[i
].name
, s
) == types
[i
].name
)
221 return types
[i
].type
;
227 iterate (krb5_context context
,
228 const char *database_name
,
231 struct prop_data
*pd
)
237 ret
= mit_prop_dump(pd
, database_name
);
239 krb5_warn(context
, ret
, "mit_prop_dump");
242 ret
= hdb_foreach(context
, db
, HDB_F_DECRYPT
, v5_prop
, pd
);
244 krb5_warn(context
, ret
, "hdb_foreach");
247 krb5_errx(context
, 1, "unknown prop type: %d", type
);
253 dump_database (krb5_context context
, int type
,
254 const char *database_name
, HDB
*db
)
260 pd
.context
= context
;
261 pd
.auth_context
= NULL
;
262 pd
.sock
= STDOUT_FILENO
;
264 ret
= iterate (context
, database_name
, db
, type
, &pd
);
266 krb5_errx(context
, 1, "iterate failure");
267 krb5_data_zero (&data
);
268 ret
= krb5_write_message (context
, &pd
.sock
, &data
);
270 krb5_err(context
, 1, ret
, "krb5_write_message");
276 propagate_database (krb5_context context
, int type
,
277 const char *database_name
,
278 HDB
*db
, krb5_ccache ccache
,
279 int optidx
, int argc
, char **argv
)
281 krb5_principal server
;
285 for(i
= optidx
; i
< argc
; i
++){
286 krb5_auth_context auth_context
;
291 char *port
, portstr
[NI_MAXSERV
];
292 char *host
= argv
[i
];
294 port
= strchr(host
, ':');
296 snprintf(portstr
, sizeof(portstr
), "%u",
297 ntohs(krb5_getportbyname (context
, "hprop", "tcp",
303 fd
= open_socket(context
, host
, port
);
306 krb5_warn (context
, errno
, "connect %s", host
);
310 ret
= krb5_sname_to_principal(context
, argv
[i
],
311 HPROP_NAME
, KRB5_NT_SRV_HST
, &server
);
314 krb5_warn(context
, ret
, "krb5_sname_to_principal(%s)", host
);
321 krb5_get_default_realm(context
,&my_realm
);
322 krb5_principal_set_realm(context
,server
,my_realm
);
323 krb5_xfree(my_realm
);
327 ret
= krb5_sendauth(context
,
333 AP_OPTS_MUTUAL_REQUIRED
| AP_OPTS_USE_SUBKEY
,
341 krb5_free_principal(context
, server
);
345 krb5_warn(context
, ret
, "krb5_sendauth (%s)", host
);
350 pd
.context
= context
;
351 pd
.auth_context
= auth_context
;
354 ret
= iterate (context
, database_name
, db
, type
, &pd
);
356 krb5_warnx(context
, "iterate to host %s failed", host
);
361 krb5_data_zero (&data
);
362 ret
= krb5_write_priv_message(context
, auth_context
, &fd
, &data
);
364 krb5_warn(context
, ret
, "krb5_write_priv_message");
369 ret
= krb5_read_priv_message(context
, auth_context
, &fd
, &data
);
371 krb5_warn(context
, ret
, "krb5_read_priv_message: %s", host
);
375 krb5_data_free (&data
);
378 krb5_auth_con_free(context
, auth_context
);
387 main(int argc
, char **argv
)
390 krb5_context context
;
391 krb5_ccache ccache
= NULL
;
397 setprogname(argv
[0]);
399 if(getarg(args
, num_args
, argc
, argv
, &optidx
))
410 ret
= krb5_init_context(&context
);
414 /* We may be reading an old database encrypted with a DES master key. */
415 ret
= krb5_allow_weak_crypto(context
, 1);
417 krb5_err(context
, 1, ret
, "krb5_allow_weak_crypto");
420 krb5_set_default_realm(context
, local_realm
);
422 if(encrypt_flag
&& decrypt_flag
)
423 krb5_errx(context
, 1,
424 "only one of `--encrypt' and `--decrypt' is meaningful");
426 if(source_type
!= NULL
) {
427 type
= parse_source_type(source_type
);
429 krb5_errx(context
, 1, "unknown source type `%s'", source_type
);
431 type
= HPROP_HEIMDAL
;
434 get_creds(context
, &ccache
);
436 if(decrypt_flag
|| encrypt_flag
) {
437 ret
= hdb_read_master_key(context
, mkeyfile
, &mkey5
);
438 if(ret
&& ret
!= ENOENT
)
439 krb5_err(context
, 1, ret
, "hdb_read_master_key");
441 krb5_errx(context
, 1, "No master key file found");
446 if (database
== NULL
)
447 krb5_errx(context
, 1, "no dump file specified");
450 ret
= hdb_create (context
, &db
, database
);
452 krb5_err(context
, 1, ret
, "hdb_create: %s", database
);
453 ret
= db
->hdb_open(context
, db
, O_RDONLY
, 0);
455 krb5_err(context
, 1, ret
, "db->hdb_open");
458 krb5_errx(context
, 1, "unknown dump type `%d'", type
);
463 exit_code
= dump_database (context
, type
, database
, db
);
465 exit_code
= propagate_database (context
, type
, database
,
466 db
, ccache
, optidx
, argc
, argv
);
469 krb5_cc_destroy(context
, ccache
);
472 (*db
->hdb_destroy
)(context
, db
);
474 krb5_free_context(context
);