libtun/source/libtun/tunctl.c

85 lines
1.9 KiB
C
Raw Normal View History

/**
* This module is used just to interface between the Linux
* kernel (via GLIBC) such that the tun adpater can be setup
* and destroyed
*
* `int createTun(char* interfaceName)`
* - This creates a tun interface with the provided name
* - and returns the fd
* `int destroyTun(int fd)`
* - This destroys the tun interface given
*
* Once we have the fd everything else can be done in D
* as we just read()/write() on the returned fd we got
* using `createTun`
*/
#include<linux/if.h>
#include<linux/if_tun.h>
#include<fcntl.h>
#include<string.h>
#include<sys/ioctl.h>
2021-07-21 18:07:17 +01:00
#include<unistd.h>
2021-11-15 11:30:18 +00:00
#include<stdint.h>
2021-11-15 11:30:18 +00:00
/* TODO: Update types here using stdint */
2022-11-28 16:33:22 +00:00
//TODO: We could possibly use directly
2021-11-15 11:30:18 +00:00
uint32_t createTun(char* interfaceName, int32_t iffFlags)
{
/* TODO: Add all required error checking */
2021-11-15 11:30:18 +00:00
int32_t tunFD = open("/dev/net/tun", O_RDWR);
/* If error */
if(tunFD < 0)
{
return tunFD;
}
2021-07-18 17:53:32 +01:00
/* TUN properties */
2021-07-18 17:53:32 +01:00
struct ifreq interfaceReqData;
2021-07-18 22:23:56 +01:00
/* TODO: Do tuntype */
/* Set the flags for the tun adapter */
2021-07-18 17:53:32 +01:00
interfaceReqData.ifr_flags = iffFlags;
/* Set the requested interface's name */
strcpy(interfaceReqData.ifr_name, interfaceName);
/* Attempt to bring up the tun device node */
2021-11-15 11:30:18 +00:00
int32_t tunStatus = ioctl(tunFD, TUNSETIFF, &interfaceReqData);
2021-07-18 17:53:32 +01:00
if(tunStatus < 0)
{
2021-11-15 11:30:18 +00:00
tunFD = tunStatus;
}
2021-07-18 18:45:17 +01:00
2021-07-18 17:54:32 +01:00
return tunFD;
}
2022-11-28 16:33:22 +00:00
//TOOD: Maybe use directly
2021-11-15 11:33:14 +00:00
uint32_t destroyTun(uint32_t fd)
{
return close(fd);
}
2022-11-28 16:33:22 +00:00
//TODO: Maybe use directly
2021-11-15 11:33:14 +00:00
uint32_t tunWrite(uint32_t fd, char* data, int length)
2021-07-18 18:45:17 +01:00
{
write(fd, data, length);
}
/**
* TODO: Depending on mode we need to read a certain amount
* to get the length and then from there move onwards
*
* (FIXME: For now we just read 20 bytes)
*/
2022-11-28 16:33:22 +00:00
//TODO: Maybe use directly
2021-11-15 11:33:14 +00:00
uint32_t tunRead(uint32_t fd, char* data, int amount)
{
return read(fd, data, amount);
}
2021-11-15 11:33:14 +00:00
// uint32_t tunSet()