1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- /* vim: set expandtab ts=4 sw=4: */
- /*
- * You may redistribute this program and/or modify it under the terms of
- * the GNU General Public License as published by the Free Software Foundation,
- * either version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- #include "exception/Except.h"
- #include "interface/tuntap/TUNInterface.h"
- #include "interface/tuntap/BSDMessageTypeWrapper.h"
- #include "util/AddrTools.h"
- #include "util/Bits.h"
- #include "util/events/Pipe.h"
- #include <errno.h>
- #include <ctype.h>
- #include <fcntl.h>
- #include <stdio.h>
- #include <sys/ioctl.h>
- #include <unistd.h>
- #include <sys/socket.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <stdlib.h>
- #include <stddef.h>
- #include <net/if.h>
- #include <string.h>
- #include <netdb.h>
- #include <net/if_var.h>
- #include <net/if_tun.h>
- #include <netinet/in.h>
- #include <netinet6/in6_var.h>
- #include <netinet6/nd6.h>
- struct Interface* TUNInterface_new(const char* interfaceName,
- char assignedInterfaceName[TUNInterface_IFNAMSIZ],
- struct EventBase* base,
- struct Log* logger,
- struct Except* eh,
- struct Allocator* alloc)
- {
- // Open the descriptor
- int tunFd = open("/dev/tun", O_RDWR);
- //Get the resulting device name
- const char* assignedDevname;
- assignedDevname = fdevname(tunFd);
- // Extract the number eg: 0 from tun0
- int ppa = 0;
- for (uint32_t i = 0; i < strlen(assignedDevname); i++) {
- if (isdigit(assignedDevname[i])) {
- ppa = atoi(assignedDevname);
- }
- }
- if (tunFd < 0 || ppa < 0 ) {
- int err = errno;
- close(tunFd);
- char* error = NULL;
- if (tunFd < 0) {
- error = "open(\"/dev/tun\")";
- } else if (ppa < 0) {
- error = "fdevname/getting number from fdevname";
- }
- Except_raise(eh, TUNInterface_new_INTERNAL, error, strerror(err));
- }
- // Since devices are numbered rather than named, it's not possible to have tun0 and cjdns0
- // so we'll skip the pretty names and call everything tunX
- snprintf(assignedInterfaceName, TUNInterface_IFNAMSIZ, "tun%d", ppa);
- char* error = NULL;
- // We want to send IPv6 through our tun device, so we need to be able to specify "ethertype"
- int tunhead = 1;
- if (ioctl(tunFd,TUNSIFHEAD,&tunhead) == -1) {
- error = "TUNSIFHEAD";
- }
- if (error) {
- int err = errno;
- close(tunFd);
- Except_raise(eh, TUNInterface_new_INTERNAL, "%s [%s]", error, strerror(err));
- }
- struct Pipe* p = Pipe_forFiles(tunFd, tunFd, base, eh, alloc);
- return BSDMessageTypeWrapper_new(&p->iface, logger);
- }
|