Patrick Welche <prlw1@cam.ac.uk>
[netbsd-mini2440.git] / crypto / dist / heimdal / kdc / v4_dump.c
blobc1a5834fdc87a490b0878ea286e45b47fbfb3b32
1 /*
2 * Copyright (c) 2000 - 2001, 2003 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
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
31 * SUCH DAMAGE.
34 #include "hprop.h"
36 __RCSID("$Heimdal: v4_dump.c 17023 2006-04-09 17:41:47Z lha $"
37 "$NetBSD$");
39 static time_t
40 time_parse(const char *cp)
42 char wbuf[5];
43 struct tm tp;
44 int local;
46 memset(&tp, 0, sizeof(tp)); /* clear out the struct */
48 /* new format is YYYYMMDDHHMM UTC,
49 old format is YYMMDDHHMM local time */
50 if (strlen(cp) > 10) { /* new format */
51 strlcpy(wbuf, cp, sizeof(wbuf));
52 tp.tm_year = atoi(wbuf) - 1900;
53 cp += 4;
54 local = 0;
55 } else {
56 wbuf[0] = *cp++;
57 wbuf[1] = *cp++;
58 wbuf[2] = '\0';
59 tp.tm_year = atoi(wbuf);
60 if(tp.tm_year < 38)
61 tp.tm_year += 100;
62 local = 1;
65 wbuf[0] = *cp++;
66 wbuf[1] = *cp++;
67 wbuf[2] = 0;
68 tp.tm_mon = atoi(wbuf) - 1;
70 wbuf[0] = *cp++;
71 wbuf[1] = *cp++;
72 tp.tm_mday = atoi(wbuf);
74 wbuf[0] = *cp++;
75 wbuf[1] = *cp++;
76 tp.tm_hour = atoi(wbuf);
78 wbuf[0] = *cp++;
79 wbuf[1] = *cp++;
80 tp.tm_min = atoi(wbuf);
82 return(tm2time(tp, local));
85 /* convert a version 4 dump file */
86 int
87 v4_prop_dump(void *arg, const char *file)
89 char buf [1024];
90 FILE *f;
91 int lineno = 0;
93 f = fopen(file, "r");
94 if(f == NULL)
95 return errno;
97 while(fgets(buf, sizeof(buf), f)) {
98 int ret;
99 unsigned long key[2]; /* yes, long */
100 char exp_date[64], mod_date[64];
101 struct v4_principal pr;
102 int attributes;
104 memset(&pr, 0, sizeof(pr));
105 errno = 0;
106 lineno++;
107 ret = sscanf(buf, "%63s %63s %d %d %d %d %lx %lx %63s %63s %63s %63s",
108 pr.name, pr.instance,
109 &pr.max_life, &pr.mkvno, &pr.kvno,
110 &attributes,
111 &key[0], &key[1],
112 exp_date, mod_date,
113 pr.mod_name, pr.mod_instance);
114 if(ret != 12){
115 warnx("Line %d malformed (ignored)", lineno);
116 continue;
118 if(attributes != 0) {
119 warnx("Line %d (%s.%s) has non-zero attributes - skipping",
120 lineno, pr.name, pr.instance);
121 continue;
123 pr.key[0] = (key[0] >> 24) & 0xff;
124 pr.key[1] = (key[0] >> 16) & 0xff;
125 pr.key[2] = (key[0] >> 8) & 0xff;
126 pr.key[3] = (key[0] >> 0) & 0xff;
127 pr.key[4] = (key[1] >> 24) & 0xff;
128 pr.key[5] = (key[1] >> 16) & 0xff;
129 pr.key[6] = (key[1] >> 8) & 0xff;
130 pr.key[7] = (key[1] >> 0) & 0xff;
131 pr.exp_date = time_parse(exp_date);
132 pr.mod_date = time_parse(mod_date);
133 if (pr.instance[0] == '*')
134 pr.instance[0] = '\0';
135 if (pr.mod_name[0] == '*')
136 pr.mod_name[0] = '\0';
137 if (pr.mod_instance[0] == '*')
138 pr.mod_instance[0] = '\0';
139 v4_prop(arg, &pr);
140 memset(&pr, 0, sizeof(pr));
142 fclose(f);
143 return 0;