2001-10-03 13:10:38 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2011-02-24 22:05:47 +00:00
|
|
|
// $Id$
|
2001-10-03 13:10:38 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2017-01-28 09:52:09 +00:00
|
|
|
// Copyright (C) 2001-2017 The Bochs Project
|
2001-04-10 01:04:59 +00:00
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library 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
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
2009-02-08 09:05:52 +00:00
|
|
|
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2009-02-07 21:05:31 +00:00
|
|
|
//
|
2001-04-10 01:04:59 +00:00
|
|
|
|
2011-08-16 17:31:16 +00:00
|
|
|
// Common networking and helper code to find and create pktmover classes
|
2001-04-10 01:04:59 +00:00
|
|
|
|
2011-08-16 17:31:16 +00:00
|
|
|
// Peter Grehan (grehan@iprg.nokia.com) coded the initial version of the
|
2001-04-10 01:04:59 +00:00
|
|
|
// NE2000/ether stuff.
|
|
|
|
|
2004-06-19 15:20:15 +00:00
|
|
|
#include "iodev.h"
|
2005-12-10 18:37:35 +00:00
|
|
|
|
2004-10-03 20:06:12 +00:00
|
|
|
#if BX_NETWORKING
|
2002-11-19 05:47:45 +00:00
|
|
|
|
2011-08-16 17:31:16 +00:00
|
|
|
#include "netmod.h"
|
2004-09-05 10:30:19 +00:00
|
|
|
|
2017-03-12 07:48:08 +00:00
|
|
|
#define LOG_THIS bx_netmod_ctl.
|
2017-02-27 22:26:43 +00:00
|
|
|
|
2017-03-12 07:48:08 +00:00
|
|
|
bx_netmod_ctl_c bx_netmod_ctl;
|
2001-04-10 01:04:59 +00:00
|
|
|
|
2017-03-12 07:48:08 +00:00
|
|
|
bx_netmod_ctl_c::bx_netmod_ctl_c()
|
2011-08-16 17:31:16 +00:00
|
|
|
{
|
2017-03-12 07:48:08 +00:00
|
|
|
put("netmodctl", "NETCTL");
|
2011-08-16 17:31:16 +00:00
|
|
|
}
|
|
|
|
|
2017-03-12 07:48:08 +00:00
|
|
|
void bx_netmod_ctl_c::init(void)
|
2011-08-16 17:31:16 +00:00
|
|
|
{
|
2017-03-12 07:48:08 +00:00
|
|
|
// Nothing here yet
|
2011-08-16 17:31:16 +00:00
|
|
|
}
|
|
|
|
|
2017-03-12 07:48:08 +00:00
|
|
|
void bx_netmod_ctl_c::exit(void)
|
2013-12-29 12:56:52 +00:00
|
|
|
{
|
2017-03-12 07:48:08 +00:00
|
|
|
eth_locator_c::cleanup();
|
2013-12-29 12:56:52 +00:00
|
|
|
}
|
|
|
|
|
2011-12-17 08:22:33 +00:00
|
|
|
void* bx_netmod_ctl_c::init_module(bx_list_c *base, void *rxh, void *rxstat, bx_devmodel_c *netdev)
|
2011-08-16 17:31:16 +00:00
|
|
|
{
|
|
|
|
eth_pktmover_c *ethmod;
|
|
|
|
|
|
|
|
// Attach to the selected ethernet module
|
|
|
|
const char *modname = SIM->get_param_enum("ethmod", base)->get_selected();
|
2017-03-12 07:48:08 +00:00
|
|
|
if (!eth_locator_c::module_present(modname)) {
|
2017-03-12 20:26:42 +00:00
|
|
|
#if BX_PLUGINS
|
2017-03-12 07:48:08 +00:00
|
|
|
PLUG_load_net_plugin(modname);
|
2017-03-12 20:26:42 +00:00
|
|
|
#else
|
|
|
|
BX_PANIC(("could not find networking module '%s'", modname));
|
|
|
|
#endif
|
2017-03-12 07:48:08 +00:00
|
|
|
}
|
2011-08-16 17:31:16 +00:00
|
|
|
ethmod = eth_locator_c::create(modname,
|
|
|
|
SIM->get_param_string("ethdev", base)->getptr(),
|
2013-01-19 12:25:53 +00:00
|
|
|
(const char *) SIM->get_param_string("mac", base)->getptr(),
|
2011-12-17 08:22:33 +00:00
|
|
|
(eth_rx_handler_t)rxh, (eth_rx_status_t)rxstat, netdev,
|
2011-08-16 17:31:16 +00:00
|
|
|
SIM->get_param_string("script", base)->getptr());
|
|
|
|
|
|
|
|
if (ethmod == NULL) {
|
2017-03-12 20:26:42 +00:00
|
|
|
BX_PANIC(("could not find networking module '%s'", modname));
|
2011-08-16 17:31:16 +00:00
|
|
|
// if they continue, use null.
|
2017-03-12 20:26:42 +00:00
|
|
|
BX_INFO(("could not find networking module '%s' - using 'null' instead", modname));
|
2011-08-16 17:31:16 +00:00
|
|
|
|
|
|
|
ethmod = eth_locator_c::create("null", NULL,
|
2013-01-19 12:25:53 +00:00
|
|
|
(const char *) SIM->get_param_string("mac", base)->getptr(),
|
2011-12-17 08:22:33 +00:00
|
|
|
(eth_rx_handler_t)rxh, (eth_rx_status_t)rxstat, netdev, "");
|
2011-08-16 17:31:16 +00:00
|
|
|
if (ethmod == NULL)
|
2017-03-12 20:26:42 +00:00
|
|
|
BX_PANIC(("could not locate 'null' module"));
|
2011-08-16 17:31:16 +00:00
|
|
|
}
|
|
|
|
return ethmod;
|
|
|
|
}
|
|
|
|
|
2001-04-10 01:04:59 +00:00
|
|
|
eth_locator_c *eth_locator_c::all;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Each pktmover module has a static locator class that registers
|
2008-01-26 22:24:03 +00:00
|
|
|
// here
|
2001-04-10 01:04:59 +00:00
|
|
|
//
|
|
|
|
eth_locator_c::eth_locator_c(const char *type)
|
|
|
|
{
|
|
|
|
next = all;
|
|
|
|
all = this;
|
|
|
|
this->type = type;
|
|
|
|
}
|
|
|
|
|
2017-03-12 07:48:08 +00:00
|
|
|
eth_locator_c::~eth_locator_c()
|
|
|
|
{
|
|
|
|
eth_locator_c *ptr = 0;
|
|
|
|
|
|
|
|
if (this == all) {
|
|
|
|
all = all->next;
|
|
|
|
} else {
|
|
|
|
ptr = all;
|
|
|
|
while (ptr != NULL) {
|
|
|
|
if (ptr->next != this) {
|
|
|
|
ptr = ptr->next;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ptr) {
|
|
|
|
ptr->next = this->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bx_bool eth_locator_c::module_present(const char *type)
|
|
|
|
{
|
|
|
|
eth_locator_c *ptr = 0;
|
|
|
|
|
|
|
|
for (ptr = all; ptr != NULL; ptr = ptr->next) {
|
|
|
|
if (strcmp(type, ptr->type) == 0)
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void eth_locator_c::cleanup()
|
|
|
|
{
|
|
|
|
#if BX_PLUGINS
|
|
|
|
while (all != NULL) {
|
|
|
|
PLUG_unload_net_plugin(all->type);
|
|
|
|
}
|
2017-02-27 22:26:43 +00:00
|
|
|
#endif
|
2017-03-12 07:48:08 +00:00
|
|
|
}
|
2001-06-17 23:08:27 +00:00
|
|
|
|
2001-04-10 01:04:59 +00:00
|
|
|
//
|
|
|
|
// Called by ethernet chip emulations to locate and create a pktmover
|
|
|
|
// object
|
|
|
|
//
|
|
|
|
eth_pktmover_c *
|
|
|
|
eth_locator_c::create(const char *type, const char *netif,
|
2009-04-13 13:33:11 +00:00
|
|
|
const char *macaddr,
|
2011-12-17 08:22:33 +00:00
|
|
|
eth_rx_handler_t rxh, eth_rx_status_t rxstat,
|
|
|
|
bx_devmodel_c *dev, const char *script)
|
2001-04-10 01:04:59 +00:00
|
|
|
{
|
|
|
|
eth_locator_c *ptr = 0;
|
|
|
|
|
2017-03-12 07:48:08 +00:00
|
|
|
for (ptr = all; ptr != NULL; ptr = ptr->next) {
|
|
|
|
if (strcmp(type, ptr->type) == 0)
|
|
|
|
return (ptr->allocate(netif, macaddr, rxh, rxstat, dev, script));
|
2017-02-27 22:26:43 +00:00
|
|
|
}
|
2017-03-12 07:48:08 +00:00
|
|
|
return NULL;
|
2001-04-10 01:04:59 +00:00
|
|
|
}
|
2002-11-19 05:47:45 +00:00
|
|
|
|
2011-02-26 20:10:06 +00:00
|
|
|
#if (BX_NETMOD_TAP==1) || (BX_NETMOD_TUNTAP==1) || (BX_NETMOD_VDE==1)
|
2003-04-28 13:01:09 +00:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
#include <sys/wait.h>
|
|
|
|
};
|
|
|
|
|
|
|
|
// This is a utility script used for tuntap or ethertap
|
2009-04-13 13:33:11 +00:00
|
|
|
int execute_script(bx_devmodel_c *netdev, const char* scriptname, char* arg1)
|
2003-04-26 14:48:45 +00:00
|
|
|
{
|
|
|
|
int pid,status;
|
|
|
|
|
|
|
|
if (!(pid=fork())) {
|
|
|
|
char filename[BX_PATHNAME_LEN];
|
2008-02-15 22:05:43 +00:00
|
|
|
if (scriptname[0]=='/') {
|
|
|
|
strcpy(filename, scriptname);
|
2003-04-26 14:48:45 +00:00
|
|
|
}
|
|
|
|
else {
|
2008-02-15 22:05:43 +00:00
|
|
|
getcwd(filename, BX_PATHNAME_LEN);
|
|
|
|
strcat(filename, "/");
|
|
|
|
strcat(filename, scriptname);
|
2003-04-26 14:48:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// execute the script
|
2011-03-01 20:47:12 +00:00
|
|
|
BX_INFO(("Executing script '%s %s'", filename, arg1));
|
2003-04-26 14:48:45 +00:00
|
|
|
execle(filename, scriptname, arg1, NULL, NULL);
|
|
|
|
|
|
|
|
// if we get here there has been a problem
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
wait (&status);
|
|
|
|
if (!WIFEXITED(status)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return WEXITSTATUS(status);
|
|
|
|
}
|
|
|
|
|
2011-02-26 20:10:06 +00:00
|
|
|
#endif
|
2003-04-28 13:01:09 +00:00
|
|
|
|
2009-04-19 17:25:40 +00:00
|
|
|
void write_pktlog_txt(FILE *pktlog_txt, const Bit8u *buf, unsigned len, bx_bool host_to_guest)
|
|
|
|
{
|
|
|
|
Bit8u *charbuf = (Bit8u *)buf;
|
2012-09-24 19:32:57 +00:00
|
|
|
Bit8u rawbuf[18];
|
|
|
|
unsigned c, n;
|
2009-04-19 17:25:40 +00:00
|
|
|
|
|
|
|
if (!host_to_guest) {
|
|
|
|
fprintf(pktlog_txt, "a packet from guest to host, length %u\n", len);
|
|
|
|
} else {
|
|
|
|
fprintf(pktlog_txt, "a packet from host to guest, length %u\n", len);
|
|
|
|
}
|
2012-09-24 19:32:57 +00:00
|
|
|
n = 0;
|
|
|
|
c = 0;
|
|
|
|
while (n < len) {
|
2009-04-19 17:25:40 +00:00
|
|
|
fprintf(pktlog_txt, "%02x ", (unsigned)charbuf[n]);
|
2012-09-24 19:32:57 +00:00
|
|
|
if ((charbuf[n] >= 0x20) && (charbuf[n] < 0x80)) {
|
|
|
|
rawbuf[c++] = charbuf[n];
|
|
|
|
} else {
|
|
|
|
rawbuf[c++] = '.';
|
|
|
|
}
|
|
|
|
n++;
|
|
|
|
if (((n % 16) == 0) || (n == len)) {
|
|
|
|
rawbuf[c] = 0;
|
|
|
|
if (n == len) {
|
|
|
|
while (c++ < 16) fprintf(pktlog_txt, " ");
|
|
|
|
}
|
|
|
|
fprintf(pktlog_txt, " %s\n", rawbuf);
|
|
|
|
c = 0;
|
|
|
|
}
|
2009-04-19 17:25:40 +00:00
|
|
|
}
|
2012-09-24 19:32:57 +00:00
|
|
|
fprintf(pktlog_txt, "--\n");
|
2009-04-19 17:25:40 +00:00
|
|
|
fflush(pktlog_txt);
|
|
|
|
}
|
2012-08-16 11:59:44 +00:00
|
|
|
|
2004-10-03 20:06:12 +00:00
|
|
|
#endif /* if BX_NETWORKING */
|