package org.freertr.serv; import java.util.List; import org.freertr.addr.addrIP; import org.freertr.auth.authLocal; import org.freertr.cfg.cfgAll; import org.freertr.cfg.cfgIfc; import org.freertr.pack.packHolder; import org.freertr.pack.packL2tp2; 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; /** * layer two tunneling protocol (rfc2661) server * * @author matecsaba */ public class servL2tp2 extends servGeneric implements prtServP { /** * create instance */ public servL2tp2() { } /** * interface to use */ public cfgIfc clnIfc; /** * 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 = 180000; /** * password */ public String password; /** * ticks after send a hello */ public int helloTicks = 5; /** * ticks after give up retry */ public int retryTicks = 8; /** * list of connections */ public tabGen conns = new tabGen(); /** * defaults text */ public final static String[] defaultL = { "server l2tp2 .*!" + cmds.tabulator + "port " + packL2tp2.port, "server l2tp2 .*!" + cmds.tabulator + "protocol " + proto2string(protoAllDgrm), "server l2tp2 .*!" + cmds.tabulator + "timer 5 8", "server l2tp2 .*!" + cmds.tabulator + cmds.negated + cmds.tabulator + "password" }; /** * 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 servL2tp2conn connFind(prtGenConn id, boolean create) { servL2tp2conn ntry = new servL2tp2conn(id, this); if (!create) { return conns.find(ntry); } servL2tp2conn old = conns.add(ntry); if (old != null) { return old; } ntry.created = bits.getTime(); return ntry; } /** * delete one connection * * @param id connection id * @return connection entry */ public servL2tp2conn connDel(prtGenConn id) { servL2tp2conn ntry = new servL2tp2conn(id, this); return conns.del(ntry); } public void srvShRun(String beg, List l, int filter) { l.add(beg + "timer " + helloTicks + " " + retryTicks); if (clnIfc == null) { l.add(beg + "no clone"); } else { l.add(beg + "clone " + clnIfc.name); } cmds.cfgLine(l, password == null, cmds.tabulator, "password", authLocal.passwdEncode(password, (filter & 2) != 0)); } public boolean srvCfgStr(cmds cmd) { String s = cmd.word(); if (s.equals("timer")) { helloTicks = bits.str2num(cmd.word()); retryTicks = bits.str2num(cmd.word()); return false; } if (s.equals("clone")) { clnIfc = cfgAll.ifcFind(cmd.word(), 0); if (clnIfc == null) { cmd.error("no such interface"); return false; } if (clnIfc.type != tabRouteIface.ifaceType.dialer) { cmd.error("not dialer interface"); clnIfc = null; return false; } return false; } if (s.equals("password")) { password = authLocal.passwdDecode(cmd.getRemaining()); return false; } if (!s.equals(cmds.negated)) { return true; } s = cmd.word(); if (s.equals("clone")) { clnIfc = null; return false; } if (s.equals("password")) { password = null; return false; } return true; } public void srvHelp(userHelping l) { l.add(null, "1 2 timer set timers"); l.add(null, "2 3 hello ticks"); l.add(null, "3 . retry ticks"); l.add(null, "1 2 clone set interface to clone"); l.add(null, "2 . name of interface"); l.add(null, "1 2 password set password"); l.add(null, "2 . password"); } public String srvName() { return "l2tp2"; } public int srvPort() { return packL2tp2.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) { servL2tp2conn ntry = connDel(id); if (ntry == null) { return; } ntry.setClosed(); } /** * work connection * * @param id connection */ public void datagramWork(prtGenConn id) { servL2tp2conn ntry = connFind(id, false); if (ntry == null) { id.setClosing(); return; } ntry.doWork(); } /** * 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) { servL2tp2conn 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|tunloc|tunrem|sess|for|since"); for (int i = 0; i < conns.size(); i++) { servL2tp2conn ntry = conns.get(i); if (ntry == null) { continue; } res.add(ntry.conn.peerAddr + "|" + ntry.conn.portRem + "|" + ntry.tunLoc + "|" + ntry.tunRem + "|" + ntry.session.size() + "|" + 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++) { servL2tp2conn ntry = conns.get(i); if (ntry == null) { continue; } if (peer.compareTo(ntry.conn.peerAddr) != 0) { continue; } ntry.setClosed(); } } }