3 Copyright (C) 2011 Guus Sliepen <guus@tinc-vpn.org>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include <libvdeplug_dyn.h>
33 static struct vdepluglib plug;
34 static struct vdeconn *conn = NULL;
36 static char *group = NULL;
39 static char *device_info;
41 extern char *identname;
44 static uint64_t device_total_in = 0;
45 static uint64_t device_total_out = 0;
47 bool setup_device(void) {
48 libvdeplug_dynopen(plug);
51 logger(LOG_ERR, "Could not open libvdeplug library!");
55 if(!get_config_string(lookup_config(config_tree, "Device"), &device))
56 xasprintf(&device, LOCALSTATEDIR "/run/vde.ctl");
58 get_config_string(lookup_config(config_tree, "Interface"), &iface);
60 get_config_int(lookup_config(config_tree, "VDEPort"), &port);
62 get_config_string(lookup_config(config_tree, "VDEGroup"), &group);
64 device_info = "VDE socket";
66 struct vde_open_args args = {
72 conn = plug.vde_open(device, identname, &args);
74 logger(LOG_ERR, "Could not open VDE socket %s", device);
78 device_fd = plug.vde_datafd(conn);
80 logger(LOG_INFO, "%s is a %s", device, device_info);
82 if(routing_mode == RMODE_ROUTER)
88 void close_device(void) {
93 libvdeplug_dynclose(plug);
100 bool read_packet(vpn_packet_t *packet) {
101 int lenin = plug.vde_recv(conn, packet->data, MTU, 0);
103 logger(LOG_ERR, "Error while reading from %s %s: %s", device_info, device, strerror(errno));
109 device_total_in += packet->len;
110 ifdebug(TRAFFIC) logger(LOG_DEBUG, "Read packet of %d bytes from %s", packet->len, device_info);
115 bool write_packet(vpn_packet_t *packet) {
116 if(plug.vde_send(conn, packet->data, packet->len, 0) < 0) {
117 if(errno != EINTR && errno != EAGAIN) {
118 logger(LOG_ERR, "Can't write to %s %s: %s", device_info, device, strerror(errno));
125 device_total_out += packet->len;
130 void dump_device_stats(void) {
131 logger(LOG_DEBUG, "Statistics for %s %s:", device_info, device);
132 logger(LOG_DEBUG, " total bytes in: %10"PRIu64, device_total_in);
133 logger(LOG_DEBUG, " total bytes out: %10"PRIu64, device_total_out);