2 * Copyright (C) 2008 Tobias Brunner
3 * Hochschule fuer Technik Rapperswil
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>.
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
17 #include "kernel_netlink_plugin.h"
19 #include "kernel_netlink_ipsec.h"
20 #include "kernel_netlink_net.h"
24 typedef struct private_kernel_netlink_plugin_t private_kernel_netlink_plugin_t
;
27 * private data of kernel netlink plugin
29 struct private_kernel_netlink_plugin_t
{
31 * implements plugin interface
33 kernel_netlink_plugin_t
public;
36 METHOD(plugin_t
, get_name
, char*,
37 private_kernel_netlink_plugin_t
*this)
39 return "kernel-netlink";
42 METHOD(plugin_t
, get_features
, int,
43 private_kernel_netlink_plugin_t
*this, plugin_feature_t
*features
[])
45 static plugin_feature_t f
[] = {
46 PLUGIN_CALLBACK(kernel_ipsec_register
, kernel_netlink_ipsec_create
),
47 PLUGIN_PROVIDE(CUSTOM
, "kernel-ipsec"),
48 PLUGIN_CALLBACK(kernel_net_register
, kernel_netlink_net_create
),
49 PLUGIN_PROVIDE(CUSTOM
, "kernel-net"),
55 METHOD(plugin_t
, destroy
, void,
56 private_kernel_netlink_plugin_t
*this)
64 plugin_t
*kernel_netlink_plugin_create()
66 private_kernel_netlink_plugin_t
*this;
68 if (!lib
->caps
->keep(lib
->caps
, CAP_NET_ADMIN
))
69 { /* required to bind/use XFRM sockets / create routing tables */
70 DBG1(DBG_KNL
, "kernel-netlink plugin requires CAP_NET_ADMIN "
78 .get_name
= _get_name
,
79 .get_features
= _get_features
,
85 return &this->public.plugin
;