mirror of
https://github.com/kanjitalk755/macemu.git
synced 2025-02-02 15:40:02 +00:00
TUN/TAP support
This commit is contained in:
parent
a8c8c1d4d9
commit
85347b85c7
@ -18,6 +18,8 @@
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include "sysdeps.h"
|
||||
|
||||
#include <pthread.h>
|
||||
#include <semaphore.h>
|
||||
#include <unistd.h>
|
||||
@ -25,10 +27,20 @@
|
||||
#include <errno.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/poll.h>
|
||||
#include <sys/wait.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "sysdeps.h"
|
||||
#if defined(HAVE_LINUX_IF_H) && defined(HAVE_LINUX_IF_TUN_H)
|
||||
#include <linux/if.h>
|
||||
#include <linux/if_tun.h>
|
||||
#endif
|
||||
|
||||
#if defined(HAVE_NET_IF_H) && defined(HAVE_NET_IF_TUN_H)
|
||||
#include <net/if.h>
|
||||
#include <net/if_tun.h>
|
||||
#endif
|
||||
|
||||
#include "main.h"
|
||||
#include "macos_util.h"
|
||||
#include "prefs.h"
|
||||
@ -43,6 +55,16 @@
|
||||
#define MONITOR 0
|
||||
|
||||
|
||||
// Ethernet device types
|
||||
enum {
|
||||
NET_IF_SHEEPNET,
|
||||
NET_IF_ETHERTAP,
|
||||
NET_IF_TUNTAP,
|
||||
};
|
||||
|
||||
// Constants
|
||||
static const char ETHERCONFIG_FILE_NAME[] = DATADIR "/tunconfig";
|
||||
|
||||
// Global variables
|
||||
static int fd = -1; // fd of sheep_net device
|
||||
|
||||
@ -53,13 +75,44 @@ static sem_t int_ack; // Interrupt acknowledge semaphore
|
||||
static uint8 ether_addr[6]; // Our Ethernet address
|
||||
|
||||
static bool net_open = false; // Flag: initialization succeeded, network device open
|
||||
static bool is_ethertap = false; // Flag: Ethernet device is ethertap
|
||||
static int net_if_type = -1; // Ethernet device type
|
||||
static char *net_if_name; // TUN/TAP device name
|
||||
static const char *net_if_script; // Network config script
|
||||
|
||||
|
||||
// Prototypes
|
||||
static void *receive_func(void *arg);
|
||||
|
||||
|
||||
/*
|
||||
* Execute network script up|down
|
||||
*/
|
||||
|
||||
static bool execute_network_script(const char *action)
|
||||
{
|
||||
if (net_if_script == NULL || net_if_name == NULL)
|
||||
return false;
|
||||
|
||||
int pid = fork();
|
||||
if (pid >= 0) {
|
||||
if (pid == 0) {
|
||||
char *args[4];
|
||||
args[0] = (char *)net_if_script;
|
||||
args[1] = net_if_name;
|
||||
args[2] = (char *)action;
|
||||
args[3] = NULL;
|
||||
execv(net_if_script, args);
|
||||
exit(1);
|
||||
}
|
||||
int status;
|
||||
while (waitpid(pid, &status, 0) != pid);
|
||||
return WIFEXITED(status) && WEXITSTATUS(status) == 0;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Initialize ethernet
|
||||
*/
|
||||
@ -78,15 +131,30 @@ void EtherInit(void)
|
||||
if (name == NULL)
|
||||
return;
|
||||
|
||||
// Is it Ethertap?
|
||||
is_ethertap = (strncmp(name, "tap", 3) == 0);
|
||||
// Determine Ether device type
|
||||
net_if_type = -1;
|
||||
if (strncmp(name, "tap", 3) == 0)
|
||||
net_if_type = NET_IF_ETHERTAP;
|
||||
#if ENABLE_TUNTAP
|
||||
else if (strcmp(name, "tun") == 0)
|
||||
net_if_type = NET_IF_TUNTAP;
|
||||
#endif
|
||||
else
|
||||
net_if_type = NET_IF_SHEEPNET;
|
||||
|
||||
// Open sheep_net or ethertap device
|
||||
char dev_name[16];
|
||||
if (is_ethertap)
|
||||
switch (net_if_type) {
|
||||
case NET_IF_ETHERTAP:
|
||||
sprintf(dev_name, "/dev/%s", name);
|
||||
else
|
||||
break;
|
||||
case NET_IF_TUNTAP:
|
||||
sprintf(dev_name, "/dev/net/tun", name);
|
||||
break;
|
||||
case NET_IF_SHEEPNET:
|
||||
strcpy(dev_name, "/dev/sheep_net");
|
||||
break;
|
||||
}
|
||||
fd = open(dev_name, O_RDWR);
|
||||
if (fd < 0) {
|
||||
sprintf(str, GetString(STR_NO_SHEEP_NET_DRIVER_WARN), dev_name, strerror(errno));
|
||||
@ -94,8 +162,42 @@ void EtherInit(void)
|
||||
goto open_error;
|
||||
}
|
||||
|
||||
#if ENABLE_TUNTAP
|
||||
// Open TUN/TAP interface
|
||||
if (net_if_type == NET_IF_TUNTAP) {
|
||||
struct ifreq ifr;
|
||||
memset(&ifr, 0, sizeof(ifr));
|
||||
ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
|
||||
strcpy(ifr.ifr_name, "tun%d");
|
||||
if (ioctl(fd, TUNSETIFF, (void *) &ifr) != 0) {
|
||||
sprintf(str, GetString(STR_SHEEP_NET_ATTACH_WARN), strerror(errno));
|
||||
WarningAlert(str);
|
||||
goto open_error;
|
||||
}
|
||||
|
||||
// Get network config script file path
|
||||
net_if_script = PrefsFindString("etherconfig");
|
||||
if (net_if_script == NULL)
|
||||
net_if_script = ETHERCONFIG_FILE_NAME;
|
||||
|
||||
// Start network script up
|
||||
if (net_if_script == NULL) {
|
||||
sprintf(str, GetString(STR_TUN_TAP_CONFIG_WARN), "script not found");
|
||||
WarningAlert(str);
|
||||
goto open_error;
|
||||
}
|
||||
net_if_name = strdup(ifr.ifr_name);
|
||||
if (!execute_network_script("up")) {
|
||||
sprintf(str, GetString(STR_TUN_TAP_CONFIG_WARN), "script execute error");
|
||||
WarningAlert(str);
|
||||
goto open_error;
|
||||
}
|
||||
D(bug("Connected to host network interface: %s\n", net_if_name));
|
||||
}
|
||||
#endif
|
||||
|
||||
// Attach to selected Ethernet card
|
||||
if (!is_ethertap && ioctl(fd, SIOCSIFLINK, name) < 0) {
|
||||
if (net_if_type == NET_IF_SHEEPNET && ioctl(fd, SIOCSIFLINK, name) < 0) {
|
||||
sprintf(str, GetString(STR_SHEEP_NET_ATTACH_WARN), strerror(errno));
|
||||
WarningAlert(str);
|
||||
goto open_error;
|
||||
@ -105,7 +207,7 @@ void EtherInit(void)
|
||||
ioctl(fd, FIONBIO, &nonblock);
|
||||
|
||||
// Get Ethernet address
|
||||
if (is_ethertap) {
|
||||
if (net_if_type == NET_IF_ETHERTAP) {
|
||||
pid_t p = getpid(); // If configured for multicast, ethertap requires that the lower 32 bit of the Ethernet address are our PID
|
||||
ether_addr[0] = 0xfe;
|
||||
ether_addr[1] = 0xfd;
|
||||
@ -160,6 +262,14 @@ void EtherExit(void)
|
||||
thread_active = false;
|
||||
}
|
||||
|
||||
// Shut down TUN/TAP interface
|
||||
if (net_if_type == NET_IF_TUNTAP)
|
||||
execute_network_script("down");
|
||||
|
||||
// Free TUN/TAP device name
|
||||
if (net_if_name)
|
||||
free(net_if_name);
|
||||
|
||||
// Close sheep_net device
|
||||
if (fd > 0)
|
||||
close(fd);
|
||||
@ -209,7 +319,7 @@ void AO_enable_multicast(uint8 *addr)
|
||||
{
|
||||
D(bug("AO_enable_multicast\n"));
|
||||
if (net_open) {
|
||||
if (ioctl(fd, SIOCADDMULTI, addr) < 0) {
|
||||
if (net_if_type != NET_IF_TUNTAP && ioctl(fd, SIOCADDMULTI, addr) < 0) {
|
||||
D(bug("WARNING: couldn't enable multicast address\n"));
|
||||
}
|
||||
}
|
||||
@ -224,7 +334,7 @@ void AO_disable_multicast(uint8 *addr)
|
||||
{
|
||||
D(bug("AO_disable_multicast\n"));
|
||||
if (net_open) {
|
||||
if (ioctl(fd, SIOCDELMULTI, addr) < 0) {
|
||||
if (net_if_type != NET_IF_TUNTAP && ioctl(fd, SIOCDELMULTI, addr) < 0) {
|
||||
D(bug("WARNING: couldn't disable multicast address\n"));
|
||||
}
|
||||
}
|
||||
@ -243,7 +353,7 @@ void AO_transmit_packet(mblk_t *mp)
|
||||
// Copy packet to buffer
|
||||
uint8 packet[1516], *p = packet;
|
||||
int len = 0;
|
||||
if (is_ethertap) {
|
||||
if (net_if_type == NET_IF_ETHERTAP) {
|
||||
*p++ = 0; // Ethertap discards the first 2 bytes
|
||||
*p++ = 0;
|
||||
len += 2;
|
||||
@ -317,10 +427,10 @@ void EtherIRQ(void)
|
||||
uint8 packet[1516];
|
||||
for (;;) {
|
||||
|
||||
if (is_ethertap) {
|
||||
if (net_if_type != NET_IF_SHEEPNET) {
|
||||
|
||||
// Read packet from ethertap device
|
||||
ssize_t size = read(fd, packet, 1516);
|
||||
ssize_t size = read(fd, packet, net_if_type == NET_IF_ETHERTAP ? 1516 : 1514);
|
||||
if (size < 14)
|
||||
break;
|
||||
|
||||
@ -333,8 +443,11 @@ void EtherIRQ(void)
|
||||
#endif
|
||||
|
||||
// Pointer to packet data (Ethernet header)
|
||||
uint8 *p = packet + 2; // Ethertap has two random bytes before the packet
|
||||
size -= 2;
|
||||
uint8 *p = packet;
|
||||
if (net_if_type == NET_IF_ETHERTAP) {
|
||||
p += 2; // Ethertap has two random bytes before the packet
|
||||
size -= 2;
|
||||
}
|
||||
|
||||
// Wrap packet in message block
|
||||
num_rx_packets++;
|
||||
|
@ -183,6 +183,7 @@ AC_HEADER_SYS_WAIT
|
||||
AC_CHECK_HEADERS(mach/vm_map.h mach/mach_init.h sys/mman.h)
|
||||
AC_CHECK_HEADERS(sys/time.h sys/times.h)
|
||||
AC_CHECK_HEADERS(unistd.h fcntl.h byteswap.h)
|
||||
AC_CHECK_HEADERS(linux/if.h linux/if_tun.h net/if.h net/if_tun.h)
|
||||
|
||||
dnl Checks for typedefs, structures, and compiler characteristics.
|
||||
AC_C_BIGENDIAN
|
||||
@ -273,6 +274,29 @@ AC_DEFUN(AC_TRANSLATE_DEFINE, [
|
||||
fi
|
||||
])
|
||||
|
||||
dnl Check that the host supports TUN/TAP devices
|
||||
AC_CACHE_CHECK([whether TUN/TAP is supported],
|
||||
ac_cv_tun_tap_support, [
|
||||
AC_TRY_COMPILE([
|
||||
#if defined(HAVE_LINUX_IF_H) && defined(HAVE_LINUX_IF_TUN_H)
|
||||
#include <linux/if.h>
|
||||
#include <linux/if_tun.h>
|
||||
#endif
|
||||
#if defined(HAVE_NET_IF_H) && defined(HAVE_NET_IF_TUN_H)
|
||||
#include <net/if.h>
|
||||
#include <net/if_tun.h>
|
||||
#endif
|
||||
], [
|
||||
struct ifreq ifr;
|
||||
memset(&ifr, 0, sizeof(ifr));
|
||||
ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
|
||||
],
|
||||
ac_cv_tun_tap_support=yes, ac_cv_tun_tap_support=no
|
||||
)
|
||||
])
|
||||
AC_TRANSLATE_DEFINE(ENABLE_TUNTAP, "$ac_cv_tun_tap_support",
|
||||
[Define if your system supports TUN/TAP devices.])
|
||||
|
||||
dnl Various checks if the system supports vm_allocate() and the like functions.
|
||||
have_mach_vm=no
|
||||
if [[ "x$ac_cv_func_vm_allocate" = "xyes" -a "x$ac_cv_func_vm_deallocate" = "xyes" -a \
|
||||
|
@ -30,6 +30,7 @@
|
||||
// Platform-specific preferences items
|
||||
prefs_desc platform_prefs_items[] = {
|
||||
{"ether", TYPE_STRING, false, "device name of Mac ethernet adapter"},
|
||||
{"etherconfig", TYPE_STRING, false, "path of network config script"},
|
||||
{"keycodes", TYPE_BOOLEAN, false, "use keycodes rather than keysyms to decode keyboard"},
|
||||
{"keycodefile", TYPE_STRING, false, "path of keycode translation file"},
|
||||
{"mousewheelmode", TYPE_INT32, false, "mouse wheel support mode (0=page up/down, 1=cursor up/down)"},
|
||||
|
@ -49,6 +49,7 @@ user_string_def platform_strings[] = {
|
||||
{STR_PROC_CPUINFO_WARN, "Cannot open /proc/cpuinfo (%s). Assuming 100MHz PowerPC 604."},
|
||||
{STR_NO_SHEEP_NET_DRIVER_WARN, "Cannot open %s (%s). Ethernet will not be available."},
|
||||
{STR_SHEEP_NET_ATTACH_WARN, "Cannot attach to Ethernet card (%s). Ethernet will not be available."},
|
||||
{STR_TUN_TAP_CONFIG_WARN, "Cannot configure TUN/TAP device (%s). Ethernet will not be available."},
|
||||
{STR_NO_AUDIO_DEV_WARN, "Cannot open %s (%s). Audio output will be disabled."},
|
||||
{STR_NO_AUDIO_WARN, "No audio device found, audio output will be disabled."},
|
||||
{STR_NO_ESD_WARN, "Cannot open ESD connection. Audio output will be disabled."},
|
||||
|
@ -42,6 +42,7 @@ enum {
|
||||
STR_PROC_CPUINFO_WARN,
|
||||
STR_NO_SHEEP_NET_DRIVER_WARN,
|
||||
STR_SHEEP_NET_ATTACH_WARN,
|
||||
STR_TUN_TAP_CONFIG_WARN,
|
||||
STR_NO_AUDIO_DEV_WARN,
|
||||
STR_NO_AUDIO_WARN,
|
||||
STR_NO_ESD_WARN,
|
||||
|
Loading…
x
Reference in New Issue
Block a user