2005-04-21 16:53:53 +02:00
|
|
|
/*
|
|
|
|
inet/mnx_eth.c
|
|
|
|
|
|
|
|
Created: Jan 2, 1992 by Philip Homburg
|
|
|
|
|
|
|
|
Copyright 1995 Philip Homburg
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "inet.h"
|
|
|
|
#include "proto.h"
|
|
|
|
#include "osdep_eth.h"
|
|
|
|
#include "generic/type.h"
|
|
|
|
|
|
|
|
#include "generic/assert.h"
|
|
|
|
#include "generic/buf.h"
|
|
|
|
#include "generic/clock.h"
|
|
|
|
#include "generic/eth.h"
|
|
|
|
#include "generic/eth_int.h"
|
|
|
|
#include "generic/sr.h"
|
|
|
|
|
|
|
|
THIS_FILE
|
|
|
|
|
2005-06-28 17:19:58 +02:00
|
|
|
static int recv_debug= 0;
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
FORWARD _PROTOTYPE( void setup_read, (eth_port_t *eth_port) );
|
|
|
|
FORWARD _PROTOTYPE( void read_int, (eth_port_t *eth_port, int count) );
|
|
|
|
FORWARD _PROTOTYPE( void write_int, (eth_port_t *eth_port) );
|
|
|
|
FORWARD _PROTOTYPE( void eth_recvev, (event_t *ev, ev_arg_t ev_arg) );
|
|
|
|
FORWARD _PROTOTYPE( void eth_sendev, (event_t *ev, ev_arg_t ev_arg) );
|
|
|
|
FORWARD _PROTOTYPE( eth_port_t *find_port, (message *m) );
|
2005-10-21 13:51:45 +02:00
|
|
|
FORWARD _PROTOTYPE( void eth_restart, (eth_port_t *eth_port, int tasknr) );
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
PUBLIC void osdep_eth_init()
|
|
|
|
{
|
2005-06-28 17:19:58 +02:00
|
|
|
int i, r, tasknr, rport;
|
2005-04-21 16:53:53 +02:00
|
|
|
struct eth_conf *ecp;
|
2005-06-28 17:19:58 +02:00
|
|
|
eth_port_t *eth_port, *rep;
|
|
|
|
message mess;
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2005-06-28 17:19:58 +02:00
|
|
|
/* First initialize normal ethernet interfaces */
|
|
|
|
for (i= 0, ecp= eth_conf, eth_port= eth_port_table;
|
|
|
|
i<eth_conf_nr; i++, ecp++, eth_port++)
|
2005-04-21 16:53:53 +02:00
|
|
|
{
|
2005-06-28 17:19:58 +02:00
|
|
|
if (eth_is_vlan(ecp))
|
|
|
|
continue;
|
|
|
|
#ifdef __minix_vmd
|
|
|
|
r= sys_findproc(ecp->ec_task, &tasknr, 0);
|
|
|
|
#else /* Minix 3 */
|
2005-06-02 14:43:21 +02:00
|
|
|
r = findproc(ecp->ec_task, &tasknr);
|
2005-06-28 17:19:58 +02:00
|
|
|
#endif
|
2005-04-21 16:53:53 +02:00
|
|
|
if (r != OK)
|
|
|
|
{
|
2005-06-28 17:19:58 +02:00
|
|
|
printf("eth%d: unable to find task %s: %d\n",
|
|
|
|
i, ecp->ec_task, r);
|
|
|
|
continue;
|
2005-04-21 16:53:53 +02:00
|
|
|
}
|
|
|
|
|
2005-06-28 17:19:58 +02:00
|
|
|
eth_port->etp_osdep.etp_port= ecp->ec_port;
|
2005-04-21 16:53:53 +02:00
|
|
|
eth_port->etp_osdep.etp_task= tasknr;
|
|
|
|
ev_init(ð_port->etp_osdep.etp_recvev);
|
|
|
|
|
|
|
|
mess.m_type= DL_INIT;
|
|
|
|
mess.DL_PORT= eth_port->etp_osdep.etp_port;
|
|
|
|
mess.DL_PROC= this_proc;
|
|
|
|
mess.DL_MODE= DL_NOMODE;
|
|
|
|
|
|
|
|
r= send(eth_port->etp_osdep.etp_task, &mess);
|
|
|
|
if (r<0)
|
|
|
|
{
|
|
|
|
printf(
|
|
|
|
"osdep_eth_init: unable to send to ethernet task, error= %d\n",
|
|
|
|
r);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2005-10-21 18:51:21 +02:00
|
|
|
r= receive(eth_port->etp_osdep.etp_task, &mess);
|
|
|
|
if (r<0)
|
|
|
|
{
|
|
|
|
printf(
|
|
|
|
"osdep_eth_init: unable to receive from ethernet task, error= %d\n",
|
|
|
|
r);
|
|
|
|
continue;
|
|
|
|
}
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
if (mess.m3_i1 == ENXIO)
|
|
|
|
{
|
|
|
|
printf(
|
|
|
|
"osdep_eth_init: no ethernet device at task=%d,port=%d\n",
|
2005-06-28 17:19:58 +02:00
|
|
|
eth_port->etp_osdep.etp_task,
|
2005-04-21 16:53:53 +02:00
|
|
|
eth_port->etp_osdep.etp_port);
|
|
|
|
continue;
|
|
|
|
}
|
2005-06-28 17:19:58 +02:00
|
|
|
if (mess.m3_i1 < 0)
|
|
|
|
ip_panic(("osdep_eth_init: DL_INIT returned error %d\n",
|
2005-04-21 16:53:53 +02:00
|
|
|
mess.m3_i1));
|
2005-06-28 17:19:58 +02:00
|
|
|
|
|
|
|
if (mess.m3_i1 != eth_port->etp_osdep.etp_port)
|
|
|
|
{
|
|
|
|
ip_panic((
|
|
|
|
"osdep_eth_init: got reply for wrong port (got %d, expected %d)\n",
|
|
|
|
mess.m3_i1, eth_port->etp_osdep.etp_port));
|
|
|
|
}
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
eth_port->etp_ethaddr= *(ether_addr_t *)mess.m3_ca1;
|
|
|
|
|
|
|
|
sr_add_minor(if2minor(ecp->ec_ifno, ETH_DEV_OFF),
|
|
|
|
i, eth_open, eth_close, eth_read,
|
2005-06-28 17:19:58 +02:00
|
|
|
eth_write, eth_ioctl, eth_cancel, eth_select);
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
eth_port->etp_flags |= EPF_ENABLED;
|
2005-06-28 17:19:58 +02:00
|
|
|
eth_port->etp_vlan= 0;
|
|
|
|
eth_port->etp_vlan_port= NULL;
|
2005-04-21 16:53:53 +02:00
|
|
|
eth_port->etp_wr_pack= 0;
|
|
|
|
eth_port->etp_rd_pack= 0;
|
|
|
|
setup_read (eth_port);
|
2005-06-28 17:19:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* And now come the VLANs */
|
|
|
|
for (i= 0, ecp= eth_conf, eth_port= eth_port_table;
|
|
|
|
i<eth_conf_nr; i++, ecp++, eth_port++)
|
|
|
|
{
|
|
|
|
if (!eth_is_vlan(ecp))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
eth_port->etp_osdep.etp_port= ecp->ec_port;
|
|
|
|
eth_port->etp_osdep.etp_task= ANY;
|
|
|
|
ev_init(ð_port->etp_osdep.etp_recvev);
|
|
|
|
|
|
|
|
rport= eth_port->etp_osdep.etp_port;
|
|
|
|
assert(rport >= 0 && rport < eth_conf_nr);
|
|
|
|
rep= ð_port_table[rport];
|
2005-07-05 13:08:15 +02:00
|
|
|
if (!(rep->etp_flags & EPF_ENABLED))
|
2005-06-28 17:19:58 +02:00
|
|
|
{
|
|
|
|
printf(
|
|
|
|
"eth%d: underlying ethernet device %d not enabled",
|
|
|
|
i, rport);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (rep->etp_vlan != 0)
|
|
|
|
{
|
|
|
|
printf(
|
|
|
|
"eth%d: underlying ethernet device %d is a VLAN",
|
|
|
|
i, rport);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
eth_port->etp_ethaddr= rep->etp_ethaddr;
|
|
|
|
|
|
|
|
sr_add_minor(if2minor(ecp->ec_ifno, ETH_DEV_OFF),
|
|
|
|
i, eth_open, eth_close, eth_read,
|
|
|
|
eth_write, eth_ioctl, eth_cancel, eth_select);
|
|
|
|
|
|
|
|
eth_port->etp_flags |= EPF_ENABLED;
|
|
|
|
eth_port->etp_vlan= ecp->ec_vlan;
|
|
|
|
eth_port->etp_vlan_port= rep;
|
|
|
|
assert(eth_port->etp_vlan != 0);
|
|
|
|
eth_port->etp_wr_pack= 0;
|
|
|
|
eth_port->etp_rd_pack= 0;
|
|
|
|
eth_reg_vlan(rep, eth_port);
|
2005-04-21 16:53:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PUBLIC void eth_write_port(eth_port, pack)
|
|
|
|
eth_port_t *eth_port;
|
|
|
|
acc_t *pack;
|
|
|
|
{
|
|
|
|
eth_port_t *loc_port;
|
|
|
|
message mess1, block_msg;
|
|
|
|
int i, pack_size;
|
|
|
|
acc_t *pack_ptr;
|
|
|
|
iovec_t *iovec;
|
|
|
|
u8_t *eth_dst_ptr;
|
|
|
|
int multicast, r;
|
|
|
|
ev_arg_t ev_arg;
|
|
|
|
|
2005-06-28 17:19:58 +02:00
|
|
|
assert(!no_ethWritePort);
|
|
|
|
assert(!eth_port->etp_vlan);
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
assert(eth_port->etp_wr_pack == NULL);
|
|
|
|
eth_port->etp_wr_pack= pack;
|
|
|
|
|
|
|
|
iovec= eth_port->etp_osdep.etp_wr_iovec;
|
|
|
|
pack_size= 0;
|
|
|
|
for (i=0, pack_ptr= pack; i<IOVEC_NR && pack_ptr; i++,
|
|
|
|
pack_ptr= pack_ptr->acc_next)
|
|
|
|
{
|
|
|
|
iovec[i].iov_addr= (vir_bytes)ptr2acc_data(pack_ptr);
|
|
|
|
pack_size += iovec[i].iov_size= pack_ptr->acc_length;
|
|
|
|
}
|
|
|
|
if (i>= IOVEC_NR)
|
|
|
|
{
|
|
|
|
pack= bf_pack(pack); /* packet is too fragmented */
|
|
|
|
eth_port->etp_wr_pack= pack;
|
|
|
|
pack_size= 0;
|
|
|
|
for (i=0, pack_ptr= pack; i<IOVEC_NR && pack_ptr;
|
|
|
|
i++, pack_ptr= pack_ptr->acc_next)
|
|
|
|
{
|
|
|
|
iovec[i].iov_addr= (vir_bytes)ptr2acc_data(pack_ptr);
|
|
|
|
pack_size += iovec[i].iov_size= pack_ptr->acc_length;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert (i< IOVEC_NR);
|
|
|
|
assert (pack_size >= ETH_MIN_PACK_SIZE);
|
|
|
|
|
|
|
|
if (i == 1)
|
|
|
|
{
|
|
|
|
/* simple packets can be sent using DL_WRITE instead of
|
|
|
|
* DL_WRITEV.
|
|
|
|
*/
|
|
|
|
mess1.DL_COUNT= iovec[0].iov_size;
|
|
|
|
mess1.DL_ADDR= (char *)iovec[0].iov_addr;
|
|
|
|
mess1.m_type= DL_WRITE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
mess1.DL_COUNT= i;
|
|
|
|
mess1.DL_ADDR= (char *)iovec;
|
|
|
|
mess1.m_type= DL_WRITEV;
|
|
|
|
}
|
|
|
|
mess1.DL_PORT= eth_port->etp_osdep.etp_port;
|
|
|
|
mess1.DL_PROC= this_proc;
|
|
|
|
mess1.DL_MODE= DL_NOMODE;
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
2005-10-21 18:51:21 +02:00
|
|
|
r= sendrec(eth_port->etp_osdep.etp_task, &mess1);
|
2005-04-21 16:53:53 +02:00
|
|
|
if (r != ELOCKED)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* ethernet task is sending to this task, I hope */
|
|
|
|
r= receive(eth_port->etp_osdep.etp_task, &block_msg);
|
|
|
|
if (r < 0)
|
|
|
|
ip_panic(("unable to receive"));
|
|
|
|
|
|
|
|
loc_port= eth_port;
|
2005-06-28 17:19:58 +02:00
|
|
|
if (loc_port->etp_osdep.etp_port != block_msg.DL_PORT ||
|
|
|
|
loc_port->etp_osdep.etp_task != block_msg.m_source)
|
2005-04-21 16:53:53 +02:00
|
|
|
{
|
|
|
|
loc_port= find_port(&block_msg);
|
|
|
|
}
|
|
|
|
assert(block_msg.DL_STAT & (DL_PACK_SEND|DL_PACK_RECV));
|
|
|
|
if (block_msg.DL_STAT & DL_PACK_SEND)
|
|
|
|
{
|
|
|
|
assert(loc_port != eth_port);
|
|
|
|
loc_port->etp_osdep.etp_sendrepl= block_msg;
|
|
|
|
ev_arg.ev_ptr= loc_port;
|
|
|
|
ev_enqueue(&loc_port->etp_sendev, eth_sendev, ev_arg);
|
|
|
|
}
|
|
|
|
if (block_msg.DL_STAT & DL_PACK_RECV)
|
|
|
|
{
|
2005-06-28 17:19:58 +02:00
|
|
|
if (recv_debug)
|
|
|
|
{
|
|
|
|
printf(
|
|
|
|
"eth_write_port(block_msg): eth%d got DL_PACK_RECV\n",
|
|
|
|
loc_port-eth_port_table);
|
|
|
|
}
|
2005-04-21 16:53:53 +02:00
|
|
|
loc_port->etp_osdep.etp_recvrepl= block_msg;
|
|
|
|
ev_arg.ev_ptr= loc_port;
|
|
|
|
ev_enqueue(&loc_port->etp_osdep.etp_recvev,
|
|
|
|
eth_recvev, ev_arg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (r < 0)
|
2005-10-21 18:51:21 +02:00
|
|
|
{
|
|
|
|
printf("eth_write_port: sendrec to %d failed: %d\n",
|
|
|
|
eth_port->etp_osdep.etp_task, r);
|
|
|
|
return;
|
|
|
|
}
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
assert(mess1.m_type == DL_TASK_REPLY &&
|
2005-06-28 17:19:58 +02:00
|
|
|
mess1.DL_PORT == eth_port->etp_osdep.etp_port &&
|
2005-04-21 16:53:53 +02:00
|
|
|
mess1.DL_PROC == this_proc);
|
|
|
|
assert((mess1.DL_STAT >> 16) == OK);
|
|
|
|
|
|
|
|
if (mess1.DL_STAT & DL_PACK_RECV)
|
|
|
|
{
|
2005-06-28 17:19:58 +02:00
|
|
|
if (recv_debug)
|
|
|
|
{
|
|
|
|
printf(
|
|
|
|
"eth_write_port(mess1): eth%d got DL_PACK_RECV\n",
|
|
|
|
mess1.DL_PORT);
|
|
|
|
}
|
2005-04-21 16:53:53 +02:00
|
|
|
eth_port->etp_osdep.etp_recvrepl= mess1;
|
|
|
|
ev_arg.ev_ptr= eth_port;
|
|
|
|
ev_enqueue(ð_port->etp_osdep.etp_recvev, eth_recvev,
|
|
|
|
ev_arg);
|
|
|
|
}
|
|
|
|
if (!(mess1.DL_STAT & DL_PACK_SEND))
|
|
|
|
{
|
|
|
|
/* Packet is not yet sent. */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If the port is in promiscuous mode or the packet is
|
2005-06-28 17:19:58 +02:00
|
|
|
* broad- or multicast, enqueue the reply packet.
|
2005-04-21 16:53:53 +02:00
|
|
|
*/
|
|
|
|
eth_dst_ptr= (u8_t *)ptr2acc_data(pack);
|
|
|
|
multicast= (*eth_dst_ptr & 1); /* low order bit indicates multicast */
|
|
|
|
if (multicast || (eth_port->etp_osdep.etp_recvconf & NWEO_EN_PROMISC))
|
|
|
|
{
|
|
|
|
eth_port->etp_osdep.etp_sendrepl= mess1;
|
|
|
|
ev_arg.ev_ptr= eth_port;
|
|
|
|
ev_enqueue(ð_port->etp_sendev, eth_sendev, ev_arg);
|
|
|
|
|
|
|
|
/* Pretend that we didn't get a reply. */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* packet is sent */
|
|
|
|
bf_afree(eth_port->etp_wr_pack);
|
|
|
|
eth_port->etp_wr_pack= NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
PUBLIC void eth_rec(m)
|
|
|
|
message *m;
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
eth_port_t *loc_port;
|
|
|
|
int stat;
|
|
|
|
|
|
|
|
assert(m->m_type == DL_TASK_REPLY);
|
|
|
|
|
|
|
|
set_time (m->DL_CLCK);
|
|
|
|
|
|
|
|
for (i=0, loc_port= eth_port_table; i<eth_conf_nr; i++, loc_port++)
|
|
|
|
{
|
|
|
|
if (loc_port->etp_osdep.etp_port == m->DL_PORT &&
|
|
|
|
loc_port->etp_osdep.etp_task == m->m_source)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (i == eth_conf_nr)
|
|
|
|
{
|
|
|
|
ip_panic(("message from unknown source: %d:%d",
|
|
|
|
m->m_source, m->DL_PORT));
|
|
|
|
}
|
|
|
|
|
|
|
|
stat= m->DL_STAT & 0xffff;
|
|
|
|
|
|
|
|
assert(stat & (DL_PACK_SEND|DL_PACK_RECV));
|
|
|
|
if (stat & DL_PACK_SEND)
|
|
|
|
write_int(loc_port);
|
|
|
|
if (stat & DL_PACK_RECV)
|
2005-06-28 17:19:58 +02:00
|
|
|
{
|
|
|
|
if (recv_debug)
|
|
|
|
{
|
|
|
|
printf("eth_rec: eth%d got DL_PACK_RECV\n",
|
|
|
|
m->DL_PORT);
|
|
|
|
}
|
2005-04-21 16:53:53 +02:00
|
|
|
read_int(loc_port, m->DL_COUNT);
|
2005-06-28 17:19:58 +02:00
|
|
|
}
|
2005-04-21 16:53:53 +02:00
|
|
|
}
|
|
|
|
|
2005-10-21 13:51:45 +02:00
|
|
|
PUBLIC void eth_check_drivers(m)
|
|
|
|
message *m;
|
|
|
|
{
|
|
|
|
int i, r, tasknr;
|
|
|
|
struct eth_conf *ecp;
|
|
|
|
eth_port_t *eth_port;
|
|
|
|
char *drivername;
|
|
|
|
|
|
|
|
tasknr= m->m_source;
|
|
|
|
printf("eth_check_drivers: got a notification from %d\n", tasknr);
|
|
|
|
|
|
|
|
m->m_type= DL_GETNAME;
|
|
|
|
r= sendrec(tasknr, m);
|
|
|
|
if (r != OK)
|
|
|
|
{
|
|
|
|
printf("eth_check_drivers: sendrec to %d failed: %d\n",
|
|
|
|
tasknr, r);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (m->m_type != DL_NAME_REPLY)
|
|
|
|
{
|
|
|
|
printf(
|
|
|
|
"eth_check_drivers: got bad getname reply (%d) from %d\n",
|
|
|
|
m->m_type, tasknr);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
drivername= m->m3_ca1;
|
|
|
|
printf("eth_check_drivers: got name: %s\n", drivername);
|
|
|
|
|
|
|
|
/* Re-init ethernet interfaces */
|
|
|
|
for (i= 0, ecp= eth_conf, eth_port= eth_port_table;
|
|
|
|
i<eth_conf_nr; i++, ecp++, eth_port++)
|
|
|
|
{
|
|
|
|
if (eth_is_vlan(ecp))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (strcmp(ecp->ec_task, drivername) != 0)
|
|
|
|
{
|
|
|
|
/* Wrong driver */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
eth_restart(eth_port, tasknr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
PUBLIC int eth_get_stat(eth_port, eth_stat)
|
|
|
|
eth_port_t *eth_port;
|
|
|
|
eth_stat_t *eth_stat;
|
|
|
|
{
|
2005-10-21 18:51:21 +02:00
|
|
|
int r;
|
2005-04-21 16:53:53 +02:00
|
|
|
message mess, mlocked;
|
|
|
|
|
2005-06-28 17:19:58 +02:00
|
|
|
assert(!eth_port->etp_vlan);
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
mess.m_type= DL_GETSTAT;
|
|
|
|
mess.DL_PORT= eth_port->etp_osdep.etp_port;
|
|
|
|
mess.DL_PROC= this_proc;
|
|
|
|
mess.DL_ADDR= (char *)eth_stat;
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
2005-10-21 18:51:21 +02:00
|
|
|
r= sendrec(eth_port->etp_osdep.etp_task, &mess);
|
|
|
|
if (r != ELOCKED)
|
2005-04-21 16:53:53 +02:00
|
|
|
break;
|
2005-10-21 18:51:21 +02:00
|
|
|
|
|
|
|
r= receive(eth_port->etp_osdep.etp_task, &mlocked);
|
|
|
|
assert(r == OK);
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
compare(mlocked.m_type, ==, DL_TASK_REPLY);
|
|
|
|
eth_rec(&mlocked);
|
|
|
|
}
|
|
|
|
|
2005-10-21 18:51:21 +02:00
|
|
|
if (r != OK)
|
|
|
|
{
|
|
|
|
printf("eth_get_stat: sendrec to %d failed: %d\n",
|
|
|
|
eth_port->etp_osdep.etp_task, r);
|
|
|
|
return EIO;
|
|
|
|
}
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
assert(mess.m_type == DL_TASK_REPLY);
|
|
|
|
|
2005-10-21 18:51:21 +02:00
|
|
|
r= mess.DL_STAT >> 16;
|
|
|
|
assert (r == 0);
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
if (mess.DL_STAT)
|
|
|
|
{
|
|
|
|
eth_rec(&mess);
|
|
|
|
}
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
PUBLIC void eth_set_rec_conf (eth_port, flags)
|
|
|
|
eth_port_t *eth_port;
|
|
|
|
u32_t flags;
|
|
|
|
{
|
2005-10-21 18:51:21 +02:00
|
|
|
int r;
|
2005-04-21 16:53:53 +02:00
|
|
|
unsigned dl_flags;
|
|
|
|
message mess, repl_mess;
|
|
|
|
|
2005-06-28 17:19:58 +02:00
|
|
|
assert(!eth_port->etp_vlan);
|
|
|
|
|
2005-10-21 18:51:21 +02:00
|
|
|
eth_port->etp_osdep.etp_recvconf= flags;
|
2005-04-21 16:53:53 +02:00
|
|
|
dl_flags= DL_NOMODE;
|
|
|
|
if (flags & NWEO_EN_BROAD)
|
|
|
|
dl_flags |= DL_BROAD_REQ;
|
|
|
|
if (flags & NWEO_EN_MULTI)
|
|
|
|
dl_flags |= DL_MULTI_REQ;
|
|
|
|
if (flags & NWEO_EN_PROMISC)
|
|
|
|
dl_flags |= DL_PROMISC_REQ;
|
|
|
|
|
|
|
|
mess.m_type= DL_INIT;
|
|
|
|
mess.DL_PORT= eth_port->etp_osdep.etp_port;
|
|
|
|
mess.DL_PROC= this_proc;
|
|
|
|
mess.DL_MODE= dl_flags;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
2005-10-21 18:51:21 +02:00
|
|
|
r= sendrec(eth_port->etp_osdep.etp_task, &mess);
|
|
|
|
if (r == ELOCKED) /* etp_task is sending to this task,
|
2005-06-28 17:19:58 +02:00
|
|
|
I hope */
|
2005-04-21 16:53:53 +02:00
|
|
|
{
|
2005-06-28 17:19:58 +02:00
|
|
|
if (receive (eth_port->etp_osdep.etp_task,
|
2005-04-21 16:53:53 +02:00
|
|
|
&repl_mess)< 0)
|
|
|
|
{
|
|
|
|
ip_panic(("unable to receive"));
|
|
|
|
}
|
|
|
|
|
|
|
|
compare(repl_mess.m_type, ==, DL_TASK_REPLY);
|
|
|
|
eth_rec(&repl_mess);
|
|
|
|
}
|
2005-10-21 18:51:21 +02:00
|
|
|
} while (r == ELOCKED);
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2005-10-21 18:51:21 +02:00
|
|
|
if (r < 0)
|
|
|
|
{
|
|
|
|
printf("eth_set_rec_conf: sendrec to %d failed: %d\n",
|
|
|
|
eth_port->etp_osdep.etp_task, r);
|
|
|
|
return;
|
|
|
|
}
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2005-10-21 18:51:21 +02:00
|
|
|
assert (mess.m_type == DL_INIT_REPLY);
|
|
|
|
if (mess.m3_i1 != eth_port->etp_osdep.etp_port)
|
2005-04-21 16:53:53 +02:00
|
|
|
{
|
|
|
|
ip_panic(("got reply for wrong port"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PRIVATE void write_int(eth_port)
|
|
|
|
eth_port_t *eth_port;
|
|
|
|
{
|
|
|
|
acc_t *pack;
|
|
|
|
int multicast;
|
|
|
|
u8_t *eth_dst_ptr;
|
|
|
|
|
|
|
|
pack= eth_port->etp_wr_pack;
|
|
|
|
eth_port->etp_wr_pack= NULL;
|
|
|
|
|
|
|
|
eth_dst_ptr= (u8_t *)ptr2acc_data(pack);
|
|
|
|
multicast= (*eth_dst_ptr & 1); /* low order bit indicates multicast */
|
|
|
|
if (multicast || (eth_port->etp_osdep.etp_recvconf & NWEO_EN_PROMISC))
|
2005-06-28 17:19:58 +02:00
|
|
|
{
|
|
|
|
assert(!no_ethWritePort);
|
|
|
|
no_ethWritePort= 1;
|
2005-04-21 16:53:53 +02:00
|
|
|
eth_arrive(eth_port, pack, bf_bufsize(pack));
|
2005-06-28 17:19:58 +02:00
|
|
|
assert(no_ethWritePort);
|
|
|
|
no_ethWritePort= 0;
|
|
|
|
}
|
2005-04-21 16:53:53 +02:00
|
|
|
else
|
|
|
|
bf_afree(pack);
|
|
|
|
|
|
|
|
eth_restart_write(eth_port);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRIVATE void read_int(eth_port, count)
|
|
|
|
eth_port_t *eth_port;
|
|
|
|
int count;
|
|
|
|
{
|
|
|
|
acc_t *pack, *cut_pack;
|
|
|
|
|
|
|
|
pack= eth_port->etp_rd_pack;
|
|
|
|
eth_port->etp_rd_pack= NULL;
|
|
|
|
|
|
|
|
cut_pack= bf_cut(pack, 0, count);
|
|
|
|
bf_afree(pack);
|
|
|
|
|
2005-06-28 17:19:58 +02:00
|
|
|
assert(!no_ethWritePort);
|
|
|
|
no_ethWritePort= 1;
|
2005-04-21 16:53:53 +02:00
|
|
|
eth_arrive(eth_port, cut_pack, count);
|
2005-06-28 17:19:58 +02:00
|
|
|
assert(no_ethWritePort);
|
|
|
|
no_ethWritePort= 0;
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
eth_port->etp_flags &= ~(EPF_READ_IP|EPF_READ_SP);
|
|
|
|
setup_read(eth_port);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRIVATE void setup_read(eth_port)
|
|
|
|
eth_port_t *eth_port;
|
|
|
|
{
|
|
|
|
eth_port_t *loc_port;
|
|
|
|
acc_t *pack, *pack_ptr;
|
|
|
|
message mess1, block_msg;
|
|
|
|
iovec_t *iovec;
|
|
|
|
ev_arg_t ev_arg;
|
|
|
|
int i, r;
|
|
|
|
|
2005-06-28 17:19:58 +02:00
|
|
|
assert(!eth_port->etp_vlan);
|
2005-04-21 16:53:53 +02:00
|
|
|
assert(!(eth_port->etp_flags & (EPF_READ_IP|EPF_READ_SP)));
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
assert (!eth_port->etp_rd_pack);
|
|
|
|
|
|
|
|
iovec= eth_port->etp_osdep.etp_rd_iovec;
|
2005-06-28 17:19:58 +02:00
|
|
|
pack= bf_memreq (ETH_MAX_PACK_SIZE_TAGGED);
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
for (i=0, pack_ptr= pack; i<RD_IOVEC && pack_ptr;
|
|
|
|
i++, pack_ptr= pack_ptr->acc_next)
|
|
|
|
{
|
|
|
|
iovec[i].iov_addr= (vir_bytes)ptr2acc_data(pack_ptr);
|
|
|
|
iovec[i].iov_size= (vir_bytes)pack_ptr->acc_length;
|
|
|
|
}
|
|
|
|
assert (!pack_ptr);
|
|
|
|
|
|
|
|
mess1.m_type= DL_READV;
|
|
|
|
mess1.DL_PORT= eth_port->etp_osdep.etp_port;
|
|
|
|
mess1.DL_PROC= this_proc;
|
|
|
|
mess1.DL_COUNT= i;
|
|
|
|
mess1.DL_ADDR= (char *)iovec;
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
2005-06-28 17:19:58 +02:00
|
|
|
if (recv_debug)
|
|
|
|
{
|
|
|
|
printf("eth%d: sending DL_READV\n",
|
|
|
|
mess1.DL_PORT);
|
|
|
|
}
|
2005-10-21 18:51:21 +02:00
|
|
|
r= sendrec(eth_port->etp_osdep.etp_task, &mess1);
|
2005-04-21 16:53:53 +02:00
|
|
|
if (r != ELOCKED)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* ethernet task is sending to this task, I hope */
|
|
|
|
r= receive(eth_port->etp_osdep.etp_task, &block_msg);
|
|
|
|
if (r < 0)
|
|
|
|
ip_panic(("unable to receive"));
|
|
|
|
|
|
|
|
loc_port= eth_port;
|
2005-06-28 17:19:58 +02:00
|
|
|
if (loc_port->etp_osdep.etp_port != block_msg.DL_PORT ||
|
|
|
|
loc_port->etp_osdep.etp_task !=
|
|
|
|
block_msg.m_source)
|
2005-04-21 16:53:53 +02:00
|
|
|
{
|
|
|
|
loc_port= find_port(&block_msg);
|
|
|
|
}
|
|
|
|
assert(block_msg.DL_STAT &
|
|
|
|
(DL_PACK_SEND|DL_PACK_RECV));
|
|
|
|
if (block_msg.DL_STAT & DL_PACK_SEND)
|
|
|
|
{
|
|
|
|
loc_port->etp_osdep.etp_sendrepl= block_msg;
|
|
|
|
ev_arg.ev_ptr= loc_port;
|
|
|
|
ev_enqueue(&loc_port->etp_sendev, eth_sendev,
|
|
|
|
ev_arg);
|
|
|
|
}
|
|
|
|
if (block_msg.DL_STAT & DL_PACK_RECV)
|
|
|
|
{
|
2005-06-28 17:19:58 +02:00
|
|
|
if (recv_debug)
|
|
|
|
{
|
|
|
|
printf(
|
|
|
|
"setup_read(block_msg): eth%d got DL_PACK_RECV\n",
|
|
|
|
block_msg.DL_PORT);
|
|
|
|
}
|
2005-04-21 16:53:53 +02:00
|
|
|
assert(loc_port != eth_port);
|
|
|
|
loc_port->etp_osdep.etp_recvrepl= block_msg;
|
|
|
|
ev_arg.ev_ptr= loc_port;
|
|
|
|
ev_enqueue(&loc_port->etp_osdep.etp_recvev,
|
|
|
|
eth_recvev, ev_arg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (r < 0)
|
2005-10-21 18:51:21 +02:00
|
|
|
{
|
|
|
|
printf("mnx_eth`setup_read: sendrec to %d failed: %d\n",
|
|
|
|
eth_port->etp_osdep.etp_task, r);
|
|
|
|
eth_port->etp_rd_pack= pack;
|
|
|
|
eth_port->etp_flags |= EPF_READ_IP;
|
|
|
|
continue;
|
|
|
|
}
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
assert (mess1.m_type == DL_TASK_REPLY &&
|
|
|
|
mess1.DL_PORT == mess1.DL_PORT &&
|
|
|
|
mess1.DL_PROC == this_proc);
|
|
|
|
compare((mess1.DL_STAT >> 16), ==, OK);
|
|
|
|
|
|
|
|
if (mess1.DL_STAT & DL_PACK_RECV)
|
|
|
|
{
|
2005-06-28 17:19:58 +02:00
|
|
|
if (recv_debug)
|
|
|
|
{
|
|
|
|
printf(
|
|
|
|
"setup_read(mess1): eth%d: got DL_PACK_RECV\n",
|
|
|
|
mess1.DL_PORT);
|
|
|
|
}
|
2005-04-21 16:53:53 +02:00
|
|
|
/* packet received */
|
|
|
|
pack_ptr= bf_cut(pack, 0, mess1.DL_COUNT);
|
|
|
|
bf_afree(pack);
|
|
|
|
|
2005-06-28 17:19:58 +02:00
|
|
|
assert(!no_ethWritePort);
|
|
|
|
no_ethWritePort= 1;
|
2005-04-21 16:53:53 +02:00
|
|
|
eth_arrive(eth_port, pack_ptr, mess1.DL_COUNT);
|
2005-06-28 17:19:58 +02:00
|
|
|
assert(no_ethWritePort);
|
|
|
|
no_ethWritePort= 0;
|
2005-04-21 16:53:53 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* no packet received */
|
|
|
|
eth_port->etp_rd_pack= pack;
|
|
|
|
eth_port->etp_flags |= EPF_READ_IP;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mess1.DL_STAT & DL_PACK_SEND)
|
|
|
|
{
|
|
|
|
eth_port->etp_osdep.etp_sendrepl= mess1;
|
|
|
|
ev_arg.ev_ptr= eth_port;
|
|
|
|
ev_enqueue(ð_port->etp_sendev, eth_sendev, ev_arg);
|
|
|
|
}
|
|
|
|
} while (!(eth_port->etp_flags & EPF_READ_IP));
|
|
|
|
eth_port->etp_flags |= EPF_READ_SP;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRIVATE void eth_recvev(ev, ev_arg)
|
|
|
|
event_t *ev;
|
|
|
|
ev_arg_t ev_arg;
|
|
|
|
{
|
|
|
|
eth_port_t *eth_port;
|
|
|
|
message *m_ptr;
|
|
|
|
|
|
|
|
eth_port= ev_arg.ev_ptr;
|
|
|
|
assert(ev == ð_port->etp_osdep.etp_recvev);
|
|
|
|
m_ptr= ð_port->etp_osdep.etp_recvrepl;
|
|
|
|
|
|
|
|
assert(m_ptr->m_type == DL_TASK_REPLY);
|
2005-06-28 17:19:58 +02:00
|
|
|
assert(eth_port->etp_osdep.etp_port == m_ptr->DL_PORT &&
|
|
|
|
eth_port->etp_osdep.etp_task == m_ptr->m_source);
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
assert(m_ptr->DL_STAT & DL_PACK_RECV);
|
|
|
|
m_ptr->DL_STAT &= ~DL_PACK_RECV;
|
|
|
|
|
2005-06-28 17:19:58 +02:00
|
|
|
if (recv_debug)
|
|
|
|
{
|
|
|
|
printf("eth_recvev: eth%d got DL_PACK_RECV\n", m_ptr->DL_PORT);
|
|
|
|
}
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
read_int(eth_port, m_ptr->DL_COUNT);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRIVATE void eth_sendev(ev, ev_arg)
|
|
|
|
event_t *ev;
|
|
|
|
ev_arg_t ev_arg;
|
|
|
|
{
|
|
|
|
eth_port_t *eth_port;
|
|
|
|
message *m_ptr;
|
|
|
|
|
|
|
|
eth_port= ev_arg.ev_ptr;
|
|
|
|
assert(ev == ð_port->etp_sendev);
|
|
|
|
m_ptr= ð_port->etp_osdep.etp_sendrepl;
|
|
|
|
|
|
|
|
assert (m_ptr->m_type == DL_TASK_REPLY);
|
2005-06-28 17:19:58 +02:00
|
|
|
assert(eth_port->etp_osdep.etp_port == m_ptr->DL_PORT &&
|
|
|
|
eth_port->etp_osdep.etp_task == m_ptr->m_source);
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
assert(m_ptr->DL_STAT & DL_PACK_SEND);
|
|
|
|
m_ptr->DL_STAT &= ~DL_PACK_SEND;
|
|
|
|
|
|
|
|
/* packet is sent */
|
|
|
|
write_int(eth_port);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRIVATE eth_port_t *find_port(m)
|
|
|
|
message *m;
|
|
|
|
{
|
|
|
|
eth_port_t *loc_port;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i=0, loc_port= eth_port_table; i<eth_conf_nr; i++, loc_port++)
|
|
|
|
{
|
2005-06-28 17:19:58 +02:00
|
|
|
if (loc_port->etp_osdep.etp_port == m->DL_PORT &&
|
|
|
|
loc_port->etp_osdep.etp_task == m->m_source)
|
2005-04-21 16:53:53 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
assert (i<eth_conf_nr);
|
|
|
|
return loc_port;
|
|
|
|
}
|
|
|
|
|
2005-10-21 13:51:45 +02:00
|
|
|
static void eth_restart(eth_port, tasknr)
|
|
|
|
eth_port_t *eth_port;
|
|
|
|
int tasknr;
|
|
|
|
{
|
|
|
|
int r;
|
2005-10-21 18:51:21 +02:00
|
|
|
unsigned flags, dl_flags;
|
2005-10-21 13:51:45 +02:00
|
|
|
message mess;
|
|
|
|
#if 0
|
|
|
|
int i, r, rport;
|
|
|
|
struct eth_conf *ecp;
|
|
|
|
eth_port_t *rep;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
printf("eth_restart: restarting eth%d, task %d, port %d\n",
|
|
|
|
eth_port-eth_port_table, tasknr,
|
|
|
|
eth_port->etp_osdep.etp_port);
|
|
|
|
|
|
|
|
eth_port->etp_osdep.etp_task= tasknr;
|
|
|
|
|
2005-10-21 18:51:21 +02:00
|
|
|
flags= eth_port->etp_osdep.etp_recvconf;
|
|
|
|
dl_flags= DL_NOMODE;
|
|
|
|
if (flags & NWEO_EN_BROAD)
|
|
|
|
dl_flags |= DL_BROAD_REQ;
|
|
|
|
if (flags & NWEO_EN_MULTI)
|
|
|
|
dl_flags |= DL_MULTI_REQ;
|
|
|
|
if (flags & NWEO_EN_PROMISC)
|
|
|
|
dl_flags |= DL_PROMISC_REQ;
|
2005-10-21 13:51:45 +02:00
|
|
|
mess.m_type= DL_INIT;
|
|
|
|
mess.DL_PORT= eth_port->etp_osdep.etp_port;
|
|
|
|
mess.DL_PROC= this_proc;
|
2005-10-21 18:51:21 +02:00
|
|
|
mess.DL_MODE= dl_flags;
|
2005-10-21 13:51:45 +02:00
|
|
|
|
2005-10-21 18:51:21 +02:00
|
|
|
r= sendrec(eth_port->etp_osdep.etp_task, &mess);
|
|
|
|
/* YYY */
|
2005-10-21 13:51:45 +02:00
|
|
|
if (r<0)
|
|
|
|
{
|
|
|
|
printf(
|
2005-10-21 18:51:21 +02:00
|
|
|
"eth_restart: sendrec to ethernet task %d failed: %d\n",
|
|
|
|
eth_port->etp_osdep.etp_task, r);
|
2005-10-21 13:51:45 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mess.m3_i1 == ENXIO)
|
|
|
|
{
|
|
|
|
printf(
|
|
|
|
"osdep_eth_init: no ethernet device at task=%d,port=%d\n",
|
|
|
|
eth_port->etp_osdep.etp_task,
|
|
|
|
eth_port->etp_osdep.etp_port);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (mess.m3_i1 < 0)
|
|
|
|
ip_panic(("osdep_eth_init: DL_INIT returned error %d\n",
|
|
|
|
mess.m3_i1));
|
|
|
|
|
|
|
|
if (mess.m3_i1 != eth_port->etp_osdep.etp_port)
|
|
|
|
{
|
|
|
|
ip_panic((
|
|
|
|
"osdep_eth_init: got reply for wrong port (got %d, expected %d)\n",
|
|
|
|
mess.m3_i1, eth_port->etp_osdep.etp_port));
|
|
|
|
}
|
|
|
|
|
|
|
|
eth_port->etp_ethaddr= *(ether_addr_t *)mess.m3_ca1;
|
|
|
|
|
|
|
|
eth_port->etp_flags |= EPF_ENABLED;
|
|
|
|
if (eth_port->etp_wr_pack)
|
2005-10-21 18:51:21 +02:00
|
|
|
{
|
|
|
|
bf_afree(eth_port->etp_wr_pack);
|
|
|
|
eth_port->etp_wr_pack= NULL;
|
|
|
|
eth_restart_write(eth_port);
|
|
|
|
}
|
2005-10-21 13:51:45 +02:00
|
|
|
if (eth_port->etp_rd_pack)
|
2005-10-21 18:51:21 +02:00
|
|
|
{
|
|
|
|
bf_afree(eth_port->etp_rd_pack);
|
|
|
|
eth_port->etp_rd_pack= NULL;
|
|
|
|
eth_port->etp_flags &= ~(EPF_READ_IP|EPF_READ_SP);
|
|
|
|
}
|
2005-10-21 13:51:45 +02:00
|
|
|
setup_read (eth_port);
|
|
|
|
}
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
/*
|
2005-06-28 17:19:58 +02:00
|
|
|
* $PchId: mnx_eth.c,v 1.16 2005/06/28 14:24:37 philip Exp $
|
2005-04-21 16:53:53 +02:00
|
|
|
*/
|