summaryrefslogtreecommitdiffstats
path: root/src/lib/kdb/store_mkey.c
blob: 3b58145682915cc0173650d178cc5690c9214beb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
 * $Source$
 * $Author$
 *
 * Copyright 1990 by the Massachusetts Institute of Technology.
 * All Rights Reserved.
 *
 * For copying and distribution information, please see the file
 * <krb5/copyright.h>.
 *
 * krb5_db_store_mkey():
 * Store a database master key in a file.
 */

#if !defined(lint) && !defined(SABER)
static char rcsid_store_mkey_c[] =
"$Id$";
#endif	/* !lint & !SABER */

#include <krb5/krb5.h>
#include <krb5/kdb.h>
#include <krb5/libos-proto.h>
#include <krb5/ext-proto.h>
#include "kdbint.h"
#include <krb5/sysincl.h>		/* for MAXPATHLEN */

/*
 * Put the KDC database master key into a file.  If keyfile is NULL,
 * then a default name derived from the principal name mname is used.
 */

#ifndef min
#define min(a,b) (((a) < (b)) ? (a) : (b))
#endif

krb5_error_code
krb5_db_store_mkey(keyfile, mname, key)
char *keyfile;
krb5_principal mname;
krb5_keyblock *key;
{
    FILE *kf;
    krb5_error_code retval = 0;
    char defkeyfile[MAXPATHLEN+1];
    krb5_data *realm = krb5_princ_realm(mname);
#if defined(unix) || defined(__unix__)
    int oumask;
#endif

    if (!keyfile) {
	(void) strcpy(defkeyfile, DEFAULT_KEYFILE_STUB);
	(void) strncat(defkeyfile, realm->data,
		       min(sizeof(defkeyfile)-sizeof(DEFAULT_KEYFILE_STUB)-1,
			   realm->length));
	(void) strcat(defkeyfile, "");
	keyfile = defkeyfile;
    }

#if defined(unix) || defined(__unix__)
    oumask = umask(077);
#endif
    if (!(kf = fopen(keyfile, "w"))) {
#if defined(unix) || defined(__unix__)
	(void) umask(oumask);
#endif
	return errno;
    }
    if ((fwrite((krb5_pointer) &key->keytype,
		sizeof(key->keytype), 1, kf) != 1) ||
	(fwrite((krb5_pointer) &key->length,
		sizeof(key->length), 1, kf) != 1) ||
	(fwrite((krb5_pointer) key->contents,
		sizeof(key->contents[0]), key->length, kf) != key->length)) {
	retval = errno;
	(void) fclose(kf);
    }
    if (fclose(kf) == EOF)
	retval = errno;
#if defined(unix) || defined(__unix__)
    (void) umask(oumask);
#endif
    return retval;
}