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.clnt.clntAmt; import org.freertr.pack.packHolder; import org.freertr.pipe.pipeSide; import org.freertr.prt.prtGenConn; import org.freertr.prt.prtServP; 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; /** * automatic multicast tunneling (rfc7450) protocol server * * @author matecsaba */ public class servAmt extends servGeneric implements prtServP { /** * create instance */ public servAmt() { } /** * 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; /** * timeout */ public int timeout = 120000; /** * list of connections */ public tabGen conns = new tabGen(); /** * defaults text */ public final static String[] defaultL = { "server amt .*!" + cmds.tabulator + "port " + clntAmt.portNum, "server amt .*!" + cmds.tabulator + "protocol " + proto2string(protoAllDgrm), "server amt .*!" + cmds.tabulator + "timeout 120000" }; /** * defaults filter */ public static tabGen defaultF; public tabGen srvDefFlt() { return defaultF; } /** * find one connection * * @param id connection id * @param create set true to create if none found * @return connection entry */ public servAmtConn connFind(prtGenConn id, boolean create) { servAmtConn ntry = new servAmtConn(id, this); if (!create) { return conns.find(ntry); } if (tempIfc == null) { return null; } servAmtConn old = conns.add(ntry); if (old != null) { return old; } ntry.doStartup(); return ntry; } /** * delete one connection * * @param id connection id * @return connection entry */ public servAmtConn connDel(prtGenConn id) { servAmtConn ntry = new servAmtConn(id, this); return conns.del(ntry); } 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 "amt"; } public int srvPort() { return clntAmt.portNum; } 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) { servAmtConn ntry = connDel(id); if (ntry == null) { return; } ntry.closeDn(); } /** * work connection * * @param id connection */ public void datagramWork(prtGenConn id) { servAmtConn 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) { servAmtConn ntry = connFind(id, false); if (ntry == null) { id.setClosing(); return false; } ntry.doRecv(pck); return false; } /** * get show * * @return result */ public userFormat getShow() { userFormat res = new userFormat("|", "addr|port|nonce|iface|for|since"); for (int i = 0; i < conns.size(); i++) { servAmtConn ntry = conns.get(i); if (ntry == null) { continue; } res.add(ntry.conn.peerAddr + "|" + ntry.conn.portRem + "|" + ntry.nonce + "|" + 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++) { servAmtConn ntry = conns.get(i); if (ntry == null) { continue; } if (peer.compareTo(ntry.conn.peerAddr) != 0) { continue; } ntry.closeDn(); } } }