Commit Graph

445 Commits

Author SHA1 Message Date
Rick V 7de4c509d7 haha lokinet is cursed now 2020-08-12 19:49:26 -05:00
Rick V 7bd3731e98 first draft of daemon control code 2020-08-12 15:27:39 -05:00
Rick V d56706b626 more daemon fluff 2020-08-12 14:55:03 -05:00
Rick V 8c62a726c0 stupid trampoline to return control to lokinet
after SCM starts
2020-08-12 14:11:47 -05:00
Rick V ca9984cc69 win32 daemon install/remove goo 2020-08-12 13:03:52 -05:00
Stephen Shelton 0f074cff8c
Remove ambguity WRT loading and passing of Config 2020-07-06 13:38:02 -06:00
Stephen Shelton ec20d94c6b
Fix Context::Configure() 2020-07-02 10:26:53 -06:00
Stephen Shelton ed47ba998f
Minor fixes around Context 2020-07-02 10:26:52 -06:00
Jeff Becker 0f21eeccb0
* rework exit codepath to allow multiple exits
* rework net code for ip ranges to be cleaner
* clean up endpoint auth code
* refactor config to validate network configs before setting up endpoints
* remove buildone from path/pathbuilder.cpp so we don't spam connection attempts
2020-07-02 11:13:30 -04:00
Jeff Becker 3cdca30a74
more auth shit 2020-07-02 11:13:30 -04:00
Stephen Shelton 0aa43c6b07
Pass RuntimeOptions instead of 'bool isRelay' 2020-07-01 08:38:56 -06:00
Stephen Shelton 984015587d
"Rethrow" to promise using std::current_exception() 2020-07-01 08:38:33 -06:00
Stephen Shelton a448cbab4f
Pass on exceptions to exit_code future in main 2020-07-01 08:21:53 -06:00
Stephen Shelton eb2260179f
Pass opts by value since we're crossing threads 2020-07-01 08:04:29 -06:00
Stephen Shelton ec4109ae60
Handle signals without C API 2020-06-29 14:09:59 -06:00
Stephen Shelton b5d6a73ffd
Rip out most of C API 2020-06-29 13:55:59 -06:00
Stephen Shelton 1497b829bd
Ignore our self.signed file if we're a client 2020-06-04 11:05:23 -06:00
Jeff 45cda241f0
Merge pull request #1272 from majestrate/exit-nodes-2020-05-16
exit traffic via snapps
2020-06-01 14:42:43 -04:00
Jeff Becker 18b2ef3d1e
remove unneeded file 2020-05-29 12:33:16 -04:00
Jeff Becker 242ab3caba
rename lokinet-exit too to lokinet-vpn
install lokinet-vpn tool for use with debian packaging
2020-05-29 12:31:57 -04:00
Rick V 5529371637 RouterContact::[Read|Write] now take a fs::path const ref 2020-05-26 22:39:01 -05:00
Rick V f62214cf8c
first pass fix wstring path conversions 2020-05-26 20:48:07 -05:00
Jeff Becker 14b134c42d
when we get an explicit config path respect it and the base dir 2020-05-26 10:06:38 -04:00
Jeff Becker 6af498092b
exit traffic via loki addresses 2020-05-23 16:07:19 -04:00
Jason Rhinelander c5faa86926 cmake refactor
Refactors many things in cmake to improve and simplify:

- don't use variable indirection for target names; target names are
*already* a variable of sorts.  (e.g. ${UTIL_LIB} is now just
lokinet-util).  cmake/basic_definitions.cmake is now gone.

- fix LTO enabling to use the standard cmake (3.9+) LTO mechanism rather
than shoving a bunch of flag hacks through link_libraries and
add_compile_options.  This also now enables LTO when building a shared
library (because previously the -flto hacks were only turned on in the
static code for some reason).

- build liblokinet as *either* shared library or static library, but not
both.  Building both makes things more complicated because they had
different names (lokinet-shared or lokinet-static) and seems pointless:
you generally want one or the other.  Now there is just the liblokinet
target, which will be shared or static depending on the value of
BUILD_SHARED_LIBS.

- Simplify lokinet-cryptography AVX2 code: just build *one* library, and
add in the additional AVX2 files when possible, rather than building two
and needing to merge them.

- Compress STATIC_LINK and STATIC_LINK_RUNTIME into just STATIC_LINK.
It makes no sense to use one of these (_RUNTIME) on Windows and the
other on non-Windows when they appear to try to do the same thing.

- remove a bunch of annotations from `endif(FOO)` -> `endif()`.

- move all the tuntap compilation code (including OS-specific source
file selection) into vendor/CMakeLists.txt and build tuntap as an
intermediate OBJECT library rather than keeping a global variable in 5
different files.

- move release motto define to root cmake; it made no sense being
duplicated in both unix.cmake and win32.cmake

- fix add_log_tag to not stomp on any existing source compile flags with
its definition.  Also use proper compile definition property instead of
cramming it into compile flags.

- make optimization/linker flags less hacky.  There's no reason for us
to force particular optimization flags because the cmake build type
already does that (e.g. -DCMAKE_BUILD_TYPE=Release does -O3).  Not doing
that also silences a bunch of cmake warnings because it thinks "-O0 -g3"
etc.  are link libraries (which is reasonable: that's what the code was
telling cmake they are).

- sets the default build type to RelWithDebInfo which gives us `-O2 -g`
if you don't specify a build type.

- Move PIC up (so that the things loaded in unix.cmake, notably libuv,
have it set).

- Add a custom `curl` interface library that carries the correct link
target and include paths for curl (system or bundled).
2020-05-17 23:31:23 -03:00
Stephen Shelton de8e44ba21
Re-apply clang-format rules after rebasing 2020-04-07 14:41:11 -06:00
Stephen Shelton 6909e20588
Fix logging initialization and flush at program exit 2020-04-07 14:27:30 -06:00
Stephen Shelton e3cb4b2d60
Don't create conf dir in main()
ensureConfig() does this implicitly.
2020-04-07 14:25:18 -06:00
Stephen Shelton 1fc7c61d1f
Share common conf comments for client and relay 2020-04-07 14:24:50 -06:00
Stephen Shelton 176c1e3cbd
Remove --router option 2020-04-07 14:21:44 -06:00
Stephen Shelton 05257126fe
Make distinction between config dir and data dir 2020-04-07 14:18:14 -06:00
Stephen Shelton 9e7254f6fa
Rip out pass-through-to-curl functionality 2020-04-07 14:17:52 -06:00
Stephen Shelton 923e73f693
Plumb isRelay CLI arg through to config 2020-04-07 14:17:13 -06:00
Stephen Shelton 1653b73ee5
Clean up the logic around generating default confs 2020-04-07 14:11:57 -06:00
Stephen Shelton 273270916e
The Great Wall of Blame
This commit reflects changes to clang-format rules. Unfortunately,
these rule changes create a massive change to the codebase, which
causes an apparent rewrite of git history.

Git blame's --ignore-rev flag can be used to ignore this commit when
attempting to `git blame` some code.
2020-04-07 12:38:56 -06:00
Jeff Becker 9428689939
fix up cpack for macos 2020-04-03 10:14:19 -04:00
Jeff Becker 2922668e6b
initial lokinet-bootstrap in powershell for windows 2020-04-02 11:08:07 -04:00
Jeff Becker 2190da8c81
cpack win32 2020-04-02 11:08:07 -04:00
Rick V db0920d921
use backport fork for release installer only
move all invariant assets to common repo

remove ded code, libuv patches can be swapped in at build time for debug/release builds
2020-03-05 12:47:46 -06:00
Stephen Shelton 182057e881
Remove 'clang-format off' and make format 2020-02-26 14:10:26 -07:00
Jason Rhinelander b4440094b0 De-abseil, part 2: mutex, locks, (most) time
- util::Mutex is now a std::shared_timed_mutex, which is capable of
  exclusive and shared locks.

- util::Lock is still present as a std::lock_guard<util::Mutex>.

- the locking annotations are preserved, but updated to the latest
  supported by clang rather than using abseil's older/deprecated ones.

- ACQUIRE_LOCK macro is gone since we don't pass mutexes by pointer into
  locks anymore (WTF abseil).

- ReleasableLock is gone.  Instead there are now some llarp::util helper
  methods to obtain unique and/or shared locks:
    - `auto lock = util::unique_lock(mutex);` gets an RAII-but-also
      unlockable object (std::unique_lock<T>, with T inferred from
      `mutex`).
    - `auto lock = util::shared_lock(mutex);` gets an RAII shared (i.e.
      "reader") lock of the mutex.
    - `auto lock = util::unique_locks(mutex1, mutex2, mutex3);` can be
      used to atomically lock multiple mutexes at once (returning a
      tuple of the locks).
  This are templated on the mutex which makes them a bit more flexible
  than using a concrete type: they can be used for any type of lockable
  mutex, not only util::Mutex.  (Some of the code here uses them for
  getting locks around a std::mutex).  Until C++17, using the RAII types
  is painfully verbose:

  ```C++
  // pre-C++17 - needing to figure out the mutex type here is annoying:
  std::unique_lock<util::Mutex> lock(mutex);
  // pre-C++17 and even more verbose (but at least the type isn't needed):
  std::unique_lock<decltype(mutex)> lock(mutex);
  // our compromise:
  auto lock = util::unique_lock(mutex);
  // C++17:
  std::unique_lock lock(mutex);
  ```

  All of these functions will also warn (under gcc or clang) if you
  discard the return value.  You can also do fancy things like
  `auto l = util::unique_lock(mutex, std::adopt_lock)` (which lets a
  lock take over an already-locked mutex).

- metrics code is gone, which also removes a big pile of code that was
  only used by metrics:
  - llarp::util::Scheduler
  - llarp:🧵:TimerQueue
  - llarp::util::Stopwatch
2020-02-21 23:22:47 -04:00
Jeff Becker 0f13591802
does not work 2020-01-28 16:55:36 -05:00
Ryan Tharp cd8aba4d4e daemon don't override the existing CURL 2019-12-23 07:16:13 +00:00
Rick V fd6602bf05
fix versiontag 2019-12-16 11:32:42 -06:00
Rick V 9fa9209114
don't be aggressive
remove libcurl packaging rules. We still build it, but ship only the curl.exe
2019-12-16 11:28:47 -06:00
Rick V 6d49ffd60b
include all platform dependencies transitively 2019-12-16 11:28:46 -06:00
Rick V e15c57c114
get ready for v0.6
bump version

don't ship the shared object
2019-12-16 11:28:21 -06:00
Jason Rhinelander 638fb25b47 Put version info into a compiled file
This rewrites the version info using lokid's approach of compiling it
into a .cpp file that gets generated as part of the build (*not* during
the configure stage).

Among other things, this means that changing the version no longer
invalidates ccache or cmake dependencies, and because it depends on
`.git/index` git commits will cause the version to be regenerated,
making the commit tag more reliable (currently if you rebuild without
running cmake your git commit tag doesn't update).
2019-12-11 22:40:07 -04:00
Jeff Becker cec36b62b5 make logic and net thread one in the same 2019-12-10 11:49:32 -07:00
Jeff Becker 70771a2460
fix last commit 2019-12-07 14:58:52 -05:00
Jeff Becker f56e543d75
add deadlock checker and revert bencode change from long ago 2019-12-07 14:58:19 -05:00
Rick V cf3469e11a
crash on wine, we support linux, ucb_unix, svr4
natively ffs. i tested this patch on wine 4.4 on fuckin
Solaris 11 snv_151
2019-12-01 19:01:40 -06:00
Jason Rhinelander f54740fa85 Don't pointlessly set conffname back to itself 2019-11-20 18:00:10 -04:00
Jason Rhinelander e0340e86b2 clang-format fixes 2019-11-20 17:45:56 -04:00
Jason Rhinelander 2bdde18558 Remove shell globbing of path
resolvePath was leaking memory (the returned char * from realpath was
never freed), but upon closer inspection resolvePath doesn't seem right:
shell/glob/~ expansion is the job of the shell, not the argument (but
worse, if you pass it something like '~' (quoted) it would expand, which
is wrong.

Also de-duplicate some code.
2019-11-20 17:22:07 -04:00
Rick V 83c5e9ace4
manually merge #859 2019-10-30 18:02:34 -05:00
jeff 869ab0b652 Merge remote-tracking branch 'upstream/dev' into vpn-api-2019-10-03 2019-10-21 08:01:29 -04:00
Michael f6adacf936
Review fixes 2019-10-09 23:00:50 +01:00
Michael 3371da98cf
Use libcurl (optional dependency) to hit jsonrpc 2019-10-09 23:00:50 +01:00
jeff c26b67c379 finish wiring up jni shizz 2019-10-08 10:52:01 -04:00
jeff 7d7c6bf38c Merge remote-tracking branch 'upstream/dev' into multithreaded-cryptography 2019-10-07 06:08:47 -04:00
michael-loki 4b6dab5651
Fixup 2019-10-05 17:06:35 +01:00
Michael abc527ca35
Split cmake files for executables into src dirs 2019-10-05 16:08:12 +01:00
jeff 52757fef0e Merge remote-tracking branch 'micheal/background_mode' into vpn-api-2019-10-03 2019-10-04 14:10:58 -04:00
Michael 15cb49c9bd
Introduce --background to only start JSON RPC
fixes #853
2019-10-04 10:32:52 +01:00
Stephen Shelton c9b862a12b Add a --version flag to lokinet CLI args 2019-10-02 12:08:45 -06:00
jeff 32ed821763 Merge remote-tracking branch 'upstream/dev' into multithreaded-cryptography 2019-10-01 10:51:28 -04:00
Michael ae3fc3a395
Add initial macOS app 2019-09-24 09:50:57 +01:00
Jeff Becker 12314e8d00
ensure no crash on quit 2019-09-04 08:41:07 -04:00
Michael 1aec0dfa2b
Move logging to subdirectory 2019-09-03 20:52:27 +01:00
Michael c98ae332b2
Add missing header 2019-08-13 00:26:25 +00:00
Michael 0a1620aff2
make format 2019-08-12 22:10:07 +00:00
Michael de21a2f687
Include json output 2019-08-12 22:09:44 +00:00
Michael 8c5bbcaeeb
Update rcutil and add to build 2019-08-12 21:47:30 +00:00
Rick V f6c97091fd
clang-format 2019-08-01 22:25:48 -05:00
Rick V 581e64a2ef
back out for now 2019-08-01 21:39:45 -05:00
Rick V 578bcba73d
ok use exception filter
typo

no infinite loops
2019-08-01 21:39:44 -05:00
Rick V 16096c6adb
add debug helper lib for core dump generation on all supported windows targets
had an epiphany earlier

i kept having problems with static linking because
i merged the GNU C runtime with the SEH library
instead of merging the latter with pthread
2019-08-01 21:39:42 -05:00
Jeff Becker c1bf69f96f
run main in it's own thread and set its process name. 2019-07-26 08:55:08 -04:00
Michael a2326efa37
Revert "Merge pull request #679 from tewinget/revert-config-refactor"
This reverts commit 2996a7f29c, reversing
changes made to 10df3bd4b3.
2019-07-06 14:46:25 +01:00
Thomas Winget d044d60101 Reverts #678 #677 and #669 with hashes:
10df3bd
766ece8
979f095

See those commits for further details
2019-07-02 11:02:20 -04:00
Michael 00c237dc6d
Move config class to its own dir 2019-07-02 01:58:38 +01:00
Michael 8323725509
Initial No-Op Crypto implementation 2019-05-29 09:46:34 +01:00
Ryan Tharp 124e9dc4bf
Merge pull request #556 from neuroscr/issue547-2
handle relative config paths better
2019-04-23 17:40:54 -07:00
Ryan Tharp 89837d5528 handle relative config paths better 2019-04-23 17:40:44 -07:00
Ryan Tharp 4f70c729c0
Merge pull request #554 from neuroscr/issue547-2
fix generate router config
2019-04-23 17:04:05 -07:00
Ryan Tharp ecec0628f0 fix generate router config 2019-04-23 17:03:42 -07:00
Ryan Tharp db25a9107c format / fix syntax error 2019-04-23 16:17:10 -07:00
Ryan Tharp f9d20fe75b
Merge branch 'master' into cooler_help 2019-04-23 16:10:52 -07:00
Ryan Tharp b36b378583 issue 547 make format 2019-04-23 14:57:01 -07:00
Ryan Tharp 8cf6a77c1d address issue loki-project#547, remove client.ini, update ini defaults, and clean up help message 2019-04-23 14:50:49 -07:00
Michael 5589d9b471
Make help more useful 2019-04-23 21:52:13 +01:00
Rick V afdb6cf2f3
windows is the oddball yet again 2019-04-22 18:06:03 -05:00
Jeff Becker 73a71e43c3
vec -> arg 2019-04-21 18:15:47 -04:00
Jeff Becker 0a990fbdff
fix positional arguments in main 2019-04-21 17:48:28 -04:00
michael-loki 0195152e05 Allow builds on MSVC (#518)
* Import cxxopts to replace getopts usage

* Add visual studio build things

* Fixup abseil build parts

* Replace __attribute__((unused)) with ABSL_ATTRIBUTE_UNUSED

* Fixup minor windows build issues

* Replace getopts usage

* Temporarily fixup .rc files

* More minor windows fixes

* Get a working build

* Revert .rc files

* Revert changes to nodedb
2019-04-19 13:24:33 -05:00
Michael 57d6668e55
Move metrics out of daemon into llarp::Context 2019-04-05 10:20:48 +01:00
Rick V 1fb3a0bf62
stderr is unbuffered by default? 2019-04-03 01:14:15 -05:00
Michael 91f401ff71
Integrate metrics into router 2019-03-25 20:36:23 +00:00
Michael c5a129ddff
Convert to use abseil synchronisation primitives 2019-03-03 21:20:38 +00:00
Michael 67b5d48095
Replace usage of new/delete with unique_ptr/stack allocation 2019-02-11 16:24:05 +00:00
Rick V 3931b7d9d7
implement missing libabyss functionality
remove some finished TODOs
2019-02-06 19:53:11 -06:00
Rick V ad1179a333
remove ref to nrmicro
add note
2019-02-06 19:53:11 -06:00
Rick V 8741f0dd59
NetBSDs don't fully implement POSIX.1-2001 (!!!) 2019-02-06 19:53:07 -06:00
Rick V f277f368a1
win32 g++ is set to c++17 by default, so we use the _real_ string_view class 2019-02-06 19:53:06 -06:00
Ryan Tharp befcdc179e address #251 and improve UX 2019-01-29 03:23:40 -08:00
Ryan Tharp 1ba5b75082 Merge branch 'master' of https://github.com/neuroscr/loki-network 2019-01-16 21:25:37 +00:00
Ryan Tharp a2ca33130f always show what config file it's using 2019-01-16 12:57:45 -08:00
Michael 04e0fe3ad7
Move crypto code to a subdirectory 2019-01-13 15:06:16 +00:00
Michael b1ffdba7ba
Build with libabyss 2019-01-11 01:59:44 +00:00
Michael e5eda0fb8f
Move lokinet unspecific components to a util/ library 2019-01-10 20:07:24 +00:00
Michael 4f90192e1a
Fix lifetime issues in llarp_findOrCreate* function calls 2019-01-03 23:10:32 +00:00
Jeff 4b2a1ea9f3 make format and attempt to fix #158 2018-12-23 08:29:11 -05:00
despair 321251c944
implemented SIGINT handler for NT 2018-12-22 12:58:14 -06:00
Jeff Becker be234e4b6e
* make format
* snode to snode direct traffic

* wire up dns on service node tun
2018-12-13 11:14:44 -05:00
Michael 85dde7b6b0
Move remaining include/llarp headers to llarp/ 2018-12-12 02:53:02 +00:00
Michael b92ea0521b
Move router_contact.hpp to llarp/ 2018-12-12 02:53:01 +00:00
Michael a5c3ba0fdd
Move logger.hpp to llarp/ 2018-12-12 02:53:01 +00:00
Michael 7be452092c
Convert llarp_crypto to be a true C++ class 2018-12-11 00:53:55 +00:00
Michael f0fce5b68a
Convert llarp_router to be a true C++ class 2018-12-10 20:15:35 +00:00
Michael 30e9dca2e5
Convert llarp_logic to be a C++ class 2018-12-10 14:15:11 +00:00
Jeff Becker 0bfe9a5fee
fix 2018-12-02 21:17:36 -05:00
Jeff Becker 472948a610
more dns tweaks 2018-12-01 09:35:11 -05:00
Jeff Becker 90a2545bb1
handle SIGTERM 2018-11-29 08:12:28 -05:00
Ryan Tharp 1c6031c677 clang-format 2018-11-21 16:39:09 -08:00
Ryan Tharp 0046b705e8 generic_handle_dnsc_recvfrom() remove unneeded parameter, start making daemon/dns better, deprecate raw_handle_recvfrom() 2018-11-21 16:29:42 -08:00
Jeff Becker b543d6243d
Merge branch 'master' into dev 2018-11-20 07:42:17 -05:00
Michael 0b2ebc83e0
De-C-ify several .h headers 2018-11-19 22:45:37 +00:00
Jeff Becker 56676002aa
wire up exit traffic 2018-11-14 14:34:17 -05:00
Jeff Becker e91d7cf88f
Merge remote-tracking branch 'rick/dev' into dev 2018-11-13 06:39:41 -05:00
despair f6fb063684 this is driving me at least mildly insane
we _never_ get to llarp::udp_listener::read
2018-11-12 23:39:50 -06:00
despair 0eacab7759 warn windows user if using untested relay mode
update readme
2018-11-11 22:50:41 -06:00
Jeff Becker a73418abe3
do the right fix for warnings 2018-11-08 07:42:55 -05:00
Jeff Becker 960aa479e9
fixes for ancient rpi toolchain 2018-11-08 07:31:50 -05:00
Jeff Becker d9e4e139ed
fix compile on ubuntu 2018-11-07 11:01:01 -05:00
despair 38f2a6b2c9 be slightly less annoying
check build rules
2018-10-30 00:16:34 -05:00
despair c5d1b32286 remove microsoft c++ crud
🤔🤔🤔🤔
2018-10-30 00:16:33 -05:00
Jeff ccead80c3d make jsonrpc server configurable on build, disabled by default.
default to client only and require explicitly run as relay to run as relay.
2018-10-27 08:41:04 -04:00
Jeff Becker de17324012
don't make tcp event code epoll specific 2018-10-25 08:00:29 -04:00
Jeff Becker d3278946f2
ipv4 bogon checking 2018-10-15 08:02:32 -04:00
cathugger 4d5f5fecfa
ip: make things fragmentation-aware, cleanup UDP handling; also format
one's complement math is pretty fun
2018-10-13 18:42:47 +03:00
Ryan Tharp 7e217366e6 fix overwrite? 2018-10-04 07:09:36 -07:00
Ryan Tharp f824ac8701 enable dotLokiLookup through router tun endpoint dnsd 2018-10-03 03:33:58 -07:00
Ryan Tharp 4b3b09736b Merge branch 'master' of https://github.com/loki-project/loki-network 2018-10-02 23:11:44 +00:00
despair86 991c1d8fce fix 2018-10-01 15:19:26 -05:00
despair86 9fdde65798 make bencode ILP32/LLP64 clean (long is 32 bits outside of unix!)
actually open new RCs in binary mode
clang-format
win32 skeleton code for tun (still working on the guts)
2018-10-01 15:08:55 -05:00
despair86 8ac7d4f6dc if we didn't specify a path to save our config in, only create .lokinet on the assumption that $HOME or $APPDATA (on NT) already exist
add win32 tun glue, fix llarp timebase
(In fact, _both_ of these are guaranteed to exist on their respective platforms.)
also, tuntap is now wired up to the windows port
2018-10-01 15:08:52 -05:00
Ryan Tharp 47d71c601c fix another overwrite 2018-10-01 03:08:05 -07:00
Ryan Tharp c11e61a51d add -c for client auto-config, -f for overwrite 2018-10-01 02:58:30 -07:00
Ryan Tharp 058ed4d4ea Merge branch 'master' of https://github.com/neuroscr/loki-network 2018-10-01 09:03:31 +00:00
Ryan Tharp b7f4907925 update DNS* init 2018-09-29 03:28:24 -07:00
Jeff Becker 8a4b2e97a5
add lint target for makefile using clang tidy
run make format
2018-09-28 10:29:34 -04:00
Jeff Becker 2e3601b140
fucking fix -V option that didn't fucking work wtf 2018-09-27 14:08:42 -04:00
Ryan Tharp 0c6f3e19a3 fix linux header 2018-09-24 13:24:08 +00:00
Ryan Tharp 902f6f14b7 pass RC by ref, header cleanup, clang format 2018-09-24 06:10:36 -07:00
Ryan Tharp 0ad4f43fe5 header clean up and clang-format 2018-09-24 06:09:01 -07:00
Ryan Tharp 9d4d595624 compile fixes 2018-09-22 03:39:53 -07:00
Ryan Tharp 3183d5a19e make sigint work, clean up dead code, update api, format 2018-09-22 03:18:56 -07:00
Ryan Tharp 6ba51c7cc0 enable prefetch 2018-09-21 12:54:37 +00:00
Ryan Tharp 29a304f928 Merge branch 'master' of https://github.com/loki-project/loki-network 2018-09-20 12:45:19 +00:00
Ryan Tharp 0ffd49af04 bind to port 53, get first tun interface and set it up with dns tracker 2018-09-20 12:37:45 +00:00
Ryan Tharp eebb2609b8 try to map an address 2018-09-20 03:08:07 -07:00
Jeff Becker 3938517dc6
fix creation 2018-09-19 09:32:50 -04:00
Ryan Tharp f9936b43d3 Merge branch 'master' of https://github.com/loki-project/loki-network 2018-09-19 13:21:15 +00:00
Jeff Becker 1d5adaf4cc
fix previous commit 2018-09-19 09:17:15 -04:00
Jeff Becker 3feb45bdf8
more fixes for main 2018-09-19 09:15:07 -04:00
Jeff Becker b00ee5203c
fix config generation with specified config file 2018-09-19 09:10:14 -04:00
Jeff Becker 58198656a3
configurable base directory for config and add option for only generating config 2018-09-19 09:02:55 -04:00
Ryan Tharp f283923cb7 Merge branch 'master' of https://github.com/loki-project/loki-network 2018-09-19 12:28:48 +00:00
Ryan Tharp 9f33edeed0 Merge branch 'master' of https://github.com/loki-project/loki-network 2018-09-19 12:22:34 +00:00
Jeff Becker 43b4e1eaf3
don't sighup for windows 2018-09-19 07:57:07 -04:00
Jeff Becker e047bfa266
update readme
add sighup
2018-09-17 07:47:34 -04:00
Ryan Tharp 742a0b8da7 Merge branch 'master' of https://github.com/loki-project/loki-network 2018-09-06 00:32:06 +00:00
Jeff Becker c3c388b6aa
remove iwp and start on curvecp
does not compile
2018-09-02 14:25:42 -04:00
Jeff Becker 973f86c900
it compiles 2018-08-31 08:46:54 -04:00
Jeff Becker 5228a81bae
more refactor
get rid of C api
2018-08-30 14:48:43 -04:00
Jeff Becker a11bd44a7c
update rc util import 2018-08-24 13:26:17 -04:00
Jeff Becker 435fba25fd
add parts to rcutil to print out info about RCs: ./rcutil -V self.signed 2018-08-24 12:07:17 -04:00
Ryan Tharp 70345abe18 --b32, --hex, --find to locate service address 2018-08-17 03:40:40 -07:00
Ryan Tharp e732e17f0d better .loki handling 2018-08-17 03:37:59 -07:00
Ryan Tharp a5f2f7080d Merge branch 'master' of https://github.com/neuroscr/loki-network 2018-08-16 10:44:31 +00:00
Ryan Tharp 94b6b828c1 Merge branch 'master' of https://github.com/loki-project/loki-network 2018-08-16 10:38:02 +00:00
Jeff Becker 186bd7d573
use NTRU for introset end to end encryption 2018-08-13 19:22:31 -04:00
Ryan Tharp ec237768d7 merge 2018-08-13 01:47:24 -07:00
Ryan Tharp ab3493ba3d Merge branch 'master' of https://github.com/loki-project/loki-network 2018-08-13 08:31:54 +00:00
Jeff Becker d7c1c3322f
it works. 2018-08-12 13:22:29 -04:00
Ryan Tharp 3ada1e15be llarp_main_queryDHT_RC(), llarp_main_init_dnsd(), actually query DHT on dns lookup 2018-08-09 04:22:57 -07:00
Ryan Tharp c0ee5ab590 remove unused global 2018-08-09 04:20:59 -07:00
Jeff Becker 62f41d3747
initial threadpool isolation code and run make format 2018-08-08 13:43:46 -04:00
Ryan Tharp b5e136d916 fix if 10 is in use, comments and other last minute notes 2018-08-08 06:21:14 -07:00
Ryan Tharp 2aa091f98d format 2018-08-08 06:08:38 -07:00
Ryan Tharp bb13364c57 make caching work 2018-08-08 05:50:03 -07:00
Ryan Tharp 16c56ff04b Merge branch 'master' of https://github.com/majestrate/llarp + gcc 7.2 fixes 2018-08-06 12:02:00 +00:00
Jeff Becker 0d2bce2089 fix up win32 specific parts 2018-08-03 09:30:34 +10:00
Ryan Tharp 52bbf890ef move hook out of dnsd into daemon, made hook use timer, decode_answer has beginning SOA parsing support, getDNSstring() refactor 2018-08-02 05:51:49 -07:00
despair86 bdc54835c2 initial windows server port. Requires Windows 2000 Server or later.
- updated CMake build script
- builds with Microsoft C++ 19.1x. such builds require Windows 8.1 or later
  unless you have the .NET Server 2003-toolset (v141_xp)
- windows port requires a C++17 compiler since cpp17::filesystem is POSIX-only
- HAVE_CXX17_FILESYSTEM manual toggle in CMake. You must manually specify where
  std::[experimental::]filesystem is defined in LDFLAGS or CMAKE_x_LINKER_FLAGS.
- IPv6 support can be added at any time, and the windows sdk still has that
  inline getaddrinfo(3) if it can't find a suitable IPv6 stack.
- inline code for mingw-w64: there's a few bits and pieces still missing simply because
  mingw-w64 derives its windows sdk from wine and reactos, and then writing all the newer
  stuff into it by hand straight from the MSDN manpages.
- misc. C++11 stuff (nullptr and friends)
- Internal file handling code takes UTF-8 or plain 8-bit text, NTFS is UTF-16, so
  std::filesystem::path::c_str() is wchar_t. That's no good unless you first
  call std::filesystem::path::string().
- implemented getifaddrs(3) and if_nametoindex(3) on top of GetAdapters[Info|Addresses](2).
- updated readme with new info

BONUS: may implement Solaris/illumos IOCP someday...

-despair86
2018-08-01 23:41:02 -05:00
Ryan Tharp de56a32069 another DNS clean up pass 2018-08-01 02:04:40 -07:00
Ryan Tharp 0b32bad7b9 Merge branch 'master' of https://github.com/majestrate/llarp 2018-08-01 02:29:16 +00:00
Jeff Becker d011fb550e have logic and netio run in same thread for now 2018-07-30 08:20:31 +10:00
Ryan Tharp 05e34e7b2f hook to get dnsd_context it was called from 2018-07-27 20:07:47 -07:00