diff options
author | YASUOKA Masahiko <yasuoka@cvs.openbsd.org> | 2015-12-04 12:15:58 +0000 |
---|---|---|
committer | YASUOKA Masahiko <yasuoka@cvs.openbsd.org> | 2015-12-04 12:15:58 +0000 |
commit | 8707171125f9e027f6348b968c17fbf0399e59bd (patch) | |
tree | 77a85cb9b8f94758387c327f40308a23039fbf55 /usr.sbin/npppd | |
parent | a205e5e1c69240af4f8b0c1b6fd45c9a1c73cc4b (diff) |
Remove files which had been unused.
Diffstat (limited to 'usr.sbin/npppd')
-rw-r--r-- | usr.sbin/npppd/npppd/npppd_tun.c | 212 | ||||
-rw-r--r-- | usr.sbin/npppd/npppd/npppd_tun.h | 45 |
2 files changed, 0 insertions, 257 deletions
diff --git a/usr.sbin/npppd/npppd/npppd_tun.c b/usr.sbin/npppd/npppd/npppd_tun.c deleted file mode 100644 index 451a4c61f2f..00000000000 --- a/usr.sbin/npppd/npppd/npppd_tun.c +++ /dev/null @@ -1,212 +0,0 @@ -/* $OpenBSD: npppd_tun.c,v 1.6 2015/10/11 07:32:06 guenther Exp $ */ - -/*- - * Copyright (c) 2009 Internet Initiative Japan Inc. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ -/**@file - * This file provides functions on {@link ::_npppd_tun tunnel device}. - */ -#include <sys/types.h> -#include <sys/time.h> -#include <sys/socket.h> -#include <sys/sockio.h> -#include <sys/ioctl.h> -#include <netinet/in.h> -#include <net/if.h> -#include <stdio.h> -#include <syslog.h> -#include <unistd.h> -#include <stdlib.h> -#include <fcntl.h> -#include <string.h> -#include <errno.h> -#include <event.h> - -#include "npppd_local.h" -#include "debugutil.h" -#include "debugmacro.h" - -#include "npppd_tun.h" - -static void npppd_tundev_io_event_handler (int, short, void *); - -#ifdef NPPPD_TUN_DEBUG -#define NPPPD_TUN_ASSERT(cond) ASSERT(cond) -#else -#define NPPPD_TUN_ASSERT(cond) -#endif - - -/** - * Initialize {@link ::_npppd_tun instance of tunnel device}. - * @param minor device minor number - */ -void -npppd_tundev_init(npppd *_this, int minor) -{ - NPPPD_TUN_ASSERT(_this != NULL); - NPPPD_TUN_ASSERT(_this->tun_file <= 0); - - _this->tun_file = -1; - _this->tun_minor = minor; -} - -/** - * Start {@link ::_npppd_tun instance of tunnel device}. - */ -int -npppd_tundev_start(npppd *_this) -{ - int sock; - char buf[PATH_MAX]; - struct ifaliasreq ifra; - struct sockaddr_in *sin0; - - NPPPD_TUN_ASSERT(_this != NULL); - - snprintf(buf, sizeof(buf), "/dev/tun%d", _this->tun_minor); - if ((_this->tun_file = open(buf, O_RDWR | O_NONBLOCK)) < 0) { - log_printf(LOG_ERR, "open(%s) failed in %s(): %m", - buf, __func__); - goto fail; - } - - if ((sock = socket(AF_INET, SOCK_DGRAM, 0)) < 0) { - log_printf(LOG_ERR, "socket() failed in %s(): %m", __func__); - goto fail; - } - - memset(&ifra, 0, sizeof(ifra)); - snprintf(ifra.ifra_name, sizeof(ifra.ifra_name), "tun%d", - _this->tun_minor); - - sin0 = (struct sockaddr_in *)&ifra.ifra_addr; - sin0->sin_addr.s_addr = _this->tun_ip4_addr.s_addr; - sin0->sin_family = AF_INET; - sin0->sin_len = sizeof(struct sockaddr_in); - - sin0 = (struct sockaddr_in *)&ifra.ifra_mask; - sin0->sin_addr.s_addr = 0xffffffffL; - sin0->sin_family = AF_INET; - sin0->sin_len = sizeof(struct sockaddr_in); - - sin0 = (struct sockaddr_in *)&ifra.ifra_broadaddr; - sin0->sin_addr.s_addr = 0; - sin0->sin_family = AF_INET; - sin0->sin_len = sizeof(struct sockaddr_in); - - if (ioctl(sock, SIOCAIFADDR, &ifra) != 0 && errno != EEXIST) { - log_printf(LOG_ERR, "Cannot assign tun device ip address: %m"); - goto fail; - } - close(sock); - - event_set(&_this->ev_tun, _this->tun_file, EV_READ | EV_PERSIST, - npppd_tundev_io_event_handler, _this); - event_add(&_this->ev_tun, NULL); - - log_printf(LOG_INFO, "Opened /dev/tun%d", _this->tun_minor); - - return 0; -fail: - if (_this->tun_file >= 0) - close(_this->tun_file); - _this->tun_file = -1; - - return -1; -} - -/** - * Stop process on tunnel device. - */ -void -npppd_tundev_stop(npppd *_this) -{ - if (_this->tun_file >= 0) { - event_del(&_this->ev_tun); - close(_this->tun_file); - } - _this->tun_file = -1; - log_printf(LOG_NOTICE, "Closed /dev/tun%d", _this->tun_minor); -} - -/** - * Set IP address. - */ -int -npppd_tundev_set_ip_addr(npppd *_this) -{ - return 0; -} - -static void -npppd_tundev_io_event_handler(int fd, short evtype, void *data) -{ - int sz; - npppd *_this; - uint8_t buffer[8192]; - - NPPPD_TUN_ASSERT((evtype & EV_READ) != 0); - - _this = data; - NPPPD_TUN_ASSERT(_this->tun_file >= 0); - - do { - sz = read(_this->tun_file, buffer, sizeof(buffer)); - if (sz <= 0) { - if (sz == 0) - log_printf(LOG_ERR, "tun%d read failed: %m", - _this->tun_minor); - else if (errno == EAGAIN) - break; - else - log_printf(LOG_ERR, "tun%d file is closed", - _this->tun_minor); - npppd_tundev_stop(_this); - return; - } - npppd_network_input(_this, buffer, sz); - } while (1 /* CONSTCOND */); - - return; -} - -/** - * Write to tunnel device. - */ -void -npppd_tundev_write(npppd *_this, uint8_t *pktp, int lpktp) -{ - int err; - - NPPPD_TUN_ASSERT(_this != NULL); - NPPPD_TUN_ASSERT(_this->tun_file >= 0); - - err = write(_this->tun_file, pktp, lpktp); - - if (err != lpktp) - log_printf(LOG_ERR, "tun%d write failed in %s(): %m", - _this->tun_minor, __func__); -} diff --git a/usr.sbin/npppd/npppd/npppd_tun.h b/usr.sbin/npppd/npppd/npppd_tun.h deleted file mode 100644 index 82531be5d4f..00000000000 --- a/usr.sbin/npppd/npppd/npppd_tun.h +++ /dev/null @@ -1,45 +0,0 @@ -/* $OpenBSD: npppd_tun.h,v 1.3 2012/05/08 13:15:12 yasuoka Exp $ */ - -/*- - * Copyright (c) 2009 Internet Initiative Japan Inc. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ -#ifndef NPPPD_TUN_H -#define NPPPD_TUN_H 1 - -#ifdef __cplusplus -extern "C" { -#endif - -void npppd_tundev_init (npppd *, int); -int npppd_tundev_start (npppd *); -int npppd_tundev_set_ip_addr (npppd *); -void npppd_tundev_stop (npppd *); -void npppd_tundev_write (npppd *, uint8_t *, int); - -#ifdef __cplusplus -} -#endif - -#endif |