cjdroute2.c 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738
  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("\n"
  160. " // Nodes to connect to (IPv4 only).\n"
  161. " \"connectTo\":\n"
  162. " {\n"
  163. " // Add connection credentials here to join the network\n"
  164. " // If you have several, don't forget the separating commas\n"
  165. " // They should look like:\n"
  166. " // \"ipv4 address:port\": {\n"
  167. " // \"login\": \"(optional) name your peer has for you\"\n"
  168. " // \"password\": \"password to connect with\",\n"
  169. " // \"publicKey\": \"remote node key.k\",\n"
  170. " // \"peerName\": \"(optional) human-readable name for peer\"\n"
  171. " // },\n"
  172. " // Ask somebody who is already connected.\n"
  173. " }\n"
  174. " },\n"
  175. " {\n"
  176. " // Bind to this port.\n"
  177. " \"bind\": \"[::]:%u\",\n", port);
  178. printf("\n"
  179. " // Nodes to connect to (IPv6 only).\n"
  180. " \"connectTo\":\n"
  181. " {\n"
  182. " // Add connection credentials here to join the network\n"
  183. " // Ask somebody who is already connected.\n"
  184. " }\n"
  185. " }\n"
  186. " ]\n");
  187. #ifdef HAS_ETH_INTERFACE
  188. printf(",\n");
  189. if (!eth) {
  190. printf(" /*\n");
  191. }
  192. printf(" \"ETHInterface\":\n"
  193. " [\n"
  194. " // Alternatively bind to just one device and either beacon and/or\n"
  195. " // connect to a specified MAC address\n"
  196. " {\n"
  197. " // Bind to this device (interface name, not MAC)\n"
  198. " // \"all\" is a pseudo-name which will try to connect to all devices.\n"
  199. " \"bind\": \"all\",\n"
  200. "\n"
  201. " // Auto-connect to other cjdns nodes on the same network.\n"
  202. " // Options:\n"
  203. " //\n"
  204. " // 0 -- Disabled.\n"
  205. " //\n"
  206. " // 1 -- Accept beacons, this will cause cjdns to accept incoming\n"
  207. " // beacon messages and try connecting to the sender.\n"
  208. " //\n"
  209. " // 2 -- Accept and send beacons, this will cause cjdns to broadcast\n"
  210. " // messages on the local network which contain a randomly\n"
  211. " // generated per-session password, other nodes which have this\n"
  212. " // set to 1 or 2 will hear the beacon messages and connect\n"
  213. " // automatically.\n"
  214. " //\n"
  215. " \"beacon\": 2,\n"
  216. "\n"
  217. " // Node(s) to connect to manually\n"
  218. " // Note: does not work with \"all\" pseudo-device-name\n"
  219. " \"connectTo\":\n"
  220. " {\n"
  221. " // Credentials for connecting look similar to UDP credentials\n"
  222. " // except they begin with the mac address, for example:\n"
  223. " // \"01:02:03:04:05:06\":{\"password\":\"a\",\"publicKey\":\"b\"}\n"
  224. " }\n"
  225. " }\n"
  226. " ]\n");
  227. if (!eth) {
  228. printf(" */\n");
  229. }
  230. printf("\n");
  231. #endif
  232. printf(" },\n"
  233. "\n"
  234. " // Configuration for the router.\n"
  235. " \"router\":\n"
  236. " {\n"
  237. " // supernodes, if none are specified they'll be taken from your peers\n"
  238. " \"supernodes\": [\n"
  239. " //\"6743gf5tw80ExampleExampleExampleExamplevlyb23zfnuzv0.k\",\n"
  240. " ]\n"
  241. "\n"
  242. " // The interface which is used for connecting to the cjdns network.\n"
  243. " \"interface\":\n"
  244. " {\n"
  245. " // The type of interface (only TUNInterface is supported for now)\n"
  246. " \"type\": \"TUNInterface\"\n"
  247. " // The type of tunfd (only \"android\" for now)\n"
  248. " // If \"android\" here, the tunDevice should be used as the pipe path\n"
  249. " // to transfer the tun file description.\n"
  250. " // \"tunfd\" : \"android\"\n"
  251. #ifndef __APPLE__
  252. "\n"
  253. " // The name of a persistent TUN device to use.\n"
  254. " // This for starting cjdroute as its own user.\n"
  255. " // *MOST USERS DON'T NEED THIS*\n"
  256. " //\"tunDevice\": \"" DEFAULT_TUN_DEV "\"\n"
  257. #endif
  258. " },\n"
  259. "\n"
  260. " // System for tunneling IPv4 and ICANN IPv6 through cjdns.\n"
  261. " // This is using the cjdns switch layer as a VPN carrier.\n"
  262. " \"ipTunnel\":\n"
  263. " {\n"
  264. " // Nodes allowed to connect to us.\n"
  265. " // When a node with the given public key connects, give them the\n"
  266. " // ip4 and/or ip6 addresses listed.\n"
  267. " \"allowedConnections\":\n");
  268. printf(" [\n"
  269. " // Give the client an address on 192.168.1.0/24, and an address\n"
  270. " // it thinks has all of IPv6 behind it.\n"
  271. " // ip4Prefix is the set of addresses which are routable from the tun\n"
  272. " // for example, if you're advertizing a VPN into a company network\n"
  273. " // which exists in 10.123.45.0/24 space, ip4Prefix should be 24\n"
  274. " // default is 32 for ipv4 and 128 for ipv6\n"
  275. " // so by default it will not install a route\n"
  276. " // ip4Alloc is the block of addresses which are allocated to the\n"
  277. " // for example if you want to issue 4 addresses to the client, those\n"
  278. " // being 192.168.123.0 to 192.168.123.3, you would set this to 30\n"
  279. " // default is 32 for ipv4 and 128 for ipv6 (1 address)\n"
  280. " // {\n"
  281. " // \"publicKey\": "
  282. "\"f64hfl7c4uxt6krmhPutTheRealAddressOfANodeHere7kfm5m0.k\",\n"
  283. " // \"ip4Address\": \"192.168.1.24\",\n"
  284. " // \"ip4Prefix\": 0,\n"
  285. " // \"ip4Alloc\": 32,\n"
  286. " // \"ip6Address\": \"2001:123:ab::10\",\n"
  287. " // \"ip6Prefix\": 0\n"
  288. " // \"ip6Alloc\": 64,\n"
  289. " // },\n"
  290. "\n"
  291. " // It's ok to only specify one address and prefix/alloc are optional.\n"
  292. " // {\n"
  293. " // \"publicKey\": "
  294. "\"ydq8csdk8p8ThisIsJustAnExampleAddresstxuyqdf27hvn2z0.k\",\n"
  295. " // \"ip4Address\": \"192.168.1.25\",\n"
  296. " // \"ip4Prefix\": 0,\n"
  297. " // }\n"
  298. " ],\n"
  299. "\n"
  300. " \"outgoingConnections\":\n"
  301. " [\n"
  302. " // Connect to one or more machines and ask them for IP addresses.\n"
  303. " // \"6743gf5tw80ExampleExampleExampleExamplevlyb23zfnuzv0.k\",\n"
  304. " // \"pw9tfmr8pcrExampleExampleExampleExample8rhg1pgwpwf80.k\",\n"
  305. " // \"g91lxyxhq0kExampleExampleExampleExample6t0mknuhw75l0.k\"\n"
  306. " ]\n"
  307. " }\n"
  308. " },\n"
  309. "\n");
  310. printf(" // Dropping permissions.\n"
  311. " // In the event of a serious security exploit in cjdns, leak of confidential\n"
  312. " // network traffic and/or keys is highly likely but the following rules are\n"
  313. " // designed to prevent the attack from spreading to the system on which cjdns\n"
  314. " // is running.\n"
  315. " // Counter-intuitively, cjdns is *more* secure if it is started as root because\n"
  316. " // non-root users do not have permission to use chroot or change usernames,\n"
  317. " // limiting the effectiveness of the mitigations herein.\n"
  318. " \"security\":\n"
  319. " [\n"
  320. " // Change the user id to sandbox the cjdns process after it starts.\n"
  321. " // If keepNetAdmin is set to 0, IPTunnel will be unable to set IP addresses\n"
  322. " // and ETHInterface will be unable to hot-add new interfaces\n"
  323. " // Use { \"setuser\": 0 } to disable.\n"
  324. " // Default: enabled with keepNetAdmin\n"
  325. " { \"setuser\": \"nobody\", \"keepNetAdmin\": 1 },\n"
  326. "\n"
  327. " // Chroot changes the filesystem root directory which cjdns sees, blocking it\n"
  328. " // from accessing files outside of the chroot sandbox, if the user does not\n"
  329. " // have permission to use chroot(), this will fail quietly.\n"
  330. " // Use { \"chroot\": 0 } to disable.\n");
  331. if (Defined(android)) {
  332. printf(" // Default: disabled\n"
  333. " { \"chroot\": 0 },\n");
  334. }
  335. else {
  336. printf(" // Default: enabled (using \"/var/run\")\n"
  337. " { \"chroot\": \"/var/run/\" },\n");
  338. }
  339. printf("\n"
  340. " // Nofiles is a deprecated security feature which prevents cjdns from opening\n"
  341. " // any files at all, using this will block setting of IP addresses and\n"
  342. " // hot-adding ETHInterface devices but for users who do not need this, it\n"
  343. " // provides a formidable sandbox.\n"
  344. " // Default: disabled\n"
  345. " { \"nofiles\": 0 },\n"
  346. "\n"
  347. " // Noforks will prevent cjdns from spawning any new processes or threads,\n"
  348. " // this prevents many types of exploits from attacking the wider system.\n"
  349. " // Default: enabled\n"
  350. " { \"noforks\": 1 },\n"
  351. "\n"
  352. " // Seccomp is the most advanced sandboxing feature in cjdns, it uses\n"
  353. " // SECCOMP_BPF to filter the system calls which cjdns is able to make on a\n"
  354. " // linux system, strictly limiting it's access to the outside world\n"
  355. " // This will fail quietly on any non-linux system\n");
  356. if (Defined(android)) {
  357. printf(" // Default: disabled\n"
  358. " { \"seccomp\": 0 },\n");
  359. }
  360. else {
  361. printf(" // Default: enabled\n"
  362. " { \"seccomp\": 1 },\n");
  363. }
  364. printf("\n"
  365. " // The client sets up the core using a sequence of RPC calls, the responses\n"
  366. " // to these calls are verified but in the event that the client crashes\n"
  367. " // setup of the core completes, it could leave the core in an insecure state\n"
  368. " // This call constitutes the client telling the core that the security rules\n"
  369. " // have been fully applied and the core may run. Without it, the core will\n"
  370. " // exit within a few seconds with return code 232.\n"
  371. " // Default: enabled\n"
  372. " { \"setupComplete\": 1 }\n"
  373. " ],\n"
  374. "\n"
  375. " // Logging\n"
  376. " \"logging\":\n"
  377. " {\n"
  378. " // Uncomment to have cjdns log to stdout rather than making logs available\n"
  379. " // via the admin socket.\n"
  380. " // \"logTo\":\"stdout\"\n"
  381. " },\n"
  382. "\n"
  383. " // If set to non-zero, cjdns will not fork to the background.\n"
  384. " // Recommended for use in conjunction with \"logTo\":\"stdout\".\n");
  385. // ATTENTION: there is no trailing comma here because this is the LAST ENTRY
  386. // the next one ("pipe") is commented out. If you add something below
  387. // you must properly add the trailing comma otherwise ansuz will hunt
  388. // you and and make you pay.
  389. printf(" \"noBackground\":%d\n", Defined(win32) ? 1 : 0);
  390. printf("\n"
  391. " // Pipe file will store in this path, recommended value: /tmp (for unix),\n"
  392. " // \\\\.\\pipe (for windows) \n"
  393. " // /data/local/tmp (for rooted android) \n"
  394. " // /data/data/AppName (for non-root android)\n"
  395. " // This only needs to be specified if cjdroute's guess is incorrect\n");
  396. printf(" // \"pipe\":\"%s\"\n", Pipe_PATH);
  397. printf("}\n");
  398. return 0;
  399. }
  400. static int usage(struct Allocator* alloc, char* appName)
  401. {
  402. char* sysInfo = SysInfo_describe(SysInfo_detect(), alloc);
  403. printf("Cjdns %s %s\n"
  404. "Usage:\n"
  405. " cjdroute --help This information\n"
  406. " cjdroute --genconf [--no-eth] Generate a configuration file, write it to stdout\n"
  407. " if --no-eth is specified then eth beaconing will\n"
  408. " be disabled.\n"
  409. " cjdroute --bench Run some cryptography performance benchmarks.\n"
  410. " cjdroute --version Print the protocol version which this node speaks.\n"
  411. " cjdroute --cleanconf < conf Print a clean (valid json) version of the config.\n"
  412. " cjdroute --nobg Never fork to the background no matter the config.\n"
  413. "\n"
  414. "To get the router up and running.\n"
  415. "Step 1:\n"
  416. " Generate a new configuration file.\n"
  417. " cjdroute --genconf > cjdroute.conf\n"
  418. "\n"
  419. "Step 2:\n"
  420. " Find somebody to connect to.\n"
  421. " Check out the IRC channel or https://hyperboria.net/\n"
  422. " for information about how to meet new people and make connect to them.\n"
  423. " Read more here: https://github.com/cjdelisle/cjdns/#2-find-a-friend\n"
  424. "\n"
  425. "Step 3:\n"
  426. " Add that somebody's node to your cjdroute.conf file.\n"
  427. " https://github.com/cjdelisle/cjdns/#3-connect-your-node-to-your-friends-node\n"
  428. "\n"
  429. "Step 4:\n"
  430. " Fire it up!\n"
  431. " sudo cjdroute < cjdroute.conf\n"
  432. "\n"
  433. "For more information about other functions and non-standard setups, see README.md\n",
  434. ArchInfo_getArchStr(), sysInfo);
  435. return 0;
  436. }
  437. struct CheckRunningInstanceContext
  438. {
  439. struct EventBase* base;
  440. struct Allocator* alloc;
  441. struct AdminClient_Result* res;
  442. };
  443. static void checkRunningInstanceCallback(struct AdminClient_Promise* p,
  444. struct AdminClient_Result* res)
  445. {
  446. struct CheckRunningInstanceContext* ctx = p->userData;
  447. // Prevent this from freeing until after we drop out of the loop.
  448. Allocator_adopt(ctx->alloc, p->alloc);
  449. ctx->res = res;
  450. EventBase_endLoop(ctx->base);
  451. }
  452. static void checkRunningInstance(struct Allocator* allocator,
  453. struct EventBase* base,
  454. String* addr,
  455. String* password,
  456. struct Log* logger,
  457. struct Except* eh)
  458. {
  459. struct Allocator* alloc = Allocator_child(allocator);
  460. struct Sockaddr_storage pingAddrStorage;
  461. if (Sockaddr_parse(addr->bytes, &pingAddrStorage)) {
  462. Except_throw(eh, "Unable to parse [%s] as an ip address port, eg: 127.0.0.1:11234",
  463. addr->bytes);
  464. }
  465. struct UDPAddrIface* udp = UDPAddrIface_new(base, NULL, alloc, NULL, logger);
  466. struct AdminClient* adminClient =
  467. AdminClient_new(&udp->generic, &pingAddrStorage.addr, password, base, logger, alloc);
  468. // 100 milliseconds is plenty to wait for a process to respond on the same machine.
  469. adminClient->millisecondsToWait = 100;
  470. Dict* pingArgs = Dict_new(alloc);
  471. struct AdminClient_Promise* pingPromise =
  472. AdminClient_rpcCall(String_new("ping", alloc), pingArgs, adminClient, alloc);
  473. struct CheckRunningInstanceContext* ctx =
  474. Allocator_malloc(alloc, sizeof(struct CheckRunningInstanceContext));
  475. ctx->base = base;
  476. ctx->alloc = alloc;
  477. ctx->res = NULL;
  478. pingPromise->callback = checkRunningInstanceCallback;
  479. pingPromise->userData = ctx;
  480. EventBase_beginLoop(base);
  481. Assert_true(ctx->res);
  482. if (ctx->res->err != AdminClient_Error_TIMEOUT) {
  483. Except_throw(eh, "Startup failed: cjdroute is already running. [%d]", ctx->res->err);
  484. }
  485. Allocator_free(alloc);
  486. }
  487. static void onCoreExit(int64_t exit_status, int term_signal)
  488. {
  489. Assert_failure("Core exited with status [%d], signal [%d]\n", (int)exit_status, term_signal);
  490. }
  491. int main(int argc, char** argv)
  492. {
  493. #ifdef Log_KEYS
  494. fprintf(stderr, "Log_LEVEL = KEYS, EXPECT TO SEE PRIVATE KEYS IN YOUR LOGS!\n");
  495. #endif
  496. if (argc > 1 && (!CString_strcmp("angel", argv[1]) || !CString_strcmp("core", argv[1]))) {
  497. return Core_main(argc, argv);
  498. }
  499. Assert_ifParanoid(argc > 0);
  500. struct Except* eh = NULL;
  501. // Allow it to allocate 8MB
  502. struct Allocator* allocator = MallocAllocator_new(1<<23);
  503. struct Random* rand = Random_new(allocator, NULL, eh);
  504. struct EventBase* eventBase = EventBase_new(allocator);
  505. if (argc == 2) {
  506. // one argument
  507. if ((CString_strcmp(argv[1], "--help") == 0) || (CString_strcmp(argv[1], "-h") == 0)) {
  508. return usage(allocator, argv[0]);
  509. } else if (CString_strcmp(argv[1], "--genconf") == 0) {
  510. return genconf(rand, 1);
  511. } else if (CString_strcmp(argv[1], "--pidfile") == 0) {
  512. // deprecated
  513. fprintf(stderr, "'--pidfile' option is deprecated.\n");
  514. return 0;
  515. } else if (CString_strcmp(argv[1], "--reconf") == 0) {
  516. // Performed after reading the configuration
  517. } else if (CString_strcmp(argv[1], "--bench") == 0) {
  518. Benchmark_runAll();
  519. return 0;
  520. } else if ((CString_strcmp(argv[1], "--version") == 0)
  521. || (CString_strcmp(argv[1], "-v") == 0))
  522. {
  523. printf("Cjdns version: %s\n", CJD_PACKAGE_VERSION);
  524. printf("Cjdns protocol version: %d\n", Version_CURRENT_PROTOCOL);
  525. return 0;
  526. } else if (CString_strcmp(argv[1], "--cleanconf") == 0) {
  527. // Performed after reading configuration
  528. } else if (CString_strcmp(argv[1], "--nobg") == 0) {
  529. // Performed while reading configuration
  530. } else {
  531. fprintf(stderr, "%s: unrecognized option '%s'\n", argv[0], argv[1]);
  532. fprintf(stderr, "Try `%s --help' for more information.\n", argv[0]);
  533. return -1;
  534. }
  535. } else if (argc > 2) {
  536. // more than one argument?
  537. // because of '--pidfile $filename'?
  538. if (CString_strcmp(argv[1], "--pidfile") == 0) {
  539. fprintf(stderr, "\n'--pidfile' option is deprecated.\n");
  540. } else if (CString_strcmp(argv[1], "--genconf") == 0) {
  541. bool eth = 1;
  542. for (int i = 2; i < argc; i++) {
  543. if (!CString_strcmp(argv[i], "--no-eth")) {
  544. eth = 0;
  545. } else {
  546. fprintf(stderr, "%s: unrecognized option '%s'\n", argv[0], argv[i]);
  547. fprintf(stderr, "Try `%s --help' for more information.\n", argv[0]);
  548. return -1;
  549. }
  550. }
  551. return genconf(rand, eth);
  552. } else {
  553. fprintf(stderr, "%s: too many arguments [%s]\n", argv[0], argv[1]);
  554. fprintf(stderr, "Try `%s --help' for more information.\n", argv[0]);
  555. }
  556. return -1;
  557. }
  558. if (isatty(STDIN_FILENO)) {
  559. // We were started from a terminal
  560. // The chances an user wants to type in a configuration
  561. // bij hand are pretty slim so we show him the usage
  562. return usage(allocator, argv[0]);
  563. } else {
  564. // We assume stdin is a configuration file and that we should
  565. // start routing
  566. }
  567. struct Reader* stdinReader = FileReader_new(stdin, allocator);
  568. Dict config;
  569. if (JsonBencSerializer_get()->parseDictionary(stdinReader, allocator, &config)) {
  570. fprintf(stderr, "Failed to parse configuration.\n");
  571. return -1;
  572. }
  573. if (argc == 2 && CString_strcmp(argv[1], "--cleanconf") == 0) {
  574. struct Writer* stdoutWriter = FileWriter_new(stdout, allocator);
  575. JsonBencSerializer_get()->serializeDictionary(stdoutWriter, &config);
  576. printf("\n");
  577. return 0;
  578. }
  579. int forceNoBackground = 0;
  580. if (argc == 2 && CString_strcmp(argv[1], "--nobg") == 0) {
  581. forceNoBackground = 1;
  582. }
  583. struct Log* logger = FileWriterLog_new(stdout, allocator);
  584. // --------------------- Get Admin --------------------- //
  585. Dict* configAdmin = Dict_getDictC(&config, "admin");
  586. String* adminPass = Dict_getStringC(configAdmin, "password");
  587. String* adminBind = Dict_getStringC(configAdmin, "bind");
  588. if (!adminPass) {
  589. adminPass = String_newBinary(NULL, 32, allocator);
  590. Random_base32(rand, (uint8_t*) adminPass->bytes, 32);
  591. adminPass->len = CString_strlen(adminPass->bytes);
  592. }
  593. if (!adminBind) {
  594. Except_throw(eh, "You must specify admin.bind in the cjdroute.conf file.");
  595. }
  596. // --------------------- Welcome to cjdns ---------------------- //
  597. char* sysInfo = SysInfo_describe(SysInfo_detect(), allocator);
  598. Log_info(logger, "Cjdns %s %s", ArchInfo_getArchStr(), sysInfo);
  599. // --------------------- Check for running instance --------------------- //
  600. Log_info(logger, "Checking for running instance...");
  601. checkRunningInstance(allocator, eventBase, adminBind, adminPass, logger, eh);
  602. // --------------------- Setup Pipes to Angel --------------------- //
  603. struct Allocator* corePipeAlloc = Allocator_child(allocator);
  604. char corePipeName[64] = "client-core-";
  605. Random_base32(rand, (uint8_t*)corePipeName+CString_strlen(corePipeName), 31);
  606. String* pipePath = Dict_getStringC(&config, "pipe");
  607. if (!pipePath) {
  608. pipePath = String_CONST(Pipe_PATH);
  609. }
  610. if (!Defined(win32) && access(pipePath->bytes, W_OK)) {
  611. Except_throw(eh, "Can't have writable permission to pipe directory.");
  612. }
  613. Assert_ifParanoid(EventBase_eventCount(eventBase) == 0);
  614. struct Pipe* corePipe = Pipe_named(pipePath->bytes, corePipeName, eventBase,
  615. eh, corePipeAlloc);
  616. Assert_ifParanoid(EventBase_eventCount(eventBase) == 2);
  617. corePipe->logger = logger;
  618. char* args[] = { "core", pipePath->bytes, corePipeName, NULL };
  619. // --------------------- Spawn Angel --------------------- //
  620. String* privateKey = Dict_getStringC(&config, "privateKey");
  621. char* corePath = Process_getPath(allocator);
  622. if (!corePath) {
  623. Except_throw(eh, "Can't find a usable cjdns core executable, "
  624. "make sure it is in the same directory as cjdroute");
  625. }
  626. if (!privateKey) {
  627. Except_throw(eh, "Need to specify privateKey.");
  628. }
  629. Process_spawn(corePath, args, eventBase, allocator, onCoreExit);
  630. // --------------------- Pre-Configure Core ------------------------- //
  631. Dict* preConf = Dict_new(allocator);
  632. Dict* adminPreConf = Dict_new(allocator);
  633. Dict_putDictC(preConf, "admin", adminPreConf, allocator);
  634. Dict_putStringC(preConf, "privateKey", privateKey, allocator);
  635. Dict_putStringC(adminPreConf, "bind", adminBind, allocator);
  636. Dict_putStringC(adminPreConf, "pass", adminPass, allocator);
  637. Dict* logging = Dict_getDictC(&config, "logging");
  638. if (logging) {
  639. Dict_putDictC(preConf, "logging", logging, allocator);
  640. }
  641. struct Message* toCoreMsg = Message_new(0, 1024, allocator);
  642. BencMessageWriter_write(preConf, toCoreMsg, eh);
  643. Iface_CALL(corePipe->iface.send, toCoreMsg, &corePipe->iface);
  644. Log_debug(logger, "Sent [%d] bytes to core", toCoreMsg->length);
  645. // --------------------- Get Response from Core --------------------- //
  646. struct Message* fromCoreMsg =
  647. InterfaceWaiter_waitForData(&corePipe->iface, eventBase, allocator, eh);
  648. Dict* responseFromCore = BencMessageReader_read(fromCoreMsg, allocator, eh);
  649. // --------------------- Close the Core Pipe --------------------- //
  650. Allocator_free(corePipeAlloc);
  651. corePipe = NULL;
  652. // --------------------- Get Admin Addr/Port/Passwd --------------------- //
  653. Dict* responseFromCoreAdmin = Dict_getDictC(responseFromCore, "admin");
  654. adminBind = Dict_getStringC(responseFromCoreAdmin, "bind");
  655. if (!adminBind) {
  656. Except_throw(eh, "didn't get address and port back from core");
  657. }
  658. struct Sockaddr_storage adminAddr;
  659. if (Sockaddr_parse(adminBind->bytes, &adminAddr)) {
  660. Except_throw(eh, "Unable to parse [%s] as an ip address port, eg: 127.0.0.1:11234",
  661. adminBind->bytes);
  662. }
  663. Assert_ifParanoid(EventBase_eventCount(eventBase) == 1);
  664. // --------------------- Configuration ------------------------- //
  665. Configurator_config(&config,
  666. &adminAddr.addr,
  667. adminPass,
  668. eventBase,
  669. logger,
  670. allocator);
  671. // --------------------- noBackground ------------------------ //
  672. int64_t* noBackground = Dict_getIntC(&config, "noBackground");
  673. if (forceNoBackground || (noBackground && *noBackground)) {
  674. Log_debug(logger, "Keeping cjdns client alive because %s",
  675. (forceNoBackground) ? "--nobg was specified on the command line"
  676. : "noBackground was set in the configuration");
  677. EventBase_beginLoop(eventBase);
  678. }
  679. // Freeing this allocator here causes the core to be terminated in the epoll syscall.
  680. //Allocator_free(allocator);
  681. return 0;
  682. }