/* * anytun * * The secure anycast tunneling protocol (satp) defines a protocol used * for communication between any combination of unicast and anycast * tunnel endpoints. It has less protocol overhead than IPSec in Tunnel * mode and allows tunneling of every ETHER TYPE protocol (e.g. * ethernet, ip, arp ...). satp directly includes cryptography and * message authentication based on the methodes used by SRTP. It is * intended to deliver a generic, scaleable and secure solution for * tunneling and relaying of packets of any protocol. * * * Copyright (C) 2007 anytun.org * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program (see the file COPYING included with this * distribution); if not, write to the Free Software Foundation, Inc., * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include #include #include "datatypes.h" #include "options.h" #define PARSE_BOOL_PARAM(SHORT, LONG, VALUE) \ else if(str == SHORT || str == LONG) \ VALUE = true; #define PARSE_INVERSE_BOOL_PARAM(SHORT, LONG, VALUE) \ else if(str == SHORT || str == LONG) \ VALUE = false; #define PARSE_SCALAR_PARAM(SHORT, LONG, VALUE) \ else if(str == SHORT || str == LONG) \ { \ if(argc < 1 || argv[i+1][0] == '-') \ return false; \ std::stringstream tmp; \ tmp << argv[i+1]; \ tmp >> VALUE; \ argc--; \ i++; \ } #define PARSE_SCALAR_PARAM2(SHORT, LONG, VALUE1, VALUE2) \ else if(str == SHORT || str == LONG) \ { \ if(argc < 2 || \ argv[i+1][0] == '-' || argv[i+2][0] == '-') \ return false; \ std::stringstream tmp; \ tmp << argv[i+1] << " " << argv[i+2]; \ tmp >> VALUE1; \ tmp >> VALUE2; \ argc-=2; \ i+=2; \ } Options::Options() { progname_ = "anytun"; sender_id_ = 0; local_addr_ = ""; local_port_ = 4444; local_sync_port_ = 0; remote_addr_ = ""; remote_port_ = 4444; dev_name_ = "tap"; dev_type_ = ""; ifconfig_param_local_ = "192.168.200.1"; ifconfig_param_remote_netmask_ = "255.255.255.0"; seq_window_size_ = 100; cypher_ = "null"; auth_algo_ = "null"; } bool Options::parse(int argc, char* argv[]) { Lock lock(mutex); progname_ = argv[0]; argc--; for(int i=1; argc > 0; ++i) { std::string str(argv[i]); argc--; if(str == "-h" || str == "--help") return false; PARSE_SCALAR_PARAM("-s","--sender-id", sender_id_) PARSE_SCALAR_PARAM("-i","--interface", local_addr_) PARSE_SCALAR_PARAM("-p","--port", local_port_) PARSE_SCALAR_PARAM("-S","--sync-port", local_sync_port_) PARSE_SCALAR_PARAM("-r","--remote-host", remote_addr_) PARSE_SCALAR_PARAM("-o","--remote-port", remote_port_) PARSE_SCALAR_PARAM("-d","--dev", dev_name_) PARSE_SCALAR_PARAM("-t","--type", dev_type_) PARSE_SCALAR_PARAM2("-n","--ifconfig", ifconfig_param_local_, ifconfig_param_remote_netmask_) PARSE_SCALAR_PARAM("-w","--window-size", seq_window_size_) PARSE_SCALAR_PARAM("-c","--cypher", cypher_) PARSE_SCALAR_PARAM("-a","--auth-algo", auth_algo_) else return false; } return true; } void Options::printUsage() { std::cout << "USAGE:" << std::endl; std::cout << "anytun [-h|--help] prints this..." << std::endl; // std::cout << " [-f|--config] the config file" << std::endl; std::cout << " [-s|--sender-id ] the sender id to use" << std::endl; std::cout << " [-i|--interface] local interface to bind to" << std::endl; std::cout << " [-p|--port] local anycast port to bind to" << std::endl; std::cout << " [-S|--sync-port] local unicast/sync port to bind to" << std::endl; std::cout << " [-r|--remote-host] remote host" << std::endl; std::cout << " [-o|--remote-port] remote port" << std::endl; std::cout << " [-d|--dev] device name" << std::endl; std::cout << " [-t|--type] device type" << std::endl; std::cout << " [-n|--ifconfig] the local address for the tun/tap device" << std::endl << " the remote address(tun) or netmask(tap)" << std::endl; std::cout << " [-w|--window-size] seqence number window size" << std::endl; std::cout << " [-c|--cypher] type of cypher" << std::endl; std::cout << " [-a|--auth-algo] authentication algoritm" << std::endl; } void Options::printOptions() { Lock lock(mutex); std::cout << "Options:" << std::endl; std::cout << "sender_id='" << sender_id_ << "'" << std::endl; std::cout << "local_addr='" << local_addr_ << "'" << std::endl; std::cout << "local_port='" << local_port_ << "'" << std::endl; std::cout << "local_sync_port='" << local_sync_port_ << "'" << std::endl; std::cout << "remote_addr='" << remote_addr_ << "'" << std::endl; std::cout << "remote_port='" << remote_port_ << "'" << std::endl; std::cout << "dev_name='" << dev_name_ << "'" << std::endl; std::cout << "dev_type='" << dev_type_ << "'" << std::endl; std::cout << "ifconfig_param_local='" << ifconfig_param_local_ << "'" << std::endl; std::cout << "ifconfig_param_remote_netmask='" << ifconfig_param_remote_netmask_ << "'" << std::endl; std::cout << "seq_window_size='" << seq_window_size_ << "'" << std::endl; std::cout << "cypher='" << cypher_ << "'" << std::endl; std::cout << "auth_algo='" << auth_algo_ << "'" << std::endl; } std::string Options::getProgname() { Lock lock(mutex); return progname_; } Options& Options::setProgname(std::string p) { Lock lock(mutex); progname_ = p; return *this; } sender_id_t Options::getSenderId() { return sender_id_; } Options& Options::setSenderId(sender_id_t s) { sender_id_ = s; return *this; } std::string Options::getLocalAddr() { Lock lock(mutex); return local_addr_; } Options& Options::setLocalAddr(std::string l) { Lock lock(mutex); local_addr_ = l; return *this; } std::string Options::getLocalSyncAddr() { Lock lock(mutex); return local_sync_addr_; } Options& Options::setLocalSyncAddr(std::string l) { Lock lock(mutex); local_sync_addr_ = l; return *this; } u_int16_t Options::getLocalPort() { return local_port_; } Options& Options::setLocalPort(u_int16_t l) { local_port_ = l; return *this; } u_int16_t Options::getLocalSyncPort() { return local_sync_port_; } Options& Options::setLocalSyncPort(u_int16_t l) { local_sync_port_ = l; return *this; } std::string Options::getRemoteAddr() { Lock lock(mutex); return remote_addr_; } Options& Options::setRemoteAddr(std::string r) { Lock lock(mutex); remote_addr_ = r; return *this; } u_int16_t Options::getRemotePort() { return remote_port_; } Options& Options::setRemotePort(u_int16_t r) { remote_port_ = r; return *this; } Options& Options::setRemoteAddrPort(std::string addr, u_int16_t port) { Lock lock(mutex); remote_addr_ = addr; remote_port_ = port; return *this; } std::string Options::getDevName() { Lock lock(mutex); return dev_name_; } std::string Options::getDevType() { Lock lock(mutex); return dev_type_; } Options& Options::setDevName(std::string d) { Lock lock(mutex); dev_name_ = d; return *this; } Options& Options::setDevType(std::string d) { Lock lock(mutex); dev_type_ = d; return *this; } std::string Options::getIfconfigParamLocal() { Lock lock(mutex); return ifconfig_param_local_; } Options& Options::setIfconfigParamLocal(std::string i) { Lock lock(mutex); ifconfig_param_local_ = i; return *this; } std::string Options::getIfconfigParamRemoteNetmask() { Lock lock(mutex); return ifconfig_param_remote_netmask_; } Options& Options::setIfconfigParamRemoteNetmask(std::string i) { Lock lock(mutex); ifconfig_param_remote_netmask_ = i; return *this; } window_size_t Options::getSeqWindowSize() { return seq_window_size_; } Options& Options::setSeqWindowSize(window_size_t s) { seq_window_size_ = s; return *this; } std::string Options::getCypher() { Lock lock(mutex); return cypher_; } Options& Options::setCypher(std::string c) { Lock lock(mutex); cypher_ = c; return *this; } std::string Options::getAuthAlgo() { Lock lock(mutex); return auth_algo_; } Options& Options::setAuthAlgo(std::string a) { Lock lock(mutex); auth_algo_ = a; return *this; }