cjdroute2.c 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760
  1. /* vim: set expandtab ts=4 sw=4: */
  2. /*
  3. * You may redistribute this program and/or modify it under the terms of
  4. * the GNU General Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  14. */
  15. #include "client/AdminClient.h"
  16. #include "admin/angel/Core.h"
  17. #include "admin/angel/InterfaceWaiter.h"
  18. #include "client/Configurator.h"
  19. #include "crypto/Key.h"
  20. #include "benc/Dict.h"
  21. #include "benc/Int.h"
  22. #include "benc/List.h"
  23. #include "benc/serialization/BencSerializer.h"
  24. #include "benc/serialization/json/JsonBencSerializer.h"
  25. #include "benc/serialization/standard/BencMessageReader.h"
  26. #include "benc/serialization/standard/BencMessageWriter.h"
  27. #include "crypto/AddressCalc.h"
  28. #include "crypto/CryptoAuth.h"
  29. #include "dht/Address.h"
  30. #include "exception/Except.h"
  31. #include "interface/Iface.h"
  32. #include "io/FileReader.h"
  33. #include "io/FileWriter.h"
  34. #include "io/Reader.h"
  35. #include "io/Writer.h"
  36. #include "memory/Allocator.h"
  37. #include "memory/MallocAllocator.h"
  38. #include "util/AddrTools.h"
  39. #include "util/ArchInfo.h"
  40. #include "util/Assert.h"
  41. #include "util/Base32.h"
  42. #include "util/CString.h"
  43. #include "util/Defined.h"
  44. #include "util/events/UDPAddrIface.h"
  45. #include "util/events/Time.h"
  46. #include "util/events/EventBase.h"
  47. #include "util/events/Pipe.h"
  48. #include "util/events/Process.h"
  49. #include "util/events/FakeNetwork.h"
  50. #include "util/Hex.h"
  51. #include "util/log/Log.h"
  52. #include "util/log/FileWriterLog.h"
  53. #include "util/SysInfo.h"
  54. #include "util/version/Version.h"
  55. #include "net/Benchmark.h"
  56. #include <stdint.h>
  57. #include <stdio.h>
  58. #include <unistd.h>
  59. #define DEFAULT_TUN_DEV "tun0"
  60. static int genconf(struct Random* rand, bool eth)
  61. {
  62. uint8_t password[32];
  63. uint8_t password2[32];
  64. uint8_t password3[32];
  65. uint8_t password4[32];
  66. Random_base32(rand, password, 32);
  67. Random_base32(rand, password2, 32);
  68. Random_base32(rand, password3, 32);
  69. Random_base32(rand, password4, 32);
  70. uint16_t port = 0;
  71. while (port <= 1024) {
  72. port = Random_uint16(rand);
  73. }
  74. uint8_t publicKey[32];
  75. uint8_t publicKeyBase32[53];
  76. uint8_t ip[16];
  77. uint8_t address[40];
  78. uint8_t privateKey[32];
  79. uint8_t privateKeyHex[65];
  80. Key_gen(ip, publicKey, privateKey, rand);
  81. Base32_encode(publicKeyBase32, 53, publicKey, 32);
  82. Hex_encode(privateKeyHex, 65, privateKey, 32);
  83. AddrTools_printIp(address, ip);
  84. printf("{\n");
  85. printf(" // Private key:\n"
  86. " // Your confidentiality and data integrity depend on this key, keep it secret!\n"
  87. " \"privateKey\": \"%s\",\n\n", privateKeyHex);
  88. printf(" // This key corresponds to the public key and ipv6 address:\n"
  89. " \"publicKey\": \"%s.k\",\n", publicKeyBase32);
  90. printf(" \"ipv6\": \"%s\",\n", address);
  91. printf("\n"
  92. " // Anyone connecting and offering these passwords on connection will be allowed.\n"
  93. " //\n"
  94. " // WARNING: If a \"login\" parameter is passed, someone sniffing on the wire can\n"
  95. " // sniff the packet and crack to find it. If the \"login\" is not passed\n"
  96. " // then the hash of the 'password' is effectively the login, therefore\n"
  97. " // that can be cracked.\n"
  98. " //\n"
  99. " \"authorizedPasswords\":\n"
  100. " [\n"
  101. " // A unique string which is known to the client and server.\n"
  102. " // Specify an optional user to identify the peer locally.\n"
  103. " // It is not used for authentication.\n"
  104. " {\"password\": \"%s\", \"user\": \"default-login\"}\n", password);
  105. printf("\n"
  106. " // More passwords should look like this.\n"
  107. " // {\"password\": \"%s\", \"user\": \"my-second-peer\"},\n", password2);
  108. printf(" // {\"password\": \"%s\", \"user\": \"my-third-peer\"},\n", password3);
  109. printf(" // {\"password\": \"%s\", \"user\": \"my-fourth-peer\"},\n", password4);
  110. printf("\n"
  111. " // Below is an example of your connection credentials\n"
  112. " // that you can give to other people so they can connect\n"
  113. " // to you using your default password (from above).\n"
  114. " // The login field here yourself to your peer and the peerName field\n"
  115. " // is the name the peer which will be displayed in peerStats\n"
  116. " // Adding a unique password for each peer is advisable\n"
  117. " // so that leaks can be isolated.\n"
  118. " /*\n"
  119. " \"your.external.ip.goes.here:%u\": {\n", port);
  120. printf(" \"login\": \"default-login\",\n"
  121. " \"password\":\"%s\",\n", password);
  122. printf(" \"publicKey\":\"%s.k\",\n", publicKeyBase32);
  123. printf(" \"peerName\":\"your-name-goes-here\"\n"
  124. " },\n"
  125. " */\n");
  126. printf(" ],\n"
  127. "\n"
  128. " // Settings for administering and extracting information from your router.\n"
  129. " // This interface provides functions which can be called through a UDP socket.\n"
  130. " // See admin/Readme.md for more information about the API and try:\n"
  131. " // ./tools/cexec\n"
  132. " // For a list of functions which can be called.\n"
  133. " // For example: ./tools/cexec 'memory()'\n"
  134. " // will call a function which gets the core's current memory consumption.\n"
  135. " // ./tools/cjdnslog\n"
  136. " // is a tool which uses this admin interface to get logs from cjdns.\n"
  137. " \"admin\":\n"
  138. " {\n"
  139. " // Port to bind the admin RPC server to.\n"
  140. " \"bind\": \"127.0.0.1:11234\",\n"
  141. "\n"
  142. " // Password for admin RPC server.\n"
  143. " // This is a static password by default, so that tools like\n"
  144. " // ./tools/cexec can use the API without you creating a\n"
  145. " // config file at ~/.cjdnsadmin first. If you decide to\n"
  146. " // expose the admin API to the network, change the password!\n"
  147. " \"password\": \"NONE\"\n");
  148. printf(" },\n"
  149. "\n"
  150. " // Interfaces to connect to the switch core.\n"
  151. " \"interfaces\":\n"
  152. " {\n"
  153. " // The interface which connects over UDP/IP based VPN tunnel.\n"
  154. " \"UDPInterface\":\n"
  155. " [\n"
  156. " {\n"
  157. " // Bind to this port.\n"
  158. " \"bind\": \"0.0.0.0:%u\",\n", port);
  159. printf(" // Set the DSCP value for Qos. Default is 0.\n"
  160. " // \"dscp\": 46,\n"
  161. "\n"
  162. " // Automatically connect to other nodes on the same LAN\n"
  163. " // This works by binding a second port and sending beacons\n"
  164. " // containing the main data port.\n"
  165. " // beacon is a number between 0 and 2:\n"
  166. " // 0 -> do not beacon nor connect to other nodes who beacon\n"
  167. " // 1 -> quiet mode, accept beacons from other nodes only\n"
  168. " // 2 -> send and accept beacons\n"
  169. " // beaconDevices is a list which can contain names of devices such\n"
  170. " // as eth0, as well as broadcast addresses to send to, such as\n"
  171. " // 192.168.101.255, or the pseudo-name \"all\".\n"
  172. " // in order to auto-peer, all cjdns nodes must use the same\n"
  173. " // beaconPort.\n"
  174. " \"beacon\": 2,\n"
  175. " \"beaconDevices\": [ \"all\" ],\n"
  176. " \"beaconPort\": 64512,\n");
  177. printf("\n"
  178. " // Nodes to connect to (IPv4 only).\n"
  179. " \"connectTo\":\n"
  180. " {\n"
  181. " // Add connection credentials here to join the network\n"
  182. " // If you have several, don't forget the separating commas\n"
  183. " // They should look like:\n"
  184. " // \"ipv4 address:port\": {\n"
  185. " // \"login\": \"(optional) name your peer has for you\"\n"
  186. " // \"password\": \"password to connect with\",\n"
  187. " // \"publicKey\": \"remote node key.k\",\n"
  188. " // \"peerName\": \"(optional) human-readable name for peer\"\n"
  189. " // },\n"
  190. " // Ask somebody who is already connected.\n"
  191. " }\n"
  192. " },\n"
  193. " {\n"
  194. " // Bind to this port.\n"
  195. " \"bind\": \"[::]:%u\",\n", port);
  196. printf(" // Set the DSCP value for Qos. Default is 0.\n"
  197. " // \"dscp\": 46,\n");
  198. printf("\n"
  199. " // Nodes to connect to (IPv6 only).\n"
  200. " \"connectTo\":\n"
  201. " {\n"
  202. " // Add connection credentials here to join the network\n"
  203. " // Ask somebody who is already connected.\n"
  204. " }\n"
  205. " }\n");
  206. #ifdef HAS_ETH_INTERFACE
  207. printf(" ],\n");
  208. if (!eth) {
  209. printf(" /*\n");
  210. }
  211. printf(" // The interface which allows peering using layer-2 ethernet frames\n"
  212. " \"ETHInterface\":\n"
  213. " [\n"
  214. " // Alternatively bind to just one device and either beacon and/or\n"
  215. " // connect to a specified MAC address\n"
  216. " {\n"
  217. " // Bind to this device (interface name, not MAC)\n"
  218. " // \"all\" is a pseudo-name which will try to connect to all devices.\n"
  219. " \"bind\": \"all\",\n"
  220. "\n"
  221. " // Auto-connect to other cjdns nodes on the same network.\n"
  222. " // Options:\n"
  223. " //\n"
  224. " // 0 -- Disabled.\n"
  225. " //\n"
  226. " // 1 -- Accept beacons, this will cause cjdns to accept incoming\n"
  227. " // beacon messages and try connecting to the sender.\n"
  228. " //\n"
  229. " // 2 -- Accept and send beacons, this will cause cjdns to broadcast\n"
  230. " // messages on the local network which contain a randomly\n"
  231. " // generated per-session password, other nodes which have this\n"
  232. " // set to 1 or 2 will hear the beacon messages and connect\n"
  233. " // automatically.\n"
  234. " //\n"
  235. " \"beacon\": 2,\n"
  236. "\n"
  237. " // Node(s) to connect to manually\n"
  238. " // Note: does not work with \"all\" pseudo-device-name\n"
  239. " \"connectTo\":\n"
  240. " {\n"
  241. " // Credentials for connecting look similar to UDP credentials\n"
  242. " // except they begin with the mac address, for example:\n"
  243. " // \"01:02:03:04:05:06\":{\"password\":\"a\",\"publicKey\":\"b\"}\n"
  244. " }\n"
  245. " }\n"
  246. " ]\n");
  247. if (!eth) {
  248. printf(" */\n");
  249. }
  250. printf("\n");
  251. #else
  252. printf(" ]\n");
  253. #endif
  254. printf(" },\n"
  255. "\n"
  256. " // Configuration for the router.\n"
  257. " \"router\":\n"
  258. " {\n"
  259. " // supernodes, if none are specified they'll be taken from your peers\n"
  260. " \"supernodes\": [\n"
  261. " //\"6743gf5tw80ExampleExampleExampleExamplevlyb23zfnuzv0.k\",\n"
  262. " ],\n"
  263. "\n"
  264. " // The interface which is used for connecting to the cjdns network.\n"
  265. " \"interface\":\n"
  266. " {\n"
  267. " // The type of interface (only TUNInterface is supported for now)\n"
  268. " \"type\": \"TUNInterface\"\n"
  269. " // The type of tunfd (only \"android\" for now)\n"
  270. " // If \"android\" here, the tunDevice should be used as the pipe path\n"
  271. " // to transfer the tun file description.\n"
  272. " // \"tunfd\" : \"android\"\n");
  273. #ifndef __APPLE__
  274. printf("\n"
  275. " // The name of a persistent TUN device to use.\n"
  276. " // This for starting cjdroute as its own user.\n"
  277. " // *MOST USERS DON'T NEED THIS*\n"
  278. " //\"tunDevice\": \"" DEFAULT_TUN_DEV "\"\n");
  279. #endif
  280. printf(" },\n"
  281. "\n"
  282. " // System for tunneling IPv4 and ICANN IPv6 through cjdns.\n"
  283. " // This is using the cjdns switch layer as a VPN carrier.\n"
  284. " \"ipTunnel\":\n"
  285. " {\n"
  286. " // Nodes allowed to connect to us.\n"
  287. " // When a node with the given public key connects, give them the\n"
  288. " // ip4 and/or ip6 addresses listed.\n"
  289. " \"allowedConnections\":\n");
  290. printf(" [\n"
  291. " // Give the client an address on 192.168.1.0/24, and an address\n"
  292. " // it thinks has all of IPv6 behind it.\n"
  293. " // ip4Prefix is the set of addresses which are routable from the tun\n"
  294. " // for example, if you're advertizing a VPN into a company network\n"
  295. " // which exists in 10.123.45.0/24 space, ip4Prefix should be 24\n"
  296. " // default is 32 for ipv4 and 128 for ipv6\n"
  297. " // so by default it will not install a route\n"
  298. " // ip4Alloc is the block of addresses which are allocated to the\n"
  299. " // for example if you want to issue 4 addresses to the client, those\n"
  300. " // being 192.168.123.0 to 192.168.123.3, you would set this to 30\n"
  301. " // default is 32 for ipv4 and 128 for ipv6 (1 address)\n"
  302. " // {\n"
  303. " // \"publicKey\": "
  304. "\"f64hfl7c4uxt6krmhPutTheRealAddressOfANodeHere7kfm5m0.k\",\n"
  305. " // \"ip4Address\": \"192.168.1.24\",\n"
  306. " // \"ip4Prefix\": 0,\n"
  307. " // \"ip4Alloc\": 32,\n"
  308. " // \"ip6Address\": \"2001:123:ab::10\",\n"
  309. " // \"ip6Prefix\": 0\n"
  310. " // \"ip6Alloc\": 64,\n"
  311. " // },\n"
  312. "\n"
  313. " // It's ok to only specify one address and prefix/alloc are optional.\n"
  314. " // {\n"
  315. " // \"publicKey\": "
  316. "\"ydq8csdk8p8ThisIsJustAnExampleAddresstxuyqdf27hvn2z0.k\",\n"
  317. " // \"ip4Address\": \"192.168.1.25\",\n"
  318. " // \"ip4Prefix\": 0,\n"
  319. " // }\n"
  320. " ],\n"
  321. "\n"
  322. " \"outgoingConnections\":\n"
  323. " [\n"
  324. " // Connect to one or more machines and ask them for IP addresses.\n"
  325. " // \"6743gf5tw80ExampleExampleExampleExamplevlyb23zfnuzv0.k\",\n"
  326. " // \"pw9tfmr8pcrExampleExampleExampleExample8rhg1pgwpwf80.k\",\n"
  327. " // \"g91lxyxhq0kExampleExampleExampleExample6t0mknuhw75l0.k\"\n"
  328. " ]\n"
  329. " }\n"
  330. " },\n"
  331. "\n");
  332. printf(" // Dropping permissions.\n"
  333. " // In the event of a serious security exploit in cjdns, leak of confidential\n"
  334. " // network traffic and/or keys is highly likely but the following rules are\n"
  335. " // designed to prevent the attack from spreading to the system on which cjdns\n"
  336. " // is running.\n"
  337. " // Counter-intuitively, cjdns is *more* secure if it is started as root because\n"
  338. " // non-root users do not have permission to use chroot or change usernames,\n"
  339. " // limiting the effectiveness of the mitigations herein.\n"
  340. " \"security\":\n"
  341. " [\n"
  342. " // Change the user id to sandbox the cjdns process after it starts.\n"
  343. " // If keepNetAdmin is set to 0, IPTunnel will be unable to set IP addresses\n"
  344. " // and ETHInterface will be unable to hot-add new interfaces\n"
  345. " // Use { \"setuser\": 0 } to disable.\n"
  346. " // Default: enabled with keepNetAdmin\n"
  347. " { \"setuser\": \"nobody\", \"keepNetAdmin\": 1 },\n"
  348. "\n"
  349. " // Chroot changes the filesystem root directory which cjdns sees, blocking it\n"
  350. " // from accessing files outside of the chroot sandbox, if the user does not\n"
  351. " // have permission to use chroot(), this will fail quietly.\n"
  352. " // Use { \"chroot\": 0 } to disable.\n");
  353. if (Defined(android)) {
  354. printf(" // Default: disabled\n"
  355. " { \"chroot\": 0 },\n");
  356. }
  357. else {
  358. printf(" // Default: enabled (using \"/var/run\")\n"
  359. " { \"chroot\": \"/var/run/\" },\n");
  360. }
  361. printf("\n"
  362. " // Nofiles is a deprecated security feature which prevents cjdns from opening\n"
  363. " // any files at all, using this will block setting of IP addresses and\n"
  364. " // hot-adding ETHInterface devices but for users who do not need this, it\n"
  365. " // provides a formidable sandbox.\n"
  366. " // Default: disabled\n"
  367. " { \"nofiles\": 0 },\n"
  368. "\n"
  369. " // Noforks will prevent cjdns from spawning any new processes or threads,\n"
  370. " // this prevents many types of exploits from attacking the wider system.\n"
  371. " // Default: enabled\n"
  372. " { \"noforks\": 1 },\n"
  373. "\n"
  374. " // Seccomp is the most advanced sandboxing feature in cjdns, it uses\n"
  375. " // SECCOMP_BPF to filter the system calls which cjdns is able to make on a\n"
  376. " // linux system, strictly limiting it's access to the outside world\n"
  377. " // This will fail quietly on any non-linux system\n");
  378. if (Defined(android)) {
  379. printf(" // Default: disabled\n"
  380. " { \"seccomp\": 0 },\n");
  381. }
  382. else {
  383. printf(" // Default: enabled\n"
  384. " { \"seccomp\": 1 },\n");
  385. }
  386. printf("\n"
  387. " // The client sets up the core using a sequence of RPC calls, the responses\n"
  388. " // to these calls are verified but in the event that the client crashes\n"
  389. " // setup of the core completes, it could leave the core in an insecure state\n"
  390. " // This call constitutes the client telling the core that the security rules\n"
  391. " // have been fully applied and the core may run. Without it, the core will\n"
  392. " // exit within a few seconds with return code 232.\n"
  393. " // Default: enabled\n"
  394. " { \"setupComplete\": 1 }\n"
  395. " ],\n"
  396. "\n"
  397. " // Logging\n"
  398. " \"logging\":\n"
  399. " {\n"
  400. " // Uncomment to have cjdns log to stdout rather than making logs available\n"
  401. " // via the admin socket.\n"
  402. " // \"logTo\":\"stdout\"\n"
  403. " },\n"
  404. "\n"
  405. " // If set to non-zero, cjdns will not fork to the background.\n"
  406. " // Recommended for use in conjunction with \"logTo\":\"stdout\".\n");
  407. // ATTENTION: there is no trailing comma here because this is the LAST ENTRY
  408. // the next one ("pipe") is commented out. If you add something below
  409. // you must properly add the trailing comma otherwise ansuz will hunt
  410. // you and and make you pay.
  411. printf(" \"noBackground\":%d\n", Defined(win32) ? 1 : 0);
  412. printf("\n"
  413. " // Pipe file will store in this path, recommended value: /tmp (for unix),\n"
  414. " // \\\\.\\pipe (for windows) \n"
  415. " // /data/local/tmp (for rooted android) \n"
  416. " // /data/data/AppName (for non-root android)\n"
  417. " // This only needs to be specified if cjdroute's guess is incorrect\n");
  418. printf(" // \"pipe\":\"%s\"\n", Pipe_PATH);
  419. printf("}\n");
  420. return 0;
  421. }
  422. static int usage(struct Allocator* alloc, char* appName)
  423. {
  424. char* sysInfo = SysInfo_describe(SysInfo_detect(), alloc);
  425. printf("Cjdns %s %s\n"
  426. "Usage:\n"
  427. " cjdroute --help This information\n"
  428. " cjdroute --genconf [--no-eth] Generate a configuration file, write it to stdout\n"
  429. " if --no-eth is specified then eth beaconing will\n"
  430. " be disabled.\n"
  431. " cjdroute --bench Run some cryptography performance benchmarks.\n"
  432. " cjdroute --version Print the protocol version which this node speaks.\n"
  433. " cjdroute --cleanconf < conf Print a clean (valid json) version of the config.\n"
  434. " cjdroute --nobg Never fork to the background no matter the config.\n"
  435. "\n"
  436. "To get the router up and running.\n"
  437. "Step 1:\n"
  438. " Generate a new configuration file.\n"
  439. " cjdroute --genconf > cjdroute.conf\n"
  440. "\n"
  441. "Step 2:\n"
  442. " Find somebody to connect to.\n"
  443. " Check out the IRC channel or https://hyperboria.net/\n"
  444. " for information about how to meet new people and make connect to them.\n"
  445. " Read more here: https://github.com/cjdelisle/cjdns/#2-find-a-friend\n"
  446. "\n"
  447. "Step 3:\n"
  448. " Add that somebody's node to your cjdroute.conf file.\n"
  449. " https://github.com/cjdelisle/cjdns/#3-connect-your-node-to-your-friends-node\n"
  450. "\n"
  451. "Step 4:\n"
  452. " Fire it up!\n"
  453. " sudo cjdroute < cjdroute.conf\n"
  454. "\n"
  455. "For more information about other functions and non-standard setups, see README.md\n",
  456. ArchInfo_getArchStr(), sysInfo);
  457. return 0;
  458. }
  459. struct CheckRunningInstanceContext
  460. {
  461. struct EventBase* base;
  462. struct Allocator* alloc;
  463. struct AdminClient_Result* res;
  464. };
  465. static void checkRunningInstanceCallback(struct AdminClient_Promise* p,
  466. struct AdminClient_Result* res)
  467. {
  468. struct CheckRunningInstanceContext* ctx = p->userData;
  469. // Prevent this from freeing until after we drop out of the loop.
  470. Allocator_adopt(ctx->alloc, p->alloc);
  471. ctx->res = res;
  472. EventBase_endLoop(ctx->base);
  473. }
  474. static void checkRunningInstance(struct Allocator* allocator,
  475. struct EventBase* base,
  476. String* addr,
  477. String* password,
  478. struct Log* logger,
  479. struct Except* eh)
  480. {
  481. struct Allocator* alloc = Allocator_child(allocator);
  482. struct Sockaddr_storage pingAddrStorage;
  483. if (Sockaddr_parse(addr->bytes, &pingAddrStorage)) {
  484. Except_throw(eh, "Unable to parse [%s] as an ip address port, eg: 127.0.0.1:11234",
  485. addr->bytes);
  486. }
  487. struct UDPAddrIface* udp = UDPAddrIface_new(base, NULL, alloc, NULL, logger);
  488. struct AdminClient* adminClient =
  489. AdminClient_new(&udp->generic, &pingAddrStorage.addr, password, base, logger, alloc);
  490. // 100 milliseconds is plenty to wait for a process to respond on the same machine.
  491. adminClient->millisecondsToWait = 100;
  492. Dict* pingArgs = Dict_new(alloc);
  493. struct AdminClient_Promise* pingPromise =
  494. AdminClient_rpcCall(String_new("ping", alloc), pingArgs, adminClient, alloc);
  495. struct CheckRunningInstanceContext* ctx =
  496. Allocator_malloc(alloc, sizeof(struct CheckRunningInstanceContext));
  497. ctx->base = base;
  498. ctx->alloc = alloc;
  499. ctx->res = NULL;
  500. pingPromise->callback = checkRunningInstanceCallback;
  501. pingPromise->userData = ctx;
  502. EventBase_beginLoop(base);
  503. Assert_true(ctx->res);
  504. if (ctx->res->err != AdminClient_Error_TIMEOUT) {
  505. Except_throw(eh, "Startup failed: cjdroute is already running. [%d]", ctx->res->err);
  506. }
  507. Allocator_free(alloc);
  508. }
  509. static void onCoreExit(int64_t exit_status, int term_signal)
  510. {
  511. Assert_failure("Core exited with status [%d], signal [%d]\n", (int)exit_status, term_signal);
  512. }
  513. int main(int argc, char** argv)
  514. {
  515. #ifdef Log_KEYS
  516. fprintf(stderr, "Log_LEVEL = KEYS, EXPECT TO SEE PRIVATE KEYS IN YOUR LOGS!\n");
  517. #endif
  518. if (argc > 1 && (!CString_strcmp("angel", argv[1]) || !CString_strcmp("core", argv[1]))) {
  519. return Core_main(argc, argv);
  520. }
  521. Assert_ifParanoid(argc > 0);
  522. struct Except* eh = NULL;
  523. // Allow it to allocate 8MB
  524. struct Allocator* allocator = MallocAllocator_new(1<<23);
  525. struct Random* rand = Random_new(allocator, NULL, eh);
  526. struct EventBase* eventBase = EventBase_new(allocator);
  527. if (argc == 2) {
  528. // one argument
  529. if ((CString_strcmp(argv[1], "--help") == 0) || (CString_strcmp(argv[1], "-h") == 0)) {
  530. return usage(allocator, argv[0]);
  531. } else if (CString_strcmp(argv[1], "--genconf") == 0) {
  532. return genconf(rand, 1);
  533. } else if (CString_strcmp(argv[1], "--pidfile") == 0) {
  534. // deprecated
  535. fprintf(stderr, "'--pidfile' option is deprecated.\n");
  536. return 0;
  537. } else if (CString_strcmp(argv[1], "--reconf") == 0) {
  538. // Performed after reading the configuration
  539. } else if (CString_strcmp(argv[1], "--bench") == 0) {
  540. Benchmark_runAll();
  541. return 0;
  542. } else if ((CString_strcmp(argv[1], "--version") == 0)
  543. || (CString_strcmp(argv[1], "-v") == 0))
  544. {
  545. printf("Cjdns version: %s\n", CJD_PACKAGE_VERSION);
  546. printf("Cjdns protocol version: %d\n", Version_CURRENT_PROTOCOL);
  547. return 0;
  548. } else if (CString_strcmp(argv[1], "--cleanconf") == 0) {
  549. // Performed after reading configuration
  550. } else if (CString_strcmp(argv[1], "--nobg") == 0) {
  551. // Performed while reading configuration
  552. } else {
  553. fprintf(stderr, "%s: unrecognized option '%s'\n", argv[0], argv[1]);
  554. fprintf(stderr, "Try `%s --help' for more information.\n", argv[0]);
  555. return -1;
  556. }
  557. } else if (argc > 2) {
  558. // more than one argument?
  559. // because of '--pidfile $filename'?
  560. if (CString_strcmp(argv[1], "--pidfile") == 0) {
  561. fprintf(stderr, "\n'--pidfile' option is deprecated.\n");
  562. } else if (CString_strcmp(argv[1], "--genconf") == 0) {
  563. bool eth = 1;
  564. for (int i = 2; i < argc; i++) {
  565. if (!CString_strcmp(argv[i], "--no-eth")) {
  566. eth = 0;
  567. } else {
  568. fprintf(stderr, "%s: unrecognized option '%s'\n", argv[0], argv[i]);
  569. fprintf(stderr, "Try `%s --help' for more information.\n", argv[0]);
  570. return -1;
  571. }
  572. }
  573. return genconf(rand, eth);
  574. } else {
  575. fprintf(stderr, "%s: too many arguments [%s]\n", argv[0], argv[1]);
  576. fprintf(stderr, "Try `%s --help' for more information.\n", argv[0]);
  577. }
  578. return -1;
  579. }
  580. if (isatty(STDIN_FILENO)) {
  581. // We were started from a terminal
  582. // The chances an user wants to type in a configuration
  583. // bij hand are pretty slim so we show him the usage
  584. return usage(allocator, argv[0]);
  585. } else {
  586. // We assume stdin is a configuration file and that we should
  587. // start routing
  588. }
  589. struct Reader* stdinReader = FileReader_new(stdin, allocator);
  590. Dict config;
  591. if (JsonBencSerializer_get()->parseDictionary(stdinReader, allocator, &config)) {
  592. fprintf(stderr, "Failed to parse configuration.\n");
  593. return -1;
  594. }
  595. if (argc == 2 && CString_strcmp(argv[1], "--cleanconf") == 0) {
  596. struct Writer* stdoutWriter = FileWriter_new(stdout, allocator);
  597. JsonBencSerializer_get()->serializeDictionary(stdoutWriter, &config);
  598. printf("\n");
  599. return 0;
  600. }
  601. int forceNoBackground = 0;
  602. if (argc == 2 && CString_strcmp(argv[1], "--nobg") == 0) {
  603. forceNoBackground = 1;
  604. }
  605. struct Log* logger = FileWriterLog_new(stdout, allocator);
  606. // --------------------- Get Admin --------------------- //
  607. Dict* configAdmin = Dict_getDictC(&config, "admin");
  608. String* adminPass = Dict_getStringC(configAdmin, "password");
  609. String* adminBind = Dict_getStringC(configAdmin, "bind");
  610. if (!adminPass) {
  611. adminPass = String_newBinary(NULL, 32, allocator);
  612. Random_base32(rand, (uint8_t*) adminPass->bytes, 32);
  613. adminPass->len = CString_strlen(adminPass->bytes);
  614. }
  615. if (!adminBind) {
  616. Except_throw(eh, "You must specify admin.bind in the cjdroute.conf file.");
  617. }
  618. // --------------------- Welcome to cjdns ---------------------- //
  619. char* sysInfo = SysInfo_describe(SysInfo_detect(), allocator);
  620. Log_info(logger, "Cjdns %s %s", ArchInfo_getArchStr(), sysInfo);
  621. // --------------------- Check for running instance --------------------- //
  622. Log_info(logger, "Checking for running instance...");
  623. checkRunningInstance(allocator, eventBase, adminBind, adminPass, logger, eh);
  624. // --------------------- Setup Pipes to Angel --------------------- //
  625. struct Allocator* corePipeAlloc = Allocator_child(allocator);
  626. char corePipeName[64] = "client-core-";
  627. Random_base32(rand, (uint8_t*)corePipeName+CString_strlen(corePipeName), 31);
  628. String* pipePath = Dict_getStringC(&config, "pipe");
  629. if (!pipePath) {
  630. pipePath = String_CONST(Pipe_PATH);
  631. }
  632. if (!Defined(win32) && access(pipePath->bytes, W_OK)) {
  633. Except_throw(eh, "Can't have writable permission to pipe directory.");
  634. }
  635. Assert_ifParanoid(EventBase_eventCount(eventBase) == 0);
  636. struct Pipe* corePipe = Pipe_named(pipePath->bytes, corePipeName, eventBase,
  637. eh, corePipeAlloc);
  638. Assert_ifParanoid(EventBase_eventCount(eventBase) == 2);
  639. corePipe->logger = logger;
  640. char* args[] = { "core", pipePath->bytes, corePipeName, NULL };
  641. // --------------------- Spawn Angel --------------------- //
  642. String* privateKey = Dict_getStringC(&config, "privateKey");
  643. char* corePath = Process_getPath(allocator);
  644. if (!corePath) {
  645. Except_throw(eh, "Can't find a usable cjdns core executable, "
  646. "make sure it is in the same directory as cjdroute");
  647. }
  648. if (!privateKey) {
  649. Except_throw(eh, "Need to specify privateKey.");
  650. }
  651. Process_spawn(corePath, args, eventBase, allocator, onCoreExit);
  652. // --------------------- Pre-Configure Core ------------------------- //
  653. Dict* preConf = Dict_new(allocator);
  654. Dict* adminPreConf = Dict_new(allocator);
  655. Dict_putDictC(preConf, "admin", adminPreConf, allocator);
  656. Dict_putStringC(preConf, "privateKey", privateKey, allocator);
  657. Dict_putStringC(adminPreConf, "bind", adminBind, allocator);
  658. Dict_putStringC(adminPreConf, "pass", adminPass, allocator);
  659. Dict* logging = Dict_getDictC(&config, "logging");
  660. if (logging) {
  661. Dict_putDictC(preConf, "logging", logging, allocator);
  662. }
  663. struct Message* toCoreMsg = Message_new(0, 1024, allocator);
  664. BencMessageWriter_write(preConf, toCoreMsg, eh);
  665. Iface_CALL(corePipe->iface.send, toCoreMsg, &corePipe->iface);
  666. Log_debug(logger, "Sent [%d] bytes to core", toCoreMsg->length);
  667. // --------------------- Get Response from Core --------------------- //
  668. struct Message* fromCoreMsg =
  669. InterfaceWaiter_waitForData(&corePipe->iface, eventBase, allocator, eh);
  670. Dict* responseFromCore = BencMessageReader_read(fromCoreMsg, allocator, eh);
  671. // --------------------- Close the Core Pipe --------------------- //
  672. Allocator_free(corePipeAlloc);
  673. corePipe = NULL;
  674. // --------------------- Get Admin Addr/Port/Passwd --------------------- //
  675. Dict* responseFromCoreAdmin = Dict_getDictC(responseFromCore, "admin");
  676. adminBind = Dict_getStringC(responseFromCoreAdmin, "bind");
  677. if (!adminBind) {
  678. Except_throw(eh, "didn't get address and port back from core");
  679. }
  680. struct Sockaddr_storage adminAddr;
  681. if (Sockaddr_parse(adminBind->bytes, &adminAddr)) {
  682. Except_throw(eh, "Unable to parse [%s] as an ip address port, eg: 127.0.0.1:11234",
  683. adminBind->bytes);
  684. }
  685. Assert_ifParanoid(EventBase_eventCount(eventBase) == 1);
  686. // --------------------- Configuration ------------------------- //
  687. Configurator_config(&config,
  688. &adminAddr.addr,
  689. adminPass,
  690. eventBase,
  691. logger,
  692. allocator);
  693. // --------------------- noBackground ------------------------ //
  694. int64_t* noBackground = Dict_getIntC(&config, "noBackground");
  695. if (forceNoBackground || (noBackground && *noBackground)) {
  696. Log_debug(logger, "Keeping cjdns client alive because %s",
  697. (forceNoBackground) ? "--nobg was specified on the command line"
  698. : "noBackground was set in the configuration");
  699. EventBase_beginLoop(eventBase);
  700. }
  701. // Freeing this allocator here causes the core to be terminated in the epoll syscall.
  702. //Allocator_free(allocator);
  703. return 0;
  704. }