summaryrefslogtreecommitdiff
path: root/src/openac/openac.c
blob: 00f287b3a05989df4ef1744c6bde501b8f184670 (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
/* Generation of X.509 attribute certificates
 * Copyright (C) 2002  Ueli Galizzi, Ariane Seiler
 * Copyright (C) 2004  Andreas Steffen
 * Zuercher Hochschule Winterthur, Switzerland
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation; either version 2 of the License, or (at your
 * option) any later version.  See <http://www.fsf.org/copyleft/gpl.txt>.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * for more details.
 *
 * RCSID $Id: openac.c,v 1.18 2006/01/04 21:12:33 as Exp $
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <getopt.h>
#include <ctype.h>
#include <time.h>
#include <gmp.h>

#include <freeswan.h>

#include "../pluto/constants.h"
#include "../pluto/defs.h"
#include "../pluto/mp_defs.h"
#include "../pluto/log.h"
#include "../pluto/asn1.h"
#include "../pluto/certs.h"
#include "../pluto/x509.h"
#include "../pluto/crl.h"
#include "../pluto/keys.h"
#include "../pluto/ac.h"

#include "build.h"

#define OPENAC_PATH   IPSEC_CONFDIR "/openac"
#define OPENAC_SERIAL IPSEC_CONFDIR "/openac/serial"

const char openac_version[] = "openac 0.3";

/* by default the CRL policy is lenient */
bool strict_crl_policy = FALSE;

/* by default pluto does not check crls dynamically */
long crl_check_interval = 0;

/* by default pluto logs out after every smartcard use */
bool pkcs11_keep_state = FALSE;

static void
usage(const char *mess)
{
    if (mess != NULL && *mess != '\0')
	fprintf(stderr, "%s\n", mess);
    fprintf(stderr
	, "Usage: openac"
	    " [--help]"
	    " [--version]"
	    " [--optionsfrom <filename>]"
	    " [--quiet]"
#ifdef DEBUG
	    " \\\n\t"
	    "      [--debug-all]"
	    " [--debug-parsing]"
	    " [--debug-raw]"
	    " [--debug-private]"
#endif
	    " \\\n\t"
	    "      [--days <days>]"
	    " [--hours <hours>]"
	    " \\\n\t"
	    "      [--startdate <YYYYMMDDHHMMSSZ>]"
	    " [--enddate <YYYYMMDDHHMMSSZ>]"
	    " \\\n\t"
	    "      --cert <certfile>"
	    " --key <keyfile>"
	    " [--password <password>]"
	    " \\\n\t"
	    "      --usercert <certfile>"
	    " --groups <attr1,attr2,..>"
	    " --out <filename>"
	    "\n"
    );
    exit(mess == NULL? 0 : 1);
}

/*
 * read the last serial number from file
 */
static chunk_t
read_serial(void)
{
    MP_INT number;

    char buf[BUF_LEN];
    char bytes[BUF_LEN];

    FILE *fd = fopen(OPENAC_SERIAL, "r");

    /* serial number defaults to 0 */
    size_t len = 1;
    bytes[0] = 0x00;

    if (fd)
    {
	if (fscanf(fd, "%s", buf))
	{
	    err_t ugh = ttodata(buf, 0, 16, bytes, BUF_LEN, &len);

	    if (ugh != NULL)
		plog("  error reading serial number from %s: %s"
		    , OPENAC_SERIAL, ugh);
	}
	fclose(fd);
    }
    else
	plog("  file '%s' does not exist yet - serial number set to 01"
	    , OPENAC_SERIAL);

    /* conversion of read serial number to a multiprecision integer
     * and incrementing it by one
     * and representing it as a two's complement octet string
     */
    n_to_mpz(&number, bytes, len);
    mpz_add_ui(&number, &number, 0x01);
    serial = mpz_to_n(&number, 1 + mpz_sizeinbase(&number, 2)/BITS_PER_BYTE);
    mpz_clear(&number);

    return serial;
}

/*
 * write back the last serial number to file
 */
static void
write_serial(chunk_t serial)
{
    char buf[BUF_LEN];

    FILE *fd = fopen(OPENAC_SERIAL, "w");

    if (fd)
    {
	datatot(serial.ptr, serial.len, 16, buf, BUF_LEN);
	plog("  serial number is %s", buf);
	fprintf(fd, "%s\n", buf);
	fclose(fd);
    }
    else
	plog("  could not open file '%s' for writing", OPENAC_SERIAL);
}

/*
 * global variables accessible by both main() and build.c
 */
x509cert_t *user   = NULL;
x509cert_t *signer = NULL;

ietfAttrList_t *groups = NULL;
struct RSA_private_key *signerkey = NULL;

time_t notBefore = 0;
time_t notAfter = 0;

chunk_t serial;


int
main(int argc, char **argv)
{
    char *keyfile = NULL;
    char *certfile = NULL;
    char *usercertfile = NULL;
    char *outfile = NULL;

    cert_t signercert = empty_cert;
    cert_t usercert = empty_cert;

    chunk_t attr_cert = empty_chunk;
    x509acert_t *ac = NULL;

    const time_t default_validity = 24*3600; 	/* 24 hours */
    time_t validity = 0;

    prompt_pass_t pass;

    pass.secret[0] = '\0';
    pass.prompt = TRUE;
    pass.fd = STDIN_FILENO;

    log_to_stderr = TRUE;

    /* handle arguments */
    for (;;)
    {
#	define DBG_OFFSET 256
	static const struct option long_opts[] = {
	    /* name, has_arg, flag, val */
	    { "help", no_argument, NULL, 'h' },
	    { "version", no_argument, NULL, 'v' },
	    { "optionsfrom", required_argument, NULL, '+' },
	    { "quiet", no_argument, NULL, 'q' },
	    { "cert", required_argument, NULL, 'c' },
	    { "key", required_argument, NULL, 'k' },
	    { "password", required_argument, NULL, 'p' },
	    { "usercert", required_argument, NULL, 'u' },
	    { "groups", required_argument, NULL, 'g' },
	    { "days", required_argument, NULL, 'D' },
	    { "hours", required_argument, NULL, 'H' },
	    { "startdate", required_argument, NULL, 'S' },
	    { "enddate", required_argument, NULL, 'E' },
	    { "out", required_argument, NULL, 'o' },
#ifdef DEBUG
	    { "debug-all", no_argument, NULL, 'A' },
	    { "debug-raw", no_argument, NULL, DBG_RAW + DBG_OFFSET },
	    { "debug-parsing", no_argument, NULL, DBG_PARSING + DBG_OFFSET },
	    { "debug-private", no_argument, NULL, DBG_PRIVATE + DBG_OFFSET },
#endif
	    { 0,0,0,0 }
	};
	
	int c = getopt_long(argc, argv, "hv+:qc:k:p;u:g:D:H:S:E:o:", long_opts, NULL);

	/* Note: "breaking" from case terminates loop */
	switch (c)
	{
	case EOF:	/* end of flags */
	    break;

	case 0: /* long option already handled */
	    continue;

	case ':':	/* diagnostic already printed by getopt_long */
	case '?':	/* diagnostic already printed by getopt_long */
	    usage(NULL);
	    break;   /* not actually reached */

	case 'h':	/* --help */
	    usage(NULL);
	    break;	/* not actually reached */

	case 'v':	/* --version */
		printf("%s\n", openac_version);
	    exit(0);
	    break;	/* not actually reached */

	case '+':	/* --optionsfrom <filename> */
	    {
		char path[BUF_LEN];

		if (*optarg == '/')	/* absolute pathname */
		    strncpy(path, optarg, BUF_LEN);
		else			/* relative pathname */
		    snprintf(path, BUF_LEN, "%s/%s", OPENAC_PATH, optarg);
		optionsfrom(path, &argc, &argv, optind, stderr);
		/* does not return on error */
	    }
	    continue;

	case 'q':	/* --quiet */
	    log_to_stderr = TRUE;
	    continue;

	case 'c':	/* --cert */
	    certfile = optarg;
	    continue;

	case 'k':	/* --key */
	    keyfile = optarg;
	    continue;

	case 'p':	/* --key */
	    pass.prompt = FALSE;
	    strncpy(pass.secret, optarg, sizeof(pass.secret));
	    continue;

	case 'u':	/* --usercert */
	    usercertfile = optarg;
	    continue;

	case 'g':	/* --groups */
	    decode_groups(optarg, &groups);
	    continue;

	case 'D':	/* --days */
            if (optarg == NULL || !isdigit(optarg[0]))
                usage("missing number of days");
            {
                char *endptr;
                long days = strtol(optarg, &endptr, 0);

                if (*endptr != '\0' || endptr == optarg
                || days <= 0)
                    usage("<days> must be a positive number");
                validity += 24*3600*days;
            }
	    continue;

	case 'H':	/* --hours */
            if (optarg == NULL || !isdigit(optarg[0]))
                usage("missing number of hours");
            {
                char *endptr;
                long hours = strtol(optarg, &endptr, 0);

                if (*endptr != '\0' || endptr == optarg
                || hours <= 0)
                    usage("<hours> must be a positive number");
                validity += 3600*hours;
            }
	    continue;

	case 'S':	/* --startdate */
            if (optarg == NULL || strlen(optarg) != 15 || optarg[14] != 'Z')
                usage("date format must be YYYYMMDDHHMMSSZ");
	    {
		chunk_t date = { optarg, 15 };
		notBefore = asn1totime(&date, ASN1_GENERALIZEDTIME);
	    }
	    continue;

	case 'E':	/* --enddate */
            if (optarg == NULL || strlen(optarg) != 15 || optarg[14] != 'Z')
                usage("date format must be YYYYMMDDHHMMSSZ");
	    {
		chunk_t date = { optarg, 15 };
		notAfter = asn1totime(&date, ASN1_GENERALIZEDTIME);
	    }
	    continue;

	case 'o':	/* --outt */
	    outfile = optarg;
	    continue	    ;

#ifdef DEBUG
	case 'A':	/* --debug-all */
	    base_debugging = DBG_ALL;
	    continue;
#endif
	default:
#ifdef DEBUG
	    if (c >= DBG_OFFSET)
	    {
		base_debugging |= c - DBG_OFFSET;
		continue;
	    }
#undef	    DBG_OFFSET
#endif
	    bad_case(c);
	}
	break;
    }

    init_log("openac");
    cur_debugging = base_debugging;

    if (optind != argc)
	usage("unexpected argument");

    /* load the signer's RSA private key */
    if (keyfile != NULL)
    {
	err_t ugh = NULL;

	signerkey = alloc_thing(RSA_private_key_t, "RSA private key");
	ugh = load_rsa_private_key(keyfile, &pass, signerkey);

	if (ugh != NULL)
	{
	    free_RSA_private_content(signerkey);
	    pfree(signerkey);
	    plog("%s", ugh);
	    exit(1);
	}
    }

    /* load the signer's X.509 certificate */
    if (certfile != NULL)
    {
	if (!load_cert(certfile, "signer cert", &signercert))
	    exit(1);
	signer = signercert.u.x509;
    }

    /* load the users's X.509 certificate */
    if (usercertfile != NULL)
    {
	if (!load_cert(usercertfile, "user cert", &usercert))
	    exit(1);
	user = usercert.u.x509;
    }
    
    /* compute validity interval */
    validity = (validity)? validity : default_validity;
    notBefore = (notBefore) ? notBefore : time(NULL);
    notAfter = (notAfter) ? notAfter : notBefore + validity;

    /* build and parse attribute certificate */
    if (user != NULL && signer != NULL && signerkey != NULL)
    {
	/* read the serial number and increment it by one */
	serial = read_serial();

	attr_cert = build_attr_cert();
	ac = alloc_thing(x509acert_t, "x509acert");
	*ac = empty_ac;
	parse_ac(attr_cert, ac);
	
	/* write the attribute certificate to file */
	if (write_chunk(outfile, "attribute cert", attr_cert, 0022, TRUE))
	    write_serial(serial);
    }

    /* delete all dynamic objects */
    if (signerkey != NULL)
    {
	free_RSA_private_content(signerkey);
	pfree(signerkey);
    }
    free_x509cert(signercert.u.x509);
    free_x509cert(usercert.u.x509);
    free_ietfAttrList(groups);
    free_acert(ac);
    pfree(serial.ptr);

#ifdef LEAK_DETECTIVE
    report_leaks();
#endif /* LEAK_DETECTIVE */
    close_log();
    exit(0);
}