contrib: fix check-deps.sh to check for weak symbols #30415

pull ryanofsky wants to merge 4 commits into bitcoin:master from ryanofsky:pr/weakcheck changing 3 files +21 −19
  1. ryanofsky commented at 3:32 pm on July 9, 2024: contributor

    Fix check-deps.sh to check for weak symbols so it can detect when an exported template function like is used from another library.

    Also update the script to work with cmake and configure it to run as part of CI.

    Problem was reported by hebasto in #29015 (comment)

  2. DrahtBot commented at 3:32 pm on July 9, 2024: contributor

    The following sections might be updated with supplementary metadata relevant to reviewers and maintainers.

    Code Coverage

    For detailed information about the code coverage, see the test coverage report.

    Reviews

    See the guideline for information on the review process.

    Type Reviewers
    ACK TheCharlatan, hebasto
    Stale ACK m3dwards

    If your review is incorrectly listed, please react with 👎 to this comment and the bot will ignore it on the next update.

  3. DrahtBot added the label Scripts and tools on Jul 9, 2024
  4. hebasto commented at 1:15 pm on July 10, 2024: member
    Concept ACK.
  5. in contrib/devtools/check-deps.sh:62 in 5a8b9432cd outdated
    57@@ -58,6 +58,10 @@ SUPPRESS["libbitcoin_common_a-common.o libbitcoin_node_a-interface_ui.o _Z9InitE
    58 # rpc/external_signer.cpp adds defines node RPC methods but is built as part of the
    59 # common library. It should be moved to the node library instead.
    60 SUPPRESS["libbitcoin_common_a-external_signer.o libbitcoin_node_a-server.o _ZN9CRPCTable13appendCommandERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPK11CRPCCommand"]=1
    61+# pubkey.cpp in consensus library currently calls ParseHex in util to set
    62+# NUMS_H_DATA constant, but this dependency can be eliminated in #30377 so
    


    hebasto commented at 3:19 pm on July 10, 2024:
    nit: Maybe make a reference to a PR consistent with the previous one?

    ryanofsky commented at 4:22 pm on July 24, 2024:

    re: #30415 (review)

    nit: Maybe make a reference to a PR consistent with the previous one?

    Thanks, updated

  6. hebasto approved
  7. hebasto commented at 3:19 pm on July 10, 2024: member
    ACK 5a8b9432cde11f6140855717af195d8b7e798d75, tested on Ubuntu 24.04/
  8. ryanofsky force-pushed on Jul 24, 2024
  9. ryanofsky commented at 4:23 pm on July 24, 2024: contributor
    Updated 5a8b9432cde11f6140855717af195d8b7e798d75 -> 114b2a406e604747bd856f566aa8c7ad84dd8f15 (pr/weakcheck.1 -> pr/weakcheck.2, compare) making comment more consistent
  10. hebasto approved
  11. hebasto commented at 9:35 am on July 25, 2024: member
    re-ACK 114b2a406e604747bd856f566aa8c7ad84dd8f15.
  12. ryanofsky commented at 10:31 am on July 25, 2024: contributor
    If anyone else would like to review or test this, you can confirm that it works by just running ./contrib/devtools/check-deps.sh in the source directory. The script will automatically call make to build the bitcoin libraries and should show Success! No unexpected dependencies were detected. if successful.
  13. hebasto commented at 10:35 am on July 25, 2024: member
    cc @m3dwards :)
  14. hebasto added the label Needs CMake port on Jul 25, 2024
  15. fanquake commented at 11:08 am on July 25, 2024: member

    Seems like if a script such as this is going to exist, it should be getting run as part of the CI, so that regressions are actually caught (if that’s what we want to do)?

    note: libbitcoin_crypto_arm_shani is missing from LIBS[crypto] crypto.

  16. ryanofsky commented at 1:15 pm on July 25, 2024: contributor

    Seems like if a script such as this is going to exist, it should be getting run as part of the CI, so that regressions are actually caught (if that’s what we want to do)?

    I think it would be nice to run as part of CI. I added a commit to try that.

    If we think the script is a maintenance burden, it is also not essential to keep. I wrote it mainly to help write #29015 to figure out which parts of the util library should be moved to common, crypto, and consensus libraries.

    note: libbitcoin_crypto_arm_shani is missing from LIBS[crypto] crypto.

    Not sure if this might be expected but when I try that on my system I see:

    0crypto/sha256_arm_shani.cpp:16:10: fatal error: arm_acle.h: No such file or directory
    1   16 | #include <arm_acle.h>
    

    Added 1 commits 114b2a406e604747bd856f566aa8c7ad84dd8f15 -> dde57405e99c00dcf511ebedd42deb2de5e67e5f (pr/weakcheck.2 -> pr/weakcheck.3, compare) to try to run check-deps script in CI

  17. hebasto commented at 1:39 pm on July 25, 2024: member

    If we think the script is a maintenance burden, it is also not essential to keep. I wrote it mainly to help write #29015 to figure out which parts of the util library should be moved to common, crypto, and consensus libraries.

    I think it is worth having this script to prevent re-introducing undocumented inter-library dependencies.

  18. in ci/test/03_test_script.sh:155 in dde57405e9 outdated
    150@@ -151,6 +151,10 @@ if [ -n "$USE_VALGRIND" ]; then
    151   "${BASE_ROOT_DIR}/ci/test/wrap-valgrind.sh"
    152 fi
    153 
    154+if [ "$RUN_CHECK_DEPS" = "true" ]; then
    155+  contrib/devtools/check-deps.sh
    


    maflcko commented at 2:11 pm on July 25, 2024:
    CI is doing out-of-tree builds, so this path won’t exist here
  19. ryanofsky force-pushed on Jul 25, 2024
  20. DrahtBot added the label CI failed on Jul 25, 2024
  21. ryanofsky commented at 3:29 pm on July 25, 2024: contributor
    Updated dde57405e99c00dcf511ebedd42deb2de5e67e5f -> 07509a4b691b4250c8e085d247dad9ddb4e5baa5 (pr/weakcheck.3 -> pr/weakcheck.4, compare) to fix ci failure https://cirrus-ci.com/task/5809606310494208 “/ci_container_base/ci/test/03_test_script.sh: line 155: contrib/devtools/check-deps.sh: No such file or directory” predicted by maflcko Added 1 commits 07509a4b691b4250c8e085d247dad9ddb4e5baa5 -> d21803b08e51dd8812116ba8f8d8ad6009b5d0fc (pr/weakcheck.4 -> pr/weakcheck.5, compare) adding debug commit to debug silent failure https://cirrus-ci.com/task/5394916199628800 Updated d21803b08e51dd8812116ba8f8d8ad6009b5d0fc -> 0c83d553a528ba8b736747d92ad7e266370018ae (pr/weakcheck.5 -> pr/weakcheck.6, compare) fixing verbose failure https://cirrus-ci.com/task/4801670352207872 Updated 0c83d553a528ba8b736747d92ad7e266370018ae -> 2bca4af323c5b505689c5203e6ddba8becac5dc8 (pr/weakcheck.6 -> pr/weakcheck.7, compare) dropping verbose output after success in https://cirrus-ci.com/task/6691470202109952
  22. ryanofsky force-pushed on Jul 26, 2024
  23. ryanofsky force-pushed on Jul 26, 2024
  24. hebasto approved
  25. hebasto commented at 10:26 am on July 26, 2024: member
    re-ACK 2bca4af323c5b505689c5203e6ddba8becac5dc8
  26. ryanofsky removed the label CI failed on Aug 6, 2024
  27. m3dwards commented at 12:38 pm on August 11, 2024: contributor

    ACK 2bca4af323c5b505689c5203e6ddba8becac5dc8

    Tested on Debian x86.

    With the suppression disabled I got:

    0Error: libbitcoin_consensus_a-pubkey.o depends on libbitcoin_util_a-strencodings.o symbol 'std::optional<std::vector<unsigned char, std::allocator<unsigned char> > > TryParseHex<unsigned char>(std::basic_string_view<char, std::char_traits<char> >)'
    
  28. hebasto commented at 1:32 pm on August 12, 2024: member
  29. in contrib/devtools/check-deps.sh:63 in 2bca4af323 outdated
    57@@ -58,6 +58,10 @@ SUPPRESS["libbitcoin_common_a-common.o libbitcoin_node_a-interface_ui.o _Z9InitE
    58 # rpc/external_signer.cpp adds defines node RPC methods but is built as part of the
    59 # common library. It should be moved to the node library instead.
    60 SUPPRESS["libbitcoin_common_a-external_signer.o libbitcoin_node_a-server.o _ZN9CRPCTable13appendCommandERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPK11CRPCCommand"]=1
    61+# pubkey.cpp in consensus library currently calls ParseHex in util to set
    62+# NUMS_H_DATA constant, but this suppression can be dropped when runtime
    63+# dependency is dropped in https://github.com/bitcoin/bitcoin/issues/30377
    


    maflcko commented at 8:33 am on September 2, 2024:
    Looks like this was merged

    ryanofsky commented at 7:42 pm on September 4, 2024:

    re: #30415 (review)

    Looks like this was merged

    Thanks! Updated

  30. maflcko removed the label Needs CMake port on Sep 2, 2024
  31. contrib: make check-deps.sh script work with cmake 86c80e9cf2
  32. contrib: fix check-deps.sh to check for weak symbols
    Fix check-deps.sh to check for weak symbols so it can detect when an exported
    template function is used from another library.
    
    In a previous version of this commit, this change caused an invalid dependency
    in the consensus library on the TryParseHex template function from the util
    library to be detected, and a suppression was added here. But #30377 removed
    the invalid dependency so the suppression is no longer needed.
    
    The invalid dependency and problem detecting weak symbol usage was originally
    reported by Hennadii Stepanov in
    https://github.com/bitcoin/bitcoin/pull/29015#issuecomment-2209258843
    3c99f5a38a
  33. contrib: fix check-deps.sh when libraries do not import symbols
    Script was failing when called on libraries that do not import symbols, because
    bash pipefail option was specified, and grep was used in some pipelines to
    filter symbols, and grep returns status 1 when it doesn't match any lines. This
    could cause the script to fail on some systems and configurations, such as the
    clang-tidy CI configuration
    https://cirrus-ci.com/task/4801670352207872?logs=ci#L6191 where the
    libbitcoin_crypto_x86_shani.a library does not import symbols.
    0aaa1298a0
  34. ci: run check-deps.sh as part of clang-tidy job 3ae35b427f
  35. ryanofsky force-pushed on Sep 4, 2024
  36. ryanofsky commented at 7:46 pm on September 4, 2024: contributor
    Rebased 2bca4af323c5b505689c5203e6ddba8becac5dc8 -> 76ef8113f70070ab1deeeb142977d46d8132c36e (pr/weakcheck.7 -> pr/weakcheck.8, compare) updating this to work with cmake and dropping suppression no longer needed after #30377
  37. DrahtBot added the label CI failed on Sep 4, 2024
  38. in contrib/devtools/check-deps.sh:44 in 76ef8113f7 outdated
    38 # Add minor dependencies omitted from doc/design/libraries.md to keep the
    39 # dependency diagram simple.
    40 ALLOWED_DEPENDENCIES+=(
    41     "wallet consensus"
    42-    "wallet_tool common"
    43-    "wallet_tool crypto"
    


    hodlinator commented at 10:03 pm on September 4, 2024:

    What happened to wallet_tool in the latest push?

    2 dependencies exist according to /doc/design/libraries.md:

    0libbitcoin_wallet_tool-->libbitcoin_wallet;
    1libbitcoin_wallet_tool-->libbitcoin_util;
    

    ryanofsky commented at 10:15 pm on September 4, 2024:
    I didn’t dig into it but it appeared wallet_tool library disappeared in the conversion to cmake, so I removed references to it here. Probably libraries.md needs to be updated too though. There may be an existing cmake documentation PR where that change could be / has been made

    hebasto commented at 10:30 pm on September 4, 2024:

    I didn’t dig into it but it appeared wallet_tool library disappeared in the conversion to cmake…

    I couldn’t bring myself to create a library for just a single object file. :)

    For the reference, the library was defined as follows: https://github.com/bitcoin/bitcoin/blob/80f00cafdeef0600fa1a5e906686720786c2336c/src/Makefile.am#L547-L549

  39. ryanofsky force-pushed on Sep 4, 2024
  40. ryanofsky commented at 10:21 pm on September 4, 2024: contributor
    Updated 76ef8113f70070ab1deeeb142977d46d8132c36e -> 3e4312eef78f233eb7ae1d7d85e497de34144f2e (pr/weakcheck.8 -> pr/weakcheck.9, compare) to fix failing CI job due to changed default build directory (https://cirrus-ci.com/task/5141392714891264?logs=ci#L5325)
  41. DrahtBot removed the label CI failed on Sep 5, 2024
  42. in contrib/devtools/check-deps.sh:192 in 3e4312eef7 outdated
    190@@ -194,6 +191,7 @@ cd "$BUILD_DIR"
    191 # shellcheck disable=SC2046
    192 make -j"$(nproc)" $(lib_targets)
    


    TheCharlatan commented at 9:20 am on September 5, 2024:
    I think we are trying to consistently use cmake --build over make .

    ryanofsky commented at 2:56 pm on September 5, 2024:

    re: #30415 (review)

    I think we are trying to consistently use cmake --build over make .

    Thanks, switched to cmake –build

  43. TheCharlatan approved
  44. TheCharlatan commented at 9:25 am on September 5, 2024: contributor
    ACK 3e4312eef78f233eb7ae1d7d85e497de34144f2e
  45. DrahtBot requested review from m3dwards on Sep 5, 2024
  46. DrahtBot requested review from hebasto on Sep 5, 2024
  47. ryanofsky force-pushed on Sep 5, 2024
  48. ryanofsky commented at 2:58 pm on September 5, 2024: contributor
    Updated 3e4312eef78f233eb7ae1d7d85e497de34144f2e -> b14d87085fca777b1d14ff051d31d41932597f06 (pr/weakcheck.9 -> pr/weakcheck.10, compare) with suggested change to use cmake –build wrapper instead of calling make directly
  49. TheCharlatan approved
  50. TheCharlatan commented at 3:00 pm on September 5, 2024: contributor
    Re-ACK b14d87085fca777b1d14ff051d31d41932597f06
  51. ryanofsky force-pushed on Sep 5, 2024
  52. ryanofsky commented at 3:07 pm on September 5, 2024: contributor
    Updated b14d87085fca777b1d14ff051d31d41932597f06 -> 3ae35b427fe59bc9ab24d07c1adb46faa702de20 (pr/weakcheck.10 -> pr/weakcheck.11, compare) simplifying by dropping cd since cmake –build ignores the current directory.
  53. TheCharlatan approved
  54. TheCharlatan commented at 3:13 pm on September 5, 2024: contributor
    Re-ACK 3ae35b427fe59bc9ab24d07c1adb46faa702de20
  55. hebasto approved
  56. hebasto commented at 3:45 pm on September 5, 2024: member
    ACK 3ae35b427fe59bc9ab24d07c1adb46faa702de20, I have reviewed the code and it looks OK. Also I’ve tested it locally.
  57. fanquake commented at 9:51 am on September 6, 2024: member

    Fixing this looks good. I guess going forward it currently has the caveat that it’s expected to work most correctly in the CI (on the same hardware used by the CI). i.e this will fail for any dev trying to run the script locally, on aarch64:

    0[ 25%] Built target bitcoin_crypto_arm_shani
    1[100%] Built target bitcoin_crypto
    2gmake: *** No rule to make target 'bitcoin_crypto_x86_shani'.  Stop.
    

    or if a dev compiles on x86_64, but doesn’t match the CI config, they may see incorrect output i.e:

    0[100%] Built target bitcoin_crypto_sse41
    1Built target bitcoin_crypto_avx2
    2Warning: suppression 'init.cpp.o bdb.cpp.o _ZN6wallet27BerkeleyDatabaseSanityCheckEv' was ignored, consider deleting.
    3Success! No unexpected dependencies were detected.
    

    This seems fine for now, as long as weak symbols/regressions are caught, and could be followed up on.

  58. fanquake merged this on Sep 6, 2024
  59. fanquake closed this on Sep 6, 2024


github-metadata-mirror

This is a metadata mirror of the GitHub repository bitcoin/bitcoin. This site is not affiliated with GitHub. Content is generated from a GitHub metadata backup.
generated: 2024-09-19 01:12 UTC

This site is hosted by @0xB10C
More mirrored repositories can be found on mirror.b10c.me