chiark / gitweb /
Fix uninitialized variable in p_create.
[tripe] / tun-linux.c
CommitLineData
37075862 1/* -*-c-*-
2 *
3cdc3f3a 3 * $Id$
37075862 4 *
5 * Tunnel interface based on Linux TUN/TAP driver
6 *
7 * (c) 2003 Straylight/Edgeware
8 */
9
10/*----- Licensing notice --------------------------------------------------*
11 *
12 * This file is part of Trivial IP Encryption (TrIPE).
13 *
14 * TrIPE is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * TrIPE is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with TrIPE; if not, write to the Free Software Foundation,
26 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 */
28
37075862 29/*----- Header files ------------------------------------------------------*/
30
42da2a58 31#define TUN_INTERNALS
32
37075862 33#include "tripe.h"
34
42da2a58 35#ifdef TUN_LINUX
36# include <sys/ioctl.h>
37# include <linux/if.h>
38# include <linux/if_tun.h>
39#endif
37075862 40
41/*----- Main code ---------------------------------------------------------*/
42
42da2a58 43#ifdef TUN_LINUX
44
45struct tunnel {
46 const tunnel_ops *ops; /* Pointer to operations */
47 sel_file f; /* Selector for TUN/TAP device */
48 struct peer *p; /* Pointer to my peer */
49 char ifn[IFNAMSIZ]; /* Interface name buffer */
50};
37075862 51
52/* --- @t_read@ --- *
53 *
54 * Arguments: @int fd@ = file descriptor to read
55 * @unsigned mode@ = what's happened
56 * @void *v@ = pointer to tunnel block
57 *
58 * Returns: ---
59 *
60 * Use: Reads data from the tunnel.
61 */
62
63static void t_read(int fd, unsigned mode, void *v)
64{
65 tunnel *t = v;
66 ssize_t n;
67 buf b;
68
69 n = read(fd, buf_i, sizeof(buf_i));
70 if (n < 0) {
3cdc3f3a 71 a_warn("TUN %s read-error -- %s", t->ifn, strerror(errno));
37075862 72 return;
73 }
74 IF_TRACING(T_TUNNEL, {
75 trace(T_TUNNEL, "tunnel: packet arrived");
76 trace_block(T_PACKET, "tunnel: packet contents", buf_i, n);
77 })
78 buf_init(&b, buf_i, n);
79 p_tun(t->p, &b);
80}
81
42da2a58 82/* --- @t_init@ --- *
37075862 83 *
84 * Arguments: ---
85 *
86 * Returns: ---
87 *
88 * Use: Initializes the tunneling system. Maybe this will require
89 * opening file descriptors or something.
90 */
91
42da2a58 92static void t_init(void) { return; }
37075862 93
42da2a58 94/* --- @t_create@ --- *
37075862 95 *
42da2a58 96 * Arguments: @peer *p@ = pointer to peer block
37075862 97 *
42da2a58 98 * Returns: A tunnel block if it worked, or null on failure.
37075862 99 *
100 * Use: Initializes a new tunnel.
101 */
102
42da2a58 103static tunnel *t_create(peer *p)
37075862 104{
105 int fd;
106 int f;
107 struct ifreq iff;
42da2a58 108 tunnel *t;
37075862 109
110 if ((fd = open("/dev/net/tun", O_RDWR)) < 0) {
3cdc3f3a 111 a_warn("TUN - open-error /dev/net/tun -- %s", strerror(errno));
42da2a58 112 return (0);
37075862 113 }
114 fdflags(fd, O_NONBLOCK, O_NONBLOCK, FD_CLOEXEC, FD_CLOEXEC);
115 iff.ifr_name[0] = 0;
b9066fbb 116 iff.ifr_flags = IFF_TUN | IFF_NO_PI;
37075862 117 if ((f = ioctl(fd, TUNSETIFF, &iff)) < 0) {
3cdc3f3a 118 a_warn("TUN - linux config-error -- %s", strerror(errno));
37075862 119 close(fd);
42da2a58 120 return (0);
37075862 121 }
42da2a58 122 t = CREATE(tunnel);
123 t->ops = &tun_linux;
37075862 124 t->p = p;
125 sel_initfile(&sel, &t->f, fd, SEL_READ, t_read, t);
126 sel_addfile(&t->f);
127 iff.ifr_name[IFNAMSIZ - 1] = 0;
128 strcpy(t->ifn, iff.ifr_name);
129 T( trace(T_TUNNEL, "tunnel: attached interface %s to peer `%s'",
130 t->ifn, p_name(p)); )
42da2a58 131 return (t);
37075862 132}
133
42da2a58 134/* --- @t_ifname@ --- *
37075862 135 *
136 * Arguments: @tunnel *t@ = pointer to tunnel block
137 *
138 * Returns: A pointer to the tunnel's interface name.
139 */
140
42da2a58 141static const char *t_ifname(tunnel *t) { return (t->ifn); }
37075862 142
42da2a58 143/* --- @t_inject@ --- *
37075862 144 *
145 * Arguments: @tunnel *t@ = pointer to tunnel block
146 * @buf *b@ = buffer to send
147 *
148 * Returns: ---
149 *
150 * Use: Injects a packet into the local network stack.
151 */
152
42da2a58 153static void t_inject(tunnel *t, buf *b)
37075862 154{
155 IF_TRACING(T_TUNNEL, {
156 trace(T_TUNNEL, "tunnel: inject decrypted packet");
157 trace_block(T_PACKET, "tunnel: packet contents", BBASE(b), BLEN(b));
158 })
159 write(t->f.fd, BBASE(b), BLEN(b));
160}
161
42da2a58 162/* --- @t_destroy@ --- *
37075862 163 *
164 * Arguments: @tunnel *t@ = pointer to tunnel block
165 *
166 * Returns: ---
167 *
168 * Use: Destroys a tunnel.
169 */
170
42da2a58 171static void t_destroy(tunnel *t)
37075862 172{
173 sel_rmfile(&t->f);
174 close(t->f.fd);
42da2a58 175 DESTROY(t);
37075862 176}
177
42da2a58 178const tunnel_ops tun_linux = {
179 "linux",
180 t_init,
181 t_create,
182 t_ifname,
183 t_inject,
184 t_destroy
185};
186
187#endif
188
37075862 189/*----- That's all, folks -------------------------------------------------*/