big svn cleanup
[anytun.git] / src / options.h
blob7c663c7b0e670c2fc88df7f06ceac61340af859b
1 /*
2 * anytun
4 * The secure anycast tunneling protocol (satp) defines a protocol used
5 * for communication between any combination of unicast and anycast
6 * tunnel endpoints. It has less protocol overhead than IPSec in Tunnel
7 * mode and allows tunneling of every ETHER TYPE protocol (e.g.
8 * ethernet, ip, arp ...). satp directly includes cryptography and
9 * message authentication based on the methodes used by SRTP. It is
10 * intended to deliver a generic, scaleable and secure solution for
11 * tunneling and relaying of packets of any protocol.
14 * Copyright (C) 2007 anytun.org <satp@wirdorange.org>
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License version 2
18 * as published by the Free Software Foundation.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program (see the file COPYING included with this
27 * distribution); if not, write to the Free Software Foundation, Inc.,
28 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 #ifndef _OPTIONS_H_
32 #define _OPTIONS_H_
34 #include "datatypes.h"
35 #include "buffer.h"
36 #include "threadUtils.hpp"
37 #include <list>
39 typedef struct OptionConnectTo
41 std::string host;
42 uint16_t port;
45 typedef std::list<OptionConnectTo> ConnectToList;
47 class Options
49 public:
50 static Options& instance();
52 bool parse(int argc, char* argv[]);
53 void printUsage();
54 void printOptions();
56 std::string getProgname();
57 Options& setProgname(std::string p);
58 bool getDaemonize();
59 Options& setDaemonize(bool d);
60 bool getChroot();
61 Options& setChroot(bool b);
62 std::string getUsername();
63 Options& setUsername(std::string u);
64 std::string getChrootDir();
65 Options& setChrootDir(std::string c);
66 std::string getPidFile();
67 Options& setPidFile(std::string p);
68 sender_id_t getSenderId();
69 Options& setSenderId(sender_id_t s);
70 std::string getLocalAddr();
71 Options& setLocalAddr(std::string l);
72 std::string getLocalSyncAddr();
73 Options& setLocalSyncAddr(std::string l);
74 std::string getRemoteSyncAddr();
75 Options& setRemoteSyncAddr(std::string l);
76 u_int16_t getRemoteSyncPort();
77 Options& setRemoteSyncPort(u_int16_t l);
78 u_int16_t getLocalPort();
79 Options& setLocalPort(u_int16_t l);
80 std::string getRemoteAddr();
81 Options& setRemoteAddr(std::string r);
82 u_int16_t getLocalSyncPort();
83 Options& setLocalSyncPort(u_int16_t l);
84 u_int16_t getRemotePort();
85 Options& setRemotePort(u_int16_t r);
86 Options& setRemoteAddrPort(std::string addr, u_int16_t port);
87 std::string getDevName();
88 Options& setDevName(std::string d);
89 std::string getDevType();
90 Options& setDevType(std::string d);
91 std::string getIfconfigParamLocal();
92 Options& setIfconfigParamLocal(std::string i);
93 std::string getIfconfigParamRemoteNetmask();
94 Options& setIfconfigParamRemoteNetmask(std::string i);
95 std::string getPostUpScript();
96 Options& setPostUpScript(std::string p);
97 window_size_t getSeqWindowSize();
98 Options& setSeqWindowSize(window_size_t s);
99 std::string getCipher();
100 Options& setCipher(std::string c);
101 std::string getKdPrf();
102 Options& setKdPrf(std::string k);
103 std::string getAuthAlgo();
104 Options& setAuthAlgo(std::string a);
105 ConnectToList getConnectTo();
106 Options& setMux(u_int16_t m);
107 u_int16_t getMux();
108 Options& setKey(std::string k);
109 Buffer getKey();
110 Options& setSalt(std::string s);
111 Buffer getSalt();
113 private:
114 Options();
115 ~Options();
116 Options(const Options &l);
117 void operator=(const Options &l);
119 static Options* inst;
120 static ::Mutex instMutex;
121 class instanceCleaner {
122 public: ~instanceCleaner() {
123 if(Options::inst != 0)
124 delete Options::inst;
127 friend class instanceCleaner;
129 ::Mutex mutex;
131 ConnectToList connect_to_;
132 std::string progname_;
133 bool daemonize_;
134 bool chroot_;
135 std::string username_;
136 std::string chroot_dir_;
137 std::string pid_file_;
138 sender_id_t sender_id_;
139 std::string local_addr_;
140 std::string local_sync_addr_;
141 u_int16_t local_port_;
142 u_int16_t local_sync_port_;
143 std::string remote_sync_addr_;
144 u_int16_t remote_sync_port_;
145 std::string remote_addr_;
146 u_int16_t remote_port_;
147 std::string dev_name_;
148 std::string dev_type_;
149 std::string ifconfig_param_local_;
150 std::string ifconfig_param_remote_netmask_;
151 std::string post_up_script_;
152 window_size_t seq_window_size_;
153 std::string cipher_;
154 std::string kd_prf_;
155 std::string auth_algo_;
156 u_int16_t mux_;
157 Buffer key_;
158 Buffer salt_;
161 extern Options& gOpt;
163 #endif