Annotation of embedaddon/strongswan/src/libcharon/plugins/duplicheck/duplicheck_plugin.c, revision 1.1.1.1
1.1 misho 1: /*
2: * Copyright (C) 2011 Martin Willi
3: * Copyright (C) 2011 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 "duplicheck_plugin.h"
17:
18: #include "duplicheck_notify.h"
19: #include "duplicheck_listener.h"
20:
21: #include <daemon.h>
22:
23: typedef struct private_duplicheck_plugin_t private_duplicheck_plugin_t;
24:
25: /**
26: * Private data of duplicheck plugin
27: */
28: struct private_duplicheck_plugin_t {
29:
30: /**
31: * Implements plugin interface
32: */
33: duplicheck_plugin_t public;
34:
35: /**
36: * Listener doing duplicate checks
37: */
38: duplicheck_listener_t *listener;
39:
40: /**
41: * Notification sender facility
42: */
43: duplicheck_notify_t *notify;
44: };
45:
46: METHOD(plugin_t, get_name, char*,
47: private_duplicheck_plugin_t *this)
48: {
49: return "duplicheck";
50: }
51:
52: /**
53: * Register listener
54: */
55: static bool plugin_cb(private_duplicheck_plugin_t *this,
56: plugin_feature_t *feature, bool reg, void *cb_data)
57: {
58: if (reg)
59: {
60: charon->bus->add_listener(charon->bus, &this->listener->listener);
61: }
62: else
63: {
64: charon->bus->remove_listener(charon->bus, &this->listener->listener);
65: }
66: return TRUE;
67: }
68:
69: METHOD(plugin_t, get_features, int,
70: private_duplicheck_plugin_t *this, plugin_feature_t *features[])
71: {
72: static plugin_feature_t f[] = {
73: PLUGIN_CALLBACK((plugin_feature_callback_t)plugin_cb, NULL),
74: PLUGIN_PROVIDE(CUSTOM, "duplicheck"),
75: };
76: *features = f;
77: return countof(f);
78: }
79:
80: METHOD(plugin_t, destroy, void,
81: private_duplicheck_plugin_t *this)
82: {
83: this->notify->destroy(this->notify);
84: this->listener->destroy(this->listener);
85: free(this);
86: }
87:
88: /**
89: * Plugin constructor
90: */
91: plugin_t *duplicheck_plugin_create()
92: {
93: private_duplicheck_plugin_t *this;
94:
95: if (!lib->settings->get_bool(lib->settings,
96: "%s.plugins.duplicheck.enable", TRUE, lib->ns))
97: {
98: return NULL;
99: }
100:
101: INIT(this,
102: .public = {
103: .plugin = {
104: .get_name = _get_name,
105: .get_features = _get_features,
106: .destroy = _destroy,
107: },
108: },
109: .notify = duplicheck_notify_create(),
110: );
111:
112: if (!this->notify)
113: {
114: free(this);
115: return NULL;
116: }
117: this->listener = duplicheck_listener_create(this->notify);
118:
119: return &this->public.plugin;
120: }
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>