package org.freertr.serv; import java.util.List; import org.freertr.addr.addrIP; import org.freertr.addr.addrMac; import org.freertr.addr.addrType; import org.freertr.cfg.cfgAll; import org.freertr.cfg.cfgBrdg; import org.freertr.ifc.ifcBridgeIfc; import org.freertr.ifc.ifcDn; import org.freertr.ifc.ifcNull; import org.freertr.ifc.ifcUp; import org.freertr.pack.packHolder; import org.freertr.pack.packLwapp; import org.freertr.pipe.pipeSide; import org.freertr.prt.prtGenConn; import org.freertr.prt.prtServP; import org.freertr.tab.tabGen; import org.freertr.user.userFilter; import org.freertr.user.userFormat; import org.freertr.user.userHelp; import org.freertr.util.bits; import org.freertr.util.cmds; import org.freertr.util.counter; import org.freertr.util.state; /** * lightweight access point protocol (rfc5412) server * * @author matecsaba */ public class servLwapp extends servGeneric implements prtServP { /** * create instance */ public servLwapp() { } /** * interface to use */ public cfgBrdg brdgIfc; /** * sending ttl value, -1 means maps out */ public int sendingTTL = 255; /** * sending tos value, -1 means maps out */ public int sendingTOS = -1; /** * sending df value, -1 means maps out */ public int sendingDFN = -1; /** * sending flow value, -1 means maps out */ public int sendingFLW = -1; /** * timeout */ public int timeout = 120000; /** * physical interface */ public boolean physInt = false; /** * list of connections */ public tabGen conns = new tabGen(); /** * counter */ public counter cntr; /** * defaults text */ public final static userFilter[] defaultF = { new userFilter("server lwapp .*", cmds.tabulator + "port " + packLwapp.port, null), new userFilter("server lwapp .*", cmds.tabulator + "protocol " + proto2string(protoAllDgrm), null), new userFilter("server lwapp .*", cmds.tabulator + cmds.negated + cmds.tabulator + "physical-interface", null) }; public userFilter[] srvDefFlt() { return defaultF; } public String toString() { return "lwapp"; } /** * find one connection * * @param id connection id * @param create set true to create if none found * @return connection entry */ public servLwappConn connFind(prtGenConn id, boolean create) { servLwappConn ntry = new servLwappConn(id, this); if (!create) { return conns.find(ntry); } servLwappConn old = conns.add(ntry); if (old != null) { return old; } ntry.brdgIfc = brdgIfc.bridgeHed.newIface(physInt, true, false); ntry.setUpper(ntry.brdgIfc); ntry.created = bits.getTime(); return ntry; } /** * delete one connection * * @param id connection id * @return connection entry */ public servLwappConn connDel(prtGenConn id) { servLwappConn ntry = new servLwappConn(id, this); return conns.del(ntry); } public void srvShRun(String beg, List l, int filter) { if (brdgIfc == null) { l.add(beg + "no bridge"); } else { l.add(beg + "bridge " + brdgIfc.number); } cmds.cfgLine(l, !physInt, beg, "physical-interface", ""); } public boolean srvCfgStr(cmds cmd) { String s = cmd.word(); if (s.equals("bridge")) { brdgIfc = cfgAll.brdgFind(cmd.word(), false); if (brdgIfc == null) { cmd.error("no such bridge group"); return false; } return false; } if (s.equals("physical-interface")) { physInt = true; return false; } if (!s.equals(cmds.negated)) { return true; } s = cmd.word(); if (s.equals("bridge")) { brdgIfc = null; return false; } if (s.equals("physical-interface")) { physInt = false; return false; } return true; } public void srvHelp(userHelp l) { l.add(null, false, 1, new int[]{2}, "bridge", "set interface to clone"); l.add(null, false, 2, new int[]{-1}, "", "number of bridge"); l.add(null, false, 1, new int[]{-1}, "physical-interface", "adding as physical to bridge"); } public String srvName() { return "lwapp"; } public int srvPort() { return packLwapp.port; } public int srvProto() { return protoAllDgrm; } public boolean srvInit() { return genDgrmStart(this, 0); } public boolean srvDeinit() { return genericStop(0); } public boolean srvAccept(pipeSide pipe, prtGenConn id) { id.timeout = timeout; id.sendTTL = sendingTTL; id.sendTOS = sendingTOS; id.sendDFN = sendingDFN; id.sendFLW = sendingFLW; connFind(id, true); return false; } /** * connection ready * * @param id connection */ public void datagramReady(prtGenConn id) { } /** * stop connection * * @param id connection */ public void datagramClosed(prtGenConn id) { servLwappConn ntry = connDel(id); if (ntry == null) { return; } ntry.closeDn(); } /** * work connection * * @param id connection */ public void datagramWork(prtGenConn id) { servLwappConn ntry = connFind(id, false); if (ntry == null) { id.setClosing(); return; } } /** * received error * * @param id connection * @param pck packet * @param rtr reporting router * @param err error happened * @param lab error label * @return false on success, true on error */ public boolean datagramError(prtGenConn id, packHolder pck, addrIP rtr, counter.reasons err, int lab) { return false; } /** * notified that state changed * * @param id id number to reference connection * @param stat state * @return return false if successful, true if error happened */ public boolean datagramState(prtGenConn id, state.states stat) { return false; } /** * received packet * * @param id connection * @param pck packet * @return false on success, true on error */ public boolean datagramRecv(prtGenConn id, packHolder pck) { servLwappConn ntry = connFind(id, false); if (ntry == null) { id.setClosing(); return false; } packLwapp vxl = new packLwapp(); if (vxl.parseHeader(pck)) { return false; } ntry.cntr.rx(pck); ntry.upper.recvPack(pck); return false; } /** * get show * * @return result */ public userFormat getShow() { userFormat res = new userFormat("|", "addr|port|iface|for|since"); for (int i = 0; i < conns.size(); i++) { servLwappConn ntry = conns.get(i); if (ntry == null) { continue; } res.add(ntry.conn.peerAddr + "|" + ntry.conn.portRem + "|" + ntry.brdgIfc.getIfcName() + "|" + bits.timePast(ntry.created) + "|" + bits.time2str(cfgAll.timeZoneName, ntry.created + cfgAll.timeServerOffset, 3)); } return res; } /** * do clear * * @param peer peer ip */ public void doClear(addrIP peer) { for (int i = 0; i < conns.size(); i++) { servLwappConn ntry = conns.get(i); if (ntry == null) { continue; } if (peer.compareTo(ntry.conn.peerAddr) != 0) { continue; } ntry.closeDn(); } } } class servLwappConn implements ifcDn, Comparable { private servLwapp lower; /** * connection */ protected prtGenConn conn; /** * bridge used */ protected ifcBridgeIfc brdgIfc; /** * upper layer */ protected ifcUp upper = new ifcNull(); /** * counter */ protected counter cntr = new counter(); /** * creation time */ protected long created; public int compareTo(servLwappConn o) { return conn.compareTo(o.conn); } public String toString() { return lower + " with " + conn.peerAddr; } /** * create instance * * @param id connection * @param parent lower layer */ public servLwappConn(prtGenConn id, servLwapp parent) { conn = id; lower = parent; } public addrType getHwAddr() { return addrMac.getRandom(); } public void setFilter(boolean promisc) { } public state.states getState() { return state.states.up; } public void closeDn() { lower.connDel(conn); if (upper != null) { upper.closeUp(); upper = null; } if (brdgIfc != null) { brdgIfc.closeUp(); brdgIfc = null; } } public void flapped() { closeDn(); } public void setUpper(ifcUp server) { upper = server; upper.setParent(this); } public counter getCounter() { return cntr; } public int getMTUsize() { return 1400; } public long getBandwidth() { return 8000000; } public void sendPack(packHolder pck) { packLwapp vxl = new packLwapp(); vxl.createHeader(pck); pck.merge2beg(); pck.putDefaults(); conn.send2net(pck); } }