1. 23 Jun, 2016 2 commits
    • Marcus Holland-Moritz's avatar
      Clean up Conv.cpp / Conv.h · 1186ac53
      Marcus Holland-Moritz authored
      Summary:
      A bit of tidying up:
      
      - Remove unused digit1 / digit2 arrays
      - Remove unused MaxString<bool>
      - Move MaxString<> entirely to Conv.cpp, as it's not used in Conv.h
      - Extend anonymous namespace in Conv.cpp
      - Sort headers in Conv.h
      
      Reviewed By: yfeldblum
      
      Differential Revision: D3433767
      
      fbshipit-source-id: 224a68f22505c0f2014ac376154d004eca1658a9
      1186ac53
    • Marcus Holland-Moritz's avatar
      Fix undefined behaviour in float<->int conversion · 47868e49
      Marcus Holland-Moritz authored
      Summary:
      This change fixes a case of undefined behaviour when converting between
      floating point and integral values using folly::to<>. Undefined behaviour
      is triggered when a floating point value is cast into an integral value
      that cannot represent the source value. This happens in both cases,
      float-to-int and int-to-float conversion, with folly::to<> due to the
      check for loss of precision.
      
      The new test cases expose the undefined behaviour.
      
      The fix is a series of extra checks, the majority of which will only
      kick in if the value to be converted is close to the boundary of the
      range of the target type. These checks ensure that the conversion will
      only be performed if the source value is within the range representable
      by the target type.
      
      The extra checks /will/ make the code slower. However, a later change
      in this series, which refactors the implementation of folly::to<>, will
      restore some of the performance.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D3433757
      
      fbshipit-source-id: 43495d18f831206ef48f74332663263d789a4f8a
      47868e49
  2. 22 Jun, 2016 2 commits
    • Bruno Goncalves's avatar
      Added missing m4 file ax_boost_chrono · c1d4dcfe
      Bruno Goncalves authored
      Summary:
      To avoid error while running ./configure command:
       ./configure: line 18976: AX_BOOST_CHRONO: command not found
      
      Besides in my Fedora 23 the following error ocurred when not linked with -lboost_chrono running 'make check':
      /usr/bin/ld: SynchronizedTest.o: undefined reference to symbol 'boost::chrono::steady_clock::now()''
      /usr/lib64/libboost_chrono.so.1.58.0: error adding symbols: DSO missing from command line
      Closes https://github.com/facebook/folly/pull/426
      
      Differential Revision: D3457939
      
      Pulled By: elliottneilclark
      
      fbshipit-source-id: ec7a8d30d4812f197e2813e611cde0e33eab680a
      c1d4dcfe
    • Marcus Holland-Moritz's avatar
      Add more benchmarks for various conversions · 0232cb37
      Marcus Holland-Moritz authored
      Summary:
      This adds a couple of new benchmarks that will be used as a basis to
      check the performance of a series of upcoming changes to folly::to<>.
      
      It exercises both successful and unsuccessful conversion paths for
      string-to-anything, int-to-int, int-to-float, float-to-int, and pair-
      of-pointers-to-int conversions.
      
      The following table only shows the newly added benchmarks:
      
        ==============================================================
        folly/test/ConvBenchmark.cpp                time/iter  iters/s
        ==============================================================
        stringToBoolNumClassic                        12.76ns   78.37M
        stringToBoolNumClassicError                    3.19us  313.37K
        stringToBoolStrClassic                        17.92ns   55.79M
        stringToBoolStrClassicError                    3.21us  311.73K
        --------------------------------------------------------------
        stringToFloatNumClassic                       32.96ns   30.34M
        stringToFloatNumClassicError                   2.73us  366.49K
        stringToFloatStrClassic                       37.37ns   26.76M
        stringToFloatStrClassicError                   2.87us  348.81K
        stringToDoubleNumClassic                      31.30ns   31.95M
        stringToDoubleNumClassicError                  2.69us  371.26K
        stringToDoubleStrClassic                      37.67ns   26.54M
        stringToDoubleStrClassicError                  2.87us  348.97K
        --------------------------------------------------------------
        stringToCharSignedClassic                     16.71ns   59.85M
        stringToCharSignedClassicError                 3.87us  258.50K
        stringToCharUnsignedClassic                   15.49ns   64.54M
        stringToCharUnsignedClassicError               2.73us  366.88K
        stringToIntSignedClassic                      21.26ns   47.03M
        stringToIntSignedClassicError                  3.94us  253.82K
        stringToIntUnsignedClassic                    17.93ns   55.79M
        stringToIntUnsignedClassicError                2.72us  367.93K
        stringToLongLongSignedClassic                 34.63ns   28.88M
        stringToLongLongSignedClassicError             3.94us  253.52K
        stringToLongLongUnsignedClassic               51.04ns   19.59M
        stringToLongLongUnsignedClassicError           2.73us  366.58K
        --------------------------------------------------------------
        ptrPairToCharSignedClassic                     5.16ns  193.62M
        ptrPairToCharSignedClassicError                3.56us  280.99K
        ptrPairToCharUnsignedClassic                   2.43ns  411.44M
        ptrPairToCharUnsignedClassicError              2.63us  380.42K
        ptrPairToIntSignedClassic                      6.99ns  143.09M
        ptrPairToIntSignedClassicError                 4.08us  245.27K
        ptrPairToIntUnsignedClassic                    4.25ns  235.09M
        ptrPairToIntUnsignedClassicError               2.70us  370.55K
        ptrPairToLongLongSignedClassic                12.16ns   82.27M
        ptrPairToLongLongSignedClassicError            4.06us  246.17K
        ptrPairToLongLongUnsignedClassic              29.13ns   34.33M
        ptrPairToLongLongUnsignedClassicError          2.71us  369.33K
        --------------------------------------------------------------
        intToCharSignedClassic                       405.02ps    2.47G
        intToCharSignedClassicError                    2.10us  475.11K
        intToCharUnsignedClassic                     303.79ps    3.29G
        intToCharUnsignedClassicError                  2.10us  475.18K
        intToIntSignedClassic                        405.02ps    2.47G
        intToIntSignedClassicError                     1.99us  501.60K
        intToIntUnsignedClassic                      405.03ps    2.47G
        intToIntUnsignedClassicError                   2.09us  478.47K
        --------------------------------------------------------------
        intToFloatClassic                            545.11ps    1.83G
        intToFloatClassicError                         1.67us  599.38K
        --------------------------------------------------------------
        floatToFloatClassic                          759.47ps    1.32G
        floatToFloatClassicError                       6.45us  154.98K
        --------------------------------------------------------------
        floatToIntClassic                            637.82ps    1.57G
        floatToIntClassicError                         1.92us  520.16K
        ==============================================================
      
      Reviewed By: yfeldblum
      
      Differential Revision: D3433745
      
      fbshipit-source-id: 6ab1ede32c07e7fc29b982e8705ecc0138fa6384
      0232cb37
  3. 21 Jun, 2016 1 commit
    • Lucian Grijincu's avatar
      folly:: singleton: ubsan: fix calling overriden method from ctor · 31fa09ca
      Lucian Grijincu authored
      Summary:
      Ubsan complains when overriden method is called from ctor:
      ```
      0x000000b04d40: note: object is of type 'folly::detail::SingletonHolder<XYZ>' 00 00 00 00  08 50 c3 8d da 7f 00 00  e8 4f c3 8d da 7f 00 00  18 0d 4c b4 da 7f 00 00  a0 16 90 00
                    ^~~~~~~~~~~~~~~~~~~~~~~
                    vptr for 'folly::detail::SingletonHolder<XYZ>'
      ```
      
      called from `folly::SingletonVault::registerSingleton(folly::detail::SingletonHolderBase*)`
      
      Reviewed By: ot
      
      Differential Revision: D3462037
      
      fbshipit-source-id: 6df283dd53df42d5d318990f60aba370ceed6395
      31fa09ca
  4. 20 Jun, 2016 1 commit
  5. 17 Jun, 2016 3 commits
    • Caren Thomas's avatar
      Add very basic compatibility with folly locks for synchronized · 3c4a013f
      Caren Thomas authored
      Summary: Add folly locks to the HasLockUnlock struct so that they can be used inside Synchronized. acquireReadWrite() and releaseReadWrite() functions are added to each lock class so that their .lock and .unlock methods are accessible by Synchronized. These changes allow an extremely basic level of compatibility for the purpose of running benchmarks and so compatibility with dual_locking, etc. have not been tested.
      
      Reviewed By: simpkins
      
      Differential Revision: D3434621
      
      fbshipit-source-id: d55cffbb1eccaf23645384b9a41f85c5df593ffe
      3c4a013f
    • Yedidya Feldblum's avatar
      Wrappers for some of OpenSSL's crypto hash functions · cc5485f8
      Yedidya Feldblum authored
      Summary:
      [Folly] Wrappers for some of OpenSSL's crypto hash functions.
      
      Wraps some of the OpenSSL crypto hash functions with variants that take `ByteRange` for input and `MutableByteRange` for output, and also variants that take `const IOBuf&` for input as well.
      
      These are a bit nicer to use than passing pointers and lengths separately.
      
      Reviewed By: ivmaykov
      
      Differential Revision: D3434562
      
      fbshipit-source-id: 3688ef11680a029b7664ac417a7781e70f9c6926
      cc5485f8
    • Christopher Dykes's avatar
      Fix infinite recursion in sorted_vector_{set|map}::insert(const value_type&) · b57cfc00
      Christopher Dykes authored
      Summary:
      We were calling ourself, which MSVC correctly identified:
      ```
      warning C4717: 'folly::sorted_vector_set<int,`anonymous namespace'::less_invert<int>,std::allocator<int>,void>::insert': recursive on all control paths, function will cause runtime stack overflow
      ```
      
      Just add an explicit `std::move` in to solve the problem.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D3447922
      
      fbshipit-source-id: 803f79510b3dbfeea32a9629238448f69f5b78dc
      b57cfc00
  6. 16 Jun, 2016 4 commits
    • Jinlong Zhou's avatar
      Reverted commit D3270439 · 0f2aacae
      Jinlong Zhou authored
      Summary:
      [temp] (14)/6:
      > A function template, member function of a class template, variable template, or static data member of a class template shall be defined in every translation unit in which it is implicitly instantiated (14.7.1) unless the corresponding specialization is explicitly instantiated (14.7.2) in some translation unit; no diagnostic is required.
      
      `-Wundefined-var-template` warns on any implicit instantiations that are needed but could not be performed because the definition is not available. In particular, for valid code, this warns on templates/temploids which have their definition and all relevant explicit instantiations tucked away in some source file (but for which no explicit instantiation declarations are provided in the relevant header file) - used a few times in folly. This seems a bad style, the static data member template should either be defined in the header file or should be explicitly instantiated in each .cpp file.
      
      Reviewed By: igorsugak
      
      Differential Revision: D3270439
      
      fbshipit-source-id: e8cdb0452c2f6240a348b93cdbf9975813f27bfe
      0f2aacae
    • Christopher Dykes's avatar
      Use the standard intrinsics for crc32c · ddd5d517
      Christopher Dykes authored
      Summary: This mass of conditions is completely pointless, because GCC has supported the standard intrinsics since at least 4.4.7, which is as far back as godbolt lets me test.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D3373640
      
      fbshipit-source-id: 619e971034db9249a9b312d18870bc7e4d579d50
      ddd5d517
    • Eric Niebler's avatar
      folly: fix clang's -Wundefined-var-template · 7570fc58
      Eric Niebler authored
      Summary:
      [temp] (14)/6:
      > A function template, member function of a class template, variable template, or static data member of a class template shall be defined in every translation unit in which it is implicitly instantiated (14.7.1) unless the corresponding specialization is explicitly instantiated (14.7.2) in some translation unit; no diagnostic is required.
      
      `-Wundefined-var-template` warns on any implicit instantiations that are needed but could not be performed because the definition is not available. In particular, for valid code, this warns on templates/temploids which have their definition and all relevant explicit instantiations tucked away in some source file (but for which no explicit instantiation declarations are provided in the relevant header file) - used a few times in folly. This seems a bad style, the static data member template should either be defined in the header file or should be explicitly instantiated in each .cpp file.
      
      Reviewed By: igorsugak
      
      Differential Revision: D3270439
      
      fbshipit-source-id: bf305fde3af575a265d65a0ae0bf95db5597587f
      7570fc58
    • Blake Lawson's avatar
      Added limited list of supported ciphers · 8fb2b024
      Blake Lawson authored
      Summary: Added method to enable server support for a specific elliptic curve encryption algorithm.
      
      Reviewed By: siyengar
      
      Differential Revision: D3432860
      
      fbshipit-source-id: 078531eead48ea156a68a109f8a62dc4907ac1ec
      8fb2b024
  7. 15 Jun, 2016 2 commits
    • Haocheng Zhang's avatar
      fix bug for nullptr in qfind · 1de25658
      Haocheng Zhang authored
      Summary: Fix bug for passing null pointer to memchr function, which requires the first argument to never be null.
      
      Reviewed By: luciang
      
      Differential Revision: D3432130
      
      fbshipit-source-id: 419924dd214d9f641d3d46335dae6abbe44ca751
      1de25658
    • Caren Thomas's avatar
      Add constructor for MultiLevelTimeSeries class that uses initializer_list and... · bd6447c6
      Caren Thomas authored
      Add constructor for MultiLevelTimeSeries class that uses initializer_list and add stat methods that uses duration as a parameter.
      
      Summary: Introduce a constructor that takes in an initializer list of 'TimeType' objects for the durations. New methods for sum/avg/rate/count/countrate are created with a 'TimeType' parameter - this makes it possible to call these methods using the duration that specifies the level. Previously, these methods could only be called using the index of the level in the levels_ vector. These methods first do a linear scan through levels_ using the method getLevelsByDuration to find the corresponding index, and then perform the function they specify on the level.
      
      Differential Revision: D3414343
      
      fbshipit-source-id: 8e1fcc16fd013d0b8b855a1eebbeff417e945b07
      bd6447c6
  8. 14 Jun, 2016 4 commits
    • Marcus Holland-Moritz's avatar
      Add conv_benchmark target to Makefile.am · 55c9d0bd
      Marcus Holland-Moritz authored
      Summary: It's useful to be able to build & run the benchmark.
      
      Differential Revision: D3433731
      
      fbshipit-source-id: c37bd5be3da0f89d4792747857d2e7548aea08ba
      55c9d0bd
    • Michael Lee's avatar
      Reverted commit D3427621 · f5bdf4a3
      Michael Lee authored
      Summary: The iOS sdk adds `clock_gettime` support.
      
      Reviewed By: clementgenzmer
      
      Differential Revision: D3427621
      
      fbshipit-source-id: 534276ba1e0ade185e3af0665f419f3c51d3f980
      f5bdf4a3
    • Joseph Griego's avatar
      EventBase keepAlive counter is not atomic · cafe469a
      Joseph Griego authored
      Summary: Since loopKeepAlive() is always used from the EventBase thread, there's no need for the overhead of an shared_ptr (and therefore, an atomic ref counter); we can get away without thread safety. This also allows us to discard the (sometimes incorrect) optimization of not returning a handle when it appears the loop will continue running anyways
      
      Reviewed By: andriigrynenko
      
      Differential Revision: D3375503
      
      fbshipit-source-id: 474e4fcf992bdc4fcca9370d3c57bdcc4e042386
      cafe469a
    • Michael Lee's avatar
      Time.h portability for iOS 10. · f04cf0cd
      Michael Lee authored
      Summary: The iOS sdk adds `clock_gettime` support.
      
      Reviewed By: clementgenzmer
      
      Differential Revision: D3427621
      
      fbshipit-source-id: fcd3022c5ea05ceb8e289fbeb1ae845155d2dea9
      f04cf0cd
  9. 11 Jun, 2016 1 commit
    • Alexey Spiridonov's avatar
      DCHECK on reentrant invocations of loop() · 0806af8f
      Alexey Spiridonov authored
      Summary:
      I had a crash bug where an `EventBase` handler called a function, which tried to use the thread's EventBase as if it were its own:
      
      ```
      auto evb = folly::EventBaseManager::get()->getEventBase();
      // schedule work on evb, which calls evb->terminateLoopSoon() on completion
      evb->loopForever();
      ```
      
      This ended up invoking the `event_base_loop()` reentrantly, and corrupting the heap in a hard-to-debug way.
      
      Reviewed By: djwatson
      
      Differential Revision: D3408155
      
      fbshipit-source-id: b8855aa3b390fa33e032ab295d386122d2cb872a
      0806af8f
  10. 10 Jun, 2016 4 commits
    • Ben Hamilton's avatar
      Make Fibers library conditional on working Boost.Context fcontext_t · 52155e1d
      Ben Hamilton authored
      Summary:
      Boost 1.61 removes the `boost::context::fcontext_t` type
      which Folly Fibers depends on.
      
      This makes the Fibers library conditional on a working `fcontext_t`,
      so Folly will build (just without Fibers) if it's not present.
      
      Depends On D3419638
      
      Fixes https://github.com/facebook/folly/issues/413
      
      Reviewed By: Orvid
      
      Differential Revision: D3420097
      
      fbshipit-source-id: 876f8f76a2d0dda4ce5085c27875ab6aaa7b86c0
      52155e1d
    • Andrii Grynenko's avatar
      Fix folly::fibers on OSX with boost 1.60 · 6d52608a
      Andrii Grynenko authored
      Summary: We only need fcontext.hpp, so let's include it directly. all.hpp includes other headers, which use thread-locals (doesn't work with our OSX build).
      
      Reviewed By: igorsugak, bhamiltoncx
      
      Differential Revision: D3419638
      
      fbshipit-source-id: b4fa1bd14454bcd75eaece52c398ac6510273773
      6d52608a
    • Maged Michael's avatar
      Added support for std::mutex in folly Deterministic Schedule · 95c95660
      Maged Michael authored
      Summary:
      Added the class `DeterministicMutex`, a wrapper for `std::mutex`, in `folly/test/DeterministicSchedule.h`. Added a test to `folly/test/DeterministicScheduleTest.cpp` to test the correct behavior of `DeterministicMutex` functions and that deterministic schedule is able to detect race conditions that involve `DeterministicMutex`.
      
      Note: Bootcamp task
      
      Reviewed By: djwatson
      
      Differential Revision: D3412579
      
      fbshipit-source-id: c12861c4ec1cfeadcef027be4513e8e4cb7e0176
      95c95660
    • Marcus Holland-Moritz's avatar
      Get rid of circular dependency when including ExceptionWrapper.h from Conv.h · 500f3598
      Marcus Holland-Moritz authored
      Summary:
      This is needed in order to be able to use folly::Try<> with folly::to<> for
      non-throwing conversions.
      
      Reviewed By: meyering
      
      Differential Revision: D3411003
      
      fbshipit-source-id: 1f20e7871b9cedda2b35527dac70381579abd708
      500f3598
  11. 09 Jun, 2016 6 commits
    • Christopher Dykes's avatar
      Use intrinsics rather than inline assembly where possible · 1228a37d
      Christopher Dykes authored
      Summary:
      I would switch these to just use the intrinsic functions, but GCC 4.8 doesn't support them.
      MSVC supports the intrinsics, which is the primary reason for the switch.
      
      Reviewed By: philippv
      
      Differential Revision: D3278901
      
      fbshipit-source-id: 60103ac7cf7ddfb529f65f4aadc687dbdaf423a1
      1228a37d
    • Chad Parry's avatar
      Allow a timer with pending callbacks to be destroyed · 3f6e3b45
      Chad Parry authored
      Summary:
      This diff is part of a string of changes that is getting `HHWheelTimer` to use standard smart pointers.
      
      D2617966 is being reverted. The `DestructorGuard` that was added for safety is not possible without intrusive reference counting.
      That means that the `count_` (of pending callbacks) will still be correct, but there will be nothing to check it against. Because of that, I removed the assertions to make sure that the count of pending callbacks matches the count of active guards. Anyway, there were already ways to defeat that test, such as by creating a `DestructorGuard` from any client code.
      As long as the assertions are gone, the `cancelAll` can be moved to the destructor. It only ever got run when `destroy` was called and `count_` was `0`, which means that `~HHWheelTimer` was also going to get called at the same time.
      
      Reviewed By: djwatson
      
      Differential Revision: D3349303
      
      fbshipit-source-id: 433fa6605ee9921833328e2f82bd07b2e17e42c5
      3f6e3b45
    • pravic's avatar
      Fix typo in docs/Function.md · 2488a9d5
      pravic authored
      Summary: Closes https://github.com/facebook/folly/pull/421
      
      Reviewed By: yfeldblum
      
      Differential Revision: D3413832
      
      Pulled By: elliottneilclark
      
      fbshipit-source-id: 7af1462c250c8d6b5d6f5dfcb3f3117dff7877c9
      2488a9d5
    • Martin Martin's avatar
      Fix a data race found by TSAN in folly::fibers::Baton · e967876f
      Martin Martin authored
      Summary: Fix a data race found by TSAN in folly::fibers::Baton by changing a memory_order_relaxed to memory_order_acquire.  Nathan Bronson says that TSAN is correct and the C++ memory model requires _acquire here.
      
      Reviewed By: andriigrynenko
      
      Differential Revision: D3412519
      
      fbshipit-source-id: bd0043b41d145e689a97fc7ef47aa6e116ea9194
      e967876f
    • David Callahan's avatar
      fix command line parsing · 3619ec97
      David Callahan authored
      Summary: parse command line flags to pick up -json flag
      
      Reviewed By: mzlee
      
      Differential Revision: D3405794
      
      fbshipit-source-id: e2d216c74f04c15d7470c70abfc2bd25c2ceda98
      3619ec97
    • Brett Simmers's avatar
      Allow const mapped types in folly::AtomicHash(Array|Map) · d4c0d267
      Brett Simmers authored
      Summary:
      Without this const_cast, it's impossible to insert anything into an
      AHA with a const mapped_type, making it effectively useless.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D3405687
      
      fbshipit-source-id: 3ecba19e0e92661c2c537c747b4927176104939f
      d4c0d267
  12. 08 Jun, 2016 4 commits
    • Adam Simpkins's avatar
      make Range::size() constexpr · 8cb615a2
      Adam Simpkins authored
      Summary:
      Declare size() to return a constexpr value, so it can be called on constexpr
      Range objects.
      
      This unfortunately does drop the existing assert() check, due to a gcc bug:
      https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71448
      
      Reviewed By: lbrandy
      
      Differential Revision: D3394612
      
      fbshipit-source-id: 77ea3b961dc323a39dea6f0e5850f9a311210d09
      8cb615a2
    • Christopher Dykes's avatar
      Pack PackedSyncPtr · 67a55881
      Christopher Dykes authored
      Summary: The comment was right about the packed attribute not liking private members, so pack `PackedSyncPtr` to get GCC to pack structs containing it correctly.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D3402936
      
      fbshipit-source-id: 11d9def132d5dedf04b0e263c379cac339a52fa3
      67a55881
    • Adam Simpkins's avatar
      add hexlify() and unhexlify() convenience methods · 8bac351a
      Adam Simpkins authored
      Summary:
      Add new versions of hexlify() and unhexlify() that directly return a
      std::string, similar to the helper functions that already exist for humanify()
      and backslashify().
      
      The function signatures for these helpers are different than the humanify() and
      backslashify() helpers--these functions always accept StringPiece or ByteRange
      arguments.  This allows them to easily accept "const char*" arguments, without
      having to convert the arguments to a std::string.  (I think we probably should
      fix the humanify() and backslashify() helpers to be similar in a separate
      diff.)
      
      Reviewed By: yfeldblum
      
      Differential Revision: D3403863
      
      fbshipit-source-id: a2df49d5857e1d34caac3d78283dc293f4ef1ab6
      8bac351a
    • Andrii Grynenko's avatar
      Disable SIGSEGV signal handler if run in JVM · bbac9a99
      Andrii Grynenko authored
      Reviewed By: ldemailly
      
      Differential Revision: D3402550
      
      fbshipit-source-id: 3de47c569868545c3861dab9a7b244ed8fb1fadf
      bbac9a99
  13. 07 Jun, 2016 2 commits
    • Adam Radziwonczyk-Syta's avatar
      Expose current observer from FiberManager · 6da900e4
      Adam Radziwonczyk-Syta authored
      Summary:
      Inteded use case is to write tracing code in common components that can adjust its behavior to the current observer. E.g.
        auto* observer = FiberManager::getUnsafe()->getObserver();
        if (auto* specific_observer = dynamic_cast<SpecificObserver*>(observer)) {
          specific_observer->set_fiber_name(...);
        }
      
      Reviewed By: andriigrynenko
      
      Differential Revision: D3392890
      
      fbshipit-source-id: 284b4964bbb17e9a081779b870af68e8f1a81634
      6da900e4
    • Subodh Iyengar's avatar
      Add TFO support to AsyncSSLSocket · 889fe563
      Subodh Iyengar authored
      Summary:
      This adds TFO support to AsyncSSLSocket which
      uses the support for TFO from AsyncSocket.
      
      Because of the way AsyncSSLSocket inherits from
      AsyncSocket it is tricky.
      
      The following changes were made:
      1. Openssl internally will treat only errors with return
      code -1 as READ_REQUIRED or WRITE_REQUIRED errors. So this
      diff changes the return value of the errors in the TFO fallback
      cases to -1.
      
      2. In case we fallback after SSL_connect() to a normal connect,
      we would have to restart the connection process after connect
      succeeds. To do this this overrides the connection success callback
      and restarts the connection before sending the callback to AsyncSocket
      because sometimes callbacks might synchronously call sslConn() in the
      normal connect cases.
      
      3. Delegated bioWrite to call sendSocketMessage instead of sendmsg directly.
      
      Reviewed By: djwatson
      
      Differential Revision: D3391735
      
      fbshipit-source-id: 61434f6de4a9c3d03973c9ab9e51eb49e751e5cf
      889fe563
  14. 06 Jun, 2016 1 commit
  15. 04 Jun, 2016 3 commits
    • Christopher Dykes's avatar
      Allow constexpr construction of AtomicStruct under MSVC · 58d507c1
      Christopher Dykes authored
      Summary: Attempting to use this under MSVC, as `MemoryIdler::defaultIdleTimeout` does, generated warnings about the symbol being dynamically initialized due to an implementation limation. Solve this by defining a union instead of calling `encode` in the constructor.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D3387916
      
      fbshipit-source-id: b0d628b6d086960e94121b6183a31348fb151aac
      58d507c1
    • Christopher Dykes's avatar
      Deal with a couple of warnings from MSVC · 5911efa1
      Christopher Dykes authored
      Summary: MSVC is warning that `client` may be uninitialized, which is possible if the callback doesn't actually set them for some reason. Solve that by explicitly initializing it to `nullptr`. Also deal with the warning about the initialization of `dynamic::array` using braced syntax by not using that syntax.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D3387782
      
      fbshipit-source-id: e4d25ad32e99a73d7d062be9a2f2b5bde5d17396
      5911efa1
    • Christopher Dykes's avatar
      Remove a couple of MSVC portability defines · 65b5c3d2
      Christopher Dykes authored
      Summary: The first is both wrong (due to the difference in semantics) and unneeded, as MSVC 2015 supports `snprintf` natively and with the correct semantics. The second is simply never used.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D3387551
      
      fbshipit-source-id: ea666a60ce859a59ad3d3ff961b4d7d642fd86eb
      65b5c3d2