aboutsummaryrefslogtreecommitdiffstats
path: root/src/pluto/builder.c
blob: 665d78634c793337a91389d183fad588ac05f320 (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
/* Pluto certificate/CRL/AC builder hooks.
 * Copyright (C) 2002-2009 Andreas Steffen
 * Copyright (C) 2009 Martin Willi
 * HSR Hochschule fuer Technik Rapperswil
 *
 * 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.
 */

#include "builder.h"

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>

#include <freeswan.h>

#include "library.h"

#include "constants.h"
#include "defs.h"
#include "log.h"
#include "id.h"
#include "certs.h"

/**
 * currently building cert_t
 */
static cert_t *cert;

/**
 * builder add function
 */
static void add(builder_t *this, builder_part_t part, ...)
{
	chunk_t blob;
	va_list args;

	va_start(args, part);
	blob = va_arg(args, chunk_t);
	va_end(args);

	switch (part)
	{
		case BUILD_BLOB_PGP:
		{
			pgpcert_t *pgpcert = malloc_thing(pgpcert_t);
			*pgpcert = pgpcert_empty;
			if (parse_pgp(blob, pgpcert))
			{
				cert->type = CERT_PGP;
				cert->u.pgp = pgpcert;
			}
			else
			{
				plog("  error in OpenPGP certificate");
				free_pgpcert(pgpcert);
			}
			break;
		}
		case BUILD_BLOB_ASN1_DER:
		{
			x509cert_t *x509cert = malloc_thing(x509cert_t);
			*x509cert = empty_x509cert;
			if (parse_x509cert(blob, 0, x509cert))
			{
				cert->type = CERT_X509_SIGNATURE;
				cert->u.x509 = x509cert;
			}
			else
			{
				plog("  error in X.509 certificate");
				free_x509cert(x509cert);
			}
			break;
		}
		default:
			builder_cancel(this);
			break;
	}
}

/**
 * builder build function
 */
static void *build(builder_t *this)
{
	free(this);
	if (cert->type == CERT_NONE)
	{
		return NULL;
	}
	return cert;
}

/**
 * certificate builder in cert_t format.
 */
static builder_t *cert_builder(credential_type_t type, int subtype)
{
	builder_t *this;
	
	if (subtype != CRED_TYPE_CERTIFICATE)
	{
		return NULL;
	}
	this = malloc_thing(builder_t);
	this->add = add;
	this->build = build;

	cert->type = CERT_NONE;
	cert->u.x509 = NULL;
	cert->u.pgp = NULL;

	return this;
}

void init_builder(void)
{
	lib->creds->add_builder(lib->creds, CRED_PLUTO_CERT, CRED_TYPE_CERTIFICATE,
							(builder_constructor_t)cert_builder);
}

void free_builder(void)
{
	lib->creds->remove_builder(lib->creds, (builder_constructor_t)cert_builder);
}