1. 23 Oct, 2020 3 commits
    • Andrii Grynenko's avatar
      Use AtomicNotificationQueue in EventBase · a7c4b5ba
      Andrii Grynenko authored
      Differential Revision: D24414496
      
      fbshipit-source-id: ad552d3dd58b6c351c99e5f8c9056c5829c4c095
      a7c4b5ba
    • Victor Zverovich's avatar
      Add a StringPiece formatter · 6d95d30f
      Victor Zverovich authored
      Summary: Add an {fmt} formatter for `StringPiece`. This is much faster than going through ostream `operator<<` which we fallback to otherwise.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D24337424
      
      fbshipit-source-id: c6f1775cf83cfa6bcaa25cb4f6b665a76672e7c3
      6d95d30f
    • Nanshu Chen's avatar
      clean up unnecessary c++ extern imports · 35b4d759
      Nanshu Chen authored
      Summary:
      A lot of these imports with specialization is not necessary. Clean up them to use generic functions instead.
      
      (Note: this ignores all push blocking failures!)
      
      Reviewed By: yfeldblum
      
      Differential Revision: D24236181
      
      fbshipit-source-id: fe6e6c41f680561c625b263bc6adeba738ddb252
      35b4d759
  2. 22 Oct, 2020 6 commits
    • Sridhar Srinivasan's avatar
      Invoke life cycle observer callbacks during event base attach and · 99f8dcdd
      Sridhar Srinivasan authored
      Summary: Inform LifecycleObservers when an EventBase is attached or detached from an AsyncSocket.
      
      Reviewed By: bschlinker
      
      Differential Revision: D24294292
      
      fbshipit-source-id: 652ec438d0b6213a78742b8a8ef0d24d55ac9816
      99f8dcdd
    • Margot Leibold's avatar
      Implement ReadMostlyTLObserver · d5d78479
      Margot Leibold authored
      Summary: Implement a thread local Observer that optimizes on the shared_ptr copy by using ReadMostlySharedPtr
      
      Reviewed By: andriigrynenko
      
      Differential Revision: D24439652
      
      fbshipit-source-id: 9174be7f3f2fc34bdc79bd83eab571972b0c057d
      d5d78479
    • Margot Leibold's avatar
      constructor benchmark · 31563f4c
      Margot Leibold authored
      Summary: Construction of ReadMostlyMainPtr is much slower than shared_ptr
      
      Reviewed By: yfeldblum
      
      Differential Revision: D24350176
      
      fbshipit-source-id: 55730192f79288e7ad848b4cec6483bc0c1711b6
      31563f4c
    • Andrii Grynenko's avatar
      AtomicNotificationQueue · 50e9d1bb
      Andrii Grynenko authored
      Summary:
      This is a lock-free replacement for NotificationQueue. Unlike notification queue it supports only one consumer, which allows simplifying the internal structure a lot and avoiding any use of spin locks.
      Another improvement comparing to NotificationQueue is the use of epoll edge-triggered events. This allows completely eliminating read syscals, since we don't need to drain eventfd to stop it from waking up the epoll loop.
      
      Differential Revision: D24297158
      
      fbshipit-source-id: 1f418d861210f6dcad52b4d663f49eb2e8f3ae8c
      50e9d1bb
    • Michel Salim's avatar
      encode PACKAGE_VERSION in libfolly.pc · eaee7b4b
      Michel Salim authored
      Summary:
      `libfolly.pc` should contain the actual version of Folly, instead of just
      `master`.
      
      Reviewed By: danobi
      
      Differential Revision: D24471074
      
      fbshipit-source-id: 5fc29eeee25c8c317c3405f430fd079d47c441bd
      eaee7b4b
    • Andrii Grynenko's avatar
      Fix EventBase death tests · 298b697f
      Andrii Grynenko authored
      Summary:
      Existing test was supposed to be testing the exception, but was instead dying because of the pid check.
      Have 2 separate tests and use crash message regex to make sure they actually test what they are supposed to be testing.
      
      Differential Revision: D24461683
      
      fbshipit-source-id: b7ef30e488d266ea17e283f9b13b5d013a4a125a
      298b697f
  3. 21 Oct, 2020 6 commits
    • Davide Cavalca's avatar
      folly: set shared libraries version · f817aff7
      Davide Cavalca authored
      Summary:
      This should make packaging folly easier, as it allows one to set the
      .so version to denote ABI breaks. Specifically, we're looking to use this in
      https://bugzilla.redhat.com/show_bug.cgi?id=1887621 to package folly in Fedora
      and have the version match the tagged release version (i.e. treat every release
      as ABI breaking).
      
      Differential Revision: D24451669
      
      fbshipit-source-id: f63be760c90567117f1ebbec37416c0d9d8a4736
      f817aff7
    • Davide Cavalca's avatar
      folly: always enable PIE in shared libs build · 3b1bdb98
      Davide Cavalca authored
      Summary:
      This reverts https://github.com/facebook/folly/pull/833 by adding back
      the unconditional setting of `POSITION_INDEPENDENT_CODE` when building shared
      libs. Without it, the build fails with a number of relocation errors. This was
      previously reported in https://github.com/facebook/folly/issues/983
      
      Differential Revision: D24449731
      
      fbshipit-source-id: 6f6cb71ef545d02998afb09909772b62657c1262
      3b1bdb98
    • Davide Cavalca's avatar
      folly: fix permissions on a couple of files · c20d1a93
      Davide Cavalca authored
      Summary: These do not need to be executable
      
      Differential Revision: D24449732
      
      fbshipit-source-id: 5f013c62dd6bf88fe4d50782a4c5bfcec6834aec
      c20d1a93
    • Michael Lee (Engineering)'s avatar
      `FOLLY_MAYBE_UNUSED` does not work on Windows · a55fdc39
      Michael Lee (Engineering) authored
      Summary:
      `frame` may be unused depending on whether it is compiled with or without asserts.
      
      `FOLLY_MAYBE_UNUSED` is supposed to take care of this, but it does not work on Windows and trips up the comiler:
      
      ```
      warning C4100: frame: unreferenced formal parameter
      ```
      
      Reviewed By: johnkearney, akrieger
      
      Differential Revision: D24451220
      
      fbshipit-source-id: 8225640a5e8fd0ceed4ffcc53cea7422a5581d6f
      a55fdc39
    • Yedidya Feldblum's avatar
      to_shared_ptr_aliasing · 9ffd6285
      Yedidya Feldblum authored
      Summary: [Folly] `to_shared_ptr_aliasing`, exposing the shared-ptr aliasing constructor as a free function deducing the types of its arguments.
      
      Reviewed By: Mizuchi
      
      Differential Revision: D24414504
      
      fbshipit-source-id: 290e822464860b824961986211375d87f942f483
      9ffd6285
    • Lewis Baker's avatar
      Update folly::fibers to preserve thread_local AsyncStackRoot · 039b4056
      Lewis Baker authored
      Summary:
      Updates the FiberManager to make sure that it saves/restores the current-thread's
      top-most active AsyncStackRoot when the coroutine is suspended/resumed.
      
      This is required for correctness to ensure async stack traces remain functional
      in the presence of fiber context-switches.
      
      (Note: this ignores all push blocking failures!)
      
      Reviewed By: yfeldblum
      
      Differential Revision: D21130668
      
      fbshipit-source-id: 4002bae0fc12a61c38836f9f099da4e6cf9183f4
      039b4056
  4. 20 Oct, 2020 2 commits
    • Alex Blanck's avatar
      Fix UndefinedBehaviorSanitizer error in `retryingPolicyCappedJitteredExponentialBackoff` · c663849f
      Alex Blanck authored
      Summary:
      While running some unit tests which happen to call into `folly::futures::retryingPolicyCappedJitteredExponentialBackoff`, I noticed that  `retryingJitteredExponentialBackoffDur` was triggering a "float-cast-overflow" error from UndefinedBehaviorSanitizer.
      
      It turns out that this only happened if `backoff_min` was 0 and there were at least 1025 retries. The large retry count caused the exponential term in the calculation to become `Infinity`. In floating point, Infinity multiplied by 0 was `NaN`, causing the sanitizer error.
      
      Although `backoff_min` should typically not be set to 0 because this effectively disables all backoff, I think there may be cases, such as unit tests, where setting `backoff_min` to 0 does make sense. This commit adds an additional check to handle this unusual case.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D24122470
      
      fbshipit-source-id: 48a8aede0d22e73cf001dab5eb184e841f3c23aa
      c663849f
    • Dan Melnic's avatar
      Remove FOLLY_HAVE_MSG_ERRQUEUE check · d1015a0b
      Dan Melnic authored
      Summary: Remove FOLLY_HAVE_MSG_ERRQUEUE check
      
      Reviewed By: yfeldblum
      
      Differential Revision: D24295244
      
      fbshipit-source-id: 24d4a69a013951b37fe7c93539b26eedf8113360
      d1015a0b
  5. 19 Oct, 2020 4 commits
    • Daniel Xu's avatar
      Use assert() instead of DCHECK · 81e350e1
      Daniel Xu authored
      Summary:
      We were seeing the following build failures on i386:
      ```
      In file included from folly/stats/detail/BufferedStat.h:151,
                       from folly/stats/QuantileEstimator.h:20,
                       from folly/stats/QuantileEstimator.cpp:17:
      folly/stats/detail/BufferedStat-inl.h: In member function 'void folly::detail::BufferedStat<DigestT, ClockT>::doUpdate(folly::detail::BufferedStat<DigestT, ClockT>::TimePoint, const std::unique_lock<folly::SharedMutexImpl<false> >&, folly::detail::BufferedStat<DigestT, ClockT>::UpdateMode)':
      folly/stats/detail/BufferedStat-inl.h:72:3: error: there are no arguments to 'DCHECK' that depend on a template parameter, so a declaration of 'DCHECK' must be available [-fpermissive]
         72 |   DCHECK(g.owns_lock());
            |   ^~~~~~
      ```
      
      My best guess is some kind of argument dependent lookup complication.
      
      This diff sidesteps the issue by using plain old `assert()` instead
      
      Reviewed By: yfeldblum
      
      Differential Revision: D24375147
      
      fbshipit-source-id: d702d883fcabc548e8f4969207e265abf21acf2b
      81e350e1
    • Dan Melnic's avatar
      AsyncUDPSocket: use actual controllen size instead of max · a07ea58a
      Dan Melnic authored
      Summary: AsyncUDPSocket: use actual controllen size instead of max
      
      Reviewed By: danobi
      
      Differential Revision: D24368739
      
      fbshipit-source-id: 0c1083a058d8fe0ddc212989a262f3eeebfa610c
      a07ea58a
    • Lukas Piatkowski's avatar
      rust/shed/hostname: rename hostname dependency to unbreak doctests (#15) · 1d8b0ebc
      Lukas Piatkowski authored
      Summary:
      Pull Request resolved: https://github.com/facebookexperimental/rust-shed/pull/15
      
      With the update from rustc 1.44 to 1.47 the doctests started to break when building a crate that depends on a different crate of the same name, see this: https://github.com/rust-lang/cargo/issues/6819
      
      This diff also removes the TravisCI build as it was broken and unused for some time.
      
      Reviewed By: krallin
      
      Differential Revision: D24390815
      
      fbshipit-source-id: fa9c78ef394640afbf8c419f8276bbf339960406
      1d8b0ebc
    • generatedunixname89002005325676's avatar
      Daily `arc lint --take CLANGFORMAT` · 6cc4b27d
      generatedunixname89002005325676 authored
      Reviewed By: zertosh
      
      Differential Revision: D24388883
      
      fbshipit-source-id: 6bba618c6a919cd3947d2a65954feff989bb80a2
      6cc4b27d
  6. 18 Oct, 2020 1 commit
    • Richard Barnes's avatar
      Add `midpoint()` calculation to folly · 430aa0d8
      Richard Barnes authored
      Summary:
      A number of libraries at Facebook include interval midpoint calculations; however, doing these in a mathematically precise way (without over/underflow) can be tricky. Doing them wrong can break binary searches over large datasets and give imprecise floating-point calculations.
      
      This function provides an early opportunity to fix binary searches and other calculations which can later be updated to `std::midpoint()` when C++20 becomes available.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D23997097
      
      fbshipit-source-id: 373e0dc1d1ff071f697ee782be46fb0d49a2f8f7
      430aa0d8
  7. 17 Oct, 2020 1 commit
    • Xavier Deguillard's avatar
      logging: fix prefix stripping on Windows · 9db54edd
      Xavier Deguillard authored
      Summary:
      Windows paths can both use forward slashes as well as backslashes, and also
      contain colons that folly uses to separate prefixes to strip.
      
      The xlogStripFilename unfortunately didn't handle both of these cases leading
      to log categories to always contain the full path instead of a suffix path.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D24353208
      
      fbshipit-source-id: ff17afe4b46f36d46bf468a5e3cf9ba9ba8412b8
      9db54edd
  8. 16 Oct, 2020 6 commits
    • Robin Cheng's avatar
      Relax the stack trace limit for opt mode too. · 308bab0e
      Robin Cheng authored
      Summary:
      Similar to D24179337 (https://github.com/facebook/folly/commit/7cc28784d1749283b7eb78399a0f0a77594dbc14).
      
      Though I'm not actually sure what's causing the increase... maybe the right thing to do is the debug the underlying cause, but I'm also not sure how to debug this exactly.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D24353676
      
      fbshipit-source-id: 12bc5eae939f95d8d091280dc5b5af638f0152a0
      308bab0e
    • Xavier Deguillard's avatar
      HazptrDomain: fix MSVC truncation warning · 2b5dedea
      Xavier Deguillard authored
      Summary:
      The MSVC compiler complains about truncation of size_t to int:
      
        Z:\installed\folly\include\folly/synchronization/HazptrDomain.h(210): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
      
      MSVC being very verbose, this is followed by 25 lines of template expansion.
      
      Since `shard` is a size_t due to `calc_shard` returning that type, let's simply
      make the shard argument of hazptr_warning_list_too_large a size_t too to
      silence the warning.
      
      Reviewed By: magedm
      
      Differential Revision: D24365556
      
      fbshipit-source-id: b426cee7caaf593eb112691bc45b83e564342b0e
      2b5dedea
    • Lukas Piatkowski's avatar
      mononoke/integration: create a Makefile to run tests as part of getdeps.py build (#67) · 3f6324de
      Lukas Piatkowski authored
      Summary:
      Pull Request resolved: https://github.com/facebookexperimental/eden/pull/67
      
      With this change it will be possible to build dependencies of and run integration tests using getdeps.py.
      
      This is the first goal of Q4 as per https://fb.quip.com/v8YzAYNSYgot: "Get Open Source version of integration tests running on Legocastle".
      
      Before this diff:
      The OSS integration tests run now on GitHub by:
      - Building some test dependencies with getdeps.py
      - Building some test dependencies with homebrew/apt-get
      - Running tests via python script
      
      The OSS integration tests were not running on Sandcastle.
      
      After this diff:
      The OSS integration tests run on Github by:
      - Building and executing tests via getdeps.py (execution of tests happens by getdeps.py calling Make calling python script)
      
      The OSS integration tests run on Sandcastle using the same getdeps.py setup as Github.
      
      Reviewed By: krallin
      
      Differential Revision: D24253268
      
      fbshipit-source-id: cae249b72d076222673b8bbe4ec21866dcdbb253
      3f6324de
    • Christopher Kuklewicz's avatar
      Improve documentation comments on EventBaseManager · b26907ea
      Christopher Kuklewicz authored
      Summary:
      # What is the goal?
      
      Address the problem in the post at https://fb.workplace.com/groups/code.indexing/permalink/1929080303917865/ with the comment(s) in Codex for EventBaseManager.
      
      # What was not the way?
      
      Jie Jua noticed that the current comment on "EventBaseManager() {}" in Codex was
      
      ```
      encouraged. You should instead use the global singleton if possible.
      ```
      
      # What is the new way?
      
      Use documentation comments (doxygen) style `/** double starts */` instead of `//` ordinary comments. This should show the full comment which is:
      
      ```
      XXX Constructing a EventBaseManager directly is DEPRECATED and not
      encouraged. You should instead use the global singleton if possible.
      ```
      
      Which really needs that first line.
      
      Differential Revision: D24333522
      
      fbshipit-source-id: 8e84e0a49426844d5a6f6438b0d76fb9886742fe
      b26907ea
    • Orvid King's avatar
      Use the new name for await in the fibers test · 53947e04
      Orvid King authored
      Summary: The bare name isn't defined on windows at all, so we have to use the new internal name instead.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D24044971
      
      fbshipit-source-id: 24b37903ed0f309910d9f5141240b951bf5fba15
      53947e04
    • Alfred Fuller's avatar
      Move clang-format-next changes into clang-format-canary · 0deef031
      Alfred Fuller authored
      Reviewed By: yfeldblum
      
      Differential Revision: D23545773
      
      fbshipit-source-id: e93f84d0658166e875710a4c0fb5dc165a8628d8
      0deef031
  9. 15 Oct, 2020 9 commits
    • Andrew Huang's avatar
      Migrate AsyncSSLSocketTest to V2 Session API · 3fa19ab2
      Andrew Huang authored
      Summary: Migrate AsyncSSLSocketTest to new AsyncSSLSocket session API
      
      Reviewed By: mingtaoy
      
      Differential Revision: D24240249
      
      fbshipit-source-id: ea9bd7669f377c738e44d3348400a2cfbd3c2580
      3fa19ab2
    • Robin Cheng's avatar
      Fix livelock in AtForkTest when running under TSAN. · 08ee18c5
      Robin Cheng authored
      Summary: Use the forkInstrumented call when running under TSAN.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D23787959
      
      fbshipit-source-id: 159f8354ef9746b8374d6da12b22e389c2bc71f4
      08ee18c5
    • Yedidya Feldblum's avatar
      Fix is_constexpr_default_constructible under clang-10 · 068d3f6e
      Yedidya Feldblum authored
      Summary: [Folly] Fix `is_constexpr_default_constructible` under clang-10, which suffers a crash (https://bugs.llvm.org/show_bug.cgi?id=47620) and divergent behavior in certain constexpr evaluations.
      
      Reviewed By: mpark, Mizuchi
      
      Differential Revision: D24302661
      
      fbshipit-source-id: b6a58b5b675f367bf2dc1d810edb9926cfb87a2e
      068d3f6e
    • Dan Melnic's avatar
      TSAN fix for folly/io/test:shutdown_socket_set_test · 7c4ac999
      Dan Melnic authored
      Summary: TSAN fix for folly/io/test:shutdown_socket_set_test
      
      Differential Revision: D24321155
      
      fbshipit-source-id: 753a808c868da4c608c3ee95d16a3673d6f700b0
      7c4ac999
    • Dan Melnic's avatar
      Reduce io_uring test mem requirements · af60f10a
      Dan Melnic authored
      Summary: Reduce io_uring test mem requirements
      
      Reviewed By: xiaofeidu008, danobi
      
      Differential Revision: D24314788
      
      fbshipit-source-id: 35ec01475fbc1cf851a81e33cf8c7fec8dd88ddb
      af60f10a
    • Andrii Grynenko's avatar
      Unwrap Observer in SimpleObservable cache · fbfab7ff
      Andrii Grynenko authored
      Summary: Cache unwrapped observer instead of unwrapping it on every getObserver call.
      
      Reviewed By: jmswen
      
      Differential Revision: D24325934
      
      fbshipit-source-id: d8a023e59c933222a5f43aaacbd9c955236739b3
      fbfab7ff
    • Maged Michael's avatar
      ConcurrentHashMap: Remove comment about potential bottleneck under heavy removal · 2bf4a236
      Maged Michael authored
      Summary:
      Remove comment about potential high contention under sustained frequent removal from CHM-s.
      
      Recent changes to the hazard pointer library eliminated this problem:
      - Asynchronous reclamation of tagged objects (including CHM objects) no longer needs to be done while holding the lock on the list of tagged objects.
      - The list of tagged objects is now sharded and sharding can be easily increased if needed.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D24318407
      
      fbshipit-source-id: 3124e8d5651848a16084899a6f31d69cc235c702
      2bf4a236
    • John Reese's avatar
      apply black 20.8b1 formatting update · 68c04406
      John Reese authored
      Summary:
      allow-large-files
      
      black_any_style
      
      Reviewed By: zertosh
      
      Differential Revision: D24325133
      
      fbshipit-source-id: b4afe80d1e8b2bc993f4b8e3822c02964df47462
      68c04406
    • Robin Cheng's avatar
      Relax the limits for StackTraceSizeLimitTest. · 7cc28784
      Robin Cheng authored
      Summary: Apparently it's flaky...
      
      Differential Revision: D24179337
      
      fbshipit-source-id: 75416adaf8dbd37fc9ddeaa0500ddfaeb80cffa9
      7cc28784
  10. 14 Oct, 2020 2 commits
    • Yedidya Feldblum's avatar
      Cut linter suppression in TryTest.cpp · 98014f8b
      Yedidya Feldblum authored
      Summary: [Folly] Cut linter suppression in `TryTest.cpp`.
      
      Reviewed By: zertosh
      
      Differential Revision: D24294536
      
      fbshipit-source-id: 64b26ec4632ffdae8e246aa27a6c58c579e2db10
      98014f8b
    • Dan Melnic's avatar
      Move folly binary · 3f1e1ee8
      Dan Melnic authored
      Summary: Move folly binary
      
      Reviewed By: yfeldblum
      
      Differential Revision: D24294709
      
      fbshipit-source-id: e7cf0be6e45d3a132fc81143103f3b5cdedbb76f
      3f1e1ee8