package org.freertr.serv; import java.util.List; import org.freertr.addr.addrIP; import org.freertr.cfg.cfgAll; import org.freertr.cfg.cfgIfc; import org.freertr.ip.ipFwdIface; import org.freertr.ip.ipPrt; import org.freertr.pack.packHolder; import org.freertr.pipe.pipeSide; import org.freertr.prt.prtGenConn; import org.freertr.prt.prtGre; import org.freertr.tab.tabGen; import org.freertr.tab.tabRouteIface; import org.freertr.user.userFilter; import org.freertr.user.userFormat; import org.freertr.user.userHelping; import org.freertr.util.bits; import org.freertr.util.cmds; import org.freertr.util.counter; import org.freertr.util.state; /** * gre (rfc2784) server * * @author matecsaba */ public class servGre extends servGeneric implements ipPrt { /** * create instance */ public servGre() { } /** * interface to use */ public cfgIfc tempIfc; /** * 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; /** * list of connections */ public tabGen conns = new tabGen(); /** * timeout */ public int timeout = 60000; /** * counter */ public counter cntr; /** * defaults text */ public final static String[] defaultL = { "server gre .*!" + cmds.tabulator + "port " + prtGre.protoNum, "server gre .*!" + cmds.tabulator + "protocol " + proto2string(protoAllDgrm), "server gre .*!" + cmds.tabulator + "timeout 60000" }; /** * defaults filter */ public static tabGen defaultF; public tabGen srvDefFlt() { return defaultF; } public void srvShRun(String beg, List l, int filter) { if (tempIfc == null) { l.add(beg + "no clone"); } else { l.add(beg + "clone " + tempIfc.name); } l.add(beg + "timeout " + timeout); } public boolean srvCfgStr(cmds cmd) { String s = cmd.word(); if (s.equals("timeout")) { timeout = bits.str2num(cmd.word()); return false; } if (s.equals("clone")) { tempIfc = cfgAll.ifcFind(cmd.word(), 0); if (tempIfc == null) { cmd.error("no such interface"); return false; } if (tempIfc.type != tabRouteIface.ifaceType.template) { cmd.error("not template interface"); tempIfc = null; return false; } return false; } if (!s.equals(cmds.negated)) { return true; } s = cmd.word(); if (s.equals("clone")) { tempIfc = null; return false; } return true; } public void srvHelp(userHelping l) { l.add(null, "1 2 clone set interface to clone"); l.add(null, "2 . name of interface"); l.add(null, "1 2 timeout timeout of client"); l.add(null, "2 . milliseconds"); } public String srvName() { return "gre"; } public int srvPort() { return prtGre.protoNum; } public int srvProto() { return protoAllDgrm; } public boolean srvInit() { return genRawStart(this, 0); } public boolean srvDeinit() { return genRawStop(this, 0); } public boolean srvAccept(pipeSide pipe, prtGenConn id) { return true; } /** * get protocol number * * @return number */ public int getProtoNum() { return prtGre.protoNum; } public String toString() { return "gre"; } /** * close interface * * @param iface interface */ public void closeUp(ipFwdIface iface) { } /** * set state * * @param iface interface * @param stat state */ public void setState(ipFwdIface iface, state.states stat) { } /** * received packet * * @param rxIfc interface * @param pck packet */ public void recvPack(ipFwdIface rxIfc, packHolder pck) { servGreConn ntry = new servGreConn(rxIfc, pck.IPsrc, this); servGreConn old = conns.add(ntry); if (old != null) { old.doRecv(pck); return; } if (tempIfc == null) { return; } ntry.doStartup(); ntry.doRecv(pck); } /** * alert packet * * @param rxIfc interface * @param pck packet * @return false on success, true on error */ public boolean alertPack(ipFwdIface rxIfc, packHolder pck) { return true; } /** * error packet * * @param err error code * @param rtr address * @param rxIfc interface * @param pck packet */ public void errorPack(counter.reasons err, addrIP rtr, ipFwdIface rxIfc, packHolder pck) { } /** * get counter * * @return counter */ public counter getCounter() { return cntr; } /** * get show * * @return result */ public userFormat getShow() { userFormat res = new userFormat("|", "addr|iface|for|since"); for (int i = 0; i < conns.size(); i++) { servGreConn ntry = conns.get(i); if (ntry == null) { continue; } res.add(ntry.peer + "|" + ntry.acesIfc.name + "|" + 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++) { servGreConn ntry = conns.get(i); if (ntry == null) { continue; } if (peer.compareTo(ntry.peer) != 0) { continue; } ntry.doStop(); } } }