Commit Graph

100 Commits (db0920d921c6984d85fba97b8ccd9d51065684f4)

Author SHA1 Message Date
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
4 years ago
Stephen Shelton 182057e881
Remove 'clang-format off' and make format 4 years ago
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
4 years ago
Jeff Becker cec36b62b5 make logic and net thread one in the same 5 years ago
Jeff Becker 70771a2460
fix last commit 5 years ago
Jeff Becker f56e543d75
add deadlock checker and revert bencode change from long ago 5 years ago
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
5 years ago
Jason Rhinelander f54740fa85 Don't pointlessly set conffname back to itself 5 years ago
Jason Rhinelander e0340e86b2 clang-format fixes 5 years ago
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.
5 years ago
jeff 869ab0b652 Merge remote-tracking branch 'upstream/dev' into vpn-api-2019-10-03 5 years ago
Michael 3371da98cf
Use libcurl (optional dependency) to hit jsonrpc 5 years ago
jeff c26b67c379 finish wiring up jni shizz 5 years ago
jeff 7d7c6bf38c Merge remote-tracking branch 'upstream/dev' into multithreaded-cryptography 5 years ago
jeff 52757fef0e Merge remote-tracking branch 'micheal/background_mode' into vpn-api-2019-10-03 5 years ago
Michael 15cb49c9bd
Introduce --background to only start JSON RPC
fixes #853
5 years ago
Stephen Shelton c9b862a12b Add a --version flag to lokinet CLI args 5 years ago
jeff 32ed821763 Merge remote-tracking branch 'upstream/dev' into multithreaded-cryptography 5 years ago
Michael ae3fc3a395
Add initial macOS app 5 years ago
Jeff Becker 12314e8d00
ensure no crash on quit 5 years ago
Michael 1aec0dfa2b
Move logging to subdirectory 5 years ago
Rick V f6c97091fd
clang-format 5 years ago
Rick V 581e64a2ef
back out for now 5 years ago
Rick V 578bcba73d
ok use exception filter
typo

no infinite loops
5 years ago
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
5 years ago
Jeff Becker c1bf69f96f
run main in it's own thread and set its process name. 5 years ago
Michael a2326efa37
Revert "Merge pull request #679 from tewinget/revert-config-refactor"
This reverts commit 2996a7f29c, reversing
changes made to 10df3bd4b3.
5 years ago
Thomas Winget d044d60101 Reverts #678 #677 and #669 with hashes:
10df3bd
766ece8
979f095

See those commits for further details
5 years ago
Michael 00c237dc6d
Move config class to its own dir 5 years ago
Michael 8323725509
Initial No-Op Crypto implementation 5 years ago
Ryan Tharp 124e9dc4bf
Merge pull request #556 from neuroscr/issue547-2
handle relative config paths better
5 years ago
Ryan Tharp 89837d5528 handle relative config paths better 5 years ago
Ryan Tharp 4f70c729c0
Merge pull request #554 from neuroscr/issue547-2
fix generate router config
5 years ago
Ryan Tharp ecec0628f0 fix generate router config 5 years ago
Ryan Tharp db25a9107c format / fix syntax error 5 years ago
Ryan Tharp f9d20fe75b
Merge branch 'master' into cooler_help 5 years ago
Ryan Tharp b36b378583 issue 547 make format 5 years ago
Ryan Tharp 8cf6a77c1d address issue loki-project#547, remove client.ini, update ini defaults, and clean up help message 5 years ago
Michael 5589d9b471
Make help more useful 5 years ago
Rick V afdb6cf2f3
windows is the oddball yet again 5 years ago
Jeff Becker 73a71e43c3
vec -> arg 5 years ago
Jeff Becker 0a990fbdff
fix positional arguments in main 5 years ago
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
5 years ago
Michael 57d6668e55
Move metrics out of daemon into llarp::Context 5 years ago
Rick V 1fb3a0bf62
stderr is unbuffered by default? 5 years ago
Michael 91f401ff71
Integrate metrics into router 5 years ago
Michael c5a129ddff
Convert to use abseil synchronisation primitives 5 years ago
Rick V 3931b7d9d7
implement missing libabyss functionality
remove some finished TODOs
5 years ago
Rick V ad1179a333
remove ref to nrmicro
add note
5 years ago
Rick V 8741f0dd59
NetBSDs don't fully implement POSIX.1-2001 (!!!) 5 years ago