Annotation of embedaddon/strongswan/src/libstrongswan/plugins/revocation/revocation_plugin.c, revision 1.1.1.1
1.1 misho 1: /*
2: * Copyright (C) 2010 Martin Willi
3: * Copyright (C) 2010 revosec AG
4: *
5: * This program is free software; you can redistribute it and/or modify it
6: * under the terms of the GNU General Public License as published by the
7: * Free Software Foundation; either version 2 of the License, or (at your
8: * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
9: *
10: * This program is distributed in the hope that it will be useful, but
11: * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12: * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13: * for more details.
14: */
15:
16: #include "revocation_plugin.h"
17:
18: #include <library.h>
19: #include "revocation_validator.h"
20:
21: typedef struct private_revocation_plugin_t private_revocation_plugin_t;
22:
23: /**
24: * private data of revocation_plugin
25: */
26: struct private_revocation_plugin_t {
27:
28: /**
29: * public functions
30: */
31: revocation_plugin_t public;
32:
33: /**
34: * Validator implementation instance.
35: */
36: revocation_validator_t *validator;
37: };
38:
39: METHOD(plugin_t, get_name, char*,
40: private_revocation_plugin_t *this)
41: {
42: return "revocation";
43: }
44:
45: /**
46: * Register validator
47: */
48: static bool plugin_cb(private_revocation_plugin_t *this,
49: plugin_feature_t *feature, bool reg, void *cb_data)
50: {
51: if (reg)
52: {
53: lib->credmgr->add_validator(lib->credmgr, &this->validator->validator);
54: }
55: else
56: {
57: lib->credmgr->remove_validator(lib->credmgr,
58: &this->validator->validator);
59: }
60: return TRUE;
61: }
62:
63: METHOD(plugin_t, get_features, int,
64: private_revocation_plugin_t *this, plugin_feature_t *features[])
65: {
66: static plugin_feature_t f[] = {
67: PLUGIN_CALLBACK((plugin_feature_callback_t)plugin_cb, NULL),
68: PLUGIN_PROVIDE(CUSTOM, "revocation"),
69: PLUGIN_SDEPEND(CERT_ENCODE, CERT_X509_OCSP_REQUEST),
70: PLUGIN_SDEPEND(CERT_DECODE, CERT_X509_OCSP_RESPONSE),
71: PLUGIN_SDEPEND(CERT_DECODE, CERT_X509_CRL),
72: PLUGIN_SDEPEND(CERT_DECODE, CERT_X509),
73: PLUGIN_SDEPEND(FETCHER, NULL),
74: };
75: *features = f;
76: return countof(f);
77: }
78:
79: METHOD(plugin_t, reload, bool,
80: private_revocation_plugin_t *this)
81: {
82: this->validator->reload(this->validator);
83: return TRUE;
84: }
85:
86: METHOD(plugin_t, destroy, void,
87: private_revocation_plugin_t *this)
88: {
89: this->validator->destroy(this->validator);
90: free(this);
91: }
92:
93: /*
94: * see header file
95: */
96: plugin_t *revocation_plugin_create()
97: {
98: private_revocation_plugin_t *this;
99:
100: INIT(this,
101: .public = {
102: .plugin = {
103: .get_name = _get_name,
104: .get_features = _get_features,
105: .reload = _reload,
106: .destroy = _destroy,
107: },
108: },
109: .validator = revocation_validator_create(),
110: );
111:
112: return &this->public.plugin;
113: }
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>