1. 21 Jul, 2020 2 commits
    • Yedidya Feldblum's avatar
      A test for the atomic_ref deduction guide · 67ed8482
      Yedidya Feldblum authored
      Summary:
      [Folly] A test for the `atomic_ref` deduction guide, which permits removal of the preprocessor guard in the definition of `make_atomic_ref`.
      
      Some parts of folly still support legacy versions of C++ but we do not necessarily run the tests on legacy platforms.
      
      Reviewed By: akrieger
      
      Differential Revision: D22635366
      
      fbshipit-source-id: 8961d3465b63875a660d9e83d094ebf0cd64d1df
      67ed8482
    • Mark Santaniello's avatar
      Add clear() API to folly::Arena · e2b1569f
      Mark Santaniello authored
      Summary: Add a `clear()` API to render the Arena like new, except that previously-allocated blocks are preserved to be reused in the future.  (Caveat: we do not reuse "large blocks")
      
      Reviewed By: yfeldblum, davidtgoldblatt
      
      Differential Revision: D22209898
      
      fbshipit-source-id: c2f27d70ee09855df8c8c6fc6d162fca92b9eac8
      e2b1569f
  2. 18 Jul, 2020 4 commits
    • Yedidya Feldblum's avatar
      Mark invoker operator() as maybe-unused · fdcce5ae
      Yedidya Feldblum authored
      Summary:
      [Folly] Mark invoker `operator()` as `[[maybe_unused]]` when defined in macros.
      
      If the macro is used in a `.cpp` but the generated `operator()` is not invoked, the compiler might warn.
      
      This can easily happen in the following situation:
      
      ```
      FOLLY_CREATE_MEMBER_INVOKER(invoke_foo_fn, foo);
      FOLLY_CREATE_MEMBER_INVOKER(invoke_bar_fn, bar);
      
      using invoke_one_fn = std::conditional_t<
          /* cond */,
          invoke_foo_fn,
          invoke_bar_fn>;
      constexpr invoke_one_fn invoke_on;
      
      template <typename T>
      void go(T& t) {
        invoke_one(t);
      }
      ```
      
      In such a situation, either `invoke_foo_fn::operator()` is seen at a call-site or `invoke_bar_fn::operator()` is seen at the call-site, but not both - one of them is unused, and if the right warnings are enabled, will be warned as unused.
      
      Reviewed By: luciang, markisaa
      
      Differential Revision: D22570047
      
      fbshipit-source-id: a4caa7a95ab74ea075cf41c26525935f3d9186c0
      fdcce5ae
    • Andrii Grynenko's avatar
      Make sure EventBase task destructor runs with the correct RequestContext · eeb59fc3
      Andrii Grynenko authored
      Reviewed By: yfeldblum
      
      Differential Revision: D22604684
      
      fbshipit-source-id: 4dedb9c831d0a2137d16bbe0514e00a1c8f77f4a
      eeb59fc3
    • Stanislau Hlebik's avatar
      remediation of S205607 · e914b363
      Stanislau Hlebik authored
      fbshipit-source-id: 798decc90db4f13770e97cdce3c0df7d5421b2a3
      e914b363
    • Stanislau Hlebik's avatar
      remediation of S205607 · 9e997608
      Stanislau Hlebik authored
      fbshipit-source-id: 5113fe0c527595e4227ff827253b7414abbdf7ac
      9e997608
  3. 17 Jul, 2020 2 commits
    • Yedidya Feldblum's avatar
      FOLLY_KEEP for keeping function definitions · 89bd17d8
      Yedidya Feldblum authored
      Summary: [Folly] `FOLLY_KEEP` for keeping function definitions when using function-sections even if the linker would remove them.
      
      Reviewed By: alexshap
      
      Differential Revision: D22575832
      
      fbshipit-source-id: 08410b3c318e361b1f3efcbb8f168091faed86e8
      89bd17d8
    • Zhengxu Chen's avatar
      Add support for adding context string callback. · f50f791e
      Zhengxu Chen authored
      Summary: For program running in different general user contexts, e.g. services, multithreading, it's very useful to extend log prefixes to contain the domain specific context strings in debugging. This diff adds one interface function to push one callback to the logger. The callbacks will be executed when the log message data is constructed, and the strings returned by callbacks will be appended to the tail of log entry prefixes.
      
      Reviewed By: simpkins
      
      Differential Revision: D21291284
      
      fbshipit-source-id: e141bf1c907f6730ea741d0dc06975add93d489c
      f50f791e
  4. 16 Jul, 2020 11 commits
    • Eric Niebler's avatar
      Fix lifetime issue in coro::Materialize with active union member · 8c7b4243
      Eric Niebler authored
      Summary:
      `folly::coro::Materialize` uses a `union` of `ManualLifetime` objects to store either the result (value) or the error of an async operation. However, it accesses these fields without ever activating them by in-place constructing the `ManualLifetime` objects. Likewise, when changing the active field, the `ManualLifetime` objects must by destroyed. It doesn't matter that these operations are no-ops. The must be there to avoid UB, which can manifest at higher optimization levels.
      
      I fix this by providing two functions: `activate` and `deactivate`, for use constructing and destructing values in `ManualLifetime` objects when those objects are fields in a `union`.
      
      Reviewed By: yfeldblum, kirkshoop
      
      Differential Revision: D22527895
      
      fbshipit-source-id: 8cc1c3fae75672387d977dddeff61c82093abb9a
      8c7b4243
    • Lukasz Piatkowski's avatar
      add Mononoke integration tests CI (#26) · 238972c3
      Lukasz Piatkowski authored
      Summary:
      This diff adds a minimal workflow for running integrations tests for Mononoke. Currently only one test is run and it fails.
      
      This also splits the regular Mononoke CI into separate files for Linux and Mac to match the current style in Eden repo.
      There are the "scopeguard::defer" fixes here that somehow escaped the CI tests.
      Some tweaks have been made to "integration_runner_real.py" to make it runnable outside FB context.
      Lastly the change from using "[[ -v ... ]" to "[[ -n "${...:-}" ]]; in "library.sh" was made because the former is not supported by the default Bash version preinstalled on modern MacOS.
      
      Pull Request resolved: https://github.com/facebookexperimental/eden/pull/26
      
      Reviewed By: krallin
      
      Differential Revision: D22541344
      
      Pulled By: lukaspiatkowski
      
      fbshipit-source-id: 5023d147823166a8754be852c29b1e7b0e6d9f5f
      238972c3
    • Kirk Shoop's avatar
      remove pushmi from folly · 0415fc2a
      Kirk Shoop authored
      Summary: remove pushmi from folly
      
      Reviewed By: yfeldblum
      
      Differential Revision: D22531090
      
      fbshipit-source-id: 3e6561f220cc3fd227dec321112ec848c4f17c6f
      0415fc2a
    • Maged Michael's avatar
      hazptr: Add warning for using default inline executor for asynchronous reclamation · 9683c8db
      Maged Michael authored
      Summary:
      Add warning about using the default inline executor for asynchronous reclamation, which may lead to deadlock if there are unintended circular dependencies. The use of inline executor is likely due to not calling folly::enable_hazptr_thread_pool_executor at some earlier point (e.g., due to not calling folly::init()).
      
      Also changed some function names for easy identification and fixed typos.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D22536210
      
      fbshipit-source-id: 89e74411a909ec97b03e8ff90f7039ab233c087b
      9683c8db
    • Lukas Piatkowski's avatar
      Back out "fix boost macOS build with new Xcode" (#27) · 6bc436a6
      Lukas Piatkowski authored
      Summary:
      Pull Request resolved: https://github.com/facebookexperimental/eden/pull/27
      
      Pull Request resolved: https://github.com/facebookexperimental/rust-shed/pull/9
      
      Original diffs: D22417488 (https://github.com/facebook/folly/commit/43d80f110b181dd7f72f0f935322a58f9cbb5147), D22528869 (https://github.com/facebook/folly/commit/3930a6ef4437f161c50ac27141cd397eda999fa7)
      
      Reviewed By: markbt
      
      Differential Revision: D22571972
      
      fbshipit-source-id: c6f013565680a757b642dd79e647207fce3351ec
      6bc436a6
    • Matt Galloway's avatar
      folly | Bypass checking for system preadv and pwritev on iOS Simulator platform · 818b7ab5
      Matt Galloway authored
      Summary: Fix building folly sysuio portability when targeting the iOS simulator, because the current Xcode 12 SDK does not contain `preadv` and `pwritev` for the iOS simulator on Catalina, even though it declares it's there, so we get link errors.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D22569172
      
      fbshipit-source-id: 870b47063cb37a24364d1de292aba1f966edfb7c
      818b7ab5
    • Brandon Schlinker's avatar
      Construct from existing raw pointer · 104d728c
      Brandon Schlinker authored
      Summary:
      This diff adds a constructor that takes an `AsyncSocket*`, so that lifecycle observers are informed via `move` when a socket is transformed.
      
      If one `AsyncSocket` is constructed from another using the `AsyncSocket(AsyncSocket* oldAsyncSocket)` constructor, then `move(oldSocket, newSocket)` will be triggered for attached observers, allowing the observers to detach from the old socket and attach to the new socket. However, we currently transform between `AsyncSocket` by detaching the fd and event base, and passing them to the new constructor:
      
      ```
      # from FizzAcceptorHandshakeHelper.cpp
      auto evb = transport_->getEventBase();
      auto fd = transport_->getUnderlyingTransport<folly::AsyncSocket>()
                      ->detachNetworkSocket()
                      .toFd();
      transport_.reset();
      sslSocket_ = createSSLSocket(sslContext_, evb, fd);
      ```
      
      When this happens, any `AsyncSocket::LifecycleObserver` that were attached on accept to become separated from the fd/socket that they're attempting to follow. With this change, we can do the following instead (next diff):
      
      ```
       sslSocket_ = createSSLSocket(
            sslContext_, transport_->getUnderlyingTransport<folly::AsyncSocket>());
      transport_.reset();
      ```
      
      Because `createSSLSocket` uses the `AsyncSocket*` constructor, the `move` observer event will be triggered.
      
      Differential Revision: D21614835
      
      fbshipit-source-id: 6c995f879fe41935850247a28ff8af2b33349445
      104d728c
    • Brandon Schlinker's avatar
      Lifecycle observer · 5e4b2f87
      Brandon Schlinker authored
      Summary:
      Adds `AsyncTransport::LifecycleCallback`, an observer that is notified when a transport is closed and destroyed.
      
      Currently only supported for `AsyncSocket` and derived types (e.g., `AsyncSSLSocket`).
      
      `AsyncSocket::LifecycleCallback` is derived from `AsyncTransport::LifecycleCallback` and adds support for additional lifecycle events relevant to `AsyncSocket`.
      
      Details:
      - Can be used by instrumentation that ties its lifetime to that of the transport.
      - Intentionally separate from all existing callbacks that may be added / used by application logic because it is designed to be used by instrumentation that is generic, and thus separate / unaware of application logic.
      - Multiple observer can be registered, but a `folly::small_vector` is used to minimize alloc overhead in the common case of 0 - 2 being registered.
      - The observer implementation is responsible for calling `removeLifecycleObserver` to remove itself if it is destroyed before the socket is destroyed.
      
      Differential Revision: D21613750
      
      fbshipit-source-id: 92bb5de30bc8bab56fa29e62800bf58e47486f1e
      5e4b2f87
    • Brandon Schlinker's avatar
      Update WriteFlags::EOR and add timestamp flags · 17df5922
      Brandon Schlinker authored
      Summary:
      We have traditionally used `WriteFlags::EOR` to communicate that ACK timestamping should occur. This is confusing and mostly for legacy reasons when we had a custom kernel patch that would send ACK timestamps if the EoR flag was set.
      
      Creating proper flags for ACK and SCHED timestamps. I will integrate the logic that uses these flags into `AsyncSocket` in a subsequent diff.
      
      Differential Revision: D22039799
      
      fbshipit-source-id: 23f534365475bb67f91d86657919cce02439f0c8
      17df5922
    • Brandon Schlinker's avatar
      Fix EOR bug, always pass timestamp flags · 9b15aded
      Brandon Schlinker authored
      Summary:
      Socket timestamps (ACK / TX) and EoR tracking currently break for `AsyncSSLSocket` if SSL renegotiation occurs while a timestamped write / EoR write is in progress.
      
      - If EoR tracking is enabled, the EoR flag and any timestamp flags are not included until `AsyncSSLSocket` writes a buffer containing the final byte to the socket. This is to avoid these flags from being set on a partial write of the passed in buffer.
      - If a write occurs while an SSL renegotiation is in progress, OpenSSL will return `SSL_ERROR_WANT_WRITE`. When this happens, we need to call write again, passing back in the same buffer.
      - The current logic for deciding whether to include the EoR and timestamping flags (`eorAwareSSLWrite`) adds the number of bytes pending to the value returned by `AsyncSSLSocket::getRawBytesWritten` to determine the minimum byte offset when the flags should be added.
        - However, when a write fails due to SSL renegotiation, `getRawBytesWritten` may include some of the bytes that were passed in the last call, despite how they have not actually been written to the transport yet. This is because `getRawBytesWritten` is calculated based on the BIO chain length.
        - As a result, the current logic for calculating the offset on which to add the flags overshoots -- it returns an offset that will never be written. This causes the flags to not be added, and timestamps to timeout.
      - This results in one of two things:
        - Timestamp timeouts, where the timestamps are never received
        - If a subsequent write is timestamped, the timestamps from that write may be used instead. This will cause the timestamps to be inflated, and leads to higher TX / ACK times at upper percentiles.
      
      Fix is as follows:
      - Change the logic that determines whether the EoR is included in the buffer to no longer rely on `getRawBytesWritten`. In addition, simplify logic so that it is no longer a separate function and easier to make sense of.
      - Even if EoR tracking is enabled, always write timestamp flags (TX, ACK, etc.) on every write. This reduces the amount of coordination required between different components. The socket error message handler will end up with more cases of timestamps being delivered for earlier bytes than the last body byte, but they already need to deal with that today due to partial writes.
      
      I considered just outright removing support for EoR tracking (EoR was previously used for timestamping) but decided against this as there's still some value in setting the EoR flag for debugging; see notes in code.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D21969420
      
      fbshipit-source-id: db8e7e5fbd70d627f88f2c43199387f5112b5f9e
      9b15aded
    • Orvid King's avatar
      Drop guards on a few builtins under MSVC · 7f1bda25
      Orvid King authored
      Summary:
      MSVC upstream decided not to add these builtins in the end, so drop the guards as these are still needed.
      Fixes: https://github.com/facebook/folly/issues/1412
      
      Reviewed By: yfeldblum
      
      Differential Revision: D22559891
      
      fbshipit-source-id: 7652da1299d8be7fd64a24f9cffd11b721071d68
      7f1bda25
  5. 15 Jul, 2020 4 commits
  6. 14 Jul, 2020 7 commits
    • Brandon Kieft's avatar
      Fix documentation errors in Folly when building with Xcode 12 · 790557fb
      Brandon Kieft authored
      Summary:
      Fix the documentation errors in Folly when building with Xcode 12. Xcode supports validating doxygen comments by enabling the `-Wdocumentation` flag. In Clang 12, a new feature was added to warn when an inline Doxygen comment has no argument (https://reviews.llvm.org/rL367809).
      
      `\a` and `\b` are special commands in doxygen and were being flagged as errors. I enclosed the example escape sequences within a code block to fix these errors. You can read about all the special doxygen commands here: https://www.doxygen.nl/manual/commands.html
      
      Reviewed By: yfeldblum
      
      Differential Revision: D22488410
      
      fbshipit-source-id: bc4acf31b3df2a860202d0bd1ee356ce8f8fe49f
      790557fb
    • Eric Niebler's avatar
      make Executor::keepAlive(Acquire|Release) and KeepAlive move assign noexcept · 48866d26
      Eric Niebler authored
      Summary:
      Moveable types should have no-throw move assignment operators. `Executor::KeepAlive<>`'s move assignment operator is not marked `noexcept`. It calls the virtual `Executor::keepAliveRelease`, which is also not marked `noexcept`, despite the fact that virtually (haha) all overrides of that function do nothing more than decrement an atomic and free some resources.
      
      This diff makes the following `noexcept`:
      * `Executor::keepAliveAcquire`
      * `Executor::keepAliveRelease`
      * `KeepAlive::reset()`
      * `KeepAlive::operator=(KeepAlive&&)`
      
       ---
      
      Reviewed By: yfeldblum
      
      Differential Revision: D22505764
      
      fbshipit-source-id: 8e0a04e057c971673cf75da974c1abca2bdf87e8
      48866d26
    • Chad Austin's avatar
      change AsyncSocket::newSocket to return a unique_ptr instead of shared_ptr · 2f0542e4
      Chad Austin authored
      Summary: If the caller wants a shared_ptr, UniquePtr will implicitly promote.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D22046594
      
      fbshipit-source-id: 2e7d527d3ca33dae974c62db909df605c532ea44
      2f0542e4
    • Lee Howes's avatar
      Remove collectAnyUnsafe · c19c06e5
      Lee Howes authored
      Summary:
      Remove the Future-returning form of collectAny completely.
      
      (Note: this ignores all push blocking failures!)
      
      Reviewed By: yfeldblum
      
      Differential Revision: D22345361
      
      fbshipit-source-id: 180bb74c8f64052de372f5d982ad4e77cbff0119
      c19c06e5
    • Giuseppe Ottaviano's avatar
      Optimize the storage of the interrupt handler · 6b01128d
      Giuseppe Ottaviano authored
      Summary:
      `std::function` has a footprint of 32 bytes and (almost) always allocates the interrupt handler. By using an intrusively reference-counted atomic pointer the footprint is just 8 bytes, and we save further 8 bytes by eliminating `interruptHandlerSet_` (it's a `bool`, but poorly aligned). This also allows to share the handler along the continuation chain, instead of copying for every core.
      
      In addition, the `getInterruptHandler()`/`setInterruptHandlerNoLock()` API was replaced by a single `initializeInterruptHandlerFrom()`, so we don't need to expose the internal storage details anymore.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D22474230
      
      fbshipit-source-id: 059828de3b89c25684465baf8e94bc1b68dac0da
      6b01128d
    • Andres Suarez's avatar
      Use the Rust toolchain via the DotSlash Windows shim · dceeeb92
      Andres Suarez authored
      Reviewed By: mzlee
      
      Differential Revision: D22495160
      
      fbshipit-source-id: 3d6240906dd086ccac6668d907074ec7ca86ebce
      dceeeb92
    • Ian Petersen's avatar
      Fix implicit conversion warnings in MemoryIdler.h · 9fff036d
      Ian Petersen authored
      Summary:
      The build with Clang 10 on iOS broke with the following errors:
      
      ```
      folly/detail/MemoryIdler.h:86:68: error: implicit conversion from 'uint64_t' (aka 'unsigned long long') to 'float' may lose precision [-Werror,-Wimplicit-int-float-conversion]
              static_cast<float>(std::numeric_limits<uint64_t>::max()) * h;
                                                                       ~ ^
      ```
      
      ```
      folly/detail/MemoryIdler.h:87:38: error: implicit conversion from 'std::__1::chrono::duration<long long, std::__1::ratio<1, 1000000000> >::rep' (aka 'long long') to 'float' may lose precision [-Werror,-Wimplicit-int-float-conversion]
          auto tics = uint64_t(idleTimeout.count() * (1 + extraFrac));
                               ~~~~~~~~~~~~^~~~~~~ ~
      ```
      
      This diff fixes the problem by making the existing implicit casts explicit.
      
      Reviewed By: Orvid
      
      Differential Revision: D22490364
      
      fbshipit-source-id: 90bd116290de1d8906140d514f1d4880c3b3b085
      9fff036d
  7. 13 Jul, 2020 2 commits
    • Lewis Baker's avatar
      Help compiler understand that co_yield co_error() in a Task coroutine never returns · b1d264ed
      Lewis Baker authored
      Summary:
      Mark the `await_resume()` method of the `final_suspend()` awaiter as `[[noreturn]]`.
      
      This helps the compiler to dead-code eliminate this code, and in particular helps
      the compiler to determine that code cannot continue execution after a
      `co_yield co_error(ex)` expression (which calls `final_suspend()`).
      
      This enables us to write code that has a `co_yield co_error()` statement as the
      last line in a non-void `Task` coroutine without the compiler emitting a warning
      about control running off the end of the coroutine.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D22229020
      
      fbshipit-source-id: b7a63b030cb42653198731d542ffa9bbf90daa83
      b1d264ed
    • Eric Niebler's avatar
      replace the use of boost::variant with a simple union · ed2cb6d2
      Eric Niebler authored
      Summary:
      `boost::variant` is an expensive template, and `boost/variant.hpp` is an expensive header. In the one place it is used in futures/detail/Core.h (a commonly-included header), it can be trivially replaced with a `union`, so do so.
      
      As a drive-by, I mark as `noexcept` those members of `KeepAliveOrDeferred` that can be done so unconditionally.
      
      Reviewed By: yfeldblum, kirkshoop, ot
      
      Differential Revision: D22460453
      
      fbshipit-source-id: 5a01f873058273d1a20265507d87796450cc008b
      ed2cb6d2
  8. 12 Jul, 2020 1 commit
  9. 10 Jul, 2020 7 commits
    • Mark Santaniello's avatar
      Use sized deallocation in SysAllocator and Arena (2nd try) · b99077fa
      Mark Santaniello authored
      Summary:
      Use sized-deallocation (`sdallocx`) if possible in `folly::SysAllocator` and `folly::Arena`.
      
      `Arena` has always allocated two types of blocks:
      1. Normal (fixed-sized): size is the "goodSize adjusted" `minBlockSize`
      2. Large (variable-sized): when #1 is too small
      
      Type #2 makes sized-deallocation tricky -- we need somewhere to remember the allocated sizes.
      
      The old code used a single type `Block` and kept a single list. Here I change to have two types and two lists.  The `LargeBlock` has an additional `allocSize` data member.
      
      This makes the Arena object itself 16B larger, but seems better than adding a 4B `allocSize` to each and every block, regardless of type.
      
      Note that, prior to this change, it was possible to `merge()` arenas with different `minBlockSize`.  This is no longer possible.
      
      Reviewed By: davidtgoldblatt
      
      Differential Revision: D22466906
      
      fbshipit-source-id: 719f357a0a1f6cfcda3208391837195c3859ab69
      b99077fa
    • Lukasz Piatkowski's avatar
      edenscm/hg: add GitHub Actions with CI for HG plus add fixes for getdeps (#25) · e9a34c04
      Lukasz Piatkowski authored
      Summary:
      Fixes include:
      1. Passing "GETDEPS_BUILD_DIR" and "GETDEPS_INSTALL_DIR" env variable and using them in eden/scm/Makefile rather than assuming the source code is always in the same place regardless getdeps arguments (it isn't).
      2. Added "fbthrift-source" and "fb303-source" to avoid unnecessary compilation (at least of fb303) and to put fbthrift and fb303 source code in an easy to locate place inside getdeps' "installed" folder.
      
      Pull Request resolved: https://github.com/facebookexperimental/eden/pull/25
      
      Test Plan: sandcastle, check oss-eden_scm-darwin-getdeps
      
      Reviewed By: farnz
      
      Differential Revision: D22431872
      
      Pulled By: lukaspiatkowski
      
      fbshipit-source-id: 8ccbb090713ec085a5dd56df509eb58ab6fb9e34
      e9a34c04
    • Ian Petersen's avatar
      Fix array length calculation in ConvTest.cpp · 287dd830
      Ian Petersen authored
      Summary:
      The build with Clang 10 on iOS broke with the following error:
      
      ```
      folly/test/ConvTest.cpp:321:45: error: expression does not compute the number of elements in this array; element type is 'const char *const', not 'const char *const [4]' [-Werror,-Wsizeof-array-div]
          FOR_EACH_RANGE (i, 0, sizeof(uStrings2) / sizeof(uStrings2)) {
                                       ~~~~~~~~~  ^
      ```
      
      Looking at nearby uses of `FOR_EACH_RANGE`, it looks like the new compiler has caught a typo, which this diff fixes.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D22470932
      
      fbshipit-source-id: 3090ed9824af488fc429becf2c1084c7725daf5a
      287dd830
    • Phil Willoughby's avatar
      clang coro handling · cbdf3df7
      Phil Willoughby authored
      Summary:
      On windows `<experimental/coroutine>` comes from the Microsoft SDK and uses the MSVC intrinsics. If you are compiling with clang this header exists but nothing from it will work because clang does not implement the MSVC intrinsics.
      
      Further, the clang and MSVC intrinsics are ABI incompatible with each other to the extent that there is no way I can find to implement the MSVC intrinsics behavior as inline functions in a clang TU.
      
      MS have indicated publicly that they will work with the LLVM project to make sure that clang and MSVC will be compatible for `<coroutine>`, but until then we have to say that folly does not have coroutines when clang is used on Windows.
      
      (Note: this ignores all push blocking failures!)
      
      Reviewed By: yfeldblum
      
      Differential Revision: D22301662
      
      fbshipit-source-id: 96b1c3909a3916fe300073af34429eeb5c08d1fd
      cbdf3df7
    • Sotirios Delimanolis's avatar
      Set SSLContext minimum version through SSL_CTX_set_min_proto_version for OpenSSL >= 1.1.0 · 2fa292de
      Sotirios Delimanolis authored
      Summary:
      Attempt to set minimum version of an OpenSSL context through `SSL_CTX_set_min_proto_version` instead of disabling them explicitly through options, as recommended here: https://www.openssl.org/docs/man1.1.1/man3/SSL_CTX_set_min_proto_version.html
      
      The test checks that the `SSLContext`'s `SSL_CTX` can keep a lower version regardless of the OpenSSL's configured minimum.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D22338879
      
      fbshipit-source-id: 356328c2ffba2a6a9d4243300a11fc823bc345d7
      2fa292de
    • Giuseppe Ottaviano's avatar
      Fix race between setProxy() and setCallback() · bff1bb83
      Giuseppe Ottaviano authored
      Summary:
      D22371898 (https://github.com/facebook/folly/commit/4981497ad3333ab084e18b2a02a574cbf9438585) introduced a race by attempting to share the storage between `proxy_` and `callback_`: `setProxy()` and `setCallback()` may concurrently try to set both, and there's no good ordering we can use in `setCallback()` to fetch the proxy pointer before constructing the callback.
      
      So revert to the logic pre-D22371898 (https://github.com/facebook/folly/commit/4981497ad3333ab084e18b2a02a574cbf9438585). This means increasing the `Core` footprint by a further 8 bytes, but D22474230 should recover that.
      
      Differential Revision: D22474532
      
      fbshipit-source-id: c63ca6ecd166fb71dcbeddbb2c04eb07494f99ea
      bff1bb83
    • Lu Pan's avatar
      set max deferred readers for folly::SharedMutex dynamically · 1ad7426b
      Lu Pan authored
      Summary: Instead of hard coding the max deferred readers allowed to be 64, statically allocate large enough slots and pick max deferred readers allowed dynamically based on the platform running the service. Specifically, we set the `maxDeferredReaders = 2 * nextPowTwo(numCPU)`, which four times the number of physical cores, to allow faster reads. We are effectively giving each HW thread two slots.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D22407478
      
      fbshipit-source-id: 4001cf96dc502e00f00a27d57c63ba0028a52671
      1ad7426b