## diffname mpc/devether.c 1999/0121
## diff -e /dev/null /n/emeliedump/1999/0121/sys/src/brazil/mpc/devether.c
0a
#include "u.h"
#include "../port/lib.h"
#include "mem.h"
#include "dat.h"
#include "fns.h"
#include "io.h"
#include "ureg.h"
#include "../port/error.h"
#include "../port/netif.h"
#include "etherif.h"
static Ether *etherxx[MaxEther];
void ethermediumlink(void);
Chan*
etherattach(char* spec)
{
ulong ctlrno;
char *p;
Chan *chan;
ctlrno = 0;
if(spec && *spec){
ctlrno = strtoul(spec, &p, 0);
if((ctlrno == 0 && p == spec) || *p || (ctlrno >= MaxEther))
error(Ebadarg);
}
if(etherxx[ctlrno] == 0)
error(Enodev);
chan = devattach('l', spec);
chan->dev = ctlrno;
if(etherxx[ctlrno]->attach)
etherxx[ctlrno]->attach(etherxx[ctlrno]);
return chan;
}
static void
etherdetach(void)
{
Ether **ether;
ether = etherxx;
while(*ether){
if((*ether)->detach)
(*ether)->detach(*ether);
ether++;
}
}
static int
etherwalk(Chan* chan, char* name)
{
return netifwalk(etherxx[chan->dev], chan, name);
}
static void
etherstat(Chan* chan, char* dp)
{
netifstat(etherxx[chan->dev], chan, dp);
}
static Chan*
etheropen(Chan* chan, int omode)
{
return netifopen(etherxx[chan->dev], chan, omode);
}
static void
ethercreate(Chan*, char*, int, ulong)
{
}
static void
etherclose(Chan* chan)
{
Ether *ether;
ether = etherxx[chan->dev];
netifclose(ether, chan);
if(ether->closed)
ether->closed(ether);
}
static long
etherread(Chan* chan, void* buf, long n, vlong offset)
{
Ether *ether;
ether = etherxx[chan->dev];
if((chan->qid.path & CHDIR) == 0 && ether->ifstat){
/*
* With some controllers it is necessary to reach
* into the chip to extract statistics.
*/
if(NETTYPE(chan->qid.path) == Nifstatqid)
return ether->ifstat(ether, buf, n, offset);
else if(NETTYPE(chan->qid.path) == Nstatqid)
ether->ifstat(ether, buf, 0, offset);
}
return netifread(ether, chan, buf, n, offset);
}
static Block*
etherbread(Chan* chan, long n, ulong offset)
{
return netifbread(etherxx[chan->dev], chan, n, offset);
}
static void
etherremove(Chan*)
{
}
static void
etherwstat(Chan* chan, char* dp)
{
netifwstat(etherxx[chan->dev], chan, dp);
}
static void
etherrtrace(Netfile* f, Etherpkt* pkt, int len)
{
int i, n;
Block *bp;
if(qwindow(f->in) <= 0)
return;
if(len > 64)
n = 64;
else
n = len;
bp = iallocb(n);
if(bp == 0)
return;
memmove(bp->wp, pkt->d, n);
i = TK2MS(MACHP(0)->ticks);
bp->wp[58] = len>>8;
bp->wp[59] = len;
bp->wp[60] = i>>24;
bp->wp[61] = i>>16;
bp->wp[62] = i>>8;
bp->wp[63] = i;
bp->wp += 64;
qpass(f->in, bp);
}
Block*
etheriq(Ether* ether, Block* bp, int freebp)
{
Etherpkt *pkt;
ushort type;
int len;
Netfile **ep, *f, **fp, *fx;
Block *xbp;
ether->inpackets++;
pkt = (Etherpkt*)bp->rp;
len = BLEN(bp);
type = (pkt->type[0]<<8)|pkt->type[1];
fx = 0;
ep = ðer->f[Ntypes];
/* check for valid multcast addresses */
if((pkt->d[0] & 1) && memcmp(pkt->d, ether->bcast, sizeof(pkt->d)) != 0 && ether->prom == 0){
if(!activemulti(ether, pkt->d, sizeof(pkt->d))){
if(freebp){
freeb(bp);
bp = 0;
}
return bp;
}
}
/*
* Multiplex the packet to all the connections which want it.
* If the packet is not to be used subsequently (freebp != 0),
* attempt to simply pass it into one of the connections, thereby
* saving a copy of the data (usual case hopefully).
*/
for(fp = ether->f; fp < ep; fp++){
if((f = *fp) && (f->type == type || f->type < 0)){
if(f->type > -2){
if(freebp && fx == 0)
fx = f;
else if(xbp = iallocb(len)){
memmove(xbp->wp, pkt, len);
xbp->wp += len;
qpass(f->in, xbp);
}
else
ether->soverflows++;
}
else
etherrtrace(f, pkt, len);
}
}
if(fx){
qpass(fx->in, bp);
return 0;
}
if(freebp){
freeb(bp);
return 0;
}
return bp;
}
static int
etheroq(Ether* ether, Block* bp)
{
int len, loopback, s;
Etherpkt *pkt;
ether->outpackets++;
/*
* Check if the packet has to be placed back onto the input queue,
* i.e. if it's a loopback or broadcast packet or the interface is
* in promiscuous mode.
* If it's a loopback packet indicate to etheriq that the data isn't
* needed and return, etheriq will pass-on or free the block.
*/
pkt = (Etherpkt*)bp->rp;
len = BLEN(bp);
loopback = (memcmp(pkt->d, ether->ea, sizeof(pkt->d)) == 0);
if(loopback || memcmp(pkt->d, ether->bcast, sizeof(pkt->d)) == 0 || ether->prom){
s = splhi();
etheriq(ether, bp, loopback);
splx(s);
}
if(!loopback){
qbwrite(ether->oq, bp);
ether->transmit(ether);
}
return len;
}
static long
etherwrite(Chan* chan, void* buf, long n, vlong)
{
Ether *ether;
Block *bp;
ether = etherxx[chan->dev];
if(NETTYPE(chan->qid.path) != Ndataqid)
return netifwrite(ether, chan, buf, n);
if(n > ETHERMAXTU)
error(Etoobig);
// if(n < ETHERMINTU)
// error(Etoosmall);
bp = allocb(n);
if(waserror()){
freeb(bp);
nexterror();
}
memmove(bp->rp, buf, n);
memmove(bp->rp+Eaddrlen, ether->ea, Eaddrlen);
poperror();
bp->wp += n;
return etheroq(ether, bp);
}
static long
etherbwrite(Chan* chan, Block* bp, ulong)
{
Ether *ether;
long n;
n = BLEN(bp);
ether = etherxx[chan->dev];
if(NETTYPE(chan->qid.path) != Ndataqid){
n = netifwrite(ether, chan, bp->rp, n);
freeb(bp);
return n;
}
if(n > ETHERMAXTU){
freeb(bp);
error(Ebadarg);
}
return etheroq(ether, bp);
}
static struct {
char* type;
int (*reset)(Ether*);
} cards[MaxEther+1];
void
addethercard(char* t, int (*r)(Ether*))
{
static int ncard;
if(ncard == MaxEther)
panic("too many ether cards");
cards[ncard].type = t;
cards[ncard].reset = r;
ncard++;
}
int
parseether(uchar *to, char *from)
{
char nip[4];
char *p;
int i;
p = from;
for(i = 0; i < 6; i++){
if(*p == 0)
return -1;
nip[0] = *p++;
if(*p == 0)
return -1;
nip[1] = *p++;
nip[2] = 0;
to[i] = strtoul(nip, 0, 16);
if(*p == ':')
p++;
}
return 0;
}
static void
etherreset(void)
{
Ether *ether;
int i, n, ctlrno;
char name[NAMELEN], buf[128];
//ethermediumlink();
for(ether = 0, ctlrno = 0; ctlrno < MaxEther; ctlrno++){
if(ether == 0)
ether = malloc(sizeof(Ether));
memset(ether, 0, sizeof(Ether));
ether->ctlrno = ctlrno;
ether->tbdf = BUSUNKNOWN;
ether->mbps = 10;
if(isaconfig("ether", ctlrno, ether) == 0)
continue;
for(n = 0; cards[n].type; n++){
if(cistrcmp(cards[n].type, ether->type))
continue;
for(i = 0; i < ether->nopt; i++){
if(strncmp(ether->opt[i], "ea=", 3))
continue;
if(parseether(ether->ea, ðer->opt[i][3]) == -1)
memset(ether->ea, 0, Eaddrlen);
}
if(cards[n].reset(ether))
break;
intrenable(ether->irq, ether->interrupt, ether, ether->tbdf);
i = sprint(buf, "#l%d: %s: %dMbps port 0x%luX irq %d",
ctlrno, ether->type, ether->mbps, ether->port, ether->irq);
if(ether->mem)
i += sprint(buf+i, " addr 0x%luX", PADDR(ether->mem));
if(ether->size)
i += sprint(buf+i, " size 0x%luX", ether->size);
i += sprint(buf+i, ": %2.2uX%2.2uX%2.2uX%2.2uX%2.2uX%2.2uX",
ether->ea[0], ether->ea[1], ether->ea[2],
ether->ea[3], ether->ea[4], ether->ea[5]);
sprint(buf+i, "\n");
print(buf);
snprint(name, sizeof(name), "ether%d", ctlrno);
if(ether->mbps == 100){
netifinit(ether, name, Ntypes, 256*1024);
if(ether->oq == 0)
ether->oq = qopen(256*1024, 1, 0, 0);
}
else{
netifinit(ether, name, Ntypes, 32*1024);
if(ether->oq == 0)
ether->oq = qopen(64*1024, 1, 0, 0);
}
if(ether->oq == 0)
panic("etherreset %s", name);
ether->alen = Eaddrlen;
memmove(ether->addr, ether->ea, Eaddrlen);
memset(ether->bcast, 0xFF, Eaddrlen);
etherxx[ctlrno] = ether;
ether = 0;
break;
}
}
if(ether)
free(ether);
}
#define POLY 0xedb88320
/* really slow 32 bit crc for ethers */
ulong
ethercrc(uchar *p, int len)
{
int i, j;
ulong crc, b;
crc = 0xffffffff;
for(i = 0; i < len; i++){
b = *p++;
for(j = 0; j < 8; j++){
crc = (crc>>1) ^ (((crc^b) & 1) ? POLY : 0);
b >>= 1;
}
}
return crc;
}
Dev etherdevtab = {
'l',
"ether",
etherreset,
devinit,
etherattach,
/*etherdetach,*/
devclone,
etherwalk,
etherstat,
etheropen,
ethercreate,
etherclose,
etherread,
etherbread,
etherwrite,
etherbwrite,
etherremove,
etherwstat,
};
.
## diffname mpc/devether.c 1999/0508
## diff -e /n/emeliedump/1999/0121/sys/src/brazil/mpc/devether.c /n/emeliedump/1999/0508/sys/src/brazil/mpc/devether.c
355a
print("card %d\n", n);
.
354a
print("after isaconfig %d\n", n);
.
344a
print("etherreset\n");
.
307c
print("addethercard\n");
.
## diffname mpc/devether.c 1999/0608
## diff -e /n/emeliedump/1999/0508/sys/src/brazil/mpc/devether.c /n/emeliedump/1999/0608/sys/src/brazil/mpc/devether.c
437d
393c
ether->oq = qopen(65*1024, 1, 0, 0);
.
391c
netifinit(ether, name, Ntypes, 65*1024);
.
372c
i = sprint(buf, "#l%d: %s: %dMbps port 0x%luX irq %lud",
.
369a
/*
* IRQ2 doesn't really exist, it's used to gang the interrupt
* controllers together. A device set to IRQ2 will appear on
* the second interrupt controller as IRQ9.
*/
if(ether->irq == 2)
ether->irq = 9;
.
358d
356d
345,346d
307c
.
293a
if(n < ETHERMINTU){
freeb(bp);
error(Etoosmall);
}
.
282d
259,260c
if(n < ETHERMINTU)
error(Etoosmall);
.
232a
mine = memcmp(pkt->s, ether->ea, sizeof(pkt->s)) == 0;
if(mine)
.
228a
* To enable bridging to work, only packets that were originated
* by this interface are fed back.
.
218c
int len, loopback, s, mine;
.
204c
if(qpass(fx->in, bp) < 0)
ether->soverflows++;
.
186c
if((f = *fp) && (f->type == type || f->type < 0) && (forme || multi || f->prom)){
.
178a
// is it for me?
forme = memcmp(pkt->d, ether->ea, sizeof(pkt->d)) == 0;
.
169c
if(multi && memcmp(pkt->d, ether->bcast, sizeof(pkt->d)) && ether->prom == 0){
.
167a
multi = pkt->d[0] & 1;
.
156c
int len, multi, forme;
.
90a
ulong offset = off;
.
88c
etherread(Chan* chan, void* buf, long n, vlong off)
.
79,84c
netifclose(etherxx[chan->dev], chan);
.
40,52d
15,16d
## diffname mpc/devether.c 1999/0625
## diff -e /n/emeliedump/1999/0608/sys/src/brazil/mpc/devether.c /n/emeliedump/1999/0625/sys/src/brazil/mpc/devether.c
232c
} else
freeb(bp);
.
225c
etheriq(ether, bp, 0);
.
220,222c
loopback = memcmp(pkt->d, ether->ea, sizeof(pkt->d)) == 0;
.
204c
int len, loopback, s;
.
193c
if(fromwire){
.
171,173c
if(f = *fp)
if(f->type == type || f->type < 0)
if(tome || multi || f->prom){
/* Don't want to hear bridged packets */
if(f->bridge && !fromwire && !fromme)
continue;
if(!f->headersonly){
if(fromwire && fx == 0)
.
166c
* If the packet is not to be used subsequently (fromwire != 0),
.
161,162c
/* is it for me? */
tome = memcmp(pkt->d, ether->ea, sizeof(pkt->d)) == 0;
fromme = memcmp(pkt->s, ether->ea, sizeof(pkt->s)) == 0;
.
153c
if(fromwire){
.
137c
int len, multi, tome, fromme;
.
133c
etheriq(Ether* ether, Block* bp, int fromwire)
.
## diffname mpc/devether.c 2000/0516
## diff -e /n/emeliedump/1999/0625/sys/src/brazil/mpc/devether.c /n/emeliedump/2000/0516/sys/src/9/mpc/devether.c
351a
print("etherreset ether%d\n", ctlrno);
.
## diffname mpc/devether.c 2000/0713
## diff -e /n/emeliedump/2000/0516/sys/src/9/mpc/devether.c /n/emeliedump/2000/0713/sys/src/9/mpc/devether.c
117,118c
bp = iallocb(64);
if(bp == nil)
.
113,114c
if(len > 58)
n = 58;
.
## diffname mpc/devether.c 2001/0504
## diff -e /n/emeliedump/2000/0713/sys/src/9/mpc/devether.c /n/emeliedump/2001/0504/sys/src/9/mpc/devether.c
246c
Block *volatile bp;
.
## diffname mpc/devether.c 2001/0527 # deleted
## diff -e /n/emeliedump/2001/0504/sys/src/9/mpc/devether.c /n/emeliedump/2001/0527/sys/src/9/mpc/devether.c
1,451d
|