X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/tripe/blobdiff_plain/53a941d3f97a50964587c6e9533b1e43e74a57a8..2d4998c45fa47fbc8084dcc4471a2e71e3eeb635:/server/tun-unet.c diff --git a/server/tun-unet.c b/server/tun-unet.c index 5ebcc790..19dc5e60 100644 --- a/server/tun-unet.c +++ b/server/tun-unet.c @@ -32,7 +32,7 @@ #ifdef TUN_UNET # include -# include +# include # include #endif @@ -65,7 +65,8 @@ static void t_read(int fd, unsigned mode, void *v) n = read(fd, buf_i, sizeof(buf_i)); if (n < 0) { - a_warn("TUN", "%s", p_ifname(t->p), "read-error", "?ERRNO", A_END); + a_warn("TUN", "%s", p_ifname(t->p), "unet", + "read-error", "?ERRNO", A_END); return; } IF_TRACING(T_TUNNEL, { @@ -90,46 +91,25 @@ static void t_init(void) { return; } /* --- @t_create@ --- * * - * Arguments: @tunnel *t@ = pointer to tunnel block - * @peer *p@ = pointer to peer block - * @char *ifn@ = where to put the interface name + * Arguments: @peer *p@ = pointer to peer block + * @int fd@ = file descriptor of tunnel device + * @char **ifn@ = where to put the interface name * * Returns: A tunnel block if it worked, or null on failure. * * Use: Initializes a new tunnel. */ -static tunnel *t_create(peer *p, char **ifn) +static tunnel *t_create(peer *p, int fd, char **ifn) { - int fd; tunnel *t; - int f; - struct unet_info uni; - if ((fd = open("/dev/unet", O_RDWR)) < 0) { - a_warn("TUN", "-", "unet", "open-error", "/dev/unet", "?ERRNO", A_END); - return (0); - } fdflags(fd, O_NONBLOCK, O_NONBLOCK, FD_CLOEXEC, FD_CLOEXEC); - if ((f = ioctl(fd, UNIOCGIFFLAGS)) < 0 || - ioctl(fd, UNIOCSIFFLAGS, f | IFF_POINTOPOINT)) { - a_warn("TUN", "-", "unet", "config-error", "?ERRNO", A_END); - close(fd); - return (0); - } t = CREATE(tunnel); t->ops = &tun_unet; t->p = p; sel_initfile(&sel, &t->f, fd, SEL_READ, t_read, t); sel_addfile(&t->f); - - if (ioctl(t->f.fd, UNIOCGINFO, &uni)) { - a_warn("TUN", "-", "unet", "getinfo-error", "?ERRNO", A_END); - return (0); - } - *ifn = xstrdup(uni.uni_ifname); - T( trace(T_TUNNEL, "tun-unet: attached interface %s to peer `%s'", - *ifn, p_name(p)); ) return (t); } @@ -149,7 +129,7 @@ static void t_inject(tunnel *t, buf *b) trace(T_TUNNEL, "tun-unet: inject decrypted packet"); trace_block(T_PACKET, "tun-unet: packet contents", BBASE(b), BLEN(b)); }) - write(t->f.fd, BBASE(b), BLEN(b)); + IGNORE(write(t->f.fd, BBASE(b), BLEN(b))); } /* --- @t_destroy@ --- * @@ -162,14 +142,11 @@ static void t_inject(tunnel *t, buf *b) */ static void t_destroy(tunnel *t) -{ - sel_rmfile(&t->f); - close(t->f.fd); - DESTROY(t); -} + { sel_rmfile(&t->f); close(t->f.fd); DESTROY(t); } const tunnel_ops tun_unet = { "unet", + TUNF_PRIVOPEN, t_init, t_create, 0,