Compare commits
39 Commits
master
...
libssh-0.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7f6b3fab4e | ||
|
|
cd7ccf93f0 | ||
|
|
5944124428 | ||
|
|
8c40b2491d | ||
|
|
3331b794bc | ||
|
|
02f1873b9e | ||
|
|
5da93db25a | ||
|
|
b18495b56b | ||
|
|
a96763b195 | ||
|
|
540257b421 | ||
|
|
b657eeb65e | ||
|
|
4a87515026 | ||
|
|
886ed379d8 | ||
|
|
9b9197d86b | ||
|
|
64e89affeb | ||
|
|
2c1ad3262a | ||
|
|
14ff31490f | ||
|
|
3db3511467 | ||
|
|
4c5da86f91 | ||
|
|
2564246024 | ||
|
|
146d1a620d | ||
|
|
19c43ff6b7 | ||
|
|
58a2943d42 | ||
|
|
54c5472b53 | ||
|
|
17e9cd70a5 | ||
|
|
cee5c9f404 | ||
|
|
43fb1d7c8d | ||
|
|
5c629f22f6 | ||
|
|
46e0703c6e | ||
|
|
cffa103378 | ||
|
|
ea6558b3a6 | ||
|
|
33e12317c3 | ||
|
|
d17c635617 | ||
|
|
dde5fd8d38 | ||
|
|
46e78aaa3a | ||
|
|
3107133d10 | ||
|
|
b9ccaf6e23 | ||
|
|
38b17e6e6e | ||
|
|
db0a1d6811 |
@@ -1,29 +0,0 @@
|
|||||||
---
|
|
||||||
# https://clang.llvm.org/docs/ClangFormatStyleOptions.html
|
|
||||||
BasedOnStyle: LLVM
|
|
||||||
IndentWidth: 4
|
|
||||||
UseTab: Never
|
|
||||||
AllowShortIfStatementsOnASingleLine: false
|
|
||||||
BreakBeforeBraces: Custom
|
|
||||||
BraceWrapping:
|
|
||||||
AfterEnum: false
|
|
||||||
AfterFunction: true
|
|
||||||
AfterStruct: false
|
|
||||||
AfterUnion: false
|
|
||||||
AfterExternBlock: false
|
|
||||||
BeforeElse: false
|
|
||||||
BeforeWhile: false
|
|
||||||
IndentCaseLabels: false
|
|
||||||
IndentCaseBlocks: false
|
|
||||||
ColumnLimit: 80
|
|
||||||
AlignAfterOpenBracket: Align
|
|
||||||
AllowAllParametersOfDeclarationOnNextLine: false
|
|
||||||
BinPackArguments: false
|
|
||||||
BinPackParameters: false
|
|
||||||
AllowAllArgumentsOnNextLine: false
|
|
||||||
AllowShortFunctionsOnASingleLine: Empty
|
|
||||||
BreakAfterReturnType: ExceptShortType
|
|
||||||
AlwaysBreakAfterReturnType: AllDefinitions
|
|
||||||
AlignEscapedNewlines: Left
|
|
||||||
ForEachMacros: ['ssh_callbacks_iterate']
|
|
||||||
AlignConsecutiveMacros: 'Consecutive'
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
src/external/*
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
line_width: 80
|
|
||||||
tab_size: 4
|
|
||||||
use_tabchars: false
|
|
||||||
separate_ctrl_name_with_space: true
|
|
||||||
separate_fn_name_with_space: false
|
|
||||||
@@ -12,12 +12,7 @@ indent_style = space
|
|||||||
indent_size = 4
|
indent_size = 4
|
||||||
tab_width = 4
|
tab_width = 4
|
||||||
|
|
||||||
[CMakeLists.txt]
|
[{CMakeLists.txt,*.cmake}]
|
||||||
indent_style = space
|
|
||||||
indent_size = 4
|
|
||||||
tab_width = 4
|
|
||||||
|
|
||||||
[*.cmake]
|
|
||||||
indent_style = space
|
indent_style = space
|
||||||
indent_size = 4
|
indent_size = 4
|
||||||
tab_width = 4
|
tab_width = 4
|
||||||
3
.gitignore
vendored
@@ -1,5 +1,6 @@
|
|||||||
*.a
|
*.a
|
||||||
*.o
|
*.o
|
||||||
|
.*
|
||||||
*.swp
|
*.swp
|
||||||
*~$
|
*~$
|
||||||
cscope.*
|
cscope.*
|
||||||
@@ -9,5 +10,3 @@ compile_commands.json
|
|||||||
tags
|
tags
|
||||||
/build
|
/build
|
||||||
/obj*
|
/obj*
|
||||||
doc/tags.xml
|
|
||||||
.DS_Store
|
|
||||||
|
|||||||
567
.gitlab-ci.yml
@@ -1,43 +1,26 @@
|
|||||||
---
|
---
|
||||||
variables:
|
variables:
|
||||||
BUILD_IMAGES_PROJECT: libssh/build-images
|
BUILD_IMAGES_PROJECT: libssh/build-images
|
||||||
CENTOS8_BUILD: buildenv-c8s
|
CENTOS7_BUILD: buildenv-centos7
|
||||||
CENTOS9_BUILD: buildenv-c9s
|
CENTOS9_BUILD: buildenv-c9s
|
||||||
CENTOS10_BUILD: buildenv-c10s
|
COVERITY_BUILD: buildenv-coverity
|
||||||
FEDORA_BUILD: buildenv-fedora
|
FEDORA_BUILD: buildenv-fedora
|
||||||
MINGW_BUILD: buildenv-mingw
|
MINGW_BUILD: buildenv-mingw
|
||||||
TUMBLEWEED_BUILD: buildenv-tumbleweed
|
TUMBLEWEED_BUILD: buildenv-tumbleweed
|
||||||
UBUNTU_BUILD: buildenv-ubuntu
|
UBUNTU_BUILD: buildenv-ubuntu
|
||||||
ALPINE_BUILD: buildenv-alpine
|
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- review
|
|
||||||
- build
|
- build
|
||||||
- test
|
- test
|
||||||
- analysis
|
- analysis
|
||||||
|
|
||||||
# This is some black magic to select between branch pipelines and
|
.build:
|
||||||
# merge request pipelines to avoid running same pipelines twice
|
stage: build
|
||||||
workflow:
|
|
||||||
rules:
|
|
||||||
- if: '$CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS && $CI_PIPELINE_SOURCE == "push"'
|
|
||||||
when: never
|
|
||||||
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
|
|
||||||
- if: '$CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS'
|
|
||||||
when: never
|
|
||||||
- if: '$CI_COMMIT_BRANCH'
|
|
||||||
|
|
||||||
.build_options:
|
|
||||||
variables:
|
variables:
|
||||||
CMAKE_DEFAULT_OPTIONS: "-DCMAKE_BUILD_TYPE=RelWithDebInfo -DPICKY_DEVELOPER=ON"
|
CMAKE_DEFAULT_OPTIONS: "-DCMAKE_BUILD_TYPE=RelWithDebInfo -DPICKY_DEVELOPER=ON"
|
||||||
CMAKE_DEFAULT_DEBUG_OPTIONS: "-DCMAKE_C_FLAGS='-O0 -g -ggdb' -DPICKY_DEVELOPER=ON"
|
CMAKE_BUILD_OPTIONS: "-DWITH_BLOWFISH_CIPHER=ON -DWITH_SFTP=ON -DWITH_SERVER=ON -DWITH_ZLIB=ON -DWITH_PCAP=ON -DWITH_DEBUG_CRYPTO=ON -DWITH_DEBUG_PACKET=ON -DWITH_DEBUG_CALLTRACE=ON -DWITH_DSA=ON"
|
||||||
CMAKE_BUILD_OPTIONS: "-DWITH_BLOWFISH_CIPHER=ON -DWITH_SFTP=ON -DWITH_SERVER=ON -DWITH_ZLIB=ON -DWITH_PCAP=ON -DWITH_FIDO2=ON -DWITH_DEBUG_CRYPTO=ON -DWITH_DEBUG_PACKET=ON -DWITH_DEBUG_CALLTRACE=ON"
|
CMAKE_TEST_OPTIONS: "-DUNIT_TESTING=ON -DCLIENT_TESTING=ON -DSERVER_TESTING=ON -DWITH_BENCHMARKS=ON"
|
||||||
CMAKE_TEST_OPTIONS: "-DUNIT_TESTING=ON -DCLIENT_TESTING=ON -DSERVER_TESTING=ON -DGSSAPI_TESTING=ON -DWITH_BENCHMARKS=ON -DFUZZ_TESTING=ON"
|
|
||||||
CMAKE_OPTIONS: $CMAKE_DEFAULT_OPTIONS $CMAKE_BUILD_OPTIONS $CMAKE_TEST_OPTIONS
|
CMAKE_OPTIONS: $CMAKE_DEFAULT_OPTIONS $CMAKE_BUILD_OPTIONS $CMAKE_TEST_OPTIONS
|
||||||
|
|
||||||
.build:
|
|
||||||
extends: .build_options
|
|
||||||
stage: build
|
|
||||||
before_script: &build
|
before_script: &build
|
||||||
- uname -a
|
- uname -a
|
||||||
- cat /etc/os-release
|
- cat /etc/os-release
|
||||||
@@ -52,11 +35,7 @@ workflow:
|
|||||||
make -j$(nproc) install
|
make -j$(nproc) install
|
||||||
# Do not use after_script as it does not make the targets fail
|
# Do not use after_script as it does not make the targets fail
|
||||||
tags:
|
tags:
|
||||||
- saas-linux-small-amd64
|
- shared
|
||||||
only:
|
|
||||||
- merge_requests
|
|
||||||
- branches
|
|
||||||
|
|
||||||
except:
|
except:
|
||||||
- tags
|
- tags
|
||||||
artifacts:
|
artifacts:
|
||||||
@@ -79,154 +58,35 @@ workflow:
|
|||||||
.fedora:
|
.fedora:
|
||||||
extends: .tests
|
extends: .tests
|
||||||
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD
|
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD
|
||||||
|
variables:
|
||||||
|
CMAKE_ADDITIONAL_OPTIONS: -DWITH_PKCS11_URI=ON
|
||||||
|
|
||||||
.tumbleweed:
|
.tumbleweed:
|
||||||
extends: .tests
|
extends: .tests
|
||||||
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$TUMBLEWEED_BUILD
|
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$TUMBLEWEED_BUILD
|
||||||
script:
|
|
||||||
# torture_gssapi_key_exchange_null is excluded because of a bug
|
|
||||||
# https://bugzilla.opensuse.org/show_bug.cgi?id=1254680
|
|
||||||
- cmake $CMAKE_OPTIONS $CMAKE_ADDITIONAL_OPTIONS .. &&
|
|
||||||
make -j$(nproc) &&
|
|
||||||
ctest --output-on-failure -E "^torture_gssapi_key_exchange_null$"
|
|
||||||
|
|
||||||
.centos:
|
|
||||||
extends: .tests
|
|
||||||
variables:
|
|
||||||
OPENSSL_ENABLE_SHA1_SIGNATURES: 1
|
|
||||||
|
|
||||||
.centos10:
|
|
||||||
extends: .centos
|
|
||||||
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$CENTOS10_BUILD
|
|
||||||
|
|
||||||
.centos9:
|
|
||||||
extends: .centos
|
|
||||||
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$CENTOS9_BUILD
|
|
||||||
|
|
||||||
# Unit testing only, no client and pkd testing, because cwrap is not available
|
|
||||||
# for MinGW
|
|
||||||
.mingw:
|
|
||||||
extends: .tests
|
|
||||||
variables:
|
|
||||||
WINEDEBUG: -all
|
|
||||||
script:
|
|
||||||
- $WINEBIN $CMAKE_DEFAULT_OPTIONS
|
|
||||||
-DWITH_SFTP=ON
|
|
||||||
-DWITH_SERVER=ON
|
|
||||||
-DWITH_ZLIB=ON
|
|
||||||
-DWITH_PCAP=ON
|
|
||||||
-DWITH_FIDO2=ON
|
|
||||||
-DUNIT_TESTING=ON .. &&
|
|
||||||
make -j$(nproc) &&
|
|
||||||
ctest --output-on-failure -E torture_rand
|
|
||||||
|
|
||||||
.fips:
|
|
||||||
extends: .tests
|
|
||||||
variables:
|
|
||||||
CMAKE_ADDITIONAL_OPTIONS: -DWITH_PKCS11_URI=ON
|
|
||||||
before_script:
|
|
||||||
- *build
|
|
||||||
- echo "# userspace fips" > /etc/system-fips
|
|
||||||
# We do not need the kernel part, but in case we ever do:
|
|
||||||
# mkdir -p /var/tmp/userspace-fips
|
|
||||||
# echo 1 > /var/tmp/userspace-fips/fips_enabled
|
|
||||||
# mount --bind /var/tmp/userspace-fips/fips_enabled \
|
|
||||||
# /proc/sys/crypto/fips_enabled
|
|
||||||
- update-crypto-policies --show
|
|
||||||
- update-crypto-policies --set FIPS
|
|
||||||
- update-crypto-policies --show
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
# Review #
|
|
||||||
###############################################################################
|
|
||||||
review:
|
|
||||||
variables:
|
|
||||||
GIT_DEPTH: 100
|
|
||||||
stage: review
|
|
||||||
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD
|
|
||||||
script:
|
|
||||||
- ERROR=0
|
|
||||||
codespell --ignore-words-list=keypair,sorce,ned,nd,ue,pendin || ERROR=1;
|
|
||||||
./.gitlab-ci/clang-format-check.sh || ERROR=1;
|
|
||||||
./.gitlab-ci/git-check-signoff-trailer.sh ${CI_MERGE_REQUEST_DIFF_BASE_SHA} || ERROR=1;
|
|
||||||
./.gitlab-ci/shellcheck.sh || ERROR=1;
|
|
||||||
exit $ERROR
|
|
||||||
# the format is not always matching our intentions
|
|
||||||
allow_failure: true
|
|
||||||
tags:
|
|
||||||
- saas-linux-small-amd64
|
|
||||||
only:
|
|
||||||
- merge_requests
|
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# CentOS builds #
|
# CentOS builds #
|
||||||
###############################################################################
|
###############################################################################
|
||||||
centos10s/openssl_3.5.x/x86_64:
|
# pkd tests fail on CentOS7 docker images, so we don't use -DSERVER_TESTING=ON
|
||||||
extends: .centos10
|
centos7/openssl_1.0.x/x86_64:
|
||||||
variables:
|
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$CENTOS7_BUILD
|
||||||
CMAKE_ADDITIONAL_OPTIONS: -DWITH_PKCS11_URI=ON -DWITH_PKCS11_PROVIDER=ON
|
extends: .tests
|
||||||
script:
|
script:
|
||||||
- cmake $CMAKE_OPTIONS $CMAKE_ADDITIONAL_OPTIONS .. &&
|
- cmake3 $CMAKE_OPTIONS .. &&
|
||||||
make -j$(nproc) &&
|
make -j$(nproc) &&
|
||||||
ctest --output-on-failure
|
ctest --output-on-failure
|
||||||
|
|
||||||
centos10s/openssl_3.5.x/x86_64/fips:
|
centos9s/openssl_3.0.x/x86_64:
|
||||||
extends: .fips
|
|
||||||
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$CENTOS10_BUILD
|
|
||||||
variables:
|
|
||||||
CMAKE_ADDITIONAL_OPTIONS: -DWITH_PKCS11_URI=ON -DWITH_PKCS11_PROVIDER=ON
|
|
||||||
OPENSSL_ENABLE_SHA1_SIGNATURES: 1
|
|
||||||
script:
|
|
||||||
- cmake $CMAKE_OPTIONS $CMAKE_ADDITIONAL_OPTIONS .. &&
|
|
||||||
make -j$(nproc) &&
|
|
||||||
OPENSSL_FORCE_FIPS_MODE=1 ctest --output-on-failure
|
|
||||||
|
|
||||||
centos9s/openssl_3.5.x/x86_64:
|
|
||||||
extends: .centos9
|
|
||||||
variables:
|
|
||||||
CMAKE_ADDITIONAL_OPTIONS: -DWITH_PKCS11_URI=ON -DWITH_PKCS11_PROVIDER=ON
|
|
||||||
script:
|
|
||||||
- cmake $CMAKE_OPTIONS $CMAKE_ADDITIONAL_OPTIONS .. &&
|
|
||||||
make -j$(nproc) &&
|
|
||||||
ctest --output-on-failure
|
|
||||||
|
|
||||||
centos9s/mbedtls_2.x/x86_64:
|
|
||||||
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$CENTOS9_BUILD
|
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$CENTOS9_BUILD
|
||||||
extends: .tests
|
extends: .tests
|
||||||
variables:
|
|
||||||
CMAKE_ADDITIONAL_OPTIONS: "-DWITH_MBEDTLS=ON -DWITH_DEBUG_CRYPTO=ON -DWITH_BLOWFISH_CIPHER=OFF"
|
|
||||||
|
|
||||||
centos9s/openssl_3.5.x/x86_64/fips:
|
|
||||||
extends: .fips
|
|
||||||
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$CENTOS9_BUILD
|
|
||||||
variables:
|
|
||||||
OPENSSL_ENABLE_SHA1_SIGNATURES: 1
|
|
||||||
script:
|
script:
|
||||||
# torture_gssapi_key_exchange_* tests are excluded because gssapi-keyex is disabled
|
- export OPENSSL_ENABLE_SHA1_SIGNATURES=1
|
||||||
# by OpenSSH in FIPS mode in RHEL 9
|
- cmake3 $CMAKE_OPTIONS .. &&
|
||||||
- cmake $CMAKE_OPTIONS $CMAKE_ADDITIONAL_OPTIONS .. &&
|
|
||||||
make -j$(nproc) &&
|
|
||||||
OPENSSL_FORCE_FIPS_MODE=1 ctest --output-on-failure -E "^torture_gssapi_key_exchange.*"
|
|
||||||
|
|
||||||
centos8s/openssl_1.1.1/x86_64:
|
|
||||||
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$CENTOS8_BUILD
|
|
||||||
extends: .tests
|
|
||||||
variables:
|
|
||||||
CMAKE_ADDITIONAL_OPTIONS: -DWITH_PKCS11_URI=ON
|
|
||||||
script:
|
|
||||||
- cmake $CMAKE_OPTIONS $CMAKE_ADDITIONAL_OPTIONS .. &&
|
|
||||||
make -j$(nproc) &&
|
make -j$(nproc) &&
|
||||||
ctest --output-on-failure
|
ctest --output-on-failure
|
||||||
|
|
||||||
centos8s/openssl_1.1.1/x86_64/fips:
|
|
||||||
extends: .fips
|
|
||||||
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$CENTOS8_BUILD
|
|
||||||
script:
|
|
||||||
# torture_gssapi_key_exchange_* and torture_gssapi_server_key_exchange_* tests are excluded
|
|
||||||
# because gssapi-keyex is not allowed in FIPS mode in RHEL 8
|
|
||||||
- cmake $CMAKE_OPTIONS $CMAKE_ADDITIONAL_OPTIONS .. &&
|
|
||||||
make -j$(nproc) &&
|
|
||||||
OPENSSL_FORCE_FIPS_MODE=1 ctest --output-on-failure -E "^torture_gssapi.*key_exchange.*"
|
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Fedora builds #
|
# Fedora builds #
|
||||||
@@ -239,116 +99,57 @@ fedora/docs:
|
|||||||
extends: .build
|
extends: .build
|
||||||
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD
|
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD
|
||||||
script:
|
script:
|
||||||
- cmake -DWITH_INTERNAL_DOC=ON .. && make docs_coverage && make docs
|
- cmake .. && make docs
|
||||||
coverage: '/^Documentation coverage is \d+.\d+%/'
|
|
||||||
|
|
||||||
fedora/ninja:
|
fedora/ninja:
|
||||||
extends: .fedora
|
extends: .fedora
|
||||||
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD
|
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD
|
||||||
variables:
|
|
||||||
CTEST_OUTPUT_ON_FAILURE: 1
|
|
||||||
script:
|
script:
|
||||||
- cmake -G Ninja $CMAKE_OPTIONS ../ && ninja && ninja test
|
- cmake -G Ninja $CMAKE_OPTIONS ../ && ninja && ninja test
|
||||||
|
|
||||||
fedora/coverage:
|
fedora/openssl_3.0.x/x86_64:
|
||||||
extends: .fedora
|
extends: .fedora
|
||||||
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD
|
|
||||||
variables:
|
fedora/openssl_3.0.x/x86_64/fips:
|
||||||
CMAKE_ADDITIONAL_OPTIONS: "-DCMAKE_BUILD_TYPE=Debug -DWITH_COVERAGE=ON"
|
extends: .fedora
|
||||||
|
before_script:
|
||||||
|
- echo "# userspace fips" > /etc/system-fips
|
||||||
|
# We do not need the kernel part, but in case we ever do:
|
||||||
|
# mkdir -p /var/tmp/userspace-fips
|
||||||
|
# echo 1 > /var/tmp/userspace-fips/fips_enabled
|
||||||
|
# mount --bind /var/tmp/userspace-fips/fips_enabled \
|
||||||
|
# /proc/sys/crypto/fips_enabled
|
||||||
|
- update-crypto-policies --show
|
||||||
|
- update-crypto-policies --set FIPS
|
||||||
|
- update-crypto-policies --show
|
||||||
|
- mkdir -p obj && cd obj && cmake
|
||||||
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo
|
||||||
|
-DPICKY_DEVELOPER=ON
|
||||||
|
-DWITH_BLOWFISH_CIPHER=ON
|
||||||
|
-DWITH_SFTP=ON -DWITH_SERVER=ON -DWITH_ZLIB=ON -DWITH_PCAP=ON
|
||||||
|
-DWITH_DEBUG_CRYPTO=ON -DWITH_DEBUG_PACKET=ON -DWITH_DEBUG_CALLTRACE=ON
|
||||||
|
-DWITH_DSA=ON
|
||||||
|
-DUNIT_TESTING=ON -DCLIENT_TESTING=ON -DSERVER_TESTING=ON ..
|
||||||
script:
|
script:
|
||||||
- cmake $CMAKE_OPTIONS $CMAKE_ADDITIONAL_OPTIONS .. &&
|
- cmake $CMAKE_OPTIONS .. &&
|
||||||
make -j$(nproc) &&
|
make -j$(nproc) &&
|
||||||
make coverage_xml
|
OPENSSL_FORCE_FIPS_MODE=1 ctest --output-on-failure
|
||||||
coverage: /^\s*lines:\s*\d+.\d+\%/
|
|
||||||
artifacts:
|
|
||||||
name: ${CI_JOB_NAME}-${CI_COMMIT_REF_NAME}-${CI_COMMIT_SHA}
|
|
||||||
expire_in: 1 week
|
|
||||||
reports:
|
|
||||||
coverage_report:
|
|
||||||
coverage_format: cobertura
|
|
||||||
path: obj/coverage_xml.xml
|
|
||||||
|
|
||||||
fedora/openssl_3.x/x86_64:
|
fedora/openssl_3.0.x/x86_64/minimal:
|
||||||
extends: .fedora
|
|
||||||
|
|
||||||
fedora/openssl_3.x/x86_64/pkcs11-provider:
|
|
||||||
variables:
|
|
||||||
CMAKE_ADDITIONAL_OPTIONS: -DWITH_PKCS11_URI=ON -DWITH_PKCS11_PROVIDER=ON
|
|
||||||
extends: .fedora
|
|
||||||
|
|
||||||
fedora/openssl_3.x/x86_64/minimal:
|
|
||||||
extends: .fedora
|
extends: .fedora
|
||||||
variables:
|
variables:
|
||||||
script:
|
script:
|
||||||
- cmake $CMAKE_DEFAULT_OPTIONS
|
- cmake $CMAKE_DEFAULT_OPTIONS
|
||||||
-DWITH_EXEC=OFF
|
|
||||||
-DWITH_SFTP=OFF
|
-DWITH_SFTP=OFF
|
||||||
-DWITH_SERVER=OFF
|
-DWITH_SERVER=OFF
|
||||||
-DWITH_ZLIB=OFF
|
-DWITH_ZLIB=OFF
|
||||||
-DWITH_PCAP=OFF
|
-DWITH_PCAP=OFF
|
||||||
-DWITH_GSSAPI=OFF
|
-DWITH_DSA=OFF
|
||||||
-DWITH_GEX=OFF
|
|
||||||
-DUNIT_TESTING=ON
|
-DUNIT_TESTING=ON
|
||||||
-DCLIENT_TESTING=ON .. &&
|
-DCLIENT_TESTING=ON
|
||||||
|
-DWITH_GEX=OFF .. &&
|
||||||
make -j$(nproc)
|
make -j$(nproc)
|
||||||
|
|
||||||
.valgrind:
|
|
||||||
extends: .fedora
|
|
||||||
stage: analysis
|
|
||||||
script:
|
|
||||||
- cmake $CMAKE_OPTIONS $CMAKE_ADDITIONAL_OPTIONS .. &&
|
|
||||||
make -j$(nproc) &&
|
|
||||||
make test_memcheck
|
|
||||||
- cat Testing/Temporary/MemoryChecker.*.log | wc -l | grep "^0$"
|
|
||||||
|
|
||||||
fedora/libressl/x86_64:
|
|
||||||
extends: .fedora
|
|
||||||
stage: test
|
|
||||||
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD
|
|
||||||
variables:
|
|
||||||
LIBRESSL_VERSION: "4.2.1"
|
|
||||||
CMAKE_ADDITIONAL_OPTIONS: >
|
|
||||||
-DCMAKE_C_FLAGS="-I/opt/libressl/include"
|
|
||||||
-DOPENSSL_ROOT_DIR=/opt/libressl
|
|
||||||
-DOPENSSL_INCLUDE_DIR=/opt/libressl/include
|
|
||||||
-DOPENSSL_CRYPTO_LIBRARY=/opt/libressl/lib/libcrypto.so
|
|
||||||
-DOPENSSL_SSL_LIBRARY=/opt/libressl/lib/libssl.so
|
|
||||||
-DWITH_GSSAPI=OFF
|
|
||||||
-DWITH_FIDO2=OFF
|
|
||||||
before_script:
|
|
||||||
- *build
|
|
||||||
- dnf install -y perl-core autoconf automake libtool pkgconf-pkg-config
|
|
||||||
- curl -LO https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-${LIBRESSL_VERSION}.tar.gz
|
|
||||||
- tar xf libressl-${LIBRESSL_VERSION}.tar.gz
|
|
||||||
- cd libressl-${LIBRESSL_VERSION}
|
|
||||||
- ./configure --prefix=/opt/libressl
|
|
||||||
- make -j$(nproc)
|
|
||||||
- make install
|
|
||||||
- cd ..
|
|
||||||
script:
|
|
||||||
- export PKG_CONFIG_PATH=/opt/libressl/lib/pkgconfig
|
|
||||||
- export LD_LIBRARY_PATH=/opt/libressl/lib
|
|
||||||
- cmake $CMAKE_OPTIONS $CMAKE_ADDITIONAL_OPTIONS .. &&
|
|
||||||
make -j$(nproc) &&
|
|
||||||
ctest --output-on-failure
|
|
||||||
|
|
||||||
# The PKCS#11 support is turned off as it brings dozens of memory issues from
|
|
||||||
# engine_pkcs11 or openssl itself
|
|
||||||
fedora/valgrind/openssl:
|
|
||||||
variables:
|
|
||||||
CMAKE_ADDITIONAL_OPTIONS: -DWITH_PKCS11_URI=OFF
|
|
||||||
extends: .valgrind
|
|
||||||
|
|
||||||
fedora/valgrind/mbedtls:
|
|
||||||
variables:
|
|
||||||
CMAKE_ADDITIONAL_OPTIONS: -DWITH_MBEDTLS=ON
|
|
||||||
extends: .valgrind
|
|
||||||
|
|
||||||
fedora/valgrind/libgcrypt:
|
|
||||||
variables:
|
|
||||||
CMAKE_ADDITIONAL_OPTIONS: -DWITH_GCRYPT=ON
|
|
||||||
extends: .valgrind
|
|
||||||
|
|
||||||
# Address sanitizer doesn't mix well with LD_PRELOAD used in the testsuite
|
# Address sanitizer doesn't mix well with LD_PRELOAD used in the testsuite
|
||||||
# so, this is only enabled for unit tests right now.
|
# so, this is only enabled for unit tests right now.
|
||||||
# TODO: add -DCLIENT_TESTING=ON -DSERVER_TESTING=ON
|
# TODO: add -DCLIENT_TESTING=ON -DSERVER_TESTING=ON
|
||||||
@@ -402,26 +203,47 @@ fedora/undefined-sanitizer:
|
|||||||
fedora/libgcrypt/x86_64:
|
fedora/libgcrypt/x86_64:
|
||||||
extends: .fedora
|
extends: .fedora
|
||||||
variables:
|
variables:
|
||||||
CMAKE_ADDITIONAL_OPTIONS: "-DWITH_GCRYPT=ON"
|
CMAKE_ADDITIONAL_OPTIONS: "-DWITH_GCRYPT=ON -DWITH_DEBUG_CRYPTO=ON"
|
||||||
|
|
||||||
fedora/mbedtls_3.x/x86_64:
|
fedora/mbedtls/x86_64:
|
||||||
extends: .fedora
|
extends: .fedora
|
||||||
variables:
|
variables:
|
||||||
CMAKE_ADDITIONAL_OPTIONS: "-DWITH_MBEDTLS=ON"
|
CMAKE_ADDITIONAL_OPTIONS: "-DWITH_MBEDTLS=ON -DWITH_DEBUG_CRYPTO=ON -DWITH_DSA=OFF"
|
||||||
|
|
||||||
|
# Unit testing only, no client and pkd testing, because cwrap is not available
|
||||||
|
# for MinGW
|
||||||
fedora/mingw64:
|
fedora/mingw64:
|
||||||
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$MINGW_BUILD
|
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$MINGW_BUILD
|
||||||
extends: .mingw
|
extends: .tests
|
||||||
variables:
|
script:
|
||||||
WINEPATH: /usr/x86_64-w64-mingw32/sys-root/mingw/bin
|
- export WINEPATH=/usr/x86_64-w64-mingw32/sys-root/mingw/bin
|
||||||
WINEBIN: mingw64-cmake
|
- export WINEDEBUG=-all
|
||||||
|
- mingw64-cmake $CMAKE_DEFAULT_OPTIONS
|
||||||
|
-DWITH_SFTP=ON
|
||||||
|
-DWITH_SERVER=ON
|
||||||
|
-DWITH_ZLIB=ON
|
||||||
|
-DWITH_PCAP=ON
|
||||||
|
-DUNIT_TESTING=ON .. &&
|
||||||
|
make -j$(nproc) &&
|
||||||
|
ctest --output-on-failure
|
||||||
|
|
||||||
|
# Unit testing only, no client and pkd testing, because cwrap is not available
|
||||||
|
# for MinGW
|
||||||
fedora/mingw32:
|
fedora/mingw32:
|
||||||
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$MINGW_BUILD
|
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$MINGW_BUILD
|
||||||
extends: .mingw
|
extends: .tests
|
||||||
variables:
|
script:
|
||||||
WINEPATH: /usr/i686-w64-mingw32/sys-root/mingw/bin
|
- export WINEPATH=/usr/i686-w64-mingw32/sys-root/mingw/bin
|
||||||
WINEBIN: mingw32-cmake
|
- export WINEDEBUG=-all
|
||||||
|
- mingw32-cmake $CMAKE_DEFAULT_OPTIONS
|
||||||
|
-DWITH_SFTP=ON
|
||||||
|
-DWITH_SERVER=ON
|
||||||
|
-DWITH_ZLIB=ON
|
||||||
|
-DWITH_PCAP=ON
|
||||||
|
-DUNIT_TESTING=ON .. &&
|
||||||
|
make -j$(nproc) &&
|
||||||
|
ctest --output-on-failure
|
||||||
|
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Fedora csbuild #
|
# Fedora csbuild #
|
||||||
@@ -430,16 +252,9 @@ fedora/mingw32:
|
|||||||
stage: analysis
|
stage: analysis
|
||||||
variables:
|
variables:
|
||||||
GIT_DEPTH: "100"
|
GIT_DEPTH: "100"
|
||||||
CSCPPC_ADD_OPTS: "--library=./.gitlab-ci/cmocka.cfg"
|
|
||||||
CMAKE_OPTIONS: "-DCMAKE_BUILD_TYPE=Debug -DPICKY_DEVELOPER=ON -DUNIT_TESTING=ON -DCLIENT_TESTING=ON -DSERVER_TESTING=ON -DFUZZ_TESTING=ON"
|
|
||||||
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD
|
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD
|
||||||
before_script:
|
before_script:
|
||||||
- |
|
- |
|
||||||
# for merge requests
|
|
||||||
if [[ -n "$CI_MERGE_REQUEST_DIFF_BASE_SHA" ]]; then
|
|
||||||
export CI_COMMIT_BEFORE_SHA="$CI_MERGE_REQUEST_DIFF_BASE_SHA"
|
|
||||||
fi
|
|
||||||
# for branches run
|
|
||||||
if [[ -z "$CI_COMMIT_BEFORE_SHA" ]]; then
|
if [[ -z "$CI_COMMIT_BEFORE_SHA" ]]; then
|
||||||
export CI_COMMIT_BEFORE_SHA=$(git rev-parse "${CI_COMMIT_SHA}~20")
|
export CI_COMMIT_BEFORE_SHA=$(git rev-parse "${CI_COMMIT_SHA}~20")
|
||||||
fi
|
fi
|
||||||
@@ -449,134 +264,64 @@ fedora/mingw32:
|
|||||||
git branch --contains $CI_COMMIT_BEFORE_SHA 2>/dev/null || export CI_COMMIT_BEFORE_SHA=$(git rev-parse "${CI_COMMIT_SHA}~20")
|
git branch --contains $CI_COMMIT_BEFORE_SHA 2>/dev/null || export CI_COMMIT_BEFORE_SHA=$(git rev-parse "${CI_COMMIT_SHA}~20")
|
||||||
|
|
||||||
export CI_COMMIT_RANGE="$CI_COMMIT_BEFORE_SHA..$CI_COMMIT_SHA"
|
export CI_COMMIT_RANGE="$CI_COMMIT_BEFORE_SHA..$CI_COMMIT_SHA"
|
||||||
script:
|
|
||||||
- csbuild
|
|
||||||
--build-dir=obj-csbuild
|
|
||||||
--build-cmd "rm -rf CMakeFiles CMakeCache.txt && cmake $CMAKE_OPTIONS $CMAKE_ADDITIONAL_OPTIONS @SRCDIR@ && make clean && make -j$(nproc)"
|
|
||||||
--git-commit-range $CI_COMMIT_RANGE
|
|
||||||
--color
|
|
||||||
--print-current --print-fixed
|
|
||||||
|
|
||||||
tags:
|
tags:
|
||||||
- saas-linux-small-amd64
|
- shared
|
||||||
except:
|
except:
|
||||||
- tags
|
- tags
|
||||||
only:
|
|
||||||
- merge_requests
|
|
||||||
artifacts:
|
artifacts:
|
||||||
expire_in: 1 week
|
expire_in: 1 week
|
||||||
when: on_failure
|
when: on_failure
|
||||||
paths:
|
paths:
|
||||||
- obj-csbuild/
|
- obj-csbuild/
|
||||||
|
|
||||||
fedora/csbuild/openssl_3.x:
|
fedora/csbuild/openssl_3.0.x:
|
||||||
extends: .csbuild
|
extends: .csbuild
|
||||||
|
script:
|
||||||
|
- csbuild
|
||||||
|
--build-dir=obj-csbuild
|
||||||
|
--build-cmd "rm -rf CMakeFiles CMakeCache.txt && cmake -DCMAKE_BUILD_TYPE=Debug -DPICKY_DEVELOPER=ON -DUNIT_TESTING=ON -DCLIENT_TESTING=ON -DSERVER_TESTING=ON -DFUZZ_TESTING=ON -DWITH_DSA=ON @SRCDIR@ && make clean && make -j$(nproc)"
|
||||||
|
--git-commit-range $CI_COMMIT_RANGE
|
||||||
|
--color
|
||||||
|
--print-current --print-fixed
|
||||||
|
|
||||||
fedora/csbuild/libgcrypt:
|
fedora/csbuild/libgcrypt:
|
||||||
extends: .csbuild
|
extends: .csbuild
|
||||||
variables:
|
script:
|
||||||
CMAKE_ADDITIONAL_OPTIONS: -DWITH_GCRYPT=ON
|
- csbuild
|
||||||
|
--build-dir=obj-csbuild
|
||||||
|
--build-cmd "rm -rf CMakeFiles CMakeCache.txt && cmake -DCMAKE_BUILD_TYPE=Debug -DPICKY_DEVELOPER=ON -DUNIT_TESTING=ON -DCLIENT_TESTING=ON -DSERVER_TESTING=ON -DFUZZ_TESTING=ON -DWITH_GCRYPT=ON -DWITH_DSA=ON @SRCDIR@ && make clean && make -j$(nproc)"
|
||||||
|
--git-commit-range $CI_COMMIT_RANGE
|
||||||
|
--color
|
||||||
|
--print-current --print-fixed
|
||||||
|
|
||||||
fedora/csbuild/mbedtls:
|
fedora/csbuild/mbedtls:
|
||||||
extends: .csbuild
|
extends: .csbuild
|
||||||
variables:
|
|
||||||
CMAKE_ADDITIONAL_OPTIONS: -DWITH_MBEDTLS=ON
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
# Fedora abidiff #
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
fedora/abidiff:
|
|
||||||
stage: analysis
|
|
||||||
variables:
|
|
||||||
GIT_DEPTH: "100"
|
|
||||||
CMAKE_OPTIONS: $CMAKE_DEFAULT_DEBUG_OPTIONS $CMAKE_BUILD_OPTIONS
|
|
||||||
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD
|
|
||||||
before_script:
|
|
||||||
- uname -a
|
|
||||||
- cat /etc/os-release
|
|
||||||
- mount
|
|
||||||
- df -h
|
|
||||||
- cat /proc/swaps
|
|
||||||
- free -h
|
|
||||||
- |
|
|
||||||
# for merge requests
|
|
||||||
if [[ -n "$CI_MERGE_REQUEST_DIFF_BASE_SHA" ]]; then
|
|
||||||
export CI_COMMIT_BEFORE_SHA="$CI_MERGE_REQUEST_DIFF_BASE_SHA"
|
|
||||||
fi
|
|
||||||
# for branches run
|
|
||||||
if [[ -z "$CI_COMMIT_BEFORE_SHA" ]]; then
|
|
||||||
export CI_COMMIT_BEFORE_SHA=$(git rev-parse "${CI_COMMIT_SHA}~20")
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check if the commit exists in this branch
|
|
||||||
# This is not the case for a force push
|
|
||||||
git branch --contains $CI_COMMIT_BEFORE_SHA 2>/dev/null || export CI_COMMIT_BEFORE_SHA=$(git rev-parse "${CI_COMMIT_SHA}~20")
|
|
||||||
|
|
||||||
- mkdir -p obj-${CI_COMMIT_BEFORE_SHA}
|
|
||||||
- mkdir -p obj-${CI_COMMIT_SHA}
|
|
||||||
|
|
||||||
- export INSTALL_DIR1=$(pwd)/install/${CI_COMMIT_BEFORE_SHA}
|
|
||||||
- export INSTALL_DIR2=$(pwd)/install/${CI_COMMIT_SHA}
|
|
||||||
script:
|
script:
|
||||||
- git checkout ${CI_COMMIT_BEFORE_SHA}
|
- csbuild
|
||||||
- pushd obj-${CI_COMMIT_BEFORE_SHA}
|
--build-dir=obj-csbuild
|
||||||
- cmake ${CMAKE_OPTIONS} -DCMAKE_INSTALL_PREFIX=${INSTALL_DIR1} .. &&
|
--build-cmd "rm -rf CMakeFiles CMakeCache.txt && cmake -DCMAKE_BUILD_TYPE=Debug -DPICKY_DEVELOPER=ON -DUNIT_TESTING=ON -DCLIENT_TESTING=ON -DSERVER_TESTING=ON -DFUZZ_TESTING=ON -DWITH_MBEDTLS=ON @SRCDIR@ && make clean && make -j$(nproc)"
|
||||||
make -j$(nproc) && make -j$(nproc) install
|
--git-commit-range $CI_COMMIT_RANGE
|
||||||
- popd
|
--color
|
||||||
- ls -l ${INSTALL_DIR1}/lib*/
|
--print-current --print-fixed
|
||||||
- git checkout ${CI_COMMIT_SHA}
|
|
||||||
- pushd obj-${CI_COMMIT_SHA}
|
|
||||||
- cmake ${CMAKE_OPTIONS} -DCMAKE_INSTALL_PREFIX=${INSTALL_DIR2} .. &&
|
|
||||||
make -j$(nproc) && make -j$(nproc) install
|
|
||||||
- popd
|
|
||||||
- ls -l ${INSTALL_DIR2}/lib*/
|
|
||||||
- ./.gitlab-ci/checkabi.sh ${INSTALL_DIR1} ${INSTALL_DIR2}
|
|
||||||
tags:
|
|
||||||
- saas-linux-small-amd64
|
|
||||||
except:
|
|
||||||
- tags
|
|
||||||
only:
|
|
||||||
- merge_requests
|
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Ubuntu builds #
|
# Ubuntu builds #
|
||||||
###############################################################################
|
###############################################################################
|
||||||
ubuntu/openssl_3.0.x/x86_64:
|
ubuntu/openssl_1.1.x/x86_64:
|
||||||
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$UBUNTU_BUILD
|
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$UBUNTU_BUILD
|
||||||
extends: .tests
|
extends: .tests
|
||||||
script:
|
|
||||||
# torture_gssapi_key_exchange_null is excluded because of a bug
|
|
||||||
# https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/2134527
|
|
||||||
- cmake $CMAKE_OPTIONS $CMAKE_ADDITIONAL_OPTIONS .. &&
|
|
||||||
make -j$(nproc) &&
|
|
||||||
ctest --output-on-failure -E "^torture_gssapi_key_exchange_null$"
|
|
||||||
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
# Alpine builds #
|
|
||||||
###############################################################################
|
|
||||||
alpine/openssl_3.x/musl:
|
|
||||||
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$ALPINE_BUILD
|
|
||||||
extends: .tests
|
|
||||||
script:
|
|
||||||
- cmake $CMAKE_DEFAULT_OPTIONS
|
|
||||||
-DWITH_SFTP=ON
|
|
||||||
-DWITH_SERVER=ON
|
|
||||||
-DWITH_ZLIB=ON
|
|
||||||
-DWITH_PCAP=ON
|
|
||||||
-DUNIT_TESTING=ON .. &&
|
|
||||||
make -j$(nproc) &&
|
|
||||||
ctest --output-on-failure
|
|
||||||
|
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Tumbleweed builds #
|
# Tumbleweed builds #
|
||||||
###############################################################################
|
###############################################################################
|
||||||
tumbleweed/openssl_3.x/x86_64/gcc:
|
tumbleweed/openssl_1.1.x/x86_64/gcc:
|
||||||
extends: .tumbleweed
|
extends: .tumbleweed
|
||||||
|
variables:
|
||||||
|
CMAKE_ADDITIONAL_OPTIONS: "-DKRB5_CONFIG=/usr/lib/mit/bin/krb5-config"
|
||||||
|
|
||||||
tumbleweed/openssl_3.x/x86/gcc:
|
tumbleweed/openssl_1.1.x/x86/gcc:
|
||||||
extends: .tumbleweed
|
extends: .tumbleweed
|
||||||
script:
|
script:
|
||||||
- cmake
|
- cmake
|
||||||
@@ -586,15 +331,15 @@ tumbleweed/openssl_3.x/x86/gcc:
|
|||||||
-DWITH_SERVER=ON
|
-DWITH_SERVER=ON
|
||||||
-DWITH_ZLIB=ON
|
-DWITH_ZLIB=ON
|
||||||
-DWITH_PCAP=ON
|
-DWITH_PCAP=ON
|
||||||
-DUNIT_TESTING=ON .. &&
|
-DWITH_DSA=ON
|
||||||
make -j$(nproc)
|
-DUNIT_TESTING=ON ..
|
||||||
|
|
||||||
tumbleweed/openssl_3.x/x86_64/gcc7:
|
tumbleweed/openssl_1.1.x/x86_64/gcc7:
|
||||||
extends: .tumbleweed
|
extends: .tumbleweed
|
||||||
variables:
|
variables:
|
||||||
CMAKE_ADDITIONAL_OPTIONS: "-DCMAKE_C_COMPILER=gcc-7 -DCMAKE_CXX_COMPILER=g++-7"
|
CMAKE_ADDITIONAL_OPTIONS: "-DCMAKE_C_COMPILER=gcc-7 -DCMAKE_CXX_COMPILER=g++-7 -DKRB5_CONFIG=/usr/lib/mit/bin/krb5-config"
|
||||||
|
|
||||||
tumbleweed/openssl_3.x/x86/gcc7:
|
tumbleweed/openssl_1.1.x/x86/gcc7:
|
||||||
extends: .tumbleweed
|
extends: .tumbleweed
|
||||||
script:
|
script:
|
||||||
- cmake
|
- cmake
|
||||||
@@ -602,33 +347,23 @@ tumbleweed/openssl_3.x/x86/gcc7:
|
|||||||
-DCMAKE_C_COMPILER=gcc-7 -DCMAKE_CXX_COMPILER=g++-7
|
-DCMAKE_C_COMPILER=gcc-7 -DCMAKE_CXX_COMPILER=g++-7
|
||||||
$CMAKE_DEFAULT_OPTIONS
|
$CMAKE_DEFAULT_OPTIONS
|
||||||
-DWITH_SFTP=ON -DWITH_SERVER=ON -DWITH_ZLIB=ON -DWITH_PCAP=ON
|
-DWITH_SFTP=ON -DWITH_SERVER=ON -DWITH_ZLIB=ON -DWITH_PCAP=ON
|
||||||
|
-DWITH_DSA=ON
|
||||||
-DUNIT_TESTING=ON .. &&
|
-DUNIT_TESTING=ON .. &&
|
||||||
make -j$(nproc) &&
|
make -j$(nproc) &&
|
||||||
ctest --output-on-failure
|
ctest --output-on-failure
|
||||||
|
|
||||||
tumbleweed/openssl_3.x/x86_64/clang:
|
tumbleweed/openssl_1.1.x/x86_64/clang:
|
||||||
extends: .tumbleweed
|
extends: .tumbleweed
|
||||||
variables:
|
variables:
|
||||||
CMAKE_ADDITIONAL_OPTIONS: "-DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++"
|
CMAKE_ADDITIONAL_OPTIONS: "-DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DKRB5_CONFIG=/usr/lib/mit/bin/krb5-config"
|
||||||
|
|
||||||
tumbleweed/mbedtls-3.6.x/x86_64/gcc:
|
|
||||||
extends: .tumbleweed
|
|
||||||
variables:
|
|
||||||
CMAKE_ADDITIONAL_OPTIONS: "-DKRB5_CONFIG=/usr/lib/mit/bin/krb5-config -DWITH_MBEDTLS=ON -DWITH_DEBUG_CRYPTO=ON -DWITH_BLOWFISH_CIPHER=OFF "
|
|
||||||
|
|
||||||
tumbleweed/mbedtls-3.6.x/x86_64/clang:
|
|
||||||
extends: .tumbleweed
|
|
||||||
variables:
|
|
||||||
CMAKE_ADDITIONAL_OPTIONS: "-DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DKRB5_CONFIG=/usr/lib/mit/bin/krb5-config -DWITH_MBEDTLS=ON -DWITH_DEBUG_CRYPTO=ON -DWITH_BLOWFISH_CIPHER=OFF "
|
|
||||||
|
|
||||||
tumbleweed/static-analysis:
|
tumbleweed/static-analysis:
|
||||||
extends: .tests
|
extends: .tests
|
||||||
stage: analysis
|
stage: analysis
|
||||||
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$TUMBLEWEED_BUILD
|
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$TUMBLEWEED_BUILD
|
||||||
variables:
|
|
||||||
CCC_CC: clang
|
|
||||||
CCC_CXX: clang++
|
|
||||||
script:
|
script:
|
||||||
|
- export CCC_CC=clang
|
||||||
|
- export CCC_CXX=clang++
|
||||||
- scan-build cmake
|
- scan-build cmake
|
||||||
-DCMAKE_BUILD_TYPE=Debug
|
-DCMAKE_BUILD_TYPE=Debug
|
||||||
-DCMAKE_C_COMPILER=clang
|
-DCMAKE_C_COMPILER=clang
|
||||||
@@ -649,15 +384,22 @@ tumbleweed/static-analysis:
|
|||||||
###############################################################################
|
###############################################################################
|
||||||
# That is a specific runner that we cannot enable universally.
|
# That is a specific runner that we cannot enable universally.
|
||||||
# We restrict it to builds under the $BUILD_IMAGES_PROJECT project.
|
# We restrict it to builds under the $BUILD_IMAGES_PROJECT project.
|
||||||
freebsd/openssl_1.1.1/x86_64:
|
freebsd/x86_64:
|
||||||
image:
|
image:
|
||||||
extends: .tests
|
extends: .tests
|
||||||
variables:
|
|
||||||
CMAKE_OPTIONS: $CMAKE_DEFAULT_OPTIONS -DWITH_SFTP=ON -DWITH_SERVER=ON -DWITH_ZLIB=ON -DWITH_PCAP=ON -DUNIT_TESTING=ON
|
|
||||||
before_script:
|
before_script:
|
||||||
- mkdir -p obj && cd obj && cmake $CMAKE_OPTIONS ..
|
- mkdir -p obj && cd obj && cmake
|
||||||
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo
|
||||||
|
-DPICKY_DEVELOPER=ON
|
||||||
|
-DWITH_SFTP=ON -DWITH_SERVER=ON -DWITH_ZLIB=ON -DWITH_PCAP=ON
|
||||||
|
-DUNIT_TESTING=ON ..
|
||||||
script:
|
script:
|
||||||
- cmake $CMAKE_OPTIONS .. &&
|
- cmake $CMAKE_DEFAULT_OPTIONS
|
||||||
|
-DWITH_SFTP=ON
|
||||||
|
-DWITH_SERVER=ON
|
||||||
|
-DWITH_ZLIB=ON
|
||||||
|
-DWITH_PCAP=ON
|
||||||
|
-DUNIT_TESTING=ON .. &&
|
||||||
make &&
|
make &&
|
||||||
ctest --output-on-failure
|
ctest --output-on-failure
|
||||||
tags:
|
tags:
|
||||||
@@ -667,13 +409,12 @@ freebsd/openssl_1.1.1/x86_64:
|
|||||||
- branches@libssh/libssh-mirror
|
- branches@libssh/libssh-mirror
|
||||||
- branches@cryptomilk/libssh-mirror
|
- branches@cryptomilk/libssh-mirror
|
||||||
- branches@jjelen/libssh-mirror
|
- branches@jjelen/libssh-mirror
|
||||||
|
- branches@marco.fortina/libssh-mirror
|
||||||
|
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Visual Studio builds #
|
# Visual Studio builds #
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# 2024-05-13: These jobs run out of the stages as they take extremely long and
|
|
||||||
# usually timeout with the update to Gitlab 17.0
|
|
||||||
.vs:
|
.vs:
|
||||||
stage: test
|
stage: test
|
||||||
cache:
|
cache:
|
||||||
@@ -686,10 +427,8 @@ freebsd/openssl_1.1.1/x86_64:
|
|||||||
- cmake --build .
|
- cmake --build .
|
||||||
- ctest --output-on-failure
|
- ctest --output-on-failure
|
||||||
tags:
|
tags:
|
||||||
- saas-windows-medium-amd64
|
- windows
|
||||||
only:
|
- shared-windows
|
||||||
- merge_requests
|
|
||||||
- branches
|
|
||||||
except:
|
except:
|
||||||
- tags
|
- tags
|
||||||
artifacts:
|
artifacts:
|
||||||
@@ -698,6 +437,8 @@ freebsd/openssl_1.1.1/x86_64:
|
|||||||
paths:
|
paths:
|
||||||
- obj/
|
- obj/
|
||||||
before_script:
|
before_script:
|
||||||
|
- choco install --no-progress -y cmake
|
||||||
|
- $env:Path += ';C:\Program Files\CMake\bin'
|
||||||
- If (!(test-path .vcpkg\archives)) { mkdir -p .vcpkg\archives }
|
- If (!(test-path .vcpkg\archives)) { mkdir -p .vcpkg\archives }
|
||||||
- $env:VCPKG_DEFAULT_BINARY_CACHE="$PWD\.vcpkg\archives"
|
- $env:VCPKG_DEFAULT_BINARY_CACHE="$PWD\.vcpkg\archives"
|
||||||
- echo $env:VCPKG_DEFAULT_BINARY_CACHE
|
- echo $env:VCPKG_DEFAULT_BINARY_CACHE
|
||||||
@@ -705,14 +446,13 @@ freebsd/openssl_1.1.1/x86_64:
|
|||||||
- vcpkg install cmocka
|
- vcpkg install cmocka
|
||||||
- vcpkg install openssl
|
- vcpkg install openssl
|
||||||
- vcpkg install zlib
|
- vcpkg install zlib
|
||||||
- vcpkg install libfido2
|
|
||||||
- vcpkg integrate install
|
- vcpkg integrate install
|
||||||
- mkdir -p obj; if ($?) {cd obj}; if (! $?) {exit 1}
|
- mkdir -p obj; if ($?) {cd obj}; if (! $?) {exit 1}
|
||||||
- cmake
|
- cmake
|
||||||
-A $PLATFORM
|
-A $PLATFORM
|
||||||
-DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake
|
-DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake
|
||||||
-DPICKY_DEVELOPER=ON
|
-DPICKY_DEVELOPER=ON
|
||||||
-DWITH_SFTP=ON -DWITH_SERVER=ON -DWITH_ZLIB=ON -DWITH_PCAP=ON -DWITH_FIDO2=ON
|
-DWITH_SFTP=ON -DWITH_SERVER=ON -DWITH_ZLIB=ON -DWITH_PCAP=ON
|
||||||
-DUNIT_TESTING=ON ..
|
-DUNIT_TESTING=ON ..
|
||||||
|
|
||||||
visualstudio/x86_64:
|
visualstudio/x86_64:
|
||||||
@@ -738,7 +478,7 @@ visualstudio/x86:
|
|||||||
|
|
||||||
coverity:
|
coverity:
|
||||||
stage: analysis
|
stage: analysis
|
||||||
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$CENTOS9_BUILD
|
image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$COVERITY_BUILD
|
||||||
script:
|
script:
|
||||||
- mkdir obj && cd obj
|
- mkdir obj && cd obj
|
||||||
- wget https://scan.coverity.com/download/linux64 --post-data "token=$COVERITY_SCAN_TOKEN&project=$COVERITY_SCAN_PROJECT_NAME" -O /tmp/coverity_tool.tgz
|
- wget https://scan.coverity.com/download/linux64 --post-data "token=$COVERITY_SCAN_TOKEN&project=$COVERITY_SCAN_PROJECT_NAME" -O /tmp/coverity_tool.tgz
|
||||||
@@ -754,7 +494,7 @@ coverity:
|
|||||||
--form description="CI build"
|
--form description="CI build"
|
||||||
https://scan.coverity.com/builds?project=$COVERITY_SCAN_PROJECT_NAME
|
https://scan.coverity.com/builds?project=$COVERITY_SCAN_PROJECT_NAME
|
||||||
tags:
|
tags:
|
||||||
- saas-linux-small-amd64
|
- shared
|
||||||
only:
|
only:
|
||||||
refs:
|
refs:
|
||||||
- master
|
- master
|
||||||
@@ -768,38 +508,3 @@ coverity:
|
|||||||
when: on_failure
|
when: on_failure
|
||||||
paths:
|
paths:
|
||||||
- obj/cov-int/*.txt
|
- obj/cov-int/*.txt
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
# MacOS #
|
|
||||||
###############################################################################
|
|
||||||
.macos:
|
|
||||||
extends: .build_options
|
|
||||||
tags:
|
|
||||||
- saas-macos-medium-m1
|
|
||||||
image: macos-14-xcode-15
|
|
||||||
before_script:
|
|
||||||
- echo "MacOS runner started"
|
|
||||||
- brew update
|
|
||||||
- brew install cmake openssl cmocka doxygen
|
|
||||||
- mkdir obj && cd obj
|
|
||||||
only:
|
|
||||||
- branches@libssh/libssh-mirror
|
|
||||||
- branches@cryptomilk/libssh-mirror
|
|
||||||
- branches@jjelen/libssh-mirror
|
|
||||||
|
|
||||||
# TODO add -DFUZZ_TESTING=ON clang cant find _LLVMFuzzerInitialize on arm64
|
|
||||||
macos-m1:
|
|
||||||
extends: .macos
|
|
||||||
variables:
|
|
||||||
HOMEBREW_NO_AUTO_UPDATE: 1
|
|
||||||
CMAKE_TEST_OPTIONS: "-DUNIT_TESTING=ON"
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- cmake $CMAKE_OPTIONS .. &&
|
|
||||||
make -j$(sysctl -n hw.logicalcpu) &&
|
|
||||||
ctest --output-on-failure
|
|
||||||
artifacts:
|
|
||||||
expire_in: 1 week
|
|
||||||
when: on_failure
|
|
||||||
paths:
|
|
||||||
- obj/
|
|
||||||
|
|||||||
@@ -1,42 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
INSTALL_DIR1=${1}
|
|
||||||
INSTALL_DIR2=${2}
|
|
||||||
|
|
||||||
abidiff \
|
|
||||||
--headers-dir1 "${INSTALL_DIR1}/include/libssh/" \
|
|
||||||
--headers-dir2 "${INSTALL_DIR2}/include/libssh/" \
|
|
||||||
"${INSTALL_DIR1}/lib64/libssh.so" \
|
|
||||||
"${INSTALL_DIR2}/lib64/libssh.so" \
|
|
||||||
--fail-no-debug-info
|
|
||||||
abiret=$?
|
|
||||||
|
|
||||||
ABIDIFF_ERROR=$(((abiret & 0x01) != 0))
|
|
||||||
ABIDIFF_USAGE_ERROR=$(((abiret & 0x02) != 0))
|
|
||||||
ABIDIFF_ABI_CHANGE=$(((abiret & 0x04) != 0))
|
|
||||||
ABIDIFF_ABI_INCOMPATIBLE_CHANGE=$(((abiret & 0x08) != 0))
|
|
||||||
ABIDIFF_UNKNOWN_BIT_SET=$(((abiret & 0xf0) != 0))
|
|
||||||
|
|
||||||
if [ $ABIDIFF_ERROR -ne 0 ]; then
|
|
||||||
echo "abidiff reported ABIDIFF_ERROR."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
if [ $ABIDIFF_USAGE_ERROR -ne 0 ]; then
|
|
||||||
echo "abidiff reported ABIDIFF_USAGE_ERROR."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
if [ $ABIDIFF_UNKNOWN_BIT_SET -ne 0 ]; then
|
|
||||||
echo "abidiff reported ABIDIFF_UNKNOWN_BIT_SET."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ $ABIDIFF_ABI_INCOMPATIBLE_CHANGE -ne 0 ]; then
|
|
||||||
echo "abidiff result ABIDIFF_ABI_INCOMPATIBLE_CHANGE, this breaks the API!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ $ABIDIFF_ABI_CHANGE -ne 0 ]; then
|
|
||||||
echo "Ignoring abidiff result ABI_CHANGE"
|
|
||||||
fi
|
|
||||||
|
|
||||||
exit 0
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
# Based on Github Action
|
|
||||||
# https://github.com/yshui/git-clang-format-lint
|
|
||||||
|
|
||||||
diff=$(git-clang-format --diff --commit "$CI_MERGE_REQUEST_DIFF_BASE_SHA")
|
|
||||||
[ "$diff" = "no modified files to format" ] && exit 0
|
|
||||||
[ "$diff" = "clang-format did not modify any files" ] && exit 0
|
|
||||||
|
|
||||||
printf "You have introduced coding style breakages, suggested changes:\n\n"
|
|
||||||
|
|
||||||
echo "${diff}" | colordiff
|
|
||||||
exit 1
|
|
||||||
@@ -1,475 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<!--
|
|
||||||
cppcheck library configuration for cmocka
|
|
||||||
|
|
||||||
This file provides cppcheck with information about cmocka's assertion functions
|
|
||||||
and their behavior, particularly that assertion failures do not return.
|
|
||||||
|
|
||||||
This helps cppcheck understand that after assert_non_null(ptr), the pointer
|
|
||||||
is guaranteed to be non-NULL, eliminating false positives like:
|
|
||||||
- nullPointerArithmeticOutOfMemory
|
|
||||||
- nullPointer
|
|
||||||
- etc.
|
|
||||||
|
|
||||||
Usage:
|
|
||||||
cppcheck --library=cmocka.cfg [other options] <source files>
|
|
||||||
|
|
||||||
For more information on cppcheck library format, see:
|
|
||||||
https://cppcheck.sourceforge.io/manual.html#library-configuration
|
|
||||||
-->
|
|
||||||
<def format="2">
|
|
||||||
<!-- Core functions -->
|
|
||||||
<function name="_fail">
|
|
||||||
<noreturn>true</noreturn>
|
|
||||||
<arg nr="1" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="2" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<!-- Boolean assertions -->
|
|
||||||
<function name="_assert_true">
|
|
||||||
<arg nr="1" direction="in">
|
|
||||||
<valid>arg1 != 0</valid>
|
|
||||||
</arg>
|
|
||||||
<arg nr="2" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="3" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="4" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<function name="_assert_false">
|
|
||||||
<arg nr="1" direction="in">
|
|
||||||
<valid>arg1 == 0</valid>
|
|
||||||
</arg>
|
|
||||||
<arg nr="2" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="3" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="4" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<!-- Pointer assertions -->
|
|
||||||
<function name="_assert_ptr_equal_msg">
|
|
||||||
<arg nr="1" direction="in">
|
|
||||||
<valid>arg1 == arg2</valid>
|
|
||||||
</arg>
|
|
||||||
<arg nr="2" direction="in"/>
|
|
||||||
<arg nr="3" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="4" direction="in"/>
|
|
||||||
<arg nr="5" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<function name="_assert_ptr_not_equal_msg">
|
|
||||||
<arg nr="1" direction="in">
|
|
||||||
<valid>arg1 != arg2</valid>
|
|
||||||
</arg>
|
|
||||||
<arg nr="2" direction="in"/>
|
|
||||||
<arg nr="3" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="4" direction="in"/>
|
|
||||||
<arg nr="5" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<!-- Integer assertions -->
|
|
||||||
<function name="_assert_int_equal">
|
|
||||||
<arg nr="1" direction="in">
|
|
||||||
<valid>arg1 == arg2</valid>
|
|
||||||
</arg>
|
|
||||||
<arg nr="2" direction="in"/>
|
|
||||||
<arg nr="3" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="4" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<function name="_assert_int_not_equal">
|
|
||||||
<arg nr="1" direction="in">
|
|
||||||
<valid>arg1 != arg2</valid>
|
|
||||||
</arg>
|
|
||||||
<arg nr="2" direction="in"/>
|
|
||||||
<arg nr="3" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="4" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<function name="_assert_uint_equal">
|
|
||||||
<arg nr="1" direction="in">
|
|
||||||
<valid>arg1 == arg2</valid>
|
|
||||||
</arg>
|
|
||||||
<arg nr="2" direction="in"/>
|
|
||||||
<arg nr="3" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="4" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<function name="_assert_uint_not_equal">
|
|
||||||
<arg nr="1" direction="in">
|
|
||||||
<valid>arg1 != arg2</valid>
|
|
||||||
</arg>
|
|
||||||
<arg nr="2" direction="in"/>
|
|
||||||
<arg nr="3" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="4" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<!-- Float/double assertions -->
|
|
||||||
<function name="_assert_float_equal">
|
|
||||||
<arg nr="1" direction="in"/>
|
|
||||||
<arg nr="2" direction="in"/>
|
|
||||||
<arg nr="3" direction="in"/>
|
|
||||||
<arg nr="4" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="5" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<function name="_assert_float_not_equal">
|
|
||||||
<arg nr="1" direction="in"/>
|
|
||||||
<arg nr="2" direction="in"/>
|
|
||||||
<arg nr="3" direction="in"/>
|
|
||||||
<arg nr="4" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="5" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<function name="_assert_double_equal">
|
|
||||||
<arg nr="1" direction="in"/>
|
|
||||||
<arg nr="2" direction="in"/>
|
|
||||||
<arg nr="3" direction="in"/>
|
|
||||||
<arg nr="4" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="5" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<function name="_assert_double_not_equal">
|
|
||||||
<arg nr="1" direction="in"/>
|
|
||||||
<arg nr="2" direction="in"/>
|
|
||||||
<arg nr="3" direction="in"/>
|
|
||||||
<arg nr="4" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="5" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<!-- String assertions -->
|
|
||||||
<function name="_assert_string_equal">
|
|
||||||
<arg nr="1" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="2" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="3" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="4" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<function name="_assert_string_not_equal">
|
|
||||||
<arg nr="1" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="2" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="3" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="4" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<!-- Memory assertions -->
|
|
||||||
<function name="_assert_memory_equal">
|
|
||||||
<arg nr="1" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="2" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="3" direction="in"/>
|
|
||||||
<arg nr="4" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="5" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<function name="_assert_memory_not_equal">
|
|
||||||
<arg nr="1" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="2" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="3" direction="in"/>
|
|
||||||
<arg nr="4" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="5" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<!-- Range assertions -->
|
|
||||||
<function name="_assert_int_in_range">
|
|
||||||
<arg nr="1" direction="in">
|
|
||||||
<valid>arg2 <= arg1 && arg1 <= arg3</valid>
|
|
||||||
</arg>
|
|
||||||
<arg nr="2" direction="in"/>
|
|
||||||
<arg nr="3" direction="in"/>
|
|
||||||
<arg nr="4" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="5" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<function name="_assert_int_not_in_range">
|
|
||||||
<arg nr="1" direction="in">
|
|
||||||
<valid>arg1 < arg2 || arg3 < arg1</valid>
|
|
||||||
</arg>
|
|
||||||
<arg nr="2" direction="in"/>
|
|
||||||
<arg nr="3" direction="in"/>
|
|
||||||
<arg nr="4" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="5" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<function name="_assert_uint_in_range">
|
|
||||||
<arg nr="1" direction="in">
|
|
||||||
<valid>arg2 <= arg1 && arg1 <= arg3</valid>
|
|
||||||
</arg>
|
|
||||||
<arg nr="2" direction="in"/>
|
|
||||||
<arg nr="3" direction="in"/>
|
|
||||||
<arg nr="4" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="5" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<function name="_assert_uint_not_in_range">
|
|
||||||
<arg nr="1" direction="in">
|
|
||||||
<valid>arg1 < arg2 || arg3 < arg1</valid>
|
|
||||||
</arg>
|
|
||||||
<arg nr="2" direction="in"/>
|
|
||||||
<arg nr="3" direction="in"/>
|
|
||||||
<arg nr="4" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="5" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<function name="_assert_float_in_range">
|
|
||||||
<arg nr="1" direction="in"/>
|
|
||||||
<arg nr="2" direction="in"/>
|
|
||||||
<arg nr="3" direction="in"/>
|
|
||||||
<arg nr="4" direction="in"/>
|
|
||||||
<arg nr="5" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="6" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<function name="_assert_float_not_in_range">
|
|
||||||
<arg nr="1" direction="in"/>
|
|
||||||
<arg nr="2" direction="in"/>
|
|
||||||
<arg nr="3" direction="in"/>
|
|
||||||
<arg nr="4" direction="in"/>
|
|
||||||
<arg nr="5" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="6" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<!-- Set assertions -->
|
|
||||||
<function name="_assert_int_in_set">
|
|
||||||
<arg nr="1" direction="in"/>
|
|
||||||
<arg nr="2" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="3" direction="in"/>
|
|
||||||
<arg nr="4" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="5" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="6" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<function name="_assert_int_not_in_set">
|
|
||||||
<arg nr="1" direction="in"/>
|
|
||||||
<arg nr="2" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="3" direction="in"/>
|
|
||||||
<arg nr="4" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="5" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="6" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<function name="_assert_uint_in_set">
|
|
||||||
<arg nr="1" direction="in"/>
|
|
||||||
<arg nr="2" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="3" direction="in"/>
|
|
||||||
<arg nr="4" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="5" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="6" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<function name="_assert_uint_not_in_set">
|
|
||||||
<arg nr="1" direction="in"/>
|
|
||||||
<arg nr="2" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="3" direction="in"/>
|
|
||||||
<arg nr="4" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="5" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="6" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<function name="_assert_not_in_set">
|
|
||||||
<arg nr="1" direction="in"/>
|
|
||||||
<arg nr="2" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="3" direction="in"/>
|
|
||||||
<arg nr="4" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="5" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="6" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<function name="_assert_float_in_set">
|
|
||||||
<arg nr="1" direction="in"/>
|
|
||||||
<arg nr="2" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="3" direction="in"/>
|
|
||||||
<arg nr="4" direction="in"/>
|
|
||||||
<arg nr="5" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="6" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="7" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<function name="_assert_float_not_in_set">
|
|
||||||
<arg nr="1" direction="in"/>
|
|
||||||
<arg nr="2" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="3" direction="in"/>
|
|
||||||
<arg nr="4" direction="in"/>
|
|
||||||
<arg nr="5" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="6" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="7" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<!-- Return code assertion -->
|
|
||||||
<function name="_assert_return_code">
|
|
||||||
<arg nr="1" direction="in">
|
|
||||||
<valid>0 <= arg1</valid>
|
|
||||||
</arg>
|
|
||||||
<arg nr="2" direction="in"/>
|
|
||||||
<arg nr="3" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="4" direction="in">
|
|
||||||
<not-null/>
|
|
||||||
</arg>
|
|
||||||
<arg nr="5" direction="in"/>
|
|
||||||
</function>
|
|
||||||
|
|
||||||
<!-- Macro definitions -->
|
|
||||||
<!-- Boolean macros -->
|
|
||||||
<define name="assert_true(c)" value="_assert_true(cast_to_uintmax_type(c), #c, __FILE__, __LINE__)"/>
|
|
||||||
<define name="assert_false(c)" value="_assert_false(cast_to_uintmax_type(c), #c, __FILE__, __LINE__)"/>
|
|
||||||
|
|
||||||
<!-- Pointer macros -->
|
|
||||||
<define name="assert_non_null(c)" value="assert_ptr_not_equal((c), NULL)"/>
|
|
||||||
<define name="assert_non_null_msg(c, msg)" value="assert_ptr_not_equal_msg((c), NULL, (msg))"/>
|
|
||||||
<define name="assert_null(c)" value="assert_ptr_equal((c), NULL)"/>
|
|
||||||
<define name="assert_null_msg(c, msg)" value="assert_ptr_equal_msg((c), NULL, (msg))"/>
|
|
||||||
<define name="assert_ptr_equal(a, b)" value="assert_ptr_equal_msg((a), (b), NULL)"/>
|
|
||||||
<define name="assert_ptr_equal_msg(a, b, msg)" value="_assert_ptr_equal_msg((const void*)(a), (const void*)(b), __FILE__, __LINE__, (msg))"/>
|
|
||||||
<define name="assert_ptr_not_equal(a, b)" value="_assert_ptr_not_equal_msg((const void*)(a), (const void*)(b), __FILE__, __LINE__, NULL)"/>
|
|
||||||
<define name="assert_ptr_not_equal_msg(a, b, msg)" value="_assert_ptr_not_equal_msg((const void*)(a), (const void*)(b), __FILE__, __LINE__, (msg))"/>
|
|
||||||
|
|
||||||
<!-- Integer macros -->
|
|
||||||
<define name="assert_int_equal(a, b)" value="_assert_int_equal(cast_to_intmax_type(a), cast_to_intmax_type(b), __FILE__, __LINE__)"/>
|
|
||||||
<define name="assert_int_not_equal(a, b)" value="_assert_int_not_equal(cast_to_intmax_type(a), cast_to_intmax_type(b), __FILE__, __LINE__)"/>
|
|
||||||
<define name="assert_uint_equal(a, b)" value="_assert_uint_equal(cast_to_uintmax_type(a), cast_to_uintmax_type(b), __FILE__, __LINE__)"/>
|
|
||||||
<define name="assert_uint_not_equal(a, b)" value="_assert_uint_not_equal(cast_to_uintmax_type(a), cast_to_uintmax_type(b), __FILE__, __LINE__)"/>
|
|
||||||
|
|
||||||
<!-- Float/double macros -->
|
|
||||||
<define name="assert_float_equal(a, b, epsilon)" value="_assert_float_equal((float)(a), (float)(b), (float)(epsilon), __FILE__, __LINE__)"/>
|
|
||||||
<define name="assert_float_not_equal(a, b, epsilon)" value="_assert_float_not_equal((float)(a), (float)(b), (float)(epsilon), __FILE__, __LINE__)"/>
|
|
||||||
<define name="assert_double_equal(a, b, epsilon)" value="_assert_double_equal((double)(a), (double)(b), (double)(epsilon), __FILE__, __LINE__)"/>
|
|
||||||
<define name="assert_double_not_equal(a, b, epsilon)" value="_assert_double_not_equal((double)(a), (double)(b), (double)(epsilon), __FILE__, __LINE__)"/>
|
|
||||||
|
|
||||||
<!-- String macros -->
|
|
||||||
<define name="assert_string_equal(a, b)" value="_assert_string_equal((const char*)(a), (const char*)(b), __FILE__, __LINE__)"/>
|
|
||||||
<define name="assert_string_not_equal(a, b)" value="_assert_string_not_equal((const char*)(a), (const char*)(b), __FILE__, __LINE__)"/>
|
|
||||||
|
|
||||||
<!-- Memory macros -->
|
|
||||||
<define name="assert_memory_equal(a, b, size)" value="_assert_memory_equal((const void*)(a), (const void*)(b), size, __FILE__, __LINE__)"/>
|
|
||||||
<define name="assert_memory_not_equal(a, b, size)" value="_assert_memory_not_equal((const void*)(a), (const void*)(b), size, __FILE__, __LINE__)"/>
|
|
||||||
|
|
||||||
<!-- Range macros -->
|
|
||||||
<define name="assert_int_in_range(value, minimum, maximum)" value="_assert_int_in_range(cast_to_intmax_type(value), cast_to_intmax_type(minimum), cast_to_intmax_type(maximum), __FILE__, __LINE__)"/>
|
|
||||||
<define name="assert_int_not_in_range(value, minimum, maximum)" value="_assert_int_not_in_range(cast_to_intmax_type(value), cast_to_intmax_type(minimum), cast_to_intmax_type(maximum), __FILE__, __LINE__)"/>
|
|
||||||
<define name="assert_uint_in_range(value, minimum, maximum)" value="_assert_uint_in_range(cast_to_uintmax_type(value), cast_to_uintmax_type(minimum), cast_to_uintmax_type(maximum), __FILE__, __LINE__)"/>
|
|
||||||
<define name="assert_uint_not_in_range(value, minimum, maximum)" value="_assert_uint_not_in_range(cast_to_uintmax_type(value), cast_to_uintmax_type(minimum), cast_to_uintmax_type(maximum), __FILE__, __LINE__)"/>
|
|
||||||
<define name="assert_in_range(value, minimum, maximum)" value="assert_uint_in_range(value, minimum, maximum)"/>
|
|
||||||
<define name="assert_not_in_range(value, minimum, maximum)" value="assert_uint_not_in_range(value, minimum, maximum)"/>
|
|
||||||
<define name="assert_float_in_range(value, minimum, maximum, epsilon)" value="_assert_float_in_range((double)(value), (double)(minimum), (double)(maximum), (double)(epsilon), __FILE__, __LINE__)"/>
|
|
||||||
<define name="assert_float_not_in_range(value, minimum, maximum, epsilon)" value="_assert_float_not_in_range((double)(value), (double)(minimum), (double)(maximum), (double)(epsilon), __FILE__, __LINE__)"/>
|
|
||||||
|
|
||||||
<!-- Set macros -->
|
|
||||||
<define name="assert_in_set(value, values, number_of_values)" value="_assert_not_in_set(cast_to_uintmax_type(value), (uintmax_t*)(values), number_of_values, __FILE__, __LINE__, 0)"/>
|
|
||||||
<define name="assert_not_in_set(value, values, number_of_values)" value="_assert_not_in_set(cast_to_uintmax_type(value), (uintmax_t*)(values), number_of_values, __FILE__, __LINE__, 1)"/>
|
|
||||||
<define name="assert_int_in_set(value, values, number_of_values)" value="_assert_int_in_set(cast_to_intmax_type(value), (intmax_t*)(values), number_of_values, __FILE__, __LINE__, 0)"/>
|
|
||||||
<define name="assert_int_not_in_set(value, values, number_of_values)" value="_assert_int_not_in_set(cast_to_intmax_type(value), (intmax_t*)(values), number_of_values, __FILE__, __LINE__, 1)"/>
|
|
||||||
<define name="assert_uint_in_set(value, values, number_of_values)" value="_assert_uint_in_set(cast_to_uintmax_type(value), (uintmax_t*)(values), number_of_values, __FILE__, __LINE__, 0)"/>
|
|
||||||
<define name="assert_uint_not_in_set(value, values, number_of_values)" value="_assert_uint_not_in_set(cast_to_uintmax_type(value), (uintmax_t*)(values), number_of_values, __FILE__, __LINE__, 1)"/>
|
|
||||||
<define name="assert_float_in_set(value, values, number_of_values, epsilon)" value="_assert_float_in_set((double)(value), (double*)(values), number_of_values, (double)(epsilon), __FILE__, __LINE__, 0)"/>
|
|
||||||
<define name="assert_float_not_in_set(value, values, number_of_values, epsilon)" value="_assert_float_not_in_set((double)(value), (double*)(values), number_of_values, (double)(epsilon), __FILE__, __LINE__, 1)"/>
|
|
||||||
|
|
||||||
<!-- Return code macro -->
|
|
||||||
<define name="assert_return_code(rc, error)" value="_assert_return_code(cast_to_intmax_type(rc), (int32_t)(error), #rc, __FILE__, __LINE__)"/>
|
|
||||||
</def>
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if [ $# != 1 ]; then
|
|
||||||
echo "Usage: $0 UPSTREAM_COMMIT_SHA"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
failed=0
|
|
||||||
|
|
||||||
if [ -z "$CI_COMMIT_SHA" ]; then
|
|
||||||
echo "CI_COMMIT_SHA is not set"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
CI_COMMIT_RANGE="$1..$CI_COMMIT_SHA"
|
|
||||||
|
|
||||||
red='\033[0;31m'
|
|
||||||
blue='\033[0;34m'
|
|
||||||
|
|
||||||
echo -e "${blue}Checking commit range: $CI_COMMIT_RANGE"
|
|
||||||
echo
|
|
||||||
echo
|
|
||||||
|
|
||||||
for commit in $(git rev-list "$CI_COMMIT_RANGE"); do
|
|
||||||
git show -s --format=%B "$commit" | grep "^Signed-off-by: " >/dev/null 2>&1
|
|
||||||
ret=$?
|
|
||||||
if [ $ret -eq 1 ]; then
|
|
||||||
echo -e "${red} >>> Missing Signed-off-by trailer in commit $commit"
|
|
||||||
failed=$(("$failed" + 1))
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
echo
|
|
||||||
echo
|
|
||||||
|
|
||||||
exit $failed
|
|
||||||
@@ -1,116 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
set -e
|
|
||||||
|
|
||||||
RED="\033[1;31m"
|
|
||||||
GREEN="\033[1;32m"
|
|
||||||
YELLOW="\033[1;33m"
|
|
||||||
BLUE="\033[1;34m"
|
|
||||||
RESET="\033[0m"
|
|
||||||
|
|
||||||
export GCL_IGNORE_PREDEFINED_VARS=CI_REGISTRY
|
|
||||||
|
|
||||||
BASE_SHA=$(git merge-base HEAD origin/master 2>/dev/null || git rev-parse HEAD~1)
|
|
||||||
|
|
||||||
COMMON_ARGS=(
|
|
||||||
--variable "CI_MERGE_REQUEST_DIFF_BASE_SHA=$BASE_SHA"
|
|
||||||
--variable "CI_REGISTRY=registry.gitlab.com"
|
|
||||||
--json-schema-validation=false
|
|
||||||
)
|
|
||||||
|
|
||||||
check_requirements() {
|
|
||||||
for cmd in docker git gitlab-ci-local; do
|
|
||||||
if ! command -v "$cmd" >/dev/null 2>&1; then
|
|
||||||
echo -e "${RED}Missing dependency: $cmd${RESET}"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
echo -e "${GREEN}Found: $cmd${RESET}"
|
|
||||||
done
|
|
||||||
|
|
||||||
if ! docker info >/dev/null 2>&1; then
|
|
||||||
echo -e "${RED}Docker daemon is not running or permission denied${RESET}"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
list_jobs() {
|
|
||||||
gitlab-ci-local --list --json-schema-validation=false | awk 'NR>1 {print $1}'
|
|
||||||
}
|
|
||||||
|
|
||||||
run_job() {
|
|
||||||
JOB="$1"
|
|
||||||
echo -e "${YELLOW}Running CI job: $JOB${RESET}"
|
|
||||||
gitlab-ci-local "$JOB" "${COMMON_ARGS[@]}"
|
|
||||||
}
|
|
||||||
|
|
||||||
cleanup_images() {
|
|
||||||
echo -e "${BLUE}Removing libssh CI images only...${RESET}"
|
|
||||||
docker images --format "{{.Repository}}:{{.Tag}} {{.ID}}" \
|
|
||||||
| grep "$CI_REGISTRY/$BUILD_IMAGES_PROJECT" \
|
|
||||||
| awk '{print $2}' \
|
|
||||||
| xargs -r docker rmi -f
|
|
||||||
}
|
|
||||||
|
|
||||||
usage() {
|
|
||||||
echo
|
|
||||||
echo -e "${BLUE}Usage:${RESET}"
|
|
||||||
echo " $0 --list"
|
|
||||||
echo " $0 --run <job-name>"
|
|
||||||
echo " $0 --all"
|
|
||||||
echo " $0 --run <job-name> --clean"
|
|
||||||
echo " $0 --all --clean"
|
|
||||||
echo
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
check_requirements
|
|
||||||
|
|
||||||
CLEAN=0
|
|
||||||
MODE=""
|
|
||||||
JOB=""
|
|
||||||
|
|
||||||
while [[ $# -gt 0 ]]; do
|
|
||||||
case "$1" in
|
|
||||||
--list)
|
|
||||||
MODE="list"
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
--run)
|
|
||||||
MODE="run"
|
|
||||||
JOB="$2"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
--all)
|
|
||||||
MODE="all"
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
--clean)
|
|
||||||
CLEAN=1
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
usage
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
case "$MODE" in
|
|
||||||
list)
|
|
||||||
list_jobs
|
|
||||||
;;
|
|
||||||
run)
|
|
||||||
[[ -z "$JOB" ]] && usage
|
|
||||||
run_job "$JOB"
|
|
||||||
[[ "$CLEAN" -eq 1 ]] && cleanup_images
|
|
||||||
;;
|
|
||||||
all)
|
|
||||||
for job in $(list_jobs); do
|
|
||||||
run_job "$job"
|
|
||||||
[[ "$CLEAN" -eq 1 ]] && cleanup_images
|
|
||||||
done
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
usage
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
echo -e "${GREEN}Done.${RESET}"
|
|
||||||
@@ -1,56 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# Simplified and de-github-ed version of
|
|
||||||
# https://github.com/ludeeus/action-shellcheck/blob/master/action.yaml
|
|
||||||
|
|
||||||
statuscode=0
|
|
||||||
|
|
||||||
declare -a filepaths
|
|
||||||
shebangregex="^#! */[^ ]*/(env *)?[abk]*sh"
|
|
||||||
set -f # temporarily disable globbing so that globs in inputs aren't expanded
|
|
||||||
|
|
||||||
while IFS= read -r -d '' file; do
|
|
||||||
filepaths+=("$file")
|
|
||||||
done < <(find . \
|
|
||||||
-type f \
|
|
||||||
'(' \
|
|
||||||
-name '*.bash' \
|
|
||||||
-o -name '.bashrc' \
|
|
||||||
-o -name 'bashrc' \
|
|
||||||
-o -name '.bash_aliases' \
|
|
||||||
-o -name '.bash_completion' \
|
|
||||||
-o -name '.bash_login' \
|
|
||||||
-o -name '.bash_logout' \
|
|
||||||
-o -name '.bash_profile' \
|
|
||||||
-o -name 'bash_profile' \
|
|
||||||
-o -name '*.ksh' \
|
|
||||||
-o -name 'suid_profile' \
|
|
||||||
-o -name '*.zsh' \
|
|
||||||
-o -name '.zlogin' \
|
|
||||||
-o -name 'zlogin' \
|
|
||||||
-o -name '.zlogout' \
|
|
||||||
-o -name 'zlogout' \
|
|
||||||
-o -name '.zprofile' \
|
|
||||||
-o -name 'zprofile' \
|
|
||||||
-o -name '.zsenv' \
|
|
||||||
-o -name 'zsenv' \
|
|
||||||
-o -name '.zshrc' \
|
|
||||||
-o -name 'zshrc' \
|
|
||||||
-o -name '*.sh' \
|
|
||||||
-o -path '*/.profile' \
|
|
||||||
-o -path '*/profile' \
|
|
||||||
-o -name '*.shlib' \
|
|
||||||
')' \
|
|
||||||
-print0)
|
|
||||||
|
|
||||||
while IFS= read -r -d '' file; do
|
|
||||||
head -n1 "$file" | grep -Eqs "$shebangregex" || continue
|
|
||||||
filepaths+=("$file")
|
|
||||||
done < <(find . \
|
|
||||||
-type f ! -name '*.*' -perm /111 \
|
|
||||||
-print0)
|
|
||||||
|
|
||||||
shellcheck "${filepaths[@]}" || statuscode=$?
|
|
||||||
|
|
||||||
set +f # re-enable globbing
|
|
||||||
|
|
||||||
exit "$statuscode"
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
Add a description of the new feature/bug fix. Reference any relevant bugs.
|
|
||||||
|
|
||||||
## Checklist
|
|
||||||
* [ ] Commits have `Signed-off-by:` with name/author being identical to the commit author
|
|
||||||
* [ ] Code modified for feature
|
|
||||||
* [ ] Test suite updated with functionality tests
|
|
||||||
* [ ] Test suite updated with negative tests
|
|
||||||
* [ ] Documentation updated
|
|
||||||
* [ ] The project pipelines timeout is [extended](https://docs.gitlab.com/ee/ci/pipelines/settings.html#set-a-limit-for-how-long-jobs-can-run) at least to 2 hours.
|
|
||||||
|
|
||||||
## Reviewer's checklist:
|
|
||||||
* [ ] Any issues marked for closing are addressed
|
|
||||||
* [ ] There is a test suite reasonably covering new functionality or modifications
|
|
||||||
* [ ] Function naming, parameters, return values, types, etc., are consistent and according to [CONTRIBUTING.md](https://gitlab.com/libssh/libssh-mirror/-/blob/master/CONTRIBUTING.md)
|
|
||||||
* [ ] This feature/change has adequate documentation added
|
|
||||||
* [ ] No obvious mistakes in the code
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
#
|
|
||||||
# GitLeaks Repo Specific Configuration
|
|
||||||
#
|
|
||||||
# This allowlist is used to help Red Hat ignore false positives during its code
|
|
||||||
# scans.
|
|
||||||
|
|
||||||
[allowlist]
|
|
||||||
paths = [
|
|
||||||
'''tests/*''',
|
|
||||||
]
|
|
||||||
148
CHANGELOG
@@ -1,127 +1,6 @@
|
|||||||
CHANGELOG
|
CHANGELOG
|
||||||
=========
|
=========
|
||||||
|
|
||||||
version 0.11.0 (released 2024-07-31)
|
|
||||||
* Deprecations and Removals:
|
|
||||||
* Dropped support for DSA
|
|
||||||
* Deprecated Blowfish cipher (will be removed in next release)
|
|
||||||
* Deprecated SSH_BIND_OPTIONS_{RSA,ECDSA}KEY in favor of generic HOSTKEY
|
|
||||||
* Removed the usage of deprecated OpenSSL APIs (Note: Minimum supported
|
|
||||||
OpenSSL version is 1.1.1)
|
|
||||||
* Disabled preauth compression (zlib) by default
|
|
||||||
* Support for pkcs#11 engines are deprecated, pkcs11-provider is used instead
|
|
||||||
* Deprecation of old async SFTP API
|
|
||||||
* libgcrypt cryptographic backend is deprecated
|
|
||||||
* Deprecation of knownhosts hashing
|
|
||||||
* SFTP Improvements:
|
|
||||||
* Added support for async SFTP IO
|
|
||||||
* Added support for sftp_limits() and applied capping to SFTP read/write
|
|
||||||
operations accordingly
|
|
||||||
* Added sftp_home_directory() API support for sftp extension "home-directory"
|
|
||||||
* Added sftp_lsetstat() API for lsetstat extensions
|
|
||||||
* Added sftp_expand_path() to canonicalize path using expand-path@openssh.com
|
|
||||||
extension
|
|
||||||
* Implemented stat and realpath in sftpserver
|
|
||||||
* Added sftp_readlink() API to support hardlink@openssh.com
|
|
||||||
* New extensible callback based SFTP server
|
|
||||||
* Introduced the posix-rename@openssh.com extension
|
|
||||||
* New functions and features:
|
|
||||||
* Added support for PKCS #11 provider for OpenSSL 3.0
|
|
||||||
* Added testing for GSSAPI Authentication
|
|
||||||
* Implemented proxy jump using libssh
|
|
||||||
* Recategorized loglevels to show fatal errors and alignment with OpenSSH
|
|
||||||
log levels
|
|
||||||
* Added ssh_channel_request_pty_size_modes() API to set terminal modes for
|
|
||||||
PTYs
|
|
||||||
* Added function to check username syntax
|
|
||||||
* Added support to check all keys in authorized_keys instead of one in
|
|
||||||
example server implementation
|
|
||||||
* Handled hostkey similar to OpenSSH
|
|
||||||
* Added ssh_session_socket_close() API in order to not close socket passed
|
|
||||||
through options on error conditions
|
|
||||||
* Added option SSH_BIND_OPTIONS_IMPORT_KEY_STR to read user-supplied key
|
|
||||||
string in ssh_bind_options_set()
|
|
||||||
* Improved log handling around ssh_set_callbacks
|
|
||||||
* Added ssh_set_error_invalid in ssh_options_set()
|
|
||||||
* Prevented signature blob to start with 1 bit in libgcrypt
|
|
||||||
* Added support to unbreak key comparison of Ed25519 keys imported from PEM
|
|
||||||
or OpenSSH container
|
|
||||||
* Added support to calculate missing CRT parameters when building RSA key
|
|
||||||
* Added ssh_pki_export_privkey_base64_format() and
|
|
||||||
ssh_pki_export_privkey_file_format() to support exporting keys in different
|
|
||||||
formats (PEM, OpenSSH)
|
|
||||||
* Added support to compare certificates and handle automatic certificate
|
|
||||||
authentication
|
|
||||||
* Added support to make compile-commands generation conditional
|
|
||||||
* Built fuzzers for normal testing
|
|
||||||
* Avoided passing other events to callbacks when called recursively
|
|
||||||
* Added control master and path options
|
|
||||||
* Refactored channel_rcv_data, check for errors and report more useful errors
|
|
||||||
* Added support to connect to other host addresses than just the first one
|
|
||||||
* Terminated the server properly when the MaxAuthTries is reached
|
|
||||||
* Added support for no-more-sessions@openssh.com request in both client and
|
|
||||||
server
|
|
||||||
* Added callback to support forwarded-tcpip requests
|
|
||||||
* Bumped minimal CMake version to 3.12
|
|
||||||
* Added support for MBedTLS 3.6.x
|
|
||||||
* Added support for +,-,^ modifiers in front of algorithm lists in options
|
|
||||||
* Added callbacks for channel open response, and channel request response
|
|
||||||
* Replaced chroot() from chroot_wrapper internal library with chroot()
|
|
||||||
from priv_wrapper package
|
|
||||||
* Added a placeholder for non-expanded identities
|
|
||||||
* Improved handling of channel transfer window sizes
|
|
||||||
|
|
||||||
version 0.10.6 (released 2023-12-18)
|
|
||||||
* Fix CVE-2023-6004: Command injection using proxycommand
|
|
||||||
* Fix CVE-2023-48795: Potential downgrade attack using strict kex
|
|
||||||
* Fix CVE-2023-6918: Missing checks for return values of MD functions
|
|
||||||
* Fix ssh_send_issue_banner() for CMD(PowerShell)
|
|
||||||
* Avoid passing other events to callbacks when poll is called recursively (#202)
|
|
||||||
* Allow @ in usernames when parsing from URI composes
|
|
||||||
|
|
||||||
version 0.10.5 (released 2023-05-04)
|
|
||||||
* Fix CVE-2023-1667: a NULL dereference during rekeying with algorithm guessing
|
|
||||||
* Fix CVE-2023-2283: a possible authorization bypass in
|
|
||||||
pki_verify_data_signature under low-memory conditions.
|
|
||||||
* Fix several memory leaks in GSSAPI handling code
|
|
||||||
* Escape braces in ProxyCommand created from ProxyJump options for zsh
|
|
||||||
compatibility.
|
|
||||||
* Fix pkg-config path relocation for MinGW
|
|
||||||
* Improve doxygen documentation
|
|
||||||
* Fix build with cygwin due to the glob support
|
|
||||||
* Do not enqueue outgoing packets after sending SSH2_MSG_NEWKEYS
|
|
||||||
* Add support for SSH_SUPPRESS_DEPRECATED
|
|
||||||
* Avoid functions declarations without prototype to build with clang 15
|
|
||||||
* Fix spelling issues
|
|
||||||
* Avoid expanding KnownHosts, ProxyCommands and IdentityFiles repetitively
|
|
||||||
* Add support sk-* keys through configuration
|
|
||||||
* Improve checking for Argp library
|
|
||||||
* Log information about received extensions
|
|
||||||
* Correctly handle rekey with delayed compression
|
|
||||||
* Move the EC keys handling to OpenSSL 3.0 API
|
|
||||||
* Record peer disconnect message
|
|
||||||
* Avoid deadlock when write buffering occurs and we call poll recursively to
|
|
||||||
flush the output buffer
|
|
||||||
* Disable preauthentication compression by default
|
|
||||||
* Add CentOS 8 Stream / OpenSSL 1.1.1 to CI
|
|
||||||
* Add accidentally removed default compile flags
|
|
||||||
* Solve incorrect parsing of ProxyCommand option
|
|
||||||
|
|
||||||
version 0.10.4 (released 2022-09-07)
|
|
||||||
* Fixed issues with KDF on big endian
|
|
||||||
|
|
||||||
version 0.10.3 (released 2022-09-05)
|
|
||||||
* Fixed possible infinite loop in known hosts checking
|
|
||||||
|
|
||||||
version 0.10.2 (released 2022-09-02)
|
|
||||||
* Fixed tilde expansion when handling include directives
|
|
||||||
* Fixed building the shared torture library
|
|
||||||
* Made rekey test more robust (fixes running on i586 build systems e.g koji)
|
|
||||||
|
|
||||||
version 0.10.1 (released 2022-08-30)
|
|
||||||
* Fixed proxycommand support
|
|
||||||
* Fixed musl libc support
|
|
||||||
|
|
||||||
version 0.10.0 (released 2022-08-26)
|
version 0.10.0 (released 2022-08-26)
|
||||||
* Added support for OpenSSL 3.0
|
* Added support for OpenSSL 3.0
|
||||||
* Added support for mbedTLS 3
|
* Added support for mbedTLS 3
|
||||||
@@ -146,6 +25,9 @@ version 0.10.0 (released 2022-08-26)
|
|||||||
* Deprecated old pubkey, privatekey API
|
* Deprecated old pubkey, privatekey API
|
||||||
* Avoided some needless large stack buffers to minimize memory footprint
|
* Avoided some needless large stack buffers to minimize memory footprint
|
||||||
* Removed support for OpenSSL < 1.0.1
|
* Removed support for OpenSSL < 1.0.1
|
||||||
|
* Fixed parsing username@host in login name
|
||||||
|
* Free global init mutex in the destructor on Windows
|
||||||
|
* Fixed PEM parsing in mbedtls to support both legacy and new PKCS8 formats
|
||||||
|
|
||||||
version 0.9.6 (released 2021-08-26)
|
version 0.9.6 (released 2021-08-26)
|
||||||
* CVE-2021-3634: Fix possible heap-buffer overflow when rekeying with
|
* CVE-2021-3634: Fix possible heap-buffer overflow when rekeying with
|
||||||
@@ -178,7 +60,7 @@ version 0.9.4 (released 2020-04-09)
|
|||||||
* Fixed CVE-2020-1730 - Possible DoS in client and server when handling
|
* Fixed CVE-2020-1730 - Possible DoS in client and server when handling
|
||||||
AES-CTR keys with OpenSSL
|
AES-CTR keys with OpenSSL
|
||||||
* Added diffie-hellman-group14-sha256
|
* Added diffie-hellman-group14-sha256
|
||||||
* Fixed several possible memory leaks
|
* Fixed serveral possible memory leaks
|
||||||
|
|
||||||
version 0.9.3 (released 2019-12-10)
|
version 0.9.3 (released 2019-12-10)
|
||||||
* Fixed CVE-2019-14889 - SCP: Unsanitized location leads to command execution
|
* Fixed CVE-2019-14889 - SCP: Unsanitized location leads to command execution
|
||||||
@@ -329,7 +211,7 @@ version 0.6.1 (released 2014-02-08)
|
|||||||
* Fixed DSA signature extraction.
|
* Fixed DSA signature extraction.
|
||||||
* Fixed some memory leaks.
|
* Fixed some memory leaks.
|
||||||
* Fixed read of non-connected socket.
|
* Fixed read of non-connected socket.
|
||||||
* Fixed thread detection.
|
* Fixed thread dectection.
|
||||||
|
|
||||||
version 0.6.0 (released 2014-01-08)
|
version 0.6.0 (released 2014-01-08)
|
||||||
* Added new publicy key API.
|
* Added new publicy key API.
|
||||||
@@ -354,7 +236,7 @@ version 0.6.0 (released 2014-01-08)
|
|||||||
version 0.5.5 (released 2013-07-26)
|
version 0.5.5 (released 2013-07-26)
|
||||||
* BUG 103: Fix ProxyCommand parsing.
|
* BUG 103: Fix ProxyCommand parsing.
|
||||||
* Fix setting -D_FORTIFY_SOURCE=2.
|
* Fix setting -D_FORTIFY_SOURCE=2.
|
||||||
* Fix pollset error return if empty.
|
* Fix pollset error return if emtpy.
|
||||||
* Fix NULL pointer checks in channel functions.
|
* Fix NULL pointer checks in channel functions.
|
||||||
* Several bugfixes.
|
* Several bugfixes.
|
||||||
|
|
||||||
@@ -370,7 +252,7 @@ version 0.5.3 (released 2012-11-20)
|
|||||||
* BUG #84 - Fix bug in sftp_mkdir not returning on error.
|
* BUG #84 - Fix bug in sftp_mkdir not returning on error.
|
||||||
* BUG #85 - Fixed a possible channel infinite loop if the connection dropped.
|
* BUG #85 - Fixed a possible channel infinite loop if the connection dropped.
|
||||||
* BUG #88 - Added missing channel request_state and set it to accepted.
|
* BUG #88 - Added missing channel request_state and set it to accepted.
|
||||||
* BUG #89 - Reset error state to no error on successful SSHv1 authentication.
|
* BUG #89 - Reset error state to no error on successful SSHv1 authentiction.
|
||||||
* Fixed a possible use after free in ssh_free().
|
* Fixed a possible use after free in ssh_free().
|
||||||
* Fixed multiple possible NULL pointer dereferences.
|
* Fixed multiple possible NULL pointer dereferences.
|
||||||
* Fixed multiple memory leaks in error paths.
|
* Fixed multiple memory leaks in error paths.
|
||||||
@@ -431,7 +313,7 @@ version 0.4.7 (released 2010-12-28)
|
|||||||
* Fixed a possible memory leak in ssh_get_user_home().
|
* Fixed a possible memory leak in ssh_get_user_home().
|
||||||
* Fixed a memory leak in sftp_xstat.
|
* Fixed a memory leak in sftp_xstat.
|
||||||
* Fixed uninitialized fd->revents member.
|
* Fixed uninitialized fd->revents member.
|
||||||
* Fixed timeout value in ssh_channel_accept().
|
* Fixed timout value in ssh_channel_accept().
|
||||||
* Fixed length checks in ssh_analyze_banner().
|
* Fixed length checks in ssh_analyze_banner().
|
||||||
* Fixed a possible data overread and crash bug.
|
* Fixed a possible data overread and crash bug.
|
||||||
* Fixed setting max_fd which breaks ssh_select().
|
* Fixed setting max_fd which breaks ssh_select().
|
||||||
@@ -454,7 +336,7 @@ version 0.4.5 (released 2010-07-13)
|
|||||||
* Added option to bind a client to an ip address.
|
* Added option to bind a client to an ip address.
|
||||||
* Fixed the ssh socket polling function.
|
* Fixed the ssh socket polling function.
|
||||||
* Fixed Windows related bugs in bsd_poll().
|
* Fixed Windows related bugs in bsd_poll().
|
||||||
* Fixed several build warnings.
|
* Fixed serveral build warnings.
|
||||||
|
|
||||||
version 0.4.4 (released 2010-06-01)
|
version 0.4.4 (released 2010-06-01)
|
||||||
* Fixed a bug in the expand function for escape sequences.
|
* Fixed a bug in the expand function for escape sequences.
|
||||||
@@ -473,17 +355,17 @@ version 0.4.3 (released 2010-05-18)
|
|||||||
* Fixed sftp_chown.
|
* Fixed sftp_chown.
|
||||||
* Fixed sftp_rename on protocol version 3.
|
* Fixed sftp_rename on protocol version 3.
|
||||||
* Fixed a blocking bug in channel_poll.
|
* Fixed a blocking bug in channel_poll.
|
||||||
* Fixed config parsing which has overwritten user specified values.
|
* Fixed config parsing wich has overwritten user specified values.
|
||||||
* Fixed hashed [host]:port format in knownhosts
|
* Fixed hashed [host]:port format in knownhosts
|
||||||
* Fixed Windows build.
|
* Fixed Windows build.
|
||||||
* Fixed doublefree happening after a negotiation error.
|
* Fixed doublefree happening after a negociation error.
|
||||||
* Fixed aes*-ctr with <= OpenSSL 0.9.7b.
|
* Fixed aes*-ctr with <= OpenSSL 0.9.7b.
|
||||||
* Fixed some documentation.
|
* Fixed some documentation.
|
||||||
* Fixed exec example which has broken read usage.
|
* Fixed exec example which has broken read usage.
|
||||||
* Fixed broken algorithm choice for server.
|
* Fixed broken algorithm choice for server.
|
||||||
* Fixed a typo that we don't export all symbols.
|
* Fixed a typo that we don't export all symbols.
|
||||||
* Removed the unneeded dependency to doxygen.
|
* Removed the unneeded dependency to doxygen.
|
||||||
* Build examples only on the Linux platform.
|
* Build examples only on the Linux plattform.
|
||||||
|
|
||||||
version 0.4.2 (released 2010-03-15)
|
version 0.4.2 (released 2010-03-15)
|
||||||
* Added owner and group information in sftp attributes.
|
* Added owner and group information in sftp attributes.
|
||||||
@@ -505,7 +387,7 @@ version 0.4.1 (released 2010-02-13)
|
|||||||
* Added an example for exec.
|
* Added an example for exec.
|
||||||
* Added private key type detection feature in privatekey_from_file().
|
* Added private key type detection feature in privatekey_from_file().
|
||||||
* Fixed zlib compression fallback.
|
* Fixed zlib compression fallback.
|
||||||
* Fixed kex bug that client preference should be priority
|
* Fixed kex bug that client preference should be prioritary
|
||||||
* Fixed known_hosts file set by the user.
|
* Fixed known_hosts file set by the user.
|
||||||
* Fixed a memleak in channel_accept().
|
* Fixed a memleak in channel_accept().
|
||||||
* Fixed underflow when leave_function() are unbalanced
|
* Fixed underflow when leave_function() are unbalanced
|
||||||
@@ -643,7 +525,7 @@ version 0.11-dev
|
|||||||
* Keyboard-interactive authentication working.
|
* Keyboard-interactive authentication working.
|
||||||
|
|
||||||
version 0.1 (released 2004-03-05)
|
version 0.1 (released 2004-03-05)
|
||||||
* Beginning of sftp subsystem implementation.
|
* Begining of sftp subsystem implementation.
|
||||||
* Some cleanup into channels implementation
|
* Some cleanup into channels implementation
|
||||||
* Now every channel functions is called by its CHANNEL handler.
|
* Now every channel functions is called by its CHANNEL handler.
|
||||||
* Added channel_poll() and channel_read().
|
* Added channel_poll() and channel_read().
|
||||||
@@ -664,7 +546,7 @@ version 0.0.4 (released 2003-10-10)
|
|||||||
* Added a wrapper.c file. The goal is to provide a similar API to every
|
* Added a wrapper.c file. The goal is to provide a similar API to every
|
||||||
cryptographic functions. bignums and sha/md5 are wrapped now.
|
cryptographic functions. bignums and sha/md5 are wrapped now.
|
||||||
* More work than it first looks.
|
* More work than it first looks.
|
||||||
* Support for other crypto libs planned (lighter libs)
|
* Support for other crypto libs planed (lighter libs)
|
||||||
* Fixed stupid select() bug.
|
* Fixed stupid select() bug.
|
||||||
* Libssh now compiles and links with openssl 0.9.6
|
* Libssh now compiles and links with openssl 0.9.6
|
||||||
* RSA pubkey authentication code now works !
|
* RSA pubkey authentication code now works !
|
||||||
|
|||||||
108
CMakeLists.txt
@@ -1,4 +1,5 @@
|
|||||||
cmake_minimum_required(VERSION 3.14.0)
|
cmake_minimum_required(VERSION 3.3.0)
|
||||||
|
cmake_policy(SET CMP0048 NEW)
|
||||||
|
|
||||||
# Specify search path for CMake modules to be loaded by include()
|
# Specify search path for CMake modules to be loaded by include()
|
||||||
# and find_package()
|
# and find_package()
|
||||||
@@ -9,7 +10,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules")
|
|||||||
include(DefineCMakeDefaults)
|
include(DefineCMakeDefaults)
|
||||||
include(DefineCompilerFlags)
|
include(DefineCompilerFlags)
|
||||||
|
|
||||||
project(libssh VERSION 0.11.00 LANGUAGES C)
|
project(libssh VERSION 0.10.0 LANGUAGES C)
|
||||||
|
|
||||||
# global needed variable
|
# global needed variable
|
||||||
set(APPLICATION_NAME ${PROJECT_NAME})
|
set(APPLICATION_NAME ${PROJECT_NAME})
|
||||||
@@ -21,7 +22,7 @@ set(APPLICATION_NAME ${PROJECT_NAME})
|
|||||||
# Increment AGE. Set REVISION to 0
|
# Increment AGE. Set REVISION to 0
|
||||||
# If the source code was changed, but there were no interface changes:
|
# If the source code was changed, but there were no interface changes:
|
||||||
# Increment REVISION.
|
# Increment REVISION.
|
||||||
set(LIBRARY_VERSION "4.10.0")
|
set(LIBRARY_VERSION "4.9.0")
|
||||||
set(LIBRARY_SOVERSION "4")
|
set(LIBRARY_SOVERSION "4")
|
||||||
|
|
||||||
# where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is checked
|
# where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is checked
|
||||||
@@ -41,8 +42,6 @@ macro_ensure_out_of_source_build("${PROJECT_NAME} requires an out of source buil
|
|||||||
# Copy library files to a lib sub-directory
|
# Copy library files to a lib sub-directory
|
||||||
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib")
|
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib")
|
||||||
|
|
||||||
set(LIBSSSH_PC_REQUIRES_PRIVATE "")
|
|
||||||
|
|
||||||
# search for libraries
|
# search for libraries
|
||||||
if (WITH_ZLIB)
|
if (WITH_ZLIB)
|
||||||
find_package(ZLIB REQUIRED)
|
find_package(ZLIB REQUIRED)
|
||||||
@@ -50,12 +49,32 @@ endif (WITH_ZLIB)
|
|||||||
|
|
||||||
if (WITH_GCRYPT)
|
if (WITH_GCRYPT)
|
||||||
find_package(GCrypt 1.5.0 REQUIRED)
|
find_package(GCrypt 1.5.0 REQUIRED)
|
||||||
message(WARNING "libgcrypt cryptographic backend is deprecated and will be removed in future releases.")
|
if (NOT GCRYPT_FOUND)
|
||||||
|
message(FATAL_ERROR "Could not find GCrypt")
|
||||||
|
endif (NOT GCRYPT_FOUND)
|
||||||
elseif(WITH_MBEDTLS)
|
elseif(WITH_MBEDTLS)
|
||||||
find_package(MbedTLS REQUIRED)
|
find_package(MbedTLS REQUIRED)
|
||||||
else()
|
if (NOT MBEDTLS_FOUND)
|
||||||
find_package(OpenSSL 1.1.1 REQUIRED)
|
message(FATAL_ERROR "Could not find mbedTLS")
|
||||||
endif()
|
endif (NOT MBEDTLS_FOUND)
|
||||||
|
else (WITH_GCRYPT)
|
||||||
|
find_package(OpenSSL 1.0.1)
|
||||||
|
if (OPENSSL_FOUND)
|
||||||
|
# On CMake < 3.16, OPENSSL_CRYPTO_LIBRARIES is usually a synonym for OPENSSL_CRYPTO_LIBRARY, but is not defined
|
||||||
|
# when building on Windows outside of Cygwin. We provide the synonym here, if FindOpenSSL didn't define it already.
|
||||||
|
if (NOT DEFINED OPENSSL_CRYPTO_LIBRARIES)
|
||||||
|
set(OPENSSL_CRYPTO_LIBRARIES ${OPENSSL_CRYPTO_LIBRARY})
|
||||||
|
endif (NOT DEFINED OPENSSL_CRYPTO_LIBRARIES)
|
||||||
|
else (OPENSSL_FOUND)
|
||||||
|
find_package(GCrypt)
|
||||||
|
if (NOT GCRYPT_FOUND)
|
||||||
|
find_package(MbedTLS)
|
||||||
|
if (NOT MBEDTLS_FOUND)
|
||||||
|
message(FATAL_ERROR "Could not find OpenSSL, GCrypt or mbedTLS")
|
||||||
|
endif (NOT MBEDTLS_FOUND)
|
||||||
|
endif (NOT GCRYPT_FOUND)
|
||||||
|
endif (OPENSSL_FOUND)
|
||||||
|
endif(WITH_GCRYPT)
|
||||||
|
|
||||||
if (UNIT_TESTING)
|
if (UNIT_TESTING)
|
||||||
find_package(CMocka REQUIRED)
|
find_package(CMocka REQUIRED)
|
||||||
@@ -68,9 +87,15 @@ find_package(Threads)
|
|||||||
|
|
||||||
if (WITH_GSSAPI)
|
if (WITH_GSSAPI)
|
||||||
find_package(GSSAPI)
|
find_package(GSSAPI)
|
||||||
list(APPEND LIBSSH_PC_REQUIRES_PRIVATE ${GSSAPI_PC_REQUIRES})
|
|
||||||
endif (WITH_GSSAPI)
|
endif (WITH_GSSAPI)
|
||||||
|
|
||||||
|
if (WITH_PKCS11_URI)
|
||||||
|
find_package(softhsm)
|
||||||
|
if (NOT SOFTHSM_FOUND)
|
||||||
|
message(SEND_ERROR "Could not find softhsm module!")
|
||||||
|
endif (NOT SOFTHSM_FOUND)
|
||||||
|
endif (WITH_PKCS11_URI)
|
||||||
|
|
||||||
if (WITH_NACL)
|
if (WITH_NACL)
|
||||||
find_package(NaCl)
|
find_package(NaCl)
|
||||||
if (NOT NACL_FOUND)
|
if (NOT NACL_FOUND)
|
||||||
@@ -78,19 +103,13 @@ if (WITH_NACL)
|
|||||||
endif (NOT NACL_FOUND)
|
endif (NOT NACL_FOUND)
|
||||||
endif (WITH_NACL)
|
endif (WITH_NACL)
|
||||||
|
|
||||||
if (WITH_FIDO2)
|
if (BSD OR SOLARIS OR OSX OR CYGWIN)
|
||||||
find_package(libfido2)
|
find_package(Argp)
|
||||||
if (LIBFIDO2_FOUND)
|
endif (BSD OR SOLARIS OR OSX OR CYGWIN)
|
||||||
set(HAVE_LIBFIDO2 ON)
|
|
||||||
else (LIBFIDO2_FOUND)
|
|
||||||
set(HAVE_LIBFIDO2 OFF)
|
|
||||||
message(WARNING "libfido2 was not found. Internal support for interacting with FIDO2/U2F devices using the USB HID protocol will not be available.")
|
|
||||||
endif (LIBFIDO2_FOUND)
|
|
||||||
endif (WITH_FIDO2)
|
|
||||||
|
|
||||||
# Disable symbol versioning in non UNIX platforms
|
# Disable symbol versioning in non UNIX platforms
|
||||||
if (UNIX)
|
if (UNIX)
|
||||||
find_package(ABIMap 0.4.0)
|
find_package(ABIMap 0.3.1)
|
||||||
else (UNIX)
|
else (UNIX)
|
||||||
set(WITH_SYMBOL_VERSIONING OFF)
|
set(WITH_SYMBOL_VERSIONING OFF)
|
||||||
endif (UNIX)
|
endif (UNIX)
|
||||||
@@ -99,10 +118,6 @@ endif (UNIX)
|
|||||||
include(ConfigureChecks.cmake)
|
include(ConfigureChecks.cmake)
|
||||||
configure_file(config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config.h)
|
configure_file(config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config.h)
|
||||||
|
|
||||||
if (NOT HAVE_ARGP_PARSE)
|
|
||||||
find_package(Argp)
|
|
||||||
endif (NOT HAVE_ARGP_PARSE)
|
|
||||||
|
|
||||||
# check subdirectories
|
# check subdirectories
|
||||||
add_subdirectory(doc)
|
add_subdirectory(doc)
|
||||||
add_subdirectory(include)
|
add_subdirectory(include)
|
||||||
@@ -110,7 +125,7 @@ add_subdirectory(src)
|
|||||||
|
|
||||||
# pkg-config file
|
# pkg-config file
|
||||||
if (UNIX OR MINGW)
|
if (UNIX OR MINGW)
|
||||||
configure_file(libssh.pc.cmake ${CMAKE_CURRENT_BINARY_DIR}/libssh.pc @ONLY)
|
configure_file(libssh.pc.cmake ${CMAKE_CURRENT_BINARY_DIR}/libssh.pc)
|
||||||
install(
|
install(
|
||||||
FILES
|
FILES
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/libssh.pc
|
${CMAKE_CURRENT_BINARY_DIR}/libssh.pc
|
||||||
@@ -181,10 +196,6 @@ if (WITH_SYMBOL_VERSIONING AND ABIMAP_FOUND)
|
|||||||
set(ALLOW_ABI_BREAK "BREAK_ABI")
|
set(ALLOW_ABI_BREAK "BREAK_ABI")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (WITH_FINAL)
|
|
||||||
set(FINAL "FINAL")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Target we can depend on in 'make dist'
|
# Target we can depend on in 'make dist'
|
||||||
set(_SYMBOL_TARGET "${PROJECT_NAME}.map")
|
set(_SYMBOL_TARGET "${PROJECT_NAME}.map")
|
||||||
|
|
||||||
@@ -197,7 +208,7 @@ if (WITH_SYMBOL_VERSIONING AND ABIMAP_FOUND)
|
|||||||
RELEASE_NAME_VERSION ${PROJECT_NAME}_${LIBRARY_VERSION}
|
RELEASE_NAME_VERSION ${PROJECT_NAME}_${LIBRARY_VERSION}
|
||||||
CURRENT_MAP ${MAP_PATH}
|
CURRENT_MAP ${MAP_PATH}
|
||||||
COPY_TO ${MAP_PATH}
|
COPY_TO ${MAP_PATH}
|
||||||
${FINAL}
|
FINAL
|
||||||
${ALLOW_ABI_BREAK})
|
${ALLOW_ABI_BREAK})
|
||||||
|
|
||||||
# Write the current version to the source
|
# Write the current version to the source
|
||||||
@@ -205,36 +216,16 @@ if (WITH_SYMBOL_VERSIONING AND ABIMAP_FOUND)
|
|||||||
endif(UPDATE_ABI)
|
endif(UPDATE_ABI)
|
||||||
endif (WITH_SYMBOL_VERSIONING AND ABIMAP_FOUND)
|
endif (WITH_SYMBOL_VERSIONING AND ABIMAP_FOUND)
|
||||||
|
|
||||||
# Coverage
|
|
||||||
if (WITH_COVERAGE)
|
|
||||||
ENABLE_LANGUAGE(CXX)
|
|
||||||
include(CodeCoverage)
|
|
||||||
setup_target_for_coverage_lcov(
|
|
||||||
NAME "coverage"
|
|
||||||
EXECUTABLE make test
|
|
||||||
DEPENDENCIES ssh tests)
|
|
||||||
set(GCOVR_ADDITIONAL_ARGS --xml-pretty --exclude-unreachable-branches --print-summary --gcov-ignore-parse-errors)
|
|
||||||
setup_target_for_coverage_gcovr_xml(
|
|
||||||
NAME "coverage_xml"
|
|
||||||
EXECUTABLE make test
|
|
||||||
DEPENDENCIES ssh tests)
|
|
||||||
endif (WITH_COVERAGE)
|
|
||||||
|
|
||||||
add_custom_target(dist COMMAND ${CMAKE_MAKE_PROGRAM} package_source DEPENDS ${_SYMBOL_TARGET} VERBATIM)
|
add_custom_target(dist COMMAND ${CMAKE_MAKE_PROGRAM} package_source DEPENDS ${_SYMBOL_TARGET} VERBATIM)
|
||||||
|
|
||||||
get_directory_property(hasParent PARENT_DIRECTORY)
|
# Link compile database for clangd
|
||||||
if(NOT(hasParent))
|
|
||||||
# Link compile database for clangd if we are the master project
|
|
||||||
execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink
|
execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink
|
||||||
"${CMAKE_BINARY_DIR}/compile_commands.json"
|
"${CMAKE_BINARY_DIR}/compile_commands.json"
|
||||||
"${CMAKE_SOURCE_DIR}/compile_commands.json")
|
"${CMAKE_SOURCE_DIR}/compile_commands.json")
|
||||||
endif()
|
|
||||||
|
|
||||||
message(STATUS "********************************************")
|
message(STATUS "********************************************")
|
||||||
message(STATUS "********** ${PROJECT_NAME} build options : **********")
|
message(STATUS "********** ${PROJECT_NAME} build options : **********")
|
||||||
|
|
||||||
message(STATUS "Build type: ${CMAKE_BUILD_TYPE}")
|
|
||||||
message(STATUS "Coverage: ${WITH_COVERAGE}")
|
|
||||||
message(STATUS "zlib support: ${WITH_ZLIB}")
|
message(STATUS "zlib support: ${WITH_ZLIB}")
|
||||||
message(STATUS "libgcrypt support: ${WITH_GCRYPT}")
|
message(STATUS "libgcrypt support: ${WITH_GCRYPT}")
|
||||||
message(STATUS "libmbedTLS support: ${WITH_MBEDTLS}")
|
message(STATUS "libmbedTLS support: ${WITH_MBEDTLS}")
|
||||||
@@ -244,18 +235,13 @@ message(STATUS "Server support : ${WITH_SERVER}")
|
|||||||
message(STATUS "GSSAPI support : ${WITH_GSSAPI}")
|
message(STATUS "GSSAPI support : ${WITH_GSSAPI}")
|
||||||
message(STATUS "GEX support : ${WITH_GEX}")
|
message(STATUS "GEX support : ${WITH_GEX}")
|
||||||
message(STATUS "Support insecure none cipher and MAC : ${WITH_INSECURE_NONE}")
|
message(STATUS "Support insecure none cipher and MAC : ${WITH_INSECURE_NONE}")
|
||||||
message(STATUS "Support exec : ${WITH_EXEC}")
|
|
||||||
message(STATUS "Pcap debugging support : ${WITH_PCAP}")
|
message(STATUS "Pcap debugging support : ${WITH_PCAP}")
|
||||||
message(STATUS "Build shared library: ${BUILD_SHARED_LIBS}")
|
message(STATUS "Build shared library: ${BUILD_SHARED_LIBS}")
|
||||||
message(STATUS "Unit testing: ${UNIT_TESTING}")
|
message(STATUS "Unit testing: ${UNIT_TESTING}")
|
||||||
message(STATUS "Client code testing: ${CLIENT_TESTING}")
|
message(STATUS "Client code testing: ${CLIENT_TESTING}")
|
||||||
message(STATUS "Blowfish cipher support: ${HAVE_BLOWFISH}")
|
message(STATUS "Blowfish cipher support: ${WITH_BLOWFISH_CIPHER}")
|
||||||
message(STATUS "PKCS #11 URI support: ${WITH_PKCS11_URI}")
|
message(STATUS "PKCS #11 URI support: ${WITH_PKCS11_URI}")
|
||||||
message(STATUS "With PKCS #11 provider support: ${WITH_PKCS11_PROVIDER}")
|
message(STATUS "DSA support: ${WITH_DSA}")
|
||||||
message(STATUS "With FIDO2/U2F support: ${WITH_FIDO2}")
|
|
||||||
if (WITH_FIDO2)
|
|
||||||
message(STATUS "With libfido2 (internal usb-hid support): ${HAVE_LIBFIDO2}")
|
|
||||||
endif (WITH_FIDO2)
|
|
||||||
set(_SERVER_TESTING OFF)
|
set(_SERVER_TESTING OFF)
|
||||||
if (WITH_SERVER)
|
if (WITH_SERVER)
|
||||||
set(_SERVER_TESTING ${SERVER_TESTING})
|
set(_SERVER_TESTING ${SERVER_TESTING})
|
||||||
@@ -270,14 +256,8 @@ message(STATUS "Benchmarks: ${WITH_BENCHMARKS}")
|
|||||||
message(STATUS "Symbol versioning: ${WITH_SYMBOL_VERSIONING}")
|
message(STATUS "Symbol versioning: ${WITH_SYMBOL_VERSIONING}")
|
||||||
message(STATUS "Allow ABI break: ${WITH_ABI_BREAK}")
|
message(STATUS "Allow ABI break: ${WITH_ABI_BREAK}")
|
||||||
message(STATUS "Release is final: ${WITH_FINAL}")
|
message(STATUS "Release is final: ${WITH_FINAL}")
|
||||||
if (WITH_HERMETIC_USR)
|
|
||||||
message(STATUS "User global client config: ${USR_GLOBAL_CLIENT_CONFIG}")
|
|
||||||
endif ()
|
|
||||||
message(STATUS "Global client config: ${GLOBAL_CLIENT_CONFIG}")
|
message(STATUS "Global client config: ${GLOBAL_CLIENT_CONFIG}")
|
||||||
if (WITH_SERVER)
|
if (WITH_SERVER)
|
||||||
if (WITH_HERMETIC_USR)
|
|
||||||
message(STATUS "User global bind config: ${USR_GLOBAL_BIND_CONFIG}")
|
|
||||||
endif ()
|
|
||||||
message(STATUS "Global bind config: ${GLOBAL_BIND_CONFIG}")
|
message(STATUS "Global bind config: ${GLOBAL_BIND_CONFIG}")
|
||||||
endif()
|
endif()
|
||||||
message(STATUS "********************************************")
|
message(STATUS "********************************************")
|
||||||
|
|||||||
118
CONTRIBUTING.md
@@ -117,52 +117,6 @@ libssh Developer's Certificate of Origin for each patch, or inside each
|
|||||||
patch. Just the sign-off message is all that is required once we've
|
patch. Just the sign-off message is all that is required once we've
|
||||||
received the initial email.
|
received the initial email.
|
||||||
|
|
||||||
## Continuous Integration
|
|
||||||
|
|
||||||
Contributing patches through Merge Request workflow on Gitlab allows us to run
|
|
||||||
various checks on various configuration as part of Gitlab CI. Unfortunately,
|
|
||||||
some pipelines are slower (as they involve building dependencies) so the default
|
|
||||||
timeout of 1 hour needs to be extended at least to 2 hours. This can be done in
|
|
||||||
project settings of your libssh fork:
|
|
||||||
|
|
||||||
https://docs.gitlab.com/ee/ci/pipelines/settings.html#set-a-limit-for-how-long-jobs-can-run
|
|
||||||
|
|
||||||
Otherwise you will encounter errors like these, usually on visualstudio builds:
|
|
||||||
|
|
||||||
```
|
|
||||||
ERROR: Job failed: execution took longer than 1h0m0s seconds
|
|
||||||
The script exceeded the maximum execution time set for the job
|
|
||||||
```
|
|
||||||
|
|
||||||
Note, that the built dependencies are cached so after successful build in your
|
|
||||||
namespace, the rebuilds should be much faster.
|
|
||||||
|
|
||||||
## Running GitLab CI locally (optional helper)
|
|
||||||
|
|
||||||
For contributors working on CI, build system changes, or adding new CI jobs, it can be useful to run GitLab CI pipelines locally before pushing.
|
|
||||||
|
|
||||||
libssh provides a small helper script based on `gitlab-ci-local` that can:
|
|
||||||
|
|
||||||
- List all jobs defined in `.gitlab-ci.yml`
|
|
||||||
- Run a specific job or the full pipeline locally
|
|
||||||
- Automatically pick up new jobs when they are added to the CI configuration
|
|
||||||
- Optionally clean up CI Docker images after execution
|
|
||||||
|
|
||||||
### Requirements
|
|
||||||
|
|
||||||
- Docker (daemon running)
|
|
||||||
- git
|
|
||||||
- gitlab-ci-local
|
|
||||||
https://github.com/firecow/gitlab-ci-local
|
|
||||||
|
|
||||||
### Usage
|
|
||||||
|
|
||||||
```bash
|
|
||||||
./.gitlab-ci/local-ci.sh --list
|
|
||||||
./.gitlab-ci/local-ci.sh --run fedora/libressl/x86_64
|
|
||||||
./.gitlab-ci/local-ci.sh --all
|
|
||||||
./.gitlab-ci/local-ci.sh --run fedora/libressl/x86_64 --clean
|
|
||||||
```
|
|
||||||
|
|
||||||
# Coding conventions in the libssh tree
|
# Coding conventions in the libssh tree
|
||||||
|
|
||||||
@@ -320,7 +274,7 @@ This is bad:
|
|||||||
* This is a multi line comment,
|
* This is a multi line comment,
|
||||||
* with some more words...*/
|
* with some more words...*/
|
||||||
|
|
||||||
### Indentation & Whitespace & 80 columns
|
### Indention & Whitespace & 80 columns
|
||||||
|
|
||||||
To avoid confusion, indentations have to be 4 spaces. Do not use tabs!. When
|
To avoid confusion, indentations have to be 4 spaces. Do not use tabs!. When
|
||||||
wrapping parameters for function calls, align the parameter list with the first
|
wrapping parameters for function calls, align the parameter list with the first
|
||||||
@@ -524,76 +478,6 @@ Macros like `STATUS_NOT_OK_RETURN` that change control flow (return/goto/etc)
|
|||||||
from within the macro are considered bad, because they look like function calls
|
from within the macro are considered bad, because they look like function calls
|
||||||
that never change control flow. Please do not introduce them.
|
that never change control flow. Please do not introduce them.
|
||||||
|
|
||||||
### Switch/case indentation
|
|
||||||
|
|
||||||
The `case` should not be indented to avoid wasting too much horizontal space.
|
|
||||||
When the case block contains local variables that need to be wrapped in braces,
|
|
||||||
they should not be indented again either.
|
|
||||||
|
|
||||||
Good example:
|
|
||||||
|
|
||||||
switch (x) {
|
|
||||||
case 0:
|
|
||||||
do_stuff();
|
|
||||||
break;
|
|
||||||
case 1: {
|
|
||||||
int y;
|
|
||||||
do_stuff();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
default:
|
|
||||||
do_other_stuff();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
Bad example:
|
|
||||||
|
|
||||||
switch (x) {
|
|
||||||
case 0:
|
|
||||||
do_stuff();
|
|
||||||
break;
|
|
||||||
case 1:
|
|
||||||
{
|
|
||||||
int y;
|
|
||||||
do_stuff();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
default:
|
|
||||||
do_other_stuff();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
## ABI Versioning and Symbol Management
|
|
||||||
|
|
||||||
To maintain [ABI](https://en.wikipedia.org/wiki/Application_binary_interface) stability
|
|
||||||
and ensure backward compatibility, libssh uses **symbol versioning** to track and manage
|
|
||||||
exported functions and variables. This allows libssh to introduce new symbols or modify
|
|
||||||
existing functions in an ABI-compatible way.
|
|
||||||
|
|
||||||
When introducing a new symbol:
|
|
||||||
|
|
||||||
1. Use the `LIBSSH_API` macro to mark the symbol as part of the public API.
|
|
||||||
2. If you have [abimap](https://github.com/ansasaki/abimap) installed, the new symbols are
|
|
||||||
automatically generated in the `src/libssh_dev.map` file in the **build** directory and used automatically for building the updated library. But, depending on the version of `abimap` under use, you may face linker errors like: `unable to find version dependency LIBSSH_4_9_0`. In this case, you need to manually replace the existing `src/libssh.map` file with the generated `libssh_dev.map` file to update the symbol versioning.
|
|
||||||
3. If you do not have abimap installed, the modified/added symbols must manually be added to the
|
|
||||||
`src/libssh.map` file. The symbols must be added in the following format (assuming that 4_10_0 is the latest released version):
|
|
||||||
|
|
||||||
```
|
|
||||||
LIBSSH_AFTER_4_10_0
|
|
||||||
{
|
|
||||||
global:
|
|
||||||
new_function;
|
|
||||||
new_variable;
|
|
||||||
} LIBSSH_4_10_0;
|
|
||||||
```
|
|
||||||
4. After following either of the above steps, the library can be successfully built and
|
|
||||||
tested without any linker errors.
|
|
||||||
|
|
||||||
5. When submitting the patch, make sure that any new symbols have been added to `libssh.map` as described in step 3, so that the new additions may not be excluded from the next release due to human error.
|
|
||||||
|
|
||||||
Also, to maintain ABI compatibility, existing symbols must not be removed. Instead, they can
|
|
||||||
be marked as deprecated using the `LIBSSH_DEPRECATED` macro. This allows the symbol to be
|
|
||||||
removed in a future release without breaking the ABI.
|
|
||||||
|
|
||||||
Have fun and happy libssh hacking!
|
Have fun and happy libssh hacking!
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ set(CPACK_PACKAGE_VERSION ${PROJECT_VERSION})
|
|||||||
|
|
||||||
# SOURCE GENERATOR
|
# SOURCE GENERATOR
|
||||||
set(CPACK_SOURCE_GENERATOR "TXZ")
|
set(CPACK_SOURCE_GENERATOR "TXZ")
|
||||||
set(CPACK_SOURCE_IGNORE_FILES "~$;[.]swp$;/[.]bare/;/[.]git/;/[.]git;/[.]clangd/;/[.]cache/;.gitignore;/build*;/obj*;tags;cscope.*;compile_commands.json;.*\.patch")
|
set(CPACK_SOURCE_IGNORE_FILES "~$;[.]swp$;/[.]git/;/[.]clangd/;/[.]cache/;.gitignore;/build*;/obj*;tags;cscope.*;compile_commands.json;.*\.patch")
|
||||||
set(CPACK_SOURCE_PACKAGE_FILE_NAME "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}")
|
set(CPACK_SOURCE_PACKAGE_FILE_NAME "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}")
|
||||||
|
|
||||||
### NSIS INSTALLER
|
### NSIS INSTALLER
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ if (UNIX)
|
|||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
add_c_compiler_flag("-std=gnu99" SUPPORTED_COMPILER_FLAGS)
|
||||||
add_c_compiler_flag("-Wpedantic" SUPPORTED_COMPILER_FLAGS)
|
add_c_compiler_flag("-Wpedantic" SUPPORTED_COMPILER_FLAGS)
|
||||||
add_c_compiler_flag("-Wall" SUPPORTED_COMPILER_FLAGS)
|
add_c_compiler_flag("-Wall" SUPPORTED_COMPILER_FLAGS)
|
||||||
add_c_compiler_flag("-Wshadow" SUPPORTED_COMPILER_FLAGS)
|
add_c_compiler_flag("-Wshadow" SUPPORTED_COMPILER_FLAGS)
|
||||||
@@ -42,13 +43,6 @@ if (UNIX)
|
|||||||
add_c_compiler_flag("-Wno-format-zero-length" SUPPORTED_COMPILER_FLAGS)
|
add_c_compiler_flag("-Wno-format-zero-length" SUPPORTED_COMPILER_FLAGS)
|
||||||
add_c_compiler_flag("-Wmissing-field-initializers" SUPPORTED_COMPILER_FLAGS)
|
add_c_compiler_flag("-Wmissing-field-initializers" SUPPORTED_COMPILER_FLAGS)
|
||||||
add_c_compiler_flag("-Wsign-compare" SUPPORTED_COMPILER_FLAGS)
|
add_c_compiler_flag("-Wsign-compare" SUPPORTED_COMPILER_FLAGS)
|
||||||
add_c_compiler_flag("-Wold-style-definition" SUPPORTED_COMPILER_FLAGS)
|
|
||||||
add_c_compiler_flag("-Werror=old-style-definition" SUPPORTED_COMPILER_FLAGS)
|
|
||||||
add_c_compiler_flag("-Wimplicit-int" SUPPORTED_COMPILER_FLAGS)
|
|
||||||
add_c_compiler_flag("-Werror=implicit-int" SUPPORTED_COMPILER_FLAGS)
|
|
||||||
add_c_compiler_flag("-Wint-conversion" SUPPORTED_COMPILER_FLAGS)
|
|
||||||
add_c_compiler_flag("-Werror=int-conversion" SUPPORTED_COMPILER_FLAGS)
|
|
||||||
add_c_compiler_flag("-Werror=unused-variable" SUPPORTED_COMPILER_FLAGS)
|
|
||||||
|
|
||||||
check_c_compiler_flag("-Wformat" REQUIRED_FLAGS_WFORMAT)
|
check_c_compiler_flag("-Wformat" REQUIRED_FLAGS_WFORMAT)
|
||||||
if (REQUIRED_FLAGS_WFORMAT)
|
if (REQUIRED_FLAGS_WFORMAT)
|
||||||
@@ -76,7 +70,7 @@ if (UNIX)
|
|||||||
check_c_compiler_flag_ssp("-fstack-protector-strong" WITH_STACK_PROTECTOR_STRONG)
|
check_c_compiler_flag_ssp("-fstack-protector-strong" WITH_STACK_PROTECTOR_STRONG)
|
||||||
if (WITH_STACK_PROTECTOR_STRONG)
|
if (WITH_STACK_PROTECTOR_STRONG)
|
||||||
list(APPEND SUPPORTED_COMPILER_FLAGS "-fstack-protector-strong")
|
list(APPEND SUPPORTED_COMPILER_FLAGS "-fstack-protector-strong")
|
||||||
# This is needed as Solaris has a separate libssp
|
# This is needed as Solaris has a seperate libssp
|
||||||
if (SOLARIS)
|
if (SOLARIS)
|
||||||
list(APPEND SUPPORTED_LINKER_FLAGS "-fstack-protector-strong")
|
list(APPEND SUPPORTED_LINKER_FLAGS "-fstack-protector-strong")
|
||||||
endif()
|
endif()
|
||||||
@@ -84,7 +78,7 @@ if (UNIX)
|
|||||||
check_c_compiler_flag_ssp("-fstack-protector" WITH_STACK_PROTECTOR)
|
check_c_compiler_flag_ssp("-fstack-protector" WITH_STACK_PROTECTOR)
|
||||||
if (WITH_STACK_PROTECTOR)
|
if (WITH_STACK_PROTECTOR)
|
||||||
list(APPEND SUPPORTED_COMPILER_FLAGS "-fstack-protector")
|
list(APPEND SUPPORTED_COMPILER_FLAGS "-fstack-protector")
|
||||||
# This is needed as Solaris has a separate libssp
|
# This is needed as Solaris has a seperate libssp
|
||||||
if (SOLARIS)
|
if (SOLARIS)
|
||||||
list(APPEND SUPPORTED_LINKER_FLAGS "-fstack-protector")
|
list(APPEND SUPPORTED_LINKER_FLAGS "-fstack-protector")
|
||||||
endif()
|
endif()
|
||||||
@@ -92,14 +86,11 @@ if (UNIX)
|
|||||||
endif (WITH_STACK_PROTECTOR_STRONG)
|
endif (WITH_STACK_PROTECTOR_STRONG)
|
||||||
|
|
||||||
if (NOT WINDOWS AND NOT CYGWIN)
|
if (NOT WINDOWS AND NOT CYGWIN)
|
||||||
# apple m* chips do not support this option
|
|
||||||
if (NOT ${CMAKE_SYSTEM_PROCESSOR} STREQUAL arm64)
|
|
||||||
check_c_compiler_flag_ssp("-fstack-clash-protection" WITH_STACK_CLASH_PROTECTION)
|
check_c_compiler_flag_ssp("-fstack-clash-protection" WITH_STACK_CLASH_PROTECTION)
|
||||||
if (WITH_STACK_CLASH_PROTECTION)
|
if (WITH_STACK_CLASH_PROTECTION)
|
||||||
list(APPEND SUPPORTED_COMPILER_FLAGS "-fstack-clash-protection")
|
list(APPEND SUPPORTED_COMPILER_FLAGS "-fstack-clash-protection")
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
endif()
|
|
||||||
|
|
||||||
if (PICKY_DEVELOPER)
|
if (PICKY_DEVELOPER)
|
||||||
add_c_compiler_flag("-Wno-error=deprecated-declarations" SUPPORTED_COMPILER_FLAGS)
|
add_c_compiler_flag("-Wno-error=deprecated-declarations" SUPPORTED_COMPILER_FLAGS)
|
||||||
|
|||||||
@@ -44,8 +44,6 @@ int main(void){ return 0; }
|
|||||||
endif(CMAKE_COMPILER_IS_GNUCC AND NOT MINGW AND NOT OS2)
|
endif(CMAKE_COMPILER_IS_GNUCC AND NOT MINGW AND NOT OS2)
|
||||||
|
|
||||||
# HEADER FILES
|
# HEADER FILES
|
||||||
check_function_exists(argp_parse HAVE_ARGP_PARSE)
|
|
||||||
|
|
||||||
set(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} ${ARGP_INCLUDE_DIR})
|
set(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} ${ARGP_INCLUDE_DIR})
|
||||||
check_include_file(argp.h HAVE_ARGP_H)
|
check_include_file(argp.h HAVE_ARGP_H)
|
||||||
unset(CMAKE_REQUIRED_INCLUDES)
|
unset(CMAKE_REQUIRED_INCLUDES)
|
||||||
@@ -64,7 +62,6 @@ check_include_file(arpa/inet.h HAVE_ARPA_INET_H)
|
|||||||
check_include_file(byteswap.h HAVE_BYTESWAP_H)
|
check_include_file(byteswap.h HAVE_BYTESWAP_H)
|
||||||
check_include_file(glob.h HAVE_GLOB_H)
|
check_include_file(glob.h HAVE_GLOB_H)
|
||||||
check_include_file(valgrind/valgrind.h HAVE_VALGRIND_VALGRIND_H)
|
check_include_file(valgrind/valgrind.h HAVE_VALGRIND_VALGRIND_H)
|
||||||
check_include_file(ifaddrs.h HAVE_IFADDRS_H)
|
|
||||||
|
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
check_include_file(io.h HAVE_IO_H)
|
check_include_file(io.h HAVE_IO_H)
|
||||||
@@ -78,38 +75,78 @@ endif (WIN32)
|
|||||||
|
|
||||||
if (OPENSSL_FOUND)
|
if (OPENSSL_FOUND)
|
||||||
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
||||||
set(CMAKE_REQUIRED_LIBRARIES OpenSSL::Crypto)
|
|
||||||
|
|
||||||
check_include_file(openssl/des.h HAVE_OPENSSL_DES_H)
|
check_include_file(openssl/des.h HAVE_OPENSSL_DES_H)
|
||||||
if (NOT HAVE_OPENSSL_DES_H)
|
if (NOT HAVE_OPENSSL_DES_H)
|
||||||
message(FATAL_ERROR "Could not detect openssl/des.h")
|
message(FATAL_ERROR "Could not detect openssl/des.h")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
||||||
check_include_file(openssl/aes.h HAVE_OPENSSL_AES_H)
|
check_include_file(openssl/aes.h HAVE_OPENSSL_AES_H)
|
||||||
if (NOT HAVE_OPENSSL_AES_H)
|
if (NOT HAVE_OPENSSL_AES_H)
|
||||||
message(FATAL_ERROR "Could not detect openssl/aes.h")
|
message(FATAL_ERROR "Could not detect openssl/aes.h")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (WITH_BLOWFISH_CIPHER)
|
if (WITH_BLOWFISH_CIPHER)
|
||||||
check_include_file(openssl/blowfish.h HAVE_BLOWFISH)
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
||||||
|
check_include_file(openssl/blowfish.h HAVE_OPENSSL_BLOWFISH_H)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
||||||
check_include_file(openssl/ecdh.h HAVE_OPENSSL_ECDH_H)
|
check_include_file(openssl/ecdh.h HAVE_OPENSSL_ECDH_H)
|
||||||
|
|
||||||
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
||||||
check_include_file(openssl/ec.h HAVE_OPENSSL_EC_H)
|
check_include_file(openssl/ec.h HAVE_OPENSSL_EC_H)
|
||||||
|
|
||||||
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
||||||
check_include_file(openssl/ecdsa.h HAVE_OPENSSL_ECDSA_H)
|
check_include_file(openssl/ecdsa.h HAVE_OPENSSL_ECDSA_H)
|
||||||
|
|
||||||
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
||||||
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_CRYPTO_LIBRARIES})
|
||||||
check_function_exists(EVP_KDF_CTX_new_id HAVE_OPENSSL_EVP_KDF_CTX_NEW_ID)
|
check_function_exists(EVP_KDF_CTX_new_id HAVE_OPENSSL_EVP_KDF_CTX_NEW_ID)
|
||||||
|
|
||||||
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
||||||
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_CRYPTO_LIBRARIES})
|
||||||
check_function_exists(EVP_KDF_CTX_new HAVE_OPENSSL_EVP_KDF_CTX_NEW)
|
check_function_exists(EVP_KDF_CTX_new HAVE_OPENSSL_EVP_KDF_CTX_NEW)
|
||||||
|
|
||||||
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
||||||
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_CRYPTO_LIBRARIES})
|
||||||
check_function_exists(FIPS_mode HAVE_OPENSSL_FIPS_MODE)
|
check_function_exists(FIPS_mode HAVE_OPENSSL_FIPS_MODE)
|
||||||
|
|
||||||
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
||||||
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_CRYPTO_LIBRARIES})
|
||||||
check_function_exists(RAND_priv_bytes HAVE_OPENSSL_RAND_PRIV_BYTES)
|
check_function_exists(RAND_priv_bytes HAVE_OPENSSL_RAND_PRIV_BYTES)
|
||||||
|
|
||||||
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
||||||
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_CRYPTO_LIBRARIES})
|
||||||
|
check_function_exists(EVP_DigestSign HAVE_OPENSSL_EVP_DIGESTSIGN)
|
||||||
|
|
||||||
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
||||||
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_CRYPTO_LIBRARIES})
|
||||||
|
check_function_exists(EVP_DigestVerify HAVE_OPENSSL_EVP_DIGESTVERIFY)
|
||||||
|
|
||||||
|
check_function_exists(OPENSSL_ia32cap_loc HAVE_OPENSSL_IA32CAP_LOC)
|
||||||
|
|
||||||
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
||||||
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_CRYPTO_LIBRARIES})
|
||||||
|
check_symbol_exists(EVP_PKEY_ED25519 "openssl/evp.h" FOUND_OPENSSL_ED25519)
|
||||||
|
|
||||||
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
||||||
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_CRYPTO_LIBRARIES})
|
||||||
check_function_exists(EVP_chacha20 HAVE_OPENSSL_EVP_CHACHA20)
|
check_function_exists(EVP_chacha20 HAVE_OPENSSL_EVP_CHACHA20)
|
||||||
|
|
||||||
# Check for ML-KEM availability (OpenSSL 3.5+)
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
||||||
if (OPENSSL_VERSION VERSION_GREATER_EQUAL "3.5.0")
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_CRYPTO_LIBRARIES})
|
||||||
set(HAVE_OPENSSL_MLKEM 1)
|
check_symbol_exists(EVP_PKEY_POLY1305 "openssl/evp.h" HAVE_OPENSSL_EVP_POLY1305)
|
||||||
set(HAVE_MLKEM1024 1)
|
|
||||||
|
if (HAVE_OPENSSL_EVP_DIGESTSIGN AND HAVE_OPENSSL_EVP_DIGESTVERIFY AND
|
||||||
|
FOUND_OPENSSL_ED25519)
|
||||||
|
set(HAVE_OPENSSL_ED25519 1)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
||||||
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_CRYPTO_LIBRARIES})
|
||||||
|
check_symbol_exists(EVP_PKEY_X25519 "openssl/evp.h" HAVE_OPENSSL_X25519)
|
||||||
|
|
||||||
unset(CMAKE_REQUIRED_INCLUDES)
|
unset(CMAKE_REQUIRED_INCLUDES)
|
||||||
unset(CMAKE_REQUIRED_LIBRARIES)
|
unset(CMAKE_REQUIRED_LIBRARIES)
|
||||||
endif()
|
endif()
|
||||||
@@ -133,6 +170,12 @@ if (NOT WITH_GCRYPT AND NOT WITH_MBEDTLS)
|
|||||||
|
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
|
if (WITH_DSA)
|
||||||
|
if (NOT WITH_MBEDTLS)
|
||||||
|
set(HAVE_DSA 1)
|
||||||
|
endif (NOT WITH_MBEDTLS)
|
||||||
|
endif()
|
||||||
|
|
||||||
# FUNCTIONS
|
# FUNCTIONS
|
||||||
|
|
||||||
check_function_exists(isblank HAVE_ISBLANK)
|
check_function_exists(isblank HAVE_ISBLANK)
|
||||||
@@ -140,7 +183,6 @@ check_function_exists(strncpy HAVE_STRNCPY)
|
|||||||
check_function_exists(strndup HAVE_STRNDUP)
|
check_function_exists(strndup HAVE_STRNDUP)
|
||||||
check_function_exists(strtoull HAVE_STRTOULL)
|
check_function_exists(strtoull HAVE_STRTOULL)
|
||||||
check_function_exists(explicit_bzero HAVE_EXPLICIT_BZERO)
|
check_function_exists(explicit_bzero HAVE_EXPLICIT_BZERO)
|
||||||
check_function_exists(memset_explicit HAVE_MEMSET_EXPLICIT)
|
|
||||||
check_function_exists(memset_s HAVE_MEMSET_S)
|
check_function_exists(memset_s HAVE_MEMSET_S)
|
||||||
|
|
||||||
if (HAVE_GLOB_H)
|
if (HAVE_GLOB_H)
|
||||||
@@ -233,12 +275,7 @@ if (GCRYPT_FOUND)
|
|||||||
endif (GCRYPT_VERSION VERSION_GREATER "1.4.6")
|
endif (GCRYPT_VERSION VERSION_GREATER "1.4.6")
|
||||||
if (NOT GCRYPT_VERSION VERSION_LESS "1.7.0")
|
if (NOT GCRYPT_VERSION VERSION_LESS "1.7.0")
|
||||||
set(HAVE_GCRYPT_CHACHA_POLY 1)
|
set(HAVE_GCRYPT_CHACHA_POLY 1)
|
||||||
set(HAVE_GCRYPT_CURVE25519 1)
|
|
||||||
endif (NOT GCRYPT_VERSION VERSION_LESS "1.7.0")
|
endif (NOT GCRYPT_VERSION VERSION_LESS "1.7.0")
|
||||||
if (GCRYPT_VERSION VERSION_GREATER_EQUAL "1.10.1")
|
|
||||||
set(HAVE_GCRYPT_MLKEM 1)
|
|
||||||
set(HAVE_MLKEM1024 1)
|
|
||||||
endif ()
|
|
||||||
endif (GCRYPT_FOUND)
|
endif (GCRYPT_FOUND)
|
||||||
|
|
||||||
if (MBEDTLS_FOUND)
|
if (MBEDTLS_FOUND)
|
||||||
@@ -248,17 +285,6 @@ if (MBEDTLS_FOUND)
|
|||||||
set(CMAKE_REQUIRED_INCLUDES "${MBEDTLS_INCLUDE_DIR}/mbedtls")
|
set(CMAKE_REQUIRED_INCLUDES "${MBEDTLS_INCLUDE_DIR}/mbedtls")
|
||||||
check_include_file(chacha20.h HAVE_MBEDTLS_CHACHA20_H)
|
check_include_file(chacha20.h HAVE_MBEDTLS_CHACHA20_H)
|
||||||
check_include_file(poly1305.h HAVE_MBEDTLS_POLY1305_H)
|
check_include_file(poly1305.h HAVE_MBEDTLS_POLY1305_H)
|
||||||
if (MBEDTLS_VERSION VERSION_LESS "3.0.0")
|
|
||||||
check_symbol_exists(MBEDTLS_ECP_DP_CURVE25519_ENABLED "config.h" HAVE_MBEDTLS_CURVE25519)
|
|
||||||
else()
|
|
||||||
check_symbol_exists(MBEDTLS_ECP_DP_CURVE25519_ENABLED "mbedtls_config.h" HAVE_MBEDTLS_CURVE25519)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
|
|
||||||
if (WITH_BLOWFISH_CIPHER)
|
|
||||||
check_include_file(blowfish.h HAVE_BLOWFISH)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
unset(CMAKE_REQUIRED_INCLUDES)
|
unset(CMAKE_REQUIRED_INCLUDES)
|
||||||
|
|
||||||
endif (MBEDTLS_FOUND)
|
endif (MBEDTLS_FOUND)
|
||||||
@@ -294,7 +320,7 @@ int main(void) {
|
|||||||
# For detecting attributes we need to treat warnings as
|
# For detecting attributes we need to treat warnings as
|
||||||
# errors
|
# errors
|
||||||
if (UNIX OR MINGW)
|
if (UNIX OR MINGW)
|
||||||
# Get warnings for attributes
|
# Get warnings for attributs
|
||||||
check_c_compiler_flag("-Wattributes" REQUIRED_FLAGS_WERROR)
|
check_c_compiler_flag("-Wattributes" REQUIRED_FLAGS_WERROR)
|
||||||
if (REQUIRED_FLAGS_WERROR)
|
if (REQUIRED_FLAGS_WERROR)
|
||||||
string(APPEND CMAKE_REQUIRED_FLAGS "-Wattributes ")
|
string(APPEND CMAKE_REQUIRED_FLAGS "-Wattributes ")
|
||||||
@@ -349,23 +375,6 @@ int main(void) {
|
|||||||
return 0;
|
return 0;
|
||||||
}" HAVE_FALLTHROUGH_ATTRIBUTE)
|
}" HAVE_FALLTHROUGH_ATTRIBUTE)
|
||||||
|
|
||||||
check_c_source_compiles("
|
|
||||||
#define WEAK __attribute__((weak))
|
|
||||||
|
|
||||||
WEAK int sum(int a, int b)
|
|
||||||
{
|
|
||||||
return a + b;
|
|
||||||
}
|
|
||||||
|
|
||||||
int main(void)
|
|
||||||
{
|
|
||||||
int i = sum(2, 2);
|
|
||||||
|
|
||||||
(void)i;
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}" HAVE_WEAK_ATTRIBUTE)
|
|
||||||
|
|
||||||
if (NOT WIN32)
|
if (NOT WIN32)
|
||||||
check_c_source_compiles("
|
check_c_source_compiles("
|
||||||
#define __unused __attribute__((unused))
|
#define __unused __attribute__((unused))
|
||||||
@@ -463,21 +472,21 @@ if (WITH_PKCS11_URI)
|
|||||||
if (WITH_GCRYPT)
|
if (WITH_GCRYPT)
|
||||||
message(FATAL_ERROR "PKCS #11 is not supported for gcrypt.")
|
message(FATAL_ERROR "PKCS #11 is not supported for gcrypt.")
|
||||||
set(WITH_PKCS11_URI 0)
|
set(WITH_PKCS11_URI 0)
|
||||||
elseif (WITH_MBEDTLS)
|
endif()
|
||||||
|
if (WITH_MBEDTLS)
|
||||||
message(FATAL_ERROR "PKCS #11 is not supported for mbedcrypto")
|
message(FATAL_ERROR "PKCS #11 is not supported for mbedcrypto")
|
||||||
set(WITH_PKCS11_URI 0)
|
set(WITH_PKCS11_URI 0)
|
||||||
elseif (OPENSSL_FOUND AND OPENSSL_VERSION VERSION_GREATER_EQUAL "3.0.0")
|
endif()
|
||||||
find_library(PKCS11_PROVIDER
|
if (HAVE_OPENSSL AND NOT OPENSSL_VERSION VERSION_GREATER_EQUAL "1.1.1")
|
||||||
NAMES
|
message(FATAL_ERROR "PKCS #11 requires at least OpenSSL 1.1.1")
|
||||||
pkcs11.so
|
set(WITH_PKCS11_URI 0)
|
||||||
PATH_SUFFIXES
|
endif()
|
||||||
ossl-modules
|
endif()
|
||||||
)
|
|
||||||
if (NOT PKCS11_PROVIDER)
|
if (WITH_MBEDTLS)
|
||||||
set(WITH_PKCS11_PROVIDER 0)
|
if (WITH_DSA)
|
||||||
message(WARNING "Could not find pkcs11 provider! Falling back to engines")
|
message(FATAL_ERROR "DSA is not supported with mbedTLS crypto")
|
||||||
message(WARNING "The support for engines is deprecated in OpenSSL and will be removed from libssh in the future releases.")
|
set(HAVE_DSA 0)
|
||||||
endif (NOT PKCS11_PROVIDER)
|
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|||||||
@@ -2,33 +2,29 @@ option(WITH_GSSAPI "Build with GSSAPI support" ON)
|
|||||||
option(WITH_ZLIB "Build with ZLIB support" ON)
|
option(WITH_ZLIB "Build with ZLIB support" ON)
|
||||||
option(WITH_SFTP "Build with SFTP support" ON)
|
option(WITH_SFTP "Build with SFTP support" ON)
|
||||||
option(WITH_SERVER "Build with SSH server support" ON)
|
option(WITH_SERVER "Build with SSH server support" ON)
|
||||||
option(WITH_DEBUG_CRYPTO "Build with crypto debug output" OFF)
|
option(WITH_DEBUG_CRYPTO "Build with cryto debug output" OFF)
|
||||||
option(WITH_DEBUG_PACKET "Build with packet debug output" OFF)
|
option(WITH_DEBUG_PACKET "Build with packet debug output" OFF)
|
||||||
option(WITH_DEBUG_CALLTRACE "Build with calltrace debug output" ON)
|
option(WITH_DEBUG_CALLTRACE "Build with calltrace debug output" ON)
|
||||||
option(WITH_GCRYPT "Compile against libgcrypt (deprecated)" OFF)
|
option(WITH_DSA "Build with DSA" OFF)
|
||||||
|
option(WITH_GCRYPT "Compile against libgcrypt" OFF)
|
||||||
option(WITH_MBEDTLS "Compile against libmbedtls" OFF)
|
option(WITH_MBEDTLS "Compile against libmbedtls" OFF)
|
||||||
option(WITH_BLOWFISH_CIPHER "Compile with blowfish support" OFF)
|
option(WITH_BLOWFISH_CIPHER "Compile with blowfish support" OFF)
|
||||||
option(WITH_PCAP "Compile with Pcap generation support" ON)
|
option(WITH_PCAP "Compile with Pcap generation support" ON)
|
||||||
option(WITH_INTERNAL_DOC "Compile doxygen internal documentation" OFF)
|
option(WITH_INTERNAL_DOC "Compile doxygen internal documentation" OFF)
|
||||||
option(BUILD_SHARED_LIBS "Build shared libraries" ON)
|
option(BUILD_SHARED_LIBS "Build shared libraries" ON)
|
||||||
option(WITH_PKCS11_URI "Build with PKCS#11 URI support" OFF)
|
option(WITH_PKCS11_URI "Build with PKCS#11 URI support" OFF)
|
||||||
option(WITH_PKCS11_PROVIDER "Use the PKCS#11 provider for accessing pkcs11 objects" OFF)
|
|
||||||
option(WITH_FIDO2 "Build with FIDO2/U2F support" OFF)
|
|
||||||
option(UNIT_TESTING "Build with unit tests" OFF)
|
option(UNIT_TESTING "Build with unit tests" OFF)
|
||||||
option(CLIENT_TESTING "Build with client tests; requires openssh" OFF)
|
option(CLIENT_TESTING "Build with client tests; requires openssh" OFF)
|
||||||
option(SERVER_TESTING "Build with server tests; requires openssh and dropbear" OFF)
|
option(SERVER_TESTING "Build with server tests; requires openssh and dropbear" OFF)
|
||||||
option(GSSAPI_TESTING "Build with GSSAPI tests; requires krb5-server,krb5-libs and krb5-workstation" OFF)
|
option(WITH_BENCHMARKS "Build benchmarks tools" OFF)
|
||||||
option(WITH_BENCHMARKS "Build benchmarks tools; enables unit testing and client tests" OFF)
|
|
||||||
option(WITH_EXAMPLES "Build examples" ON)
|
option(WITH_EXAMPLES "Build examples" ON)
|
||||||
option(WITH_NACL "Build with libnacl (curve25519)" ON)
|
option(WITH_NACL "Build with libnacl (curve25519)" ON)
|
||||||
option(WITH_SYMBOL_VERSIONING "Build with symbol versioning" ON)
|
option(WITH_SYMBOL_VERSIONING "Build with symbol versioning" ON)
|
||||||
option(WITH_ABI_BREAK "Allow ABI break" OFF)
|
option(WITH_ABI_BREAK "Allow ABI break" OFF)
|
||||||
option(WITH_GEX "Enable DH Group exchange mechanisms" ON)
|
option(WITH_GEX "Enable DH Group exchange mechanisms" ON)
|
||||||
option(WITH_INSECURE_NONE "Enable insecure none cipher and MAC algorithms (not suitable for production!)" OFF)
|
option(WITH_INSECURE_NONE "Enable insecure none cipher and MAC algorithms (not suitable for production!)" OFF)
|
||||||
option(WITH_EXEC "Enable libssh to execute arbitrary commands from configuration files or options (match exec, proxy commands and OpenSSH-based proxy-jumps)." ON)
|
|
||||||
option(FUZZ_TESTING "Build with fuzzer for the server and client (automatically enables none cipher!)" OFF)
|
option(FUZZ_TESTING "Build with fuzzer for the server and client (automatically enables none cipher!)" OFF)
|
||||||
option(PICKY_DEVELOPER "Build with picky developer flags" OFF)
|
option(PICKY_DEVELOPER "Build with picky developer flags" OFF)
|
||||||
option(WITH_HERMETIC_USR "Build with support for hermetic /usr/" OFF)
|
|
||||||
|
|
||||||
if (WITH_ZLIB)
|
if (WITH_ZLIB)
|
||||||
set(WITH_LIBZ ON)
|
set(WITH_LIBZ ON)
|
||||||
@@ -41,7 +37,7 @@ if (WITH_BENCHMARKS)
|
|||||||
set(CLIENT_TESTING ON)
|
set(CLIENT_TESTING ON)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (UNIT_TESTING OR CLIENT_TESTING OR SERVER_TESTING OR GSSAPI_TESTING)
|
if (UNIT_TESTING OR CLIENT_TESTING OR SERVER_TESTING)
|
||||||
set(BUILD_STATIC_LIB ON)
|
set(BUILD_STATIC_LIB ON)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
@@ -61,15 +57,6 @@ if (NOT GLOBAL_CLIENT_CONFIG)
|
|||||||
set(GLOBAL_CLIENT_CONFIG "/etc/ssh/ssh_config")
|
set(GLOBAL_CLIENT_CONFIG "/etc/ssh/ssh_config")
|
||||||
endif (NOT GLOBAL_CLIENT_CONFIG)
|
endif (NOT GLOBAL_CLIENT_CONFIG)
|
||||||
|
|
||||||
if (WITH_HERMETIC_USR)
|
|
||||||
set(USR_GLOBAL_BIND_CONFIG "/usr${GLOBAL_BIND_CONFIG}")
|
|
||||||
set(USR_GLOBAL_CLIENT_CONFIG "/usr${GLOBAL_CLIENT_CONFIG}")
|
|
||||||
endif (WITH_HERMETIC_USR)
|
|
||||||
|
|
||||||
if (FUZZ_TESTING)
|
if (FUZZ_TESTING)
|
||||||
set(WITH_INSECURE_NONE ON)
|
set(WITH_INSECURE_NONE ON)
|
||||||
endif (FUZZ_TESTING)
|
endif (FUZZ_TESTING)
|
||||||
|
|
||||||
if (WIN32)
|
|
||||||
set(WITH_EXEC 0)
|
|
||||||
endif(WIN32)
|
|
||||||
|
|||||||
19
INSTALL
@@ -7,13 +7,11 @@
|
|||||||
In order to build libssh, you need to install several components:
|
In order to build libssh, you need to install several components:
|
||||||
|
|
||||||
- A C compiler
|
- A C compiler
|
||||||
- [CMake](https://www.cmake.org) >= 3.12.0
|
- [CMake](https://www.cmake.org) >= 3.3.0
|
||||||
|
- [openssl](https://www.openssl.org) >= 1.0.1
|
||||||
|
or
|
||||||
|
- [gcrypt](https://www.gnu.org/directory/Security/libgcrypt.html) >= 1.4
|
||||||
- [libz](https://www.zlib.net) >= 1.2
|
- [libz](https://www.zlib.net) >= 1.2
|
||||||
- [openssl](https://www.openssl.org) >= 1.1.1
|
|
||||||
or
|
|
||||||
- [gcrypt](https://www.gnu.org/directory/Security/libgcrypt.html) >= 1.5
|
|
||||||
or
|
|
||||||
- [Mbed TLS](https://www.trustedfirmware.org/projects/mbed-tls/)
|
|
||||||
|
|
||||||
optional:
|
optional:
|
||||||
- [cmocka](https://cmocka.org/) >= 1.1.0
|
- [cmocka](https://cmocka.org/) >= 1.1.0
|
||||||
@@ -21,7 +19,6 @@ optional:
|
|||||||
- [nss_wrapper](https://cwrap.org/) >= 1.1.2
|
- [nss_wrapper](https://cwrap.org/) >= 1.1.2
|
||||||
- [uid_wrapper](https://cwrap.org/) >= 1.2.0
|
- [uid_wrapper](https://cwrap.org/) >= 1.2.0
|
||||||
- [pam_wrapper](https://cwrap.org/) >= 1.0.1
|
- [pam_wrapper](https://cwrap.org/) >= 1.0.1
|
||||||
- [priv_wrapper](https://cwrap.org/) >= 1.0.0
|
|
||||||
|
|
||||||
Note that these version numbers are version we know works correctly. If you
|
Note that these version numbers are version we know works correctly. If you
|
||||||
build and run libssh successfully with an older version, please let us know.
|
build and run libssh successfully with an older version, please let us know.
|
||||||
@@ -38,16 +35,14 @@ First, you need to configure the compilation, using CMake. Go inside the
|
|||||||
`build` dir. Create it if it doesn't exist.
|
`build` dir. Create it if it doesn't exist.
|
||||||
|
|
||||||
GNU/Linux, MacOS X, MSYS/MinGW:
|
GNU/Linux, MacOS X, MSYS/MinGW:
|
||||||
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug ..
|
|
||||||
|
cmake -DUNIT_TESTING=ON -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug ..
|
||||||
make
|
make
|
||||||
|
|
||||||
On Windows you should choose a makefile generator with -G or use
|
On Windows you should choose a makefile gernerator with -G or use
|
||||||
|
|
||||||
cmake-gui.exe ..
|
cmake-gui.exe ..
|
||||||
|
|
||||||
To enable building tests use -DUNIT_TESTING=ON. For this, the
|
|
||||||
[cmocka](https://cmocka.org) dependency is required.
|
|
||||||
|
|
||||||
To enable additional client tests against a local OpenSSH server, add the
|
To enable additional client tests against a local OpenSSH server, add the
|
||||||
compile option -DCLIENT_TESTING=ON. These tests require an OpenSSH
|
compile option -DCLIENT_TESTING=ON. These tests require an OpenSSH
|
||||||
server package and some wrapper libraries (see optional requirements) to
|
server package and some wrapper libraries (see optional requirements) to
|
||||||
|
|||||||
@@ -116,10 +116,5 @@ function(ADD_CMOCKA_TEST _TARGET_NAME)
|
|||||||
add_test(${_TARGET_NAME}
|
add_test(${_TARGET_NAME}
|
||||||
${TARGET_SYSTEM_EMULATOR} ${_TARGET_NAME}
|
${TARGET_SYSTEM_EMULATOR} ${_TARGET_NAME}
|
||||||
)
|
)
|
||||||
if (WITH_COVERAGE)
|
|
||||||
ENABLE_LANGUAGE(CXX)
|
|
||||||
include(CodeCoverage)
|
|
||||||
append_coverage_compiler_flags_to_target(${_TARGET_NAME})
|
|
||||||
endif (WITH_COVERAGE)
|
|
||||||
|
|
||||||
endfunction (ADD_CMOCKA_TEST)
|
endfunction (ADD_CMOCKA_TEST)
|
||||||
|
|||||||
@@ -1,750 +0,0 @@
|
|||||||
# Copyright (c) 2012 - 2017, Lars Bilke
|
|
||||||
# All rights reserved.
|
|
||||||
#
|
|
||||||
# Redistribution and use in source and binary forms, with or without modification,
|
|
||||||
# are permitted provided that the following conditions are met:
|
|
||||||
#
|
|
||||||
# 1. Redistributions of source code must retain the above copyright notice, this
|
|
||||||
# list of conditions and the following disclaimer.
|
|
||||||
#
|
|
||||||
# 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
||||||
# this list of conditions and the following disclaimer in the documentation
|
|
||||||
# and/or other materials provided with the distribution.
|
|
||||||
#
|
|
||||||
# 3. Neither the name of the copyright holder nor the names of its contributors
|
|
||||||
# may be used to endorse or promote products derived from this software without
|
|
||||||
# specific prior written permission.
|
|
||||||
#
|
|
||||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
||||||
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
||||||
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
||||||
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
|
||||||
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
||||||
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
||||||
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
||||||
# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
||||||
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
#
|
|
||||||
# CHANGES:
|
|
||||||
#
|
|
||||||
# 2012-01-31, Lars Bilke
|
|
||||||
# - Enable Code Coverage
|
|
||||||
#
|
|
||||||
# 2013-09-17, Joakim Söderberg
|
|
||||||
# - Added support for Clang.
|
|
||||||
# - Some additional usage instructions.
|
|
||||||
#
|
|
||||||
# 2016-02-03, Lars Bilke
|
|
||||||
# - Refactored functions to use named parameters
|
|
||||||
#
|
|
||||||
# 2017-06-02, Lars Bilke
|
|
||||||
# - Merged with modified version from github.com/ufz/ogs
|
|
||||||
#
|
|
||||||
# 2019-05-06, Anatolii Kurotych
|
|
||||||
# - Remove unnecessary --coverage flag
|
|
||||||
#
|
|
||||||
# 2019-12-13, FeRD (Frank Dana)
|
|
||||||
# - Deprecate COVERAGE_LCOVR_EXCLUDES and COVERAGE_GCOVR_EXCLUDES lists in favor
|
|
||||||
# of tool-agnostic COVERAGE_EXCLUDES variable, or EXCLUDE setup arguments.
|
|
||||||
# - CMake 3.4+: All excludes can be specified relative to BASE_DIRECTORY
|
|
||||||
# - All setup functions: accept BASE_DIRECTORY, EXCLUDE list
|
|
||||||
# - Set lcov basedir with -b argument
|
|
||||||
# - Add automatic --demangle-cpp in lcovr, if 'c++filt' is available (can be
|
|
||||||
# overridden with NO_DEMANGLE option in setup_target_for_coverage_lcovr().)
|
|
||||||
# - Delete output dir, .info file on 'make clean'
|
|
||||||
# - Remove Python detection, since version mismatches will break gcovr
|
|
||||||
# - Minor cleanup (lowercase function names, update examples...)
|
|
||||||
#
|
|
||||||
# 2019-12-19, FeRD (Frank Dana)
|
|
||||||
# - Rename Lcov outputs, make filtered file canonical, fix cleanup for targets
|
|
||||||
#
|
|
||||||
# 2020-01-19, Bob Apthorpe
|
|
||||||
# - Added gfortran support
|
|
||||||
#
|
|
||||||
# 2020-02-17, FeRD (Frank Dana)
|
|
||||||
# - Make all add_custom_target()s VERBATIM to auto-escape wildcard characters
|
|
||||||
# in EXCLUDEs, and remove manual escaping from gcovr targets
|
|
||||||
#
|
|
||||||
# 2021-01-19, Robin Mueller
|
|
||||||
# - Add CODE_COVERAGE_VERBOSE option which will allow to print out commands which are run
|
|
||||||
# - Added the option for users to set the GCOVR_ADDITIONAL_ARGS variable to supply additional
|
|
||||||
# flags to the gcovr command
|
|
||||||
#
|
|
||||||
# 2020-05-04, Mihchael Davis
|
|
||||||
# - Add -fprofile-abs-path to make gcno files contain absolute paths
|
|
||||||
# - Fix BASE_DIRECTORY not working when defined
|
|
||||||
# - Change BYPRODUCT from folder to index.html to stop ninja from complaining about double defines
|
|
||||||
#
|
|
||||||
# 2021-05-10, Martin Stump
|
|
||||||
# - Check if the generator is multi-config before warning about non-Debug builds
|
|
||||||
#
|
|
||||||
# 2022-02-22, Marko Wehle
|
|
||||||
# - Change gcovr output from -o <filename> for --xml <filename> and --html <filename> output respectively.
|
|
||||||
# This will allow for Multiple Output Formats at the same time by making use of GCOVR_ADDITIONAL_ARGS, e.g. GCOVR_ADDITIONAL_ARGS "--txt".
|
|
||||||
#
|
|
||||||
# 2022-09-28, Sebastian Mueller
|
|
||||||
# - fix append_coverage_compiler_flags_to_target to correctly add flags
|
|
||||||
# - replace "-fprofile-arcs -ftest-coverage" with "--coverage" (equivalent)
|
|
||||||
#
|
|
||||||
# USAGE:
|
|
||||||
#
|
|
||||||
# 1. Copy this file into your cmake modules path.
|
|
||||||
#
|
|
||||||
# 2. Add the following line to your CMakeLists.txt (best inside an if-condition
|
|
||||||
# using a CMake option() to enable it just optionally):
|
|
||||||
# include(CodeCoverage)
|
|
||||||
#
|
|
||||||
# 3. Append necessary compiler flags for all supported source files:
|
|
||||||
# append_coverage_compiler_flags()
|
|
||||||
# Or for specific target:
|
|
||||||
# append_coverage_compiler_flags_to_target(YOUR_TARGET_NAME)
|
|
||||||
#
|
|
||||||
# 3.a (OPTIONAL) Set appropriate optimization flags, e.g. -O0, -O1 or -Og
|
|
||||||
#
|
|
||||||
# 4. If you need to exclude additional directories from the report, specify them
|
|
||||||
# using full paths in the COVERAGE_EXCLUDES variable before calling
|
|
||||||
# setup_target_for_coverage_*().
|
|
||||||
# Example:
|
|
||||||
# set(COVERAGE_EXCLUDES
|
|
||||||
# '${PROJECT_SOURCE_DIR}/src/dir1/*'
|
|
||||||
# '/path/to/my/src/dir2/*')
|
|
||||||
# Or, use the EXCLUDE argument to setup_target_for_coverage_*().
|
|
||||||
# Example:
|
|
||||||
# setup_target_for_coverage_lcov(
|
|
||||||
# NAME coverage
|
|
||||||
# EXECUTABLE testrunner
|
|
||||||
# EXCLUDE "${PROJECT_SOURCE_DIR}/src/dir1/*" "/path/to/my/src/dir2/*")
|
|
||||||
#
|
|
||||||
# 4.a NOTE: With CMake 3.4+, COVERAGE_EXCLUDES or EXCLUDE can also be set
|
|
||||||
# relative to the BASE_DIRECTORY (default: PROJECT_SOURCE_DIR)
|
|
||||||
# Example:
|
|
||||||
# set(COVERAGE_EXCLUDES "dir1/*")
|
|
||||||
# setup_target_for_coverage_gcovr_html(
|
|
||||||
# NAME coverage
|
|
||||||
# EXECUTABLE testrunner
|
|
||||||
# BASE_DIRECTORY "${PROJECT_SOURCE_DIR}/src"
|
|
||||||
# EXCLUDE "dir2/*")
|
|
||||||
#
|
|
||||||
# 5. Use the functions described below to create a custom make target which
|
|
||||||
# runs your test executable and produces a code coverage report.
|
|
||||||
#
|
|
||||||
# 6. Build a Debug build:
|
|
||||||
# cmake -DCMAKE_BUILD_TYPE=Debug ..
|
|
||||||
# make
|
|
||||||
# make my_coverage_target
|
|
||||||
#
|
|
||||||
|
|
||||||
include(CMakeParseArguments)
|
|
||||||
|
|
||||||
option(CODE_COVERAGE_VERBOSE "Verbose information" FALSE)
|
|
||||||
|
|
||||||
# Check prereqs
|
|
||||||
find_program( GCOV_PATH gcov )
|
|
||||||
find_program( LCOV_PATH NAMES lcov lcov.bat lcov.exe lcov.perl)
|
|
||||||
find_program( FASTCOV_PATH NAMES fastcov fastcov.py )
|
|
||||||
find_program( GENHTML_PATH NAMES genhtml genhtml.perl genhtml.bat )
|
|
||||||
find_program( GCOVR_PATH gcovr PATHS ${CMAKE_SOURCE_DIR}/scripts/test)
|
|
||||||
find_program( CPPFILT_PATH NAMES c++filt )
|
|
||||||
|
|
||||||
if(NOT GCOV_PATH)
|
|
||||||
message(FATAL_ERROR "gcov not found! Aborting...")
|
|
||||||
endif() # NOT GCOV_PATH
|
|
||||||
|
|
||||||
# Check supported compiler (Clang, GNU and Flang)
|
|
||||||
get_property(LANGUAGES GLOBAL PROPERTY ENABLED_LANGUAGES)
|
|
||||||
foreach(LANG ${LANGUAGES})
|
|
||||||
if("${CMAKE_${LANG}_COMPILER_ID}" MATCHES "(Apple)?[Cc]lang")
|
|
||||||
if("${CMAKE_${LANG}_COMPILER_VERSION}" VERSION_LESS 3)
|
|
||||||
message(FATAL_ERROR "Clang version must be 3.0.0 or greater! Aborting...")
|
|
||||||
endif()
|
|
||||||
elseif(NOT "${CMAKE_${LANG}_COMPILER_ID}" MATCHES "GNU"
|
|
||||||
AND NOT "${CMAKE_${LANG}_COMPILER_ID}" MATCHES "(LLVM)?[Ff]lang")
|
|
||||||
message(FATAL_ERROR "Compiler is not GNU or Flang! Aborting...")
|
|
||||||
endif()
|
|
||||||
endforeach()
|
|
||||||
|
|
||||||
set(COVERAGE_COMPILER_FLAGS "-g --coverage -fprofile-update=atomic"
|
|
||||||
CACHE INTERNAL "")
|
|
||||||
|
|
||||||
if(CMAKE_CXX_COMPILER_ID MATCHES "(GNU|Clang)")
|
|
||||||
include(CheckCXXCompilerFlag)
|
|
||||||
check_cxx_compiler_flag(-fprofile-abs-path HAVE_cxx_fprofile_abs_path)
|
|
||||||
if(HAVE_cxx_fprofile_abs_path)
|
|
||||||
set(COVERAGE_CXX_COMPILER_FLAGS "${COVERAGE_COMPILER_FLAGS} -fprofile-abs-path")
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
if(CMAKE_C_COMPILER_ID MATCHES "(GNU|Clang)")
|
|
||||||
include(CheckCCompilerFlag)
|
|
||||||
check_c_compiler_flag(-fprofile-abs-path HAVE_c_fprofile_abs_path)
|
|
||||||
if(HAVE_c_fprofile_abs_path)
|
|
||||||
set(COVERAGE_C_COMPILER_FLAGS "${COVERAGE_COMPILER_FLAGS} -fprofile-abs-path")
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
|
|
||||||
set(CMAKE_Fortran_FLAGS_COVERAGE
|
|
||||||
${COVERAGE_COMPILER_FLAGS}
|
|
||||||
CACHE STRING "Flags used by the Fortran compiler during coverage builds."
|
|
||||||
FORCE )
|
|
||||||
set(CMAKE_CXX_FLAGS_COVERAGE
|
|
||||||
${COVERAGE_COMPILER_FLAGS}
|
|
||||||
CACHE STRING "Flags used by the C++ compiler during coverage builds."
|
|
||||||
FORCE )
|
|
||||||
set(CMAKE_C_FLAGS_COVERAGE
|
|
||||||
${COVERAGE_COMPILER_FLAGS}
|
|
||||||
CACHE STRING "Flags used by the C compiler during coverage builds."
|
|
||||||
FORCE )
|
|
||||||
set(CMAKE_EXE_LINKER_FLAGS_COVERAGE
|
|
||||||
""
|
|
||||||
CACHE STRING "Flags used for linking binaries during coverage builds."
|
|
||||||
FORCE )
|
|
||||||
set(CMAKE_SHARED_LINKER_FLAGS_COVERAGE
|
|
||||||
""
|
|
||||||
CACHE STRING "Flags used by the shared libraries linker during coverage builds."
|
|
||||||
FORCE )
|
|
||||||
mark_as_advanced(
|
|
||||||
CMAKE_Fortran_FLAGS_COVERAGE
|
|
||||||
CMAKE_CXX_FLAGS_COVERAGE
|
|
||||||
CMAKE_C_FLAGS_COVERAGE
|
|
||||||
CMAKE_EXE_LINKER_FLAGS_COVERAGE
|
|
||||||
CMAKE_SHARED_LINKER_FLAGS_COVERAGE )
|
|
||||||
|
|
||||||
get_property(GENERATOR_IS_MULTI_CONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG)
|
|
||||||
if(NOT (CMAKE_BUILD_TYPE STREQUAL "Debug" OR GENERATOR_IS_MULTI_CONFIG))
|
|
||||||
message(WARNING "Code coverage results with an optimised (non-Debug) build may be misleading")
|
|
||||||
endif() # NOT (CMAKE_BUILD_TYPE STREQUAL "Debug" OR GENERATOR_IS_MULTI_CONFIG)
|
|
||||||
|
|
||||||
if(CMAKE_C_COMPILER_ID STREQUAL "GNU" OR CMAKE_Fortran_COMPILER_ID STREQUAL "GNU")
|
|
||||||
link_libraries(gcov)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Defines a target for running and collection code coverage information
|
|
||||||
# Builds dependencies, runs the given executable and outputs reports.
|
|
||||||
# NOTE! The executable should always have a ZERO as exit code otherwise
|
|
||||||
# the coverage generation will not complete.
|
|
||||||
#
|
|
||||||
# setup_target_for_coverage_lcov(
|
|
||||||
# NAME testrunner_coverage # New target name
|
|
||||||
# EXECUTABLE testrunner -j ${PROCESSOR_COUNT} # Executable in PROJECT_BINARY_DIR
|
|
||||||
# DEPENDENCIES testrunner # Dependencies to build first
|
|
||||||
# BASE_DIRECTORY "../" # Base directory for report
|
|
||||||
# # (defaults to PROJECT_SOURCE_DIR)
|
|
||||||
# EXCLUDE "src/dir1/*" "src/dir2/*" # Patterns to exclude (can be relative
|
|
||||||
# # to BASE_DIRECTORY, with CMake 3.4+)
|
|
||||||
# NO_DEMANGLE # Don't demangle C++ symbols
|
|
||||||
# # even if c++filt is found
|
|
||||||
# )
|
|
||||||
function(setup_target_for_coverage_lcov)
|
|
||||||
|
|
||||||
set(options NO_DEMANGLE SONARQUBE)
|
|
||||||
set(oneValueArgs BASE_DIRECTORY NAME)
|
|
||||||
set(multiValueArgs EXCLUDE EXECUTABLE EXECUTABLE_ARGS DEPENDENCIES LCOV_ARGS GENHTML_ARGS)
|
|
||||||
cmake_parse_arguments(Coverage "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
|
|
||||||
|
|
||||||
if(NOT LCOV_PATH)
|
|
||||||
message(FATAL_ERROR "lcov not found! Aborting...")
|
|
||||||
endif() # NOT LCOV_PATH
|
|
||||||
|
|
||||||
if(NOT GENHTML_PATH)
|
|
||||||
message(FATAL_ERROR "genhtml not found! Aborting...")
|
|
||||||
endif() # NOT GENHTML_PATH
|
|
||||||
|
|
||||||
# Set base directory (as absolute path), or default to PROJECT_SOURCE_DIR
|
|
||||||
if(DEFINED Coverage_BASE_DIRECTORY)
|
|
||||||
get_filename_component(BASEDIR ${Coverage_BASE_DIRECTORY} ABSOLUTE)
|
|
||||||
else()
|
|
||||||
set(BASEDIR ${PROJECT_SOURCE_DIR})
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Collect excludes (CMake 3.4+: Also compute absolute paths)
|
|
||||||
set(LCOV_EXCLUDES "")
|
|
||||||
foreach(EXCLUDE ${Coverage_EXCLUDE} ${COVERAGE_EXCLUDES} ${COVERAGE_LCOV_EXCLUDES})
|
|
||||||
if(CMAKE_VERSION VERSION_GREATER 3.4)
|
|
||||||
get_filename_component(EXCLUDE ${EXCLUDE} ABSOLUTE BASE_DIR ${BASEDIR})
|
|
||||||
endif()
|
|
||||||
list(APPEND LCOV_EXCLUDES "${EXCLUDE}")
|
|
||||||
endforeach()
|
|
||||||
list(REMOVE_DUPLICATES LCOV_EXCLUDES)
|
|
||||||
|
|
||||||
# Conditional arguments
|
|
||||||
if(CPPFILT_PATH AND NOT ${Coverage_NO_DEMANGLE})
|
|
||||||
set(GENHTML_EXTRA_ARGS "--demangle-cpp")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Setting up commands which will be run to generate coverage data.
|
|
||||||
# Cleanup lcov
|
|
||||||
set(LCOV_CLEAN_CMD
|
|
||||||
${LCOV_PATH} ${Coverage_LCOV_ARGS} --gcov-tool ${GCOV_PATH} -directory .
|
|
||||||
-b ${BASEDIR} --zerocounters
|
|
||||||
)
|
|
||||||
# Create baseline to make sure untouched files show up in the report
|
|
||||||
set(LCOV_BASELINE_CMD
|
|
||||||
${LCOV_PATH} ${Coverage_LCOV_ARGS} --gcov-tool ${GCOV_PATH} -c -i -d . -b
|
|
||||||
${BASEDIR} -o ${Coverage_NAME}.base
|
|
||||||
)
|
|
||||||
# Run tests
|
|
||||||
set(LCOV_EXEC_TESTS_CMD
|
|
||||||
${Coverage_EXECUTABLE} ${Coverage_EXECUTABLE_ARGS}
|
|
||||||
)
|
|
||||||
# Capturing lcov counters and generating report
|
|
||||||
set(LCOV_CAPTURE_CMD
|
|
||||||
${LCOV_PATH} ${Coverage_LCOV_ARGS} --gcov-tool ${GCOV_PATH} --directory . -b
|
|
||||||
${BASEDIR} --capture --output-file ${Coverage_NAME}.capture
|
|
||||||
)
|
|
||||||
# add baseline counters
|
|
||||||
set(LCOV_BASELINE_COUNT_CMD
|
|
||||||
${LCOV_PATH} ${Coverage_LCOV_ARGS} --gcov-tool ${GCOV_PATH} -a ${Coverage_NAME}.base
|
|
||||||
-a ${Coverage_NAME}.capture --output-file ${Coverage_NAME}.total
|
|
||||||
)
|
|
||||||
# filter collected data to final coverage report
|
|
||||||
set(LCOV_FILTER_CMD
|
|
||||||
${LCOV_PATH} ${Coverage_LCOV_ARGS} --gcov-tool ${GCOV_PATH} --remove
|
|
||||||
${Coverage_NAME}.total ${LCOV_EXCLUDES} --output-file ${Coverage_NAME}.info
|
|
||||||
)
|
|
||||||
# Generate HTML output
|
|
||||||
set(LCOV_GEN_HTML_CMD
|
|
||||||
${GENHTML_PATH} ${GENHTML_EXTRA_ARGS} ${Coverage_GENHTML_ARGS} -o
|
|
||||||
${Coverage_NAME} ${Coverage_NAME}.info
|
|
||||||
)
|
|
||||||
if(${Coverage_SONARQUBE})
|
|
||||||
# Generate SonarQube output
|
|
||||||
set(GCOVR_XML_CMD
|
|
||||||
${GCOVR_PATH} --sonarqube ${Coverage_NAME}_sonarqube.xml -r ${BASEDIR} ${GCOVR_ADDITIONAL_ARGS}
|
|
||||||
${GCOVR_EXCLUDE_ARGS} --object-directory=${PROJECT_BINARY_DIR}
|
|
||||||
)
|
|
||||||
set(GCOVR_XML_CMD_COMMAND
|
|
||||||
COMMAND ${GCOVR_XML_CMD}
|
|
||||||
)
|
|
||||||
set(GCOVR_XML_CMD_BYPRODUCTS ${Coverage_NAME}_sonarqube.xml)
|
|
||||||
set(GCOVR_XML_CMD_COMMENT COMMENT "SonarQube code coverage info report saved in ${Coverage_NAME}_sonarqube.xml.")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
|
|
||||||
if(CODE_COVERAGE_VERBOSE)
|
|
||||||
message(STATUS "Executed command report")
|
|
||||||
message(STATUS "Command to clean up lcov: ")
|
|
||||||
string(REPLACE ";" " " LCOV_CLEAN_CMD_SPACED "${LCOV_CLEAN_CMD}")
|
|
||||||
message(STATUS "${LCOV_CLEAN_CMD_SPACED}")
|
|
||||||
|
|
||||||
message(STATUS "Command to create baseline: ")
|
|
||||||
string(REPLACE ";" " " LCOV_BASELINE_CMD_SPACED "${LCOV_BASELINE_CMD}")
|
|
||||||
message(STATUS "${LCOV_BASELINE_CMD_SPACED}")
|
|
||||||
|
|
||||||
message(STATUS "Command to run the tests: ")
|
|
||||||
string(REPLACE ";" " " LCOV_EXEC_TESTS_CMD_SPACED "${LCOV_EXEC_TESTS_CMD}")
|
|
||||||
message(STATUS "${LCOV_EXEC_TESTS_CMD_SPACED}")
|
|
||||||
|
|
||||||
message(STATUS "Command to capture counters and generate report: ")
|
|
||||||
string(REPLACE ";" " " LCOV_CAPTURE_CMD_SPACED "${LCOV_CAPTURE_CMD}")
|
|
||||||
message(STATUS "${LCOV_CAPTURE_CMD_SPACED}")
|
|
||||||
|
|
||||||
message(STATUS "Command to add baseline counters: ")
|
|
||||||
string(REPLACE ";" " " LCOV_BASELINE_COUNT_CMD_SPACED "${LCOV_BASELINE_COUNT_CMD}")
|
|
||||||
message(STATUS "${LCOV_BASELINE_COUNT_CMD_SPACED}")
|
|
||||||
|
|
||||||
message(STATUS "Command to filter collected data: ")
|
|
||||||
string(REPLACE ";" " " LCOV_FILTER_CMD_SPACED "${LCOV_FILTER_CMD}")
|
|
||||||
message(STATUS "${LCOV_FILTER_CMD_SPACED}")
|
|
||||||
|
|
||||||
message(STATUS "Command to generate lcov HTML output: ")
|
|
||||||
string(REPLACE ";" " " LCOV_GEN_HTML_CMD_SPACED "${LCOV_GEN_HTML_CMD}")
|
|
||||||
message(STATUS "${LCOV_GEN_HTML_CMD_SPACED}")
|
|
||||||
|
|
||||||
if(${Coverage_SONARQUBE})
|
|
||||||
message(STATUS "Command to generate SonarQube XML output: ")
|
|
||||||
string(REPLACE ";" " " GCOVR_XML_CMD_SPACED "${GCOVR_XML_CMD}")
|
|
||||||
message(STATUS "${GCOVR_XML_CMD_SPACED}")
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Setup target
|
|
||||||
add_custom_target(${Coverage_NAME}
|
|
||||||
COMMAND ${LCOV_CLEAN_CMD}
|
|
||||||
COMMAND ${LCOV_BASELINE_CMD}
|
|
||||||
COMMAND ${LCOV_EXEC_TESTS_CMD}
|
|
||||||
COMMAND ${LCOV_CAPTURE_CMD}
|
|
||||||
COMMAND ${LCOV_BASELINE_COUNT_CMD}
|
|
||||||
COMMAND ${LCOV_FILTER_CMD}
|
|
||||||
COMMAND ${LCOV_GEN_HTML_CMD}
|
|
||||||
${GCOVR_XML_CMD_COMMAND}
|
|
||||||
|
|
||||||
# Set output files as GENERATED (will be removed on 'make clean')
|
|
||||||
BYPRODUCTS
|
|
||||||
${Coverage_NAME}.base
|
|
||||||
${Coverage_NAME}.capture
|
|
||||||
${Coverage_NAME}.total
|
|
||||||
${Coverage_NAME}.info
|
|
||||||
${GCOVR_XML_CMD_BYPRODUCTS}
|
|
||||||
${Coverage_NAME}/index.html
|
|
||||||
WORKING_DIRECTORY ${PROJECT_BINARY_DIR}
|
|
||||||
DEPENDS ${Coverage_DEPENDENCIES}
|
|
||||||
VERBATIM # Protect arguments to commands
|
|
||||||
COMMENT "Resetting code coverage counters to zero.\nProcessing code coverage counters and generating report."
|
|
||||||
)
|
|
||||||
|
|
||||||
# Show where to find the lcov info report
|
|
||||||
add_custom_command(TARGET ${Coverage_NAME} POST_BUILD
|
|
||||||
COMMAND ;
|
|
||||||
COMMENT "Lcov code coverage info report saved in ${Coverage_NAME}.info."
|
|
||||||
${GCOVR_XML_CMD_COMMENT}
|
|
||||||
)
|
|
||||||
|
|
||||||
# Show info where to find the report
|
|
||||||
add_custom_command(TARGET ${Coverage_NAME} POST_BUILD
|
|
||||||
COMMAND ;
|
|
||||||
COMMENT "Open ./${Coverage_NAME}/index.html in your browser to view the coverage report."
|
|
||||||
)
|
|
||||||
|
|
||||||
endfunction() # setup_target_for_coverage_lcov
|
|
||||||
|
|
||||||
# Defines a target for running and collection code coverage information
|
|
||||||
# Builds dependencies, runs the given executable and outputs reports.
|
|
||||||
# NOTE! The executable should always have a ZERO as exit code otherwise
|
|
||||||
# the coverage generation will not complete.
|
|
||||||
#
|
|
||||||
# setup_target_for_coverage_gcovr_xml(
|
|
||||||
# NAME ctest_coverage # New target name
|
|
||||||
# EXECUTABLE ctest -j ${PROCESSOR_COUNT} # Executable in PROJECT_BINARY_DIR
|
|
||||||
# DEPENDENCIES executable_target # Dependencies to build first
|
|
||||||
# BASE_DIRECTORY "../" # Base directory for report
|
|
||||||
# # (defaults to PROJECT_SOURCE_DIR)
|
|
||||||
# EXCLUDE "src/dir1/*" "src/dir2/*" # Patterns to exclude (can be relative
|
|
||||||
# # to BASE_DIRECTORY, with CMake 3.4+)
|
|
||||||
# )
|
|
||||||
# The user can set the variable GCOVR_ADDITIONAL_ARGS to supply additional flags to the
|
|
||||||
# GCVOR command.
|
|
||||||
function(setup_target_for_coverage_gcovr_xml)
|
|
||||||
|
|
||||||
set(options NONE)
|
|
||||||
set(oneValueArgs BASE_DIRECTORY NAME)
|
|
||||||
set(multiValueArgs EXCLUDE EXECUTABLE EXECUTABLE_ARGS DEPENDENCIES)
|
|
||||||
cmake_parse_arguments(Coverage "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
|
|
||||||
|
|
||||||
if(NOT GCOVR_PATH)
|
|
||||||
message(FATAL_ERROR "gcovr not found! Aborting...")
|
|
||||||
endif() # NOT GCOVR_PATH
|
|
||||||
|
|
||||||
# Set base directory (as absolute path), or default to PROJECT_SOURCE_DIR
|
|
||||||
if(DEFINED Coverage_BASE_DIRECTORY)
|
|
||||||
get_filename_component(BASEDIR ${Coverage_BASE_DIRECTORY} ABSOLUTE)
|
|
||||||
else()
|
|
||||||
set(BASEDIR ${PROJECT_SOURCE_DIR})
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Collect excludes (CMake 3.4+: Also compute absolute paths)
|
|
||||||
set(GCOVR_EXCLUDES "")
|
|
||||||
foreach(EXCLUDE ${Coverage_EXCLUDE} ${COVERAGE_EXCLUDES} ${COVERAGE_GCOVR_EXCLUDES})
|
|
||||||
if(CMAKE_VERSION VERSION_GREATER 3.4)
|
|
||||||
get_filename_component(EXCLUDE ${EXCLUDE} ABSOLUTE BASE_DIR ${BASEDIR})
|
|
||||||
endif()
|
|
||||||
list(APPEND GCOVR_EXCLUDES "${EXCLUDE}")
|
|
||||||
endforeach()
|
|
||||||
list(REMOVE_DUPLICATES GCOVR_EXCLUDES)
|
|
||||||
|
|
||||||
# Combine excludes to several -e arguments
|
|
||||||
set(GCOVR_EXCLUDE_ARGS "")
|
|
||||||
foreach(EXCLUDE ${GCOVR_EXCLUDES})
|
|
||||||
list(APPEND GCOVR_EXCLUDE_ARGS "-e")
|
|
||||||
list(APPEND GCOVR_EXCLUDE_ARGS "${EXCLUDE}")
|
|
||||||
endforeach()
|
|
||||||
|
|
||||||
# Set up commands which will be run to generate coverage data
|
|
||||||
# Run tests
|
|
||||||
set(GCOVR_XML_EXEC_TESTS_CMD
|
|
||||||
${Coverage_EXECUTABLE} ${Coverage_EXECUTABLE_ARGS}
|
|
||||||
)
|
|
||||||
# Running gcovr
|
|
||||||
set(GCOVR_XML_CMD
|
|
||||||
${GCOVR_PATH} --xml ${Coverage_NAME}.xml -r ${BASEDIR} ${GCOVR_ADDITIONAL_ARGS}
|
|
||||||
${GCOVR_EXCLUDE_ARGS} --object-directory=${PROJECT_BINARY_DIR}
|
|
||||||
)
|
|
||||||
|
|
||||||
if(CODE_COVERAGE_VERBOSE)
|
|
||||||
message(STATUS "Executed command report")
|
|
||||||
|
|
||||||
message(STATUS "Command to run tests: ")
|
|
||||||
string(REPLACE ";" " " GCOVR_XML_EXEC_TESTS_CMD_SPACED "${GCOVR_XML_EXEC_TESTS_CMD}")
|
|
||||||
message(STATUS "${GCOVR_XML_EXEC_TESTS_CMD_SPACED}")
|
|
||||||
|
|
||||||
message(STATUS "Command to generate gcovr XML coverage data: ")
|
|
||||||
string(REPLACE ";" " " GCOVR_XML_CMD_SPACED "${GCOVR_XML_CMD}")
|
|
||||||
message(STATUS "${GCOVR_XML_CMD_SPACED}")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
add_custom_target(${Coverage_NAME}
|
|
||||||
COMMAND ${GCOVR_XML_EXEC_TESTS_CMD}
|
|
||||||
COMMAND ${GCOVR_XML_CMD}
|
|
||||||
|
|
||||||
BYPRODUCTS ${Coverage_NAME}.xml
|
|
||||||
WORKING_DIRECTORY ${PROJECT_BINARY_DIR}
|
|
||||||
DEPENDS ${Coverage_DEPENDENCIES}
|
|
||||||
VERBATIM # Protect arguments to commands
|
|
||||||
COMMENT "Running gcovr to produce Cobertura code coverage report."
|
|
||||||
)
|
|
||||||
|
|
||||||
# Show info where to find the report
|
|
||||||
add_custom_command(TARGET ${Coverage_NAME} POST_BUILD
|
|
||||||
COMMAND ;
|
|
||||||
COMMENT "Cobertura code coverage report saved in ${Coverage_NAME}.xml."
|
|
||||||
)
|
|
||||||
endfunction() # setup_target_for_coverage_gcovr_xml
|
|
||||||
|
|
||||||
# Defines a target for running and collection code coverage information
|
|
||||||
# Builds dependencies, runs the given executable and outputs reports.
|
|
||||||
# NOTE! The executable should always have a ZERO as exit code otherwise
|
|
||||||
# the coverage generation will not complete.
|
|
||||||
#
|
|
||||||
# setup_target_for_coverage_gcovr_html(
|
|
||||||
# NAME ctest_coverage # New target name
|
|
||||||
# EXECUTABLE ctest -j ${PROCESSOR_COUNT} # Executable in PROJECT_BINARY_DIR
|
|
||||||
# DEPENDENCIES executable_target # Dependencies to build first
|
|
||||||
# BASE_DIRECTORY "../" # Base directory for report
|
|
||||||
# # (defaults to PROJECT_SOURCE_DIR)
|
|
||||||
# EXCLUDE "src/dir1/*" "src/dir2/*" # Patterns to exclude (can be relative
|
|
||||||
# # to BASE_DIRECTORY, with CMake 3.4+)
|
|
||||||
# )
|
|
||||||
# The user can set the variable GCOVR_ADDITIONAL_ARGS to supply additional flags to the
|
|
||||||
# GCVOR command.
|
|
||||||
function(setup_target_for_coverage_gcovr_html)
|
|
||||||
|
|
||||||
set(options NONE)
|
|
||||||
set(oneValueArgs BASE_DIRECTORY NAME)
|
|
||||||
set(multiValueArgs EXCLUDE EXECUTABLE EXECUTABLE_ARGS DEPENDENCIES)
|
|
||||||
cmake_parse_arguments(Coverage "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
|
|
||||||
|
|
||||||
if(NOT GCOVR_PATH)
|
|
||||||
message(FATAL_ERROR "gcovr not found! Aborting...")
|
|
||||||
endif() # NOT GCOVR_PATH
|
|
||||||
|
|
||||||
# Set base directory (as absolute path), or default to PROJECT_SOURCE_DIR
|
|
||||||
if(DEFINED Coverage_BASE_DIRECTORY)
|
|
||||||
get_filename_component(BASEDIR ${Coverage_BASE_DIRECTORY} ABSOLUTE)
|
|
||||||
else()
|
|
||||||
set(BASEDIR ${PROJECT_SOURCE_DIR})
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Collect excludes (CMake 3.4+: Also compute absolute paths)
|
|
||||||
set(GCOVR_EXCLUDES "")
|
|
||||||
foreach(EXCLUDE ${Coverage_EXCLUDE} ${COVERAGE_EXCLUDES} ${COVERAGE_GCOVR_EXCLUDES})
|
|
||||||
if(CMAKE_VERSION VERSION_GREATER 3.4)
|
|
||||||
get_filename_component(EXCLUDE ${EXCLUDE} ABSOLUTE BASE_DIR ${BASEDIR})
|
|
||||||
endif()
|
|
||||||
list(APPEND GCOVR_EXCLUDES "${EXCLUDE}")
|
|
||||||
endforeach()
|
|
||||||
list(REMOVE_DUPLICATES GCOVR_EXCLUDES)
|
|
||||||
|
|
||||||
# Combine excludes to several -e arguments
|
|
||||||
set(GCOVR_EXCLUDE_ARGS "")
|
|
||||||
foreach(EXCLUDE ${GCOVR_EXCLUDES})
|
|
||||||
list(APPEND GCOVR_EXCLUDE_ARGS "-e")
|
|
||||||
list(APPEND GCOVR_EXCLUDE_ARGS "${EXCLUDE}")
|
|
||||||
endforeach()
|
|
||||||
|
|
||||||
# Set up commands which will be run to generate coverage data
|
|
||||||
# Run tests
|
|
||||||
set(GCOVR_HTML_EXEC_TESTS_CMD
|
|
||||||
${Coverage_EXECUTABLE} ${Coverage_EXECUTABLE_ARGS}
|
|
||||||
)
|
|
||||||
# Create folder
|
|
||||||
set(GCOVR_HTML_FOLDER_CMD
|
|
||||||
${CMAKE_COMMAND} -E make_directory ${PROJECT_BINARY_DIR}/${Coverage_NAME}
|
|
||||||
)
|
|
||||||
# Running gcovr
|
|
||||||
set(GCOVR_HTML_CMD
|
|
||||||
${GCOVR_PATH} --html ${Coverage_NAME}/index.html --html-details -r ${BASEDIR} ${GCOVR_ADDITIONAL_ARGS}
|
|
||||||
${GCOVR_EXCLUDE_ARGS} --object-directory=${PROJECT_BINARY_DIR}
|
|
||||||
)
|
|
||||||
|
|
||||||
if(CODE_COVERAGE_VERBOSE)
|
|
||||||
message(STATUS "Executed command report")
|
|
||||||
|
|
||||||
message(STATUS "Command to run tests: ")
|
|
||||||
string(REPLACE ";" " " GCOVR_HTML_EXEC_TESTS_CMD_SPACED "${GCOVR_HTML_EXEC_TESTS_CMD}")
|
|
||||||
message(STATUS "${GCOVR_HTML_EXEC_TESTS_CMD_SPACED}")
|
|
||||||
|
|
||||||
message(STATUS "Command to create a folder: ")
|
|
||||||
string(REPLACE ";" " " GCOVR_HTML_FOLDER_CMD_SPACED "${GCOVR_HTML_FOLDER_CMD}")
|
|
||||||
message(STATUS "${GCOVR_HTML_FOLDER_CMD_SPACED}")
|
|
||||||
|
|
||||||
message(STATUS "Command to generate gcovr HTML coverage data: ")
|
|
||||||
string(REPLACE ";" " " GCOVR_HTML_CMD_SPACED "${GCOVR_HTML_CMD}")
|
|
||||||
message(STATUS "${GCOVR_HTML_CMD_SPACED}")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
add_custom_target(${Coverage_NAME}
|
|
||||||
COMMAND ${GCOVR_HTML_EXEC_TESTS_CMD}
|
|
||||||
COMMAND ${GCOVR_HTML_FOLDER_CMD}
|
|
||||||
COMMAND ${GCOVR_HTML_CMD}
|
|
||||||
|
|
||||||
BYPRODUCTS ${PROJECT_BINARY_DIR}/${Coverage_NAME}/index.html # report directory
|
|
||||||
WORKING_DIRECTORY ${PROJECT_BINARY_DIR}
|
|
||||||
DEPENDS ${Coverage_DEPENDENCIES}
|
|
||||||
VERBATIM # Protect arguments to commands
|
|
||||||
COMMENT "Running gcovr to produce HTML code coverage report."
|
|
||||||
)
|
|
||||||
|
|
||||||
# Show info where to find the report
|
|
||||||
add_custom_command(TARGET ${Coverage_NAME} POST_BUILD
|
|
||||||
COMMAND ;
|
|
||||||
COMMENT "Open ./${Coverage_NAME}/index.html in your browser to view the coverage report."
|
|
||||||
)
|
|
||||||
|
|
||||||
endfunction() # setup_target_for_coverage_gcovr_html
|
|
||||||
|
|
||||||
# Defines a target for running and collection code coverage information
|
|
||||||
# Builds dependencies, runs the given executable and outputs reports.
|
|
||||||
# NOTE! The executable should always have a ZERO as exit code otherwise
|
|
||||||
# the coverage generation will not complete.
|
|
||||||
#
|
|
||||||
# setup_target_for_coverage_fastcov(
|
|
||||||
# NAME testrunner_coverage # New target name
|
|
||||||
# EXECUTABLE testrunner -j ${PROCESSOR_COUNT} # Executable in PROJECT_BINARY_DIR
|
|
||||||
# DEPENDENCIES testrunner # Dependencies to build first
|
|
||||||
# BASE_DIRECTORY "../" # Base directory for report
|
|
||||||
# # (defaults to PROJECT_SOURCE_DIR)
|
|
||||||
# EXCLUDE "src/dir1/" "src/dir2/" # Patterns to exclude.
|
|
||||||
# NO_DEMANGLE # Don't demangle C++ symbols
|
|
||||||
# # even if c++filt is found
|
|
||||||
# SKIP_HTML # Don't create html report
|
|
||||||
# POST_CMD perl -i -pe s!${PROJECT_SOURCE_DIR}/!!g ctest_coverage.json # E.g. for stripping source dir from file paths
|
|
||||||
# )
|
|
||||||
function(setup_target_for_coverage_fastcov)
|
|
||||||
|
|
||||||
set(options NO_DEMANGLE SKIP_HTML)
|
|
||||||
set(oneValueArgs BASE_DIRECTORY NAME)
|
|
||||||
set(multiValueArgs EXCLUDE EXECUTABLE EXECUTABLE_ARGS DEPENDENCIES FASTCOV_ARGS GENHTML_ARGS POST_CMD)
|
|
||||||
cmake_parse_arguments(Coverage "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
|
|
||||||
|
|
||||||
if(NOT FASTCOV_PATH)
|
|
||||||
message(FATAL_ERROR "fastcov not found! Aborting...")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(NOT Coverage_SKIP_HTML AND NOT GENHTML_PATH)
|
|
||||||
message(FATAL_ERROR "genhtml not found! Aborting...")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Set base directory (as absolute path), or default to PROJECT_SOURCE_DIR
|
|
||||||
if(Coverage_BASE_DIRECTORY)
|
|
||||||
get_filename_component(BASEDIR ${Coverage_BASE_DIRECTORY} ABSOLUTE)
|
|
||||||
else()
|
|
||||||
set(BASEDIR ${PROJECT_SOURCE_DIR})
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Collect excludes (Patterns, not paths, for fastcov)
|
|
||||||
set(FASTCOV_EXCLUDES "")
|
|
||||||
foreach(EXCLUDE ${Coverage_EXCLUDE} ${COVERAGE_EXCLUDES} ${COVERAGE_FASTCOV_EXCLUDES})
|
|
||||||
list(APPEND FASTCOV_EXCLUDES "${EXCLUDE}")
|
|
||||||
endforeach()
|
|
||||||
list(REMOVE_DUPLICATES FASTCOV_EXCLUDES)
|
|
||||||
|
|
||||||
# Conditional arguments
|
|
||||||
if(CPPFILT_PATH AND NOT ${Coverage_NO_DEMANGLE})
|
|
||||||
set(GENHTML_EXTRA_ARGS "--demangle-cpp")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Set up commands which will be run to generate coverage data
|
|
||||||
set(FASTCOV_EXEC_TESTS_CMD ${Coverage_EXECUTABLE} ${Coverage_EXECUTABLE_ARGS})
|
|
||||||
|
|
||||||
set(FASTCOV_CAPTURE_CMD ${FASTCOV_PATH} ${Coverage_FASTCOV_ARGS} --gcov ${GCOV_PATH}
|
|
||||||
--search-directory ${BASEDIR}
|
|
||||||
--process-gcno
|
|
||||||
--output ${Coverage_NAME}.json
|
|
||||||
--exclude ${FASTCOV_EXCLUDES}
|
|
||||||
)
|
|
||||||
|
|
||||||
set(FASTCOV_CONVERT_CMD ${FASTCOV_PATH}
|
|
||||||
-C ${Coverage_NAME}.json --lcov --output ${Coverage_NAME}.info
|
|
||||||
)
|
|
||||||
|
|
||||||
if(Coverage_SKIP_HTML)
|
|
||||||
set(FASTCOV_HTML_CMD ";")
|
|
||||||
else()
|
|
||||||
set(FASTCOV_HTML_CMD ${GENHTML_PATH} ${GENHTML_EXTRA_ARGS} ${Coverage_GENHTML_ARGS}
|
|
||||||
-o ${Coverage_NAME} ${Coverage_NAME}.info
|
|
||||||
)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
set(FASTCOV_POST_CMD ";")
|
|
||||||
if(Coverage_POST_CMD)
|
|
||||||
set(FASTCOV_POST_CMD ${Coverage_POST_CMD})
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(CODE_COVERAGE_VERBOSE)
|
|
||||||
message(STATUS "Code coverage commands for target ${Coverage_NAME} (fastcov):")
|
|
||||||
|
|
||||||
message(" Running tests:")
|
|
||||||
string(REPLACE ";" " " FASTCOV_EXEC_TESTS_CMD_SPACED "${FASTCOV_EXEC_TESTS_CMD}")
|
|
||||||
message(" ${FASTCOV_EXEC_TESTS_CMD_SPACED}")
|
|
||||||
|
|
||||||
message(" Capturing fastcov counters and generating report:")
|
|
||||||
string(REPLACE ";" " " FASTCOV_CAPTURE_CMD_SPACED "${FASTCOV_CAPTURE_CMD}")
|
|
||||||
message(" ${FASTCOV_CAPTURE_CMD_SPACED}")
|
|
||||||
|
|
||||||
message(" Converting fastcov .json to lcov .info:")
|
|
||||||
string(REPLACE ";" " " FASTCOV_CONVERT_CMD_SPACED "${FASTCOV_CONVERT_CMD}")
|
|
||||||
message(" ${FASTCOV_CONVERT_CMD_SPACED}")
|
|
||||||
|
|
||||||
if(NOT Coverage_SKIP_HTML)
|
|
||||||
message(" Generating HTML report: ")
|
|
||||||
string(REPLACE ";" " " FASTCOV_HTML_CMD_SPACED "${FASTCOV_HTML_CMD}")
|
|
||||||
message(" ${FASTCOV_HTML_CMD_SPACED}")
|
|
||||||
endif()
|
|
||||||
if(Coverage_POST_CMD)
|
|
||||||
message(" Running post command: ")
|
|
||||||
string(REPLACE ";" " " FASTCOV_POST_CMD_SPACED "${FASTCOV_POST_CMD}")
|
|
||||||
message(" ${FASTCOV_POST_CMD_SPACED}")
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Setup target
|
|
||||||
add_custom_target(${Coverage_NAME}
|
|
||||||
|
|
||||||
# Cleanup fastcov
|
|
||||||
COMMAND ${FASTCOV_PATH} ${Coverage_FASTCOV_ARGS} --gcov ${GCOV_PATH}
|
|
||||||
--search-directory ${BASEDIR}
|
|
||||||
--zerocounters
|
|
||||||
|
|
||||||
COMMAND ${FASTCOV_EXEC_TESTS_CMD}
|
|
||||||
COMMAND ${FASTCOV_CAPTURE_CMD}
|
|
||||||
COMMAND ${FASTCOV_CONVERT_CMD}
|
|
||||||
COMMAND ${FASTCOV_HTML_CMD}
|
|
||||||
COMMAND ${FASTCOV_POST_CMD}
|
|
||||||
|
|
||||||
# Set output files as GENERATED (will be removed on 'make clean')
|
|
||||||
BYPRODUCTS
|
|
||||||
${Coverage_NAME}.info
|
|
||||||
${Coverage_NAME}.json
|
|
||||||
${Coverage_NAME}/index.html # report directory
|
|
||||||
|
|
||||||
WORKING_DIRECTORY ${PROJECT_BINARY_DIR}
|
|
||||||
DEPENDS ${Coverage_DEPENDENCIES}
|
|
||||||
VERBATIM # Protect arguments to commands
|
|
||||||
COMMENT "Resetting code coverage counters to zero. Processing code coverage counters and generating report."
|
|
||||||
)
|
|
||||||
|
|
||||||
set(INFO_MSG "fastcov code coverage info report saved in ${Coverage_NAME}.info and ${Coverage_NAME}.json.")
|
|
||||||
if(NOT Coverage_SKIP_HTML)
|
|
||||||
string(APPEND INFO_MSG " Open ${PROJECT_BINARY_DIR}/${Coverage_NAME}/index.html in your browser to view the coverage report.")
|
|
||||||
endif()
|
|
||||||
# Show where to find the fastcov info report
|
|
||||||
add_custom_command(TARGET ${Coverage_NAME} POST_BUILD
|
|
||||||
COMMAND ${CMAKE_COMMAND} -E echo ${INFO_MSG}
|
|
||||||
)
|
|
||||||
|
|
||||||
endfunction() # setup_target_for_coverage_fastcov
|
|
||||||
|
|
||||||
function(append_coverage_compiler_flags)
|
|
||||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${COVERAGE_COMPILER_FLAGS}" PARENT_SCOPE)
|
|
||||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${COVERAGE_COMPILER_FLAGS}" PARENT_SCOPE)
|
|
||||||
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} ${COVERAGE_COMPILER_FLAGS}" PARENT_SCOPE)
|
|
||||||
message(STATUS "Appending code coverage compiler flags: ${COVERAGE_COMPILER_FLAGS}")
|
|
||||||
endfunction() # append_coverage_compiler_flags
|
|
||||||
|
|
||||||
# Setup coverage for specific library
|
|
||||||
function(append_coverage_compiler_flags_to_target name)
|
|
||||||
separate_arguments(_flag_list NATIVE_COMMAND "${COVERAGE_COMPILER_FLAGS}")
|
|
||||||
target_compile_options(${name} PRIVATE ${_flag_list})
|
|
||||||
if(CMAKE_C_COMPILER_ID STREQUAL "GNU" OR CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR CMAKE_Fortran_COMPILER_ID STREQUAL "GNU")
|
|
||||||
target_link_libraries(${name} PRIVATE gcov)
|
|
||||||
endif()
|
|
||||||
endfunction()
|
|
||||||
@@ -6,7 +6,7 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|||||||
|
|
||||||
# Put the include dirs which are in the source or build tree
|
# Put the include dirs which are in the source or build tree
|
||||||
# before all other include dirs, so the headers in the sources
|
# before all other include dirs, so the headers in the sources
|
||||||
# are preferred over the already installed ones
|
# are prefered over the already installed ones
|
||||||
# since cmake 2.4.1
|
# since cmake 2.4.1
|
||||||
set(CMAKE_INCLUDE_DIRECTORIES_PROJECT_BEFORE ON)
|
set(CMAKE_INCLUDE_DIRECTORIES_PROJECT_BEFORE ON)
|
||||||
|
|
||||||
|
|||||||
@@ -50,28 +50,15 @@ file(READ ${HEADERS_LIST_FILE} HEADERS_LIST)
|
|||||||
|
|
||||||
set(symbols)
|
set(symbols)
|
||||||
foreach(header ${HEADERS_LIST})
|
foreach(header ${HEADERS_LIST})
|
||||||
file(READ ${header} header_content)
|
|
||||||
|
|
||||||
# Filter only lines containing the FILTER_PATTERN
|
# Filter only lines containing the FILTER_PATTERN
|
||||||
# separated from the function name with one optional newline
|
file(STRINGS ${header} contain_filter
|
||||||
string(REGEX MATCHALL
|
REGEX "^.*${FILTER_PATTERN}.*[(]"
|
||||||
"${FILTER_PATTERN}[^(\n]*\n?[^(\n]*[(]"
|
|
||||||
contain_filter
|
|
||||||
"${header_content}"
|
|
||||||
)
|
|
||||||
|
|
||||||
# Remove the optional newline now
|
|
||||||
string(REGEX REPLACE
|
|
||||||
"(.+)\n?(.*)"
|
|
||||||
"\\1\\2"
|
|
||||||
oneline
|
|
||||||
"${contain_filter}"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
# Remove function-like macros
|
# Remove function-like macros
|
||||||
# and anything with two underscores that sounds suspicious
|
foreach(line ${contain_filter})
|
||||||
foreach(line ${oneline})
|
if (NOT ${line} MATCHES ".*#[ ]*define")
|
||||||
if (NOT ${line} MATCHES ".*(#[ ]*define|__)")
|
|
||||||
list(APPEND not_macro ${line})
|
list(APPEND not_macro ${line})
|
||||||
endif()
|
endif()
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|||||||
@@ -220,12 +220,13 @@
|
|||||||
|
|
||||||
# Search for python which is required
|
# Search for python which is required
|
||||||
if (ABIMap_FIND_REQURIED)
|
if (ABIMap_FIND_REQURIED)
|
||||||
find_package(Python REQUIRED)
|
find_package(PythonInterp REQUIRED)
|
||||||
else()
|
else()
|
||||||
find_package(Python)
|
find_package(PythonInterp)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (TARGET Python::Interpreter)
|
|
||||||
|
if (PYTHONINTERP_FOUND)
|
||||||
# Search for abimap tool used to generate the map files
|
# Search for abimap tool used to generate the map files
|
||||||
find_program(ABIMAP_EXECUTABLE NAMES abimap DOC "path to the abimap executable")
|
find_program(ABIMAP_EXECUTABLE NAMES abimap DOC "path to the abimap executable")
|
||||||
mark_as_advanced(ABIMAP_EXECUTABLE)
|
mark_as_advanced(ABIMAP_EXECUTABLE)
|
||||||
|
|||||||
@@ -1,8 +1,4 @@
|
|||||||
# - Try to find ARGP
|
# - Try to find ARGP
|
||||||
#
|
|
||||||
# The argp can be either shipped as part of libc (ex. glibc) or as a separate
|
|
||||||
# library that requires additional linking (ex. Windows, Mac, musl libc, ...)
|
|
||||||
#
|
|
||||||
# Once done this will define
|
# Once done this will define
|
||||||
#
|
#
|
||||||
# ARGP_ROOT_DIR - Set this variable to the root installation of ARGP
|
# ARGP_ROOT_DIR - Set this variable to the root installation of ARGP
|
||||||
@@ -64,7 +60,7 @@ if (ARGP_LIBRARY)
|
|||||||
endif (ARGP_LIBRARY)
|
endif (ARGP_LIBRARY)
|
||||||
|
|
||||||
include(FindPackageHandleStandardArgs)
|
include(FindPackageHandleStandardArgs)
|
||||||
find_package_handle_standard_args(Argp DEFAULT_MSG ARGP_LIBRARIES ARGP_INCLUDE_DIR)
|
find_package_handle_standard_args(ARGP DEFAULT_MSG ARGP_LIBRARIES ARGP_INCLUDE_DIR)
|
||||||
|
|
||||||
# show the ARGP_INCLUDE_DIR and ARGP_LIBRARIES variables only in the advanced view
|
# show the ARGP_INCLUDE_DIR and ARGP_LIBRARIES variables only in the advanced view
|
||||||
mark_as_advanced(ARGP_INCLUDE_DIR ARGP_LIBRARIES)
|
mark_as_advanced(ARGP_INCLUDE_DIR ARGP_LIBRARIES)
|
||||||
|
|||||||
@@ -39,15 +39,6 @@ find_path(GCRYPT_INCLUDE_DIR
|
|||||||
include
|
include
|
||||||
)
|
)
|
||||||
|
|
||||||
find_path(GCRYPT_ERROR_INCLUDE_DIR
|
|
||||||
NAMES
|
|
||||||
gpg-error.h
|
|
||||||
HINTS
|
|
||||||
${_GCRYPT_ROOT_HINTS_AND_PATHS}
|
|
||||||
PATH_SUFFIXES
|
|
||||||
include
|
|
||||||
)
|
|
||||||
|
|
||||||
find_library(GCRYPT_LIBRARY
|
find_library(GCRYPT_LIBRARY
|
||||||
NAMES
|
NAMES
|
||||||
gcrypt
|
gcrypt
|
||||||
@@ -65,10 +56,8 @@ find_library(GCRYPT_ERROR_LIBRARY
|
|||||||
libgpg-error6-0
|
libgpg-error6-0
|
||||||
HINTS
|
HINTS
|
||||||
${_GCRYPT_ROOT_HINTS_AND_PATHS}
|
${_GCRYPT_ROOT_HINTS_AND_PATHS}
|
||||||
PATH_SUFFIXES
|
|
||||||
lib
|
|
||||||
)
|
)
|
||||||
set(GCRYPT_LIBRARIES ${GCRYPT_ERROR_LIBRARY} ${GCRYPT_LIBRARY})
|
set(GCRYPT_LIBRARIES ${GCRYPT_LIBRARY} ${GCRYPT_ERROR_LIBRARY})
|
||||||
|
|
||||||
if (GCRYPT_INCLUDE_DIR)
|
if (GCRYPT_INCLUDE_DIR)
|
||||||
file(STRINGS "${GCRYPT_INCLUDE_DIR}/gcrypt.h" _gcrypt_version_str REGEX "^#define GCRYPT_VERSION \"[0-9]+\\.[0-9]+\\.[0-9]")
|
file(STRINGS "${GCRYPT_INCLUDE_DIR}/gcrypt.h" _gcrypt_version_str REGEX "^#define GCRYPT_VERSION \"[0-9]+\\.[0-9]+\\.[0-9]")
|
||||||
@@ -94,25 +83,5 @@ else (GCRYPT_VERSION)
|
|||||||
GCRYPT_LIBRARIES)
|
GCRYPT_LIBRARIES)
|
||||||
endif (GCRYPT_VERSION)
|
endif (GCRYPT_VERSION)
|
||||||
|
|
||||||
# show the GCRYPT_INCLUDE_DIRS, GCRYPT_LIBRARIES and GCRYPT_ERROR_INCLUDE_DIR variables only in the advanced view
|
# show the GCRYPT_INCLUDE_DIRS and GCRYPT_LIBRARIES variables only in the advanced view
|
||||||
mark_as_advanced(GCRYPT_INCLUDE_DIR GCRYPT_ERROR_INCLUDE_DIR GCRYPT_LIBRARIES)
|
mark_as_advanced(GCRYPT_INCLUDE_DIR GCRYPT_LIBRARIES)
|
||||||
|
|
||||||
if(GCRYPT_FOUND)
|
|
||||||
if(NOT TARGET libgcrypt::libgcrypt)
|
|
||||||
add_library(libgcrypt::libgcrypt UNKNOWN IMPORTED)
|
|
||||||
set_target_properties(libgcrypt::libgcrypt PROPERTIES
|
|
||||||
INTERFACE_INCLUDE_DIRECTORIES "${GCRYPT_INCLUDE_DIR}"
|
|
||||||
INTERFACE_LINK_LIBRARIES libgcrypt::libgcrypt
|
|
||||||
IMPORTED_LINK_INTERFACE_LANGUAGES "C"
|
|
||||||
IMPORTED_LOCATION "${GCRYPT_LIBRARY}")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(NOT TARGET libgpg-error::libgpg-error)
|
|
||||||
add_library(libgpg-error::libgpg-error UNKNOWN IMPORTED)
|
|
||||||
set_target_properties(libgpg-error::libgpg-error PROPERTIES
|
|
||||||
INTERFACE_INCLUDE_DIRECTORIES "${GCRYPT_ERROR_INCLUDE_DIR}"
|
|
||||||
INTERFACE_LINK_LIBRARIES libgpg-error::libgpg-error
|
|
||||||
IMPORTED_LINK_INTERFACE_LANGUAGES "C"
|
|
||||||
IMPORTED_LOCATION "${GCRYPT_ERROR_LIBRARY}")
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
|
|||||||
@@ -5,14 +5,12 @@
|
|||||||
# GSSAPI_ROOT_DIR - Set this variable to the root installation of GSSAPI
|
# GSSAPI_ROOT_DIR - Set this variable to the root installation of GSSAPI
|
||||||
#
|
#
|
||||||
# Read-Only variables:
|
# Read-Only variables:
|
||||||
# GSSAPI_FLAVOR_MIT - set to TRUE if MIT Kerberos has been found
|
# GSSAPI_FLAVOR_MIT - set to TURE if MIT Kerberos has been found
|
||||||
# GSSAPI_FLAVOR_HEIMDAL - set to TRUE if Heimdal Keberos has been found
|
# GSSAPI_FLAVOR_HEIMDAL - set to TRUE if Heimdal Keberos has been found
|
||||||
# GSSAPI_FOUND - system has GSSAPI
|
# GSSAPI_FOUND - system has GSSAPI
|
||||||
# GSSAPI_INCLUDE_DIR - the GSSAPI include directory
|
# GSSAPI_INCLUDE_DIR - the GSSAPI include directory
|
||||||
# GSSAPI_LIBRARIES - Link these to use GSSAPI
|
# GSSAPI_LIBRARIES - Link these to use GSSAPI
|
||||||
# GSSAPI_DEFINITIONS - Compiler switches required for using GSSAPI
|
# GSSAPI_DEFINITIONS - Compiler switches required for using GSSAPI
|
||||||
# GSSAPI_PC_REQUIRES - pkg-config module name if found, needed for
|
|
||||||
# Requires.private for static linking
|
|
||||||
#
|
#
|
||||||
#=============================================================================
|
#=============================================================================
|
||||||
# Copyright (c) 2013 Andreas Schneider <asn@cryptomilk.org>
|
# Copyright (c) 2013 Andreas Schneider <asn@cryptomilk.org>
|
||||||
@@ -26,23 +24,12 @@
|
|||||||
#=============================================================================
|
#=============================================================================
|
||||||
#
|
#
|
||||||
|
|
||||||
set(_mit_modname "mit-krb5-gssapi")
|
|
||||||
set(_heimdal_modname "heimdal-gssapi")
|
|
||||||
|
|
||||||
if(NOT _GSSAPI_ROOT_HINTS AND NOT _GSSAPI_ROOT_PATHS)
|
|
||||||
find_package(PkgConfig QUIET)
|
|
||||||
if (PKG_CONFIG_FOUND)
|
|
||||||
pkg_search_module(_GSSAPI ${_mit_modname} ${_heimdal_modname})
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
|
|
||||||
find_path(GSSAPI_ROOT_DIR
|
find_path(GSSAPI_ROOT_DIR
|
||||||
NAMES
|
NAMES
|
||||||
include/gssapi.h
|
include/gssapi.h
|
||||||
include/gssapi/gssapi.h
|
include/gssapi/gssapi.h
|
||||||
HINTS
|
HINTS
|
||||||
${_GSSAPI_ROOT_HINTS}
|
${_GSSAPI_ROOT_HINTS}
|
||||||
"${_GSSAPI_INCLUDEDIR}"
|
|
||||||
PATHS
|
PATHS
|
||||||
${_GSSAPI_ROOT_PATHS}
|
${_GSSAPI_ROOT_PATHS}
|
||||||
)
|
)
|
||||||
@@ -330,15 +317,9 @@ endif (GSSAPI_FLAVOR_HEIMDAL)
|
|||||||
include(FindPackageHandleStandardArgs)
|
include(FindPackageHandleStandardArgs)
|
||||||
find_package_handle_standard_args(GSSAPI DEFAULT_MSG GSSAPI_LIBRARIES GSSAPI_INCLUDE_DIR)
|
find_package_handle_standard_args(GSSAPI DEFAULT_MSG GSSAPI_LIBRARIES GSSAPI_INCLUDE_DIR)
|
||||||
|
|
||||||
if(GSSAPI_FOUND)
|
if (GSSAPI_INCLUDE_DIRS AND GSSAPI_LIBRARIES)
|
||||||
if(_GSSAPI_FOUND) # via pkg-config
|
set(GSSAPI_FOUND TRUE)
|
||||||
if (GSSAPI_FLAVOR_MIT)
|
endif (GSSAPI_INCLUDE_DIRS AND GSSAPI_LIBRARIES)
|
||||||
set(GSSAPI_PC_REQUIRES ${_mit_modname})
|
|
||||||
elseif (GSSAPI_FLAVOR_HEIMDAL)
|
|
||||||
set(GSSAPI_PC_REQUIRES ${_heimdal_modname})
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# show the GSSAPI_INCLUDE_DIR and GSSAPI_LIBRARIES variables only in the advanced view
|
# show the GSSAPI_INCLUDE_DIRS and GSSAPI_LIBRARIES variables only in the advanced view
|
||||||
mark_as_advanced(GSSAPI_INCLUDE_DIR GSSAPI_LIBRARIES)
|
mark_as_advanced(GSSAPI_INCLUDE_DIRS GSSAPI_LIBRARIES)
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ set(_MBEDTLS_ROOT_HINTS_AND_PATHS
|
|||||||
|
|
||||||
find_path(MBEDTLS_INCLUDE_DIR
|
find_path(MBEDTLS_INCLUDE_DIR
|
||||||
NAMES
|
NAMES
|
||||||
mbedtls/ssl.h
|
mbedtls/config.h
|
||||||
HINTS
|
HINTS
|
||||||
${_MBEDTLS_ROOT_HINTS_AND_PATHS}
|
${_MBEDTLS_ROOT_HINTS_AND_PATHS}
|
||||||
PATH_SUFFIXES
|
PATH_SUFFIXES
|
||||||
@@ -72,21 +72,11 @@ find_library(MBEDTLS_X509_LIBRARY
|
|||||||
set(MBEDTLS_LIBRARIES ${MBEDTLS_SSL_LIBRARY} ${MBEDTLS_CRYPTO_LIBRARY}
|
set(MBEDTLS_LIBRARIES ${MBEDTLS_SSL_LIBRARY} ${MBEDTLS_CRYPTO_LIBRARY}
|
||||||
${MBEDTLS_X509_LIBRARY})
|
${MBEDTLS_X509_LIBRARY})
|
||||||
|
|
||||||
# mbedtls 2.8
|
|
||||||
if (MBEDTLS_INCLUDE_DIR AND EXISTS "${MBEDTLS_INCLUDE_DIR}/mbedtls/version.h")
|
if (MBEDTLS_INCLUDE_DIR AND EXISTS "${MBEDTLS_INCLUDE_DIR}/mbedtls/version.h")
|
||||||
file(STRINGS "${MBEDTLS_INCLUDE_DIR}/mbedtls/version.h" _mbedtls_version_str REGEX
|
file(STRINGS "${MBEDTLS_INCLUDE_DIR}/mbedtls/version.h" _mbedtls_version_str REGEX
|
||||||
"^#[\t ]*define[\t ]+MBEDTLS_VERSION_STRING[\t ]+\"[0-9]+.[0-9]+.[0-9]+\"")
|
"^#[\t ]*define[\t ]+MBEDTLS_VERSION_STRING[\t ]+\"[0-9]+.[0-9]+.[0-9]+\"")
|
||||||
|
|
||||||
string(REGEX REPLACE "^.*MBEDTLS_VERSION_STRING.*([0-9]+\\.[0-9]+\\.[0-9]+).*$"
|
string(REGEX REPLACE "^.*MBEDTLS_VERSION_STRING.*([0-9]+.[0-9]+.[0-9]+).*"
|
||||||
"\\1" MBEDTLS_VERSION "${_mbedtls_version_str}")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# mbedtls 3.6
|
|
||||||
if (NOT MBEDTLS_VERSION AND MBEDTLS_INCLUDE_DIR AND EXISTS "${MBEDTLS_INCLUDE_DIR}/mbedtls/build_info.h")
|
|
||||||
file(STRINGS "${MBEDTLS_INCLUDE_DIR}/mbedtls/build_info.h" _mbedtls_version_str REGEX
|
|
||||||
"^#[\t ]*define[\t ]+MBEDTLS_VERSION_STRING[\t ]+\"[0-9]+.[0-9]+.[0-9]+\"")
|
|
||||||
|
|
||||||
string(REGEX REPLACE "^.*MBEDTLS_VERSION_STRING.*([0-9]+\\.[0-9]+\\.[0-9]+).*$"
|
|
||||||
"\\1" MBEDTLS_VERSION "${_mbedtls_version_str}")
|
"\\1" MBEDTLS_VERSION "${_mbedtls_version_str}")
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
@@ -103,8 +93,8 @@ if (MBEDTLS_VERSION)
|
|||||||
in the system variable MBEDTLS_ROOT_DIR"
|
in the system variable MBEDTLS_ROOT_DIR"
|
||||||
)
|
)
|
||||||
else (MBEDTLS_VERSION)
|
else (MBEDTLS_VERSION)
|
||||||
find_package_handle_standard_args(MbedTLS
|
find_package_handle_standard_args(MBedTLS
|
||||||
"Could NOT find mbedTLS, try to set the path to mbedTLS root folder in
|
"Could NOT find mbedTLS, try to set the path to mbedLS root folder in
|
||||||
the system variable MBEDTLS_ROOT_DIR"
|
the system variable MBEDTLS_ROOT_DIR"
|
||||||
MBEDTLS_INCLUDE_DIR
|
MBEDTLS_INCLUDE_DIR
|
||||||
MBEDTLS_LIBRARIES)
|
MBEDTLS_LIBRARIES)
|
||||||
@@ -112,32 +102,3 @@ endif (MBEDTLS_VERSION)
|
|||||||
|
|
||||||
# show the MBEDTLS_INCLUDE_DIRS and MBEDTLS_LIBRARIES variables only in the advanced view
|
# show the MBEDTLS_INCLUDE_DIRS and MBEDTLS_LIBRARIES variables only in the advanced view
|
||||||
mark_as_advanced(MBEDTLS_INCLUDE_DIR MBEDTLS_LIBRARIES)
|
mark_as_advanced(MBEDTLS_INCLUDE_DIR MBEDTLS_LIBRARIES)
|
||||||
|
|
||||||
if(MBEDTLS_FOUND)
|
|
||||||
if(NOT TARGET MbedTLS::mbedcrypto)
|
|
||||||
add_library(MbedTLS::mbedcrypto UNKNOWN IMPORTED)
|
|
||||||
set_target_properties(MbedTLS::mbedcrypto PROPERTIES
|
|
||||||
INTERFACE_INCLUDE_DIRECTORIES "${MBEDTLS_INCLUDE_DIR}"
|
|
||||||
INTERFACE_LINK_LIBRARIES MbedTLS::mbedcrypto
|
|
||||||
IMPORTED_LINK_INTERFACE_LANGUAGES "C"
|
|
||||||
IMPORTED_LOCATION "${MBEDTLS_CRYPTO_LIBRARY}")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(NOT TARGET MbedTLS::mbedx509)
|
|
||||||
add_library(MbedTLS::mbedx509 UNKNOWN IMPORTED)
|
|
||||||
set_target_properties(MbedTLS::mbedx509 PROPERTIES
|
|
||||||
INTERFACE_INCLUDE_DIRECTORIES "${MBEDTLS_INCLUDE_DIR}"
|
|
||||||
INTERFACE_LINK_LIBRARIES MbedTLS::mbedx509
|
|
||||||
IMPORTED_LINK_INTERFACE_LANGUAGES "C"
|
|
||||||
IMPORTED_LOCATION "${MBEDTLS_X509_LIBRARY}")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(NOT TARGET MbedTLS::mbedtls)
|
|
||||||
add_library(MbedTLS::mbedtls UNKNOWN IMPORTED)
|
|
||||||
set_target_properties(MbedTLS::mbedtls PROPERTIES
|
|
||||||
INTERFACE_INCLUDE_DIRECTORIES "${MBEDTLS_INCLUDE_DIR}"
|
|
||||||
INTERFACE_LINK_LIBRARIES MbedTLS::mbedtls
|
|
||||||
IMPORTED_LINK_INTERFACE_LANGUAGES "C"
|
|
||||||
IMPORTED_LOCATION "${MBEDTLS_LIBRARY}")
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
|
|||||||
@@ -1,63 +0,0 @@
|
|||||||
# - Try to find libfido2
|
|
||||||
# Once done this will define
|
|
||||||
#
|
|
||||||
# LIBFIDO2_ROOT_DIR - Set this variable to the root installation of libfido2
|
|
||||||
#
|
|
||||||
# Read-Only variables:
|
|
||||||
# LIBFIDO2_FOUND - system has libfido2
|
|
||||||
# LIBFIDO2_INCLUDE_DIR - the libfido2 include directory
|
|
||||||
# LIBFIDO2_LIBRARIES - Link these to use libfido2
|
|
||||||
#
|
|
||||||
# The libfido2 library provides support for communicating
|
|
||||||
# with FIDO2/U2F devices over USB/NFC.
|
|
||||||
#
|
|
||||||
# Copyright (c) 2025 Praneeth Sarode <praneethsarode@gmail.com>
|
|
||||||
#
|
|
||||||
# Redistribution and use is allowed according to the terms of the New
|
|
||||||
# BSD license.
|
|
||||||
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
|
|
||||||
#
|
|
||||||
|
|
||||||
|
|
||||||
set(_LIBFIDO2_ROOT_HINTS
|
|
||||||
$ENV{LIBFIDO2_ROOT_DIR}
|
|
||||||
${LIBFIDO2_ROOT_DIR}
|
|
||||||
)
|
|
||||||
|
|
||||||
set(_LIBFIDO2_ROOT_PATHS
|
|
||||||
"$ENV{PROGRAMFILES}/libfido2"
|
|
||||||
)
|
|
||||||
|
|
||||||
set(_LIBFIDO2_ROOT_HINTS_AND_PATHS
|
|
||||||
HINTS ${_LIBFIDO2_ROOT_HINTS}
|
|
||||||
PATHS ${_LIBFIDO2_ROOT_PATHS}
|
|
||||||
)
|
|
||||||
|
|
||||||
find_path(LIBFIDO2_INCLUDE_DIR
|
|
||||||
NAMES
|
|
||||||
fido.h
|
|
||||||
HINTS
|
|
||||||
${_LIBFIDO2_ROOT_HINTS_AND_PATHS}
|
|
||||||
PATH_SUFFIXES
|
|
||||||
include
|
|
||||||
)
|
|
||||||
|
|
||||||
find_library(LIBFIDO2_LIBRARY
|
|
||||||
NAMES
|
|
||||||
fido2
|
|
||||||
HINTS
|
|
||||||
${_LIBFIDO2_ROOT_HINTS_AND_PATHS}
|
|
||||||
PATH_SUFFIXES
|
|
||||||
lib
|
|
||||||
lib64
|
|
||||||
)
|
|
||||||
|
|
||||||
set(LIBFIDO2_LIBRARIES
|
|
||||||
${LIBFIDO2_LIBRARY}
|
|
||||||
)
|
|
||||||
|
|
||||||
include(FindPackageHandleStandardArgs)
|
|
||||||
find_package_handle_standard_args(libfido2 DEFAULT_MSG LIBFIDO2_LIBRARIES LIBFIDO2_INCLUDE_DIR)
|
|
||||||
|
|
||||||
# show the LIBFIDO2_INCLUDE_DIR and LIBFIDO2_LIBRARIES variables only in the advanced view
|
|
||||||
mark_as_advanced(LIBFIDO2_INCLUDE_DIR LIBFIDO2_LIBRARIES)
|
|
||||||
@@ -9,11 +9,9 @@
|
|||||||
#cmakedefine SOURCEDIR "${SOURCEDIR}"
|
#cmakedefine SOURCEDIR "${SOURCEDIR}"
|
||||||
|
|
||||||
/* Global bind configuration file path */
|
/* Global bind configuration file path */
|
||||||
#cmakedefine USR_GLOBAL_BIND_CONFIG "${USR_GLOBAL_BIND_CONFIG}"
|
|
||||||
#cmakedefine GLOBAL_BIND_CONFIG "${GLOBAL_BIND_CONFIG}"
|
#cmakedefine GLOBAL_BIND_CONFIG "${GLOBAL_BIND_CONFIG}"
|
||||||
|
|
||||||
/* Global client configuration file path */
|
/* Global client configuration file path */
|
||||||
#cmakedefine USR_GLOBAL_CLIENT_CONFIG "${USR_GLOBAL_CLIENT_CONFIG}"
|
|
||||||
#cmakedefine GLOBAL_CLIENT_CONFIG "${GLOBAL_CLIENT_CONFIG}"
|
#cmakedefine GLOBAL_CLIENT_CONFIG "${GLOBAL_CLIENT_CONFIG}"
|
||||||
|
|
||||||
/************************** HEADER FILES *************************/
|
/************************** HEADER FILES *************************/
|
||||||
@@ -60,15 +58,15 @@
|
|||||||
/* Define to 1 if you have the <stdint.h> header file. */
|
/* Define to 1 if you have the <stdint.h> header file. */
|
||||||
#cmakedefine HAVE_STDINT_H 1
|
#cmakedefine HAVE_STDINT_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <ifaddrs.h> header file. */
|
|
||||||
#cmakedefine HAVE_IFADDRS_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <openssl/aes.h> header file. */
|
/* Define to 1 if you have the <openssl/aes.h> header file. */
|
||||||
#cmakedefine HAVE_OPENSSL_AES_H 1
|
#cmakedefine HAVE_OPENSSL_AES_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <wspiapi.h> header file. */
|
/* Define to 1 if you have the <wspiapi.h> header file. */
|
||||||
#cmakedefine HAVE_WSPIAPI_H 1
|
#cmakedefine HAVE_WSPIAPI_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <openssl/blowfish.h> header file. */
|
||||||
|
#cmakedefine HAVE_OPENSSL_BLOWFISH_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <openssl/des.h> header file. */
|
/* Define to 1 if you have the <openssl/des.h> header file. */
|
||||||
#cmakedefine HAVE_OPENSSL_DES_H 1
|
#cmakedefine HAVE_OPENSSL_DES_H 1
|
||||||
|
|
||||||
@@ -84,27 +82,33 @@
|
|||||||
/* Define to 1 if you have the <pthread.h> header file. */
|
/* Define to 1 if you have the <pthread.h> header file. */
|
||||||
#cmakedefine HAVE_PTHREAD_H 1
|
#cmakedefine HAVE_PTHREAD_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have elliptic curve cryptography in openssl */
|
/* Define to 1 if you have eliptic curve cryptography in openssl */
|
||||||
#cmakedefine HAVE_OPENSSL_ECC 1
|
#cmakedefine HAVE_OPENSSL_ECC 1
|
||||||
|
|
||||||
/* Define to 1 if mbedTLS supports curve25519 */
|
/* Define to 1 if you have eliptic curve cryptography in gcrypt */
|
||||||
#cmakedefine HAVE_MBEDTLS_CURVE25519 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have elliptic curve cryptography in gcrypt */
|
|
||||||
#cmakedefine HAVE_GCRYPT_ECC 1
|
#cmakedefine HAVE_GCRYPT_ECC 1
|
||||||
|
|
||||||
/* Define to 1 if you have elliptic curve cryptography */
|
/* Define to 1 if you have eliptic curve cryptography */
|
||||||
#cmakedefine HAVE_ECC 1
|
#cmakedefine HAVE_ECC 1
|
||||||
|
|
||||||
/* Define to 1 if you have gl_flags as a glob_t struct member */
|
/* Define to 1 if you have DSA */
|
||||||
|
#cmakedefine HAVE_DSA 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have gl_flags as a glob_t sturct member */
|
||||||
#cmakedefine HAVE_GLOB_GL_FLAGS_MEMBER 1
|
#cmakedefine HAVE_GLOB_GL_FLAGS_MEMBER 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have OpenSSL with Ed25519 support */
|
||||||
|
#cmakedefine HAVE_OPENSSL_ED25519 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have OpenSSL with X25519 support */
|
||||||
|
#cmakedefine HAVE_OPENSSL_X25519 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have OpenSSL with Poly1305 support */
|
||||||
|
#cmakedefine HAVE_OPENSSL_EVP_POLY1305 1
|
||||||
|
|
||||||
/* Define to 1 if you have gcrypt with ChaCha20/Poly1305 support */
|
/* Define to 1 if you have gcrypt with ChaCha20/Poly1305 support */
|
||||||
#cmakedefine HAVE_GCRYPT_CHACHA_POLY 1
|
#cmakedefine HAVE_GCRYPT_CHACHA_POLY 1
|
||||||
|
|
||||||
/* Define to 1 if you have gcrypt with curve25519 support */
|
|
||||||
#cmakedefine HAVE_GCRYPT_CURVE25519
|
|
||||||
|
|
||||||
/*************************** FUNCTIONS ***************************/
|
/*************************** FUNCTIONS ***************************/
|
||||||
|
|
||||||
/* Define to 1 if you have the `EVP_chacha20' function. */
|
/* Define to 1 if you have the `EVP_chacha20' function. */
|
||||||
@@ -116,6 +120,15 @@
|
|||||||
/* Define to 1 if you have the `FIPS_mode' function. */
|
/* Define to 1 if you have the `FIPS_mode' function. */
|
||||||
#cmakedefine HAVE_OPENSSL_FIPS_MODE 1
|
#cmakedefine HAVE_OPENSSL_FIPS_MODE 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `EVP_DigestSign' function. */
|
||||||
|
#cmakedefine HAVE_OPENSSL_EVP_DIGESTSIGN 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `EVP_DigestVerify' function. */
|
||||||
|
#cmakedefine HAVE_OPENSSL_EVP_DIGESTVERIFY 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `OPENSSL_ia32cap_loc' function. */
|
||||||
|
#cmakedefine HAVE_OPENSSL_IA32CAP_LOC 1
|
||||||
|
|
||||||
/* Define to 1 if you have the `snprintf' function. */
|
/* Define to 1 if you have the `snprintf' function. */
|
||||||
#cmakedefine HAVE_SNPRINTF 1
|
#cmakedefine HAVE_SNPRINTF 1
|
||||||
|
|
||||||
@@ -179,9 +192,6 @@
|
|||||||
/* Define to 1 if you have the `explicit_bzero' function. */
|
/* Define to 1 if you have the `explicit_bzero' function. */
|
||||||
#cmakedefine HAVE_EXPLICIT_BZERO 1
|
#cmakedefine HAVE_EXPLICIT_BZERO 1
|
||||||
|
|
||||||
/* Define to 1 if you have the `memset_explicit' function. */
|
|
||||||
#cmakedefine HAVE_MEMSET_EXPLICIT 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `memset_s' function. */
|
/* Define to 1 if you have the `memset_s' function. */
|
||||||
#cmakedefine HAVE_MEMSET_S 1
|
#cmakedefine HAVE_MEMSET_S 1
|
||||||
|
|
||||||
@@ -191,18 +201,6 @@
|
|||||||
/* Define to 1 if you have the `cmocka_set_test_filter' function. */
|
/* Define to 1 if you have the `cmocka_set_test_filter' function. */
|
||||||
#cmakedefine HAVE_CMOCKA_SET_TEST_FILTER 1
|
#cmakedefine HAVE_CMOCKA_SET_TEST_FILTER 1
|
||||||
|
|
||||||
/* Define to 1 if we have support for blowfish */
|
|
||||||
#cmakedefine HAVE_BLOWFISH 1
|
|
||||||
|
|
||||||
/* Define to 1 if we have support for ML-KEM in libgcrypt */
|
|
||||||
#cmakedefine HAVE_GCRYPT_MLKEM 1
|
|
||||||
|
|
||||||
/* Define to 1 if we have support for ML-KEM in OpenSSL */
|
|
||||||
#cmakedefine HAVE_OPENSSL_MLKEM 1
|
|
||||||
|
|
||||||
/* Define to 1 if we have support for ML-KEM1024 in either backend */
|
|
||||||
#cmakedefine HAVE_MLKEM1024 1
|
|
||||||
|
|
||||||
/*************************** LIBRARIES ***************************/
|
/*************************** LIBRARIES ***************************/
|
||||||
|
|
||||||
/* Define to 1 if you have the `crypto' library (-lcrypto). */
|
/* Define to 1 if you have the `crypto' library (-lcrypto). */
|
||||||
@@ -220,10 +218,6 @@
|
|||||||
/* Define to 1 if you have the `cmocka' library (-lcmocka). */
|
/* Define to 1 if you have the `cmocka' library (-lcmocka). */
|
||||||
#cmakedefine HAVE_CMOCKA 1
|
#cmakedefine HAVE_CMOCKA 1
|
||||||
|
|
||||||
/* Define to 1 if you have the `libfido2' library (-lfido2).
|
|
||||||
* This is required for interacting with FIDO2/U2F devices over USB-HID. */
|
|
||||||
#cmakedefine HAVE_LIBFIDO2 1
|
|
||||||
|
|
||||||
/**************************** OPTIONS ****************************/
|
/**************************** OPTIONS ****************************/
|
||||||
|
|
||||||
#cmakedefine HAVE_GCC_THREAD_LOCAL_STORAGE 1
|
#cmakedefine HAVE_GCC_THREAD_LOCAL_STORAGE 1
|
||||||
@@ -231,7 +225,6 @@
|
|||||||
|
|
||||||
#cmakedefine HAVE_FALLTHROUGH_ATTRIBUTE 1
|
#cmakedefine HAVE_FALLTHROUGH_ATTRIBUTE 1
|
||||||
#cmakedefine HAVE_UNUSED_ATTRIBUTE 1
|
#cmakedefine HAVE_UNUSED_ATTRIBUTE 1
|
||||||
#cmakedefine HAVE_WEAK_ATTRIBUTE 1
|
|
||||||
|
|
||||||
#cmakedefine HAVE_CONSTRUCTOR_ATTRIBUTE 1
|
#cmakedefine HAVE_CONSTRUCTOR_ATTRIBUTE 1
|
||||||
#cmakedefine HAVE_DESTRUCTOR_ATTRIBUTE 1
|
#cmakedefine HAVE_DESTRUCTOR_ATTRIBUTE 1
|
||||||
@@ -258,14 +251,9 @@
|
|||||||
/* Define to 1 if you want to enable DH group exchange algorithms */
|
/* Define to 1 if you want to enable DH group exchange algorithms */
|
||||||
#cmakedefine WITH_GEX 1
|
#cmakedefine WITH_GEX 1
|
||||||
|
|
||||||
/* Define to 1 if you want to enable insecure none cipher and MAC */
|
/* Define to 1 if you want to enable none cipher and MAC */
|
||||||
#cmakedefine WITH_INSECURE_NONE 1
|
#cmakedefine WITH_INSECURE_NONE 1
|
||||||
|
|
||||||
/* Define to 1 if you want to allow libssh to execute arbitrary commands from
|
|
||||||
* configuration files or options (match exec, proxy commands and OpenSSH-based
|
|
||||||
* proxy-jumps). */
|
|
||||||
#cmakedefine WITH_EXEC 1
|
|
||||||
|
|
||||||
/* Define to 1 if you want to enable blowfish cipher support */
|
/* Define to 1 if you want to enable blowfish cipher support */
|
||||||
#cmakedefine WITH_BLOWFISH_CIPHER 1
|
#cmakedefine WITH_BLOWFISH_CIPHER 1
|
||||||
|
|
||||||
@@ -287,12 +275,6 @@
|
|||||||
/* Define to 1 if you want to enable PKCS #11 URI support */
|
/* Define to 1 if you want to enable PKCS #11 URI support */
|
||||||
#cmakedefine WITH_PKCS11_URI 1
|
#cmakedefine WITH_PKCS11_URI 1
|
||||||
|
|
||||||
/* Define to 1 if we want to build a support for PKCS #11 provider. */
|
|
||||||
#cmakedefine WITH_PKCS11_PROVIDER 1
|
|
||||||
|
|
||||||
/* Define to 1 if you want to enable FIDO2/U2F support */
|
|
||||||
#cmakedefine WITH_FIDO2 1
|
|
||||||
|
|
||||||
/*************************** ENDIAN *****************************/
|
/*************************** ENDIAN *****************************/
|
||||||
|
|
||||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||||
|
|||||||
@@ -1,247 +1,49 @@
|
|||||||
#
|
#
|
||||||
# Build the documentation
|
# Build the documentation
|
||||||
#
|
#
|
||||||
# To build the documentation with a local doxygen-awesome-css directory:
|
if (${CMAKE_VERSION} VERSION_GREATER "3.8.99")
|
||||||
#
|
|
||||||
# cmake -S . -B obj \
|
|
||||||
# -DDOXYGEN_AWESOME_CSS_DIR=/path/to/doxygen-awesome-css
|
|
||||||
# cmake --build obj --target docs
|
|
||||||
#
|
|
||||||
# The tarball can be downloaded from:
|
|
||||||
# https://github.com/jothepro/doxygen-awesome-css/archive/refs/tags/v2.4.1.tar.gz
|
|
||||||
#
|
|
||||||
find_package(Doxygen)
|
find_package(Doxygen)
|
||||||
|
|
||||||
if (DOXYGEN_FOUND)
|
if (DOXYGEN_FOUND)
|
||||||
set(DOXYGEN_AWESOME_CSS_PROJECT
|
|
||||||
"https://github.com/jothepro/doxygen-awesome-css")
|
|
||||||
set(DOXYGEN_AWESOME_CSS_VERSION "2.4.1")
|
|
||||||
set(DOXYGEN_AWESOME_CSS_URL
|
|
||||||
"${DOXYGEN_AWESOME_CSS_PROJECT}/archive/refs/tags/v${DOXYGEN_AWESOME_CSS_VERSION}.tar.gz"
|
|
||||||
)
|
|
||||||
|
|
||||||
# Allow specifying a local doxygen-awesome-css directory (useful for
|
|
||||||
# packaging)
|
|
||||||
if (NOT DEFINED DOXYGEN_AWESOME_CSS_DIR)
|
|
||||||
# Custom target to download doxygen-awesome-css at build time
|
|
||||||
add_custom_target(
|
|
||||||
doxygen-awesome-css
|
|
||||||
COMMAND
|
|
||||||
${CMAKE_COMMAND} -DURL=${DOXYGEN_AWESOME_CSS_URL}
|
|
||||||
-DDEST_DIR=${CMAKE_CURRENT_BINARY_DIR}
|
|
||||||
-DVERSION=${DOXYGEN_AWESOME_CSS_VERSION} -P
|
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/fetch_doxygen_awesome.cmake
|
|
||||||
COMMENT "Fetching doxygen-awesome-css theme")
|
|
||||||
|
|
||||||
set(AWESOME_CSS_DIR
|
|
||||||
"${CMAKE_CURRENT_BINARY_DIR}/doxygen-awesome-css-${DOXYGEN_AWESOME_CSS_VERSION}"
|
|
||||||
)
|
|
||||||
else ()
|
|
||||||
message(
|
|
||||||
STATUS
|
|
||||||
"Using doxygen-awesome-css from ${DOXYGEN_AWESOME_CSS_DIR}")
|
|
||||||
set(AWESOME_CSS_DIR "${DOXYGEN_AWESOME_CSS_DIR}")
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
# Project title shown in documentation
|
|
||||||
set(DOXYGEN_PROJECT_NAME ${PROJECT_NAME})
|
set(DOXYGEN_PROJECT_NAME ${PROJECT_NAME})
|
||||||
# Project version number shown in documentation
|
|
||||||
set(DOXYGEN_PROJECT_NUMBER ${PROJECT_VERSION})
|
set(DOXYGEN_PROJECT_NUMBER ${PROJECT_VERSION})
|
||||||
# Brief description shown below project name
|
|
||||||
set(DOXYGEN_PROJECT_BRIEF "The SSH library")
|
set(DOXYGEN_PROJECT_BRIEF "The SSH library")
|
||||||
# Project favicon (browser tab icon)
|
|
||||||
set(DOXYGEN_PROJECT_ICON ${CMAKE_CURRENT_SOURCE_DIR}/favicon.png)
|
|
||||||
|
|
||||||
# Number of spaces used for indentation in code blocks
|
|
||||||
set(DOXYGEN_TAB_SIZE 4)
|
set(DOXYGEN_TAB_SIZE 4)
|
||||||
# Generate output optimized for C (vs C++)
|
|
||||||
set(DOXYGEN_OPTIMIZE_OUTPUT_FOR_C YES)
|
set(DOXYGEN_OPTIMIZE_OUTPUT_FOR_C YES)
|
||||||
# Enable parsing of markdown in comments
|
|
||||||
set(DOXYGEN_MARKDOWN_SUPPORT YES)
|
set(DOXYGEN_MARKDOWN_SUPPORT YES)
|
||||||
# Warn about undocumented members to improve documentation quality
|
set(DOXYGEN_FULL_PATH_NAMES NO)
|
||||||
set(DOXYGEN_WARN_IF_UNDOCUMENTED YES)
|
|
||||||
# Do not extract private class members
|
|
||||||
set(DOXYGEN_EXTRACT_PRIVATE NO)
|
|
||||||
if (WITH_INTERNAL_DOC)
|
|
||||||
# Include internal documentation
|
|
||||||
set(DOXYGEN_INTERNAL_DOCS YES)
|
|
||||||
else ()
|
|
||||||
# Do not include internal documentation
|
|
||||||
set(DOXYGEN_INTERNAL_DOCS NO)
|
|
||||||
endif( WITH_INTERNAL_DOC)
|
|
||||||
# Disable built-in clipboard (using doxygen-awesome extension instead)
|
|
||||||
set(DOXYGEN_HTML_COPY_CLIPBOARD NO)
|
|
||||||
# Disable page outline panel (using interactive TOC extension instead)
|
|
||||||
set(DOXYGEN_PAGE_OUTLINE_PANEL NO)
|
|
||||||
|
|
||||||
# Required configuration for doxygen-awesome-css theme Generate treeview
|
set(DOXYGEN_PREDEFINED DOXYGEN
|
||||||
# sidebar for navigation
|
WITH_SERVER
|
||||||
set(DOXYGEN_GENERATE_TREEVIEW YES)
|
WITH_SFTP
|
||||||
# Enable default index pages
|
PRINTF_ATTRIBUTE(x,y))
|
||||||
set(DOXYGEN_DISABLE_INDEX NO)
|
|
||||||
# Use top navigation bar instead of full sidebar (required for theme
|
|
||||||
# compatibility)
|
|
||||||
set(DOXYGEN_FULL_SIDEBAR NO)
|
|
||||||
# Use light color style (required for Doxygen >= 1.9.5)
|
|
||||||
set(DOXYGEN_HTML_COLORSTYLE LIGHT)
|
|
||||||
|
|
||||||
# Disable diagram generation (not relevant for C projects)
|
set(DOXYGEN_EXCLUDE ${CMAKE_CURRENT_SOURCE_DIR}/that_style)
|
||||||
set(DOXYGEN_HAVE_DOT NO)
|
set(DOXYGEN_HTML_HEADER ${CMAKE_CURRENT_SOURCE_DIR}/that_style/header.html)
|
||||||
set(DOXYGEN_CLASS_DIAGRAMS NO)
|
set(DOXYGEN_HTML_EXTRA_STYLESHEET ${CMAKE_CURRENT_SOURCE_DIR}/that_style/that_style.css)
|
||||||
set(DOXYGEN_CALL_GRAPH NO)
|
set(DOXYGEN_HTML_EXTRA_FILES ${CMAKE_CURRENT_SOURCE_DIR}/that_style/img/nav_edge_left.svg
|
||||||
set(DOXYGEN_CALLER_GRAPH NO)
|
${CMAKE_CURRENT_SOURCE_DIR}/that_style/img/nav_edge_right.svg
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}/that_style/img/nav_edge_inter.svg
|
||||||
# Preprocessor defines to use when parsing code
|
${CMAKE_CURRENT_SOURCE_DIR}/that_style/img/sync_off.png
|
||||||
set(DOXYGEN_PREDEFINED DOXYGEN WITH_SERVER WITH_SFTP
|
${CMAKE_CURRENT_SOURCE_DIR}/that_style/img/sync_on.png
|
||||||
PRINTF_ATTRIBUTE\(x,y\))
|
${CMAKE_CURRENT_SOURCE_DIR}/that_style/img/splitbar_handle.svg
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}/that_style/img/doc.svg
|
||||||
# Exclude patterns for files we don't want to document
|
${CMAKE_CURRENT_SOURCE_DIR}/that_style/img/mag_glass.svg
|
||||||
set(DOXYGEN_EXCLUDE_PATTERNS */src/external/* fe25519.h ge25519.h sc25519.h
|
${CMAKE_CURRENT_SOURCE_DIR}/that_style/img/folderclosed.svg
|
||||||
blf.h)
|
${CMAKE_CURRENT_SOURCE_DIR}/that_style/img/folderopen.svg
|
||||||
# Exclude internal structures from documentation
|
${CMAKE_CURRENT_SOURCE_DIR}/that_style/js/striped_bg.js)
|
||||||
set(DOXYGEN_EXCLUDE_SYMBOLS_STRUCTS
|
|
||||||
chacha20_poly1305_keysched,
|
|
||||||
dh_ctx,
|
|
||||||
dh_ctx,
|
|
||||||
dh_keypair,
|
|
||||||
error_struct,
|
|
||||||
packet_struct,
|
|
||||||
pem_get_password_struct,
|
|
||||||
ssh_tokens_st,
|
|
||||||
sftp_attributes_struct,
|
|
||||||
sftp_client_message_struct,
|
|
||||||
sftp_dir_struct,
|
|
||||||
sftp_ext_struct,
|
|
||||||
sftp_file_struct,
|
|
||||||
sftp_message_struct,
|
|
||||||
sftp_packet_struct,
|
|
||||||
sftp_request_queue_struct,
|
|
||||||
sftp_session_struct,
|
|
||||||
sftp_status_message_struct,
|
|
||||||
ssh_agent_state_struct,
|
|
||||||
ssh_agent_struct,
|
|
||||||
ssh_auth_auto_state_struct,
|
|
||||||
ssh_auth_request,
|
|
||||||
ssh_bind_config_keyword_table_s,
|
|
||||||
ssh_bind_config_match_keyword_table_s,
|
|
||||||
ssh_bind_struct,
|
|
||||||
ssh_buffer_struct,
|
|
||||||
ssh_channel_callbacks_struct,
|
|
||||||
ssh_channel_read_termination_struct,
|
|
||||||
ssh_channel_request,
|
|
||||||
ssh_channel_request_open,
|
|
||||||
ssh_channel_struct,
|
|
||||||
ssh_cipher_struct,
|
|
||||||
ssh_common_struct,
|
|
||||||
ssh_config_keyword_table_s,
|
|
||||||
ssh_config_match_keyword_table_s,
|
|
||||||
ssh_connector_struct,
|
|
||||||
ssh_counter_struct,
|
|
||||||
ssh_crypto_struct,
|
|
||||||
ssh_event_fd_wrapper,
|
|
||||||
ssh_event_struct,
|
|
||||||
ssh_global_request,
|
|
||||||
ssh_gssapi_struct,
|
|
||||||
ssh_hmac_struct,
|
|
||||||
ssh_iterator,
|
|
||||||
ssh_kbdint_struct,
|
|
||||||
ssh_kex_struct,
|
|
||||||
ssh_key_struct,
|
|
||||||
ssh_knownhosts_entry,
|
|
||||||
ssh_list,
|
|
||||||
ssh_mac_ctx_struct,
|
|
||||||
ssh_message_struct,
|
|
||||||
ssh_packet_callbacks_struct,
|
|
||||||
ssh_packet_header,
|
|
||||||
ssh_poll_ctx_struct,
|
|
||||||
ssh_poll_handle_struct,
|
|
||||||
ssh_pollfd_struct,
|
|
||||||
ssh_private_key_struct,
|
|
||||||
ssh_public_key_struct,
|
|
||||||
ssh_scp_struct,
|
|
||||||
ssh_service_request,
|
|
||||||
ssh_session_struct,
|
|
||||||
ssh_signature_struct,
|
|
||||||
ssh_socket_struct,
|
|
||||||
ssh_string_struct,
|
|
||||||
ssh_threads_callbacks_struct,
|
|
||||||
ssh_timestamp)
|
|
||||||
set(DOXYGEN_EXCLUDE_SYMBOLS_MACRO
|
|
||||||
SSH_FXP*,
|
|
||||||
SSH_SOCKET*,
|
|
||||||
SERVERBANNER,
|
|
||||||
SOCKOPT_TYPE_ARG4,
|
|
||||||
SSH_FILEXFER*,
|
|
||||||
SSH_FXF*,
|
|
||||||
SSH_S_*,
|
|
||||||
SFTP_*,
|
|
||||||
NSS_BUFLEN_PASSWD,
|
|
||||||
CLOCK,
|
|
||||||
MAX_LINE_SIZE,
|
|
||||||
PKCS11_URI,
|
|
||||||
KNOWNHOSTS_MAXTYPES)
|
|
||||||
set(DOXYGEN_EXCLUDE_SYMBOLS_TYPEDEFS
|
|
||||||
sftp_attributes,
|
|
||||||
sftp_client_message,
|
|
||||||
sftp_dir,
|
|
||||||
sftp_ext,
|
|
||||||
sftp_file,
|
|
||||||
sftp_message,
|
|
||||||
sftp_packet,
|
|
||||||
sftp_request_queue,
|
|
||||||
sftp_status_message,
|
|
||||||
sftp_statvfs_t,
|
|
||||||
poll_fn,
|
|
||||||
ssh_callback_int,
|
|
||||||
ssh_callback_data,
|
|
||||||
ssh_callback_int_int,
|
|
||||||
ssh_message_callback,
|
|
||||||
ssh_channel_callback_int,
|
|
||||||
ssh_channel_callback_data,
|
|
||||||
ssh_callbacks,
|
|
||||||
ssh_gssapi_select_oid_callback,
|
|
||||||
ssh_gssapi_accept_sec_ctx_callback,
|
|
||||||
ssh_gssapi_verify_mic_callback,
|
|
||||||
ssh_server_callbacks,
|
|
||||||
ssh_socket_callbacks,
|
|
||||||
ssh_packet_callbacks,
|
|
||||||
ssh_channel_callbacks,
|
|
||||||
ssh_bind,
|
|
||||||
ssh_bind_callbacks)
|
|
||||||
set(DOXYGEN_EXCLUDE_SYMBOLS
|
|
||||||
${DOXYGEN_EXCLUDE_SYMBOLS_STRUCTS} ${DOXYGEN_EXCLUDE_SYMBOLS_MACRO}
|
|
||||||
${DOXYGEN_EXCLUDE_SYMBOLS_TYPEDEFS})
|
|
||||||
|
|
||||||
# Custom layout file to rename "Topics" to "API Reference" and simplify
|
|
||||||
# navigation
|
|
||||||
set(DOXYGEN_LAYOUT_FILE ${CMAKE_CURRENT_SOURCE_DIR}/DoxygenLayout.xml)
|
|
||||||
# Custom HTML header with doxygen-awesome extension initialization
|
|
||||||
set(DOXYGEN_HTML_HEADER ${CMAKE_CURRENT_SOURCE_DIR}/header.html)
|
|
||||||
# Modern CSS theme for documentation with custom libssh.org color scheme
|
|
||||||
set(DOXYGEN_HTML_EXTRA_STYLESHEET
|
|
||||||
${AWESOME_CSS_DIR}/doxygen-awesome.css
|
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/doxygen-custom.css)
|
|
||||||
# JavaScript extensions: dark mode toggle, copy button, paragraph links,
|
|
||||||
# interactive TOC
|
|
||||||
set(DOXYGEN_HTML_EXTRA_FILES
|
|
||||||
${AWESOME_CSS_DIR}/doxygen-awesome-darkmode-toggle.js
|
|
||||||
${AWESOME_CSS_DIR}/doxygen-awesome-fragment-copy-button.js
|
|
||||||
${AWESOME_CSS_DIR}/doxygen-awesome-paragraph-link.js
|
|
||||||
${AWESOME_CSS_DIR}/doxygen-awesome-interactive-toc.js)
|
|
||||||
|
|
||||||
|
# This updates the Doxyfile if we do changes here
|
||||||
set(_doxyfile_template "${CMAKE_BINARY_DIR}/CMakeDoxyfile.in")
|
set(_doxyfile_template "${CMAKE_BINARY_DIR}/CMakeDoxyfile.in")
|
||||||
set(_target_doxyfile "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile.docs")
|
set(_target_doxyfile "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile.docs")
|
||||||
configure_file("${_doxyfile_template}" "${_target_doxyfile}")
|
configure_file("${_doxyfile_template}" "${_target_doxyfile}")
|
||||||
|
|
||||||
doxygen_add_docs(docs ${CMAKE_SOURCE_DIR}/include/libssh
|
doxygen_add_docs(docs
|
||||||
${CMAKE_SOURCE_DIR}/src ${CMAKE_CURRENT_SOURCE_DIR})
|
${CMAKE_SOURCE_DIR}/include/libssh
|
||||||
|
${CMAKE_SOURCE_DIR}/src
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR})
|
||||||
|
endif() # DOXYGEN_FOUND
|
||||||
|
|
||||||
# Make docs depend on doxygen-awesome-css download (if not using local dir)
|
endif() # CMAKE_VERSION
|
||||||
if (TARGET doxygen-awesome-css)
|
|
||||||
add_dependencies(docs doxygen-awesome-css)
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
add_custom_target(
|
|
||||||
docs_coverage COMMAND ${CMAKE_SOURCE_DIR}/doc/doc_coverage.sh
|
|
||||||
${CMAKE_BINARY_DIR})
|
|
||||||
endif (DOXYGEN_FOUND)
|
|
||||||
|
|||||||
@@ -1,242 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<doxygenlayout version="2.0">
|
|
||||||
<!-- Generated by doxygen 1.14.0 -->
|
|
||||||
<!-- Navigation index tabs for HTML output -->
|
|
||||||
<navindex>
|
|
||||||
<tab type="mainpage" visible="yes" title=""/>
|
|
||||||
<tab type="topics" visible="yes" title="API Reference" intro=""/>
|
|
||||||
<tab type="pages" visible="yes" title="" intro=""/>
|
|
||||||
<tab type="files" visible="yes" title="">
|
|
||||||
<tab type="filelist" visible="yes" title="" intro=""/>
|
|
||||||
<tab type="globals" visible="yes" title="" intro=""/>
|
|
||||||
</tab>
|
|
||||||
<tab type="structs" visible="yes" title="">
|
|
||||||
<tab type="structlist" visible="yes" title="" intro=""/>
|
|
||||||
<tab type="structindex" visible="$ALPHABETICAL_INDEX" title=""/>
|
|
||||||
</tab>
|
|
||||||
</navindex>
|
|
||||||
|
|
||||||
<!-- Layout definition for a class page -->
|
|
||||||
<class>
|
|
||||||
<briefdescription visible="yes"/>
|
|
||||||
<includes visible="$SHOW_HEADERFILE"/>
|
|
||||||
<inheritancegraph visible="yes"/>
|
|
||||||
<collaborationgraph visible="yes"/>
|
|
||||||
<memberdecl>
|
|
||||||
<nestedclasses visible="yes" title=""/>
|
|
||||||
<publictypes visible="yes" title=""/>
|
|
||||||
<services visible="yes" title=""/>
|
|
||||||
<interfaces visible="yes" title=""/>
|
|
||||||
<publicslots visible="yes" title=""/>
|
|
||||||
<signals visible="yes" title=""/>
|
|
||||||
<publicmethods visible="yes" title=""/>
|
|
||||||
<publicstaticmethods visible="yes" title=""/>
|
|
||||||
<publicattributes visible="yes" title=""/>
|
|
||||||
<publicstaticattributes visible="yes" title=""/>
|
|
||||||
<protectedtypes visible="yes" title=""/>
|
|
||||||
<protectedslots visible="yes" title=""/>
|
|
||||||
<protectedmethods visible="yes" title=""/>
|
|
||||||
<protectedstaticmethods visible="yes" title=""/>
|
|
||||||
<protectedattributes visible="yes" title=""/>
|
|
||||||
<protectedstaticattributes visible="yes" title=""/>
|
|
||||||
<packagetypes visible="yes" title=""/>
|
|
||||||
<packagemethods visible="yes" title=""/>
|
|
||||||
<packagestaticmethods visible="yes" title=""/>
|
|
||||||
<packageattributes visible="yes" title=""/>
|
|
||||||
<packagestaticattributes visible="yes" title=""/>
|
|
||||||
<properties visible="yes" title=""/>
|
|
||||||
<events visible="yes" title=""/>
|
|
||||||
<privatetypes visible="yes" title=""/>
|
|
||||||
<privateslots visible="yes" title=""/>
|
|
||||||
<privatemethods visible="yes" title=""/>
|
|
||||||
<privatestaticmethods visible="yes" title=""/>
|
|
||||||
<privateattributes visible="yes" title=""/>
|
|
||||||
<privatestaticattributes visible="yes" title=""/>
|
|
||||||
<friends visible="yes" title=""/>
|
|
||||||
<related visible="yes" title="" subtitle=""/>
|
|
||||||
<membergroups visible="yes"/>
|
|
||||||
</memberdecl>
|
|
||||||
<detaileddescription visible="yes" title=""/>
|
|
||||||
<memberdef>
|
|
||||||
<inlineclasses visible="yes" title=""/>
|
|
||||||
<typedefs visible="yes" title=""/>
|
|
||||||
<enums visible="yes" title=""/>
|
|
||||||
<services visible="yes" title=""/>
|
|
||||||
<interfaces visible="yes" title=""/>
|
|
||||||
<constructors visible="yes" title=""/>
|
|
||||||
<functions visible="yes" title=""/>
|
|
||||||
<related visible="yes" title=""/>
|
|
||||||
<variables visible="yes" title=""/>
|
|
||||||
<properties visible="yes" title=""/>
|
|
||||||
<events visible="yes" title=""/>
|
|
||||||
</memberdef>
|
|
||||||
<allmemberslink visible="yes"/>
|
|
||||||
<usedfiles visible="$SHOW_USED_FILES"/>
|
|
||||||
<authorsection visible="yes"/>
|
|
||||||
</class>
|
|
||||||
|
|
||||||
<!-- Layout definition for a namespace page -->
|
|
||||||
<namespace>
|
|
||||||
<briefdescription visible="yes"/>
|
|
||||||
<memberdecl>
|
|
||||||
<nestednamespaces visible="yes" title=""/>
|
|
||||||
<constantgroups visible="yes" title=""/>
|
|
||||||
<interfaces visible="yes" title=""/>
|
|
||||||
<classes visible="yes" title=""/>
|
|
||||||
<concepts visible="yes" title=""/>
|
|
||||||
<structs visible="yes" title=""/>
|
|
||||||
<exceptions visible="yes" title=""/>
|
|
||||||
<typedefs visible="yes" title=""/>
|
|
||||||
<sequences visible="yes" title=""/>
|
|
||||||
<dictionaries visible="yes" title=""/>
|
|
||||||
<enums visible="yes" title=""/>
|
|
||||||
<functions visible="yes" title=""/>
|
|
||||||
<variables visible="yes" title=""/>
|
|
||||||
<properties visible="yes" title=""/>
|
|
||||||
<membergroups visible="yes"/>
|
|
||||||
</memberdecl>
|
|
||||||
<detaileddescription visible="yes" title=""/>
|
|
||||||
<memberdef>
|
|
||||||
<inlineclasses visible="yes" title=""/>
|
|
||||||
<typedefs visible="yes" title=""/>
|
|
||||||
<sequences visible="yes" title=""/>
|
|
||||||
<dictionaries visible="yes" title=""/>
|
|
||||||
<enums visible="yes" title=""/>
|
|
||||||
<functions visible="yes" title=""/>
|
|
||||||
<variables visible="yes" title=""/>
|
|
||||||
<properties visible="yes" title=""/>
|
|
||||||
</memberdef>
|
|
||||||
<authorsection visible="yes"/>
|
|
||||||
</namespace>
|
|
||||||
|
|
||||||
<!-- Layout definition for a concept page -->
|
|
||||||
<concept>
|
|
||||||
<briefdescription visible="yes"/>
|
|
||||||
<includes visible="$SHOW_HEADERFILE"/>
|
|
||||||
<definition visible="yes" title=""/>
|
|
||||||
<detaileddescription visible="yes" title=""/>
|
|
||||||
<authorsection visible="yes"/>
|
|
||||||
</concept>
|
|
||||||
|
|
||||||
<!-- Layout definition for a file page -->
|
|
||||||
<file>
|
|
||||||
<briefdescription visible="yes"/>
|
|
||||||
<includes visible="$SHOW_INCLUDE_FILES"/>
|
|
||||||
<includegraph visible="yes"/>
|
|
||||||
<includedbygraph visible="yes"/>
|
|
||||||
<sourcelink visible="yes"/>
|
|
||||||
<memberdecl>
|
|
||||||
<interfaces visible="yes" title=""/>
|
|
||||||
<classes visible="yes" title=""/>
|
|
||||||
<structs visible="yes" title=""/>
|
|
||||||
<exceptions visible="yes" title=""/>
|
|
||||||
<namespaces visible="yes" title=""/>
|
|
||||||
<concepts visible="yes" title=""/>
|
|
||||||
<constantgroups visible="yes" title=""/>
|
|
||||||
<defines visible="yes" title=""/>
|
|
||||||
<typedefs visible="yes" title=""/>
|
|
||||||
<sequences visible="yes" title=""/>
|
|
||||||
<dictionaries visible="yes" title=""/>
|
|
||||||
<enums visible="yes" title=""/>
|
|
||||||
<functions visible="yes" title=""/>
|
|
||||||
<variables visible="yes" title=""/>
|
|
||||||
<properties visible="yes" title=""/>
|
|
||||||
<membergroups visible="yes"/>
|
|
||||||
</memberdecl>
|
|
||||||
<detaileddescription visible="yes" title=""/>
|
|
||||||
<memberdef>
|
|
||||||
<inlineclasses visible="yes" title=""/>
|
|
||||||
<defines visible="yes" title=""/>
|
|
||||||
<typedefs visible="yes" title=""/>
|
|
||||||
<sequences visible="yes" title=""/>
|
|
||||||
<dictionaries visible="yes" title=""/>
|
|
||||||
<enums visible="yes" title=""/>
|
|
||||||
<functions visible="yes" title=""/>
|
|
||||||
<variables visible="yes" title=""/>
|
|
||||||
<properties visible="yes" title=""/>
|
|
||||||
</memberdef>
|
|
||||||
<authorsection/>
|
|
||||||
</file>
|
|
||||||
|
|
||||||
<!-- Layout definition for a group page -->
|
|
||||||
<group>
|
|
||||||
<briefdescription visible="yes"/>
|
|
||||||
<groupgraph visible="yes"/>
|
|
||||||
<memberdecl>
|
|
||||||
<nestedgroups visible="yes" title=""/>
|
|
||||||
<modules visible="yes" title=""/>
|
|
||||||
<dirs visible="yes" title=""/>
|
|
||||||
<files visible="yes" title=""/>
|
|
||||||
<namespaces visible="yes" title=""/>
|
|
||||||
<concepts visible="yes" title=""/>
|
|
||||||
<classes visible="yes" title=""/>
|
|
||||||
<defines visible="yes" title=""/>
|
|
||||||
<typedefs visible="yes" title=""/>
|
|
||||||
<sequences visible="yes" title=""/>
|
|
||||||
<dictionaries visible="yes" title=""/>
|
|
||||||
<enums visible="yes" title=""/>
|
|
||||||
<enumvalues visible="yes" title=""/>
|
|
||||||
<functions visible="yes" title=""/>
|
|
||||||
<variables visible="yes" title=""/>
|
|
||||||
<signals visible="yes" title=""/>
|
|
||||||
<publicslots visible="yes" title=""/>
|
|
||||||
<protectedslots visible="yes" title=""/>
|
|
||||||
<privateslots visible="yes" title=""/>
|
|
||||||
<events visible="yes" title=""/>
|
|
||||||
<properties visible="yes" title=""/>
|
|
||||||
<friends visible="yes" title=""/>
|
|
||||||
<membergroups visible="yes"/>
|
|
||||||
</memberdecl>
|
|
||||||
<detaileddescription visible="yes" title=""/>
|
|
||||||
<memberdef>
|
|
||||||
<pagedocs/>
|
|
||||||
<inlineclasses visible="yes" title=""/>
|
|
||||||
<defines visible="yes" title=""/>
|
|
||||||
<typedefs visible="yes" title=""/>
|
|
||||||
<sequences visible="yes" title=""/>
|
|
||||||
<dictionaries visible="yes" title=""/>
|
|
||||||
<enums visible="yes" title=""/>
|
|
||||||
<enumvalues visible="yes" title=""/>
|
|
||||||
<functions visible="yes" title=""/>
|
|
||||||
<variables visible="yes" title=""/>
|
|
||||||
<signals visible="yes" title=""/>
|
|
||||||
<publicslots visible="yes" title=""/>
|
|
||||||
<protectedslots visible="yes" title=""/>
|
|
||||||
<privateslots visible="yes" title=""/>
|
|
||||||
<events visible="yes" title=""/>
|
|
||||||
<properties visible="yes" title=""/>
|
|
||||||
<friends visible="yes" title=""/>
|
|
||||||
</memberdef>
|
|
||||||
<authorsection visible="yes"/>
|
|
||||||
</group>
|
|
||||||
|
|
||||||
<!-- Layout definition for a C++20 module page -->
|
|
||||||
<module>
|
|
||||||
<briefdescription visible="yes"/>
|
|
||||||
<exportedmodules visible="yes"/>
|
|
||||||
<memberdecl>
|
|
||||||
<concepts visible="yes" title=""/>
|
|
||||||
<classes visible="yes" title=""/>
|
|
||||||
<enums visible="yes" title=""/>
|
|
||||||
<typedefs visible="yes" title=""/>
|
|
||||||
<functions visible="yes" title=""/>
|
|
||||||
<variables visible="yes" title=""/>
|
|
||||||
<membergroups visible="yes" title=""/>
|
|
||||||
</memberdecl>
|
|
||||||
<detaileddescription visible="yes" title=""/>
|
|
||||||
<memberdecl>
|
|
||||||
<files visible="yes"/>
|
|
||||||
</memberdecl>
|
|
||||||
</module>
|
|
||||||
|
|
||||||
<!-- Layout definition for a directory page -->
|
|
||||||
<directory>
|
|
||||||
<briefdescription visible="yes"/>
|
|
||||||
<directorygraph visible="yes"/>
|
|
||||||
<memberdecl>
|
|
||||||
<dirs visible="yes"/>
|
|
||||||
<files visible="yes"/>
|
|
||||||
</memberdecl>
|
|
||||||
<detaileddescription visible="yes" title=""/>
|
|
||||||
</directory>
|
|
||||||
</doxygenlayout>
|
|
||||||
@@ -105,7 +105,7 @@ Here is a small example of password authentication:
|
|||||||
@code
|
@code
|
||||||
int authenticate_password(ssh_session session)
|
int authenticate_password(ssh_session session)
|
||||||
{
|
{
|
||||||
char *password = NULL;
|
char *password;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
password = getpass("Enter your password: ");
|
password = getpass("Enter your password: ");
|
||||||
@@ -218,7 +218,7 @@ int authenticate_kbdint(ssh_session session)
|
|||||||
rc = ssh_userauth_kbdint(session, NULL, NULL);
|
rc = ssh_userauth_kbdint(session, NULL, NULL);
|
||||||
while (rc == SSH_AUTH_INFO)
|
while (rc == SSH_AUTH_INFO)
|
||||||
{
|
{
|
||||||
const char *name = NULL, *instruction = NULL;
|
const char *name, *instruction;
|
||||||
int nprompts, iprompt;
|
int nprompts, iprompt;
|
||||||
|
|
||||||
name = ssh_userauth_kbdint_getname(session);
|
name = ssh_userauth_kbdint_getname(session);
|
||||||
@@ -231,7 +231,7 @@ int authenticate_kbdint(ssh_session session)
|
|||||||
printf("%s\n", instruction);
|
printf("%s\n", instruction);
|
||||||
for (iprompt = 0; iprompt < nprompts; iprompt++)
|
for (iprompt = 0; iprompt < nprompts; iprompt++)
|
||||||
{
|
{
|
||||||
const char *prompt = NULL;
|
const char *prompt;
|
||||||
char echo;
|
char echo;
|
||||||
|
|
||||||
prompt = ssh_userauth_kbdint_getprompt(session, iprompt, &echo);
|
prompt = ssh_userauth_kbdint_getprompt(session, iprompt, &echo);
|
||||||
@@ -251,7 +251,7 @@ int authenticate_kbdint(ssh_session session)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
char *ptr = NULL;
|
char *ptr;
|
||||||
|
|
||||||
ptr = getpass(prompt);
|
ptr = getpass(prompt);
|
||||||
if (ssh_userauth_kbdint_setanswer(session, iprompt, ptr) < 0)
|
if (ssh_userauth_kbdint_setanswer(session, iprompt, ptr) < 0)
|
||||||
@@ -354,7 +354,7 @@ The following example shows how to retrieve and dispose the issue banner:
|
|||||||
int display_banner(ssh_session session)
|
int display_banner(ssh_session session)
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
char *banner = NULL;
|
char *banner;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*** Does not work without calling ssh_userauth_none() first ***
|
*** Does not work without calling ssh_userauth_none() first ***
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ a SSH session that uses this channel:
|
|||||||
@code
|
@code
|
||||||
int show_remote_files(ssh_session session)
|
int show_remote_files(ssh_session session)
|
||||||
{
|
{
|
||||||
ssh_channel channel = NULL;
|
ssh_channel channel;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
channel = ssh_channel_new(session);
|
channel = ssh_channel_new(session);
|
||||||
@@ -91,10 +91,4 @@ that it used:
|
|||||||
}
|
}
|
||||||
@endcode
|
@endcode
|
||||||
|
|
||||||
Warning: In a single channel, only ONE command can be executed!
|
|
||||||
If you want to executed multiple commands, allocate separate channels for
|
|
||||||
them or consider opening interactive shell.
|
|
||||||
Attempting to run multiple consecutive commands in one channel will fail.
|
|
||||||
|
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -3,13 +3,13 @@ curve25519-sha256@libssh.org.txt Aris Adamantiadis <aris@badcode.be>
|
|||||||
|
|
||||||
1. Introduction
|
1. Introduction
|
||||||
|
|
||||||
This document describes the key exchange method curve25519-sha256@libssh.org
|
This document describes the key exchange methode curve25519-sha256@libssh.org
|
||||||
for SSH version 2 protocol. It is provided as an alternative to the existing
|
for SSH version 2 protocol. It is provided as an alternative to the existing
|
||||||
key exchange mechanisms based on either Diffie-Hellman or Elliptic Curve Diffie-
|
key exchange mechanisms based on either Diffie-Hellman or Elliptic Curve Diffie-
|
||||||
Hellman [RFC5656].
|
Hellman [RFC5656].
|
||||||
The reason is the following : During summer of 2013, revelations from ex-
|
The reason is the following : During summer of 2013, revelations from ex-
|
||||||
consultant at NSA Edward Snowden gave proof that NSA willingly inserts backdoors
|
consultant at NSA Edward Snowden gave proof that NSA willingly inserts backdoors
|
||||||
into software, hardware components and published standards. While it is still
|
into softwares, hardware components and published standards. While it is still
|
||||||
believed that the mathematics behind ECC cryptography are still sound and solid,
|
believed that the mathematics behind ECC cryptography are still sound and solid,
|
||||||
some people (including Bruce Schneier [SCHNEIER]), showed their lack of confidence
|
some people (including Bruce Schneier [SCHNEIER]), showed their lack of confidence
|
||||||
in NIST-published curves such as nistp256, nistp384, nistp521, for which constant
|
in NIST-published curves such as nistp256, nistp384, nistp521, for which constant
|
||||||
@@ -55,7 +55,7 @@ Compute shared secret.
|
|||||||
Generate exchange hash.
|
Generate exchange hash.
|
||||||
Verify server's signature.
|
Verify server's signature.
|
||||||
|
|
||||||
* Optional but strongly recommended as this protects against MITM attacks.
|
* Optional but strongly recommanded as this protects against MITM attacks.
|
||||||
|
|
||||||
This is implemented using the same messages as described in RFC5656 chapter 4
|
This is implemented using the same messages as described in RFC5656 chapter 4
|
||||||
|
|
||||||
|
|||||||
@@ -1,52 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
################################################################################
|
|
||||||
# .doc_coverage.sh #
|
|
||||||
# Script to detect overall documentation coverage of libssh. The script uses #
|
|
||||||
# doxygen to generate the documentation then parses it's output. #
|
|
||||||
# #
|
|
||||||
# maintainer: Norbert Pocs <npocs@redhat.com> #
|
|
||||||
################################################################################
|
|
||||||
BUILD_DIR="$1"
|
|
||||||
DOXYFILE_PATH="$BUILD_DIR/doc/Doxyfile.docs"
|
|
||||||
INDEX_XML_PATH="$BUILD_DIR/doc/xml/index.xml"
|
|
||||||
# filters
|
|
||||||
F_EXCLUDE_FILES=' wrapper.h legacy.h crypto.h priv.h chacha.h curve25519.h '
|
|
||||||
F_UNDOC_FUNC='(function).*is not documented'
|
|
||||||
F_FUNC='kind="function"'
|
|
||||||
F_HEADERS='libssh_8h_|group__libssh__'
|
|
||||||
F_CUT_BEFORE='.*<name>'
|
|
||||||
F_CUT_AFTER='<\/name><\/member>'
|
|
||||||
# Doxygen options
|
|
||||||
O_QUIET='QUIET=YES'
|
|
||||||
O_GEN_XML='GENERATE_XML=YES'
|
|
||||||
|
|
||||||
# check if build dir given
|
|
||||||
if [ $# -eq 0 ]; then
|
|
||||||
echo "Please provide the build directory e.g.: ./build"
|
|
||||||
exit 255
|
|
||||||
fi
|
|
||||||
|
|
||||||
# modify doxyfile to our needs:
|
|
||||||
# QUIET - less output
|
|
||||||
# GENERATE_XML - xml needed to inspect all the functions
|
|
||||||
# (note: the options are needed to be on separate lines)
|
|
||||||
# We want to exclude irrelevant files
|
|
||||||
MOD_DOXYFILE=$(cat "$DOXYFILE_PATH"; echo "$O_QUIET"; echo "$O_GEN_XML")
|
|
||||||
MOD_DOXYFILE=${MOD_DOXYFILE//EXCLUDE_PATTERNS.*=/EXCLUDE_PATTERNS=$F_EXCLUDE_FILES/g}
|
|
||||||
|
|
||||||
# call doxygen to get the warning messages
|
|
||||||
# and also generate the xml for inspection
|
|
||||||
DOXY_WARNINGS=$(echo "$MOD_DOXYFILE" | doxygen - 2>&1)
|
|
||||||
|
|
||||||
# get the number of undocumented functions
|
|
||||||
UNDOC_FUNC=$(echo "$DOXY_WARNINGS" | grep -cE "$F_UNDOC_FUNC")
|
|
||||||
|
|
||||||
# filter out the lines consisting of functions of our interest
|
|
||||||
FUNC_LINES=$(grep "$F_FUNC" "$INDEX_XML_PATH" | grep -E "$F_HEADERS")
|
|
||||||
# cut the irrelevant information and leave just the function names
|
|
||||||
ALL_FUNC=$(echo "$FUNC_LINES" | sed -e "s/$F_CUT_BEFORE//g" -e "s/$F_CUT_AFTER//")
|
|
||||||
# remove duplicates and get the number of functions
|
|
||||||
ALL_FUNC=$(echo "$ALL_FUNC" | sort - | uniq | wc -l)
|
|
||||||
|
|
||||||
# percentage of the documented functions
|
|
||||||
awk "BEGIN {printf \"Documentation coverage is %.2f%\n\", 100 - (${UNDOC_FUNC}/${ALL_FUNC}*100)}"
|
|
||||||
@@ -1,127 +0,0 @@
|
|||||||
/**
|
|
||||||
* Custom color scheme for libssh documentation
|
|
||||||
* Based on libssh.org color palette
|
|
||||||
*/
|
|
||||||
|
|
||||||
html {
|
|
||||||
/* Primary colors - using libssh.org orange accent */
|
|
||||||
--primary-color: #F78C40;
|
|
||||||
--primary-dark-color: #f57900;
|
|
||||||
--primary-light-color: #fab889;
|
|
||||||
|
|
||||||
/* Accent color - neutral gray */
|
|
||||||
--primary-lighter-color: #5A5A5A;
|
|
||||||
|
|
||||||
/* Page colors - clean white background */
|
|
||||||
--page-background-color: #ffffff;
|
|
||||||
--page-foreground-color: #333333;
|
|
||||||
--page-secondary-foreground-color: #666666;
|
|
||||||
|
|
||||||
/* Links - use the warm orange color */
|
|
||||||
--link-color: #F78C40;
|
|
||||||
--link-hover-color: #f0690a;
|
|
||||||
|
|
||||||
/* Code blocks and fragments - very light background */
|
|
||||||
--code-background: #f9f9f9;
|
|
||||||
--fragment-background: #f9f9f9;
|
|
||||||
|
|
||||||
/* Borders - subtle light grey */
|
|
||||||
--separator-color: #e0e0e0;
|
|
||||||
--border-light-color: #f0f0f0;
|
|
||||||
|
|
||||||
/* Side navigation - pure white */
|
|
||||||
--side-nav-background: #ffffff;
|
|
||||||
|
|
||||||
/* Menu colors - warm orange accent */
|
|
||||||
--menu-selected-background: #F78C40;
|
|
||||||
|
|
||||||
/* Tables and boxes - lighter */
|
|
||||||
--tablehead-background: #fbc7a2;
|
|
||||||
--tablehead-foreground: #333333;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Header styling with libssh brand colors */
|
|
||||||
#titlearea {
|
|
||||||
background-color: #5A5A5A;
|
|
||||||
background-image: linear-gradient(to right, #5A5A5A, #6a6a6a);
|
|
||||||
border-bottom: 3px solid #F78C40;
|
|
||||||
}
|
|
||||||
|
|
||||||
#projectname {
|
|
||||||
color: #ffffff !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
#projectbrief {
|
|
||||||
color: #fab889 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Top navigation tabs */
|
|
||||||
#top {
|
|
||||||
background: linear-gradient(to bottom, #5A5A5A 0%, #6a6a6a 100%);
|
|
||||||
}
|
|
||||||
|
|
||||||
.tabs, .tabs2, .tabs3 {
|
|
||||||
background-image: none;
|
|
||||||
background-color: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tablist li {
|
|
||||||
background: rgba(255, 255, 255, 0.1);
|
|
||||||
border-right: 1px solid rgba(255, 255, 255, 0.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
.tablist li:hover {
|
|
||||||
background: rgba(255, 255, 255, 0.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
.tablist li.current {
|
|
||||||
background: #F78C40;
|
|
||||||
border-bottom: 3px solid #f57900;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Tab text colors - comprehensive selectors */
|
|
||||||
#nav-path ul li a,
|
|
||||||
.tabs a,
|
|
||||||
.tabs2 a,
|
|
||||||
.tabs3 a,
|
|
||||||
.tablist a,
|
|
||||||
.tablist a:link,
|
|
||||||
.tablist a:visited,
|
|
||||||
.tablist li a,
|
|
||||||
#main-nav a,
|
|
||||||
.sm > li > a,
|
|
||||||
.sm > li > a .sub-arrow {
|
|
||||||
color: #ffffff !important;
|
|
||||||
text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Active/current tab text */
|
|
||||||
#nav-path ul li.current a,
|
|
||||||
.tabs .current a,
|
|
||||||
.tabs2 .current a,
|
|
||||||
.tabs3 .current a,
|
|
||||||
.tablist .current a,
|
|
||||||
.tablist .current a:link,
|
|
||||||
.tablist .current a:visited,
|
|
||||||
.tablist li.current a,
|
|
||||||
#main-nav .current a,
|
|
||||||
.sm .current a {
|
|
||||||
color: #333333 !important;
|
|
||||||
text-shadow: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Dropdown arrow - white color for top menu */
|
|
||||||
.sm-dox a span.sub-arrow {
|
|
||||||
border-right-color: #ffffff !important;
|
|
||||||
border-bottom-color: #ffffff !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Dropdown menu text - must be dark on white background */
|
|
||||||
/* Make this as specific as possible to override white color */
|
|
||||||
.sm-dox > li > ul > li > a,
|
|
||||||
.sm-dox li ul li a,
|
|
||||||
.sm-dox ul li a,
|
|
||||||
#main-menu ul li a {
|
|
||||||
color: #333333 !important;
|
|
||||||
text-shadow: none !important;
|
|
||||||
}
|
|
||||||
BIN
doc/favicon.png
|
Before Width: | Height: | Size: 858 B |
@@ -1,41 +0,0 @@
|
|||||||
# Script to download doxygen-awesome-css at build time
|
|
||||||
#
|
|
||||||
# Usage:
|
|
||||||
# cmake -P fetch_doxygen_awesome.cmake \
|
|
||||||
# -DURL=<download_url> \
|
|
||||||
# -DDEST_DIR=<destination_directory> \
|
|
||||||
# -DVERSION=<version>
|
|
||||||
|
|
||||||
if(NOT DEFINED URL)
|
|
||||||
message(FATAL_ERROR "URL not specified")
|
|
||||||
endif()
|
|
||||||
if(NOT DEFINED DEST_DIR)
|
|
||||||
message(FATAL_ERROR "DEST_DIR not specified")
|
|
||||||
endif()
|
|
||||||
if(NOT DEFINED VERSION)
|
|
||||||
message(FATAL_ERROR "VERSION not specified")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
set(EXTRACT_DIR "${DEST_DIR}/doxygen-awesome-css-${VERSION}")
|
|
||||||
|
|
||||||
if(NOT EXISTS "${EXTRACT_DIR}/doxygen-awesome.css")
|
|
||||||
message(STATUS "Downloading doxygen-awesome-css ${VERSION}...")
|
|
||||||
set(TARBALL "${DEST_DIR}/doxygen-awesome-css.tar.gz")
|
|
||||||
file(DOWNLOAD
|
|
||||||
"${URL}"
|
|
||||||
"${TARBALL}"
|
|
||||||
STATUS download_status
|
|
||||||
SHOW_PROGRESS
|
|
||||||
)
|
|
||||||
list(GET download_status 0 status_code)
|
|
||||||
if(NOT status_code EQUAL 0)
|
|
||||||
list(GET download_status 1 error_msg)
|
|
||||||
message(FATAL_ERROR "Download failed: ${error_msg}")
|
|
||||||
endif()
|
|
||||||
message(STATUS "Extracting doxygen-awesome-css...")
|
|
||||||
file(ARCHIVE_EXTRACT
|
|
||||||
INPUT "${TARBALL}"
|
|
||||||
DESTINATION "${DEST_DIR}"
|
|
||||||
)
|
|
||||||
file(REMOVE "${TARBALL}")
|
|
||||||
endif()
|
|
||||||
601
doc/fido2.dox
@@ -1,601 +0,0 @@
|
|||||||
/**
|
|
||||||
|
|
||||||
@page libssh_tutor_fido2 Chapter 11: FIDO2/U2F Keys Support
|
|
||||||
|
|
||||||
@section fido2_intro Introduction
|
|
||||||
|
|
||||||
The traditional SSH public key model stores the private key on disk
|
|
||||||
and anyone who obtains that file (and possibly its passphrase) can impersonate
|
|
||||||
the user. FIDO2 authenticators, such as USB security keys, are hardware tokens
|
|
||||||
that generate or securely store private key material within a secure element
|
|
||||||
and may require explicit user interaction such as a touch, PIN, or biometric
|
|
||||||
verification for use. Hence, security keys are far safer from theft or
|
|
||||||
exfiltration than traditional file-based SSH keys. libssh provides support
|
|
||||||
for FIDO2/U2F security keys as hardware-backed SSH authentication credentials.
|
|
||||||
|
|
||||||
This chapter explains the concepts, build prerequisites, the API, and
|
|
||||||
usage patterns for enrolling (creating) and using security key-backed SSH
|
|
||||||
keys, including resident (discoverable) credentials.
|
|
||||||
|
|
||||||
@subsection fido2_resident_keys Resident Keys
|
|
||||||
|
|
||||||
Two credential storage modes exist for security keys:
|
|
||||||
|
|
||||||
- Non-resident (default): A credential ID (key handle) and metadata are
|
|
||||||
stored on the client-side in a key file. This key handle must be
|
|
||||||
presented to the FIDO2/U2F device while signing. This is somewhat
|
|
||||||
similar to traditional SSH keys, except that the key handle is not the
|
|
||||||
private key itself, but used in combination with the device's master key
|
|
||||||
to derive the actual private key.
|
|
||||||
|
|
||||||
- Resident (discoverable): The credential (and metadata like user id) is
|
|
||||||
stored on the device. No local file is needed; the device can enumerate or
|
|
||||||
locate the credential internally when queried.
|
|
||||||
|
|
||||||
Advantages of resident keys include portability (using the same device
|
|
||||||
across hosts) and resilience (no loss if the local machine is destroyed).
|
|
||||||
Although, they may be limited by the storage of the authenticator.
|
|
||||||
|
|
||||||
@subsection fido2_presence_verification User Presence vs. User Verification
|
|
||||||
|
|
||||||
FIDO2 distinguishes between:
|
|
||||||
|
|
||||||
- User Presence (UP): A simple physical interaction (touch) to confirm a
|
|
||||||
human is present.
|
|
||||||
|
|
||||||
- User Verification (UV): Verification of the user’s identity through
|
|
||||||
biometric authentication or a PIN.
|
|
||||||
|
|
||||||
Requiring UV provides additional protection if the device is stolen
|
|
||||||
and used without the PIN/biometric.
|
|
||||||
|
|
||||||
libssh exposes flags controlling these requirements (see below).
|
|
||||||
|
|
||||||
@subsection fido2_callbacks The Callback Abstraction
|
|
||||||
|
|
||||||
Different environments may need to access security keys through different
|
|
||||||
transport layers (e.g., USB-HID, NFC, Bluetooth, etc.). To accommodate
|
|
||||||
this variability, libssh does not hard-code a single implementation.
|
|
||||||
|
|
||||||
Instead, it defines a small callback interface (`ssh_sk_callbacks`) used for all
|
|
||||||
security key operations. Any implementation of this callback interface can be used
|
|
||||||
by higher-level PKI functions to perform enroll/sign/load_resident_keys
|
|
||||||
operations without needing to know the transport specifics. Hence, users can
|
|
||||||
define their own implementations for these callbacks to support different
|
|
||||||
transport protocols or custom hardware. Refer @ref fido2_custom_callbacks
|
|
||||||
for additional details.
|
|
||||||
|
|
||||||
The callback interface is defined in `libssh/callbacks.h` and the behaviour
|
|
||||||
and return values are specified by `libssh/sk_api.h`, which is the same
|
|
||||||
interface defined by OpenSSH for its security key support. This means that
|
|
||||||
any callback implementations (also called "middleware" in OpenSSH terminology)
|
|
||||||
developed for OpenSSH can be adapted to libssh with minimal changes.
|
|
||||||
|
|
||||||
The following operations are abstracted by the callback interface:
|
|
||||||
|
|
||||||
- api_version(): Report the version of the SK API that the callback implementation
|
|
||||||
is based on, so that libssh can check whether this implementation would be
|
|
||||||
compatible with the SK API version that it supports.
|
|
||||||
Refer @ref fido2_custom_callbacks_version for additional details.
|
|
||||||
- enroll(): Create (enroll) a new credential, returning public key, key
|
|
||||||
handle, attestation data.
|
|
||||||
- sign(): Produce a signature for supplied inputs using an existing key
|
|
||||||
handle.
|
|
||||||
- load_resident_keys(): Enumerate resident (discoverable) credentials stored
|
|
||||||
on the authenticator.
|
|
||||||
|
|
||||||
libssh provides a default implementation of the `ssh_sk_callbacks` using
|
|
||||||
the libfido2 library for the USB-HID transport protocol. Hence, by default,
|
|
||||||
libssh can interact with any FIDO2/U2F device that supports USB-HID and is
|
|
||||||
compatible with libfido2, without requiring any additional modifications.
|
|
||||||
|
|
||||||
@subsection fido2_build Building with FIDO2 Support
|
|
||||||
|
|
||||||
To enable FIDO2/U2F support, libssh must be built with the WITH_FIDO2
|
|
||||||
build option as follows:
|
|
||||||
|
|
||||||
@verbatim
|
|
||||||
cmake -DWITH_FIDO2=ON <other options> ..
|
|
||||||
@endverbatim
|
|
||||||
|
|
||||||
libssh will also build the default USB-HID `ssh_sk_callbacks`, if the
|
|
||||||
libfido2 library and headers are installed on your system.
|
|
||||||
|
|
||||||
@warning If built without libfido2, support for interacting with FIDO2/U2F
|
|
||||||
devices over USB-HID will not be available.
|
|
||||||
|
|
||||||
@subsection fido2_api_overview API Overview
|
|
||||||
|
|
||||||
Security key operations are configured through the `ssh_pki_ctx`
|
|
||||||
which allows to specify both general PKI options and FIDO2-specific
|
|
||||||
options such as the sk_callbacks, challenge data, application string, flags, etc.
|
|
||||||
|
|
||||||
The following sections describe the options that can be configured and how
|
|
||||||
the `ssh_pki_ctx` is used in conjunction with `ssh_key` to perform
|
|
||||||
enrollment, signing, and resident key loading operations.
|
|
||||||
|
|
||||||
@subsection fido2_key_objects Security Key Objects & Metadata
|
|
||||||
|
|
||||||
Security keys are surfaced as `ssh_key` objects of type
|
|
||||||
`SSH_KEYTYPE_SK_ECDSA` and `SSH_KEYTYPE_SK_ED25519` (corresponding to the
|
|
||||||
OpenSSH public key algorithm names `sk-ecdsa-sha2-nistp256@openssh.com` and
|
|
||||||
`sk-ssh-ed25519@openssh.com`). In addition to standard key handling, libssh
|
|
||||||
exposes the following helper functions to retrieve embedded SK metadata:
|
|
||||||
|
|
||||||
- ssh_key_get_sk_application(): Returns the relying party / application
|
|
||||||
(RP ID) string. The Relying Party ID (RP ID) is a string
|
|
||||||
that identifies the application or service requesting key enrollment. It
|
|
||||||
ensures that a credential is bound to a specific origin, preventing
|
|
||||||
phishing across sites. During registration, the authenticator associates
|
|
||||||
the credential with this RP ID so that it can later only be used for
|
|
||||||
authentication requests from the same relying party. For SSH keys, the
|
|
||||||
common format is "ssh:user@host".
|
|
||||||
|
|
||||||
- ssh_key_get_sk_user_id(): Returns a copy of the user ID associated with a key
|
|
||||||
which represents a unique identifier for the user within the relying
|
|
||||||
party (application) context. It is typically a string (such as an
|
|
||||||
email, or a random identifier) that helps distinguish credentials
|
|
||||||
belonging to different users for the same application.
|
|
||||||
|
|
||||||
Though the user ID can be binary data according to the FIDO2 spec, libssh only
|
|
||||||
supports NUL-terminated strings for enrolling new keys in order to remain compatible
|
|
||||||
with the OpenSSH's sk-api interface.
|
|
||||||
|
|
||||||
However, libssh does support loading existing resident keys with user IDs containing
|
|
||||||
arbitrary binary data. It does so by using an `ssh_string` to store the loaded key's
|
|
||||||
user_id, and an `ssh_string` can contain arbitrary binary data that can not be stored
|
|
||||||
in a traditional NUL-terminated string (like null bytes).
|
|
||||||
|
|
||||||
@note The user_id is NOT stored in the key file for non-resident keys. It is only
|
|
||||||
available for resident (discoverable) keys loaded from the authenticator via
|
|
||||||
ssh_sk_resident_keys_load(). For keys imported from files, this function returns
|
|
||||||
NULL.
|
|
||||||
|
|
||||||
- ssh_key_get_sk_flags(): Returns the flags associated with the key. The
|
|
||||||
following are the supported flags and they can be combined using
|
|
||||||
bitwise OR:
|
|
||||||
- SSH_SK_USER_PRESENCE_REQD : Require user presence (touch).
|
|
||||||
- SSH_SK_USER_VERIFICATION_REQD : Require user verification
|
|
||||||
(PIN/biometric).
|
|
||||||
- SSH_SK_RESIDENT_KEY : Request a resident discoverable credential.
|
|
||||||
- SSH_SK_FORCE_OPERATION : Force resident (discoverable) credential
|
|
||||||
creation even if one with same application and user_id already
|
|
||||||
exists.
|
|
||||||
|
|
||||||
These functions perform no additional communication with the
|
|
||||||
authenticator, this metadata is captured during enrollment/loading and
|
|
||||||
cached in the `ssh_key`.
|
|
||||||
|
|
||||||
@subsection fido2_options Setting Security Key Context Options
|
|
||||||
|
|
||||||
Options are set via ssh_pki_ctx_options_set().
|
|
||||||
|
|
||||||
Representative security key options:
|
|
||||||
- SSH_PKI_OPTION_SK_APPLICATION (const char *): Required relying party ID
|
|
||||||
If not set, a default value of "ssh:" is used.
|
|
||||||
- SSH_PKI_OPTION_SK_FLAGS (uint8_t *): Flags described above. If not set,
|
|
||||||
defaults to SSH_SK_USER_PRESENCE_REQD. This is because OpenSSH `sshd`
|
|
||||||
requires user presence for security key authentication by default.
|
|
||||||
- SSH_PKI_OPTION_SK_USER_ID (const char *): Represents a unique identifier
|
|
||||||
for the user within the relying party (application) context.
|
|
||||||
It is typically a string (such as an email, or a random identifier) that
|
|
||||||
helps distinguish credentials belonging to different users for the same
|
|
||||||
application. If not set, defaults to 64 zeros.
|
|
||||||
- SSH_PKI_OPTION_SK_CHALLENGE (ssh_buffer): Custom challenge; if omitted a
|
|
||||||
random 32-byte challenge is generated.
|
|
||||||
- SSH_PKI_OPTION_SK_CALLBACKS (ssh_sk_callbacks): Replace the default
|
|
||||||
callbacks with custom callbacks.
|
|
||||||
|
|
||||||
PIN callback: Use ssh_pki_ctx_set_sk_pin_callback() to register a function
|
|
||||||
matching `ssh_auth_callback` to prompt for and supply a PIN. The callback may
|
|
||||||
be called multiple times to ask for the pin depending on the authenticator policy.
|
|
||||||
|
|
||||||
Callback options: Callback implementations may accept additional configuration
|
|
||||||
name/value options such as the path to the fido device. These options can be provided via
|
|
||||||
`ssh_pki_ctx_sk_callbacks_option_set()`. Refer @ref fido2_custom_callbacks_options
|
|
||||||
for additional details.
|
|
||||||
|
|
||||||
The built-in callback implementation provided by libssh supports additional options,
|
|
||||||
with their names defined in `libssh.h` prefixed with `SSH_SK_OPTION_NAME_*`, such as:
|
|
||||||
|
|
||||||
SSH_SK_OPTION_NAME_DEVICE_PATH: Used for specifying a device path.
|
|
||||||
If the device path is not specified and multiple devices are connected, then
|
|
||||||
depending upon the operation and the flags set, the callback implementation may
|
|
||||||
automatically select a suitable device, or the user may be prompted to touch the
|
|
||||||
device they want to use.
|
|
||||||
|
|
||||||
SSH_SK_OPTION_NAME_USER_ID: Used for setting the user ID.
|
|
||||||
Note that the user ID can also be set using the ssh_pki_ctx_options_set() API.
|
|
||||||
|
|
||||||
@subsection fido2_enrollment Enrollment Example
|
|
||||||
|
|
||||||
An enrollment operation creates a new credential on the authenticator and
|
|
||||||
returns an ssh_key object representing it. The application and user_id
|
|
||||||
fields are required for creating the credential. The other options are
|
|
||||||
optional. A successful enrollment returns the public key, key handle, and
|
|
||||||
metadata which are stored in the ssh_key object, and may optionally return
|
|
||||||
attestation data which is used for verifying the authenticator model and
|
|
||||||
firmware version.
|
|
||||||
|
|
||||||
Below is a simple example enrolling an Ed25519 security key (non-resident)
|
|
||||||
requiring user presence only:
|
|
||||||
|
|
||||||
@code
|
|
||||||
#include <libssh/libssh.h>
|
|
||||||
#include <string.h>
|
|
||||||
|
|
||||||
static int pin_cb(const char *prompt,
|
|
||||||
char *buf,
|
|
||||||
size_t len,
|
|
||||||
int echo,
|
|
||||||
int verify,
|
|
||||||
void *userdata)
|
|
||||||
{
|
|
||||||
(void)prompt;
|
|
||||||
(void)echo;
|
|
||||||
(void)verify;
|
|
||||||
(void)userdata;
|
|
||||||
|
|
||||||
/* In a real application, the user would be prompted to enter the PIN */
|
|
||||||
const char *pin = "4242";
|
|
||||||
size_t l = strlen(pin);
|
|
||||||
if (l + 1 > len) {
|
|
||||||
return SSH_ERROR;
|
|
||||||
}
|
|
||||||
|
|
||||||
memcpy(buf, pin, l + 1);
|
|
||||||
return SSH_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
int enroll_sk_key()
|
|
||||||
{
|
|
||||||
const char *app = "ssh:user@host";
|
|
||||||
const char *user_id = "alice";
|
|
||||||
uint8_t flags = SSH_SK_USER_PRESENCE_REQD | SSH_SK_USER_VERIFICATION_REQD;
|
|
||||||
const char *device_path = "/dev/hidraw6"; /* Optional device path */
|
|
||||||
|
|
||||||
ssh_pki_ctx pki_ctx = ssh_pki_ctx_new();
|
|
||||||
ssh_pki_ctx_options_set(pki_ctx, SSH_PKI_OPTION_SK_APPLICATION, app);
|
|
||||||
ssh_pki_ctx_options_set(pki_ctx, SSH_PKI_OPTION_SK_USER_ID, user_id);
|
|
||||||
ssh_pki_ctx_options_set(pki_ctx, SSH_PKI_OPTION_SK_FLAGS, &flags);
|
|
||||||
|
|
||||||
ssh_pki_ctx_set_sk_pin_callback(pki_ctx, pin_cb, NULL);
|
|
||||||
|
|
||||||
ssh_pki_ctx_sk_callbacks_option_set(pki_ctx,
|
|
||||||
SSH_SK_OPTION_NAME_DEVICE_PATH,
|
|
||||||
device_path,
|
|
||||||
true);
|
|
||||||
|
|
||||||
ssh_key enrolled = NULL;
|
|
||||||
int rc = ssh_pki_generate_key(SSH_KEYTYPE_SK_ED25519,
|
|
||||||
pki_ctx,
|
|
||||||
&enrolled); /* produces sk-ed25519 key */
|
|
||||||
|
|
||||||
/* Save enrolled key using ssh_pki_export_privkey_file, retrieve attestation
|
|
||||||
* buffer etc. */
|
|
||||||
|
|
||||||
/* Free context and key when done */
|
|
||||||
}
|
|
||||||
@endcode
|
|
||||||
|
|
||||||
After a successful enrollment, you can retrieve the attestation buffer
|
|
||||||
(if provided by the authenticator) from the PKI context:
|
|
||||||
|
|
||||||
@code
|
|
||||||
ssh_buffer att_buf = NULL;
|
|
||||||
rc = ssh_pki_ctx_get_sk_attestation_buffer(pki_ctx, &att_buf);
|
|
||||||
if (rc == SSH_OK && att_buf != NULL) {
|
|
||||||
/* att_buf now contains the serialized attestation
|
|
||||||
* ("ssh-sk-attest-v01"). You can inspect, save, or
|
|
||||||
* parse the buffer as needed
|
|
||||||
*/
|
|
||||||
ssh_buffer_free(att_buf);
|
|
||||||
}
|
|
||||||
@endcode
|
|
||||||
|
|
||||||
Notes:
|
|
||||||
- The attestation buffer is only populated if the enrollment operation
|
|
||||||
succeeds and the authenticator provides attestation data.
|
|
||||||
- `ssh_pki_ctx_get_sk_attestation_buffer()` returns a copy of the attestation
|
|
||||||
buffer; the caller must free it with `ssh_buffer_free()`.
|
|
||||||
|
|
||||||
@subsection fido2_signing Authenticating with a Stored Security Key Public Key
|
|
||||||
|
|
||||||
To authenticate using a security key, the application typically loads the
|
|
||||||
previously enrolled sk-* private key, establishes an SSH connection, and
|
|
||||||
calls `ssh_userauth_publickey()`. libssh automatically recognizes security
|
|
||||||
key types and transparently handles the required hardware-backed
|
|
||||||
authentication steps such as prompting for a touch or PIN using the
|
|
||||||
configured security key callbacks.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
@code
|
|
||||||
#include <libssh/libssh.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
int auth_with_sk_file(const char *host,
|
|
||||||
const char *user,
|
|
||||||
const char *privkey_path)
|
|
||||||
{
|
|
||||||
ssh_session session = NULL;
|
|
||||||
ssh_key privkey = NULL;
|
|
||||||
int rc = SSH_ERROR;
|
|
||||||
|
|
||||||
session = ssh_new();
|
|
||||||
ssh_options_set(session, SSH_OPTIONS_HOST, host);
|
|
||||||
ssh_options_set(session, SSH_OPTIONS_USER, user);
|
|
||||||
ssh_connect(session);
|
|
||||||
|
|
||||||
ssh_pki_import_privkey_file(privkey_path, NULL, NULL, NULL, &privkey);
|
|
||||||
|
|
||||||
ssh_pki_ctx pki_ctx = ssh_pki_ctx_new();
|
|
||||||
/* Optionally set PIN callback, device path, etc. */
|
|
||||||
/* ssh_pki_ctx_set_sk_pin_callback(pki_ctx, pin_cb, NULL); */
|
|
||||||
|
|
||||||
ssh_options_set(session, SSH_OPTIONS_PKI_CONTEXT, pki_ctx);
|
|
||||||
|
|
||||||
rc = ssh_userauth_publickey(session, user, privkey);
|
|
||||||
if (rc == SSH_AUTH_SUCCESS) {
|
|
||||||
printf("Authenticated with security key.\n");
|
|
||||||
rc = SSH_OK;
|
|
||||||
} else {
|
|
||||||
fprintf(stderr,
|
|
||||||
"Authentication failed rc=%d err=%s\n",
|
|
||||||
rc,
|
|
||||||
ssh_get_error(session));
|
|
||||||
rc = SSH_ERROR;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Free resources */
|
|
||||||
}
|
|
||||||
@endcode
|
|
||||||
|
|
||||||
@subsection fido2_resident Resident Key Enumeration
|
|
||||||
|
|
||||||
Resident keys stored on the device can be discovered and loaded with
|
|
||||||
ssh_sk_resident_keys_load() which takes a PKI context (configured with
|
|
||||||
a PIN callback) and returns each key as an ssh_key and the number of keys loaded.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
@code
|
|
||||||
#include <libssh/libssh.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <string.h>
|
|
||||||
|
|
||||||
static int pin_cb(const char *prompt,
|
|
||||||
char *buf,
|
|
||||||
size_t len,
|
|
||||||
int echo,
|
|
||||||
int verify,
|
|
||||||
void *userdata)
|
|
||||||
{
|
|
||||||
(void)prompt;
|
|
||||||
(void)echo;
|
|
||||||
(void)verify;
|
|
||||||
(void)userdata;
|
|
||||||
const char *pin = "4242";
|
|
||||||
size_t l = strlen(pin);
|
|
||||||
|
|
||||||
if (l + 1 > len) {
|
|
||||||
return SSH_ERROR;
|
|
||||||
}
|
|
||||||
|
|
||||||
memcpy(buf, pin, l + 1);
|
|
||||||
return SSH_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
int auth_with_resident(const char *host,
|
|
||||||
const char *user,
|
|
||||||
const char *application,
|
|
||||||
const char *user_id)
|
|
||||||
{
|
|
||||||
ssh_pki_ctx pki_ctx = NULL;
|
|
||||||
size_t num_found = 0;
|
|
||||||
ssh_key *keys = NULL;
|
|
||||||
ssh_key final_key = NULL;
|
|
||||||
int rc = SSH_ERROR;
|
|
||||||
|
|
||||||
ssh_string cur_application = NULL;
|
|
||||||
ssh_string cur_user_id = NULL;
|
|
||||||
ssh_string expected_application = NULL;
|
|
||||||
ssh_string expected_user_id = NULL;
|
|
||||||
|
|
||||||
pki_ctx = ssh_pki_ctx_new();
|
|
||||||
ssh_pki_ctx_set_sk_pin_callback(pki_ctx, pin_cb, NULL);
|
|
||||||
|
|
||||||
expected_application = ssh_string_from_char(application);
|
|
||||||
expected_user_id = ssh_string_from_char(user_id);
|
|
||||||
|
|
||||||
rc = ssh_sk_resident_keys_load(pki_ctx, &keys, &num_found);
|
|
||||||
for (size_t i = 0; i < num_found; i++) {
|
|
||||||
cur_application = ssh_key_get_sk_application(keys[i]);
|
|
||||||
cur_user_id = ssh_key_get_sk_user_id(keys[i]);
|
|
||||||
|
|
||||||
if (ssh_string_cmp(cur_application, expected_application) == 0 &&
|
|
||||||
ssh_string_cmp(cur_user_id, expected_user_id) == 0) {
|
|
||||||
SSH_STRING_FREE(cur_application);
|
|
||||||
SSH_STRING_FREE(cur_user_id);
|
|
||||||
final_key = keys[i];
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
SSH_STRING_FREE(cur_application);
|
|
||||||
SSH_STRING_FREE(cur_user_id);
|
|
||||||
}
|
|
||||||
|
|
||||||
SSH_STRING_FREE(expected_application);
|
|
||||||
SSH_STRING_FREE(expected_user_id);
|
|
||||||
|
|
||||||
/* Continue with authentication using the ssh_key with
|
|
||||||
* ssh_userauth_publickey as usual, and free resources when done. */
|
|
||||||
}
|
|
||||||
@endcode
|
|
||||||
|
|
||||||
@subsection fido2_sshsig Signing using the sshsig API
|
|
||||||
|
|
||||||
Security keys can also be used for general-purpose signing of arbitrary data
|
|
||||||
(without SSH authentication) using the existing `sshsig_sign()` and `sshsig_verify()`
|
|
||||||
functions. These functions work seamlessly with security key types
|
|
||||||
(`SSH_KEYTYPE_SK_ECDSA` and `SSH_KEYTYPE_SK_ED25519`) and will automatically
|
|
||||||
invoke the configured security key callbacks to perform hardware-backed signing
|
|
||||||
operations.
|
|
||||||
|
|
||||||
@subsection fido2_custom_callbacks Implementing Custom Callback Implementations
|
|
||||||
|
|
||||||
Users may need to implement custom callback implementations to support
|
|
||||||
different transport protocols (e.g., NFC, Bluetooth) beyond the default USB-HID
|
|
||||||
support. This section describes how to implement and integrate custom callback
|
|
||||||
implementations.
|
|
||||||
|
|
||||||
To implement custom callbacks, you must include the following headers:
|
|
||||||
|
|
||||||
@code
|
|
||||||
#include <libssh/callbacks.h> /* For ssh_sk_callbacks_struct */
|
|
||||||
#include <libssh/sk_api.h> /* For SK API constants and data structures */
|
|
||||||
@endcode
|
|
||||||
|
|
||||||
The `libssh/sk_api.h` header provides the complete interface specification including
|
|
||||||
request/response structures, flags, and version macros.
|
|
||||||
|
|
||||||
@subsubsection fido2_custom_callbacks_version API Version Compatibility
|
|
||||||
|
|
||||||
libssh validates callback implementations by checking the API version returned by
|
|
||||||
the `api_version()` callback. To ensure compatibility, libssh compares the major
|
|
||||||
version (upper 16 bits) of the returned value with `LIBSSH_SK_API_VERSION_MAJOR`.
|
|
||||||
If they don't match, libssh will reject the callback implementation.
|
|
||||||
This ensures that the callbacks' SK API matches the major version expected by libssh,
|
|
||||||
while allowing minor version differences.
|
|
||||||
|
|
||||||
@subsubsection fido2_custom_callbacks_implementation Implementation Example
|
|
||||||
|
|
||||||
Here's a minimal example of defining and using custom callbacks:
|
|
||||||
|
|
||||||
@code
|
|
||||||
#include <libssh/libssh.h>
|
|
||||||
#include <libssh/callbacks.h>
|
|
||||||
#include <libssh/sk_api.h>
|
|
||||||
|
|
||||||
/* Your custom API version callback */
|
|
||||||
static uint32_t my_sk_api_version(void)
|
|
||||||
{
|
|
||||||
/* Match the major version, set your own minor version */
|
|
||||||
return SSH_SK_VERSION_MAJOR | 0x0001;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Your custom enroll callback */
|
|
||||||
static int my_sk_enroll(uint32_t alg,
|
|
||||||
const uint8_t *challenge,
|
|
||||||
size_t challenge_len,
|
|
||||||
const char *application,
|
|
||||||
uint8_t flags,
|
|
||||||
const char *pin,
|
|
||||||
struct sk_option **options,
|
|
||||||
struct sk_enroll_response **enroll_response)
|
|
||||||
{
|
|
||||||
/* Parse options array to extract custom parameters */
|
|
||||||
if (options != NULL) {
|
|
||||||
for (size_t i = 0; options[i] != NULL; i++) {
|
|
||||||
if (strcmp(options[i]->name, "my_custom_option") == 0) {
|
|
||||||
/* Use options[i]->value */
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Implement your enroll logic here */
|
|
||||||
/* ... */
|
|
||||||
|
|
||||||
return SSH_SK_ERR_GENERAL; /* Return appropriate error code */
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Implement other required callbacks: sign, load_resident_keys */
|
|
||||||
/* ... */
|
|
||||||
|
|
||||||
/* Define your callback structure */
|
|
||||||
static struct ssh_sk_callbacks_struct my_sk_callbacks = {
|
|
||||||
.size = sizeof(struct ssh_sk_callbacks_struct),
|
|
||||||
.api_version = my_sk_api_version,
|
|
||||||
.enroll = my_sk_enroll,
|
|
||||||
.sign = my_sk_sign, /* Your implementation */
|
|
||||||
.load_resident_keys = my_sk_load_resident_keys, /* Your implementation */
|
|
||||||
};
|
|
||||||
|
|
||||||
/* Usage example */
|
|
||||||
void use_custom_callbacks(void)
|
|
||||||
{
|
|
||||||
ssh_pki_ctx pki_ctx = ssh_pki_ctx_new();
|
|
||||||
|
|
||||||
/* Set your custom callbacks */
|
|
||||||
ssh_pki_ctx_options_set(pki_ctx,
|
|
||||||
SSH_PKI_OPTION_SK_CALLBACKS,
|
|
||||||
&my_sk_callbacks);
|
|
||||||
|
|
||||||
/* Pass custom options to your callbacks */
|
|
||||||
ssh_pki_ctx_sk_callbacks_option_set(pki_ctx,
|
|
||||||
"my_custom_option",
|
|
||||||
"my_custom_value",
|
|
||||||
false);
|
|
||||||
|
|
||||||
/* Use the context for enrollment, signing, etc. */
|
|
||||||
}
|
|
||||||
@endcode
|
|
||||||
|
|
||||||
@subsubsection fido2_custom_callbacks_options Passing Custom Options
|
|
||||||
|
|
||||||
The `ssh_pki_ctx_sk_callbacks_option_set()` function allows you to pass
|
|
||||||
implementation-specific options as name/value string pairs:
|
|
||||||
|
|
||||||
@code
|
|
||||||
ssh_pki_ctx_sk_callbacks_option_set(pki_ctx,
|
|
||||||
"option_name",
|
|
||||||
"option_value",
|
|
||||||
required);
|
|
||||||
@endcode
|
|
||||||
|
|
||||||
Parameters:
|
|
||||||
- `option_name`: The name of the option (e.g., "device_path", "my_custom_param")
|
|
||||||
- `option_value`: The string value for this option
|
|
||||||
- `required`: If true, this option must be processed by the callback implementation
|
|
||||||
and cannot be ignored. If false, the option is advisory and can be skipped if the
|
|
||||||
callback implementation does not support it.
|
|
||||||
|
|
||||||
These options are passed to your callbacks in the `struct sk_option **options`
|
|
||||||
parameter as a NULL-terminated array. Each `sk_option` has the following fields:
|
|
||||||
- `name`: The option name (char *)
|
|
||||||
- `value`: The option value (char *)
|
|
||||||
- `required`: Whether the option must be processed (uint8_t, non-zero = required)
|
|
||||||
|
|
||||||
@subsubsection fido2_custom_callbacks_openssh OpenSSH Middleware Compatibility
|
|
||||||
|
|
||||||
Since libssh uses the same SK API as OpenSSH, middleware implementations developed
|
|
||||||
for OpenSSH can be adapted with minimal changes.
|
|
||||||
To adapt an OpenSSH middleware for libssh, create a wrapper that populates
|
|
||||||
`ssh_sk_callbacks_struct` with pointers to the middleware's functions.
|
|
||||||
|
|
||||||
@subsection fido2_testing Testing and Environment Variables
|
|
||||||
|
|
||||||
Unit tests covering USB-HID enroll/sign/load_resident_keys operations can be found
|
|
||||||
in the `tests/unittests/torture_sk_usbhid.c` file. To run these tests you
|
|
||||||
must have libfido2 installed and the WITH_FIDO2=ON build option set.
|
|
||||||
Additionally, you must ensure the following:
|
|
||||||
|
|
||||||
- An actual FIDO2 device must be connected to the test machine.
|
|
||||||
- The TORTURE_SK_USBHID environment variable must be set.
|
|
||||||
- The environment variable TORTURE_SK_PIN=<device PIN> must be set.
|
|
||||||
|
|
||||||
If these are not set, the tests are skipped.
|
|
||||||
|
|
||||||
The higher level PKI integration tests can be found in
|
|
||||||
`tests/unittests/torture_pki_sk.c` and the tests related to the sshsig API
|
|
||||||
can be found in `tests/unittests/torture_pki_sshsig.c`.
|
|
||||||
These use the callback implementation provided by OpenSSH's sk-dummy.so,
|
|
||||||
which simulates an authenticator without requiring any hardware. Hence, these tests
|
|
||||||
can be run in the CI environment.
|
|
||||||
However, these tests can also be configured to use the default USB-HID callbacks
|
|
||||||
by setting the same environment variables as described above.
|
|
||||||
|
|
||||||
The following devices were tested during development:
|
|
||||||
|
|
||||||
- Yubico Security Key NFC - USB-A
|
|
||||||
|
|
||||||
*/
|
|
||||||
@@ -100,7 +100,7 @@ used to retrieve google's home page from the remote SSH server.
|
|||||||
@code
|
@code
|
||||||
int direct_forwarding(ssh_session session)
|
int direct_forwarding(ssh_session session)
|
||||||
{
|
{
|
||||||
ssh_channel forwarding_channel = NULL;
|
ssh_channel forwarding_channel;
|
||||||
int rc = SSH_ERROR;
|
int rc = SSH_ERROR;
|
||||||
char *http_get = "GET / HTTP/1.1\nHost: www.google.com\n\n";
|
char *http_get = "GET / HTTP/1.1\nHost: www.google.com\n\n";
|
||||||
int nbytes, nwritten;
|
int nbytes, nwritten;
|
||||||
@@ -161,7 +161,7 @@ local libssh application, which handles them:
|
|||||||
int web_server(ssh_session session)
|
int web_server(ssh_session session)
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
ssh_channel channel = NULL;
|
ssh_channel channel;
|
||||||
char buffer[256];
|
char buffer[256];
|
||||||
int nbytes, nwritten;
|
int nbytes, nwritten;
|
||||||
int port = 0;
|
int port = 0;
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
A SSH session goes through the following steps:
|
A SSH session goes through the following steps:
|
||||||
|
|
||||||
- Before connecting to the server, you can set up if you wish one or other
|
- Before connecting to the server, you can set up if you wish one or other
|
||||||
server public key authentication, i.e. RSA, ED25519 or ECDSA. You can choose
|
server public key authentication, i.e. DSA or RSA. You can choose
|
||||||
cryptographic algorithms you trust and compression algorithms if any. You
|
cryptographic algorithms you trust and compression algorithms if any. You
|
||||||
must of course set up the hostname.
|
must of course set up the hostname.
|
||||||
|
|
||||||
@@ -15,7 +15,7 @@ A SSH session goes through the following steps:
|
|||||||
file.
|
file.
|
||||||
|
|
||||||
- The client must authenticate: the classical ways are password, or
|
- The client must authenticate: the classical ways are password, or
|
||||||
public keys (from ecdsa, ed25519 and rsa key-pairs generated by openssh).
|
public keys (from dsa and rsa key-pairs generated by openssh).
|
||||||
If a SSH agent is running, it is possible to use it.
|
If a SSH agent is running, it is possible to use it.
|
||||||
|
|
||||||
- Now that the user has been authenticated, you must open one or several
|
- Now that the user has been authenticated, you must open one or several
|
||||||
@@ -79,7 +79,7 @@ Here is a small example of how to use it:
|
|||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
ssh_session my_ssh_session = NULL;
|
ssh_session my_ssh_session;
|
||||||
int verbosity = SSH_LOG_PROTOCOL;
|
int verbosity = SSH_LOG_PROTOCOL;
|
||||||
int port = 22;
|
int port = 22;
|
||||||
|
|
||||||
@@ -126,7 +126,7 @@ Here's an example:
|
|||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
ssh_session my_ssh_session = NULL;
|
ssh_session my_ssh_session;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
my_ssh_session = ssh_new();
|
my_ssh_session = ssh_new();
|
||||||
@@ -190,8 +190,8 @@ int verify_knownhost(ssh_session session)
|
|||||||
ssh_key srv_pubkey = NULL;
|
ssh_key srv_pubkey = NULL;
|
||||||
size_t hlen;
|
size_t hlen;
|
||||||
char buf[10];
|
char buf[10];
|
||||||
char *hexa = NULL;
|
char *hexa;
|
||||||
char *p = NULL;
|
char *p;
|
||||||
int cmp;
|
int cmp;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
@@ -317,9 +317,9 @@ The example below shows an authentication with password:
|
|||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
ssh_session my_ssh_session = NULL;
|
ssh_session my_ssh_session;
|
||||||
int rc;
|
int rc;
|
||||||
char *password = NULL;
|
char *password;
|
||||||
|
|
||||||
// Open session and set options
|
// Open session and set options
|
||||||
my_ssh_session = ssh_new();
|
my_ssh_session = ssh_new();
|
||||||
@@ -380,7 +380,7 @@ The example below shows how to execute a remote command:
|
|||||||
@code
|
@code
|
||||||
int show_remote_processes(ssh_session session)
|
int show_remote_processes(ssh_session session)
|
||||||
{
|
{
|
||||||
ssh_channel channel = NULL;
|
ssh_channel channel;
|
||||||
int rc;
|
int rc;
|
||||||
char buffer[256];
|
char buffer[256];
|
||||||
int nbytes;
|
int nbytes;
|
||||||
|
|||||||
@@ -1,92 +0,0 @@
|
|||||||
<!-- HTML header for doxygen 1.14.0-->
|
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="$langISO">
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
|
||||||
<meta name="generator" content="Doxygen $doxygenversion"/>
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
||||||
<!--BEGIN PROJECT_NAME--><title>$projectname: $title</title><!--END PROJECT_NAME-->
|
|
||||||
<!--BEGIN !PROJECT_NAME--><title>$title</title><!--END !PROJECT_NAME-->
|
|
||||||
<!--BEGIN PROJECT_ICON-->
|
|
||||||
<link rel="icon" href="$relpath^$projecticon" type="image/x-icon" />
|
|
||||||
<!--END PROJECT_ICON-->
|
|
||||||
<link href="$relpath^tabs.css" rel="stylesheet" type="text/css"/>
|
|
||||||
<!--BEGIN FULL_SIDEBAR-->
|
|
||||||
<script type="text/javascript">var page_layout=1;</script>
|
|
||||||
<!--END FULL_SIDEBAR-->
|
|
||||||
<script type="text/javascript" src="$relpath^jquery.js"></script>
|
|
||||||
<script type="text/javascript" src="$relpath^dynsections.js"></script>
|
|
||||||
<!--BEGIN COPY_CLIPBOARD-->
|
|
||||||
<script type="text/javascript" src="$relpath^clipboard.js"></script>
|
|
||||||
<!--END COPY_CLIPBOARD-->
|
|
||||||
$treeview
|
|
||||||
$search
|
|
||||||
$mathjax
|
|
||||||
$darkmode
|
|
||||||
<link href="$relpath^$stylesheet" rel="stylesheet" type="text/css" />
|
|
||||||
$extrastylesheet
|
|
||||||
<script type="text/javascript" src="$relpath^doxygen-awesome-darkmode-toggle.js"></script>
|
|
||||||
<script type="text/javascript">
|
|
||||||
DoxygenAwesomeDarkModeToggle.init()
|
|
||||||
</script>
|
|
||||||
<script type="text/javascript" src="$relpath^doxygen-awesome-fragment-copy-button.js"></script>
|
|
||||||
<script type="text/javascript">
|
|
||||||
DoxygenAwesomeFragmentCopyButton.init()
|
|
||||||
</script>
|
|
||||||
<script type="text/javascript" src="$relpath^doxygen-awesome-paragraph-link.js"></script>
|
|
||||||
<script type="text/javascript">
|
|
||||||
DoxygenAwesomeParagraphLink.init()
|
|
||||||
</script>
|
|
||||||
<script type="text/javascript" src="$relpath^doxygen-awesome-interactive-toc.js"></script>
|
|
||||||
<script type="text/javascript">
|
|
||||||
DoxygenAwesomeInteractiveToc.init()
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<!--BEGIN FULL_SIDEBAR-->
|
|
||||||
<div id="side-nav" class="ui-resizable side-nav-resizable"><!-- do not remove this div, it is closed by doxygen! -->
|
|
||||||
<!--END FULL_SIDEBAR-->
|
|
||||||
|
|
||||||
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
|
||||||
|
|
||||||
<!--BEGIN TITLEAREA-->
|
|
||||||
<div id="titlearea">
|
|
||||||
<table cellspacing="0" cellpadding="0">
|
|
||||||
<tbody>
|
|
||||||
<tr id="projectrow">
|
|
||||||
<!--BEGIN PROJECT_LOGO-->
|
|
||||||
<td id="projectlogo"><img alt="Logo" src="$relpath^$projectlogo"$logosize/></td>
|
|
||||||
<!--END PROJECT_LOGO-->
|
|
||||||
<!--BEGIN PROJECT_NAME-->
|
|
||||||
<td id="projectalign">
|
|
||||||
<div id="projectname">$projectname<!--BEGIN PROJECT_NUMBER--><span id="projectnumber"> $projectnumber</span><!--END PROJECT_NUMBER-->
|
|
||||||
</div>
|
|
||||||
<!--BEGIN PROJECT_BRIEF--><div id="projectbrief">$projectbrief</div><!--END PROJECT_BRIEF-->
|
|
||||||
</td>
|
|
||||||
<!--END PROJECT_NAME-->
|
|
||||||
<!--BEGIN !PROJECT_NAME-->
|
|
||||||
<!--BEGIN PROJECT_BRIEF-->
|
|
||||||
<td>
|
|
||||||
<div id="projectbrief">$projectbrief</div>
|
|
||||||
</td>
|
|
||||||
<!--END PROJECT_BRIEF-->
|
|
||||||
<!--END !PROJECT_NAME-->
|
|
||||||
<!--BEGIN DISABLE_INDEX-->
|
|
||||||
<!--BEGIN SEARCHENGINE-->
|
|
||||||
<!--BEGIN !FULL_SIDEBAR-->
|
|
||||||
<td>$searchbox</td>
|
|
||||||
<!--END !FULL_SIDEBAR-->
|
|
||||||
<!--END SEARCHENGINE-->
|
|
||||||
<!--END DISABLE_INDEX-->
|
|
||||||
</tr>
|
|
||||||
<!--BEGIN SEARCHENGINE-->
|
|
||||||
<!--BEGIN FULL_SIDEBAR-->
|
|
||||||
<tr><td colspan="2">$searchbox</td></tr>
|
|
||||||
<!--END FULL_SIDEBAR-->
|
|
||||||
<!--END SEARCHENGINE-->
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
<!--END TITLEAREA-->
|
|
||||||
<!-- end header part -->
|
|
||||||
@@ -14,8 +14,8 @@ libssh is a Free Software / Open Source project. The libssh library
|
|||||||
is distributed under LGPL license. The libssh project has nothing to do with
|
is distributed under LGPL license. The libssh project has nothing to do with
|
||||||
"libssh2", which is a completely different and independent project.
|
"libssh2", which is a completely different and independent project.
|
||||||
|
|
||||||
libssh can run on top of either libcrypto, mbedtls or libgcrypt (deprecated)
|
libssh can run on top of either libgcrypt or libcrypto,
|
||||||
general-purpose cryptographic libraries.
|
two general-purpose cryptographic libraries.
|
||||||
|
|
||||||
This tutorial concentrates for its main part on the "client" side of libssh.
|
This tutorial concentrates for its main part on the "client" side of libssh.
|
||||||
To learn how to accept incoming SSH connections (how to write a SSH server),
|
To learn how to accept incoming SSH connections (how to write a SSH server),
|
||||||
@@ -44,12 +44,6 @@ Table of contents:
|
|||||||
|
|
||||||
@subpage libssh_tutor_threads
|
@subpage libssh_tutor_threads
|
||||||
|
|
||||||
@subpage libssh_tutor_pkcs11
|
|
||||||
|
|
||||||
@subpage libssh_tutor_sftp_aio
|
|
||||||
|
|
||||||
@subpage libssh_tutor_fido2
|
|
||||||
|
|
||||||
@subpage libssh_tutor_todo
|
@subpage libssh_tutor_todo
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -19,13 +19,12 @@ the interesting functions as you go.
|
|||||||
|
|
||||||
The libssh library provides:
|
The libssh library provides:
|
||||||
|
|
||||||
- <strong>Key Exchange Methods</strong>: <i>sntrup761x25519-sha512, sntrup761x25519-sha512@openssh.com, mlkem768x25519-sha256, mlkem768nistp256-sha256, mlkem1024nistp384-sha384, curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521</i>, diffie-hellman-group1-sha1, diffie-hellman-group14-sha1
|
- <strong>Key Exchange Methods</strong>: <i>curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521</i>, diffie-hellman-group1-sha1, diffie-hellman-group14-sha1
|
||||||
- <strong>GSSAPI Key Exchange Methods</strong>: gss-group14-sha256-*, gss-group16-sha512-*, gss-nistp256-sha256-*, gss-curve25519-sha256-*
|
- <strong>Public Key Algorithms</strong>: ssh-ed25519, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, ecdsa-sha2-nistp521, ssh-rsa, rsa-sha2-512, rsa-sha2-256,ssh-dss
|
||||||
- <strong>Public Key Algorithms</strong>: ssh-ed25519, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, ecdsa-sha2-nistp521, ssh-rsa, rsa-sha2-512, rsa-sha2-256
|
|
||||||
- <strong>Ciphers</strong>: <i>aes256-ctr, aes192-ctr, aes128-ctr</i>, aes256-cbc (rijndael-cbc@lysator.liu.se), aes192-cbc, aes128-cbc, 3des-cbc, blowfish-cbc
|
- <strong>Ciphers</strong>: <i>aes256-ctr, aes192-ctr, aes128-ctr</i>, aes256-cbc (rijndael-cbc@lysator.liu.se), aes192-cbc, aes128-cbc, 3des-cbc, blowfish-cbc
|
||||||
- <strong>Compression Schemes</strong>: zlib, <i>zlib@openssh.com</i>, none
|
- <strong>Compression Schemes</strong>: zlib, <i>zlib@openssh.com</i>, none
|
||||||
- <strong>MAC hashes</strong>: hmac-sha1, hmac-sha2-256, hmac-sha2-512, hmac-md5
|
- <strong>MAC hashes</strong>: hmac-sha1, hmac-sha2-256, hmac-sha2-512, hmac-md5
|
||||||
- <strong>Authentication</strong>: none, password, public-key, keyboard-interactive, <i>gssapi-with-mic, gssapi-keyex</i>
|
- <strong>Authentication</strong>: none, password, public-key, keyboard-interactive, <i>gssapi-with-mic</i>
|
||||||
- <strong>Channels</strong>: shell, exec (incl. SCP wrapper), direct-tcpip, subsystem, <i>auth-agent-req@openssh.com</i>
|
- <strong>Channels</strong>: shell, exec (incl. SCP wrapper), direct-tcpip, subsystem, <i>auth-agent-req@openssh.com</i>
|
||||||
- <strong>Global Requests</strong>: tcpip-forward, forwarded-tcpip
|
- <strong>Global Requests</strong>: tcpip-forward, forwarded-tcpip
|
||||||
- <strong>Channel Requests</strong>: x11, pty, <i>exit-status, signal, exit-signal, keepalive@openssh.com, auth-agent-req@openssh.com</i>
|
- <strong>Channel Requests</strong>: x11, pty, <i>exit-status, signal, exit-signal, keepalive@openssh.com, auth-agent-req@openssh.com</i>
|
||||||
@@ -34,7 +33,7 @@ The libssh library provides:
|
|||||||
- <strong>Thread-safe</strong>: Just don't share sessions
|
- <strong>Thread-safe</strong>: Just don't share sessions
|
||||||
- <strong>Non-blocking</strong>: it can be used both blocking and non-blocking
|
- <strong>Non-blocking</strong>: it can be used both blocking and non-blocking
|
||||||
- <strong>Your sockets</strong>: the app hands over the socket, or uses libssh sockets
|
- <strong>Your sockets</strong>: the app hands over the socket, or uses libssh sockets
|
||||||
- <b>OpenSSL</b>, <b>MBedTLS</b> or <b>gcrypt</b> (deprecated): builds with either
|
- <b>OpenSSL</b> or <b>gcrypt</b>: builds with either
|
||||||
|
|
||||||
@section main-additional-features Additional Features
|
@section main-additional-features Additional Features
|
||||||
|
|
||||||
@@ -150,7 +149,7 @@ The libssh Team
|
|||||||
|
|
||||||
@subsection main-rfc-secsh Secure Shell (SSH)
|
@subsection main-rfc-secsh Secure Shell (SSH)
|
||||||
|
|
||||||
The following RFC documents described SSH-2 protocol as an Internet standard.
|
The following RFC documents described SSH-2 protcol as an Internet standard.
|
||||||
|
|
||||||
- <a href="https://tools.ietf.org/html/rfc4250" target="_blank">RFC 4250</a>,
|
- <a href="https://tools.ietf.org/html/rfc4250" target="_blank">RFC 4250</a>,
|
||||||
The Secure Shell (SSH) Protocol Assigned Numbers
|
The Secure Shell (SSH) Protocol Assigned Numbers
|
||||||
@@ -171,15 +170,21 @@ The following RFC documents described SSH-2 protocol as an Internet standard.
|
|||||||
The Secure Shell (SSH) Session Channel Break Extension
|
The Secure Shell (SSH) Session Channel Break Extension
|
||||||
- <a href="https://tools.ietf.org/html/rfc4344" target="_blank">RFC 4344</a>,
|
- <a href="https://tools.ietf.org/html/rfc4344" target="_blank">RFC 4344</a>,
|
||||||
The Secure Shell (SSH) Transport Layer Encryption Modes
|
The Secure Shell (SSH) Transport Layer Encryption Modes
|
||||||
|
- <a href="https://tools.ietf.org/html/rfc4345" target="_blank">RFC 4345</a>,
|
||||||
|
Improved Arcfour Modes for the Secure Shell (SSH) Transport Layer Protocol
|
||||||
|
|
||||||
It was later modified and expanded by the following RFCs.
|
It was later modified and expanded by the following RFCs.
|
||||||
|
|
||||||
- <a href="https://tools.ietf.org/html/rfc4419" target="_blank">RFC 4419</a>,
|
- <a href="https://tools.ietf.org/html/rfc4419" target="_blank">RFC 4419</a>,
|
||||||
Diffie-Hellman Group Exchange for the Secure Shell (SSH) Transport Layer
|
Diffie-Hellman Group Exchange for the Secure Shell (SSH) Transport Layer
|
||||||
Protocol
|
Protocol
|
||||||
|
- <a href="https://tools.ietf.org/html/rfc4432" target="_blank">RFC 4432</a>,
|
||||||
|
RSA Key Exchange for the Secure Shell (SSH) Transport Layer Protocol
|
||||||
|
(not implemented in libssh)
|
||||||
- <a href="https://tools.ietf.org/html/rfc4462" target="_blank">RFC 4462</a>,
|
- <a href="https://tools.ietf.org/html/rfc4462" target="_blank">RFC 4462</a>,
|
||||||
Generic Security Service Application Program Interface (GSS-API)
|
Generic Security Service Application Program Interface (GSS-API)
|
||||||
Authentication and Key Exchange for the Secure Shell (SSH) Protocol
|
Authentication and Key Exchange for the Secure Shell (SSH) Protocol
|
||||||
|
(only the authentication implemented in libssh)
|
||||||
- <a href="https://tools.ietf.org/html/rfc4716" target="_blank">RFC 4716</a>,
|
- <a href="https://tools.ietf.org/html/rfc4716" target="_blank">RFC 4716</a>,
|
||||||
The Secure Shell (SSH) Public Key File Format
|
The Secure Shell (SSH) Public Key File Format
|
||||||
(not implemented in libssh)
|
(not implemented in libssh)
|
||||||
@@ -198,6 +203,7 @@ It was later modified and expanded by the following RFCs.
|
|||||||
(not implemented in libssh)
|
(not implemented in libssh)
|
||||||
- <a href="https://tools.ietf.org/html/rfc8160" target="_blank">RFC 8160</a>,
|
- <a href="https://tools.ietf.org/html/rfc8160" target="_blank">RFC 8160</a>,
|
||||||
IUTF8 Terminal Mode in Secure Shell (SSH)
|
IUTF8 Terminal Mode in Secure Shell (SSH)
|
||||||
|
(not handled in libssh)
|
||||||
- <a href="https://tools.ietf.org/html/rfc8270" target="_blank">RFC 8270</a>,
|
- <a href="https://tools.ietf.org/html/rfc8270" target="_blank">RFC 8270</a>,
|
||||||
Increase the Secure Shell Minimum Recommended Diffie-Hellman Modulus Size to 2048 Bits
|
Increase the Secure Shell Minimum Recommended Diffie-Hellman Modulus Size to 2048 Bits
|
||||||
- <a href="https://tools.ietf.org/html/rfc8308" target="_blank">RFC 8308</a>,
|
- <a href="https://tools.ietf.org/html/rfc8308" target="_blank">RFC 8308</a>,
|
||||||
@@ -207,23 +213,15 @@ It was later modified and expanded by the following RFCs.
|
|||||||
Use of RSA Keys with SHA-256 and SHA-512 in the Secure Shell (SSH) Protocol
|
Use of RSA Keys with SHA-256 and SHA-512 in the Secure Shell (SSH) Protocol
|
||||||
- <a href="https://tools.ietf.org/html/rfc8709" target="_blank">RFC 8709</a>,
|
- <a href="https://tools.ietf.org/html/rfc8709" target="_blank">RFC 8709</a>,
|
||||||
Ed25519 and Ed448 Public Key Algorithms for the Secure Shell (SSH) Protocol
|
Ed25519 and Ed448 Public Key Algorithms for the Secure Shell (SSH) Protocol
|
||||||
- <a href="https://tools.ietf.org/html/rfc8709" target="_blank">RFC 8731</a>,
|
|
||||||
Secure Shell (SSH) Key Exchange Method Using Curve25519 and Curve448
|
|
||||||
- <a href="https://tools.ietf.org/html/rfc9142" target="_blank">RFC 9142</a>,
|
|
||||||
Key Exchange (KEX) Method Updates and Recommendations for Secure Shell (SSH)
|
|
||||||
|
|
||||||
There are also drafts that are being currently developed and followed.
|
There are also drafts that are being currently developed and followed.
|
||||||
|
|
||||||
- <a href="https://tools.ietf.org/html/draft-miller-ssh-agent-03" target="_blank">draft-miller-ssh-agent-08</a>
|
- <a href="https://tools.ietf.org/html/draft-ietf-curdle-ssh-kex-sha2-10" target="_blank">draft-ietf-curdle-ssh-kex-sha2-10</a>
|
||||||
|
Key Exchange (KEX) Method Updates and Recommendations for Secure Shell (SSH)
|
||||||
|
- <a href="https://tools.ietf.org/html/draft-miller-ssh-agent-03" target="_blank">draft-miller-ssh-agent-03</a>
|
||||||
SSH Agent Protocol
|
SSH Agent Protocol
|
||||||
- <a href="https://tools.ietf.org/html/draft-ietf-sshm-mlkem-hybrid-kex-09" target="_blank">draft-ietf-sshm-mlkem-hybrid-kex-09</a>
|
- <a href="https://tools.ietf.org/html/draft-ietf-curdle-ssh-curves-12" target="_blank">draft-ietf-curdle-ssh-curves-12</a>
|
||||||
PQ/T Hybrid Key Exchange with ML-KEM in SSH
|
Secure Shell (SSH) Key Exchange Method using Curve25519 and Curve448
|
||||||
- <a href="https://tools.ietf.org/html/draft-ietf-sshm-ntruprime-ssh-06" target="_blank">draft-ietf-sshm-ntruprime-ssh-06</a>
|
|
||||||
Secure Shell (SSH) Key Exchange Method Using Hybrid Streamlined NTRU Prime sntrup761 and X25519 with SHA-512: sntrup761x25519-sha512
|
|
||||||
- <a href="https://tools.ietf.org/html/draft-ietf-sshm-chacha20-poly1305-02" target="_blank">draft-ietf-sshm-chacha20-poly1305-02</a>
|
|
||||||
Secure Shell (SSH) authenticated encryption cipher: chacha20-poly1305
|
|
||||||
- <a href="https://tools.ietf.org/html/draft-ietf-sshm-strict-kex-01" target="_blank">draft-ietf-sshm-strict-kex-01</a>
|
|
||||||
SSH Strict KEX extension
|
|
||||||
|
|
||||||
Interesting cryptography documents:
|
Interesting cryptography documents:
|
||||||
|
|
||||||
@@ -248,6 +246,8 @@ them like the statvfs calls in SFTP or the ssh-agent.
|
|||||||
OpenSSH's deviations and extensions</a>
|
OpenSSH's deviations and extensions</a>
|
||||||
- <a href="https://api.libssh.org/rfc/PROTOCOL.certkeys" target="_blank">
|
- <a href="https://api.libssh.org/rfc/PROTOCOL.certkeys" target="_blank">
|
||||||
OpenSSH's pubkey certificate authentication</a>
|
OpenSSH's pubkey certificate authentication</a>
|
||||||
|
- <a href="https://api.libssh.org/rfc/PROTOCOL.chacha20poly1305" target="_blank">
|
||||||
|
chacha20-poly1305@openssh.com authenticated encryption mode</a>
|
||||||
- <a href="https://api.libssh.org/rfc/PROTOCOL.key" target="_blank">
|
- <a href="https://api.libssh.org/rfc/PROTOCOL.key" target="_blank">
|
||||||
OpenSSH private key format (openssh-key-v1)</a>
|
OpenSSH private key format (openssh-key-v1)</a>
|
||||||
|
|
||||||
|
|||||||
@@ -9,11 +9,11 @@ objects stored on the tokens can be uniquely identified is called PKCS #11 URI
|
|||||||
(Uniform Resource Identifier) and is defined in RFC 7512
|
(Uniform Resource Identifier) and is defined in RFC 7512
|
||||||
(https://tools.ietf.org/html/rfc7512).
|
(https://tools.ietf.org/html/rfc7512).
|
||||||
|
|
||||||
# Pre-requisites (OpenSSL < 3.0):
|
Pre-requisites:
|
||||||
|
|
||||||
OpenSSL 1.x defines an abstract layer called the "engine" to achieve
|
OpenSSL defines an abstract layer called the "engine" to achieve cryptographic
|
||||||
cryptographic acceleration. The engine_pkcs11 module acts like an interface
|
acceleration. The engine_pkcs11 module acts like an interface between the PKCS #11
|
||||||
between the PKCS #11 modules and the OpenSSL application.
|
modules and the OpenSSL engine.
|
||||||
|
|
||||||
To build and use libssh with PKCS #11 support:
|
To build and use libssh with PKCS #11 support:
|
||||||
1. Enable the cmake option: $ cmake -DWITH_PKCS11_URI=ON
|
1. Enable the cmake option: $ cmake -DWITH_PKCS11_URI=ON
|
||||||
@@ -21,23 +21,6 @@ To build and use libssh with PKCS #11 support:
|
|||||||
3. Install and configure engine_pkcs11 (https://github.com/OpenSC/libp11).
|
3. Install and configure engine_pkcs11 (https://github.com/OpenSC/libp11).
|
||||||
4. Plug in a working smart card or configure softhsm (https://www.opendnssec.org/softhsm).
|
4. Plug in a working smart card or configure softhsm (https://www.opendnssec.org/softhsm).
|
||||||
|
|
||||||
@warning The support for Engines was deprecated in OpenSSL 3.0 so this approach
|
|
||||||
is deprecated in libssh 0.11.x.
|
|
||||||
|
|
||||||
# Pre-requisites (OpenSSL 3.0.8+)
|
|
||||||
|
|
||||||
The OpenSSL 3.0 is deprecating usage of low-level engines in favor of high-level
|
|
||||||
"providers" to provide alternative implementation of cryptographic operations
|
|
||||||
or acceleration.
|
|
||||||
|
|
||||||
To build and use libssh with PKCS #11 support using OpenSSL providers:
|
|
||||||
1. Install and configure pkcs11 provider (https://github.com/latchset/pkcs11-provider).
|
|
||||||
2. Enable the cmake options: $ cmake -DWITH_PKCS11_URI=ON -DWITH_PKCS11_PROVIDER=ON
|
|
||||||
3. Build with OpenSSL.
|
|
||||||
4. Plug in a working smart card or configure softhsm (https://www.opendnssec.org/softhsm).
|
|
||||||
|
|
||||||
# New API functions
|
|
||||||
|
|
||||||
The functions ssh_pki_import_pubkey_file() and ssh_pki_import_privkey_file() that
|
The functions ssh_pki_import_pubkey_file() and ssh_pki_import_privkey_file() that
|
||||||
import the public and private keys from files respectively are now modified to support
|
import the public and private keys from files respectively are now modified to support
|
||||||
PKCS #11 URIs. These functions automatically detect if the provided filename is a file path
|
PKCS #11 URIs. These functions automatically detect if the provided filename is a file path
|
||||||
@@ -81,6 +64,4 @@ We recommend the users to provide a specific PKCS #11 URI so that it matches onl
|
|||||||
If the engine discovers multiple slots that could potentially contain the private keys referenced
|
If the engine discovers multiple slots that could potentially contain the private keys referenced
|
||||||
by the provided PKCS #11 URI, the engine will not try to authenticate.
|
by the provided PKCS #11 URI, the engine will not try to authenticate.
|
||||||
|
|
||||||
For testing, the SoftHSM PKCS#11 library is used.
|
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|||||||
114
doc/sftp.dox
@@ -139,7 +139,7 @@ Unlike its equivalent in the SCP subsystem, this function does NOT change the
|
|||||||
current directory to the newly created subdirectory.
|
current directory to the newly created subdirectory.
|
||||||
|
|
||||||
|
|
||||||
@subsection sftp_write Writing to a file on the remote computer
|
@subsection sftp_write Copying a file to the remote computer
|
||||||
|
|
||||||
You handle the contents of a remote file just like you would do with a
|
You handle the contents of a remote file just like you would do with a
|
||||||
local file: you open the file in a given mode, move the file pointer in it,
|
local file: you open the file in a given mode, move the file pointer in it,
|
||||||
@@ -203,14 +203,16 @@ int sftp_helloworld(ssh_session session, sftp_session sftp)
|
|||||||
|
|
||||||
@subsection sftp_read Reading a file from the remote computer
|
@subsection sftp_read Reading a file from the remote computer
|
||||||
|
|
||||||
A synchronous read from a remote file is done using sftp_read(). This
|
The nice thing with reading a file over the network through SFTP is that it
|
||||||
section describes how to download a remote file using sftp_read(). The
|
can be done both in a synchronous way or an asynchronous way. If you read the file
|
||||||
next section will discuss more about synchronous/asynchronous read/write
|
asynchronously, your program can do something else while it waits for the
|
||||||
operations using libssh sftp API.
|
results to come.
|
||||||
|
|
||||||
|
Synchronous read is done with sftp_read().
|
||||||
|
|
||||||
Files are normally transferred in chunks. A good chunk size is 16 KB. The following
|
Files are normally transferred in chunks. A good chunk size is 16 KB. The following
|
||||||
example transfers the remote file "/etc/profile" in 16 KB chunks. For each chunk we
|
example transfers the remote file "/etc/profile" in 16 KB chunks. For each chunk we
|
||||||
request, sftp_read() blocks till the data has been received:
|
request, sftp_read blocks till the data has been received:
|
||||||
|
|
||||||
@code
|
@code
|
||||||
// Good chunk size
|
// Good chunk size
|
||||||
@@ -271,39 +273,87 @@ int sftp_read_sync(ssh_session session, sftp_session sftp)
|
|||||||
}
|
}
|
||||||
@endcode
|
@endcode
|
||||||
|
|
||||||
@subsection sftp_aio Performing an asynchronous read/write on a file on the remote computer
|
Asynchronous read is done in two steps, first sftp_async_read_begin(), which
|
||||||
|
returns a "request handle", and then sftp_async_read(), which uses that request handle.
|
||||||
|
If the file has been opened in nonblocking mode, then sftp_async_read()
|
||||||
|
might return SSH_AGAIN, which means that the request hasn't completed yet
|
||||||
|
and that the function should be called again later on. Otherwise,
|
||||||
|
sftp_async_read() waits for the data to come. To open a file in nonblocking mode,
|
||||||
|
call sftp_file_set_nonblocking() right after you opened it. Default is blocking mode.
|
||||||
|
|
||||||
sftp_read() performs a "synchronous" read operation on a remote file.
|
The example below reads a very big file in asynchronous, nonblocking, mode. Each
|
||||||
This means that sftp_read() will first request the server to read some
|
time the data is not ready yet, a counter is incremented.
|
||||||
data from the remote file and then would wait until the server response
|
|
||||||
containing data to read (or an error) arrives at the client side.
|
|
||||||
|
|
||||||
sftp_write() performs a "synchronous" write operation on a remote file.
|
@code
|
||||||
This means that sftp_write() will first request the server to write some
|
// Good chunk size
|
||||||
data to the remote file and then would wait until the server response
|
#define MAX_XFER_BUF_SIZE 16384
|
||||||
containing information about the status of the write operation arrives at the
|
|
||||||
client side.
|
|
||||||
|
|
||||||
If your client program wants to do something other than waiting for the
|
int sftp_read_async(ssh_session session, sftp_session sftp)
|
||||||
response after requesting a read/write, the synchronous sftp_read() and
|
{
|
||||||
sftp_write() can't be used. In such a case the "asynchronous" sftp aio API
|
int access_type;
|
||||||
should be used.
|
sftp_file file;
|
||||||
|
char buffer[MAX_XFER_BUF_SIZE];
|
||||||
|
int async_request;
|
||||||
|
int nbytes;
|
||||||
|
long counter;
|
||||||
|
int rc;
|
||||||
|
|
||||||
Please go through @ref libssh_tutor_sftp_aio for a detailed description
|
access_type = O_RDONLY;
|
||||||
of the sftp aio API.
|
file = sftp_open(sftp, "some_very_big_file",
|
||||||
|
access_type, 0);
|
||||||
|
if (file == NULL) {
|
||||||
|
fprintf(stderr, "Can't open file for reading: %s\n",
|
||||||
|
ssh_get_error(session));
|
||||||
|
return SSH_ERROR;
|
||||||
|
}
|
||||||
|
sftp_file_set_nonblocking(file);
|
||||||
|
|
||||||
The sftp aio API provides two categories of functions :
|
async_request = sftp_async_read_begin(file, sizeof(buffer));
|
||||||
- sftp_aio_begin_*() : For requesting a read/write from the server.
|
counter = 0L;
|
||||||
- sftp_aio_wait_*() : For waiting for the response of a previously
|
usleep(10000);
|
||||||
issued read/write request from the server.
|
if (async_request >= 0) {
|
||||||
|
nbytes = sftp_async_read(file, buffer, sizeof(buffer),
|
||||||
|
async_request);
|
||||||
|
} else {
|
||||||
|
nbytes = -1;
|
||||||
|
}
|
||||||
|
|
||||||
Hence, the client program can call sftp_aio_begin_*() to request a read/write
|
while (nbytes > 0 || nbytes == SSH_AGAIN) {
|
||||||
and then can perform any number of operations (other than waiting) before
|
if (nbytes > 0) {
|
||||||
calling sftp_aio_wait_*() for waiting for the response of the previously
|
write(1, buffer, nbytes);
|
||||||
issued request.
|
async_request = sftp_async_read_begin(file, sizeof(buffer));
|
||||||
|
} else {
|
||||||
|
counter++;
|
||||||
|
}
|
||||||
|
usleep(10000);
|
||||||
|
|
||||||
We call read/write operations performed in the manner described above as
|
if (async_request >= 0) {
|
||||||
"asynchronous" read/write operations on a remote file.
|
nbytes = sftp_async_read(file, buffer, sizeof(buffer),
|
||||||
|
async_request);
|
||||||
|
} else {
|
||||||
|
nbytes = -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (nbytes < 0) {
|
||||||
|
fprintf(stderr, "Error while reading file: %s\n",
|
||||||
|
ssh_get_error(session));
|
||||||
|
sftp_close(file);
|
||||||
|
return SSH_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("The counter has reached value: %ld\n", counter);
|
||||||
|
|
||||||
|
rc = sftp_close(file);
|
||||||
|
if (rc != SSH_OK) {
|
||||||
|
fprintf(stderr, "Can't close the read file: %s\n",
|
||||||
|
ssh_get_error(session));
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
|
return SSH_OK;
|
||||||
|
}
|
||||||
|
@endcode
|
||||||
|
|
||||||
@subsection sftp_ls Listing the contents of a directory
|
@subsection sftp_ls Listing the contents of a directory
|
||||||
|
|
||||||
|
|||||||
705
doc/sftp_aio.dox
@@ -1,705 +0,0 @@
|
|||||||
/**
|
|
||||||
|
|
||||||
@page libssh_tutor_sftp_aio Chapter 10: The SFTP asynchronous I/O
|
|
||||||
|
|
||||||
@section sftp_aio_api The SFTP asynchronous I/O
|
|
||||||
|
|
||||||
NOTE : Please read @ref libssh_tutor_sftp before reading this page. The
|
|
||||||
synchronous sftp_read() and sftp_write() have been described there.
|
|
||||||
|
|
||||||
SFTP AIO stands for "SFTP Asynchronous Input/Output". This API contains
|
|
||||||
functions which perform async read/write operations on remote files.
|
|
||||||
|
|
||||||
File transfers performed using the asynchronous sftp aio API can be
|
|
||||||
significantly faster than the file transfers performed using the synchronous
|
|
||||||
sftp read/write API (see sftp_read() and sftp_write()).
|
|
||||||
|
|
||||||
The sftp aio API functions are divided into two categories :
|
|
||||||
- sftp_aio_begin_*() [see sftp_aio_begin_read(), sftp_aio_begin_write()]:
|
|
||||||
These functions send a request for an i/o operation to the server and
|
|
||||||
provide the caller an sftp aio handle corresponding to the sent request.
|
|
||||||
|
|
||||||
- sftp_aio_wait_*() [see sftp_aio_wait_read(), sftp_aio_wait_write()]:
|
|
||||||
These functions wait for the server response corresponding to a previously
|
|
||||||
issued request. Which request ? the request corresponding to the sftp aio
|
|
||||||
handle supplied by the caller to these functions.
|
|
||||||
|
|
||||||
Conceptually, you can think of the sftp aio handle as a request identifier.
|
|
||||||
|
|
||||||
Technically, the sftp_aio_begin_*() functions dynamically allocate memory to
|
|
||||||
store information about the i/o request they send and provide the caller a
|
|
||||||
handle to this memory, we call this handle an sftp aio handle.
|
|
||||||
|
|
||||||
sftp_aio_wait_*() functions use the information stored in that memory (handled
|
|
||||||
by the caller supplied sftp aio handle) to identify a request, and then they
|
|
||||||
wait for that request's response. These functions also release the memory
|
|
||||||
handled by the caller supplied sftp aio handle (except when they return
|
|
||||||
SSH_AGAIN).
|
|
||||||
|
|
||||||
sftp_aio_free() can also be used to release the memory handled by an sftp aio
|
|
||||||
handle but unlike the sftp_aio_wait_*() functions, it doesn't wait for a
|
|
||||||
response. This should be used to release the memory corresponding to an sftp
|
|
||||||
aio handle when some failure occurs. An example has been provided at the
|
|
||||||
end of this page to show the usage of sftp_aio_free().
|
|
||||||
|
|
||||||
To begin with, this tutorial will provide basic examples that describe the
|
|
||||||
usage of sftp aio API to perform a single read/write operation.
|
|
||||||
|
|
||||||
The later sections describe the usage of the sftp aio API to obtain faster file
|
|
||||||
transfers as compared to the transfers performed using the synchronous sftp
|
|
||||||
read/write API.
|
|
||||||
|
|
||||||
On encountering an error, the sftp aio API functions set the sftp and ssh
|
|
||||||
errors just like any other libssh sftp API function. These errors can be
|
|
||||||
obtained using sftp_get_error(), ssh_get_error() and ssh_get_error_code().
|
|
||||||
The code examples provided on this page ignore error handling for the sake of
|
|
||||||
brevity.
|
|
||||||
|
|
||||||
@subsection sftp_aio_read Using the sftp aio API for reading (a basic example)
|
|
||||||
|
|
||||||
For performing an async read operation on a sftp file (see sftp_open()),
|
|
||||||
the first step is to call sftp_aio_begin_read() to send a read request to the
|
|
||||||
server. The caller is provided an sftp aio handle corresponding to the sent
|
|
||||||
read request.
|
|
||||||
|
|
||||||
The second step is to pass a pointer to this aio handle to
|
|
||||||
sftp_aio_wait_read(), this function waits for the server response which
|
|
||||||
indicates the success/failure of the read request. On success, the response
|
|
||||||
indicates EOF or contains the data read from the sftp file.
|
|
||||||
|
|
||||||
The following code example shows how a read operation can be performed
|
|
||||||
on an sftp file using the sftp aio API.
|
|
||||||
|
|
||||||
@code
|
|
||||||
ssize_t read_chunk(sftp_file file, void *buf, size_t to_read)
|
|
||||||
{
|
|
||||||
ssize_t bytes_requested, bytes_read;
|
|
||||||
|
|
||||||
// Variable to store an sftp aio handle
|
|
||||||
sftp_aio aio = NULL;
|
|
||||||
|
|
||||||
// Send a read request to the sftp server
|
|
||||||
bytes_requested = sftp_aio_begin_read(file, to_read, &aio);
|
|
||||||
if (bytes_requested == SSH_ERROR) {
|
|
||||||
// handle error
|
|
||||||
}
|
|
||||||
|
|
||||||
// Here its possible that (bytes_requested < to_read) as specified in
|
|
||||||
// the function documentation of sftp_aio_begin_read()
|
|
||||||
|
|
||||||
// Wait for the response of the read request corresponding to the
|
|
||||||
// sftp aio handle stored in the aio variable.
|
|
||||||
bytes_read = sftp_aio_wait_read(&aio, buf, to_read);
|
|
||||||
if (bytes_read == SSH_ERROR) {
|
|
||||||
// handle error
|
|
||||||
}
|
|
||||||
|
|
||||||
return bytes_read;
|
|
||||||
}
|
|
||||||
@endcode
|
|
||||||
|
|
||||||
@subsection sftp_aio_write Using the sftp aio API for writing (a basic example)
|
|
||||||
|
|
||||||
For performing an async write operation on a sftp file (see sftp_open()),
|
|
||||||
the first step is to call sftp_aio_begin_write() to send a write request to
|
|
||||||
the server. The caller is provided an sftp aio handle corresponding to the
|
|
||||||
sent write request.
|
|
||||||
|
|
||||||
The second step is to pass a pointer to this aio handle to
|
|
||||||
sftp_aio_wait_write(), this function waits for the server response which
|
|
||||||
indicates the success/failure of the write request.
|
|
||||||
|
|
||||||
The following code example shows how a write operation can be performed on an
|
|
||||||
sftp file using the sftp aio API.
|
|
||||||
|
|
||||||
@code
|
|
||||||
ssize_t write_chunk(sftp_file file, void *buf, size_t to_write)
|
|
||||||
{
|
|
||||||
ssize_t bytes_requested, bytes_written;
|
|
||||||
|
|
||||||
// Variable to store an sftp aio handle
|
|
||||||
sftp_aio aio = NULL;
|
|
||||||
|
|
||||||
// Send a write request to the sftp server
|
|
||||||
bytes_requested = sftp_aio_begin_write(file, buf, to_write, &aio);
|
|
||||||
if (bytes_requested == SSH_ERROR) {
|
|
||||||
// handle error
|
|
||||||
}
|
|
||||||
|
|
||||||
// Here its possible that (bytes_requested < to_write) as specified in
|
|
||||||
// the function documentation of sftp_aio_begin_write()
|
|
||||||
|
|
||||||
// Wait for the response of the write request corresponding to
|
|
||||||
// the sftp aio handle stored in the aio variable.
|
|
||||||
bytes_written = sftp_aio_wait_write(&aio);
|
|
||||||
if (bytes_written == SSH_ERROR) {
|
|
||||||
// handle error
|
|
||||||
}
|
|
||||||
|
|
||||||
return bytes_written;
|
|
||||||
}
|
|
||||||
@endcode
|
|
||||||
|
|
||||||
@subsection sftp_aio_actual_use Using the sftp aio API to speed up a transfer
|
|
||||||
|
|
||||||
The above examples were provided to introduce the sftp aio API.
|
|
||||||
This is not how the sftp aio API is intended to be used, because the
|
|
||||||
above usage offers no advantage over the synchronous sftp read/write API
|
|
||||||
which does the same thing i.e issue a request and then immediately wait for
|
|
||||||
its response.
|
|
||||||
|
|
||||||
The facility that the sftp aio API provides is that the user can do
|
|
||||||
anything between issuing a request and getting the corresponding response.
|
|
||||||
Any number of operations can be performed after calling sftp_aio_begin_*()
|
|
||||||
[which issues a request] and before calling sftp_aio_wait_*() [which waits
|
|
||||||
for a response]
|
|
||||||
|
|
||||||
The code can leverage this feature by calling sftp_aio_begin_*() multiple times
|
|
||||||
to issue multiple requests before calling sftp_aio_wait_*() to wait for the
|
|
||||||
response of an earlier issued request. This approach will keep a certain number
|
|
||||||
of requests outstanding at the client side.
|
|
||||||
|
|
||||||
After issuing those requests, while the client code does something else (for
|
|
||||||
example waiting for an outstanding request's response, processing an obtained
|
|
||||||
response, issuing another request or any other operation the client wants
|
|
||||||
to perform), at the same time :
|
|
||||||
|
|
||||||
- Some of those outstanding requests may be travelling over the
|
|
||||||
network towards the server.
|
|
||||||
|
|
||||||
- Some of the outstanding requests may have reached the server and may
|
|
||||||
be queued for processing at the server side.
|
|
||||||
|
|
||||||
- Some of the outstanding requests may have been processed and the
|
|
||||||
corresponding responses may be travelling over the network towards the
|
|
||||||
client.
|
|
||||||
|
|
||||||
- Some of the responses corresponding to the outstanding requests may
|
|
||||||
have already reached the client side.
|
|
||||||
|
|
||||||
Clearly in this case, operations that the client performs and operations
|
|
||||||
involved in transfer/processing of a outstanding request can occur in
|
|
||||||
parallel. Also, operations involved in transfer/processing of two or more
|
|
||||||
outstanding requests may also occur in parallel (for example when one request
|
|
||||||
travels to the server, another request's response may be incoming towards the
|
|
||||||
client). Such kind of parallelism makes the overall transfer faster as compared
|
|
||||||
to a transfer performed using the synchronous sftp read/write API.
|
|
||||||
|
|
||||||
When the synchronous sftp read/write API is used to perform a transfer,
|
|
||||||
a strict sequence is followed:
|
|
||||||
|
|
||||||
- The client issues a single read/write request.
|
|
||||||
- Then waits for its response.
|
|
||||||
- On obtaining the response, the client processes it.
|
|
||||||
- After the processing ends, the client issues the next read/write request.
|
|
||||||
|
|
||||||
A file transfer performed in this manner would be slower than the case where
|
|
||||||
multiple read/write requests are kept outstanding at the client side. Because
|
|
||||||
here at any given time, operations related to transfer/processing of only one
|
|
||||||
request/response pair occurs. This is in contrast to the multiple outstanding
|
|
||||||
requests scenario where operations related to transfer/processing of multiple
|
|
||||||
request/response pairs may occur at the same time.
|
|
||||||
|
|
||||||
Although it's true that keeping multiple requests outstanding can speed up a
|
|
||||||
transfer, those outstanding requests come at a cost of increased memory
|
|
||||||
consumption both at the client side and the server side. Hence care must be
|
|
||||||
taken to use a reasonable limit for the number of requests kept outstanding.
|
|
||||||
|
|
||||||
The further sections provide code examples to show how uploads/downloads
|
|
||||||
can be performed using the sftp aio API and the concept of outstanding requests
|
|
||||||
discussed in this section. In those code examples, error handling has been
|
|
||||||
ignored and at some places pseudo code has been used for the sake of brevity.
|
|
||||||
|
|
||||||
The complete code for performing uploads/downloads using the sftp aio API,
|
|
||||||
can be found at https://gitlab.com/libssh/libssh-mirror/-/tree/master.
|
|
||||||
|
|
||||||
- libssh benchmarks for uploads performed using the sftp aio API [See
|
|
||||||
tests/benchmarks/bench_sftp.c]
|
|
||||||
- libssh benchmarks for downloads performed using the sftp aio API. [See
|
|
||||||
tests/benchmarks/bench_sftp.c]
|
|
||||||
- libssh sftp ft API code for performing a local to remote transfer (upload).
|
|
||||||
[See src/sftp_ft.c]
|
|
||||||
- libssh sftp ft API code for performing a remote to local transfer
|
|
||||||
(download). [See src/sftp_ft.c]
|
|
||||||
|
|
||||||
@subsection sftp_aio_cap Capping applied by the sftp aio API
|
|
||||||
|
|
||||||
Before the code examples for uploads and downloads, its important
|
|
||||||
to know about the capping applied by the sftp aio API.
|
|
||||||
|
|
||||||
sftp_aio_begin_read() caps the number of bytes the caller can request
|
|
||||||
to read from the remote file. That cap is the value of the max_read_length
|
|
||||||
field of the sftp_limits_t returned by sftp_limits(). Say that cap is LIM
|
|
||||||
and the caller passes x as the number of bytes to read to
|
|
||||||
sftp_aio_begin_read(), then (assuming no error occurs) :
|
|
||||||
|
|
||||||
- if x <= LIM, then sftp_aio_begin_read() will request the server
|
|
||||||
to read x bytes from the remote file, and will return x.
|
|
||||||
|
|
||||||
- if x > LIM, then sftp_aio_begin_read() will request the server
|
|
||||||
to read LIM bytes from the remote file and will return LIM.
|
|
||||||
|
|
||||||
Hence to request server to read x bytes (> LIM), the caller would have
|
|
||||||
to call sftp_aio_begin_read() multiple times, typically in a loop and
|
|
||||||
break out of the loop when the summation of return values of the multiple
|
|
||||||
sftp_aio_begin_read() calls becomes equal to x.
|
|
||||||
|
|
||||||
For the sake of simplicity, the code example for download in the upcoming
|
|
||||||
section would always ask sftp_aio_begin_read() to read x <= LIM bytes,
|
|
||||||
so that its return value is guaranteed to be x, unless an error occurs.
|
|
||||||
|
|
||||||
Similarly, sftp_aio_begin_write() caps the number of bytes the caller
|
|
||||||
can request to write to the remote file. That cap is the value of
|
|
||||||
max_write_length field of the sftp_limits_t returned by sftp_limits().
|
|
||||||
Say that cap is LIM and the caller passes x as the number of bytes to
|
|
||||||
write to sftp_aio_begin_write(), then (assuming no error occurs) :
|
|
||||||
|
|
||||||
- if x <= LIM, then sftp_aio_begin_write() will request the server
|
|
||||||
to write x bytes to the remote file, and will return x.
|
|
||||||
|
|
||||||
- if x > LIM, then sftp_aio_begin_write() will request the server
|
|
||||||
to write LIM bytes to the remote file and will return LIM.
|
|
||||||
|
|
||||||
Hence to request server to write x bytes (> LIM), the caller would have
|
|
||||||
to call sftp_aio_begin_write() multiple times, typically in a loop and
|
|
||||||
break out of the loop when the summation of return values of the multiple
|
|
||||||
sftp_aio_begin_write() calls becomes equal to x.
|
|
||||||
|
|
||||||
For the sake of simplicity, the code example for upload in the upcoming
|
|
||||||
section would always ask sftp_aio_begin_write() to write x <= LIM bytes,
|
|
||||||
so that its return value is guaranteed to be x, unless an error occurs.
|
|
||||||
|
|
||||||
@subsection sftp_aio_download_example Performing a download using the sftp aio API
|
|
||||||
|
|
||||||
Terminologies used in the following code snippets :
|
|
||||||
|
|
||||||
- sftp : The sftp_session opened using sftp_new() and initialised using
|
|
||||||
sftp_init()
|
|
||||||
|
|
||||||
- file : The sftp file handle of the remote file to download data
|
|
||||||
from. (See sftp_open())
|
|
||||||
|
|
||||||
- file_size : the size of the sftp file to download. This size can be obtained
|
|
||||||
by statting the remote file to download (e.g by using sftp_stat())
|
|
||||||
|
|
||||||
- We will need to maintain a queue which will be used to store the sftp aio
|
|
||||||
handles corresponding to the outstanding requests.
|
|
||||||
|
|
||||||
First, we issue the read requests while ensuring that their count
|
|
||||||
doesn't exceed a particular limit decided by us, and the number of bytes
|
|
||||||
requested don't exceed the size of the file to download.
|
|
||||||
|
|
||||||
@code
|
|
||||||
sftp_aio aio = NULL;
|
|
||||||
|
|
||||||
// Chunk size to use for the transfer
|
|
||||||
size_t chunk_size;
|
|
||||||
|
|
||||||
// For the limits structure that would be used
|
|
||||||
// by the code to set the chunk size
|
|
||||||
sftp_limits_t lim = NULL;
|
|
||||||
|
|
||||||
// Max number of requests to keep outstanding at a time
|
|
||||||
size_t in_flight_requests = 5;
|
|
||||||
|
|
||||||
// Number of bytes for which requests have been sent
|
|
||||||
size_t total_bytes_requested = 0;
|
|
||||||
|
|
||||||
// Number of bytes which have been downloaded
|
|
||||||
size_t bytes_downloaded = 0;
|
|
||||||
|
|
||||||
// Buffer to use for the download
|
|
||||||
char *buffer = NULL;
|
|
||||||
|
|
||||||
// Helper variables
|
|
||||||
size_t to_read;
|
|
||||||
ssize_t bytes_requested;
|
|
||||||
|
|
||||||
// Get the sftp limits
|
|
||||||
lim = sftp_limits(sftp);
|
|
||||||
if (lim == NULL) {
|
|
||||||
// handle error
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set the chunk size for download = the max limit for reading
|
|
||||||
// The reason for this has been given in the "Capping applied by
|
|
||||||
// the sftp aio API" section (Its to make the code simpler)
|
|
||||||
//
|
|
||||||
// Assigning a size_t type variable a uint64_t type value here,
|
|
||||||
// theoretically could cause an overflow, but practically
|
|
||||||
// max_read_length would never exceed SIZE_MAX so its okay.
|
|
||||||
chunk_size = lim->max_read_length;
|
|
||||||
|
|
||||||
buffer = malloc(chunk_size);
|
|
||||||
if (buffer == NULL) {
|
|
||||||
// handle error
|
|
||||||
}
|
|
||||||
|
|
||||||
... // Code to open the remote file (to download) using sftp_open().
|
|
||||||
... // Code to stat the remote file's file size.
|
|
||||||
... // Code to open the local file in which downloaded data is to be stored.
|
|
||||||
... // Code to initialize the queue which will be used to store sftp aio
|
|
||||||
// handles.
|
|
||||||
|
|
||||||
for (i = 0;
|
|
||||||
i < in_flight_requests && total_bytes_requested < file_size;
|
|
||||||
++i) {
|
|
||||||
to_read = file_size - total_bytes_requested;
|
|
||||||
if (to_read > chunk_size) {
|
|
||||||
to_read = chunk_size;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Issue a read request
|
|
||||||
bytes_requested = sftp_aio_begin_read(file, to_read, &aio);
|
|
||||||
if (bytes_requested == SSH_ERROR) {
|
|
||||||
// handle error
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((size_t)bytes_requested < to_read) {
|
|
||||||
// Should not happen for this code, as the to_read is <=
|
|
||||||
// max limit for reading (chunk size), so there is no reason
|
|
||||||
// for sftp_aio_begin_read() to return a lesser value.
|
|
||||||
}
|
|
||||||
|
|
||||||
total_bytes_requested += (size_t)bytes_requested;
|
|
||||||
|
|
||||||
// Pseudo code
|
|
||||||
ENQUEUE aio in the queue;
|
|
||||||
}
|
|
||||||
|
|
||||||
@endcode
|
|
||||||
|
|
||||||
At this point, at max in_flight_requests number of requests may be
|
|
||||||
outstanding. Now we wait for the response corresponding to the earliest
|
|
||||||
issued outstanding request.
|
|
||||||
|
|
||||||
On getting that response, we issue another read request if there are
|
|
||||||
still some bytes in the sftp file (to download) for which we haven't sent the
|
|
||||||
read request. (This happens when total_bytes_requested < file_size)
|
|
||||||
|
|
||||||
This issuing of another read request (under a condition) is done to
|
|
||||||
keep the number of outstanding requests equal to the value of the
|
|
||||||
in_flight_requests variable.
|
|
||||||
|
|
||||||
This process has to be repeated for every remaining outstanding request.
|
|
||||||
|
|
||||||
@code
|
|
||||||
while (the queue is not empty) {
|
|
||||||
// Pseudo code
|
|
||||||
aio = DEQUEUE an sftp aio handle from the queue of sftp aio handles;
|
|
||||||
|
|
||||||
// Wait for the response of the request corresponding to the aio
|
|
||||||
bytes_read = sftp_aio_wait_read(&aio, buffer, chunk_size);
|
|
||||||
if (bytes_read == SSH_ERROR) {
|
|
||||||
//handle error
|
|
||||||
}
|
|
||||||
|
|
||||||
bytes_downloaded += bytes_read;
|
|
||||||
if (bytes_read != chunk_size && bytes_downloaded != file_size) {
|
|
||||||
// A short read encountered on the remote file before reaching EOF,
|
|
||||||
// short read before reaching EOF should never happen for the sftp aio
|
|
||||||
// API which respects the max limit for reading. This probably
|
|
||||||
// indicates a bad server.
|
|
||||||
}
|
|
||||||
|
|
||||||
// Pseudo code
|
|
||||||
WRITE bytes_read bytes from the buffer into the local file
|
|
||||||
in which downloaded data is to be stored ;
|
|
||||||
|
|
||||||
if (total_bytes_requested == file_size) {
|
|
||||||
// no need to issue more read requests
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
// else issue a read request
|
|
||||||
to_read = file_size - total_bytes_requested;
|
|
||||||
if (to_read > chunk_size) {
|
|
||||||
to_read = chunk_size;
|
|
||||||
}
|
|
||||||
|
|
||||||
bytes_requested = sftp_aio_begin_read(file, to_read, &aio);
|
|
||||||
if (bytes_requested == SSH_ERROR) {
|
|
||||||
// handle error
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((size_t)bytes_requested < to_read) {
|
|
||||||
// Should not happen for this code, as the to_read is <=
|
|
||||||
// max limit for reading (chunk size), so there is no reason
|
|
||||||
// for sftp_aio_begin_read() to return a lesser value.
|
|
||||||
}
|
|
||||||
|
|
||||||
total_bytes_requested += bytes_requested;
|
|
||||||
|
|
||||||
// Pseudo code
|
|
||||||
ENQUEUE aio in the queue;
|
|
||||||
}
|
|
||||||
|
|
||||||
free(buffer);
|
|
||||||
sftp_limits_free(lim);
|
|
||||||
|
|
||||||
... // Code to destroy the queue which was used to store the sftp aio
|
|
||||||
// handles.
|
|
||||||
@endcode
|
|
||||||
|
|
||||||
After exiting the while (the queue is not empty) loop, the download
|
|
||||||
would've been complete (assuming no error occurs).
|
|
||||||
|
|
||||||
@subsection sftp_aio_upload_example Performing an upload using the sftp aio API
|
|
||||||
|
|
||||||
Terminologies used in the following code snippets :
|
|
||||||
|
|
||||||
- sftp : The sftp_session opened using sftp_new() and initialised using
|
|
||||||
sftp_init()
|
|
||||||
|
|
||||||
- file : The sftp file handle of the remote file in which uploaded data
|
|
||||||
is to be stored. (See sftp_open())
|
|
||||||
|
|
||||||
- file_size : The size of the local file to upload. This size can be
|
|
||||||
obtained by statting the local file to upload (e.g by using stat())
|
|
||||||
|
|
||||||
- We will need maintain a queue which will be used to store the sftp aio
|
|
||||||
handles corresponding to the outstanding requests.
|
|
||||||
|
|
||||||
First, we issue the write requests while ensuring that their count
|
|
||||||
doesn't exceed a particular limit decided by us, and the number of bytes
|
|
||||||
requested to write don't exceed the size of the file to upload.
|
|
||||||
|
|
||||||
@code
|
|
||||||
sftp_aio aio = NULL;
|
|
||||||
|
|
||||||
// The chunk size to use for the transfer
|
|
||||||
size_t chunk_size;
|
|
||||||
|
|
||||||
// For the limits structure that would be used by
|
|
||||||
// the code to set the chunk size
|
|
||||||
sftp_limits_t lim = NULL;
|
|
||||||
|
|
||||||
// Max number of requests to keep outstanding at a time
|
|
||||||
size_t in_flight_requests = 5;
|
|
||||||
|
|
||||||
// Total number of bytes for which write requests have been sent
|
|
||||||
size_t total_bytes_requested = 0;
|
|
||||||
|
|
||||||
// Buffer to use for the upload
|
|
||||||
char *buffer = NULL;
|
|
||||||
|
|
||||||
// Helper variables
|
|
||||||
size_t to_write;
|
|
||||||
ssize_t bytes_requested;
|
|
||||||
|
|
||||||
// Get the sftp limits
|
|
||||||
lim = sftp_limits(sftp);
|
|
||||||
if (lim == NULL) {
|
|
||||||
// handle error
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set the chunk size for upload = the max limit for writing.
|
|
||||||
// The reason for this has been given in the "Capping applied by
|
|
||||||
// the sftp aio API" section (Its to make the code simpler)
|
|
||||||
//
|
|
||||||
// Assigning a size_t type variable a uint64_t type value here,
|
|
||||||
// theoretically could cause an overflow, but practically
|
|
||||||
// max_write_length would never exceed SIZE_MAX so its okay.
|
|
||||||
chunk_size = lim->max_write_length;
|
|
||||||
|
|
||||||
buffer = malloc(chunk_size);
|
|
||||||
if (buffer == NULL) {
|
|
||||||
// handle error
|
|
||||||
}
|
|
||||||
|
|
||||||
... // Code to open the local file (to upload) [e.g using open(), fopen()].
|
|
||||||
... // Code to stat the local file's file size [e.g using stat()].
|
|
||||||
... // Code to open the remote file in which uploaded data will be stored [see
|
|
||||||
// sftp_open()].
|
|
||||||
... // Code to initialize the queue which will be used to store sftp aio
|
|
||||||
// handles.
|
|
||||||
|
|
||||||
for (i = 0;
|
|
||||||
i < in_flight_requests && total_bytes_requested < file_size;
|
|
||||||
++i) {
|
|
||||||
to_write = file_size - total_bytes_requested;
|
|
||||||
if (to_write > chunk_size) {
|
|
||||||
to_write = chunk_size;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Pseudo code
|
|
||||||
READ to_write bytes from the local file (to upload) into the buffer;
|
|
||||||
|
|
||||||
bytes_requested = sftp_aio_begin_write(file, buffer, to_write, &aio);
|
|
||||||
if (bytes_requested == SSH_ERROR) {
|
|
||||||
// handle error
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((size_t)bytes_requested < to_write) {
|
|
||||||
// Should not happen for this code, as the to_write is <=
|
|
||||||
// max limit for writing (chunk size), so there is no reason
|
|
||||||
// for sftp_aio_begin_write() to return a lesser value.
|
|
||||||
}
|
|
||||||
|
|
||||||
total_bytes_requested += (size_t)bytes_requested;
|
|
||||||
|
|
||||||
// Pseudo code
|
|
||||||
ENQUEUE aio in the queue;
|
|
||||||
}
|
|
||||||
|
|
||||||
@endcode
|
|
||||||
|
|
||||||
At this point, at max in_flight_requests number of requests may be
|
|
||||||
outstanding. Now we wait for the response corresponding to the earliest
|
|
||||||
issued outstanding request.
|
|
||||||
|
|
||||||
On getting that response, we issue another write request if there are
|
|
||||||
still some bytes in the local file (to upload) for which we haven't sent
|
|
||||||
the write request. (This happens when total_bytes_requested < file_size)
|
|
||||||
|
|
||||||
This issuing of another write request (under a condition) is done to
|
|
||||||
keep the number of outstanding requests equal to the value of the
|
|
||||||
in_flight_requests variable.
|
|
||||||
|
|
||||||
This process has to be repeated for every remaining outstanding request.
|
|
||||||
|
|
||||||
@code
|
|
||||||
while (the queue is not empty) {
|
|
||||||
// Pseudo code
|
|
||||||
aio = DEQUEUE an sftp aio handle from the queue of sftp aio handles;
|
|
||||||
|
|
||||||
// Wait for the response of the request corresponding to the aio
|
|
||||||
bytes_written = sftp_aio_wait_write(&aio);
|
|
||||||
if (bytes_written == SSH_ERROR) {
|
|
||||||
// handle error
|
|
||||||
}
|
|
||||||
|
|
||||||
// sftp_aio_wait_write() won't report a short write, so no need
|
|
||||||
// to check for a short write here.
|
|
||||||
|
|
||||||
if (total_bytes_requested == file_size) {
|
|
||||||
// no need to issue more write requests
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
// else issue a write request
|
|
||||||
to_write = file_size - total_bytes_requested;
|
|
||||||
if (to_write > chunk_size) {
|
|
||||||
to_write = chunk_size;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Pseudo code
|
|
||||||
READ to_write bytes from the local file (to upload) into a buffer;
|
|
||||||
|
|
||||||
bytes_requested = sftp_aio_begin_write(file, buffer, to_write, &aio);
|
|
||||||
if (bytes_requested == SSH_ERROR) {
|
|
||||||
// handle error
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((size_t)bytes_requested < to_write) {
|
|
||||||
// Should not happen for this code, as the to_write is <=
|
|
||||||
// max limit for writing (chunk size), so there is no reason
|
|
||||||
// for sftp_aio_begin_write() to return a lesser value.
|
|
||||||
}
|
|
||||||
|
|
||||||
total_bytes_requested += (size_t)bytes_requested;
|
|
||||||
|
|
||||||
// Pseudo code
|
|
||||||
ENQUEUE aio in the queue;
|
|
||||||
}
|
|
||||||
|
|
||||||
free(buffer);
|
|
||||||
|
|
||||||
... // Code to destroy the queue which was used to store the sftp aio
|
|
||||||
// handles.
|
|
||||||
@endcode
|
|
||||||
|
|
||||||
After exiting the while (the queue is not empty) loop, the upload
|
|
||||||
would've been complete (assuming no error occurs).
|
|
||||||
|
|
||||||
@subsection sftp_aio_free Example showing the usage of sftp_aio_free()
|
|
||||||
|
|
||||||
The purpose of sftp_aio_free() was discussed at the beginning of this page,
|
|
||||||
the following code example shows how it can be used during cleanup.
|
|
||||||
|
|
||||||
@code
|
|
||||||
void print_sftp_error(sftp_session sftp)
|
|
||||||
{
|
|
||||||
if (sftp == NULL) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
fprintf(stderr, "sftp error : %d\n", sftp_get_error(sftp));
|
|
||||||
fprintf(stderr, "ssh error : %s\n", ssh_get_error(sftp->session));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Returns 0 on success, -1 on error
|
|
||||||
int write_strings(sftp_file file)
|
|
||||||
{
|
|
||||||
const char * strings[] = {
|
|
||||||
"This is the first string",
|
|
||||||
"This is the second string",
|
|
||||||
"This is the third string",
|
|
||||||
"This is the fourth string"
|
|
||||||
};
|
|
||||||
|
|
||||||
size_t string_count = sizeof(strings) / sizeof(strings[0]);
|
|
||||||
size_t i;
|
|
||||||
|
|
||||||
sftp_session sftp = NULL;
|
|
||||||
sftp_aio aio = NULL;
|
|
||||||
|
|
||||||
int rc;
|
|
||||||
|
|
||||||
if (file == NULL) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
... // Code to initialize the queue which will be used to store sftp aio
|
|
||||||
// handles
|
|
||||||
|
|
||||||
sftp = file->sftp;
|
|
||||||
for (i = 0; i < string_count; ++i) {
|
|
||||||
rc = sftp_aio_begin_write(file,
|
|
||||||
strings[i],
|
|
||||||
strlen(strings[i]),
|
|
||||||
&aio);
|
|
||||||
if (rc == SSH_ERROR) {
|
|
||||||
print_sftp_error(sftp);
|
|
||||||
goto err;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Pseudo code
|
|
||||||
ENQUEUE aio in the queue of sftp aio handles
|
|
||||||
}
|
|
||||||
|
|
||||||
for (i = 0; i < string_count; ++i) {
|
|
||||||
// Pseudo code
|
|
||||||
aio = DEQUEUE an sftp aio handle from the queue of sftp aio handles;
|
|
||||||
|
|
||||||
rc = sftp_aio_wait_write(&aio);
|
|
||||||
if (rc == SSH_ERROR) {
|
|
||||||
print_sftp_error(sftp);
|
|
||||||
goto err;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
... // Code to destroy the queue in which sftp aio handles were
|
|
||||||
// stored
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
err:
|
|
||||||
|
|
||||||
while (queue is not empty) {
|
|
||||||
// Pseudo code
|
|
||||||
aio = DEQUEUE an sftp aio handle from the queue of sftp aio handles;
|
|
||||||
|
|
||||||
sftp_aio_free(aio);
|
|
||||||
}
|
|
||||||
|
|
||||||
... // Code to destroy the queue in which sftp aio handles were
|
|
||||||
// stored.
|
|
||||||
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
@endcode
|
|
||||||
|
|
||||||
*/
|
|
||||||
@@ -26,7 +26,7 @@ The code sample below achieves these tasks:
|
|||||||
@code
|
@code
|
||||||
int shell_session(ssh_session session)
|
int shell_session(ssh_session session)
|
||||||
{
|
{
|
||||||
ssh_channel channel = NULL;
|
ssh_channel channel;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
channel = ssh_channel_new(session);
|
channel = ssh_channel_new(session);
|
||||||
@@ -65,17 +65,8 @@ to as a "pty", for "pseudo-teletype". The remote processes won't see the
|
|||||||
difference with a real text-oriented terminal.
|
difference with a real text-oriented terminal.
|
||||||
|
|
||||||
If needed, you request the pty with the function ssh_channel_request_pty().
|
If needed, you request the pty with the function ssh_channel_request_pty().
|
||||||
If you want define its dimensions (number of rows and columns),
|
Then you define its dimensions (number of rows and columns)
|
||||||
call ssh_channel_request_pty_size() instead. It's also possible to change
|
with ssh_channel_change_pty_size().
|
||||||
the dimensions after creating the pty with ssh_channel_change_pty_size().
|
|
||||||
|
|
||||||
These two functions configure the pty using the same terminal modes that
|
|
||||||
stdin has. If stdin isn't a TTY, they use default modes that configure
|
|
||||||
the pty with in canonical mode and e.g. preserving CR and LF characters.
|
|
||||||
If you want to change the terminal modes used by the pty (e.g. to change
|
|
||||||
CRLF handling), use ssh_channel_request_pty_size_modes(). This function
|
|
||||||
accepts an additional "modes" buffer that is expected to contain encoded
|
|
||||||
terminal modes according to RFC 4254 section 8.
|
|
||||||
|
|
||||||
Be your session interactive or not, the next step is to request a
|
Be your session interactive or not, the next step is to request a
|
||||||
shell with ssh_channel_request_shell().
|
shell with ssh_channel_request_shell().
|
||||||
|
|||||||
21
doc/that_style/LICENSE
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2017 Jan-Lukas Wynen
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
22
doc/that_style/README.md
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
# that style
|
||||||
|
A plain, more modern HTML style for Doxygen
|
||||||
|
|
||||||
|
## Requirements
|
||||||
|
- Doxygen (tested with version 1.8.13)
|
||||||
|
- *optional*: a sass/scss compiler if you want to modify the style
|
||||||
|
|
||||||
|
## Simple usage
|
||||||
|
Tell Doxygen about the files for that style as shown in [doxyfile.conf](doxyfile.conf). You might need to adjust the
|
||||||
|
paths depending on where you installed that style.
|
||||||
|
When you run Doxygen, all files are copied into to generated HTML folder. So you don't need to keep the originals around
|
||||||
|
unless you want to re-generate the documentation.
|
||||||
|
|
||||||
|
## Advanced
|
||||||
|
that style uses a custom javascript to hack some nice stripes into some tables. It has to be loaded from HTML. Hence you need
|
||||||
|
to use the provided custom header. Since its default content may change when Doxygen is updated, there might be syntax error in
|
||||||
|
the generated HTML. If this is the case, you can remove the custom header (adjust your doxyfile.conf). This has no
|
||||||
|
disadvantages other than removing the stripes.
|
||||||
|
|
||||||
|
[that_style.css](that_style.css) was generated from the scss files in the folder [sass](sass). If you want to change the style,
|
||||||
|
use those files in order to have better control. For instance, you can easily change most colors by modifying the variables
|
||||||
|
in the beginning of [that_style.scss](sass/that_style.scss).
|
||||||
56
doc/that_style/header.html
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
<!-- HTML header for doxygen 1.8.13-->
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen $doxygenversion"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<!--BEGIN PROJECT_NAME--><title>$projectname: $title</title><!--END PROJECT_NAME-->
|
||||||
|
<!--BEGIN !PROJECT_NAME--><title>$title</title><!--END !PROJECT_NAME-->
|
||||||
|
<link href="$relpath^tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="$relpath^jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="$relpath^dynsections.js"></script>
|
||||||
|
$treeview
|
||||||
|
$search
|
||||||
|
$mathjax
|
||||||
|
<link href="$relpath^$stylesheet" rel="stylesheet" type="text/css" />
|
||||||
|
<script src="$relpath^striped_bg.js"></script>
|
||||||
|
$extrastylesheet
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
|
||||||
|
<!--BEGIN TITLEAREA-->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<!--BEGIN PROJECT_LOGO-->
|
||||||
|
<td id="projectlogo"><img alt="Logo" src="$relpath^$projectlogo"/></td>
|
||||||
|
<!--END PROJECT_LOGO-->
|
||||||
|
<!--BEGIN PROJECT_NAME-->
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">$projectname
|
||||||
|
<!--BEGIN PROJECT_NUMBER--> <span id="projectnumber">$projectnumber</span><!--END PROJECT_NUMBER-->
|
||||||
|
</div>
|
||||||
|
<!--BEGIN PROJECT_BRIEF--><div id="projectbrief">$projectbrief</div><!--END PROJECT_BRIEF-->
|
||||||
|
</td>
|
||||||
|
<!--END PROJECT_NAME-->
|
||||||
|
<!--BEGIN !PROJECT_NAME-->
|
||||||
|
<!--BEGIN PROJECT_BRIEF-->
|
||||||
|
<td style="padding-left: 0.5em;">
|
||||||
|
<div id="projectbrief">$projectbrief</div>
|
||||||
|
</td>
|
||||||
|
<!--END PROJECT_BRIEF-->
|
||||||
|
<!--END !PROJECT_NAME-->
|
||||||
|
<!--BEGIN DISABLE_INDEX-->
|
||||||
|
<!--BEGIN SEARCHENGINE-->
|
||||||
|
<td>$searchbox</td>
|
||||||
|
<!--END SEARCHENGINE-->
|
||||||
|
<!--END DISABLE_INDEX-->
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!--END TITLEAREA-->
|
||||||
|
<!-- end header part -->
|
||||||
97
doc/that_style/img/doc.svg
Normal file
@@ -0,0 +1,97 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="24"
|
||||||
|
height="22"
|
||||||
|
viewBox="0 0 6.3499999 5.8208335"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
sodipodi:docname="doc.svg"
|
||||||
|
inkscape:version="0.92.1 r">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="32"
|
||||||
|
inkscape:cx="11.139212"
|
||||||
|
inkscape:cy="14.811193"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
units="px"
|
||||||
|
inkscape:window-width="2560"
|
||||||
|
inkscape:window-height="1357"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-291.17915)">
|
||||||
|
<path
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#4d4d4d;stroke-width:0.26458329;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
d="M 3.315043,291.8406 H 1.4552083 v 4.49792 h 3.1749999 v -3.10055 z"
|
||||||
|
id="path5095"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
d="m 3.1837239,291.84114 v 1.71186 h 1.4472656 v -0.31418 H 3.4473958 v -1.39768 z"
|
||||||
|
id="path5128"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<rect
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.52916664;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
id="rect5132"
|
||||||
|
width="2.1166668"
|
||||||
|
height="0.26458332"
|
||||||
|
x="1.8520833"
|
||||||
|
y="293.82498" />
|
||||||
|
<rect
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.52916664;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
id="rect5136"
|
||||||
|
width="1.0583334"
|
||||||
|
height="0.26458332"
|
||||||
|
x="1.8520832"
|
||||||
|
y="294.35416" />
|
||||||
|
<rect
|
||||||
|
y="294.88333"
|
||||||
|
x="1.8520832"
|
||||||
|
height="0.26458332"
|
||||||
|
width="1.8520833"
|
||||||
|
id="rect5138"
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.52916664;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||||
|
<rect
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.52916664;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
id="rect4543"
|
||||||
|
width="1.5875"
|
||||||
|
height="0.26458332"
|
||||||
|
x="1.8520832"
|
||||||
|
y="295.41248" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 6.5 KiB |
77
doc/that_style/img/folderclosed.svg
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="24"
|
||||||
|
height="22"
|
||||||
|
viewBox="0 0 6.3499998 5.8208335"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.1 r"
|
||||||
|
sodipodi:docname="folderclosed.svg"
|
||||||
|
inkscape:export-filename="/home/jl/Prog/doxygen_style/folderclosed.png"
|
||||||
|
inkscape:export-xdpi="96"
|
||||||
|
inkscape:export-ydpi="96">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="51.113139"
|
||||||
|
inkscape:cx="7.7057751"
|
||||||
|
inkscape:cy="12.584171"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:snap-global="false"
|
||||||
|
units="px"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
inkscape:window-width="2560"
|
||||||
|
inkscape:window-height="1357"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:measure-start="0,0"
|
||||||
|
inkscape:measure-end="0,0" />
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-291.17915)">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
d="m 0.52916667,292.2374 -0.26458334,0.52925 v 3.43958 H 4.7625001 v -3.43958 H 2.38125 L 2.1166667,292.2374 Z"
|
||||||
|
id="rect4498"
|
||||||
|
sodipodi:nodetypes="cccccccc" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.66145831;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
d="M 2.9104167,292.76665 2.38125,293.56034 H 0.26458333 v 0.26464 H 2.38125 l 0.5291667,-0.79375 h 1.8520834 v -0.26458 z"
|
||||||
|
id="rect4500"
|
||||||
|
sodipodi:nodetypes="ccccccccc" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.4 KiB |
83
doc/that_style/img/folderopen.svg
Normal file
@@ -0,0 +1,83 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="24"
|
||||||
|
height="22"
|
||||||
|
viewBox="0 0 6.3499998 5.8208335"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.1 r"
|
||||||
|
sodipodi:docname="folderopen.svg"
|
||||||
|
inkscape:export-filename="/home/jl/Prog/doxygen_style/folderopen.png"
|
||||||
|
inkscape:export-xdpi="96"
|
||||||
|
inkscape:export-ydpi="96">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="43.725861"
|
||||||
|
inkscape:cx="8.2043861"
|
||||||
|
inkscape:cy="13.464183"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:snap-global="false"
|
||||||
|
units="px"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
inkscape:window-width="2560"
|
||||||
|
inkscape:window-height="1357"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:measure-start="0,0"
|
||||||
|
inkscape:measure-end="0,0" />
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-291.17915)">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.66145831;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
d="m 0.52916667,292.23748 -0.26458334,0.52917 v 3.43958 H 4.762461 l 7.8e-5,-3.43958 H 2.38125 l -0.2645833,-0.52917 z"
|
||||||
|
id="path5228"
|
||||||
|
sodipodi:nodetypes="cccccccc" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path5279"
|
||||||
|
d="M 1.0583333,293.5604 H 5.55625 L 4.7625,296.20603 H 0.26458333 Z"
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ececec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.66145831;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
sodipodi:nodetypes="ccccc" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="ccccccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path5234"
|
||||||
|
d="M 1.0583333,294.35415 H 3.175 l 0.5291667,-0.52917 H 5.55625 L 4.7625,296.20603 H 0.26458333 Z"
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.66145831;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 4.1 KiB |
73
doc/that_style/img/mag_glass.svg
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="22"
|
||||||
|
height="22"
|
||||||
|
viewBox="0 0 5.8208332 5.8208335"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.1 r"
|
||||||
|
sodipodi:docname="mag_glass.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="32"
|
||||||
|
inkscape:cx="8.961936"
|
||||||
|
inkscape:cy="10.205344"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
units="px"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
inkscape:snap-bbox="false"
|
||||||
|
inkscape:bbox-nodes="true"
|
||||||
|
inkscape:window-width="2560"
|
||||||
|
inkscape:window-height="1357"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:snap-global="false" />
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-291.17915)">
|
||||||
|
<path
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
d="M 6.9101562 2.4082031 C 3.1105656 2.4082031 -5.9211895e-16 5.5081643 0 9.3027344 C 0 13.097342 3.1105656 16.197266 6.9101562 16.197266 C 8.2869348 16.197266 9.5698699 15.787508 10.650391 15.087891 L 15.162109 19.587891 L 16.636719 18.115234 L 12.214844 13.707031 C 13.214837 12.510659 13.818359 10.974238 13.818359 9.3027344 C 13.818359 5.5081643 10.709747 2.4082031 6.9101562 2.4082031 z M 6.9101562 4.9101562 C 9.3624717 4.9101562 11.324219 6.8631249 11.324219 9.3027344 C 11.324219 11.742382 9.3624717 13.695312 6.9101562 13.695312 C 4.4578408 13.695312 2.5019531 11.742382 2.5019531 9.3027344 C 2.5019531 6.8631249 4.4578408 4.9101562 6.9101562 4.9101562 z "
|
||||||
|
transform="matrix(0.26458333,0,0,0.26458333,0,291.17915)"
|
||||||
|
id="rect4524" />
|
||||||
|
<path
|
||||||
|
transform="matrix(0.99422295,0,0,0.68955299,-0.83134947,91.755588)"
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.63466448;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
inkscape:transform-center-y="0.25905895"
|
||||||
|
d="m 5.6074138,294.49889 -1.0836583,-1.87695 2.1673165,0 z"
|
||||||
|
id="path4491" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.8 KiB |
73
doc/that_style/img/nav_edge_inter.svg
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="10.53333"
|
||||||
|
height="32"
|
||||||
|
viewBox="0 0 9.8749964 30"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.92.1 r"
|
||||||
|
sodipodi:docname="nav_edge_inter.svg">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="32"
|
||||||
|
inkscape:cx="8.6823304"
|
||||||
|
inkscape:cy="16.225639"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
units="px"
|
||||||
|
inkscape:snap-bbox="true"
|
||||||
|
inkscape:bbox-paths="false"
|
||||||
|
inkscape:bbox-nodes="true"
|
||||||
|
inkscape:snap-bbox-edge-midpoints="true"
|
||||||
|
inkscape:object-nodes="true"
|
||||||
|
inkscape:window-width="2560"
|
||||||
|
inkscape:window-height="1357"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-1022.3622)">
|
||||||
|
<path
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
d="m 0,1022.3622 v 15 15 l 8,-15 z"
|
||||||
|
id="path4143"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#333333;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9375px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
d="m 1.2910156,1022.3496 -0.82421872,0.4473 7.87890622,14.5527 -7.87890622,14.5527 0.82421872,0.4473 8.1210938,-15 z"
|
||||||
|
id="path5240"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.8 KiB |
73
doc/that_style/img/nav_edge_left.svg
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="8.5333338"
|
||||||
|
height="32"
|
||||||
|
viewBox="0 0 8.0000001 30"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.92.1 r"
|
||||||
|
sodipodi:docname="nav_edge_left.svg">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="32"
|
||||||
|
inkscape:cx="5.3721385"
|
||||||
|
inkscape:cy="14.16429"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
units="px"
|
||||||
|
inkscape:snap-bbox="true"
|
||||||
|
inkscape:bbox-paths="false"
|
||||||
|
inkscape:bbox-nodes="false"
|
||||||
|
inkscape:snap-bbox-edge-midpoints="false"
|
||||||
|
inkscape:object-nodes="true"
|
||||||
|
inkscape:window-width="2560"
|
||||||
|
inkscape:window-height="1357"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-1022.3622)">
|
||||||
|
<path
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
d="M 0 0 L 0 32 L 8.5332031 16 L 0 0 z "
|
||||||
|
transform="matrix(0.93749998,0,0,0.93749998,0,1022.3622)"
|
||||||
|
id="rect4586" />
|
||||||
|
<path
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
d="m 0,1022.3622 v 15 15 l 8,-15 z"
|
||||||
|
id="path4143"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.1 KiB |
73
doc/that_style/img/nav_edge_right.svg
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="8"
|
||||||
|
height="30"
|
||||||
|
viewBox="0 0 8.0000001 30"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.91 r13725"
|
||||||
|
sodipodi:docname="nav_edge.svg">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="32"
|
||||||
|
inkscape:cx="5.3721385"
|
||||||
|
inkscape:cy="14.16429"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
units="px"
|
||||||
|
inkscape:snap-bbox="true"
|
||||||
|
inkscape:bbox-paths="false"
|
||||||
|
inkscape:bbox-nodes="false"
|
||||||
|
inkscape:snap-bbox-edge-midpoints="false"
|
||||||
|
inkscape:object-nodes="true"
|
||||||
|
inkscape:window-width="2560"
|
||||||
|
inkscape:window-height="1357"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-1022.3622)">
|
||||||
|
<path
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
d="m 0,1022.3622 0,15 0,15 8,-15 -8,-15 z"
|
||||||
|
id="path4143"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
d="m 1e-8,1022.3622 7.99999999,15 0,-15 -8,0 z m 7.99999999,15 -8,15 8,0 0,-15 z"
|
||||||
|
id="rect4136"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.1 KiB |
120
doc/that_style/img/splitbar_handle.svg
Normal file
@@ -0,0 +1,120 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="6"
|
||||||
|
height="9"
|
||||||
|
viewBox="0 0 1.5875 2.3812501"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.1 r"
|
||||||
|
sodipodi:docname="splitbar_handle.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="32"
|
||||||
|
inkscape:cx="8.7681488"
|
||||||
|
inkscape:cy="-2.7929517"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
units="px"
|
||||||
|
inkscape:showpageshadow="false"
|
||||||
|
showguides="false"
|
||||||
|
inkscape:window-width="2560"
|
||||||
|
inkscape:window-height="1357"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1">
|
||||||
|
<inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid4487" />
|
||||||
|
</sodipodi:namedview>
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-294.61873)">
|
||||||
|
<rect
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.52916664;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
id="rect4485"
|
||||||
|
width="0.26458335"
|
||||||
|
height="0.26458332"
|
||||||
|
x="0.26458332"
|
||||||
|
y="294.8833" />
|
||||||
|
<rect
|
||||||
|
y="294.8833"
|
||||||
|
x="1.0583333"
|
||||||
|
height="0.26458332"
|
||||||
|
width="0.26458335"
|
||||||
|
id="rect4489"
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.52916664;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||||
|
<rect
|
||||||
|
y="295.41248"
|
||||||
|
x="0.26458329"
|
||||||
|
height="0.26458332"
|
||||||
|
width="0.26458335"
|
||||||
|
id="rect4491"
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.52916664;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||||
|
<rect
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.52916664;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
id="rect4493"
|
||||||
|
width="0.26458335"
|
||||||
|
height="0.26458332"
|
||||||
|
x="1.0583333"
|
||||||
|
y="295.41248" />
|
||||||
|
<rect
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.52916664;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
id="rect4495"
|
||||||
|
width="0.26458335"
|
||||||
|
height="0.26458332"
|
||||||
|
x="0.26458332"
|
||||||
|
y="295.94165" />
|
||||||
|
<rect
|
||||||
|
y="295.94165"
|
||||||
|
x="1.0583333"
|
||||||
|
height="0.26458332"
|
||||||
|
width="0.26458335"
|
||||||
|
id="rect4497"
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.52916664;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||||
|
<rect
|
||||||
|
y="296.47079"
|
||||||
|
x="0.26458329"
|
||||||
|
height="0.26458332"
|
||||||
|
width="0.26458335"
|
||||||
|
id="rect4499"
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.52916664;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
||||||
|
<rect
|
||||||
|
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.52916664;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
id="rect4501"
|
||||||
|
width="0.26458335"
|
||||||
|
height="0.26458332"
|
||||||
|
x="1.0583333"
|
||||||
|
y="296.47079" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 7.1 KiB |
BIN
doc/that_style/img/sync_off.png
Normal file
|
After Width: | Height: | Size: 483 B |
BIN
doc/that_style/img/sync_on.png
Normal file
|
After Width: | Height: | Size: 488 B |
32
doc/that_style/js/striped_bg.js
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
// Adds extra CSS classes "even" and "odd" to .memberdecls to allow
|
||||||
|
// striped backgrounds.
|
||||||
|
function MemberDeclsStriper () {
|
||||||
|
var counter = 0;
|
||||||
|
|
||||||
|
this.stripe = function() {
|
||||||
|
$(".memberdecls tbody").children().each(function(i) {
|
||||||
|
|
||||||
|
// reset counter at every heading -> always start with even
|
||||||
|
if ($(this).is(".heading")) {
|
||||||
|
counter = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// add extra classes
|
||||||
|
if (counter % 2 == 1) {
|
||||||
|
$(this).addClass("odd");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$(this).addClass("even");
|
||||||
|
}
|
||||||
|
|
||||||
|
// advance counter at every separator
|
||||||
|
// this is the only way to reliably detect which table rows belong together
|
||||||
|
if ($(this).is('[class^="separator"]')) {
|
||||||
|
counter++;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// execute the function
|
||||||
|
$(document).ready(new MemberDeclsStriper().stripe);
|
||||||
1431
doc/that_style/that_style.css
Normal file
@@ -29,12 +29,6 @@ if (UNIX AND NOT WIN32)
|
|||||||
add_executable(samplesftp samplesftp.c ${examples_SRCS})
|
add_executable(samplesftp samplesftp.c ${examples_SRCS})
|
||||||
target_compile_options(samplesftp PRIVATE ${DEFAULT_C_COMPILE_FLAGS})
|
target_compile_options(samplesftp PRIVATE ${DEFAULT_C_COMPILE_FLAGS})
|
||||||
target_link_libraries(samplesftp ssh::ssh)
|
target_link_libraries(samplesftp ssh::ssh)
|
||||||
|
|
||||||
if (WITH_SERVER)
|
|
||||||
add_executable(sample_sftpserver sample_sftpserver.c ${examples_SRCS})
|
|
||||||
target_compile_options(sample_sftpserver PRIVATE ${DEFAULT_C_COMPILE_FLAGS})
|
|
||||||
target_link_libraries(sample_sftpserver ssh::ssh ${ARGP_LIBRARIES})
|
|
||||||
endif (WITH_SERVER)
|
|
||||||
endif (WITH_SFTP)
|
endif (WITH_SFTP)
|
||||||
|
|
||||||
add_executable(ssh-client ssh_client.c ${examples_SRCS})
|
add_executable(ssh-client ssh_client.c ${examples_SRCS})
|
||||||
@@ -45,34 +39,34 @@ if (UNIX AND NOT WIN32)
|
|||||||
target_compile_options(ssh-X11-client PRIVATE ${DEFAULT_C_COMPILE_FLAGS})
|
target_compile_options(ssh-X11-client PRIVATE ${DEFAULT_C_COMPILE_FLAGS})
|
||||||
target_link_libraries(ssh-X11-client ssh::ssh)
|
target_link_libraries(ssh-X11-client ssh::ssh)
|
||||||
|
|
||||||
if (WITH_SERVER AND (ARGP_LIBRARIES OR HAVE_ARGP_H))
|
if (WITH_SERVER AND (ARGP_LIBRARY OR HAVE_ARGP_H))
|
||||||
if (HAVE_LIBUTIL)
|
if (HAVE_LIBUTIL)
|
||||||
add_executable(ssh_server_fork ssh_server.c)
|
add_executable(ssh_server_fork ssh_server.c)
|
||||||
target_compile_options(ssh_server_fork PRIVATE ${DEFAULT_C_COMPILE_FLAGS} -DWITH_FORK)
|
target_compile_options(ssh_server_fork PRIVATE ${DEFAULT_C_COMPILE_FLAGS} -DWITH_FORK)
|
||||||
target_link_libraries(ssh_server_fork ssh::ssh ${ARGP_LIBRARIES} util)
|
target_link_libraries(ssh_server_fork ssh::ssh ${ARGP_LIBRARY} util)
|
||||||
|
|
||||||
add_executable(ssh_server_pthread ssh_server.c)
|
add_executable(ssh_server_pthread ssh_server.c)
|
||||||
target_compile_options(ssh_server_pthread PRIVATE ${DEFAULT_C_COMPILE_FLAGS})
|
target_compile_options(ssh_server_pthread PRIVATE ${DEFAULT_C_COMPILE_FLAGS})
|
||||||
target_link_libraries(ssh_server_pthread ssh::ssh ${ARGP_LIBRARIES} pthread util)
|
target_link_libraries(ssh_server_pthread ssh::ssh ${ARGP_LIBRARY} pthread util)
|
||||||
endif (HAVE_LIBUTIL)
|
endif (HAVE_LIBUTIL)
|
||||||
|
|
||||||
if (WITH_GSSAPI AND GSSAPI_FOUND)
|
if (WITH_GSSAPI AND GSSAPI_FOUND)
|
||||||
add_executable(proxy proxy.c)
|
add_executable(proxy proxy.c)
|
||||||
target_compile_options(proxy PRIVATE ${DEFAULT_C_COMPILE_FLAGS})
|
target_compile_options(proxy PRIVATE ${DEFAULT_C_COMPILE_FLAGS})
|
||||||
target_link_libraries(proxy ssh::ssh ${ARGP_LIBRARIES})
|
target_link_libraries(proxy ssh::ssh ${ARGP_LIBRARY})
|
||||||
|
|
||||||
add_executable(sshd_direct-tcpip sshd_direct-tcpip.c)
|
add_executable(sshd_direct-tcpip sshd_direct-tcpip.c)
|
||||||
target_compile_options(sshd_direct-tcpip PRIVATE ${DEFAULT_C_COMPILE_FLAGS})
|
target_compile_options(sshd_direct-tcpip PRIVATE ${DEFAULT_C_COMPILE_FLAGS})
|
||||||
target_link_libraries(sshd_direct-tcpip ssh::ssh ${ARGP_LIBRARIES})
|
target_link_libraries(sshd_direct-tcpip ssh::ssh ${ARGP_LIBRARY})
|
||||||
endif (WITH_GSSAPI AND GSSAPI_FOUND)
|
endif (WITH_GSSAPI AND GSSAPI_FOUND)
|
||||||
|
|
||||||
add_executable(samplesshd-kbdint samplesshd-kbdint.c)
|
add_executable(samplesshd-kbdint samplesshd-kbdint.c)
|
||||||
target_compile_options(samplesshd-kbdint PRIVATE ${DEFAULT_C_COMPILE_FLAGS})
|
target_compile_options(samplesshd-kbdint PRIVATE ${DEFAULT_C_COMPILE_FLAGS})
|
||||||
target_link_libraries(samplesshd-kbdint ssh::ssh ${ARGP_LIBRARIES})
|
target_link_libraries(samplesshd-kbdint ssh::ssh ${ARGP_LIBRARY})
|
||||||
|
|
||||||
add_executable(keygen2 keygen2.c ${examples_SRCS})
|
add_executable(keygen2 keygen2.c ${examples_SRCS})
|
||||||
target_compile_options(keygen2 PRIVATE ${DEFAULT_C_COMPILE_FLAGS})
|
target_compile_options(keygen2 PRIVATE ${DEFAULT_C_COMPILE_FLAGS})
|
||||||
target_link_libraries(keygen2 ssh::ssh ${ARGP_LIBRARIES})
|
target_link_libraries(keygen2 ssh::ssh ${ARGP_LIBRARY})
|
||||||
|
|
||||||
endif()
|
endif()
|
||||||
endif (UNIX AND NOT WIN32)
|
endif (UNIX AND NOT WIN32)
|
||||||
@@ -81,9 +75,9 @@ if (WITH_SERVER)
|
|||||||
add_executable(samplesshd-cb samplesshd-cb.c)
|
add_executable(samplesshd-cb samplesshd-cb.c)
|
||||||
target_compile_options(samplesshd-cb PRIVATE ${DEFAULT_C_COMPILE_FLAGS})
|
target_compile_options(samplesshd-cb PRIVATE ${DEFAULT_C_COMPILE_FLAGS})
|
||||||
target_link_libraries(samplesshd-cb ssh::ssh)
|
target_link_libraries(samplesshd-cb ssh::ssh)
|
||||||
if (ARGP_LIBRARIES OR HAVE_ARGP_H)
|
if (ARGP_LIBRARY OR HAVE_ARGP_H)
|
||||||
target_link_libraries(samplesshd-cb ${ARGP_LIBRARIES})
|
target_link_libraries(samplesshd-cb ${ARGP_LIBRARY})
|
||||||
endif(ARGP_LIBRARIES OR HAVE_ARGP_H)
|
endif(ARGP_LIBRARY OR HAVE_ARGP_H)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_executable(exec exec.c ${examples_SRCS})
|
add_executable(exec exec.c ${examples_SRCS})
|
||||||
|
|||||||
@@ -30,8 +30,8 @@ int authenticate_kbdint(ssh_session session, const char *password)
|
|||||||
|
|
||||||
err = ssh_userauth_kbdint(session, NULL, NULL);
|
err = ssh_userauth_kbdint(session, NULL, NULL);
|
||||||
while (err == SSH_AUTH_INFO) {
|
while (err == SSH_AUTH_INFO) {
|
||||||
const char *instruction = NULL;
|
const char *instruction;
|
||||||
const char *name = NULL;
|
const char *name;
|
||||||
char buffer[128];
|
char buffer[128];
|
||||||
int i, n;
|
int i, n;
|
||||||
|
|
||||||
@@ -48,8 +48,8 @@ int authenticate_kbdint(ssh_session session, const char *password)
|
|||||||
}
|
}
|
||||||
|
|
||||||
for (i = 0; i < n; i++) {
|
for (i = 0; i < n; i++) {
|
||||||
const char *answer = NULL;
|
const char *answer;
|
||||||
const char *prompt = NULL;
|
const char *prompt;
|
||||||
char echo;
|
char echo;
|
||||||
|
|
||||||
prompt = ssh_userauth_kbdint_getprompt(session, i, &echo);
|
prompt = ssh_userauth_kbdint_getprompt(session, i, &echo);
|
||||||
@@ -58,7 +58,7 @@ int authenticate_kbdint(ssh_session session, const char *password)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (echo) {
|
if (echo) {
|
||||||
char *p = NULL;
|
char *p;
|
||||||
|
|
||||||
printf("%s", prompt);
|
printf("%s", prompt);
|
||||||
|
|
||||||
@@ -66,6 +66,7 @@ int authenticate_kbdint(ssh_session session, const char *password)
|
|||||||
return SSH_AUTH_ERROR;
|
return SSH_AUTH_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
buffer[sizeof(buffer) - 1] = '\0';
|
||||||
if ((p = strchr(buffer, '\n'))) {
|
if ((p = strchr(buffer, '\n'))) {
|
||||||
*p = '\0';
|
*p = '\0';
|
||||||
}
|
}
|
||||||
@@ -74,7 +75,7 @@ int authenticate_kbdint(ssh_session session, const char *password)
|
|||||||
return SSH_AUTH_ERROR;
|
return SSH_AUTH_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
memset(buffer, 0, sizeof(buffer));
|
memset(buffer, 0, strlen(buffer));
|
||||||
} else {
|
} else {
|
||||||
if (password && strstr(prompt, "Password:")) {
|
if (password && strstr(prompt, "Password:")) {
|
||||||
answer = password;
|
answer = password;
|
||||||
@@ -142,11 +143,11 @@ int authenticate_console(ssh_session session)
|
|||||||
int rc;
|
int rc;
|
||||||
int method;
|
int method;
|
||||||
char password[128] = {0};
|
char password[128] = {0};
|
||||||
char *banner = NULL;
|
char *banner;
|
||||||
|
|
||||||
// Try to authenticate
|
// Try to authenticate
|
||||||
rc = ssh_userauth_none(session, NULL);
|
rc = ssh_userauth_none(session, NULL);
|
||||||
if (rc == SSH_AUTH_ERROR || !ssh_is_connected(session)) {
|
if (rc == SSH_AUTH_ERROR) {
|
||||||
error(session);
|
error(session);
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
@@ -155,7 +156,7 @@ int authenticate_console(ssh_session session)
|
|||||||
while (rc != SSH_AUTH_SUCCESS) {
|
while (rc != SSH_AUTH_SUCCESS) {
|
||||||
if (method & SSH_AUTH_METHOD_GSSAPI_MIC){
|
if (method & SSH_AUTH_METHOD_GSSAPI_MIC){
|
||||||
rc = ssh_userauth_gssapi(session);
|
rc = ssh_userauth_gssapi(session);
|
||||||
if (rc == SSH_AUTH_ERROR || !ssh_is_connected(session)) {
|
if(rc == SSH_AUTH_ERROR) {
|
||||||
error(session);
|
error(session);
|
||||||
return rc;
|
return rc;
|
||||||
} else if (rc == SSH_AUTH_SUCCESS) {
|
} else if (rc == SSH_AUTH_SUCCESS) {
|
||||||
@@ -165,7 +166,7 @@ int authenticate_console(ssh_session session)
|
|||||||
// Try to authenticate with public key first
|
// Try to authenticate with public key first
|
||||||
if (method & SSH_AUTH_METHOD_PUBLICKEY) {
|
if (method & SSH_AUTH_METHOD_PUBLICKEY) {
|
||||||
rc = ssh_userauth_publickey_auto(session, NULL, NULL);
|
rc = ssh_userauth_publickey_auto(session, NULL, NULL);
|
||||||
if (rc == SSH_AUTH_ERROR || !ssh_is_connected(session)) {
|
if (rc == SSH_AUTH_ERROR) {
|
||||||
error(session);
|
error(session);
|
||||||
return rc;
|
return rc;
|
||||||
} else if (rc == SSH_AUTH_SUCCESS) {
|
} else if (rc == SSH_AUTH_SUCCESS) {
|
||||||
@@ -205,7 +206,7 @@ int authenticate_console(ssh_session session)
|
|||||||
// Try to authenticate with keyboard interactive";
|
// Try to authenticate with keyboard interactive";
|
||||||
if (method & SSH_AUTH_METHOD_INTERACTIVE) {
|
if (method & SSH_AUTH_METHOD_INTERACTIVE) {
|
||||||
rc = authenticate_kbdint(session, NULL);
|
rc = authenticate_kbdint(session, NULL);
|
||||||
if (rc == SSH_AUTH_ERROR || !ssh_is_connected(session)) {
|
if (rc == SSH_AUTH_ERROR) {
|
||||||
error(session);
|
error(session);
|
||||||
return rc;
|
return rc;
|
||||||
} else if (rc == SSH_AUTH_SUCCESS) {
|
} else if (rc == SSH_AUTH_SUCCESS) {
|
||||||
@@ -220,7 +221,7 @@ int authenticate_console(ssh_session session)
|
|||||||
// Try to authenticate with password
|
// Try to authenticate with password
|
||||||
if (method & SSH_AUTH_METHOD_PASSWORD) {
|
if (method & SSH_AUTH_METHOD_PASSWORD) {
|
||||||
rc = ssh_userauth_password(session, NULL, password);
|
rc = ssh_userauth_password(session, NULL, password);
|
||||||
if (rc == SSH_AUTH_ERROR || !ssh_is_connected(session)) {
|
if (rc == SSH_AUTH_ERROR) {
|
||||||
error(session);
|
error(session);
|
||||||
return rc;
|
return rc;
|
||||||
} else if (rc == SSH_AUTH_SUCCESS) {
|
} else if (rc == SSH_AUTH_SUCCESS) {
|
||||||
|
|||||||
@@ -21,9 +21,8 @@ clients must be made or how a client should react.
|
|||||||
#include "examples_common.h"
|
#include "examples_common.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
ssh_session connect_ssh(const char *host, const char *port, const char *user, int verbosity)
|
ssh_session connect_ssh(const char *host, const char *user,int verbosity){
|
||||||
{
|
ssh_session session;
|
||||||
ssh_session session = NULL;
|
|
||||||
int auth=0;
|
int auth=0;
|
||||||
|
|
||||||
session=ssh_new();
|
session=ssh_new();
|
||||||
@@ -38,13 +37,6 @@ ssh_session connect_ssh(const char *host, const char *port, const char *user, in
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (port != NULL) {
|
|
||||||
if (ssh_options_set(session, SSH_OPTIONS_PORT_STR, port) < 0) {
|
|
||||||
ssh_free(session);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (ssh_options_set(session, SSH_OPTIONS_HOST, host) < 0) {
|
if (ssh_options_set(session, SSH_OPTIONS_HOST, host) < 0) {
|
||||||
ssh_free(session);
|
ssh_free(session);
|
||||||
return NULL;
|
return NULL;
|
||||||
@@ -67,9 +59,7 @@ ssh_session connect_ssh(const char *host, const char *port, const char *user, in
|
|||||||
} else if(auth==SSH_AUTH_DENIED){
|
} else if(auth==SSH_AUTH_DENIED){
|
||||||
fprintf(stderr,"Authentication failed\n");
|
fprintf(stderr,"Authentication failed\n");
|
||||||
} else {
|
} else {
|
||||||
fprintf(stderr,
|
fprintf(stderr,"Error while authenticating : %s\n",ssh_get_error(session));
|
||||||
"Error while authenticating : %s\n",
|
|
||||||
ssh_get_error(session));
|
|
||||||
}
|
}
|
||||||
ssh_disconnect(session);
|
ssh_disconnect(session);
|
||||||
ssh_free(session);
|
ssh_free(session);
|
||||||
|
|||||||
@@ -16,11 +16,11 @@ clients must be made or how a client should react.
|
|||||||
#include <libssh/libssh.h>
|
#include <libssh/libssh.h>
|
||||||
|
|
||||||
/** Zero a structure */
|
/** Zero a structure */
|
||||||
#define ZERO_STRUCT(x) memset(&(x), 0, sizeof(x))
|
#define ZERO_STRUCT(x) memset((char *)&(x), 0, sizeof(x))
|
||||||
|
|
||||||
int authenticate_console(ssh_session session);
|
int authenticate_console(ssh_session session);
|
||||||
int authenticate_kbdint(ssh_session session, const char *password);
|
int authenticate_kbdint(ssh_session session, const char *password);
|
||||||
int verify_knownhost(ssh_session session);
|
int verify_knownhost(ssh_session session);
|
||||||
ssh_session connect_ssh(const char *hostname, const char *port, const char *user, int verbosity);
|
ssh_session connect_ssh(const char *hostname, const char *user, int verbosity);
|
||||||
|
|
||||||
#endif /* EXAMPLES_COMMON_H_ */
|
#endif /* EXAMPLES_COMMON_H_ */
|
||||||
|
|||||||
@@ -5,13 +5,13 @@
|
|||||||
#include "examples_common.h"
|
#include "examples_common.h"
|
||||||
|
|
||||||
int main(void) {
|
int main(void) {
|
||||||
ssh_session session = NULL;
|
ssh_session session;
|
||||||
ssh_channel channel = NULL;
|
ssh_channel channel;
|
||||||
char buffer[256];
|
char buffer[256];
|
||||||
int rbytes, wbytes, total = 0;
|
int rbytes, wbytes, total = 0;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
session = connect_ssh("localhost", NULL, NULL, 0);
|
session = connect_ssh("localhost", NULL, 0);
|
||||||
if (session == NULL) {
|
if (session == NULL) {
|
||||||
ssh_finalize();
|
ssh_finalize();
|
||||||
return 1;
|
return 1;
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ int main(void)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Write it to a file testkey in the current directory */
|
/* Write it to a file testkey in the current dirrectory */
|
||||||
rv = ssh_pki_export_privkey_file(key, NULL, NULL, NULL, "testkey");
|
rv = ssh_pki_export_privkey_file(key, NULL, NULL, NULL, "testkey");
|
||||||
if (rv != SSH_OK) {
|
if (rv != SSH_OK) {
|
||||||
fprintf(stderr, "Failed to write private key file");
|
fprintf(stderr, "Failed to write private key file");
|
||||||
|
|||||||
@@ -38,7 +38,6 @@ struct arguments_st {
|
|||||||
unsigned long bits;
|
unsigned long bits;
|
||||||
char *file;
|
char *file;
|
||||||
char *passphrase;
|
char *passphrase;
|
||||||
char *format;
|
|
||||||
int action_list;
|
int action_list;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -53,6 +52,7 @@ static struct argp_option options[] = {
|
|||||||
"Accepted values are: "
|
"Accepted values are: "
|
||||||
"1024, 2048, 3072 (default), 4096, and 8192 for TYPE=\"rsa\"; "
|
"1024, 2048, 3072 (default), 4096, and 8192 for TYPE=\"rsa\"; "
|
||||||
"256 (default), 384, and 521 for TYPE=\"ecdsa\"; "
|
"256 (default), 384, and 521 for TYPE=\"ecdsa\"; "
|
||||||
|
"1024 (default) and 2048 for TYPE=\"dsa\"; "
|
||||||
"can be omitted for TYPE=\"ed25519\" "
|
"can be omitted for TYPE=\"ed25519\" "
|
||||||
"(it will be ignored if provided).\n",
|
"(it will be ignored if provided).\n",
|
||||||
.group = 0
|
.group = 0
|
||||||
@@ -86,7 +86,7 @@ static struct argp_option options[] = {
|
|||||||
.flags = 0,
|
.flags = 0,
|
||||||
.doc = "The type of the key to be generated. "
|
.doc = "The type of the key to be generated. "
|
||||||
"Accepted values are: "
|
"Accepted values are: "
|
||||||
"\"rsa\", \"ecdsa\", and \"ed25519\".\n",
|
"\"rsa\", \"ecdsa\", \"ed25519\", and \"dsa\".\n",
|
||||||
.group = 0
|
.group = 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -97,16 +97,6 @@ static struct argp_option options[] = {
|
|||||||
.doc = "List the Fingerprint of the given key\n",
|
.doc = "List the Fingerprint of the given key\n",
|
||||||
.group = 0
|
.group = 0
|
||||||
},
|
},
|
||||||
{
|
|
||||||
.name = "format",
|
|
||||||
.key = 'm',
|
|
||||||
.arg = "FORMAT",
|
|
||||||
.flags = 0,
|
|
||||||
.doc = "Write the file in specific format. The supported values are "
|
|
||||||
"'PEM'and 'OpenSSH' file format. By default Ed25519 "
|
|
||||||
"keys are exported in OpenSSH format and others in PEM.\n",
|
|
||||||
.group = 0
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
/* End of the options */
|
/* End of the options */
|
||||||
0
|
0
|
||||||
@@ -163,6 +153,9 @@ static error_t parse_opt (int key, char *arg, struct argp_state *state)
|
|||||||
if (!strcmp(arg, "rsa")) {
|
if (!strcmp(arg, "rsa")) {
|
||||||
arguments->type = SSH_KEYTYPE_RSA;
|
arguments->type = SSH_KEYTYPE_RSA;
|
||||||
}
|
}
|
||||||
|
else if (!strcmp(arg, "dsa")) {
|
||||||
|
arguments->type = SSH_KEYTYPE_DSS;
|
||||||
|
}
|
||||||
else if (!strcmp(arg, "ecdsa")) {
|
else if (!strcmp(arg, "ecdsa")) {
|
||||||
arguments->type = SSH_KEYTYPE_ECDSA;
|
arguments->type = SSH_KEYTYPE_ECDSA;
|
||||||
}
|
}
|
||||||
@@ -179,9 +172,6 @@ static error_t parse_opt (int key, char *arg, struct argp_state *state)
|
|||||||
case 'l':
|
case 'l':
|
||||||
arguments->action_list = 1;
|
arguments->action_list = 1;
|
||||||
break;
|
break;
|
||||||
case 'm':
|
|
||||||
arguments->format = strdup(arg);
|
|
||||||
break;
|
|
||||||
case ARGP_KEY_ARG:
|
case ARGP_KEY_ARG:
|
||||||
if (state->arg_num > 0) {
|
if (state->arg_num > 0) {
|
||||||
/* Too many arguments. */
|
/* Too many arguments. */
|
||||||
@@ -263,6 +253,29 @@ static int validate_args(struct arguments_st *args)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
case SSH_KEYTYPE_DSS:
|
||||||
|
switch (args->bits) {
|
||||||
|
case 0:
|
||||||
|
/* If not provided, use default value */
|
||||||
|
args->bits = 1024;
|
||||||
|
break;
|
||||||
|
case 1024:
|
||||||
|
case 2048:
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
fprintf(stderr, "Error: Invalid bits parameter provided\n");
|
||||||
|
rc = EINVAL;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (args->file == NULL) {
|
||||||
|
args->file = strdup("id_dsa");
|
||||||
|
if (args->file == NULL) {
|
||||||
|
rc = ENOMEM;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case SSH_KEYTYPE_ED25519:
|
case SSH_KEYTYPE_ED25519:
|
||||||
/* Ignore value and overwrite with a zero */
|
/* Ignore value and overwrite with a zero */
|
||||||
@@ -310,7 +323,6 @@ list_fingerprint(char *file)
|
|||||||
rc = ssh_get_publickey_hash(key, SSH_PUBLICKEY_HASH_SHA256, &hash, &hlen);
|
rc = ssh_get_publickey_hash(key, SSH_PUBLICKEY_HASH_SHA256, &hash, &hlen);
|
||||||
if (rc != SSH_OK) {
|
if (rc != SSH_OK) {
|
||||||
fprintf(stderr, "Failed to get key fingerprint\n");
|
fprintf(stderr, "Failed to get key fingerprint\n");
|
||||||
ssh_key_free(key);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
ssh_print_hash(SSH_PUBLICKEY_HASH_SHA256, hash, hlen);
|
ssh_print_hash(SSH_PUBLICKEY_HASH_SHA256, hash, hlen);
|
||||||
@@ -350,12 +362,7 @@ int main(int argc, char *argv[])
|
|||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (arguments.file == NULL) {
|
if (arguments.action_list && arguments.file) {
|
||||||
fprintf(stderr, "Error: Missing argument file\n");
|
|
||||||
goto end;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (arguments.action_list) {
|
|
||||||
list_fingerprint(arguments.file);
|
list_fingerprint(arguments.file);
|
||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
@@ -402,36 +409,8 @@ int main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Write the private key */
|
/* Write the private key */
|
||||||
if (arguments.format != NULL) {
|
rc = ssh_pki_export_privkey_file(key, arguments.passphrase, NULL, NULL,
|
||||||
if (strcasecmp(arguments.format, "PEM") == 0) {
|
|
||||||
rc = ssh_pki_export_privkey_file_format(key,
|
|
||||||
arguments.passphrase,
|
|
||||||
NULL,
|
|
||||||
NULL,
|
|
||||||
arguments.file,
|
|
||||||
SSH_FILE_FORMAT_PEM);
|
|
||||||
} else if (strcasecmp(arguments.format, "OpenSSH") == 0) {
|
|
||||||
rc = ssh_pki_export_privkey_file_format(key,
|
|
||||||
arguments.passphrase,
|
|
||||||
NULL,
|
|
||||||
NULL,
|
|
||||||
arguments.file,
|
|
||||||
SSH_FILE_FORMAT_OPENSSH);
|
|
||||||
} else {
|
|
||||||
rc = ssh_pki_export_privkey_file_format(key,
|
|
||||||
arguments.passphrase,
|
|
||||||
NULL,
|
|
||||||
NULL,
|
|
||||||
arguments.file,
|
|
||||||
SSH_FILE_FORMAT_DEFAULT);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
rc = ssh_pki_export_privkey_file(key,
|
|
||||||
arguments.passphrase,
|
|
||||||
NULL,
|
|
||||||
NULL,
|
|
||||||
arguments.file);
|
arguments.file);
|
||||||
}
|
|
||||||
if (rc != SSH_OK) {
|
if (rc != SSH_OK) {
|
||||||
fprintf(stderr, "Error: Failed to write private key file");
|
fprintf(stderr, "Error: Failed to write private key file");
|
||||||
goto end;
|
goto end;
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ int verify_knownhost(ssh_session session)
|
|||||||
char buf[10];
|
char buf[10];
|
||||||
unsigned char *hash = NULL;
|
unsigned char *hash = NULL;
|
||||||
size_t hlen;
|
size_t hlen;
|
||||||
ssh_key srv_pubkey = NULL;
|
ssh_key srv_pubkey;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
rc = ssh_get_server_publickey(session, &srv_pubkey);
|
rc = ssh_get_server_publickey(session, &srv_pubkey);
|
||||||
|
|||||||
@@ -26,11 +26,10 @@ program.
|
|||||||
#define BUF_SIZE 16384
|
#define BUF_SIZE 16384
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static char **sources = NULL;
|
static char **sources;
|
||||||
static int nsources;
|
static int nsources;
|
||||||
static char *destination = NULL;
|
static char *destination;
|
||||||
static int verbosity = 0;
|
static int verbosity = 0;
|
||||||
static char *port = NULL;
|
|
||||||
|
|
||||||
struct location {
|
struct location {
|
||||||
int is_ssh;
|
int is_ssh;
|
||||||
@@ -50,10 +49,9 @@ enum {
|
|||||||
static void usage(const char *argv0) {
|
static void usage(const char *argv0) {
|
||||||
fprintf(stderr, "Usage : %s [options] [[user@]host1:]file1 ... \n"
|
fprintf(stderr, "Usage : %s [options] [[user@]host1:]file1 ... \n"
|
||||||
" [[user@]host2:]destination\n"
|
" [[user@]host2:]destination\n"
|
||||||
"sample scp client - libssh-%s\n"
|
"sample scp client - libssh-%s\n",
|
||||||
"Options :\n"
|
// "Options :\n",
|
||||||
" -P : use port to connect to remote host\n"
|
// " -r : use RSA to verify host public key\n",
|
||||||
" -v : increase verbosity of libssh. Can be used multiple times\n",
|
|
||||||
argv0,
|
argv0,
|
||||||
ssh_version(0));
|
ssh_version(0));
|
||||||
exit(0);
|
exit(0);
|
||||||
@@ -62,14 +60,11 @@ static void usage(const char *argv0) {
|
|||||||
static int opts(int argc, char **argv) {
|
static int opts(int argc, char **argv) {
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
while((i = getopt(argc, argv, "P:v")) != -1) {
|
while((i = getopt(argc, argv, "v")) != -1) {
|
||||||
switch(i) {
|
switch(i) {
|
||||||
case 'v':
|
case 'v':
|
||||||
verbosity++;
|
verbosity++;
|
||||||
break;
|
break;
|
||||||
case 'P':
|
|
||||||
port = optarg;
|
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
fprintf(stderr, "unknown option %c\n", optopt);
|
fprintf(stderr, "unknown option %c\n", optopt);
|
||||||
usage(argv[0]);
|
usage(argv[0]);
|
||||||
@@ -119,14 +114,9 @@ static void location_free(struct location *loc)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct location *parse_location(char *loc)
|
static struct location *parse_location(char *loc) {
|
||||||
{
|
struct location *location;
|
||||||
struct location *location = NULL;
|
char *ptr;
|
||||||
char *ptr = NULL;
|
|
||||||
|
|
||||||
if (loc == NULL) {
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
location = malloc(sizeof(struct location));
|
location = malloc(sizeof(struct location));
|
||||||
if (location == NULL) {
|
if (location == NULL) {
|
||||||
@@ -188,7 +178,7 @@ static void close_location(struct location *loc) {
|
|||||||
|
|
||||||
static int open_location(struct location *loc, int flag) {
|
static int open_location(struct location *loc, int flag) {
|
||||||
if (loc->is_ssh && flag == WRITE) {
|
if (loc->is_ssh && flag == WRITE) {
|
||||||
loc->session = connect_ssh(loc->host, port, loc->user, verbosity);
|
loc->session = connect_ssh(loc->host, loc->user, verbosity);
|
||||||
if (!loc->session) {
|
if (!loc->session) {
|
||||||
fprintf(stderr, "Couldn't connect to %s\n", loc->host);
|
fprintf(stderr, "Couldn't connect to %s\n", loc->host);
|
||||||
return -1;
|
return -1;
|
||||||
@@ -214,7 +204,7 @@ static int open_location(struct location *loc, int flag) {
|
|||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
} else if (loc->is_ssh && flag == READ) {
|
} else if (loc->is_ssh && flag == READ) {
|
||||||
loc->session = connect_ssh(loc->host, port, loc->user, verbosity);
|
loc->session = connect_ssh(loc->host, loc->user, verbosity);
|
||||||
if (!loc->session) {
|
if (!loc->session) {
|
||||||
fprintf(stderr, "Couldn't connect to %s\n", loc->host);
|
fprintf(stderr, "Couldn't connect to %s\n", loc->host);
|
||||||
return -1;
|
return -1;
|
||||||
@@ -239,11 +229,11 @@ static int open_location(struct location *loc, int flag) {
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
} else if (loc->path != NULL) {
|
} else {
|
||||||
loc->file = fopen(loc->path, flag == READ ? "r":"w");
|
loc->file = fopen(loc->path, flag == READ ? "r":"w");
|
||||||
if (!loc->file) {
|
if (!loc->file) {
|
||||||
if (errno == EISDIR) {
|
if (errno == EISDIR) {
|
||||||
if (chdir(loc->path)) {
|
if (loc->path != NULL && chdir(loc->path)) {
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"Error changing directory to %s: %s\n",
|
"Error changing directory to %s: %s\n",
|
||||||
loc->path, strerror(errno));
|
loc->path, strerror(errno));
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ static int authenticated=0;
|
|||||||
static int tries = 0;
|
static int tries = 0;
|
||||||
static int error = 0;
|
static int error = 0;
|
||||||
static ssh_channel chan=NULL;
|
static ssh_channel chan=NULL;
|
||||||
static char *username = NULL;
|
static char *username;
|
||||||
static ssh_gssapi_creds client_creds = NULL;
|
static ssh_gssapi_creds client_creds = NULL;
|
||||||
|
|
||||||
static int auth_password(ssh_session session, const char *user,
|
static int auth_password(ssh_session session, const char *user,
|
||||||
@@ -142,12 +142,20 @@ static struct argp_option options[] = {
|
|||||||
.doc = "Set the host key.",
|
.doc = "Set the host key.",
|
||||||
.group = 0
|
.group = 0
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.name = "dsakey",
|
||||||
|
.key = 'd',
|
||||||
|
.arg = "FILE",
|
||||||
|
.flags = 0,
|
||||||
|
.doc = "Set the dsa key.",
|
||||||
|
.group = 0
|
||||||
|
},
|
||||||
{
|
{
|
||||||
.name = "rsakey",
|
.name = "rsakey",
|
||||||
.key = 'r',
|
.key = 'r',
|
||||||
.arg = "FILE",
|
.arg = "FILE",
|
||||||
.flags = 0,
|
.flags = 0,
|
||||||
.doc = "Set the rsa host key (deprecated alias to 'k').",
|
.doc = "Set the rsa key.",
|
||||||
.group = 0
|
.group = 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -172,11 +180,15 @@ static error_t parse_opt (int key, char *arg, struct argp_state *state) {
|
|||||||
case 'p':
|
case 'p':
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_BINDPORT_STR, arg);
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_BINDPORT_STR, arg);
|
||||||
break;
|
break;
|
||||||
case 'r':
|
case 'd':
|
||||||
/* deprecated */
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_DSAKEY, arg);
|
||||||
|
break;
|
||||||
case 'k':
|
case 'k':
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, arg);
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, arg);
|
||||||
break;
|
break;
|
||||||
|
case 'r':
|
||||||
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_RSAKEY, arg);
|
||||||
|
break;
|
||||||
case 'v':
|
case 'v':
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_LOG_VERBOSITY_STR, "3");
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_LOG_VERBOSITY_STR, "3");
|
||||||
break;
|
break;
|
||||||
@@ -204,12 +216,11 @@ static error_t parse_opt (int key, char *arg, struct argp_state *state) {
|
|||||||
static struct argp argp = {options, parse_opt, args_doc, doc, NULL, NULL, NULL};
|
static struct argp argp = {options, parse_opt, args_doc, doc, NULL, NULL, NULL};
|
||||||
#endif /* HAVE_ARGP_H */
|
#endif /* HAVE_ARGP_H */
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv){
|
||||||
{
|
ssh_session session;
|
||||||
ssh_session session = NULL;
|
ssh_bind sshbind;
|
||||||
ssh_bind sshbind = NULL;
|
ssh_event mainloop;
|
||||||
ssh_event mainloop = NULL;
|
ssh_session client_session;
|
||||||
ssh_session client_session = NULL;
|
|
||||||
|
|
||||||
struct ssh_server_callbacks_struct cb = {
|
struct ssh_server_callbacks_struct cb = {
|
||||||
.userdata = NULL,
|
.userdata = NULL,
|
||||||
@@ -220,13 +231,13 @@ int main(int argc, char **argv)
|
|||||||
|
|
||||||
char buf[BUF_SIZE];
|
char buf[BUF_SIZE];
|
||||||
char host[128]="";
|
char host[128]="";
|
||||||
char *ptr = NULL;
|
char *ptr;
|
||||||
int i,r, rc;
|
int i,r, rc;
|
||||||
|
|
||||||
sshbind=ssh_bind_new();
|
sshbind=ssh_bind_new();
|
||||||
session=ssh_new();
|
session=ssh_new();
|
||||||
|
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, "sshd_rsa");
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_RSAKEY, "sshd_rsa");
|
||||||
|
|
||||||
#ifdef HAVE_ARGP_H
|
#ifdef HAVE_ARGP_H
|
||||||
/*
|
/*
|
||||||
@@ -337,3 +348,4 @@ int main(int argc, char **argv)
|
|||||||
ssh_finalize();
|
ssh_finalize();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,508 +0,0 @@
|
|||||||
/* This is a sample implementation of a libssh based SSH server */
|
|
||||||
/*
|
|
||||||
Copyright 2014 Audrius Butkevicius
|
|
||||||
|
|
||||||
This file is part of the SSH Library
|
|
||||||
|
|
||||||
You are free to copy this file, modify it in any way, consider it being public
|
|
||||||
domain. This does not apply to the rest of the library though, but it is
|
|
||||||
allowed to cut-and-paste working code from this file to any license of
|
|
||||||
program.
|
|
||||||
The goal is to show the API in action.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "config.h"
|
|
||||||
|
|
||||||
#include <libssh/callbacks.h>
|
|
||||||
#include <libssh/server.h>
|
|
||||||
#include <libssh/sftp.h>
|
|
||||||
#include <libssh/sftpserver.h>
|
|
||||||
|
|
||||||
#include <poll.h>
|
|
||||||
#ifdef HAVE_ARGP_H
|
|
||||||
#include <argp.h>
|
|
||||||
#endif
|
|
||||||
#include <fcntl.h>
|
|
||||||
#ifdef HAVE_LIBUTIL_H
|
|
||||||
#include <libutil.h>
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_PTY_H
|
|
||||||
#include <pty.h>
|
|
||||||
#endif
|
|
||||||
#include <signal.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#ifdef HAVE_UTMP_H
|
|
||||||
#include <utmp.h>
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_UTIL_H
|
|
||||||
#include <util.h>
|
|
||||||
#endif
|
|
||||||
#include <sys/ioctl.h>
|
|
||||||
#include <sys/wait.h>
|
|
||||||
#include <sys/stat.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdbool.h>
|
|
||||||
|
|
||||||
/* below are for sftp */
|
|
||||||
#include <sys/statvfs.h>
|
|
||||||
#include <errno.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
#include <dirent.h>
|
|
||||||
#include <time.h>
|
|
||||||
#include <inttypes.h>
|
|
||||||
|
|
||||||
#ifndef KEYS_FOLDER
|
|
||||||
#ifdef _WIN32
|
|
||||||
#define KEYS_FOLDER
|
|
||||||
#else
|
|
||||||
#define KEYS_FOLDER "/etc/ssh/"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define USER "myuser"
|
|
||||||
#define PASS "mypassword"
|
|
||||||
#define BUF_SIZE 1048576
|
|
||||||
#define SESSION_END (SSH_CLOSED | SSH_CLOSED_ERROR)
|
|
||||||
|
|
||||||
static void set_default_keys(ssh_bind sshbind,
|
|
||||||
int rsa_already_set,
|
|
||||||
int ecdsa_already_set)
|
|
||||||
{
|
|
||||||
if (!rsa_already_set)
|
|
||||||
{
|
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY,
|
|
||||||
KEYS_FOLDER "ssh_host_rsa_key");
|
|
||||||
}
|
|
||||||
if (!ecdsa_already_set)
|
|
||||||
{
|
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY,
|
|
||||||
KEYS_FOLDER "ssh_host_ecdsa_key");
|
|
||||||
}
|
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY,
|
|
||||||
KEYS_FOLDER "ssh_host_ed25519_key");
|
|
||||||
}
|
|
||||||
#define DEF_STR_SIZE 1024
|
|
||||||
char authorizedkeys[DEF_STR_SIZE] = {0};
|
|
||||||
#ifdef HAVE_ARGP_H
|
|
||||||
const char *argp_program_version = "libssh sftp server example " SSH_STRINGIFY(LIBSSH_VERSION);
|
|
||||||
const char *argp_program_bug_address = "<libssh@libssh.org>";
|
|
||||||
|
|
||||||
/* Program documentation. */
|
|
||||||
static char doc[] = "Sftp server implemented with libssh -- a Secure Shell protocol implementation";
|
|
||||||
|
|
||||||
/* A description of the arguments we accept. */
|
|
||||||
static char args_doc[] = "BINDADDR";
|
|
||||||
|
|
||||||
/* The options we understand. */
|
|
||||||
static struct argp_option options[] = {
|
|
||||||
{.name = "port",
|
|
||||||
.key = 'p',
|
|
||||||
.arg = "PORT",
|
|
||||||
.flags = 0,
|
|
||||||
.doc = "Set the port to bind.",
|
|
||||||
.group = 0},
|
|
||||||
{.name = "hostkey",
|
|
||||||
.key = 'k',
|
|
||||||
.arg = "FILE",
|
|
||||||
.flags = 0,
|
|
||||||
.doc = "Set a host key. Can be used multiple times. "
|
|
||||||
"Implies no default keys.",
|
|
||||||
.group = 0},
|
|
||||||
{.name = "rsakey",
|
|
||||||
.key = 'r',
|
|
||||||
.arg = "FILE",
|
|
||||||
.flags = 0,
|
|
||||||
.doc = "Set the rsa key.",
|
|
||||||
.group = 0},
|
|
||||||
{.name = "ecdsakey",
|
|
||||||
.key = 'e',
|
|
||||||
.arg = "FILE",
|
|
||||||
.flags = 0,
|
|
||||||
.doc = "Set the ecdsa key.",
|
|
||||||
.group = 0},
|
|
||||||
{.name = "authorizedkeys",
|
|
||||||
.key = 'a',
|
|
||||||
.arg = "FILE",
|
|
||||||
.flags = 0,
|
|
||||||
.doc = "Set the authorized keys file.",
|
|
||||||
.group = 0},
|
|
||||||
{.name = "no-default-keys",
|
|
||||||
.key = 'n',
|
|
||||||
.arg = NULL,
|
|
||||||
.flags = 0,
|
|
||||||
.doc = "Do not set default key locations.",
|
|
||||||
.group = 0},
|
|
||||||
{.name = "verbose",
|
|
||||||
.key = 'v',
|
|
||||||
.arg = NULL,
|
|
||||||
.flags = 0,
|
|
||||||
.doc = "Get verbose output.",
|
|
||||||
.group = 0},
|
|
||||||
{NULL, 0, NULL, 0, NULL, 0}};
|
|
||||||
|
|
||||||
/* Parse a single option. */
|
|
||||||
static error_t parse_opt(int key, char *arg, struct argp_state *state)
|
|
||||||
{
|
|
||||||
/* Get the input argument from argp_parse, which we
|
|
||||||
* know is a pointer to our arguments structure. */
|
|
||||||
ssh_bind sshbind = state->input;
|
|
||||||
static int no_default_keys = 0;
|
|
||||||
static int rsa_already_set = 0, ecdsa_already_set = 0;
|
|
||||||
static int verbosity = 0;
|
|
||||||
|
|
||||||
switch (key)
|
|
||||||
{
|
|
||||||
case 'n':
|
|
||||||
no_default_keys = 1;
|
|
||||||
break;
|
|
||||||
case 'p':
|
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_BINDPORT_STR, arg);
|
|
||||||
break;
|
|
||||||
case 'k':
|
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, arg);
|
|
||||||
/* We can't track the types of keys being added with this
|
|
||||||
option, so let's ensure we keep the keys we're adding
|
|
||||||
by just not setting the default keys */
|
|
||||||
no_default_keys = 1;
|
|
||||||
break;
|
|
||||||
case 'r':
|
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, arg);
|
|
||||||
rsa_already_set = 1;
|
|
||||||
break;
|
|
||||||
case 'e':
|
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, arg);
|
|
||||||
ecdsa_already_set = 1;
|
|
||||||
break;
|
|
||||||
case 'a':
|
|
||||||
strncpy(authorizedkeys, arg, DEF_STR_SIZE - 1);
|
|
||||||
break;
|
|
||||||
case 'v':
|
|
||||||
verbosity++;
|
|
||||||
ssh_bind_options_set(sshbind,
|
|
||||||
SSH_BIND_OPTIONS_LOG_VERBOSITY,
|
|
||||||
&verbosity);
|
|
||||||
break;
|
|
||||||
case ARGP_KEY_ARG:
|
|
||||||
if (state->arg_num >= 1)
|
|
||||||
{
|
|
||||||
/* Too many arguments. */
|
|
||||||
argp_usage(state);
|
|
||||||
}
|
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_BINDADDR, arg);
|
|
||||||
break;
|
|
||||||
case ARGP_KEY_END:
|
|
||||||
if (state->arg_num < 1)
|
|
||||||
{
|
|
||||||
/* Not enough arguments. */
|
|
||||||
argp_usage(state);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!no_default_keys)
|
|
||||||
{
|
|
||||||
set_default_keys(sshbind,
|
|
||||||
rsa_already_set,
|
|
||||||
ecdsa_already_set);
|
|
||||||
}
|
|
||||||
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
return ARGP_ERR_UNKNOWN;
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Our argp parser. */
|
|
||||||
static struct argp argp = {options, parse_opt, args_doc, doc, NULL, NULL, NULL};
|
|
||||||
#endif /* HAVE_ARGP_H */
|
|
||||||
|
|
||||||
/* A userdata struct for channel. */
|
|
||||||
struct channel_data_struct {
|
|
||||||
sftp_session sftp;
|
|
||||||
};
|
|
||||||
|
|
||||||
/* A userdata struct for session. */
|
|
||||||
struct session_data_struct
|
|
||||||
{
|
|
||||||
/* Pointer to the channel the session will allocate. */
|
|
||||||
ssh_channel channel;
|
|
||||||
int auth_attempts;
|
|
||||||
int authenticated;
|
|
||||||
};
|
|
||||||
|
|
||||||
static int auth_password(ssh_session session, const char *user,
|
|
||||||
const char *pass, void *userdata)
|
|
||||||
{
|
|
||||||
struct session_data_struct *sdata = (struct session_data_struct *)userdata;
|
|
||||||
|
|
||||||
(void)session;
|
|
||||||
|
|
||||||
if (strcmp(user, USER) == 0 && strcmp(pass, PASS) == 0)
|
|
||||||
{
|
|
||||||
sdata->authenticated = 1;
|
|
||||||
return SSH_AUTH_SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
sdata->auth_attempts++;
|
|
||||||
return SSH_AUTH_DENIED;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int auth_publickey(ssh_session session,
|
|
||||||
const char *user,
|
|
||||||
struct ssh_key_struct *pubkey,
|
|
||||||
char signature_state,
|
|
||||||
void *userdata)
|
|
||||||
{
|
|
||||||
struct session_data_struct *sdata = (struct session_data_struct *)userdata;
|
|
||||||
|
|
||||||
(void)session;
|
|
||||||
(void)user;
|
|
||||||
|
|
||||||
if (signature_state == SSH_PUBLICKEY_STATE_NONE)
|
|
||||||
{
|
|
||||||
return SSH_AUTH_SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (signature_state != SSH_PUBLICKEY_STATE_VALID)
|
|
||||||
{
|
|
||||||
return SSH_AUTH_DENIED;
|
|
||||||
}
|
|
||||||
|
|
||||||
// valid so far. Now look through authorized keys for a match
|
|
||||||
if (authorizedkeys[0])
|
|
||||||
{
|
|
||||||
ssh_key key = NULL;
|
|
||||||
int result;
|
|
||||||
struct stat buf;
|
|
||||||
|
|
||||||
if (stat(authorizedkeys, &buf) == 0)
|
|
||||||
{
|
|
||||||
result = ssh_pki_import_pubkey_file(authorizedkeys, &key);
|
|
||||||
if ((result != SSH_OK) || (key == NULL))
|
|
||||||
{
|
|
||||||
fprintf(stderr,
|
|
||||||
"Unable to import public key file %s\n",
|
|
||||||
authorizedkeys);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
result = ssh_key_cmp(key, pubkey, SSH_KEY_CMP_PUBLIC);
|
|
||||||
ssh_key_free(key);
|
|
||||||
if (result == 0)
|
|
||||||
{
|
|
||||||
sdata->authenticated = 1;
|
|
||||||
return SSH_AUTH_SUCCESS;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// no matches
|
|
||||||
sdata->authenticated = 0;
|
|
||||||
return SSH_AUTH_DENIED;
|
|
||||||
}
|
|
||||||
|
|
||||||
static ssh_channel channel_open(ssh_session session, void *userdata)
|
|
||||||
{
|
|
||||||
struct session_data_struct *sdata = (struct session_data_struct *)userdata;
|
|
||||||
|
|
||||||
sdata->channel = ssh_channel_new(session);
|
|
||||||
return sdata->channel;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void handle_session(ssh_event event, ssh_session session)
|
|
||||||
{
|
|
||||||
int n;
|
|
||||||
|
|
||||||
/* Our struct holding information about the channel. */
|
|
||||||
struct channel_data_struct cdata = {
|
|
||||||
.sftp = NULL,
|
|
||||||
};
|
|
||||||
|
|
||||||
/* Our struct holding information about the session. */
|
|
||||||
struct session_data_struct sdata = {
|
|
||||||
.channel = NULL,
|
|
||||||
.auth_attempts = 0,
|
|
||||||
.authenticated = 0,
|
|
||||||
};
|
|
||||||
|
|
||||||
struct ssh_channel_callbacks_struct channel_cb = {
|
|
||||||
.userdata = &(cdata.sftp),
|
|
||||||
.channel_data_function = sftp_channel_default_data_callback,
|
|
||||||
.channel_subsystem_request_function = sftp_channel_default_subsystem_request,
|
|
||||||
};
|
|
||||||
|
|
||||||
struct ssh_server_callbacks_struct server_cb = {
|
|
||||||
.userdata = &sdata,
|
|
||||||
.auth_password_function = auth_password,
|
|
||||||
.channel_open_request_session_function = channel_open,
|
|
||||||
};
|
|
||||||
|
|
||||||
if (authorizedkeys[0])
|
|
||||||
{
|
|
||||||
server_cb.auth_pubkey_function = auth_publickey;
|
|
||||||
ssh_set_auth_methods(session, SSH_AUTH_METHOD_PASSWORD | SSH_AUTH_METHOD_PUBLICKEY);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
ssh_set_auth_methods(session, SSH_AUTH_METHOD_PASSWORD);
|
|
||||||
|
|
||||||
ssh_callbacks_init(&server_cb);
|
|
||||||
ssh_callbacks_init(&channel_cb);
|
|
||||||
|
|
||||||
ssh_set_server_callbacks(session, &server_cb);
|
|
||||||
|
|
||||||
if (ssh_handle_key_exchange(session) != SSH_OK)
|
|
||||||
{
|
|
||||||
fprintf(stderr, "%s\n", ssh_get_error(session));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
ssh_event_add_session(event, session);
|
|
||||||
|
|
||||||
n = 0;
|
|
||||||
while (sdata.authenticated == 0 || sdata.channel == NULL) {
|
|
||||||
/* If the user has used up all attempts, or if he hasn't been able to
|
|
||||||
* authenticate in 10 seconds (n * 100ms), disconnect. */
|
|
||||||
if (sdata.auth_attempts >= 3 || n >= 100) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (ssh_event_dopoll(event, 100) == SSH_ERROR) {
|
|
||||||
fprintf(stderr, "%s\n", ssh_get_error(session));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
n++;
|
|
||||||
}
|
|
||||||
|
|
||||||
ssh_set_channel_callbacks(sdata.channel, &channel_cb);
|
|
||||||
|
|
||||||
do {
|
|
||||||
/* Poll the main event which takes care of the session, the channel and
|
|
||||||
* even our child process's stdout/stderr (once it's started). */
|
|
||||||
if (ssh_event_dopoll(event, 100) == SSH_ERROR) {
|
|
||||||
ssh_channel_close(sdata.channel);
|
|
||||||
}
|
|
||||||
} while (ssh_channel_is_open(sdata.channel) &&
|
|
||||||
!ssh_channel_is_eof(sdata.channel));
|
|
||||||
|
|
||||||
ssh_channel_send_eof(sdata.channel);
|
|
||||||
ssh_channel_close(sdata.channel);
|
|
||||||
|
|
||||||
/* Wait up to 5 seconds for the client to terminate the session. */
|
|
||||||
for (n = 0; n < 50 && (ssh_get_status(session) & SESSION_END) == 0; n++) {
|
|
||||||
ssh_event_dopoll(event, 100);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* SIGCHLD handler for cleaning up dead children. */
|
|
||||||
static void sigchld_handler(int signo)
|
|
||||||
{
|
|
||||||
(void)signo;
|
|
||||||
|
|
||||||
while (waitpid(-1, NULL, WNOHANG) > 0)
|
|
||||||
;
|
|
||||||
}
|
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
|
||||||
{
|
|
||||||
ssh_bind sshbind = NULL;
|
|
||||||
ssh_session session = NULL;
|
|
||||||
ssh_event event = NULL;
|
|
||||||
struct sigaction sa;
|
|
||||||
int rc;
|
|
||||||
|
|
||||||
/* Set up SIGCHLD handler. */
|
|
||||||
sa.sa_handler = sigchld_handler;
|
|
||||||
sigemptyset(&sa.sa_mask);
|
|
||||||
sa.sa_flags = SA_RESTART | SA_NOCLDSTOP;
|
|
||||||
if (sigaction(SIGCHLD, &sa, NULL) != 0)
|
|
||||||
{
|
|
||||||
fprintf(stderr, "Failed to register SIGCHLD handler\n");
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
rc = ssh_init();
|
|
||||||
if (rc < 0)
|
|
||||||
{
|
|
||||||
fprintf(stderr, "ssh_init failed\n");
|
|
||||||
goto exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
sshbind = ssh_bind_new();
|
|
||||||
if (sshbind == NULL)
|
|
||||||
{
|
|
||||||
fprintf(stderr, "ssh_bind_new failed\n");
|
|
||||||
goto exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef HAVE_ARGP_H
|
|
||||||
argp_parse(&argp, argc, argv, 0, 0, sshbind);
|
|
||||||
#else
|
|
||||||
(void)argc;
|
|
||||||
(void)argv;
|
|
||||||
|
|
||||||
set_default_keys(sshbind, 0, 0);
|
|
||||||
#endif /* HAVE_ARGP_H */
|
|
||||||
|
|
||||||
if (ssh_bind_listen(sshbind) < 0)
|
|
||||||
{
|
|
||||||
fprintf(stderr, "%s\n", ssh_get_error(sshbind));
|
|
||||||
goto exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
while (1)
|
|
||||||
{
|
|
||||||
session = ssh_new();
|
|
||||||
if (session == NULL)
|
|
||||||
{
|
|
||||||
fprintf(stderr, "Failed to allocate session\n");
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Blocks until there is a new incoming connection. */
|
|
||||||
if (ssh_bind_accept(sshbind, session) != SSH_ERROR)
|
|
||||||
{
|
|
||||||
switch (fork())
|
|
||||||
{
|
|
||||||
case 0:
|
|
||||||
/* Remove the SIGCHLD handler inherited from parent. */
|
|
||||||
sa.sa_handler = SIG_DFL;
|
|
||||||
sigaction(SIGCHLD, &sa, NULL);
|
|
||||||
/* Remove socket binding, which allows us to restart the
|
|
||||||
* parent process, without terminating existing sessions. */
|
|
||||||
ssh_bind_free(sshbind);
|
|
||||||
|
|
||||||
event = ssh_event_new();
|
|
||||||
if (event != NULL)
|
|
||||||
{
|
|
||||||
/* Blocks until the SSH session ends by either
|
|
||||||
* child process exiting, or client disconnecting. */
|
|
||||||
handle_session(event, session);
|
|
||||||
ssh_event_free(event);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
fprintf(stderr, "Could not create polling context\n");
|
|
||||||
}
|
|
||||||
ssh_disconnect(session);
|
|
||||||
ssh_free(session);
|
|
||||||
|
|
||||||
exit(0);
|
|
||||||
case -1:
|
|
||||||
fprintf(stderr, "Failed to fork\n");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
fprintf(stderr, "%s\n", ssh_get_error(sshbind));
|
|
||||||
}
|
|
||||||
/* Since the session has been passed to a child fork, do some cleaning
|
|
||||||
* up at the parent process. */
|
|
||||||
ssh_disconnect(session);
|
|
||||||
ssh_free(session);
|
|
||||||
}
|
|
||||||
|
|
||||||
exit:
|
|
||||||
ssh_bind_free(sshbind);
|
|
||||||
ssh_finalize();
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
@@ -33,18 +33,21 @@ clients must be made or how a client should react.
|
|||||||
#define BUF_SIZE 65536
|
#define BUF_SIZE 65536
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
static int verbosity;
|
||||||
|
static char *destination;
|
||||||
|
|
||||||
static void do_sftp(ssh_session session) {
|
static void do_sftp(ssh_session session) {
|
||||||
sftp_session sftp = sftp_new(session);
|
sftp_session sftp = sftp_new(session);
|
||||||
sftp_dir dir;
|
sftp_dir dir;
|
||||||
sftp_attributes file;
|
sftp_attributes file;
|
||||||
sftp_statvfs_t sftpstatvfs;
|
sftp_statvfs_t sftpstatvfs;
|
||||||
struct statvfs sysstatvfs;
|
struct statvfs sysstatvfs;
|
||||||
sftp_file source;
|
sftp_file fichier;
|
||||||
sftp_file to;
|
sftp_file to;
|
||||||
int len = 1;
|
int len = 1;
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
char data[BUF_SIZE] = {0};
|
char data[BUF_SIZE] = {0};
|
||||||
char *lnk = NULL;
|
char *lnk;
|
||||||
|
|
||||||
unsigned int count;
|
unsigned int count;
|
||||||
|
|
||||||
@@ -83,7 +86,6 @@ static void do_sftp(ssh_session session) {
|
|||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
printf("readlink /tmp/sftp_symlink_test: %s\n", lnk);
|
printf("readlink /tmp/sftp_symlink_test: %s\n", lnk);
|
||||||
ssh_string_free_char(lnk);
|
|
||||||
|
|
||||||
sftp_unlink(sftp, "/tmp/sftp_symlink_test");
|
sftp_unlink(sftp, "/tmp/sftp_symlink_test");
|
||||||
|
|
||||||
@@ -171,7 +173,7 @@ static void do_sftp(ssh_session session) {
|
|||||||
sftp_attributes_free(file);
|
sftp_attributes_free(file);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* when file = NULL, an error has occurred OR the directory listing is end of
|
/* when file = NULL, an error has occured OR the directory listing is end of
|
||||||
* file */
|
* file */
|
||||||
if (!sftp_dir_eof(dir)) {
|
if (!sftp_dir_eof(dir)) {
|
||||||
fprintf(stderr, "Error: %s\n", ssh_get_error(session));
|
fprintf(stderr, "Error: %s\n", ssh_get_error(session));
|
||||||
@@ -186,8 +188,8 @@ static void do_sftp(ssh_session session) {
|
|||||||
/* the small buffer size was intended to stress the library. of course, you
|
/* the small buffer size was intended to stress the library. of course, you
|
||||||
* can use a buffer till 20kbytes without problem */
|
* can use a buffer till 20kbytes without problem */
|
||||||
|
|
||||||
source = sftp_open(sftp, "/usr/bin/ssh", O_RDONLY, 0);
|
fichier = sftp_open(sftp, "/usr/bin/ssh", O_RDONLY, 0);
|
||||||
if (!source) {
|
if (!fichier) {
|
||||||
fprintf(stderr, "Error opening /usr/bin/ssh: %s\n",
|
fprintf(stderr, "Error opening /usr/bin/ssh: %s\n",
|
||||||
ssh_get_error(session));
|
ssh_get_error(session));
|
||||||
goto end;
|
goto end;
|
||||||
@@ -198,16 +200,16 @@ static void do_sftp(ssh_session session) {
|
|||||||
if (!to) {
|
if (!to) {
|
||||||
fprintf(stderr, "Error opening ssh-copy for writing: %s\n",
|
fprintf(stderr, "Error opening ssh-copy for writing: %s\n",
|
||||||
ssh_get_error(session));
|
ssh_get_error(session));
|
||||||
sftp_close(source);
|
sftp_close(fichier);
|
||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
|
|
||||||
while ((len = sftp_read(source, data, 4096)) > 0) {
|
while ((len = sftp_read(fichier, data, 4096)) > 0) {
|
||||||
if (sftp_write(to, data, len) != len) {
|
if (sftp_write(to, data, len) != len) {
|
||||||
fprintf(stderr, "Error writing %d bytes: %s\n",
|
fprintf(stderr, "Error writing %d bytes: %s\n",
|
||||||
len, ssh_get_error(session));
|
len, ssh_get_error(session));
|
||||||
sftp_close(to);
|
sftp_close(to);
|
||||||
sftp_close(source);
|
sftp_close(fichier);
|
||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -217,10 +219,10 @@ static void do_sftp(ssh_session session) {
|
|||||||
fprintf(stderr, "Error reading file: %s\n", ssh_get_error(session));
|
fprintf(stderr, "Error reading file: %s\n", ssh_get_error(session));
|
||||||
}
|
}
|
||||||
|
|
||||||
sftp_close(source);
|
sftp_close(fichier);
|
||||||
sftp_close(to);
|
sftp_close(to);
|
||||||
printf("file closed\n");
|
printf("fichiers ferm\n");
|
||||||
to = sftp_open(sftp, "/tmp/large_file", O_WRONLY|O_CREAT, 0644);
|
to = sftp_open(sftp, "/tmp/grosfichier", O_WRONLY|O_CREAT, 0644);
|
||||||
|
|
||||||
for (i = 0; i < 1000; ++i) {
|
for (i = 0; i < 1000; ++i) {
|
||||||
len = sftp_write(to, data, sizeof(data));
|
len = sftp_write(to, data, sizeof(data));
|
||||||
@@ -241,63 +243,50 @@ static void usage(const char *argv0) {
|
|||||||
fprintf(stderr, "Usage : %s [-v] remotehost\n"
|
fprintf(stderr, "Usage : %s [-v] remotehost\n"
|
||||||
"sample sftp test client - libssh-%s\n"
|
"sample sftp test client - libssh-%s\n"
|
||||||
"Options :\n"
|
"Options :\n"
|
||||||
" -l user : log in as user\n"
|
|
||||||
" -p port : connect to port\n"
|
|
||||||
" -v : increase log verbosity\n",
|
" -v : increase log verbosity\n",
|
||||||
argv0,
|
argv0,
|
||||||
ssh_version(0));
|
ssh_version(0));
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
static int opts(int argc, char **argv) {
|
||||||
{
|
int i;
|
||||||
ssh_session session = NULL;
|
|
||||||
char *destination = NULL;
|
|
||||||
int auth = 0;
|
|
||||||
int state;
|
|
||||||
|
|
||||||
ssh_init();
|
while ((i = getopt(argc, argv, "v")) != -1) {
|
||||||
session = ssh_new();
|
switch(i) {
|
||||||
|
case 'v':
|
||||||
if (ssh_options_getopt(session, &argc, argv)) {
|
verbosity++;
|
||||||
fprintf(stderr,
|
break;
|
||||||
"Error parsing command line: %s\n",
|
default:
|
||||||
ssh_get_error(session));
|
fprintf(stderr, "unknown option %c\n", optopt);
|
||||||
ssh_free(session);
|
|
||||||
ssh_finalize();
|
|
||||||
usage(argv[0]);
|
usage(argv[0]);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
destination = argv[optind];
|
||||||
|
if (destination == NULL) {
|
||||||
|
usage(argv[0]);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(int argc, char **argv) {
|
||||||
|
ssh_session session;
|
||||||
|
|
||||||
|
if (opts(argc, argv) < 0) {
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
if (argc < 1) {
|
|
||||||
usage(argv[0]);
|
session = connect_ssh(destination, NULL, verbosity);
|
||||||
|
if (session == NULL) {
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
destination = argv[1];
|
|
||||||
|
|
||||||
if (ssh_options_set(session, SSH_OPTIONS_HOST, destination) < 0) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
if (ssh_connect(session)) {
|
|
||||||
fprintf(stderr, "Connection failed : %s\n", ssh_get_error(session));
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
state = verify_knownhost(session);
|
|
||||||
if (state != 0) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
auth = authenticate_console(session);
|
|
||||||
if (auth != SSH_AUTH_SUCCESS) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
do_sftp(session);
|
do_sftp(session);
|
||||||
ssh_disconnect(session);
|
ssh_disconnect(session);
|
||||||
ssh_free(session);
|
ssh_free(session);
|
||||||
|
|
||||||
ssh_finalize();
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -172,12 +172,20 @@ static struct argp_option options[] = {
|
|||||||
.doc = "Set the host key.",
|
.doc = "Set the host key.",
|
||||||
.group = 0
|
.group = 0
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.name = "dsakey",
|
||||||
|
.key = 'd',
|
||||||
|
.arg = "FILE",
|
||||||
|
.flags = 0,
|
||||||
|
.doc = "Set the dsa key.",
|
||||||
|
.group = 0
|
||||||
|
},
|
||||||
{
|
{
|
||||||
.name = "rsakey",
|
.name = "rsakey",
|
||||||
.key = 'r',
|
.key = 'r',
|
||||||
.arg = "FILE",
|
.arg = "FILE",
|
||||||
.flags = 0,
|
.flags = 0,
|
||||||
.doc = "Set the rsa key (deprecated alias for 'k').",
|
.doc = "Set the rsa key.",
|
||||||
.group = 0
|
.group = 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -210,10 +218,15 @@ static error_t parse_opt (int key, char *arg, struct argp_state *state) {
|
|||||||
case 'p':
|
case 'p':
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_BINDPORT_STR, arg);
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_BINDPORT_STR, arg);
|
||||||
break;
|
break;
|
||||||
case 'r':
|
case 'd':
|
||||||
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_DSAKEY, arg);
|
||||||
|
break;
|
||||||
case 'k':
|
case 'k':
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, arg);
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, arg);
|
||||||
break;
|
break;
|
||||||
|
case 'r':
|
||||||
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_RSAKEY, arg);
|
||||||
|
break;
|
||||||
case 'v':
|
case 'v':
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_LOG_VERBOSITY_STR, "3");
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_LOG_VERBOSITY_STR, "3");
|
||||||
break;
|
break;
|
||||||
@@ -244,11 +257,10 @@ static error_t parse_opt (int key, char *arg, struct argp_state *state) {
|
|||||||
static struct argp argp = {options, parse_opt, args_doc, doc, NULL, NULL, NULL};
|
static struct argp argp = {options, parse_opt, args_doc, doc, NULL, NULL, NULL};
|
||||||
#endif /* HAVE_ARGP_H */
|
#endif /* HAVE_ARGP_H */
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv){
|
||||||
{
|
ssh_session session;
|
||||||
ssh_session session = NULL;
|
ssh_bind sshbind;
|
||||||
ssh_bind sshbind = NULL;
|
ssh_event mainloop;
|
||||||
ssh_event mainloop = NULL;
|
|
||||||
struct ssh_server_callbacks_struct cb = {
|
struct ssh_server_callbacks_struct cb = {
|
||||||
.userdata = NULL,
|
.userdata = NULL,
|
||||||
.auth_none_function = auth_none,
|
.auth_none_function = auth_none,
|
||||||
@@ -266,7 +278,8 @@ int main(int argc, char **argv)
|
|||||||
sshbind=ssh_bind_new();
|
sshbind=ssh_bind_new();
|
||||||
session=ssh_new();
|
session=ssh_new();
|
||||||
|
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, KEYS_FOLDER "ssh_host_rsa_key");
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_DSAKEY, KEYS_FOLDER "ssh_host_dsa_key");
|
||||||
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_RSAKEY, KEYS_FOLDER "ssh_host_rsa_key");
|
||||||
|
|
||||||
#ifdef HAVE_ARGP_H
|
#ifdef HAVE_ARGP_H
|
||||||
/*
|
/*
|
||||||
@@ -340,3 +353,4 @@ int main(int argc, char **argv)
|
|||||||
ssh_finalize();
|
ssh_finalize();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -112,12 +112,20 @@ static struct argp_option options[] = {
|
|||||||
.doc = "Set the host key.",
|
.doc = "Set the host key.",
|
||||||
.group = 0
|
.group = 0
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.name = "dsakey",
|
||||||
|
.key = 'd',
|
||||||
|
.arg = "FILE",
|
||||||
|
.flags = 0,
|
||||||
|
.doc = "Set the dsa key.",
|
||||||
|
.group = 0
|
||||||
|
},
|
||||||
{
|
{
|
||||||
.name = "rsakey",
|
.name = "rsakey",
|
||||||
.key = 'r',
|
.key = 'r',
|
||||||
.arg = "FILE",
|
.arg = "FILE",
|
||||||
.flags = 0,
|
.flags = 0,
|
||||||
.doc = "Set the rsa key (deprecated alias for 'k').",
|
.doc = "Set the rsa key.",
|
||||||
.group = 0
|
.group = 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -143,10 +151,15 @@ static error_t parse_opt (int key, char *arg, struct argp_state *state) {
|
|||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_BINDPORT_STR, arg);
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_BINDPORT_STR, arg);
|
||||||
port = atoi(arg);
|
port = atoi(arg);
|
||||||
break;
|
break;
|
||||||
case 'r':
|
case 'd':
|
||||||
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_DSAKEY, arg);
|
||||||
|
break;
|
||||||
case 'k':
|
case 'k':
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, arg);
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, arg);
|
||||||
break;
|
break;
|
||||||
|
case 'r':
|
||||||
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_RSAKEY, arg);
|
||||||
|
break;
|
||||||
case 'v':
|
case 'v':
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_LOG_VERBOSITY_STR, "3");
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_LOG_VERBOSITY_STR, "3");
|
||||||
break;
|
break;
|
||||||
@@ -174,8 +187,8 @@ static error_t parse_opt (int key, char *arg, struct argp_state *state) {
|
|||||||
static struct argp argp = {options, parse_opt, args_doc, doc, NULL, NULL, NULL};
|
static struct argp argp = {options, parse_opt, args_doc, doc, NULL, NULL, NULL};
|
||||||
#endif /* HAVE_ARGP_H */
|
#endif /* HAVE_ARGP_H */
|
||||||
|
|
||||||
static const char *name = NULL;
|
static const char *name;
|
||||||
static const char *instruction = NULL;
|
static const char *instruction;
|
||||||
static const char *prompts[2];
|
static const char *prompts[2];
|
||||||
static char echo[] = { 1, 0 };
|
static char echo[] = { 1, 0 };
|
||||||
|
|
||||||
@@ -279,12 +292,11 @@ static int authenticate(ssh_session session) {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv){
|
||||||
{
|
ssh_session session;
|
||||||
ssh_session session = NULL;
|
ssh_bind sshbind;
|
||||||
ssh_bind sshbind = NULL;
|
ssh_message message;
|
||||||
ssh_message message = NULL;
|
ssh_channel chan=0;
|
||||||
ssh_channel chan = NULL;
|
|
||||||
char buf[BUF_SIZE];
|
char buf[BUF_SIZE];
|
||||||
int auth=0;
|
int auth=0;
|
||||||
int shell=0;
|
int shell=0;
|
||||||
@@ -294,7 +306,9 @@ int main(int argc, char **argv)
|
|||||||
sshbind=ssh_bind_new();
|
sshbind=ssh_bind_new();
|
||||||
session=ssh_new();
|
session=ssh_new();
|
||||||
|
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY,
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_DSAKEY,
|
||||||
|
KEYS_FOLDER "ssh_host_dsa_key");
|
||||||
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_RSAKEY,
|
||||||
KEYS_FOLDER "ssh_host_rsa_key");
|
KEYS_FOLDER "ssh_host_rsa_key");
|
||||||
|
|
||||||
#ifdef HAVE_ARGP_H
|
#ifdef HAVE_ARGP_H
|
||||||
@@ -356,7 +370,7 @@ int main(int argc, char **argv)
|
|||||||
} while(!chan);
|
} while(!chan);
|
||||||
|
|
||||||
if(!chan) {
|
if(!chan) {
|
||||||
printf("Error: client did not ask for a channel session (%s)\n",
|
printf("Error: cleint did not ask for a channel session (%s)\n",
|
||||||
ssh_get_error(session));
|
ssh_get_error(session));
|
||||||
ssh_finalize();
|
ssh_finalize();
|
||||||
return 1;
|
return 1;
|
||||||
@@ -412,3 +426,4 @@ int main(int argc, char **argv)
|
|||||||
ssh_finalize();
|
ssh_finalize();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -32,21 +32,19 @@ static const char *createcommand =
|
|||||||
"cd /tmp/libssh_tests && date > a && date > b && mkdir c && date > d";
|
"cd /tmp/libssh_tests && date > a && date > b && mkdir c && date > d";
|
||||||
static char *host = NULL;
|
static char *host = NULL;
|
||||||
|
|
||||||
static void usage(const char *argv0)
|
static void usage(const char *argv0){
|
||||||
{
|
fprintf(stderr,"Usage : %s [options] host\n"
|
||||||
fprintf(stderr,
|
|
||||||
"Usage : %s [options] host\n"
|
|
||||||
"sample tiny scp downloader client - libssh-%s\n"
|
"sample tiny scp downloader client - libssh-%s\n"
|
||||||
"This program will create files in /tmp and try to fetch them\n",
|
"This program will create files in /tmp and try to fetch them\n",
|
||||||
|
// "Options :\n",
|
||||||
|
// " -r : use RSA to verify host public key\n",
|
||||||
argv0,
|
argv0,
|
||||||
ssh_version(0));
|
ssh_version(0));
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int opts(int argc, char **argv)
|
static int opts(int argc, char **argv){
|
||||||
{
|
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
while((i=getopt(argc,argv,"v"))!=-1){
|
while((i=getopt(argc,argv,"v"))!=-1){
|
||||||
switch(i){
|
switch(i){
|
||||||
case 'v':
|
case 'v':
|
||||||
@@ -64,8 +62,7 @@ static int opts(int argc, char **argv)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void create_files(ssh_session session)
|
static void create_files(ssh_session session){
|
||||||
{
|
|
||||||
ssh_channel channel=ssh_channel_new(session);
|
ssh_channel channel=ssh_channel_new(session);
|
||||||
char buffer[1];
|
char buffer[1];
|
||||||
int rc;
|
int rc;
|
||||||
@@ -80,9 +77,7 @@ static void create_files(ssh_session session)
|
|||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
if(ssh_channel_request_exec(channel,createcommand) != SSH_OK){
|
if(ssh_channel_request_exec(channel,createcommand) != SSH_OK){
|
||||||
fprintf(stderr,
|
fprintf(stderr,"Error executing command: %s\n",ssh_get_error(session));
|
||||||
"Error executing command: %s\n",
|
|
||||||
ssh_get_error(session));
|
|
||||||
ssh_channel_close(channel);
|
ssh_channel_close(channel);
|
||||||
ssh_channel_free(channel);
|
ssh_channel_free(channel);
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
@@ -108,16 +103,14 @@ static void create_files(ssh_session session)
|
|||||||
ssh_channel_free(channel);
|
ssh_channel_free(channel);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fetch_files(ssh_session session)
|
|
||||||
{
|
static int fetch_files(ssh_session session){
|
||||||
int size;
|
int size;
|
||||||
char buffer[BUF_SIZE];
|
char buffer[BUF_SIZE];
|
||||||
int mode;
|
int mode;
|
||||||
char *filename = NULL;
|
char *filename;
|
||||||
int r;
|
int r;
|
||||||
ssh_scp scp = ssh_scp_new(session,
|
ssh_scp scp=ssh_scp_new(session, SSH_SCP_READ | SSH_SCP_RECURSIVE, "/tmp/libssh_tests/*");
|
||||||
SSH_SCP_READ | SSH_SCP_RECURSIVE,
|
|
||||||
"/tmp/libssh_tests/*");
|
|
||||||
if(ssh_scp_init(scp) != SSH_OK){
|
if(ssh_scp_init(scp) != SSH_OK){
|
||||||
fprintf(stderr,"error initializing scp: %s\n",ssh_get_error(session));
|
fprintf(stderr,"error initializing scp: %s\n",ssh_get_error(session));
|
||||||
ssh_scp_free(scp);
|
ssh_scp_free(scp);
|
||||||
@@ -125,23 +118,19 @@ static int fetch_files(ssh_session session)
|
|||||||
}
|
}
|
||||||
printf("Trying to download 3 files (a,b,d) and 1 directory (c)\n");
|
printf("Trying to download 3 files (a,b,d) and 1 directory (c)\n");
|
||||||
do {
|
do {
|
||||||
|
|
||||||
r=ssh_scp_pull_request(scp);
|
r=ssh_scp_pull_request(scp);
|
||||||
switch(r){
|
switch(r){
|
||||||
case SSH_SCP_REQUEST_NEWFILE:
|
case SSH_SCP_REQUEST_NEWFILE:
|
||||||
size=ssh_scp_request_get_size(scp);
|
size=ssh_scp_request_get_size(scp);
|
||||||
filename=strdup(ssh_scp_request_get_filename(scp));
|
filename=strdup(ssh_scp_request_get_filename(scp));
|
||||||
mode=ssh_scp_request_get_permissions(scp);
|
mode=ssh_scp_request_get_permissions(scp);
|
||||||
printf("downloading file %s, size %d, perms 0%o\n",
|
printf("downloading file %s, size %d, perms 0%o\n",filename,size,mode);
|
||||||
filename,
|
|
||||||
size,
|
|
||||||
mode);
|
|
||||||
free(filename);
|
free(filename);
|
||||||
ssh_scp_accept_request(scp);
|
ssh_scp_accept_request(scp);
|
||||||
r=ssh_scp_read(scp,buffer,sizeof(buffer));
|
r=ssh_scp_read(scp,buffer,sizeof(buffer));
|
||||||
if(r==SSH_ERROR){
|
if(r==SSH_ERROR){
|
||||||
fprintf(stderr,
|
fprintf(stderr,"Error reading scp: %s\n",ssh_get_error(session));
|
||||||
"Error reading scp: %s\n",
|
|
||||||
ssh_get_error(session));
|
|
||||||
ssh_scp_close(scp);
|
ssh_scp_close(scp);
|
||||||
ssh_scp_free(scp);
|
ssh_scp_free(scp);
|
||||||
return -1;
|
return -1;
|
||||||
@@ -177,12 +166,11 @@ end:
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv){
|
||||||
{
|
ssh_session session;
|
||||||
ssh_session session = NULL;
|
|
||||||
if(opts(argc,argv)<0)
|
if(opts(argc,argv)<0)
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
session = connect_ssh(host, NULL, NULL, verbosity);
|
session=connect_ssh(host,NULL,verbosity);
|
||||||
if(session == NULL)
|
if(session == NULL)
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
create_files(session);
|
create_files(session);
|
||||||
|
|||||||
@@ -5,15 +5,14 @@
|
|||||||
|
|
||||||
#define LIMIT 0x100000000UL
|
#define LIMIT 0x100000000UL
|
||||||
|
|
||||||
int main(void)
|
int main(void) {
|
||||||
{
|
ssh_session session;
|
||||||
ssh_session session = NULL;
|
ssh_channel channel;
|
||||||
ssh_channel channel = NULL;
|
char buffer[1024*1024];
|
||||||
char buffer[1024 * 1024] = {0};
|
|
||||||
int rc;
|
int rc;
|
||||||
uint64_t total=0;
|
uint64_t total=0;
|
||||||
uint64_t lastshown=4096;
|
uint64_t lastshown=4096;
|
||||||
session = connect_ssh("localhost", NULL, NULL, 0);
|
session = connect_ssh("localhost", NULL, 0);
|
||||||
if (session == NULL) {
|
if (session == NULL) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@@ -38,6 +37,7 @@ int main(void)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
while ((rc = ssh_channel_write(channel, buffer, sizeof(buffer))) > 0) {
|
while ((rc = ssh_channel_write(channel, buffer, sizeof(buffer))) > 0) {
|
||||||
total += rc;
|
total += rc;
|
||||||
if(total/2 >= lastshown){
|
if(total/2 >= lastshown){
|
||||||
|
|||||||
@@ -70,7 +70,6 @@
|
|||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <inttypes.h>
|
|
||||||
#include <poll.h>
|
#include <poll.h>
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
@@ -120,8 +119,7 @@ pthread_mutex_t mutex;
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/* Linked nodes to manage channel/fd tuples */
|
/* Linked nodes to manage channel/fd tuples */
|
||||||
static int insert_item(ssh_channel channel, int fd_in, int fd_out,
|
static void insert_item(ssh_channel channel, int fd_in, int fd_out, int protected);
|
||||||
int protected);
|
|
||||||
static void delete_item(ssh_channel channel);
|
static void delete_item(ssh_channel channel);
|
||||||
static node_t * search_item(ssh_channel channel);
|
static node_t * search_item(ssh_channel channel);
|
||||||
|
|
||||||
@@ -137,18 +135,13 @@ static int x11_connect_display(void);
|
|||||||
static int copy_fd_to_channel_callback(int fd, int revents, void *userdata);
|
static int copy_fd_to_channel_callback(int fd, int revents, void *userdata);
|
||||||
|
|
||||||
/* Read data from channel */
|
/* Read data from channel */
|
||||||
static int copy_channel_to_fd_callback(ssh_session session, ssh_channel channel,
|
static int copy_channel_to_fd_callback(ssh_session session, ssh_channel channel, void *data, uint32_t len, int is_stderr, void *userdata);
|
||||||
void *data, uint32_t len, int is_stderr,
|
|
||||||
void *userdata);
|
|
||||||
|
|
||||||
/* EOF&Close channel */
|
/* EOF&Close channel */
|
||||||
static void channel_close_callback(ssh_session session, ssh_channel channel,
|
static void channel_close_callback(ssh_session session, ssh_channel channel, void *userdata);
|
||||||
void *userdata);
|
|
||||||
|
|
||||||
/* X11 Request */
|
/* X11 Request */
|
||||||
static ssh_channel x11_open_request_callback(ssh_session session,
|
static ssh_channel x11_open_request_callback(ssh_session session, const char *shost, int sport, void *userdata);
|
||||||
const char *shost, int sport,
|
|
||||||
void *userdata);
|
|
||||||
|
|
||||||
/* Main loop */
|
/* Main loop */
|
||||||
static int main_loop(ssh_channel channel);
|
static int main_loop(ssh_channel channel);
|
||||||
@@ -200,8 +193,8 @@ struct termios _saved_tio;
|
|||||||
* Internal functions
|
* Internal functions
|
||||||
*/
|
*/
|
||||||
|
|
||||||
int64_t _current_timestamp(void)
|
int64_t
|
||||||
{
|
_current_timestamp(void) {
|
||||||
struct timeval tv;
|
struct timeval tv;
|
||||||
int64_t milliseconds;
|
int64_t milliseconds;
|
||||||
|
|
||||||
@@ -211,8 +204,8 @@ int64_t _current_timestamp(void)
|
|||||||
return milliseconds;
|
return milliseconds;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void _logging_callback(int priority, const char *function,
|
static void
|
||||||
const char *buffer, void *userdata)
|
_logging_callback(int priority, const char *function, const char *buffer, void *userdata)
|
||||||
{
|
{
|
||||||
FILE *fp = NULL;
|
FILE *fp = NULL;
|
||||||
char buf[100];
|
char buf[100];
|
||||||
@@ -225,19 +218,20 @@ static void _logging_callback(int priority, const char *function,
|
|||||||
strftime(buf, 100, "%Y-%m-%d %H:%M:%S", localtime (&now));
|
strftime(buf, 100, "%Y-%m-%d %H:%M:%S", localtime (&now));
|
||||||
|
|
||||||
fp = fopen("debug.log","a");
|
fp = fopen("debug.log","a");
|
||||||
if (fp == NULL) {
|
if(fp == NULL)
|
||||||
|
{
|
||||||
printf("Error!");
|
printf("Error!");
|
||||||
exit(-11);
|
exit(-11);
|
||||||
}
|
}
|
||||||
|
|
||||||
milliseconds = _current_timestamp();
|
milliseconds = _current_timestamp();
|
||||||
|
|
||||||
fprintf(fp, "[%s.%" PRId64 ", %d] %s: %s\n", buf, milliseconds, priority,
|
fprintf(fp, "[%s.%jd, %d] %s: %s\n", buf, milliseconds, priority, function, buffer);
|
||||||
function, buffer);
|
|
||||||
fclose(fp);
|
fclose(fp);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int _enter_term_raw_mode(void)
|
static int
|
||||||
|
_enter_term_raw_mode(void)
|
||||||
{
|
{
|
||||||
struct termios tio;
|
struct termios tio;
|
||||||
int ret = tcgetattr(fileno(stdin), &tio);
|
int ret = tcgetattr(fileno(stdin), &tio);
|
||||||
@@ -257,11 +251,11 @@ static int _enter_term_raw_mode(void)
|
|||||||
tio.c_cc[VTIME] = 0;
|
tio.c_cc[VTIME] = 0;
|
||||||
ret = tcsetattr(fileno(stdin), TCSADRAIN, &tio);
|
ret = tcsetattr(fileno(stdin), TCSADRAIN, &tio);
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int _leave_term_raw_mode(void)
|
static int
|
||||||
|
_leave_term_raw_mode(void)
|
||||||
{
|
{
|
||||||
int ret = tcsetattr(fileno(stdin), TCSADRAIN, &_saved_tio);
|
int ret = tcsetattr(fileno(stdin), TCSADRAIN, &_saved_tio);
|
||||||
return ret;
|
return ret;
|
||||||
@@ -272,8 +266,8 @@ static int _leave_term_raw_mode(void)
|
|||||||
* Functions
|
* Functions
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static int insert_item(ssh_channel channel, int fd_in, int fd_out,
|
static void
|
||||||
int protected)
|
insert_item(ssh_channel channel, int fd_in, int fd_out, int protected)
|
||||||
{
|
{
|
||||||
node_t *node_iterator = NULL, *new = NULL;
|
node_t *node_iterator = NULL, *new = NULL;
|
||||||
|
|
||||||
@@ -282,10 +276,6 @@ static int insert_item(ssh_channel channel, int fd_in, int fd_out,
|
|||||||
if (node == NULL) {
|
if (node == NULL) {
|
||||||
/* Calloc ensure that node is full of 0 */
|
/* Calloc ensure that node is full of 0 */
|
||||||
node = (node_t *) calloc(1, sizeof(node_t));
|
node = (node_t *) calloc(1, sizeof(node_t));
|
||||||
if (node == NULL) {
|
|
||||||
pthread_mutex_unlock(&mutex);
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
node->channel = channel;
|
node->channel = channel;
|
||||||
node->fd_in = fd_in;
|
node->fd_in = fd_in;
|
||||||
node->fd_out = fd_out;
|
node->fd_out = fd_out;
|
||||||
@@ -293,15 +283,10 @@ static int insert_item(ssh_channel channel, int fd_in, int fd_out,
|
|||||||
node->next = NULL;
|
node->next = NULL;
|
||||||
} else {
|
} else {
|
||||||
node_iterator = node;
|
node_iterator = node;
|
||||||
while (node_iterator->next != NULL) {
|
while (node_iterator->next != NULL)
|
||||||
node_iterator = node_iterator->next;
|
node_iterator = node_iterator->next;
|
||||||
}
|
|
||||||
/* Create the new node */
|
/* Create the new node */
|
||||||
new = (node_t *) malloc(sizeof(node_t));
|
new = (node_t *) malloc(sizeof(node_t));
|
||||||
if (new == NULL) {
|
|
||||||
pthread_mutex_unlock(&mutex);
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
new->channel = channel;
|
new->channel = channel;
|
||||||
new->fd_in = fd_in;
|
new->fd_in = fd_in;
|
||||||
new->fd_out = fd_out;
|
new->fd_out = fd_out;
|
||||||
@@ -312,26 +297,24 @@ static int insert_item(ssh_channel channel, int fd_in, int fd_out,
|
|||||||
}
|
}
|
||||||
|
|
||||||
pthread_mutex_unlock(&mutex);
|
pthread_mutex_unlock(&mutex);
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void delete_item(ssh_channel channel)
|
static void
|
||||||
|
delete_item(ssh_channel channel)
|
||||||
{
|
{
|
||||||
node_t *current = NULL, *previous = NULL;
|
node_t *current = NULL, *previous = NULL;
|
||||||
|
|
||||||
pthread_mutex_lock(&mutex);
|
pthread_mutex_lock(&mutex);
|
||||||
|
|
||||||
for (current = node; current; previous = current, current = current->next) {
|
for (current = node; current; previous = current, current = current->next) {
|
||||||
if (current->channel != channel) {
|
if (current->channel != channel)
|
||||||
continue;
|
continue;
|
||||||
}
|
|
||||||
|
|
||||||
if (previous == NULL) {
|
if (previous == NULL)
|
||||||
node = current->next;
|
node = current->next;
|
||||||
} else {
|
else
|
||||||
previous->next = current->next;
|
previous->next = current->next;
|
||||||
}
|
|
||||||
|
|
||||||
free(current);
|
free(current);
|
||||||
pthread_mutex_unlock(&mutex);
|
pthread_mutex_unlock(&mutex);
|
||||||
@@ -342,13 +325,13 @@ static void delete_item(ssh_channel channel)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static node_t *search_item(ssh_channel channel)
|
static node_t *
|
||||||
|
search_item(ssh_channel channel)
|
||||||
{
|
{
|
||||||
node_t *current = NULL;
|
node_t *current = node;
|
||||||
|
|
||||||
pthread_mutex_lock(&mutex);
|
pthread_mutex_lock(&mutex);
|
||||||
|
|
||||||
current = node;
|
|
||||||
while (current != NULL) {
|
while (current != NULL) {
|
||||||
if (current->channel == channel) {
|
if (current->channel == channel) {
|
||||||
pthread_mutex_unlock(&mutex);
|
pthread_mutex_unlock(&mutex);
|
||||||
@@ -365,17 +348,15 @@ static node_t *search_item(ssh_channel channel)
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
static void set_nodelay(int fd)
|
static void
|
||||||
|
set_nodelay(int fd)
|
||||||
{
|
{
|
||||||
int opt, rc;
|
int opt;
|
||||||
socklen_t optlen;
|
socklen_t optlen;
|
||||||
|
|
||||||
optlen = sizeof(opt);
|
optlen = sizeof(opt);
|
||||||
|
if (getsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, &optlen) == -1) {
|
||||||
rc = getsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, &optlen);
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "getsockopt TCP_NODELAY: %.100s", strerror(errno));
|
||||||
if (rc == -1) {
|
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "getsockopt TCP_NODELAY: %.100s",
|
|
||||||
strerror(errno));
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (opt == 1) {
|
if (opt == 1) {
|
||||||
@@ -384,26 +365,23 @@ static void set_nodelay(int fd)
|
|||||||
}
|
}
|
||||||
opt = 1;
|
opt = 1;
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "fd %d setting TCP_NODELAY", fd);
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "fd %d setting TCP_NODELAY", fd);
|
||||||
|
if (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, sizeof(opt)) == -1)
|
||||||
rc = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, sizeof(opt));
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "setsockopt TCP_NODELAY: %.100s", strerror(errno));
|
||||||
if (rc == -1) {
|
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "setsockopt TCP_NODELAY: %.100s",
|
|
||||||
strerror(errno));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
const char *ssh_gai_strerror(int gaierr)
|
const char *
|
||||||
|
ssh_gai_strerror(int gaierr)
|
||||||
{
|
{
|
||||||
if (gaierr == EAI_SYSTEM && errno != 0) {
|
if (gaierr == EAI_SYSTEM && errno != 0)
|
||||||
return strerror(errno);
|
return strerror(errno);
|
||||||
}
|
|
||||||
return gai_strerror(gaierr);
|
return gai_strerror(gaierr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
static int x11_get_proto(const char *display, char **_proto, char **_cookie)
|
static int
|
||||||
|
x11_get_proto(const char *display, char **_proto, char **_cookie)
|
||||||
{
|
{
|
||||||
char cmd[1024], line[512], xdisplay[512];
|
char cmd[1024], line[512], xdisplay[512];
|
||||||
static char proto[512], cookie[512];
|
static char proto[512], cookie[512];
|
||||||
@@ -416,10 +394,8 @@ static int x11_get_proto(const char *display, char **_proto, char **_cookie)
|
|||||||
proto[0] = cookie[0] = '\0';
|
proto[0] = cookie[0] = '\0';
|
||||||
|
|
||||||
if (strncmp(display, "localhost:", 10) == 0) {
|
if (strncmp(display, "localhost:", 10) == 0) {
|
||||||
ret = snprintf(xdisplay, sizeof(xdisplay), "unix:%s", display + 10);
|
if ((ret = snprintf(xdisplay, sizeof(xdisplay), "unix:%s", display + 10)) < 0 || (size_t)ret >= sizeof(xdisplay)) {
|
||||||
if (ret < 0 || (size_t)ret >= sizeof(xdisplay)) {
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "display name too long. display: %s", display);
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__,
|
|
||||||
"display name too long. display: %s", display);
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
display = xdisplay;
|
display = xdisplay;
|
||||||
@@ -429,32 +405,28 @@ static int x11_get_proto(const char *display, char **_proto, char **_cookie)
|
|||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "xauth cmd: %s", cmd);
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "xauth cmd: %s", cmd);
|
||||||
|
|
||||||
f = popen(cmd, "r");
|
f = popen(cmd, "r");
|
||||||
if (f && fgets(line, sizeof(line), f) &&
|
if (f && fgets(line, sizeof(line), f) && sscanf(line, "%*s %511s %511s", proto, cookie) == 2) {
|
||||||
sscanf(line, "%*s %511s %511s", proto, cookie) == 2) {
|
|
||||||
ret = 0;
|
ret = 0;
|
||||||
} else {
|
} else {
|
||||||
ret = 1;
|
ret = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (f) {
|
if (f) pclose(f);
|
||||||
pclose(f);
|
|
||||||
}
|
|
||||||
|
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "proto: %s - cookie: %s - ret: %d",
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "proto: %s - cookie: %s - ret: %d", proto, cookie, ret);
|
||||||
proto, cookie, ret);
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int connect_local_xsocket_path(const char *pathname)
|
static int
|
||||||
|
connect_local_xsocket_path(const char *pathname)
|
||||||
{
|
{
|
||||||
int sock, rc;
|
int sock;
|
||||||
struct sockaddr_un addr;
|
struct sockaddr_un addr;
|
||||||
|
|
||||||
sock = socket(AF_UNIX, SOCK_STREAM, 0);
|
sock = socket(AF_UNIX, SOCK_STREAM, 0);
|
||||||
if (sock == -1) {
|
if (sock == -1) {
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "socket: %.100s",
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "socket: %.100s", strerror(errno));
|
||||||
strerror(errno));
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -463,20 +435,16 @@ static int connect_local_xsocket_path(const char *pathname)
|
|||||||
addr.sun_path[0] = '\0';
|
addr.sun_path[0] = '\0';
|
||||||
/* pathname is guaranteed to be initialized and larger than addr.sun_path[108] */
|
/* pathname is guaranteed to be initialized and larger than addr.sun_path[108] */
|
||||||
memcpy(addr.sun_path + 1, pathname, sizeof(addr.sun_path) - 1);
|
memcpy(addr.sun_path + 1, pathname, sizeof(addr.sun_path) - 1);
|
||||||
rc = connect(sock, (struct sockaddr *)&addr,
|
if (connect(sock, (struct sockaddr *)&addr, offsetof(struct sockaddr_un, sun_path) + 1 + strlen(pathname)) == 0)
|
||||||
offsetof(struct sockaddr_un, sun_path) + 1 + strlen(pathname));
|
|
||||||
if (rc == 0) {
|
|
||||||
return sock;
|
return sock;
|
||||||
}
|
|
||||||
close(sock);
|
close(sock);
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "connect %.100s: %.100s",
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "connect %.100s: %.100s", addr.sun_path, strerror(errno));
|
||||||
addr.sun_path, strerror(errno));
|
|
||||||
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static int connect_local_xsocket(int display_number)
|
static int
|
||||||
|
connect_local_xsocket(int display_number)
|
||||||
{
|
{
|
||||||
char buf[1024] = {0};
|
char buf[1024] = {0};
|
||||||
snprintf(buf, sizeof(buf), _PATH_UNIX_X, display_number);
|
snprintf(buf, sizeof(buf), _PATH_UNIX_X, display_number);
|
||||||
@@ -484,7 +452,8 @@ static int connect_local_xsocket(int display_number)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static int x11_connect_display(void)
|
static int
|
||||||
|
x11_connect_display()
|
||||||
{
|
{
|
||||||
int display_number;
|
int display_number;
|
||||||
const char *display = NULL;
|
const char *display = NULL;
|
||||||
@@ -498,7 +467,7 @@ static int x11_connect_display(void)
|
|||||||
|
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "display: %s", display);
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "display: %s", display);
|
||||||
|
|
||||||
if (display == 0) {
|
if (!display) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -506,23 +475,19 @@ static int x11_connect_display(void)
|
|||||||
if (strncmp(display, "unix:", 5) == 0 || display[0] == ':') {
|
if (strncmp(display, "unix:", 5) == 0 || display[0] == ':') {
|
||||||
/* Connect to the unix domain socket. */
|
/* Connect to the unix domain socket. */
|
||||||
if (sscanf(strrchr(display, ':') + 1, "%d", &display_number) != 1) {
|
if (sscanf(strrchr(display, ':') + 1, "%d", &display_number) != 1) {
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__,
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "Could not parse display number from DISPLAY: %.100s", display);
|
||||||
"Could not parse display number from DISPLAY: %.100s",
|
|
||||||
display);
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "display_number: %d",
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "display_number: %d", display_number);
|
||||||
display_number);
|
|
||||||
|
|
||||||
/* Create a socket. */
|
/* Create a socket. */
|
||||||
sock = connect_local_xsocket(display_number);
|
sock = connect_local_xsocket(display_number);
|
||||||
|
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "socket: %d", sock);
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "socket: %d", sock);
|
||||||
|
|
||||||
if (sock < 0) {
|
if (sock < 0)
|
||||||
return -1;
|
return -1;
|
||||||
}
|
|
||||||
|
|
||||||
/* OK, we now have a connection to the display. */
|
/* OK, we now have a connection to the display. */
|
||||||
return sock;
|
return sock;
|
||||||
@@ -531,16 +496,13 @@ static int x11_connect_display(void)
|
|||||||
/* Connect to an inet socket. */
|
/* Connect to an inet socket. */
|
||||||
strncpy(buf, display, sizeof(buf) - 1);
|
strncpy(buf, display, sizeof(buf) - 1);
|
||||||
cp = strchr(buf, ':');
|
cp = strchr(buf, ':');
|
||||||
if (cp == 0) {
|
if (!cp) {
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__,
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "Could not find ':' in DISPLAY: %.100s", display);
|
||||||
"Could not find ':' in DISPLAY: %.100s", display);
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
*cp = 0;
|
*cp = 0;
|
||||||
if (sscanf(cp + 1, "%d", &display_number) != 1) {
|
if (sscanf(cp + 1, "%d", &display_number) != 1) {
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__,
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "Could not parse display number from DISPLAY: %.100s", display);
|
||||||
"Could not parse display number from DISPLAY: %.100s",
|
|
||||||
display);
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -549,25 +511,20 @@ static int x11_connect_display(void)
|
|||||||
hints.ai_family = AF_INET;
|
hints.ai_family = AF_INET;
|
||||||
hints.ai_socktype = SOCK_STREAM;
|
hints.ai_socktype = SOCK_STREAM;
|
||||||
snprintf(strport, sizeof(strport), "%u", 6000 + display_number);
|
snprintf(strport, sizeof(strport), "%u", 6000 + display_number);
|
||||||
gaierr = getaddrinfo(buf, strport, &hints, &aitop);
|
if ((gaierr = getaddrinfo(buf, strport, &hints, &aitop)) != 0) {
|
||||||
if (gaierr != 0) {
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "%.100s: unknown host. (%s)", buf, ssh_gai_strerror(gaierr));
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "%.100s: unknown host. (%s)",
|
|
||||||
buf, ssh_gai_strerror(gaierr));
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
for (ai = aitop; ai; ai = ai->ai_next) {
|
for (ai = aitop; ai; ai = ai->ai_next) {
|
||||||
/* Create a socket. */
|
/* Create a socket. */
|
||||||
sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
|
sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
|
||||||
if (sock == -1) {
|
if (sock == -1) {
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "socket: %.100s",
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "socket: %.100s", strerror(errno));
|
||||||
strerror(errno));
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
/* Connect it to the display. */
|
/* Connect it to the display. */
|
||||||
if (connect(sock, ai->ai_addr, ai->ai_addrlen) == -1) {
|
if (connect(sock, ai->ai_addr, ai->ai_addrlen) == -1) {
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__,
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "connect %.100s port %u: %.100s", buf, 6000 + display_number, strerror(errno));
|
||||||
"connect %.100s port %u: %.100s", buf,
|
|
||||||
6000 + display_number, strerror(errno));
|
|
||||||
close(sock);
|
close(sock);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@@ -575,19 +532,18 @@ static int x11_connect_display(void)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
freeaddrinfo(aitop);
|
freeaddrinfo(aitop);
|
||||||
if (ai == 0) {
|
if (!ai) {
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "connect %.100s port %u: %.100s",
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "connect %.100s port %u: %.100s", buf, 6000 + display_number, strerror(errno));
|
||||||
buf, 6000 + display_number, strerror(errno));
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
set_nodelay(sock);
|
set_nodelay(sock);
|
||||||
|
|
||||||
return sock;
|
return sock;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
static int copy_fd_to_channel_callback(int fd, int revents, void *userdata)
|
static int
|
||||||
|
copy_fd_to_channel_callback(int fd, int revents, void *userdata)
|
||||||
{
|
{
|
||||||
ssh_channel channel = (ssh_channel)userdata;
|
ssh_channel channel = (ssh_channel)userdata;
|
||||||
char buf[2097152];
|
char buf[2097152];
|
||||||
@@ -597,7 +553,7 @@ static int copy_fd_to_channel_callback(int fd, int revents, void *userdata)
|
|||||||
|
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "event: %d - fd: %d", revents, fd);
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "event: %d - fd: %d", revents, fd);
|
||||||
|
|
||||||
if (channel == NULL) {
|
if (!channel) {
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "channel does not exist.");
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "channel does not exist.");
|
||||||
if (temp_node->protected == 0) {
|
if (temp_node->protected == 0) {
|
||||||
close(fd);
|
close(fd);
|
||||||
@@ -622,8 +578,7 @@ static int copy_fd_to_channel_callback(int fd, int revents, void *userdata)
|
|||||||
return -1;
|
return -1;
|
||||||
} else {
|
} else {
|
||||||
/* sz = 0. Why the hell I'm here? */
|
/* sz = 0. Why the hell I'm here? */
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__,
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "Why the hell am I here?: sz: %d", sz);
|
||||||
"Why the hell am I here?: sz: %d", sz);
|
|
||||||
if (temp_node->protected == 0) {
|
if (temp_node->protected == 0) {
|
||||||
close(fd);
|
close(fd);
|
||||||
}
|
}
|
||||||
@@ -640,9 +595,8 @@ static int copy_fd_to_channel_callback(int fd, int revents, void *userdata)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static int copy_channel_to_fd_callback(ssh_session session, ssh_channel channel,
|
static int
|
||||||
void *data, uint32_t len, int is_stderr,
|
copy_channel_to_fd_callback(ssh_session session, ssh_channel channel, void *data, uint32_t len, int is_stderr, void *userdata)
|
||||||
void *userdata)
|
|
||||||
{
|
{
|
||||||
node_t *temp_node = NULL;
|
node_t *temp_node = NULL;
|
||||||
int fd, sz;
|
int fd, sz;
|
||||||
@@ -655,8 +609,7 @@ static int copy_channel_to_fd_callback(ssh_session session, ssh_channel channel,
|
|||||||
|
|
||||||
fd = temp_node->fd_out;
|
fd = temp_node->fd_out;
|
||||||
|
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "len: %d - fd: %d - is_stderr: %d",
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "len: %d - fd: %d - is_stderr: %d", len, fd, is_stderr);
|
||||||
len, fd, is_stderr);
|
|
||||||
|
|
||||||
sz = write(fd, data, len);
|
sz = write(fd, data, len);
|
||||||
|
|
||||||
@@ -664,8 +617,8 @@ static int copy_channel_to_fd_callback(ssh_session session, ssh_channel channel,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void channel_close_callback(ssh_session session, ssh_channel channel,
|
static void
|
||||||
void *userdata)
|
channel_close_callback(ssh_session session, ssh_channel channel, void *userdata)
|
||||||
{
|
{
|
||||||
node_t *temp_node = NULL;
|
node_t *temp_node = NULL;
|
||||||
|
|
||||||
@@ -689,12 +642,11 @@ static void channel_close_callback(ssh_session session, ssh_channel channel,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static ssh_channel x11_open_request_callback(ssh_session session,
|
static ssh_channel
|
||||||
const char *shost, int sport,
|
x11_open_request_callback(ssh_session session, const char *shost, int sport, void *userdata)
|
||||||
void *userdata)
|
|
||||||
{
|
{
|
||||||
ssh_channel channel = NULL;
|
ssh_channel channel = NULL;
|
||||||
int sock, rv;
|
int sock;
|
||||||
|
|
||||||
(void)shost;
|
(void)shost;
|
||||||
(void)sport;
|
(void)sport;
|
||||||
@@ -706,11 +658,7 @@ static ssh_channel x11_open_request_callback(ssh_session session,
|
|||||||
|
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "sock: %d", sock);
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "sock: %d", sock);
|
||||||
|
|
||||||
rv = insert_item(channel, sock, sock, 0);
|
insert_item(channel, sock, sock, 0);
|
||||||
if (rv != 0) {
|
|
||||||
ssh_channel_free(channel);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
ssh_event_add_fd(event, sock, events, copy_fd_to_channel_callback, channel);
|
ssh_event_add_fd(event, sock, events, copy_fd_to_channel_callback, channel);
|
||||||
ssh_event_add_session(event, session);
|
ssh_event_add_session(event, session);
|
||||||
@@ -726,15 +674,12 @@ static ssh_channel x11_open_request_callback(ssh_session session,
|
|||||||
* MAIN LOOP
|
* MAIN LOOP
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static int main_loop(ssh_channel channel)
|
static int
|
||||||
|
main_loop(ssh_channel channel)
|
||||||
{
|
{
|
||||||
ssh_session session = ssh_channel_get_session(channel);
|
ssh_session session = ssh_channel_get_session(channel);
|
||||||
int rv;
|
|
||||||
|
|
||||||
rv = insert_item(channel, fileno(stdin), fileno(stdout), 1);
|
insert_item(channel, fileno(stdin), fileno(stdout), 1);
|
||||||
if (rv != 0) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
ssh_callbacks_init(&channel_cb);
|
ssh_callbacks_init(&channel_cb);
|
||||||
ssh_set_channel_callbacks(channel, &channel_cb);
|
ssh_set_channel_callbacks(channel, &channel_cb);
|
||||||
@@ -745,15 +690,12 @@ static int main_loop(ssh_channel channel)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
rv = ssh_event_add_fd(event, fileno(stdin), events,
|
if (ssh_event_add_fd(event, fileno(stdin), events, copy_fd_to_channel_callback, channel) != SSH_OK) {
|
||||||
copy_fd_to_channel_callback, channel);
|
|
||||||
if (rv != SSH_OK) {
|
|
||||||
printf("Couldn't add an fd to the event\n");
|
printf("Couldn't add an fd to the event\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
rv = ssh_event_add_session(event, session);
|
if(ssh_event_add_session(event, session) != SSH_OK) {
|
||||||
if (rv != SSH_OK) {
|
|
||||||
printf("Couldn't add the session to the event\n");
|
printf("Couldn't add the session to the event\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
@@ -778,17 +720,16 @@ static int main_loop(ssh_channel channel)
|
|||||||
* USAGE
|
* USAGE
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static void usage(void)
|
static void
|
||||||
|
usage(void)
|
||||||
{
|
{
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"Usage : ssh-X11-client [options] [login@]hostname\n"
|
"Usage : ssh-X11-client [options] [login@]hostname\n"
|
||||||
"sample X11 client - libssh-%s\n"
|
"sample X11 client - libssh-%s\n"
|
||||||
"Options :\n"
|
"Options :\n"
|
||||||
" -l user : Specifies the user to log in as on the remote "
|
" -l user : Specifies the user to log in as on the remote machine.\n"
|
||||||
"machine.\n"
|
|
||||||
" -p port : Port to connect to on the remote host.\n"
|
" -p port : Port to connect to on the remote host.\n"
|
||||||
" -v : Verbose mode. Multiple -v options increase the "
|
" -v : Verbose mode. Multiple -v options increase the verbosity. The maximum is 5.\n"
|
||||||
"verbosity. The maximum is 5.\n"
|
|
||||||
" -C : Requests compression of all data.\n"
|
" -C : Requests compression of all data.\n"
|
||||||
" -x : Disables X11 forwarding.\n"
|
" -x : Disables X11 forwarding.\n"
|
||||||
"\n",
|
"\n",
|
||||||
@@ -827,7 +768,8 @@ static int opts(int argc, char **argv)
|
|||||||
* MAIN
|
* MAIN
|
||||||
*/
|
*/
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int
|
||||||
|
main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
char *password = NULL;
|
char *password = NULL;
|
||||||
|
|
||||||
@@ -841,18 +783,13 @@ int main(int argc, char **argv)
|
|||||||
|
|
||||||
ssh_set_log_callback(_logging_callback);
|
ssh_set_log_callback(_logging_callback);
|
||||||
ret = ssh_init();
|
ret = ssh_init();
|
||||||
if (ret != SSH_OK) {
|
if (ret != SSH_OK) return ret;
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
session = ssh_new();
|
session = ssh_new();
|
||||||
if (session == NULL) {
|
if (session == NULL) exit(-1);
|
||||||
exit(-1);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (ssh_options_getopt(session, &argc, argv) || opts(argc, argv)) {
|
if (ssh_options_getopt(session, &argc, argv) || opts(argc, argv)) {
|
||||||
fprintf(stderr, "Error parsing command line: %s\n",
|
fprintf(stderr, "Error parsing command line: %s\n", ssh_get_error(session));
|
||||||
ssh_get_error(session));
|
|
||||||
ssh_free(session);
|
ssh_free(session);
|
||||||
ssh_finalize();
|
ssh_finalize();
|
||||||
usage();
|
usage();
|
||||||
@@ -871,30 +808,21 @@ int main(int argc, char **argv)
|
|||||||
password = getpass("Password: ");
|
password = getpass("Password: ");
|
||||||
ret = ssh_userauth_password(session, NULL, password);
|
ret = ssh_userauth_password(session, NULL, password);
|
||||||
if (ret != SSH_AUTH_SUCCESS) {
|
if (ret != SSH_AUTH_SUCCESS) {
|
||||||
fprintf(stderr, "Error authenticating with password: %s\n",
|
fprintf(stderr, "Error authenticating with password: %s\n", ssh_get_error(session));
|
||||||
ssh_get_error(session));
|
|
||||||
exit(-1);
|
exit(-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
channel = ssh_channel_new(session);
|
channel = ssh_channel_new(session);
|
||||||
if (channel == NULL) {
|
if (channel == NULL) return SSH_ERROR;
|
||||||
return SSH_ERROR;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = ssh_channel_open_session(channel);
|
ret = ssh_channel_open_session(channel);
|
||||||
if (ret != SSH_OK) {
|
if (ret != SSH_OK) return ret;
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = ssh_channel_request_pty(channel);
|
ret = ssh_channel_request_pty(channel);
|
||||||
if (ret != SSH_OK) {
|
if (ret != SSH_OK) return ret;
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = ssh_channel_change_pty_size(channel, 80, 24);
|
ret = ssh_channel_change_pty_size(channel, 80, 24);
|
||||||
if (ret != SSH_OK) {
|
if (ret != SSH_OK) return ret;
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (enableX11 == 1) {
|
if (enableX11 == 1) {
|
||||||
display = getenv("DISPLAY");
|
display = getenv("DISPLAY");
|
||||||
@@ -904,42 +832,29 @@ int main(int argc, char **argv)
|
|||||||
if (display) {
|
if (display) {
|
||||||
ssh_callbacks_init(&cb);
|
ssh_callbacks_init(&cb);
|
||||||
ret = ssh_set_callbacks(session, &cb);
|
ret = ssh_set_callbacks(session, &cb);
|
||||||
if (ret != SSH_OK) {
|
if (ret != SSH_OK) return ret;
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = x11_get_proto(display, &proto, &cookie);
|
if (x11_get_proto(display, &proto, &cookie) != 0) {
|
||||||
if (ret != 0) {
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "Using fake authentication data for X11 forwarding");
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__,
|
|
||||||
"Using fake authentication data for X11 forwarding");
|
|
||||||
proto = NULL;
|
proto = NULL;
|
||||||
cookie = NULL;
|
cookie = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "proto: %s - cookie: %s",
|
_ssh_log(SSH_LOG_FUNCTIONS, __func__, "proto: %s - cookie: %s", proto, cookie);
|
||||||
proto, cookie);
|
|
||||||
/* See https://gitlab.com/libssh/libssh-mirror/-/blob/master/src/channels.c#L2062 for details. */
|
/* See https://gitlab.com/libssh/libssh-mirror/-/blob/master/src/channels.c#L2062 for details. */
|
||||||
ret = ssh_channel_request_x11(channel, 0, proto, cookie, 0);
|
ret = ssh_channel_request_x11(channel, 0, proto, cookie, 0);
|
||||||
if (ret != SSH_OK) {
|
if (ret != SSH_OK) return ret;
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = _enter_term_raw_mode();
|
ret = _enter_term_raw_mode();
|
||||||
if (ret != 0) {
|
if (ret != 0) exit(-1);
|
||||||
exit(-1);
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = ssh_channel_request_shell(channel);
|
ret = ssh_channel_request_shell(channel);
|
||||||
if (ret != SSH_OK) {
|
if (ret != SSH_OK) return ret;
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = main_loop(channel);
|
ret = main_loop(channel);
|
||||||
if (ret != SSH_OK) {
|
if (ret != SSH_OK) return ret;
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
_leave_term_raw_mode();
|
_leave_term_raw_mode();
|
||||||
|
|
||||||
|
|||||||
@@ -39,6 +39,8 @@
|
|||||||
|
|
||||||
#include <libssh/callbacks.h>
|
#include <libssh/callbacks.h>
|
||||||
#include <libssh/libssh.h>
|
#include <libssh/libssh.h>
|
||||||
|
#include <libssh/sftp.h>
|
||||||
|
|
||||||
|
|
||||||
#include "examples_common.h"
|
#include "examples_common.h"
|
||||||
#define MAXCMD 10
|
#define MAXCMD 10
|
||||||
@@ -51,7 +53,7 @@ static struct termios terminal;
|
|||||||
|
|
||||||
static char *pcap_file = NULL;
|
static char *pcap_file = NULL;
|
||||||
|
|
||||||
static char *proxycommand = NULL;
|
static char *proxycommand;
|
||||||
|
|
||||||
static int auth_callback(const char *prompt,
|
static int auth_callback(const char *prompt,
|
||||||
char *buf,
|
char *buf,
|
||||||
@@ -86,14 +88,13 @@ static void add_cmd(char *cmd)
|
|||||||
|
|
||||||
static void usage(void)
|
static void usage(void)
|
||||||
{
|
{
|
||||||
fprintf(
|
fprintf(stderr,
|
||||||
stderr,
|
|
||||||
"Usage : ssh [options] [login@]hostname\n"
|
"Usage : ssh [options] [login@]hostname\n"
|
||||||
"sample client - libssh-%s\n"
|
"sample client - libssh-%s\n"
|
||||||
"Options :\n"
|
"Options :\n"
|
||||||
" -l user : log in as user\n"
|
" -l user : log in as user\n"
|
||||||
" -p port : connect to port\n"
|
" -p port : connect to port\n"
|
||||||
" -o option : set configuration option (e.g., -o Compression=yes)\n"
|
" -d : use DSS to verify host public key\n"
|
||||||
" -r : use RSA to verify host public key\n"
|
" -r : use RSA to verify host public key\n"
|
||||||
" -F file : parse configuration file instead of default one\n"
|
" -F file : parse configuration file instead of default one\n"
|
||||||
#ifdef WITH_PCAP
|
#ifdef WITH_PCAP
|
||||||
@@ -159,6 +160,7 @@ static void cfmakeraw(struct termios *termios_p)
|
|||||||
|
|
||||||
static void do_cleanup(int i)
|
static void do_cleanup(int i)
|
||||||
{
|
{
|
||||||
|
/* unused variable */
|
||||||
(void) i;
|
(void) i;
|
||||||
|
|
||||||
tcsetattr(0, TCSANOW, &terminal);
|
tcsetattr(0, TCSANOW, &terminal);
|
||||||
@@ -166,6 +168,7 @@ static void do_cleanup(int i)
|
|||||||
|
|
||||||
static void do_exit(int i)
|
static void do_exit(int i)
|
||||||
{
|
{
|
||||||
|
/* unused variable */
|
||||||
(void) i;
|
(void) i;
|
||||||
|
|
||||||
do_cleanup(0);
|
do_cleanup(0);
|
||||||
@@ -211,18 +214,18 @@ static void select_loop(ssh_session session,ssh_channel channel)
|
|||||||
/* stdin */
|
/* stdin */
|
||||||
connector_in = ssh_connector_new(session);
|
connector_in = ssh_connector_new(session);
|
||||||
ssh_connector_set_out_channel(connector_in, channel, SSH_CONNECTOR_STDINOUT);
|
ssh_connector_set_out_channel(connector_in, channel, SSH_CONNECTOR_STDINOUT);
|
||||||
ssh_connector_set_in_fd(connector_in, STDIN_FILENO);
|
ssh_connector_set_in_fd(connector_in, 0);
|
||||||
ssh_event_add_connector(event, connector_in);
|
ssh_event_add_connector(event, connector_in);
|
||||||
|
|
||||||
/* stdout */
|
/* stdout */
|
||||||
connector_out = ssh_connector_new(session);
|
connector_out = ssh_connector_new(session);
|
||||||
ssh_connector_set_out_fd(connector_out, STDOUT_FILENO);
|
ssh_connector_set_out_fd(connector_out, 1);
|
||||||
ssh_connector_set_in_channel(connector_out, channel, SSH_CONNECTOR_STDINOUT);
|
ssh_connector_set_in_channel(connector_out, channel, SSH_CONNECTOR_STDINOUT);
|
||||||
ssh_event_add_connector(event, connector_out);
|
ssh_event_add_connector(event, connector_out);
|
||||||
|
|
||||||
/* stderr */
|
/* stderr */
|
||||||
connector_err = ssh_connector_new(session);
|
connector_err = ssh_connector_new(session);
|
||||||
ssh_connector_set_out_fd(connector_err, STDERR_FILENO);
|
ssh_connector_set_out_fd(connector_err, 2);
|
||||||
ssh_connector_set_in_channel(connector_err, channel, SSH_CONNECTOR_STDERR);
|
ssh_connector_set_in_channel(connector_err, channel, SSH_CONNECTOR_STDERR);
|
||||||
ssh_event_add_connector(event, connector_err);
|
ssh_event_add_connector(event, connector_err);
|
||||||
|
|
||||||
@@ -249,7 +252,7 @@ static void select_loop(ssh_session session,ssh_channel channel)
|
|||||||
|
|
||||||
static void shell(ssh_session session)
|
static void shell(ssh_session session)
|
||||||
{
|
{
|
||||||
ssh_channel channel = NULL;
|
ssh_channel channel;
|
||||||
struct termios terminal_local;
|
struct termios terminal_local;
|
||||||
int interactive=isatty(0);
|
int interactive=isatty(0);
|
||||||
|
|
||||||
@@ -295,41 +298,25 @@ static void shell(ssh_session session)
|
|||||||
static void batch_shell(ssh_session session)
|
static void batch_shell(ssh_session session)
|
||||||
{
|
{
|
||||||
ssh_channel channel;
|
ssh_channel channel;
|
||||||
char *buffer = NULL;
|
char buffer[PATH_MAX];
|
||||||
size_t i, s, n;
|
size_t i;
|
||||||
|
int s = 0;
|
||||||
|
|
||||||
|
for (i = 0; i < MAXCMD && cmds[i]; ++i) {
|
||||||
|
s += snprintf(buffer + s, sizeof(buffer) - s, "%s ", cmds[i]);
|
||||||
|
}
|
||||||
|
|
||||||
channel = ssh_channel_new(session);
|
channel = ssh_channel_new(session);
|
||||||
if (channel == NULL) {
|
if (channel == NULL) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
n = 0;
|
|
||||||
for (i = 0; i < MAXCMD && cmds[i]; ++i) {
|
|
||||||
/* Including space after cmds[i] */
|
|
||||||
n += strlen(cmds[i]) + 1;
|
|
||||||
}
|
|
||||||
/* Trailing \0 */
|
|
||||||
n += 1;
|
|
||||||
|
|
||||||
buffer = malloc(n);
|
|
||||||
if (buffer == NULL) {
|
|
||||||
ssh_channel_free(channel);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
s = 0;
|
|
||||||
for (i = 0; i < MAXCMD && cmds[i]; ++i) {
|
|
||||||
s += snprintf(buffer + s, n - s, "%s ", cmds[i]);
|
|
||||||
}
|
|
||||||
|
|
||||||
ssh_channel_open_session(channel);
|
ssh_channel_open_session(channel);
|
||||||
if (ssh_channel_request_exec(channel, buffer)) {
|
if (ssh_channel_request_exec(channel, buffer)) {
|
||||||
printf("Error executing '%s' : %s\n", buffer, ssh_get_error(session));
|
printf("Error executing '%s' : %s\n", buffer, ssh_get_error(session));
|
||||||
free(buffer);
|
|
||||||
ssh_channel_free(channel);
|
ssh_channel_free(channel);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
free(buffer);
|
|
||||||
select_loop(session, channel);
|
select_loop(session, channel);
|
||||||
ssh_channel_free(channel);
|
ssh_channel_free(channel);
|
||||||
}
|
}
|
||||||
@@ -337,7 +324,7 @@ static void batch_shell(ssh_session session)
|
|||||||
static int client(ssh_session session)
|
static int client(ssh_session session)
|
||||||
{
|
{
|
||||||
int auth = 0;
|
int auth = 0;
|
||||||
char *banner = NULL;
|
char *banner;
|
||||||
int state;
|
int state;
|
||||||
|
|
||||||
if (user) {
|
if (user) {
|
||||||
@@ -355,8 +342,10 @@ static int client(ssh_session session)
|
|||||||
}
|
}
|
||||||
/* Parse configuration file if specified: The command-line options will
|
/* Parse configuration file if specified: The command-line options will
|
||||||
* overwrite items loaded from configuration file */
|
* overwrite items loaded from configuration file */
|
||||||
if (ssh_options_parse_config(session, config_file) < 0) {
|
if (config_file != NULL) {
|
||||||
return -1;
|
ssh_options_parse_config(session, config_file);
|
||||||
|
} else {
|
||||||
|
ssh_options_parse_config(session, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ssh_connect(session)) {
|
if (ssh_connect(session)) {
|
||||||
@@ -419,7 +408,7 @@ static void cleanup_pcap(void)
|
|||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
ssh_session session = NULL;
|
ssh_session session;
|
||||||
|
|
||||||
ssh_init();
|
ssh_init();
|
||||||
session = ssh_new();
|
session = ssh_new();
|
||||||
|
|||||||
@@ -45,10 +45,36 @@ The goal is to show the API in action.
|
|||||||
#define BUF_SIZE 1048576
|
#define BUF_SIZE 1048576
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef KEYS_FOLDER
|
||||||
|
#ifdef _WIN32
|
||||||
|
#define KEYS_FOLDER
|
||||||
|
#else
|
||||||
|
#define KEYS_FOLDER "/etc/ssh/"
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#define SESSION_END (SSH_CLOSED | SSH_CLOSED_ERROR)
|
#define SESSION_END (SSH_CLOSED | SSH_CLOSED_ERROR)
|
||||||
#define SFTP_SERVER_PATH "/usr/lib/sftp-server"
|
#define SFTP_SERVER_PATH "/usr/lib/sftp-server"
|
||||||
#define AUTH_KEYS_MAX_LINE_SIZE 2048
|
|
||||||
|
|
||||||
|
static void set_default_keys(ssh_bind sshbind,
|
||||||
|
int rsa_already_set,
|
||||||
|
int dsa_already_set,
|
||||||
|
int ecdsa_already_set) {
|
||||||
|
if (!rsa_already_set) {
|
||||||
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_RSAKEY,
|
||||||
|
KEYS_FOLDER "ssh_host_rsa_key");
|
||||||
|
}
|
||||||
|
if (!dsa_already_set) {
|
||||||
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_DSAKEY,
|
||||||
|
KEYS_FOLDER "ssh_host_dsa_key");
|
||||||
|
}
|
||||||
|
if (!ecdsa_already_set) {
|
||||||
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_ECDSAKEY,
|
||||||
|
KEYS_FOLDER "ssh_host_ecdsa_key");
|
||||||
|
}
|
||||||
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY,
|
||||||
|
KEYS_FOLDER "ssh_host_ed25519_key");
|
||||||
|
}
|
||||||
#define DEF_STR_SIZE 1024
|
#define DEF_STR_SIZE 1024
|
||||||
char authorizedkeys[DEF_STR_SIZE] = {0};
|
char authorizedkeys[DEF_STR_SIZE] = {0};
|
||||||
char username[128] = "myuser";
|
char username[128] = "myuser";
|
||||||
@@ -83,12 +109,20 @@ static struct argp_option options[] = {
|
|||||||
"Implies no default keys.",
|
"Implies no default keys.",
|
||||||
.group = 0
|
.group = 0
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.name = "dsakey",
|
||||||
|
.key = 'd',
|
||||||
|
.arg = "FILE",
|
||||||
|
.flags = 0,
|
||||||
|
.doc = "Set the dsa key.",
|
||||||
|
.group = 0
|
||||||
|
},
|
||||||
{
|
{
|
||||||
.name = "rsakey",
|
.name = "rsakey",
|
||||||
.key = 'r',
|
.key = 'r',
|
||||||
.arg = "FILE",
|
.arg = "FILE",
|
||||||
.flags = 0,
|
.flags = 0,
|
||||||
.doc = "Set the rsa key (deprecated alias for 'k').",
|
.doc = "Set the rsa key.",
|
||||||
.group = 0
|
.group = 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -96,7 +130,7 @@ static struct argp_option options[] = {
|
|||||||
.key = 'e',
|
.key = 'e',
|
||||||
.arg = "FILE",
|
.arg = "FILE",
|
||||||
.flags = 0,
|
.flags = 0,
|
||||||
.doc = "Set the ecdsa key (deprecated alias for 'k').",
|
.doc = "Set the ecdsa key.",
|
||||||
.group = 0
|
.group = 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -123,6 +157,14 @@ static struct argp_option options[] = {
|
|||||||
.doc = "Set expected password.",
|
.doc = "Set expected password.",
|
||||||
.group = 0
|
.group = 0
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.name = "no-default-keys",
|
||||||
|
.key = 'n',
|
||||||
|
.arg = NULL,
|
||||||
|
.flags = 0,
|
||||||
|
.doc = "Do not set default key locations.",
|
||||||
|
.group = 0
|
||||||
|
},
|
||||||
{
|
{
|
||||||
.name = "verbose",
|
.name = "verbose",
|
||||||
.key = 'v',
|
.key = 'v',
|
||||||
@@ -135,25 +177,38 @@ static struct argp_option options[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/* Parse a single option. */
|
/* Parse a single option. */
|
||||||
static error_t
|
static error_t parse_opt (int key, char *arg, struct argp_state *state) {
|
||||||
parse_opt(int key, char *arg, struct argp_state *state)
|
|
||||||
{
|
|
||||||
/* Get the input argument from argp_parse, which we
|
/* Get the input argument from argp_parse, which we
|
||||||
* know is a pointer to our arguments structure. */
|
* know is a pointer to our arguments structure. */
|
||||||
ssh_bind sshbind = state->input;
|
ssh_bind sshbind = state->input;
|
||||||
|
static int no_default_keys = 0;
|
||||||
|
static int rsa_already_set = 0, dsa_already_set = 0, ecdsa_already_set = 0;
|
||||||
|
|
||||||
switch (key) {
|
switch (key) {
|
||||||
|
case 'n':
|
||||||
|
no_default_keys = 1;
|
||||||
|
break;
|
||||||
case 'p':
|
case 'p':
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_BINDPORT_STR, arg);
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_BINDPORT_STR, arg);
|
||||||
break;
|
break;
|
||||||
|
case 'd':
|
||||||
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_DSAKEY, arg);
|
||||||
|
dsa_already_set = 1;
|
||||||
|
break;
|
||||||
case 'k':
|
case 'k':
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, arg);
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, arg);
|
||||||
|
/* We can't track the types of keys being added with this
|
||||||
|
option, so let's ensure we keep the keys we're adding
|
||||||
|
by just not setting the default keys */
|
||||||
|
no_default_keys = 1;
|
||||||
break;
|
break;
|
||||||
case 'r':
|
case 'r':
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, arg);
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_RSAKEY, arg);
|
||||||
|
rsa_already_set = 1;
|
||||||
break;
|
break;
|
||||||
case 'e':
|
case 'e':
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, arg);
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_ECDSAKEY, arg);
|
||||||
|
ecdsa_already_set = 1;
|
||||||
break;
|
break;
|
||||||
case 'a':
|
case 'a':
|
||||||
strncpy(authorizedkeys, arg, DEF_STR_SIZE-1);
|
strncpy(authorizedkeys, arg, DEF_STR_SIZE-1);
|
||||||
@@ -165,7 +220,8 @@ parse_opt(int key, char *arg, struct argp_state *state)
|
|||||||
strncpy(password, arg, sizeof(password) - 1);
|
strncpy(password, arg, sizeof(password) - 1);
|
||||||
break;
|
break;
|
||||||
case 'v':
|
case 'v':
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_LOG_VERBOSITY_STR, "3");
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_LOG_VERBOSITY_STR,
|
||||||
|
"3");
|
||||||
break;
|
break;
|
||||||
case ARGP_KEY_ARG:
|
case ARGP_KEY_ARG:
|
||||||
if (state->arg_num >= 1) {
|
if (state->arg_num >= 1) {
|
||||||
@@ -179,6 +235,14 @@ parse_opt(int key, char *arg, struct argp_state *state)
|
|||||||
/* Not enough arguments. */
|
/* Not enough arguments. */
|
||||||
argp_usage (state);
|
argp_usage (state);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!no_default_keys) {
|
||||||
|
set_default_keys(sshbind,
|
||||||
|
rsa_already_set,
|
||||||
|
dsa_already_set,
|
||||||
|
ecdsa_already_set);
|
||||||
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return ARGP_ERR_UNKNOWN;
|
return ARGP_ERR_UNKNOWN;
|
||||||
@@ -189,20 +253,33 @@ parse_opt(int key, char *arg, struct argp_state *state)
|
|||||||
/* Our argp parser. */
|
/* Our argp parser. */
|
||||||
static struct argp argp = {options, parse_opt, args_doc, doc, NULL, NULL, NULL};
|
static struct argp argp = {options, parse_opt, args_doc, doc, NULL, NULL, NULL};
|
||||||
#else
|
#else
|
||||||
static int
|
static int parse_opt(int argc, char **argv, ssh_bind sshbind) {
|
||||||
parse_opt(int argc, char **argv, ssh_bind sshbind)
|
int no_default_keys = 0;
|
||||||
{
|
int rsa_already_set = 0;
|
||||||
|
int dsa_already_set = 0;
|
||||||
|
int ecdsa_already_set = 0;
|
||||||
int key;
|
int key;
|
||||||
|
|
||||||
while((key = getopt(argc, argv, "a:e:k:p:P:r:u:v")) != -1) {
|
while((key = getopt(argc, argv, "a:d:e:k:np:P:r:u:v")) != -1) {
|
||||||
if (key == 'p') {
|
if (key == 'n') {
|
||||||
|
no_default_keys = 1;
|
||||||
|
} else if (key == 'p') {
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_BINDPORT_STR, optarg);
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_BINDPORT_STR, optarg);
|
||||||
|
} else if (key == 'd') {
|
||||||
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_DSAKEY, optarg);
|
||||||
|
dsa_already_set = 1;
|
||||||
} else if (key == 'k') {
|
} else if (key == 'k') {
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, optarg);
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, optarg);
|
||||||
|
/* We can't track the types of keys being added with this
|
||||||
|
option, so let's ensure we keep the keys we're adding
|
||||||
|
by just not setting the default keys */
|
||||||
|
no_default_keys = 1;
|
||||||
} else if (key == 'r') {
|
} else if (key == 'r') {
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, optarg);
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_RSAKEY, optarg);
|
||||||
|
rsa_already_set = 1;
|
||||||
} else if (key == 'e') {
|
} else if (key == 'e') {
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, optarg);
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_ECDSAKEY, optarg);
|
||||||
|
ecdsa_already_set = 1;
|
||||||
} else if (key == 'a') {
|
} else if (key == 'a') {
|
||||||
strncpy(authorizedkeys, optarg, DEF_STR_SIZE-1);
|
strncpy(authorizedkeys, optarg, DEF_STR_SIZE-1);
|
||||||
} else if (key == 'u') {
|
} else if (key == 'u') {
|
||||||
@@ -222,12 +299,14 @@ parse_opt(int argc, char **argv, ssh_bind sshbind)
|
|||||||
"libssh %s -- a Secure Shell protocol implementation\n"
|
"libssh %s -- a Secure Shell protocol implementation\n"
|
||||||
"\n"
|
"\n"
|
||||||
" -a, --authorizedkeys=FILE Set the authorized keys file.\n"
|
" -a, --authorizedkeys=FILE Set the authorized keys file.\n"
|
||||||
" -e, --ecdsakey=FILE Set the ecdsa key (deprecated alias for 'k').\n"
|
" -d, --dsakey=FILE Set the dsa key.\n"
|
||||||
|
" -e, --ecdsakey=FILE Set the ecdsa key.\n"
|
||||||
" -k, --hostkey=FILE Set a host key. Can be used multiple times.\n"
|
" -k, --hostkey=FILE Set a host key. Can be used multiple times.\n"
|
||||||
" Implies no default keys.\n"
|
" Implies no default keys.\n"
|
||||||
|
" -n, --no-default-keys Do not set default key locations.\n"
|
||||||
" -p, --port=PORT Set the port to bind.\n"
|
" -p, --port=PORT Set the port to bind.\n"
|
||||||
" -P, --pass=PASSWORD Set expected password.\n"
|
" -P, --pass=PASSWORD Set expected password.\n"
|
||||||
" -r, --rsakey=FILE Set the rsa key (deprecated alias for 'k').\n"
|
" -r, --rsakey=FILE Set the rsa key.\n"
|
||||||
" -u, --user=USERNAME Set expected username.\n"
|
" -u, --user=USERNAME Set expected username.\n"
|
||||||
" -v, --verbose Get verbose output.\n"
|
" -v, --verbose Get verbose output.\n"
|
||||||
" -?, --help Give this help list\n"
|
" -?, --help Give this help list\n"
|
||||||
@@ -247,6 +326,13 @@ parse_opt(int argc, char **argv, ssh_bind sshbind)
|
|||||||
|
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_BINDADDR, argv[optind]);
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_BINDADDR, argv[optind]);
|
||||||
|
|
||||||
|
if (!no_default_keys) {
|
||||||
|
set_default_keys(sshbind,
|
||||||
|
rsa_already_set,
|
||||||
|
dsa_already_set,
|
||||||
|
ecdsa_already_set);
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#endif /* HAVE_ARGP_H */
|
#endif /* HAVE_ARGP_H */
|
||||||
@@ -277,14 +363,8 @@ struct session_data_struct {
|
|||||||
int authenticated;
|
int authenticated;
|
||||||
};
|
};
|
||||||
|
|
||||||
static int
|
static int data_function(ssh_session session, ssh_channel channel, void *data,
|
||||||
data_function(ssh_session session,
|
uint32_t len, int is_stderr, void *userdata) {
|
||||||
ssh_channel channel,
|
|
||||||
void *data,
|
|
||||||
uint32_t len,
|
|
||||||
int is_stderr,
|
|
||||||
void *userdata)
|
|
||||||
{
|
|
||||||
struct channel_data_struct *cdata = (struct channel_data_struct *) userdata;
|
struct channel_data_struct *cdata = (struct channel_data_struct *) userdata;
|
||||||
|
|
||||||
(void) session;
|
(void) session;
|
||||||
@@ -298,18 +378,10 @@ data_function(ssh_session session,
|
|||||||
return write(cdata->child_stdin, (char *) data, len);
|
return write(cdata->child_stdin, (char *) data, len);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int pty_request(ssh_session session, ssh_channel channel,
|
||||||
pty_request(ssh_session session,
|
const char *term, int cols, int rows, int py, int px,
|
||||||
ssh_channel channel,
|
void *userdata) {
|
||||||
const char *term,
|
|
||||||
int cols,
|
|
||||||
int rows,
|
|
||||||
int py,
|
|
||||||
int px,
|
|
||||||
void *userdata)
|
|
||||||
{
|
|
||||||
struct channel_data_struct *cdata = (struct channel_data_struct *)userdata;
|
struct channel_data_struct *cdata = (struct channel_data_struct *)userdata;
|
||||||
int rc;
|
|
||||||
|
|
||||||
(void) session;
|
(void) session;
|
||||||
(void) channel;
|
(void) channel;
|
||||||
@@ -320,27 +392,16 @@ pty_request(ssh_session session,
|
|||||||
cdata->winsize->ws_xpixel = px;
|
cdata->winsize->ws_xpixel = px;
|
||||||
cdata->winsize->ws_ypixel = py;
|
cdata->winsize->ws_ypixel = py;
|
||||||
|
|
||||||
rc = openpty(&cdata->pty_master,
|
if (openpty(&cdata->pty_master, &cdata->pty_slave, NULL, NULL,
|
||||||
&cdata->pty_slave,
|
cdata->winsize) != 0) {
|
||||||
NULL,
|
|
||||||
NULL,
|
|
||||||
cdata->winsize);
|
|
||||||
if (rc != 0) {
|
|
||||||
fprintf(stderr, "Failed to open pty\n");
|
fprintf(stderr, "Failed to open pty\n");
|
||||||
return SSH_ERROR;
|
return SSH_ERROR;
|
||||||
}
|
}
|
||||||
return SSH_OK;
|
return SSH_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int pty_resize(ssh_session session, ssh_channel channel, int cols,
|
||||||
pty_resize(ssh_session session,
|
int rows, int py, int px, void *userdata) {
|
||||||
ssh_channel channel,
|
|
||||||
int cols,
|
|
||||||
int rows,
|
|
||||||
int py,
|
|
||||||
int px,
|
|
||||||
void *userdata)
|
|
||||||
{
|
|
||||||
struct channel_data_struct *cdata = (struct channel_data_struct *)userdata;
|
struct channel_data_struct *cdata = (struct channel_data_struct *)userdata;
|
||||||
|
|
||||||
(void) session;
|
(void) session;
|
||||||
@@ -358,13 +419,9 @@ pty_resize(ssh_session session,
|
|||||||
return SSH_ERROR;
|
return SSH_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int exec_pty(const char *mode, const char *command,
|
||||||
exec_pty(const char *mode,
|
struct channel_data_struct *cdata) {
|
||||||
const char *command,
|
switch(cdata->pid = fork()) {
|
||||||
struct channel_data_struct *cdata)
|
|
||||||
{
|
|
||||||
cdata->pid = fork();
|
|
||||||
switch (cdata->pid) {
|
|
||||||
case -1:
|
case -1:
|
||||||
close(cdata->pty_master);
|
close(cdata->pty_master);
|
||||||
close(cdata->pty_slave);
|
close(cdata->pty_slave);
|
||||||
@@ -385,9 +442,7 @@ exec_pty(const char *mode,
|
|||||||
return SSH_OK;
|
return SSH_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int exec_nopty(const char *command, struct channel_data_struct *cdata) {
|
||||||
exec_nopty(const char *command, struct channel_data_struct *cdata)
|
|
||||||
{
|
|
||||||
int in[2], out[2], err[2];
|
int in[2], out[2], err[2];
|
||||||
|
|
||||||
/* Do the plumbing to be able to talk with the child process. */
|
/* Do the plumbing to be able to talk with the child process. */
|
||||||
@@ -401,8 +456,7 @@ exec_nopty(const char *command, struct channel_data_struct *cdata)
|
|||||||
goto stderr_failed;
|
goto stderr_failed;
|
||||||
}
|
}
|
||||||
|
|
||||||
cdata->pid = fork();
|
switch(cdata->pid = fork()) {
|
||||||
switch (cdata->pid) {
|
|
||||||
case -1:
|
case -1:
|
||||||
goto fork_failed;
|
goto fork_failed;
|
||||||
case 0:
|
case 0:
|
||||||
@@ -444,14 +498,11 @@ stdin_failed:
|
|||||||
return SSH_ERROR;
|
return SSH_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int exec_request(ssh_session session, ssh_channel channel,
|
||||||
exec_request(ssh_session session,
|
const char *command, void *userdata) {
|
||||||
ssh_channel channel,
|
|
||||||
const char *command,
|
|
||||||
void *userdata)
|
|
||||||
{
|
|
||||||
struct channel_data_struct *cdata = (struct channel_data_struct *) userdata;
|
struct channel_data_struct *cdata = (struct channel_data_struct *) userdata;
|
||||||
|
|
||||||
|
|
||||||
(void) session;
|
(void) session;
|
||||||
(void) channel;
|
(void) channel;
|
||||||
|
|
||||||
@@ -465,9 +516,8 @@ exec_request(ssh_session session,
|
|||||||
return exec_nopty(command, cdata);
|
return exec_nopty(command, cdata);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int shell_request(ssh_session session, ssh_channel channel,
|
||||||
shell_request(ssh_session session, ssh_channel channel, void *userdata)
|
void *userdata) {
|
||||||
{
|
|
||||||
struct channel_data_struct *cdata = (struct channel_data_struct *) userdata;
|
struct channel_data_struct *cdata = (struct channel_data_struct *) userdata;
|
||||||
|
|
||||||
(void) session;
|
(void) session;
|
||||||
@@ -484,25 +534,17 @@ shell_request(ssh_session session, ssh_channel channel, void *userdata)
|
|||||||
return SSH_OK;
|
return SSH_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int subsystem_request(ssh_session session, ssh_channel channel,
|
||||||
subsystem_request(ssh_session session,
|
const char *subsystem, void *userdata) {
|
||||||
ssh_channel channel,
|
/* subsystem requests behave simillarly to exec requests. */
|
||||||
const char *subsystem,
|
|
||||||
void *userdata)
|
|
||||||
{
|
|
||||||
/* subsystem requests behave similarly to exec requests. */
|
|
||||||
if (strcmp(subsystem, "sftp") == 0) {
|
if (strcmp(subsystem, "sftp") == 0) {
|
||||||
return exec_request(session, channel, SFTP_SERVER_PATH, userdata);
|
return exec_request(session, channel, SFTP_SERVER_PATH, userdata);
|
||||||
}
|
}
|
||||||
return SSH_ERROR;
|
return SSH_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int auth_password(ssh_session session, const char *user,
|
||||||
auth_password(ssh_session session,
|
const char *pass, void *userdata) {
|
||||||
const char *user,
|
|
||||||
const char *pass,
|
|
||||||
void *userdata)
|
|
||||||
{
|
|
||||||
struct session_data_struct *sdata = (struct session_data_struct *) userdata;
|
struct session_data_struct *sdata = (struct session_data_struct *) userdata;
|
||||||
|
|
||||||
(void) session;
|
(void) session;
|
||||||
@@ -516,23 +558,13 @@ auth_password(ssh_session session,
|
|||||||
return SSH_AUTH_DENIED;
|
return SSH_AUTH_DENIED;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int auth_publickey(ssh_session session,
|
||||||
auth_publickey(ssh_session session,
|
|
||||||
const char *user,
|
const char *user,
|
||||||
struct ssh_key_struct *pubkey,
|
struct ssh_key_struct *pubkey,
|
||||||
char signature_state,
|
char signature_state,
|
||||||
void *userdata)
|
void *userdata)
|
||||||
{
|
{
|
||||||
struct session_data_struct *sdata = (struct session_data_struct *) userdata;
|
struct session_data_struct *sdata = (struct session_data_struct *) userdata;
|
||||||
ssh_key key = NULL;
|
|
||||||
FILE *fp = NULL;
|
|
||||||
char line[AUTH_KEYS_MAX_LINE_SIZE] = {0};
|
|
||||||
char *p = NULL;
|
|
||||||
const char *q = NULL;
|
|
||||||
unsigned int lineno = 0;
|
|
||||||
int result;
|
|
||||||
int i;
|
|
||||||
enum ssh_keytypes_e type;
|
|
||||||
|
|
||||||
(void) user;
|
(void) user;
|
||||||
(void) session;
|
(void) session;
|
||||||
@@ -545,156 +577,42 @@ auth_publickey(ssh_session session,
|
|||||||
return SSH_AUTH_DENIED;
|
return SSH_AUTH_DENIED;
|
||||||
}
|
}
|
||||||
|
|
||||||
fp = fopen(authorizedkeys, "r");
|
// valid so far. Now look through authorized keys for a match
|
||||||
if (fp == NULL) {
|
if (authorizedkeys[0]) {
|
||||||
fprintf(stderr, "Error: opening authorized keys file %s failed, reason: %s\n",
|
ssh_key key = NULL;
|
||||||
authorizedkeys, strerror(errno));
|
int result;
|
||||||
return SSH_AUTH_DENIED;
|
struct stat buf;
|
||||||
}
|
|
||||||
|
|
||||||
while (fgets(line, sizeof(line), fp)) {
|
if (stat(authorizedkeys, &buf) == 0) {
|
||||||
lineno++;
|
result = ssh_pki_import_pubkey_file( authorizedkeys, &key );
|
||||||
|
if ((result != SSH_OK) || (key==NULL)) {
|
||||||
/* Skip leading whitespace and ignore comments */
|
|
||||||
p = line;
|
|
||||||
|
|
||||||
for (i = 0; i < AUTH_KEYS_MAX_LINE_SIZE; i++) {
|
|
||||||
if (!isspace((int)p[i])) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (i >= AUTH_KEYS_MAX_LINE_SIZE) {
|
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"warning: The line %d in %s too long! Skipping.\n",
|
"Unable to import public key file %s\n",
|
||||||
lineno,
|
|
||||||
authorizedkeys);
|
authorizedkeys);
|
||||||
continue;
|
} else {
|
||||||
}
|
|
||||||
|
|
||||||
if (p[i] == '#' || p[i] == '\0' || p[i] == '\n') {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
q = &p[i];
|
|
||||||
for (; i < AUTH_KEYS_MAX_LINE_SIZE; i++) {
|
|
||||||
if (isspace((int)p[i])) {
|
|
||||||
p[i] = '\0';
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
type = ssh_key_type_from_name(q);
|
|
||||||
|
|
||||||
i++;
|
|
||||||
if (i >= AUTH_KEYS_MAX_LINE_SIZE) {
|
|
||||||
fprintf(stderr,
|
|
||||||
"warning: The line %d in %s too long! Skipping.\n",
|
|
||||||
lineno,
|
|
||||||
authorizedkeys);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
q = &p[i];
|
|
||||||
for (; i < AUTH_KEYS_MAX_LINE_SIZE; i++) {
|
|
||||||
if (isspace((int)p[i])) {
|
|
||||||
p[i] = '\0';
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
result = ssh_pki_import_pubkey_base64(q, type, &key);
|
|
||||||
if (result != SSH_OK) {
|
|
||||||
fprintf(stderr,
|
|
||||||
"Warning: Cannot import key on line no. %d in authorized keys file: %s\n",
|
|
||||||
lineno,
|
|
||||||
authorizedkeys);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
result = ssh_key_cmp( key, pubkey, SSH_KEY_CMP_PUBLIC );
|
result = ssh_key_cmp( key, pubkey, SSH_KEY_CMP_PUBLIC );
|
||||||
ssh_key_free(key);
|
ssh_key_free(key);
|
||||||
if (result == 0) {
|
if (result == 0) {
|
||||||
sdata->authenticated = 1;
|
sdata->authenticated = 1;
|
||||||
fclose(fp);
|
|
||||||
return SSH_AUTH_SUCCESS;
|
return SSH_AUTH_SUCCESS;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (ferror(fp) != 0) {
|
|
||||||
fprintf(stderr,
|
|
||||||
"Error: Reading from authorized keys file %s failed, reason: %s\n",
|
|
||||||
authorizedkeys, strerror(errno));
|
|
||||||
}
|
}
|
||||||
fclose(fp);
|
}
|
||||||
|
|
||||||
/* no matches */
|
// no matches
|
||||||
|
sdata->authenticated = 0;
|
||||||
return SSH_AUTH_DENIED;
|
return SSH_AUTH_DENIED;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int kbdint_check_response(ssh_session session)
|
static ssh_channel channel_open(ssh_session session, void *userdata) {
|
||||||
{
|
|
||||||
int count, cmp;
|
|
||||||
const char *answer = NULL;
|
|
||||||
|
|
||||||
count = ssh_userauth_kbdint_getnanswers(session);
|
|
||||||
if (count != 2) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
answer = ssh_userauth_kbdint_getanswer(session, 0);
|
|
||||||
cmp = strcasecmp("omnitrix", answer);
|
|
||||||
if (cmp != 0) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
answer = ssh_userauth_kbdint_getanswer(session, 1);
|
|
||||||
cmp = strcmp("000", answer);
|
|
||||||
if (cmp != 0) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int
|
|
||||||
auth_kbdint(ssh_message message, ssh_session session, void *userdata)
|
|
||||||
{
|
|
||||||
struct session_data_struct *sdata = (struct session_data_struct *)userdata;
|
|
||||||
const char *name = "\n\nKeyboard-Interactive Fancy Authentication\n";
|
|
||||||
const char *instruction = "Most powerful weapon in the galaxy";
|
|
||||||
const char *prompts[2] = {"Name of the weapon: ", "Destruct Code: "};
|
|
||||||
char echo[] = {1, 0};
|
|
||||||
if (!ssh_message_auth_kbdint_is_response(message)) {
|
|
||||||
printf("User %s wants to auth with kbdint\n",
|
|
||||||
ssh_message_auth_user(message));
|
|
||||||
ssh_message_auth_interactive_request(message,
|
|
||||||
name,
|
|
||||||
instruction,
|
|
||||||
2,
|
|
||||||
prompts,
|
|
||||||
echo);
|
|
||||||
return SSH_AUTH_INFO;
|
|
||||||
} else {
|
|
||||||
if (kbdint_check_response(session)) {
|
|
||||||
sdata->authenticated = 1;
|
|
||||||
return SSH_AUTH_SUCCESS;
|
|
||||||
}
|
|
||||||
return SSH_AUTH_DENIED;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static ssh_channel
|
|
||||||
channel_open(ssh_session session, void *userdata)
|
|
||||||
{
|
|
||||||
struct session_data_struct *sdata = (struct session_data_struct *) userdata;
|
struct session_data_struct *sdata = (struct session_data_struct *) userdata;
|
||||||
|
|
||||||
sdata->channel = ssh_channel_new(session);
|
sdata->channel = ssh_channel_new(session);
|
||||||
return sdata->channel;
|
return sdata->channel;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int process_stdout(socket_t fd, int revents, void *userdata) {
|
||||||
process_stdout(socket_t fd, int revents, void *userdata)
|
|
||||||
{
|
|
||||||
char buf[BUF_SIZE];
|
char buf[BUF_SIZE];
|
||||||
int n = -1;
|
int n = -1;
|
||||||
ssh_channel channel = (ssh_channel) userdata;
|
ssh_channel channel = (ssh_channel) userdata;
|
||||||
@@ -709,9 +627,7 @@ process_stdout(socket_t fd, int revents, void *userdata)
|
|||||||
return n;
|
return n;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int process_stderr(socket_t fd, int revents, void *userdata) {
|
||||||
process_stderr(socket_t fd, int revents, void *userdata)
|
|
||||||
{
|
|
||||||
char buf[BUF_SIZE];
|
char buf[BUF_SIZE];
|
||||||
int n = -1;
|
int n = -1;
|
||||||
ssh_channel channel = (ssh_channel) userdata;
|
ssh_channel channel = (ssh_channel) userdata;
|
||||||
@@ -726,9 +642,7 @@ process_stderr(socket_t fd, int revents, void *userdata)
|
|||||||
return n;
|
return n;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void handle_session(ssh_event event, ssh_session session) {
|
||||||
handle_session(ssh_event event, ssh_session session)
|
|
||||||
{
|
|
||||||
int n;
|
int n;
|
||||||
int rc = 0;
|
int rc = 0;
|
||||||
|
|
||||||
@@ -772,15 +686,14 @@ handle_session(ssh_event event, ssh_session session)
|
|||||||
struct ssh_server_callbacks_struct server_cb = {
|
struct ssh_server_callbacks_struct server_cb = {
|
||||||
.userdata = &sdata,
|
.userdata = &sdata,
|
||||||
.auth_password_function = auth_password,
|
.auth_password_function = auth_password,
|
||||||
.auth_kbdint_function = auth_kbdint,
|
|
||||||
.channel_open_request_session_function = channel_open,
|
.channel_open_request_session_function = channel_open,
|
||||||
};
|
};
|
||||||
|
|
||||||
if (authorizedkeys[0]) {
|
if (authorizedkeys[0]) {
|
||||||
server_cb.auth_pubkey_function = auth_publickey;
|
server_cb.auth_pubkey_function = auth_publickey;
|
||||||
ssh_set_auth_methods(session, SSH_AUTH_METHOD_PASSWORD | SSH_AUTH_METHOD_PUBLICKEY | SSH_AUTH_METHOD_INTERACTIVE);
|
ssh_set_auth_methods(session, SSH_AUTH_METHOD_PASSWORD | SSH_AUTH_METHOD_PUBLICKEY);
|
||||||
} else
|
} else
|
||||||
ssh_set_auth_methods(session, SSH_AUTH_METHOD_PASSWORD | SSH_AUTH_METHOD_INTERACTIVE);
|
ssh_set_auth_methods(session, SSH_AUTH_METHOD_PASSWORD);
|
||||||
|
|
||||||
ssh_callbacks_init(&server_cb);
|
ssh_callbacks_init(&server_cb);
|
||||||
ssh_callbacks_init(&channel_cb);
|
ssh_callbacks_init(&channel_cb);
|
||||||
@@ -876,14 +789,12 @@ handle_session(ssh_event event, ssh_session session)
|
|||||||
|
|
||||||
#ifdef WITH_FORK
|
#ifdef WITH_FORK
|
||||||
/* SIGCHLD handler for cleaning up dead children. */
|
/* SIGCHLD handler for cleaning up dead children. */
|
||||||
static void sigchld_handler(int signo)
|
static void sigchld_handler(int signo) {
|
||||||
{
|
|
||||||
(void) signo;
|
(void) signo;
|
||||||
while (waitpid(-1, NULL, WNOHANG) > 0);
|
while (waitpid(-1, NULL, WNOHANG) > 0);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
static void *session_thread(void *arg)
|
static void *session_thread(void *arg) {
|
||||||
{
|
|
||||||
ssh_session session = arg;
|
ssh_session session = arg;
|
||||||
ssh_event event;
|
ssh_event event;
|
||||||
|
|
||||||
@@ -902,10 +813,9 @@ static void *session_thread(void *arg)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv) {
|
||||||
{
|
ssh_bind sshbind;
|
||||||
ssh_bind sshbind = NULL;
|
ssh_session session;
|
||||||
ssh_session session = NULL;
|
|
||||||
int rc;
|
int rc;
|
||||||
#ifdef WITH_FORK
|
#ifdef WITH_FORK
|
||||||
struct sigaction sa;
|
struct sigaction sa;
|
||||||
@@ -943,8 +853,7 @@ int main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
#endif /* HAVE_ARGP_H */
|
#endif /* HAVE_ARGP_H */
|
||||||
|
|
||||||
rc = ssh_bind_listen(sshbind);
|
if(ssh_bind_listen(sshbind) < 0) {
|
||||||
if (rc < 0) {
|
|
||||||
fprintf(stderr, "%s\n", ssh_get_error(sshbind));
|
fprintf(stderr, "%s\n", ssh_get_error(sshbind));
|
||||||
ssh_bind_free(sshbind);
|
ssh_bind_free(sshbind);
|
||||||
ssh_finalize();
|
ssh_finalize();
|
||||||
@@ -959,13 +868,11 @@ int main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Blocks until there is a new incoming connection. */
|
/* Blocks until there is a new incoming connection. */
|
||||||
rc = ssh_bind_accept(sshbind, session);
|
if(ssh_bind_accept(sshbind, session) != SSH_ERROR) {
|
||||||
if (rc != SSH_ERROR) {
|
|
||||||
#ifdef WITH_FORK
|
#ifdef WITH_FORK
|
||||||
ssh_event event;
|
ssh_event event;
|
||||||
|
|
||||||
pid_t pid = fork();
|
switch(fork()) {
|
||||||
switch (pid) {
|
|
||||||
case 0:
|
case 0:
|
||||||
/* Remove the SIGCHLD handler inherited from parent. */
|
/* Remove the SIGCHLD handler inherited from parent. */
|
||||||
sa.sa_handler = SIG_DFL;
|
sa.sa_handler = SIG_DFL;
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ clients must be made or how a client should react.
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Example:
|
Example:
|
||||||
./sshd_direct-tcpip -v -p 2022 -r serverkey.rsa 127.0.0.1
|
./sshd_direct-tcpip -v -p 2022 -d serverkey.dsa -r serverkey.rsa 127.0.0.1
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
@@ -27,9 +27,6 @@ clients must be made or how a client should react.
|
|||||||
#ifdef HAVE_ARGP_H
|
#ifdef HAVE_ARGP_H
|
||||||
#include <argp.h>
|
#include <argp.h>
|
||||||
#endif
|
#endif
|
||||||
#ifndef _WIN32
|
|
||||||
#include <netinet/in.h>
|
|
||||||
#endif
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
@@ -94,9 +91,6 @@ cleanup_push(struct cleanup_node_struct** head_ref,
|
|||||||
{
|
{
|
||||||
// Allocate memory for node
|
// Allocate memory for node
|
||||||
struct cleanup_node_struct *new_node = malloc(sizeof *new_node);
|
struct cleanup_node_struct *new_node = malloc(sizeof *new_node);
|
||||||
if (new_node == NULL) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (*head_ref != NULL) {
|
if (*head_ref != NULL) {
|
||||||
new_node->next = *head_ref;
|
new_node->next = *head_ref;
|
||||||
@@ -203,7 +197,7 @@ subsystem_request(UNUSED_PARAM(ssh_session session),
|
|||||||
UNUSED_PARAM(void *userdata))
|
UNUSED_PARAM(void *userdata))
|
||||||
{
|
{
|
||||||
_ssh_log(SSH_LOG_PROTOCOL,
|
_ssh_log(SSH_LOG_PROTOCOL,
|
||||||
"=== subsystem_request", "Channel subsystem request: %s",
|
"=== subsystem_request", "Channel subsystem reqeuest: %s",
|
||||||
subsystem);
|
subsystem);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@@ -299,7 +293,7 @@ my_channel_eof_function(ssh_session session,
|
|||||||
|
|
||||||
_ssh_log(SSH_LOG_PROTOCOL,
|
_ssh_log(SSH_LOG_PROTOCOL,
|
||||||
"=== my_channel_eof_function",
|
"=== my_channel_eof_function",
|
||||||
"Got EOF on channel. Shutting down write on socket (fd = %d).",
|
"Got EOF on channel. Shuting down write on socket (fd = %d).",
|
||||||
*event_fd_data->p_fd);
|
*event_fd_data->p_fd);
|
||||||
|
|
||||||
stack_socket_close(session, event_fd_data);
|
stack_socket_close(session, event_fd_data);
|
||||||
@@ -361,7 +355,7 @@ my_fd_data_function(UNUSED_PARAM(socket_t fd),
|
|||||||
{
|
{
|
||||||
struct event_fd_data_struct *event_fd_data = (struct event_fd_data_struct *)userdata;
|
struct event_fd_data_struct *event_fd_data = (struct event_fd_data_struct *)userdata;
|
||||||
ssh_channel channel = event_fd_data->channel;
|
ssh_channel channel = event_fd_data->channel;
|
||||||
ssh_session session = NULL;
|
ssh_session session;
|
||||||
int len, i, wr;
|
int len, i, wr;
|
||||||
char buf[BUF_SIZE];
|
char buf[BUF_SIZE];
|
||||||
int blocking;
|
int blocking;
|
||||||
@@ -455,8 +449,8 @@ open_tcp_socket(ssh_message msg)
|
|||||||
{
|
{
|
||||||
struct sockaddr_in sin;
|
struct sockaddr_in sin;
|
||||||
int forwardsock = -1;
|
int forwardsock = -1;
|
||||||
struct hostent *host = NULL;
|
struct hostent *host;
|
||||||
const char *dest_hostname = NULL;
|
const char *dest_hostname;
|
||||||
int dest_port;
|
int dest_port;
|
||||||
|
|
||||||
forwardsock = socket(AF_INET, SOCK_STREAM, 0);
|
forwardsock = socket(AF_INET, SOCK_STREAM, 0);
|
||||||
@@ -499,8 +493,8 @@ message_callback(UNUSED_PARAM(ssh_session session),
|
|||||||
UNUSED_PARAM(void *userdata))
|
UNUSED_PARAM(void *userdata))
|
||||||
{
|
{
|
||||||
ssh_channel channel;
|
ssh_channel channel;
|
||||||
int socket_fd, *pFd = NULL;
|
int socket_fd, *pFd;
|
||||||
struct ssh_channel_callbacks_struct *cb_chan = NULL;
|
struct ssh_channel_callbacks_struct *cb_chan;
|
||||||
struct event_fd_data_struct *event_fd_data;
|
struct event_fd_data_struct *event_fd_data;
|
||||||
|
|
||||||
_ssh_log(SSH_LOG_PACKET, "=== message_callback", "Message type: %d",
|
_ssh_log(SSH_LOG_PACKET, "=== message_callback", "Message type: %d",
|
||||||
@@ -526,7 +520,7 @@ message_callback(UNUSED_PARAM(ssh_session session),
|
|||||||
}
|
}
|
||||||
|
|
||||||
pFd = malloc(sizeof *pFd);
|
pFd = malloc(sizeof *pFd);
|
||||||
cb_chan = calloc(1, sizeof *cb_chan);
|
cb_chan = malloc(sizeof *cb_chan);
|
||||||
event_fd_data = malloc(sizeof *event_fd_data);
|
event_fd_data = malloc(sizeof *event_fd_data);
|
||||||
if (pFd == NULL || cb_chan == NULL || event_fd_data == NULL) {
|
if (pFd == NULL || cb_chan == NULL || event_fd_data == NULL) {
|
||||||
SAFE_FREE(pFd);
|
SAFE_FREE(pFd);
|
||||||
@@ -589,12 +583,20 @@ static struct argp_option options[] = {
|
|||||||
.doc = "Set the host key.",
|
.doc = "Set the host key.",
|
||||||
.group = 0
|
.group = 0
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.name = "dsakey",
|
||||||
|
.key = 'd',
|
||||||
|
.arg = "FILE",
|
||||||
|
.flags = 0,
|
||||||
|
.doc = "Set the dsa key.",
|
||||||
|
.group = 0
|
||||||
|
},
|
||||||
{
|
{
|
||||||
.name = "rsakey",
|
.name = "rsakey",
|
||||||
.key = 'r',
|
.key = 'r',
|
||||||
.arg = "FILE",
|
.arg = "FILE",
|
||||||
.flags = 0,
|
.flags = 0,
|
||||||
.doc = "Set the rsa key (deprecated alias for 'k').",
|
.doc = "Set the rsa key.",
|
||||||
.group = 0
|
.group = 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -621,10 +623,15 @@ parse_opt (int key, char *arg, struct argp_state *state)
|
|||||||
case 'p':
|
case 'p':
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_BINDPORT_STR, arg);
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_BINDPORT_STR, arg);
|
||||||
break;
|
break;
|
||||||
case 'r':
|
case 'd':
|
||||||
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_DSAKEY, arg);
|
||||||
|
break;
|
||||||
case 'k':
|
case 'k':
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, arg);
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, arg);
|
||||||
break;
|
break;
|
||||||
|
case 'r':
|
||||||
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_RSAKEY, arg);
|
||||||
|
break;
|
||||||
case 'v':
|
case 'v':
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_LOG_VERBOSITY_STR, "1");
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_LOG_VERBOSITY_STR, "1");
|
||||||
break;
|
break;
|
||||||
@@ -655,8 +662,8 @@ static struct argp argp = {options, parse_opt, args_doc, doc, NULL, NULL, NULL};
|
|||||||
int
|
int
|
||||||
main(int argc, char **argv)
|
main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
ssh_session session = NULL;
|
ssh_session session;
|
||||||
ssh_bind sshbind = NULL;
|
ssh_bind sshbind;
|
||||||
struct ssh_server_callbacks_struct cb = {
|
struct ssh_server_callbacks_struct cb = {
|
||||||
.userdata = NULL,
|
.userdata = NULL,
|
||||||
.auth_password_function = auth_password,
|
.auth_password_function = auth_password,
|
||||||
@@ -675,7 +682,8 @@ main(int argc, char **argv)
|
|||||||
session = ssh_new();
|
session = ssh_new();
|
||||||
mainloop = ssh_event_new();
|
mainloop = ssh_event_new();
|
||||||
|
|
||||||
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, KEYS_FOLDER "ssh_host_rsa_key");
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_DSAKEY, KEYS_FOLDER "ssh_host_dsa_key");
|
||||||
|
ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_RSAKEY, KEYS_FOLDER "ssh_host_rsa_key");
|
||||||
|
|
||||||
#ifdef HAVE_ARGP_H
|
#ifdef HAVE_ARGP_H
|
||||||
/*
|
/*
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ clients must be made or how a client should react.
|
|||||||
#define BUF_SIZE 4096
|
#define BUF_SIZE 4096
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
char *host = NULL;
|
char *host;
|
||||||
const char *desthost="localhost";
|
const char *desthost="localhost";
|
||||||
const char *port="22";
|
const char *port="22";
|
||||||
|
|
||||||
@@ -50,13 +50,11 @@ char *pcap_file = NULL;
|
|||||||
|
|
||||||
static void usage(void)
|
static void usage(void)
|
||||||
{
|
{
|
||||||
fprintf(stderr,
|
fprintf(stderr,"Usage : sshnetcat [user@]host forwarded_host forwarded_port\n");
|
||||||
"Usage : sshnetcat [user@]host forwarded_host forwarded_port\n");
|
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int opts(int argc, char **argv)
|
static int opts(int argc, char **argv){
|
||||||
{
|
|
||||||
int i;
|
int i;
|
||||||
while((i=getopt(argc,argv,"P:"))!=-1){
|
while((i=getopt(argc,argv,"P:"))!=-1){
|
||||||
switch(i){
|
switch(i){
|
||||||
@@ -81,8 +79,7 @@ static int opts(int argc, char **argv)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void select_loop(ssh_session session, ssh_channel channel)
|
static void select_loop(ssh_session session,ssh_channel channel){
|
||||||
{
|
|
||||||
fd_set fds;
|
fd_set fds;
|
||||||
struct timeval timeout;
|
struct timeval timeout;
|
||||||
char buffer[BUF_SIZE];
|
char buffer[BUF_SIZE];
|
||||||
@@ -107,8 +104,7 @@ static void select_loop(ssh_session session, ssh_channel channel)
|
|||||||
|
|
||||||
fd = ssh_get_fd(session);
|
fd = ssh_get_fd(session);
|
||||||
if (fd == -1) {
|
if (fd == -1) {
|
||||||
fprintf(stderr,
|
fprintf(stderr, "Error getting the session file descriptor: %s\n",
|
||||||
"Error getting the session file descriptor: %s\n",
|
|
||||||
ssh_get_error(session));
|
ssh_get_error(session));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -135,12 +131,10 @@ static void select_loop(ssh_session session, ssh_channel channel)
|
|||||||
channels[0]=NULL;
|
channels[0]=NULL;
|
||||||
}
|
}
|
||||||
if(outchannels[0]){
|
if(outchannels[0]){
|
||||||
while (channel && ssh_channel_is_open(channel) &&
|
while(channel && ssh_channel_is_open(channel) && ssh_channel_poll(channel,0)){
|
||||||
ssh_channel_poll(channel, 0)) {
|
|
||||||
lus = ssh_channel_read(channel,buffer,sizeof(buffer),0);
|
lus = ssh_channel_read(channel,buffer,sizeof(buffer),0);
|
||||||
if(lus==-1){
|
if(lus==-1){
|
||||||
fprintf(stderr,
|
fprintf(stderr, "Error reading channel: %s\n",
|
||||||
"Error reading channel: %s\n",
|
|
||||||
ssh_get_error(session));
|
ssh_get_error(session));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -150,19 +144,16 @@ static void select_loop(ssh_session session, ssh_channel channel)
|
|||||||
} else {
|
} else {
|
||||||
ret = write(1, buffer, lus);
|
ret = write(1, buffer, lus);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
fprintf(stderr,
|
fprintf(stderr, "Error writing to stdin: %s",
|
||||||
"Error writing to stdin: %s",
|
|
||||||
strerror(errno));
|
strerror(errno));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
while (channel && ssh_channel_is_open(channel) &&
|
while(channel && ssh_channel_is_open(channel) && ssh_channel_poll(channel,1)){ /* stderr */
|
||||||
ssh_channel_poll(channel, 1)) { /* stderr */
|
|
||||||
lus = ssh_channel_read(channel, buffer, sizeof(buffer), 1);
|
lus = ssh_channel_read(channel, buffer, sizeof(buffer), 1);
|
||||||
if(lus==-1){
|
if(lus==-1){
|
||||||
fprintf(stderr,
|
fprintf(stderr, "Error reading channel: %s\n",
|
||||||
"Error reading channel: %s\n",
|
|
||||||
ssh_get_error(session));
|
ssh_get_error(session));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -172,8 +163,7 @@ static void select_loop(ssh_session session, ssh_channel channel)
|
|||||||
} else {
|
} else {
|
||||||
ret = write(2, buffer, lus);
|
ret = write(2, buffer, lus);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
fprintf(stderr,
|
fprintf(stderr, "Error writing to stderr: %s",
|
||||||
"Error writing to stderr: %s",
|
|
||||||
strerror(errno));
|
strerror(errno));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -185,11 +175,11 @@ static void select_loop(ssh_session session, ssh_channel channel)
|
|||||||
channel=NULL;
|
channel=NULL;
|
||||||
}
|
}
|
||||||
} while (ret==EINTR || ret==SSH_EINTR);
|
} while (ret==EINTR || ret==SSH_EINTR);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void forwarding(ssh_session session)
|
static void forwarding(ssh_session session){
|
||||||
{
|
|
||||||
ssh_channel channel;
|
ssh_channel channel;
|
||||||
int r;
|
int r;
|
||||||
channel = ssh_channel_new(session);
|
channel = ssh_channel_new(session);
|
||||||
@@ -201,10 +191,9 @@ static void forwarding(ssh_session session)
|
|||||||
select_loop(session,channel);
|
select_loop(session,channel);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int client(ssh_session session)
|
static int client(ssh_session session){
|
||||||
{
|
|
||||||
int auth=0;
|
int auth=0;
|
||||||
char *banner = NULL;
|
char *banner;
|
||||||
int state;
|
int state;
|
||||||
|
|
||||||
if (ssh_options_set(session, SSH_OPTIONS_HOST ,host) < 0)
|
if (ssh_options_set(session, SSH_OPTIONS_HOST ,host) < 0)
|
||||||
@@ -235,8 +224,7 @@ static int client(ssh_session session)
|
|||||||
#ifdef WITH_PCAP
|
#ifdef WITH_PCAP
|
||||||
ssh_pcap_file pcap;
|
ssh_pcap_file pcap;
|
||||||
void set_pcap(ssh_session session);
|
void set_pcap(ssh_session session);
|
||||||
void set_pcap(ssh_session session)
|
void set_pcap(ssh_session session){
|
||||||
{
|
|
||||||
if(!pcap_file)
|
if(!pcap_file)
|
||||||
return;
|
return;
|
||||||
pcap=ssh_pcap_file_new();
|
pcap=ssh_pcap_file_new();
|
||||||
@@ -250,22 +238,19 @@ void set_pcap(ssh_session session)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void cleanup_pcap(void);
|
void cleanup_pcap(void);
|
||||||
void cleanup_pcap(void)
|
void cleanup_pcap(){
|
||||||
{
|
|
||||||
ssh_pcap_file_free(pcap);
|
ssh_pcap_file_free(pcap);
|
||||||
pcap=NULL;
|
pcap=NULL;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv){
|
||||||
{
|
ssh_session session;
|
||||||
ssh_session session = NULL;
|
|
||||||
|
|
||||||
session = ssh_new();
|
session = ssh_new();
|
||||||
|
|
||||||
if(ssh_options_getopt(session, &argc, argv)) {
|
if(ssh_options_getopt(session, &argc, argv)) {
|
||||||
fprintf(stderr,
|
fprintf(stderr, "error parsing command line :%s\n",
|
||||||
"error parsing command line :%s\n",
|
|
||||||
ssh_get_error(session));
|
ssh_get_error(session));
|
||||||
usage();
|
usage();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,22 +20,8 @@ if (WITH_SERVER)
|
|||||||
${libssh_HDRS}
|
${libssh_HDRS}
|
||||||
server.h
|
server.h
|
||||||
)
|
)
|
||||||
|
|
||||||
if (WITH_SFTP)
|
|
||||||
set(libssh_HDRS
|
|
||||||
${libssh_HDRS}
|
|
||||||
sftpserver.h
|
|
||||||
)
|
|
||||||
endif (WITH_SFTP)
|
|
||||||
endif (WITH_SERVER)
|
endif (WITH_SERVER)
|
||||||
|
|
||||||
if (WITH_FIDO2)
|
|
||||||
set(libssh_HDRS
|
|
||||||
${libssh_HDRS}
|
|
||||||
sk_api.h
|
|
||||||
)
|
|
||||||
endif (WITH_FIDO2)
|
|
||||||
|
|
||||||
install(
|
install(
|
||||||
FILES
|
FILES
|
||||||
${libssh_HDRS}
|
${libssh_HDRS}
|
||||||
|
|||||||
@@ -70,10 +70,6 @@
|
|||||||
#define SSH_AGENT_RSA_SHA2_256 0x02
|
#define SSH_AGENT_RSA_SHA2_256 0x02
|
||||||
#define SSH_AGENT_RSA_SHA2_512 0x04
|
#define SSH_AGENT_RSA_SHA2_512 0x04
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
struct ssh_agent_struct {
|
struct ssh_agent_struct {
|
||||||
struct ssh_socket_struct *sock;
|
struct ssh_socket_struct *sock;
|
||||||
ssh_buffer ident;
|
ssh_buffer ident;
|
||||||
@@ -119,8 +115,4 @@ ssh_string ssh_agent_sign_data(ssh_session session,
|
|||||||
const ssh_key pubkey,
|
const ssh_key pubkey,
|
||||||
struct ssh_buffer_struct *data);
|
struct ssh_buffer_struct *data);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* __AGENT_H */
|
#endif /* __AGENT_H */
|
||||||
|
|||||||
@@ -23,10 +23,6 @@
|
|||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "libssh/callbacks.h"
|
#include "libssh/callbacks.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
SSH_PACKET_CALLBACK(ssh_packet_userauth_banner);
|
SSH_PACKET_CALLBACK(ssh_packet_userauth_banner);
|
||||||
SSH_PACKET_CALLBACK(ssh_packet_userauth_failure);
|
SSH_PACKET_CALLBACK(ssh_packet_userauth_failure);
|
||||||
SSH_PACKET_CALLBACK(ssh_packet_userauth_success);
|
SSH_PACKET_CALLBACK(ssh_packet_userauth_success);
|
||||||
@@ -52,7 +48,6 @@ typedef struct ssh_kbdint_struct* ssh_kbdint;
|
|||||||
ssh_kbdint ssh_kbdint_new(void);
|
ssh_kbdint ssh_kbdint_new(void);
|
||||||
void ssh_kbdint_clean(ssh_kbdint kbd);
|
void ssh_kbdint_clean(ssh_kbdint kbd);
|
||||||
void ssh_kbdint_free(ssh_kbdint kbd);
|
void ssh_kbdint_free(ssh_kbdint kbd);
|
||||||
int ssh_userauth_gssapi_keyex(ssh_session session);
|
|
||||||
|
|
||||||
/** @internal
|
/** @internal
|
||||||
* States of authentication in the client-side. They describe
|
* States of authentication in the client-side. They describe
|
||||||
@@ -89,8 +84,6 @@ enum ssh_auth_state_e {
|
|||||||
SSH_AUTH_STATE_PASSWORD_AUTH_SENT,
|
SSH_AUTH_STATE_PASSWORD_AUTH_SENT,
|
||||||
/** We have sent a request without auth information (method 'none') */
|
/** We have sent a request without auth information (method 'none') */
|
||||||
SSH_AUTH_STATE_AUTH_NONE_SENT,
|
SSH_AUTH_STATE_AUTH_NONE_SENT,
|
||||||
/** We have sent the MIC and expecting to be authenticated */
|
|
||||||
SSH_AUTH_STATE_GSSAPI_KEYEX_MIC_SENT,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/** @internal
|
/** @internal
|
||||||
@@ -107,8 +100,4 @@ enum ssh_auth_service_state_e {
|
|||||||
SSH_AUTH_SERVICE_DENIED,
|
SSH_AUTH_SERVICE_DENIED,
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* AUTH_H_ */
|
#endif /* AUTH_H_ */
|
||||||
|
|||||||
@@ -25,17 +25,9 @@
|
|||||||
#include "libssh/libgcrypt.h"
|
#include "libssh/libgcrypt.h"
|
||||||
#include "libssh/libmbedcrypto.h"
|
#include "libssh/libmbedcrypto.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
bignum ssh_make_string_bn(ssh_string string);
|
bignum ssh_make_string_bn(ssh_string string);
|
||||||
ssh_string ssh_make_bignum_string(bignum num);
|
ssh_string ssh_make_bignum_string(bignum num);
|
||||||
ssh_string ssh_make_padded_bignum_string(bignum num, size_t pad_len);
|
|
||||||
void ssh_print_bignum(const char *which, const_bignum num);
|
void ssh_print_bignum(const char *which, const_bignum num);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* BIGNUM_H_ */
|
#endif /* BIGNUM_H_ */
|
||||||
|
|||||||
@@ -25,10 +25,6 @@
|
|||||||
#include "libssh/kex.h"
|
#include "libssh/kex.h"
|
||||||
#include "libssh/session.h"
|
#include "libssh/session.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
struct ssh_bind_struct {
|
struct ssh_bind_struct {
|
||||||
struct ssh_common_struct common; /* stuff common to ssh_bind and ssh_session */
|
struct ssh_common_struct common; /* stuff common to ssh_bind and ssh_session */
|
||||||
struct ssh_bind_callbacks_struct *bind_callbacks;
|
struct ssh_bind_callbacks_struct *bind_callbacks;
|
||||||
@@ -39,9 +35,11 @@ struct ssh_bind_struct {
|
|||||||
char *wanted_methods[SSH_KEX_METHODS];
|
char *wanted_methods[SSH_KEX_METHODS];
|
||||||
char *banner;
|
char *banner;
|
||||||
char *ecdsakey;
|
char *ecdsakey;
|
||||||
|
char *dsakey;
|
||||||
char *rsakey;
|
char *rsakey;
|
||||||
char *ed25519key;
|
char *ed25519key;
|
||||||
ssh_key ecdsa;
|
ssh_key ecdsa;
|
||||||
|
ssh_key dsa;
|
||||||
ssh_key rsa;
|
ssh_key rsa;
|
||||||
ssh_key ed25519;
|
ssh_key ed25519;
|
||||||
char *bindaddr;
|
char *bindaddr;
|
||||||
@@ -54,15 +52,10 @@ struct ssh_bind_struct {
|
|||||||
char *pubkey_accepted_key_types;
|
char *pubkey_accepted_key_types;
|
||||||
char* moduli_file;
|
char* moduli_file;
|
||||||
int rsa_min_size;
|
int rsa_min_size;
|
||||||
bool gssapi_key_exchange;
|
|
||||||
char *gssapi_key_exchange_algs;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct ssh_poll_handle_struct *ssh_bind_get_poll(struct ssh_bind_struct
|
struct ssh_poll_handle_struct *ssh_bind_get_poll(struct ssh_bind_struct
|
||||||
*sshbind);
|
*sshbind);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* BIND_H_ */
|
#endif /* BIND_H_ */
|
||||||
|
|||||||
@@ -28,10 +28,6 @@
|
|||||||
|
|
||||||
#include "libssh/server.h"
|
#include "libssh/server.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
enum ssh_bind_config_opcode_e {
|
enum ssh_bind_config_opcode_e {
|
||||||
/* Known but not allowed in Match block */
|
/* Known but not allowed in Match block */
|
||||||
BIND_CFG_NOT_ALLOWED_IN_MATCH = -4,
|
BIND_CFG_NOT_ALLOWED_IN_MATCH = -4,
|
||||||
@@ -52,7 +48,6 @@ enum ssh_bind_config_opcode_e {
|
|||||||
BIND_CFG_MATCH,
|
BIND_CFG_MATCH,
|
||||||
BIND_CFG_PUBKEY_ACCEPTED_KEY_TYPES,
|
BIND_CFG_PUBKEY_ACCEPTED_KEY_TYPES,
|
||||||
BIND_CFG_HOSTKEY_ALGORITHMS,
|
BIND_CFG_HOSTKEY_ALGORITHMS,
|
||||||
BIND_CFG_REQUIRED_RSA_SIZE,
|
|
||||||
|
|
||||||
BIND_CFG_MAX /* Keep this one last in the list */
|
BIND_CFG_MAX /* Keep this one last in the list */
|
||||||
};
|
};
|
||||||
@@ -76,8 +71,4 @@ int ssh_bind_config_parse_file(ssh_bind sshbind, const char *filename);
|
|||||||
*/
|
*/
|
||||||
int ssh_bind_config_parse_string(ssh_bind bind, const char *input);
|
int ssh_bind_config_parse_string(ssh_bind bind, const char *input);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* BIND_CONFIG_H_ */
|
#endif /* BIND_CONFIG_H_ */
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* $OpenBSD: blf.h,v 1.8 2021/11/29 01:04:45 djm Exp $ */
|
/* $OpenBSD: blf.h,v 1.7 2007/03/14 17:59:41 grunk Exp $ */
|
||||||
/*
|
/*
|
||||||
* Blowfish - a fast block cipher designed by Bruce Schneier
|
* Blowfish - a fast block cipher designed by Bruce Schneier
|
||||||
*
|
*
|
||||||
@@ -13,7 +13,10 @@
|
|||||||
* 2. Redistributions in binary form must reproduce the above copyright
|
* 2. Redistributions in binary form must reproduce the above copyright
|
||||||
* notice, this list of conditions and the following disclaimer in the
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
* documentation and/or other materials provided with the distribution.
|
* documentation and/or other materials provided with the distribution.
|
||||||
* 3. The name of the author may not be used to endorse or promote products
|
* 3. All advertising materials mentioning features or use of this software
|
||||||
|
* must display the following acknowledgement:
|
||||||
|
* This product includes software developed by Niels Provos.
|
||||||
|
* 4. The name of the author may not be used to endorse or promote products
|
||||||
* derived from this software without specific prior written permission.
|
* derived from this software without specific prior written permission.
|
||||||
*
|
*
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
||||||
@@ -46,10 +49,6 @@
|
|||||||
#define BLF_MAXKEYLEN ((BLF_N-2)*4) /* 448 bits */
|
#define BLF_MAXKEYLEN ((BLF_N-2)*4) /* 448 bits */
|
||||||
#define BLF_MAXUTILIZED ((BLF_N+2)*4) /* 576 bits */
|
#define BLF_MAXUTILIZED ((BLF_N+2)*4) /* 576 bits */
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Blowfish context */
|
/* Blowfish context */
|
||||||
typedef struct BlowfishContext {
|
typedef struct BlowfishContext {
|
||||||
uint32_t S[4][256]; /* S-Boxes */
|
uint32_t S[4][256]; /* S-Boxes */
|
||||||
@@ -85,9 +84,4 @@ void ssh_blf_cbc_decrypt(ssh_blf_ctx *, uint8_t *, uint8_t *, uint32_t);
|
|||||||
uint32_t Blowfish_stream2word(const uint8_t *, uint16_t , uint16_t *);
|
uint32_t Blowfish_stream2word(const uint8_t *, uint16_t , uint16_t *);
|
||||||
|
|
||||||
#endif /* !defined(HAVE_BCRYPT_PBKDF) && !defined(HAVE_BLH_H) */
|
#endif /* !defined(HAVE_BCRYPT_PBKDF) && !defined(HAVE_BLH_H) */
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* _BLF_H */
|
#endif /* _BLF_H */
|
||||||
|
|||||||
@@ -27,10 +27,6 @@
|
|||||||
|
|
||||||
#define SSH_BUFFER_PACK_END ((uint32_t) 0x4f65feb3)
|
#define SSH_BUFFER_PACK_END ((uint32_t) 0x4f65feb3)
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
void ssh_buffer_set_secure(ssh_buffer buffer);
|
void ssh_buffer_set_secure(ssh_buffer buffer);
|
||||||
int ssh_buffer_add_ssh_string(ssh_buffer buffer, ssh_string string);
|
int ssh_buffer_add_ssh_string(ssh_buffer buffer, ssh_string string);
|
||||||
int ssh_buffer_add_u8(ssh_buffer buffer, uint8_t data);
|
int ssh_buffer_add_u8(ssh_buffer buffer, uint8_t data);
|
||||||
@@ -42,6 +38,10 @@ int ssh_buffer_validate_length(struct ssh_buffer_struct *buffer, size_t len);
|
|||||||
|
|
||||||
void *ssh_buffer_allocate(struct ssh_buffer_struct *buffer, uint32_t len);
|
void *ssh_buffer_allocate(struct ssh_buffer_struct *buffer, uint32_t len);
|
||||||
int ssh_buffer_allocate_size(struct ssh_buffer_struct *buffer, uint32_t len);
|
int ssh_buffer_allocate_size(struct ssh_buffer_struct *buffer, uint32_t len);
|
||||||
|
int ssh_buffer_pack_va(struct ssh_buffer_struct *buffer,
|
||||||
|
const char *format,
|
||||||
|
size_t argc,
|
||||||
|
va_list ap);
|
||||||
int _ssh_buffer_pack(struct ssh_buffer_struct *buffer,
|
int _ssh_buffer_pack(struct ssh_buffer_struct *buffer,
|
||||||
const char *format,
|
const char *format,
|
||||||
size_t argc,
|
size_t argc,
|
||||||
@@ -74,10 +74,4 @@ ssh_string ssh_buffer_get_ssh_string(ssh_buffer buffer);
|
|||||||
uint32_t ssh_buffer_pass_bytes_end(ssh_buffer buffer, uint32_t len);
|
uint32_t ssh_buffer_pass_bytes_end(ssh_buffer buffer, uint32_t len);
|
||||||
uint32_t ssh_buffer_pass_bytes(ssh_buffer buffer, uint32_t len);
|
uint32_t ssh_buffer_pass_bytes(ssh_buffer buffer, uint32_t len);
|
||||||
|
|
||||||
ssh_buffer ssh_buffer_dup(const ssh_buffer buffer);
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* BUFFER_H_ */
|
#endif /* BUFFER_H_ */
|
||||||
|
|||||||
@@ -27,7 +27,6 @@
|
|||||||
|
|
||||||
#include <libssh/libssh.h>
|
#include <libssh/libssh.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdbool.h>
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@@ -82,9 +81,9 @@ typedef void (*ssh_log_callback) (ssh_session session, int priority,
|
|||||||
*
|
*
|
||||||
* @param priority Priority of the log, the smaller being the more important.
|
* @param priority Priority of the log, the smaller being the more important.
|
||||||
*
|
*
|
||||||
* @param function The function name calling the logging functions.
|
* @param function The function name calling the the logging fucntions.
|
||||||
*
|
*
|
||||||
* @param buffer The actual message
|
* @param message The actual message
|
||||||
*
|
*
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
* @param userdata Userdata to be passed to the callback function.
|
||||||
*/
|
*/
|
||||||
@@ -113,24 +112,11 @@ typedef void (*ssh_status_callback) (ssh_session session, float status,
|
|||||||
typedef void (*ssh_global_request_callback) (ssh_session session,
|
typedef void (*ssh_global_request_callback) (ssh_session session,
|
||||||
ssh_message message, void *userdata);
|
ssh_message message, void *userdata);
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief SSH connect status callback. These are functions that report the
|
|
||||||
* status of the connection i,e. a function indicating the completed percentage
|
|
||||||
* of the connection
|
|
||||||
* steps.
|
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
|
||||||
* @param status Percentage of connection status, going from 0.0 to 1.0
|
|
||||||
* once connection is done.
|
|
||||||
*/
|
|
||||||
typedef void (*ssh_connect_status_callback)(void *userdata, float status);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Handles an SSH new channel open X11 request. This happens when the server
|
* @brief Handles an SSH new channel open X11 request. This happens when the server
|
||||||
* sends back an X11 connection attempt. This is a client-side API
|
* sends back an X11 connection attempt. This is a client-side API
|
||||||
* @param session current session handler
|
* @param session current session handler
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
* @param userdata Userdata to be passed to the callback function.
|
||||||
* @param originator_address IP address of the machine who sent the request
|
|
||||||
* @param originator_port port number of the machine who sent the request
|
|
||||||
* @returns a valid ssh_channel handle if the request is to be allowed
|
* @returns a valid ssh_channel handle if the request is to be allowed
|
||||||
* @returns NULL if the request should not be allowed
|
* @returns NULL if the request should not be allowed
|
||||||
* @warning The channel pointer returned by this callback must be closed by the application.
|
* @warning The channel pointer returned by this callback must be closed by the application.
|
||||||
@@ -150,26 +136,6 @@ typedef ssh_channel (*ssh_channel_open_request_x11_callback) (ssh_session sessio
|
|||||||
typedef ssh_channel (*ssh_channel_open_request_auth_agent_callback) (ssh_session session,
|
typedef ssh_channel (*ssh_channel_open_request_auth_agent_callback) (ssh_session session,
|
||||||
void *userdata);
|
void *userdata);
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Handles an SSH new channel open "forwarded-tcpip" request. This
|
|
||||||
* happens when the server forwards an incoming TCP connection on a port it was
|
|
||||||
* previously requested to listen on. This is a client-side API
|
|
||||||
* @param session current session handler
|
|
||||||
* @param destination_address the address that the TCP connection connected to
|
|
||||||
* @param destination_port the port that the TCP connection connected to
|
|
||||||
* @param originator_address the originator IP address
|
|
||||||
* @param originator_port the originator port
|
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
|
||||||
* @returns a valid ssh_channel handle if the request is to be allowed
|
|
||||||
* @returns NULL if the request should not be allowed
|
|
||||||
* @warning The channel pointer returned by this callback must be closed by the
|
|
||||||
* application.
|
|
||||||
*/
|
|
||||||
typedef ssh_channel (*ssh_channel_open_request_forwarded_tcpip_callback) (ssh_session session,
|
|
||||||
const char *destination_address, int destination_port,
|
|
||||||
const char *originator_address, int originator_port,
|
|
||||||
void *userdata);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The structure to replace libssh functions with appropriate callbacks.
|
* The structure to replace libssh functions with appropriate callbacks.
|
||||||
*/
|
*/
|
||||||
@@ -192,7 +158,7 @@ struct ssh_callbacks_struct {
|
|||||||
* This function gets called during connection time to indicate the
|
* This function gets called during connection time to indicate the
|
||||||
* percentage of connection steps completed.
|
* percentage of connection steps completed.
|
||||||
*/
|
*/
|
||||||
ssh_connect_status_callback connect_status_function;
|
void (*connect_status_function)(void *userdata, float status);
|
||||||
/**
|
/**
|
||||||
* This function will be called each time a global request is received.
|
* This function will be called each time a global request is received.
|
||||||
*/
|
*/
|
||||||
@@ -203,11 +169,6 @@ struct ssh_callbacks_struct {
|
|||||||
/** This function will be called when an incoming "auth-agent" request is received.
|
/** This function will be called when an incoming "auth-agent" request is received.
|
||||||
*/
|
*/
|
||||||
ssh_channel_open_request_auth_agent_callback channel_open_request_auth_agent_function;
|
ssh_channel_open_request_auth_agent_callback channel_open_request_auth_agent_function;
|
||||||
/**
|
|
||||||
* This function will be called when an incoming "forwarded-tcpip"
|
|
||||||
* request is received.
|
|
||||||
*/
|
|
||||||
ssh_channel_open_request_forwarded_tcpip_callback channel_open_request_forwarded_tcpip_function;
|
|
||||||
};
|
};
|
||||||
typedef struct ssh_callbacks_struct *ssh_callbacks;
|
typedef struct ssh_callbacks_struct *ssh_callbacks;
|
||||||
|
|
||||||
@@ -220,41 +181,36 @@ typedef struct ssh_callbacks_struct *ssh_callbacks;
|
|||||||
* @param user User that wants to authenticate
|
* @param user User that wants to authenticate
|
||||||
* @param password Password used for authentication
|
* @param password Password used for authentication
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
* @param userdata Userdata to be passed to the callback function.
|
||||||
* @returns `SSH_AUTH_SUCCESS` Authentication is accepted.
|
* @returns SSH_AUTH_SUCCESS Authentication is accepted.
|
||||||
* @returns `SSH_AUTH_PARTIAL` Partial authentication, more authentication means
|
* @returns SSH_AUTH_PARTIAL Partial authentication, more authentication means are needed.
|
||||||
* are needed.
|
* @returns SSH_AUTH_DENIED Authentication failed.
|
||||||
* @returns `SSH_AUTH_DENIED` Authentication failed.
|
|
||||||
*/
|
*/
|
||||||
typedef int (*ssh_auth_password_callback) (ssh_session session, const char *user, const char *password,
|
typedef int (*ssh_auth_password_callback) (ssh_session session, const char *user, const char *password,
|
||||||
void *userdata);
|
void *userdata);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief SSH authentication callback. Tries to authenticates user with the
|
* @brief SSH authentication callback. Tries to authenticates user with the "none" method
|
||||||
* "none" method which is anonymous or passwordless.
|
* which is anonymous or passwordless.
|
||||||
* @param session Current session handler
|
* @param session Current session handler
|
||||||
* @param user User that wants to authenticate
|
* @param user User that wants to authenticate
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
* @param userdata Userdata to be passed to the callback function.
|
||||||
* @returns `SSH_AUTH_SUCCESS` Authentication is accepted.
|
* @returns SSH_AUTH_SUCCESS Authentication is accepted.
|
||||||
* @returns `SSH_AUTH_PARTIAL` Partial authentication, more authentication means
|
* @returns SSH_AUTH_PARTIAL Partial authentication, more authentication means are needed.
|
||||||
* are needed.
|
* @returns SSH_AUTH_DENIED Authentication failed.
|
||||||
* @returns `SSH_AUTH_DENIED` Authentication failed.
|
|
||||||
*/
|
*/
|
||||||
typedef int (*ssh_auth_none_callback) (ssh_session session, const char *user, void *userdata);
|
typedef int (*ssh_auth_none_callback) (ssh_session session, const char *user, void *userdata);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief SSH authentication callback. Tries to authenticates user with the
|
* @brief SSH authentication callback. Tries to authenticates user with the "gssapi-with-mic" method
|
||||||
* "gssapi-with-mic" method
|
|
||||||
* @param session Current session handler
|
* @param session Current session handler
|
||||||
* @param user Username of the user (can be spoofed)
|
* @param user Username of the user (can be spoofed)
|
||||||
* @param principal Authenticated principal of the user, including realm.
|
* @param principal Authenticated principal of the user, including realm.
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
* @param userdata Userdata to be passed to the callback function.
|
||||||
* @returns `SSH_AUTH_SUCCESS` Authentication is accepted.
|
* @returns SSH_AUTH_SUCCESS Authentication is accepted.
|
||||||
* @returns `SSH_AUTH_PARTIAL` Partial authentication, more authentication means
|
* @returns SSH_AUTH_PARTIAL Partial authentication, more authentication means are needed.
|
||||||
* are needed.
|
* @returns SSH_AUTH_DENIED Authentication failed.
|
||||||
* @returns `SSH_AUTH_DENIED` Authentication failed.
|
* @warning Implementations should verify that parameter user matches in some way the principal.
|
||||||
* @warning Implementations should verify that parameter user matches in some
|
* user and principal can be different. Only the latter is guaranteed to be safe.
|
||||||
* way the principal. user and principal can be different. Only the latter is
|
|
||||||
* guaranteed to be safe.
|
|
||||||
*/
|
*/
|
||||||
typedef int (*ssh_auth_gssapi_mic_callback) (ssh_session session, const char *user, const char *principal,
|
typedef int (*ssh_auth_gssapi_mic_callback) (ssh_session session, const char *user, const char *principal,
|
||||||
void *userdata);
|
void *userdata);
|
||||||
@@ -264,29 +220,17 @@ typedef int (*ssh_auth_gssapi_mic_callback) (ssh_session session, const char *us
|
|||||||
* @param session Current session handler
|
* @param session Current session handler
|
||||||
* @param user User that wants to authenticate
|
* @param user User that wants to authenticate
|
||||||
* @param pubkey public key used for authentication
|
* @param pubkey public key used for authentication
|
||||||
* @param signature_state `SSH_PUBLICKEY_STATE_NONE` if the key is not signed
|
* @param signature_state SSH_PUBLICKEY_STATE_NONE if the key is not signed (simple public key probe),
|
||||||
* (simple public key probe), `SSH_PUBLICKEY_STATE_VALID` if the signature is
|
* SSH_PUBLICKEY_STATE_VALID if the signature is valid. Others values should be
|
||||||
* valid. Others values should be replied with a `SSH_AUTH_DENIED`.
|
* replied with a SSH_AUTH_DENIED.
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
* @param userdata Userdata to be passed to the callback function.
|
||||||
* @returns `SSH_AUTH_SUCCESS` Authentication is accepted.
|
* @returns SSH_AUTH_SUCCESS Authentication is accepted.
|
||||||
* @returns `SSH_AUTH_PARTIAL` Partial authentication, more authentication means
|
* @returns SSH_AUTH_PARTIAL Partial authentication, more authentication means are needed.
|
||||||
* are needed.
|
* @returns SSH_AUTH_DENIED Authentication failed.
|
||||||
* @returns `SSH_AUTH_DENIED` Authentication failed.
|
|
||||||
*/
|
*/
|
||||||
typedef int (*ssh_auth_pubkey_callback) (ssh_session session, const char *user, struct ssh_key_struct *pubkey,
|
typedef int (*ssh_auth_pubkey_callback) (ssh_session session, const char *user, struct ssh_key_struct *pubkey,
|
||||||
char signature_state, void *userdata);
|
char signature_state, void *userdata);
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief SSH authentication callback. Tries to authenticates user with the "keyboard-interactive" method
|
|
||||||
* @param message Current message
|
|
||||||
* @param session Current session handler
|
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
|
||||||
* @returns SSH_AUTH_SUCCESS Authentication is accepted.
|
|
||||||
* @returns SSH_AUTH_INFO More info required for authentication.
|
|
||||||
* @returns SSH_AUTH_PARTIAL Partial authentication, more authentication means are needed.
|
|
||||||
* @returns SSH_AUTH_DENIED Authentication failed.
|
|
||||||
*/
|
|
||||||
typedef int (*ssh_auth_kbdint_callback) (ssh_message message, ssh_session session, void *userdata);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Handles an SSH service request
|
* @brief Handles an SSH service request
|
||||||
@@ -296,6 +240,7 @@ typedef int (*ssh_auth_kbdint_callback) (ssh_message message, ssh_session sessio
|
|||||||
* @returns 0 if the request is to be allowed
|
* @returns 0 if the request is to be allowed
|
||||||
* @returns -1 if the request should not be allowed
|
* @returns -1 if the request should not be allowed
|
||||||
*/
|
*/
|
||||||
|
|
||||||
typedef int (*ssh_service_request_callback) (ssh_session session, const char *service, void *userdata);
|
typedef int (*ssh_service_request_callback) (ssh_session session, const char *service, void *userdata);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -308,9 +253,8 @@ typedef int (*ssh_service_request_callback) (ssh_session session, const char *se
|
|||||||
*/
|
*/
|
||||||
typedef ssh_channel (*ssh_channel_open_request_session_callback) (ssh_session session, void *userdata);
|
typedef ssh_channel (*ssh_channel_open_request_session_callback) (ssh_session session, void *userdata);
|
||||||
|
|
||||||
/**
|
/*
|
||||||
* @brief handle the beginning of a GSSAPI authentication, server side.
|
* @brief handle the beginning of a GSSAPI authentication, server side.
|
||||||
* Callback should select the oid and also acquire the server credential.
|
|
||||||
* @param session current session handler
|
* @param session current session handler
|
||||||
* @param user the username of the client
|
* @param user the username of the client
|
||||||
* @param n_oid number of available oids
|
* @param n_oid number of available oids
|
||||||
@@ -323,57 +267,35 @@ typedef ssh_channel (*ssh_channel_open_request_session_callback) (ssh_session se
|
|||||||
typedef ssh_string (*ssh_gssapi_select_oid_callback) (ssh_session session, const char *user,
|
typedef ssh_string (*ssh_gssapi_select_oid_callback) (ssh_session session, const char *user,
|
||||||
int n_oid, ssh_string *oids, void *userdata);
|
int n_oid, ssh_string *oids, void *userdata);
|
||||||
|
|
||||||
/**
|
/*
|
||||||
* @brief handle the negotiation of a security context, server side.
|
* @brief handle the negociation of a security context, server side.
|
||||||
* @param session current session handler
|
* @param session current session handler
|
||||||
* @param[in] input_token input token provided by client
|
* @param[in] input_token input token provided by client
|
||||||
* @param[out] output_token output of the gssapi accept_sec_context method,
|
* @param[out] output_token output of the gssapi accept_sec_context method,
|
||||||
* NULL after completion.
|
* NULL after completion.
|
||||||
* @returns `SSH_OK` if the token was generated correctly or accept_sec_context
|
* @returns SSH_OK if the token was generated correctly or accept_sec_context
|
||||||
* returned GSS_S_COMPLETE
|
* returned GSS_S_COMPLETE
|
||||||
* @returns `SSH_ERROR` in case of error
|
* @returns SSH_ERROR in case of error
|
||||||
* @warning It is not necessary to fill this callback in if libssh is linked
|
* @warning It is not necessary to fill this callback in if libssh is linked
|
||||||
* with libgssapi.
|
* with libgssapi.
|
||||||
*/
|
*/
|
||||||
typedef int (*ssh_gssapi_accept_sec_ctx_callback) (ssh_session session,
|
typedef int (*ssh_gssapi_accept_sec_ctx_callback) (ssh_session session,
|
||||||
ssh_string input_token, ssh_string *output_token, void *userdata);
|
ssh_string input_token, ssh_string *output_token, void *userdata);
|
||||||
|
|
||||||
/**
|
/*
|
||||||
* @brief Verify and authenticates a MIC, server side.
|
* @brief Verify and authenticates a MIC, server side.
|
||||||
* @param session current session handler
|
* @param session current session handler
|
||||||
* @param[in] mic input mic to be verified provided by client
|
* @param[in] mic input mic to be verified provided by client
|
||||||
* @param[in] mic_buffer buffer of data to be signed.
|
* @param[in] mic_buffer buffer of data to be signed.
|
||||||
* @param[in] mic_buffer_size size of mic_buffer
|
* @param[in] mic_buffer_size size of mic_buffer
|
||||||
* @returns `SSH_OK` if the MIC was authenticated correctly
|
* @returns SSH_OK if the MIC was authenticated correctly
|
||||||
* @returns `SSH_ERROR` in case of error
|
* @returns SSH_ERROR in case of error
|
||||||
* @warning It is not necessary to fill this callback in if libssh is linked
|
* @warning It is not necessary to fill this callback in if libssh is linked
|
||||||
* with libgssapi.
|
* with libgssapi.
|
||||||
*/
|
*/
|
||||||
typedef int (*ssh_gssapi_verify_mic_callback) (ssh_session session,
|
typedef int (*ssh_gssapi_verify_mic_callback) (ssh_session session,
|
||||||
ssh_string mic, void *mic_buffer, size_t mic_buffer_size, void *userdata);
|
ssh_string mic, void *mic_buffer, size_t mic_buffer_size, void *userdata);
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Handles an SSH new channel open "direct-tcpip" request. This
|
|
||||||
* happens when the client forwards an incoming TCP connection on a port it
|
|
||||||
* wants to forward to the destination. This is a server-side API
|
|
||||||
* @param session current session handler
|
|
||||||
* @param destination_address the address that the TCP connection connected to
|
|
||||||
* @param destination_port the port that the TCP connection connected to
|
|
||||||
* @param originator_address the originator IP address
|
|
||||||
* @param originator_port the originator port
|
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
|
||||||
* @returns a valid ssh_channel handle if the request is to be allowed
|
|
||||||
* @returns NULL if the request should not be allowed
|
|
||||||
* @warning The channel pointer returned by this callback must be closed by the
|
|
||||||
* application.
|
|
||||||
*/
|
|
||||||
typedef ssh_channel (*ssh_channel_open_request_direct_tcpip_callback)(
|
|
||||||
ssh_session session,
|
|
||||||
const char *destination_address,
|
|
||||||
int destination_port,
|
|
||||||
const char *originator_address,
|
|
||||||
int originator_port,
|
|
||||||
void *userdata);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This structure can be used to implement a libssh server, with appropriate callbacks.
|
* This structure can be used to implement a libssh server, with appropriate callbacks.
|
||||||
@@ -415,27 +337,14 @@ struct ssh_server_callbacks_struct {
|
|||||||
*/
|
*/
|
||||||
ssh_channel_open_request_session_callback channel_open_request_session_function;
|
ssh_channel_open_request_session_callback channel_open_request_session_function;
|
||||||
/** This function will be called when a new gssapi authentication is attempted.
|
/** This function will be called when a new gssapi authentication is attempted.
|
||||||
* This should select the oid and acquire credential for the server.
|
|
||||||
*/
|
*/
|
||||||
ssh_gssapi_select_oid_callback gssapi_select_oid_function;
|
ssh_gssapi_select_oid_callback gssapi_select_oid_function;
|
||||||
/** This function will be called when a gssapi token comes in.
|
/** This function will be called when a gssapi token comes in.
|
||||||
*/
|
*/
|
||||||
ssh_gssapi_accept_sec_ctx_callback gssapi_accept_sec_ctx_function;
|
ssh_gssapi_accept_sec_ctx_callback gssapi_accept_sec_ctx_function;
|
||||||
/** This function will be called when a MIC needs to be verified.
|
/* This function will be called when a MIC needs to be verified.
|
||||||
*/
|
*/
|
||||||
ssh_gssapi_verify_mic_callback gssapi_verify_mic_function;
|
ssh_gssapi_verify_mic_callback gssapi_verify_mic_function;
|
||||||
/**
|
|
||||||
* This function will be called when an incoming "direct-tcpip"
|
|
||||||
* request is received.
|
|
||||||
*/
|
|
||||||
ssh_channel_open_request_direct_tcpip_callback
|
|
||||||
channel_open_request_direct_tcpip_function;
|
|
||||||
|
|
||||||
/** This function gets called when a client tries to authenticate through
|
|
||||||
* keyboard interactive method.
|
|
||||||
*/
|
|
||||||
ssh_auth_kbdint_callback auth_kbdint_function;
|
|
||||||
|
|
||||||
};
|
};
|
||||||
typedef struct ssh_server_callbacks_struct *ssh_server_callbacks;
|
typedef struct ssh_server_callbacks_struct *ssh_server_callbacks;
|
||||||
|
|
||||||
@@ -461,7 +370,7 @@ typedef struct ssh_server_callbacks_struct *ssh_server_callbacks;
|
|||||||
*
|
*
|
||||||
* @param cb The callback structure itself.
|
* @param cb The callback structure itself.
|
||||||
*
|
*
|
||||||
* @return `SSH_OK` on success, `SSH_ERROR` on error.
|
* @return SSH_OK on success, SSH_ERROR on error.
|
||||||
*/
|
*/
|
||||||
LIBSSH_API int ssh_set_server_callbacks(ssh_session session, ssh_server_callbacks cb);
|
LIBSSH_API int ssh_set_server_callbacks(ssh_session session, ssh_server_callbacks cb);
|
||||||
|
|
||||||
@@ -488,7 +397,7 @@ struct ssh_socket_callbacks_struct {
|
|||||||
*/
|
*/
|
||||||
ssh_callback_int_int exception;
|
ssh_callback_int_int exception;
|
||||||
/** This function is called when the ssh_socket_connect was used on the socket
|
/** This function is called when the ssh_socket_connect was used on the socket
|
||||||
* on nonblocking state, and the connection succeeded.
|
* on nonblocking state, and the connection successed.
|
||||||
*/
|
*/
|
||||||
ssh_callback_int_int connected;
|
ssh_callback_int_int connected;
|
||||||
};
|
};
|
||||||
@@ -592,17 +501,14 @@ typedef struct ssh_socket_callbacks_struct *ssh_socket_callbacks;
|
|||||||
} \
|
} \
|
||||||
} while(0)
|
} while(0)
|
||||||
|
|
||||||
/** @brief Prototype for a packet callback, to be called when a new packet
|
/** @brief Prototype for a packet callback, to be called when a new packet arrives
|
||||||
* arrives
|
|
||||||
* @param session The current session of the packet
|
* @param session The current session of the packet
|
||||||
* @param type packet type (see ssh2.h)
|
* @param type packet type (see ssh2.h)
|
||||||
* @param packet buffer containing the packet, excluding size, type and padding
|
* @param packet buffer containing the packet, excluding size, type and padding fields
|
||||||
* fields
|
|
||||||
* @param user user argument to the callback
|
* @param user user argument to the callback
|
||||||
* and are called each time a packet shows up
|
* and are called each time a packet shows up
|
||||||
* @returns `SSH_PACKET_USED` Packet was parsed and used
|
* @returns SSH_PACKET_USED Packet was parsed and used
|
||||||
* @returns `SSH_PACKET_NOT_USED` Packet was not used or understood, processing
|
* @returns SSH_PACKET_NOT_USED Packet was not used or understood, processing must continue
|
||||||
* must continue
|
|
||||||
*/
|
*/
|
||||||
typedef int (*ssh_packet_callback) (ssh_session session, uint8_t type, ssh_buffer packet, void *user);
|
typedef int (*ssh_packet_callback) (ssh_session session, uint8_t type, ssh_buffer packet, void *user);
|
||||||
|
|
||||||
@@ -661,7 +567,7 @@ typedef struct ssh_packet_callbacks_struct *ssh_packet_callbacks;
|
|||||||
*
|
*
|
||||||
* @param cb The callback structure itself.
|
* @param cb The callback structure itself.
|
||||||
*
|
*
|
||||||
* @return `SSH_OK` on success, `SSH_ERROR` on error.
|
* @return SSH_OK on success, SSH_ERROR on error.
|
||||||
*/
|
*/
|
||||||
LIBSSH_API int ssh_set_callbacks(ssh_session session, ssh_callbacks cb);
|
LIBSSH_API int ssh_set_callbacks(ssh_session session, ssh_callbacks cb);
|
||||||
|
|
||||||
@@ -719,7 +625,6 @@ typedef void (*ssh_channel_signal_callback) (ssh_session session,
|
|||||||
* @brief SSH channel exit status callback. Called when a channel has received an exit status
|
* @brief SSH channel exit status callback. Called when a channel has received an exit status
|
||||||
* @param session Current session handler
|
* @param session Current session handler
|
||||||
* @param channel the actual channel
|
* @param channel the actual channel
|
||||||
* @param exit_status Exit status of the ran command
|
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
* @param userdata Userdata to be passed to the callback function.
|
||||||
*/
|
*/
|
||||||
typedef void (*ssh_channel_exit_status_callback) (ssh_session session,
|
typedef void (*ssh_channel_exit_status_callback) (ssh_session session,
|
||||||
@@ -732,7 +637,7 @@ typedef void (*ssh_channel_exit_status_callback) (ssh_session session,
|
|||||||
* @param session Current session handler
|
* @param session Current session handler
|
||||||
* @param channel the actual channel
|
* @param channel the actual channel
|
||||||
* @param signal the signal name (without the SIG prefix)
|
* @param signal the signal name (without the SIG prefix)
|
||||||
* @param core a boolean telling whether a core has been dumped or not
|
* @param core a boolean telling wether a core has been dumped or not
|
||||||
* @param errmsg the description of the exception
|
* @param errmsg the description of the exception
|
||||||
* @param lang the language of the description (format: RFC 3066)
|
* @param lang the language of the description (format: RFC 3066)
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
* @param userdata Userdata to be passed to the callback function.
|
||||||
@@ -747,13 +652,12 @@ typedef void (*ssh_channel_exit_signal_callback) (ssh_session session,
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief SSH channel PTY request from a client.
|
* @brief SSH channel PTY request from a client.
|
||||||
* @param session the session
|
|
||||||
* @param channel the channel
|
* @param channel the channel
|
||||||
* @param term The type of terminal emulation
|
* @param term The type of terminal emulation
|
||||||
* @param width width of the terminal, in characters
|
* @param width width of the terminal, in characters
|
||||||
* @param height height of the terminal, in characters
|
* @param height height of the terminal, in characters
|
||||||
* @param pxwidth width of the terminal, in pixels
|
* @param pxwidth width of the terminal, in pixels
|
||||||
* @param pwheight height of the terminal, in pixels
|
* @param pxheight height of the terminal, in pixels
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
* @param userdata Userdata to be passed to the callback function.
|
||||||
* @returns 0 if the pty request is accepted
|
* @returns 0 if the pty request is accepted
|
||||||
* @returns -1 if the request is denied
|
* @returns -1 if the request is denied
|
||||||
@@ -767,7 +671,6 @@ typedef int (*ssh_channel_pty_request_callback) (ssh_session session,
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief SSH channel Shell request from a client.
|
* @brief SSH channel Shell request from a client.
|
||||||
* @param session the session
|
|
||||||
* @param channel the channel
|
* @param channel the channel
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
* @param userdata Userdata to be passed to the callback function.
|
||||||
* @returns 0 if the shell request is accepted
|
* @returns 0 if the shell request is accepted
|
||||||
@@ -780,7 +683,6 @@ typedef int (*ssh_channel_shell_request_callback) (ssh_session session,
|
|||||||
* @brief SSH auth-agent-request from the client. This request is
|
* @brief SSH auth-agent-request from the client. This request is
|
||||||
* sent by a client when agent forwarding is available.
|
* sent by a client when agent forwarding is available.
|
||||||
* Server is free to ignore this callback, no answer is expected.
|
* Server is free to ignore this callback, no answer is expected.
|
||||||
* @param session the session
|
|
||||||
* @param channel the channel
|
* @param channel the channel
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
* @param userdata Userdata to be passed to the callback function.
|
||||||
*/
|
*/
|
||||||
@@ -792,12 +694,7 @@ typedef void (*ssh_channel_auth_agent_req_callback) (ssh_session session,
|
|||||||
* @brief SSH X11 request from the client. This request is
|
* @brief SSH X11 request from the client. This request is
|
||||||
* sent by a client when X11 forwarding is requested(and available).
|
* sent by a client when X11 forwarding is requested(and available).
|
||||||
* Server is free to ignore this callback, no answer is expected.
|
* Server is free to ignore this callback, no answer is expected.
|
||||||
* @param session the session
|
|
||||||
* @param channel the channel
|
* @param channel the channel
|
||||||
* @param single_connection If true, only one channel should be forwarded
|
|
||||||
* @param auth_protocol The X11 authentication method to be used
|
|
||||||
* @param auth_cookie Authentication cookie encoded hexadecimal
|
|
||||||
* @param screen_number Screen number
|
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
* @param userdata Userdata to be passed to the callback function.
|
||||||
*/
|
*/
|
||||||
typedef void (*ssh_channel_x11_req_callback) (ssh_session session,
|
typedef void (*ssh_channel_x11_req_callback) (ssh_session session,
|
||||||
@@ -809,12 +706,11 @@ typedef void (*ssh_channel_x11_req_callback) (ssh_session session,
|
|||||||
void *userdata);
|
void *userdata);
|
||||||
/**
|
/**
|
||||||
* @brief SSH channel PTY windows change (terminal size) from a client.
|
* @brief SSH channel PTY windows change (terminal size) from a client.
|
||||||
* @param session the session
|
|
||||||
* @param channel the channel
|
* @param channel the channel
|
||||||
* @param width width of the terminal, in characters
|
* @param width width of the terminal, in characters
|
||||||
* @param height height of the terminal, in characters
|
* @param height height of the terminal, in characters
|
||||||
* @param pxwidth width of the terminal, in pixels
|
* @param pxwidth width of the terminal, in pixels
|
||||||
* @param pwheight height of the terminal, in pixels
|
* @param pxheight height of the terminal, in pixels
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
* @param userdata Userdata to be passed to the callback function.
|
||||||
* @returns 0 if the pty request is accepted
|
* @returns 0 if the pty request is accepted
|
||||||
* @returns -1 if the request is denied
|
* @returns -1 if the request is denied
|
||||||
@@ -827,7 +723,6 @@ typedef int (*ssh_channel_pty_window_change_callback) (ssh_session session,
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief SSH channel Exec request from a client.
|
* @brief SSH channel Exec request from a client.
|
||||||
* @param session the session
|
|
||||||
* @param channel the channel
|
* @param channel the channel
|
||||||
* @param command the shell command to be executed
|
* @param command the shell command to be executed
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
* @param userdata Userdata to be passed to the callback function.
|
||||||
@@ -841,7 +736,6 @@ typedef int (*ssh_channel_exec_request_callback) (ssh_session session,
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief SSH channel environment request from a client.
|
* @brief SSH channel environment request from a client.
|
||||||
* @param session the session
|
|
||||||
* @param channel the channel
|
* @param channel the channel
|
||||||
* @param env_name name of the environment value to be set
|
* @param env_name name of the environment value to be set
|
||||||
* @param env_value value of the environment value to be set
|
* @param env_value value of the environment value to be set
|
||||||
@@ -858,7 +752,6 @@ typedef int (*ssh_channel_env_request_callback) (ssh_session session,
|
|||||||
void *userdata);
|
void *userdata);
|
||||||
/**
|
/**
|
||||||
* @brief SSH channel subsystem request from a client.
|
* @brief SSH channel subsystem request from a client.
|
||||||
* @param session the session
|
|
||||||
* @param channel the channel
|
* @param channel the channel
|
||||||
* @param subsystem the subsystem required
|
* @param subsystem the subsystem required
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
* @param userdata Userdata to be passed to the callback function.
|
||||||
@@ -873,8 +766,6 @@ typedef int (*ssh_channel_subsystem_request_callback) (ssh_session session,
|
|||||||
/**
|
/**
|
||||||
* @brief SSH channel write will not block (flow control).
|
* @brief SSH channel write will not block (flow control).
|
||||||
*
|
*
|
||||||
* @param session the session
|
|
||||||
*
|
|
||||||
* @param channel the channel
|
* @param channel the channel
|
||||||
*
|
*
|
||||||
* @param[in] bytes size of the remote window in bytes. Writing as much data
|
* @param[in] bytes size of the remote window in bytes. Writing as much data
|
||||||
@@ -889,28 +780,6 @@ typedef int (*ssh_channel_write_wontblock_callback) (ssh_session session,
|
|||||||
uint32_t bytes,
|
uint32_t bytes,
|
||||||
void *userdata);
|
void *userdata);
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief SSH channel open callback. Called when a channel open succeeds or fails.
|
|
||||||
* @param session Current session handler
|
|
||||||
* @param channel the actual channel
|
|
||||||
* @param is_success is 1 when the open succeeds, and 0 otherwise.
|
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
|
||||||
*/
|
|
||||||
typedef void (*ssh_channel_open_resp_callback) (ssh_session session,
|
|
||||||
ssh_channel channel,
|
|
||||||
bool is_success,
|
|
||||||
void *userdata);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief SSH channel request response callback. Called when a response to the pending request is received.
|
|
||||||
* @param session Current session handler
|
|
||||||
* @param channel the actual channel
|
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
|
||||||
*/
|
|
||||||
typedef void (*ssh_channel_request_resp_callback) (ssh_session session,
|
|
||||||
ssh_channel channel,
|
|
||||||
void *userdata);
|
|
||||||
|
|
||||||
struct ssh_channel_callbacks_struct {
|
struct ssh_channel_callbacks_struct {
|
||||||
/** DON'T SET THIS use ssh_callbacks_init() instead. */
|
/** DON'T SET THIS use ssh_callbacks_init() instead. */
|
||||||
size_t size;
|
size_t size;
|
||||||
@@ -978,14 +847,6 @@ struct ssh_channel_callbacks_struct {
|
|||||||
* not to block.
|
* not to block.
|
||||||
*/
|
*/
|
||||||
ssh_channel_write_wontblock_callback channel_write_wontblock_function;
|
ssh_channel_write_wontblock_callback channel_write_wontblock_function;
|
||||||
/**
|
|
||||||
* This functions will be called when the channel has received a channel open confirmation or failure.
|
|
||||||
*/
|
|
||||||
ssh_channel_open_resp_callback channel_open_response_function;
|
|
||||||
/**
|
|
||||||
* This functions will be called when the channel has received the response to the pending request.
|
|
||||||
*/
|
|
||||||
ssh_channel_request_resp_callback channel_request_response_function;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct ssh_channel_callbacks_struct *ssh_channel_callbacks;
|
typedef struct ssh_channel_callbacks_struct *ssh_channel_callbacks;
|
||||||
@@ -1013,7 +874,7 @@ typedef struct ssh_channel_callbacks_struct *ssh_channel_callbacks;
|
|||||||
*
|
*
|
||||||
* @param cb The callback structure itself.
|
* @param cb The callback structure itself.
|
||||||
*
|
*
|
||||||
* @return `SSH_OK` on success, `SSH_ERROR` on error.
|
* @return SSH_OK on success, SSH_ERROR on error.
|
||||||
* @warning this function will not replace existing callbacks but set the
|
* @warning this function will not replace existing callbacks but set the
|
||||||
* new one atop of them.
|
* new one atop of them.
|
||||||
*/
|
*/
|
||||||
@@ -1032,7 +893,7 @@ LIBSSH_API int ssh_set_channel_callbacks(ssh_channel channel,
|
|||||||
*
|
*
|
||||||
* @param cb The callback structure itself.
|
* @param cb The callback structure itself.
|
||||||
*
|
*
|
||||||
* @return `SSH_OK` on success, `SSH_ERROR` on error.
|
* @return SSH_OK on success, SSH_ERROR on error.
|
||||||
*
|
*
|
||||||
* @see ssh_set_channel_callbacks
|
* @see ssh_set_channel_callbacks
|
||||||
*/
|
*/
|
||||||
@@ -1049,14 +910,14 @@ LIBSSH_API int ssh_add_channel_callbacks(ssh_channel channel,
|
|||||||
*
|
*
|
||||||
* @param cb The callback structure to remove
|
* @param cb The callback structure to remove
|
||||||
*
|
*
|
||||||
* @returns `SSH_OK` on success, `SSH_ERROR` on error.
|
* @returns SSH_OK on success, SSH_ERROR on error.
|
||||||
*/
|
*/
|
||||||
LIBSSH_API int ssh_remove_channel_callbacks(ssh_channel channel,
|
LIBSSH_API int ssh_remove_channel_callbacks(ssh_channel channel,
|
||||||
ssh_channel_callbacks cb);
|
ssh_channel_callbacks cb);
|
||||||
|
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
||||||
/** @addtogroup libssh_threads
|
/** @group libssh_threads
|
||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -1082,7 +943,7 @@ struct ssh_threads_callbacks_struct {
|
|||||||
* @param[in] cb A pointer to a ssh_threads_callbacks_struct structure, which
|
* @param[in] cb A pointer to a ssh_threads_callbacks_struct structure, which
|
||||||
* contains the different callbacks to be set.
|
* contains the different callbacks to be set.
|
||||||
*
|
*
|
||||||
* @returns Always returns `SSH_OK`.
|
* @returns Always returns SSH_OK.
|
||||||
*
|
*
|
||||||
* @see ssh_threads_callbacks_struct
|
* @see ssh_threads_callbacks_struct
|
||||||
* @see SSH_THREADS_PTHREAD
|
* @see SSH_THREADS_PTHREAD
|
||||||
@@ -1122,14 +983,13 @@ LIBSSH_API struct ssh_threads_callbacks_struct *ssh_threads_get_pthread(void);
|
|||||||
* @see ssh_threads_set_callbacks
|
* @see ssh_threads_set_callbacks
|
||||||
*/
|
*/
|
||||||
LIBSSH_API struct ssh_threads_callbacks_struct *ssh_threads_get_noop(void);
|
LIBSSH_API struct ssh_threads_callbacks_struct *ssh_threads_get_noop(void);
|
||||||
/** @} */
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Set the logging callback function.
|
* @brief Set the logging callback function.
|
||||||
*
|
*
|
||||||
* @param[in] cb The callback to set.
|
* @param[in] cb The callback to set.
|
||||||
*
|
*
|
||||||
* @return 0 on success, < 0 on error.
|
* @return 0 on success, < 0 on errror.
|
||||||
*/
|
*/
|
||||||
LIBSSH_API int ssh_set_log_callback(ssh_logging_callback cb);
|
LIBSSH_API int ssh_set_log_callback(ssh_logging_callback cb);
|
||||||
|
|
||||||
@@ -1140,216 +1000,7 @@ LIBSSH_API int ssh_set_log_callback(ssh_logging_callback cb);
|
|||||||
*/
|
*/
|
||||||
LIBSSH_API ssh_logging_callback ssh_get_log_callback(void);
|
LIBSSH_API ssh_logging_callback ssh_get_log_callback(void);
|
||||||
|
|
||||||
/**
|
/** @} */
|
||||||
* @brief SSH proxyjump before connection callback. Called before calling
|
|
||||||
* ssh_connect()
|
|
||||||
* @param session Jump session handler
|
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
|
||||||
*
|
|
||||||
* @return 0 on success, < 0 on error.
|
|
||||||
*/
|
|
||||||
typedef int (*ssh_jump_before_connection_callback)(ssh_session session,
|
|
||||||
void *userdata);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief SSH proxyjump verify knownhost callback. Verify the host.
|
|
||||||
* If not specified default function will be used.
|
|
||||||
* @param session Jump session handler
|
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
|
||||||
*
|
|
||||||
* @return 0 on success, < 0 on error.
|
|
||||||
*/
|
|
||||||
typedef int (*ssh_jump_verify_knownhost_callback)(ssh_session session,
|
|
||||||
void *userdata);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief SSH proxyjump user authentication callback. Authenticate the user.
|
|
||||||
* @param session Jump session handler
|
|
||||||
* @param userdata Userdata to be passed to the callback function.
|
|
||||||
*
|
|
||||||
* @return 0 on success, < 0 on error.
|
|
||||||
*/
|
|
||||||
typedef int (*ssh_jump_authenticate_callback)(ssh_session session,
|
|
||||||
void *userdata);
|
|
||||||
|
|
||||||
struct ssh_jump_callbacks_struct {
|
|
||||||
void *userdata;
|
|
||||||
ssh_jump_before_connection_callback before_connection;
|
|
||||||
ssh_jump_verify_knownhost_callback verify_knownhost;
|
|
||||||
ssh_jump_authenticate_callback authenticate;
|
|
||||||
};
|
|
||||||
|
|
||||||
/* Security key callbacks */
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Forward declarations for structs that have been defined in sk_api.h.
|
|
||||||
* If you need to work with the fields inside them, please include
|
|
||||||
* libssh/sk_api.h
|
|
||||||
*/
|
|
||||||
struct sk_enroll_response;
|
|
||||||
struct sk_sign_response;
|
|
||||||
struct sk_resident_key;
|
|
||||||
struct sk_option;
|
|
||||||
|
|
||||||
#define LIBSSH_SK_API_VERSION_MAJOR 0x000a0000
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief FIDO2/U2F SK API version callback.
|
|
||||||
*
|
|
||||||
* Returns the version of the FIDO2/U2F API that the callbacks implement.
|
|
||||||
* This callback allows custom callback implementations to specify their
|
|
||||||
* SK API version for compatibility checking with libssh's security key
|
|
||||||
* interface.
|
|
||||||
*
|
|
||||||
* @details Version compatibility is determined by comparing the major version
|
|
||||||
* portion (upper 16 bits) of the returned value with SSH_SK_VERSION_MAJOR.
|
|
||||||
*
|
|
||||||
* For compatibility, implementations should return a version where:
|
|
||||||
* (returned_version & SSH_SK_VERSION_MAJOR_MASK) == SSH_SK_VERSION_MAJOR
|
|
||||||
*
|
|
||||||
* This ensures that the callbacks' SK API matches the major version expected
|
|
||||||
* by libssh, while allowing minor version differences for backward
|
|
||||||
* compatibility.
|
|
||||||
*
|
|
||||||
* @see LIBSSH_SK_API_VERSION_MAJOR Current expected major API version
|
|
||||||
* @see SSH_SK_VERSION_MAJOR_MASK Mask for extracting major version (0xffff0000)
|
|
||||||
*/
|
|
||||||
typedef uint32_t (*sk_api_version_callback)(void);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief FIDO2/U2F key enrollment callback.
|
|
||||||
*
|
|
||||||
* Enrolls a new FIDO2/U2F security key credential (private key generation).
|
|
||||||
* This callback handles the creation of new FIDO2/U2F credentials, including
|
|
||||||
* both resident and non-resident keys.
|
|
||||||
*
|
|
||||||
* @param[in] alg The cryptographic algorithm to use
|
|
||||||
* @param[in] challenge Random challenge data for enrollment
|
|
||||||
* @param[in] challenge_len Length of the challenge data
|
|
||||||
* @param[in] application Application identifier (relying party ID)
|
|
||||||
* @param[in] flags Enrollment flags
|
|
||||||
* @param[in] pin PIN for user verification (may be NULL)
|
|
||||||
* @param[in] options Array of enrollment options (device path, user ID, etc.)
|
|
||||||
* @param[out] enroll_response Enrollment response containing public key,
|
|
||||||
* key handle, signature, and attestation data
|
|
||||||
*
|
|
||||||
* @returns SSH_OK on success, SSH_SK_ERR_* codes on failure.
|
|
||||||
*/
|
|
||||||
typedef int (*sk_enroll_callback)(uint32_t alg,
|
|
||||||
const uint8_t *challenge,
|
|
||||||
size_t challenge_len,
|
|
||||||
const char *application,
|
|
||||||
uint8_t flags,
|
|
||||||
const char *pin,
|
|
||||||
struct sk_option **options,
|
|
||||||
struct sk_enroll_response **enroll_response);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief FIDO2/U2F security key signing callback.
|
|
||||||
*
|
|
||||||
* Signs data using a FIDO2 security key credential. This callback performs
|
|
||||||
* cryptographic signing operations using previously enrolled FIDO2/U2F
|
|
||||||
* credentials.
|
|
||||||
*
|
|
||||||
* @param[in] alg The cryptographic algorithm used by the key
|
|
||||||
* @param[in] data Data to be signed
|
|
||||||
* @param[in] data_len Length of the data to sign
|
|
||||||
* @param[in] application Application identifier (relying party ID)
|
|
||||||
* @param[in] key_handle Key handle identifying the credential
|
|
||||||
* @param[in] key_handle_len Length of the key handle
|
|
||||||
* @param[in] flags Signing flags
|
|
||||||
* @param[in] pin PIN for user verification (may be NULL)
|
|
||||||
* @param[in] options Array of signing options (device path, etc.)
|
|
||||||
* @param[out] sign_response Signature response containing signature data,
|
|
||||||
* flags, and counter information
|
|
||||||
*
|
|
||||||
* @returns SSH_OK on success, SSH_SK_ERR_* codes on failure.
|
|
||||||
*/
|
|
||||||
typedef int (*sk_sign_callback)(uint32_t alg,
|
|
||||||
const uint8_t *data,
|
|
||||||
size_t data_len,
|
|
||||||
const char *application,
|
|
||||||
const uint8_t *key_handle,
|
|
||||||
size_t key_handle_len,
|
|
||||||
uint8_t flags,
|
|
||||||
const char *pin,
|
|
||||||
struct sk_option **options,
|
|
||||||
struct sk_sign_response **sign_response);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief FIDO2 security key resident keys loading callback.
|
|
||||||
*
|
|
||||||
* Enumerates and loads all resident keys (discoverable credentials) stored
|
|
||||||
* on FIDO2 devices. Resident keys are credentials stored directly on
|
|
||||||
* the device itself and can be discovered without prior knowledge
|
|
||||||
* of key handles.
|
|
||||||
*
|
|
||||||
* @param[in] pin PIN for accessing resident keys (required for most operations)
|
|
||||||
* @param[in] options Array of options (device path, etc.)
|
|
||||||
* @param[out] resident_keys Array of resident key structures containing key
|
|
||||||
* data, application IDs, user information, and metadata
|
|
||||||
* @param[out] num_keys_found Number of resident keys found and loaded
|
|
||||||
*
|
|
||||||
* @returns SSH_OK on success, SSH_SK_ERR_* codes on failure.
|
|
||||||
*/
|
|
||||||
typedef int (*sk_load_resident_keys_callback)(
|
|
||||||
const char *pin,
|
|
||||||
struct sk_option **options,
|
|
||||||
struct sk_resident_key ***resident_keys,
|
|
||||||
size_t *num_keys_found);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief FIDO2/U2F security key callbacks structure.
|
|
||||||
*
|
|
||||||
* This structure contains callbacks for FIDO2/U2F operations.
|
|
||||||
* It allows applications to provide custom implementations of FIDO2/U2F
|
|
||||||
* operations to override the default libfido2-based implementation.
|
|
||||||
*
|
|
||||||
* @warning These callbacks will only be called if libssh was built with
|
|
||||||
* FIDO2/U2F support enabled. (WITH_FIDO2 = ON).
|
|
||||||
*/
|
|
||||||
struct ssh_sk_callbacks_struct {
|
|
||||||
/** DON'T SET THIS use ssh_callbacks_init() instead. */
|
|
||||||
size_t size;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This callback returns the SK API version used by the callback
|
|
||||||
* implementation.
|
|
||||||
*
|
|
||||||
* @see sk_api_version_callback for detailed documentation
|
|
||||||
*/
|
|
||||||
sk_api_version_callback api_version;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This callback enrolls a new FIDO2/U2F credential, generating
|
|
||||||
* a new key pair and optionally storing it on the device itself
|
|
||||||
* (resident keys).
|
|
||||||
*
|
|
||||||
* @see sk_enroll_callback for detailed documentation
|
|
||||||
*/
|
|
||||||
sk_enroll_callback enroll;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This callback performs cryptographic signing operations using a
|
|
||||||
* previously enrolled FIDO2/U2F credential.
|
|
||||||
*
|
|
||||||
* @see sk_sign_callback for detailed documentation
|
|
||||||
*/
|
|
||||||
sk_sign_callback sign;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This callback enumerates and loads all resident keys (discoverable
|
|
||||||
* credentials) stored on the FIDO2 device.
|
|
||||||
*
|
|
||||||
* @see sk_load_resident_keys_callback for detailed documentation
|
|
||||||
*/
|
|
||||||
sk_load_resident_keys_callback load_resident_keys;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct ssh_sk_callbacks_struct *ssh_sk_callbacks;
|
|
||||||
|
|
||||||
const struct ssh_sk_callbacks_struct *ssh_sk_get_default_callbacks(void);
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -18,10 +18,6 @@ struct chacha_ctx {
|
|||||||
#define CHACHA_CTRLEN 8
|
#define CHACHA_CTRLEN 8
|
||||||
#define CHACHA_STATELEN (CHACHA_NONCELEN+CHACHA_CTRLEN)
|
#define CHACHA_STATELEN (CHACHA_NONCELEN+CHACHA_CTRLEN)
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
void chacha_keysetup(struct chacha_ctx *x, const uint8_t *k, uint32_t kbits)
|
void chacha_keysetup(struct chacha_ctx *x, const uint8_t *k, uint32_t kbits)
|
||||||
#ifdef HAVE_GCC_BOUNDED_ATTRIBUTE
|
#ifdef HAVE_GCC_BOUNDED_ATTRIBUTE
|
||||||
__attribute__((__bounded__(__minbytes__, 2, CHACHA_MINKEYLEN)))
|
__attribute__((__bounded__(__minbytes__, 2, CHACHA_MINKEYLEN)))
|
||||||
@@ -41,8 +37,4 @@ void chacha_encrypt_bytes(struct chacha_ctx *x, const uint8_t *m,
|
|||||||
#endif
|
#endif
|
||||||
;
|
;
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* CHACHA_H */
|
#endif /* CHACHA_H */
|
||||||
|
|||||||
@@ -22,10 +22,6 @@
|
|||||||
#define CHANNELS_H_
|
#define CHANNELS_H_
|
||||||
#include "libssh/priv.h"
|
#include "libssh/priv.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/** @internal
|
/** @internal
|
||||||
* Describes the different possible states in a
|
* Describes the different possible states in a
|
||||||
* outgoing (client) channel request
|
* outgoing (client) channel request
|
||||||
@@ -39,7 +35,7 @@ enum ssh_channel_request_state_e {
|
|||||||
SSH_CHANNEL_REQ_STATE_ACCEPTED,
|
SSH_CHANNEL_REQ_STATE_ACCEPTED,
|
||||||
/** A request has been replied and refused */
|
/** A request has been replied and refused */
|
||||||
SSH_CHANNEL_REQ_STATE_DENIED,
|
SSH_CHANNEL_REQ_STATE_DENIED,
|
||||||
/** A request has been replied and an error happened */
|
/** A request has been replied and an error happend */
|
||||||
SSH_CHANNEL_REQ_STATE_ERROR
|
SSH_CHANNEL_REQ_STATE_ERROR
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -80,12 +76,7 @@ struct ssh_channel_struct {
|
|||||||
ssh_buffer stdout_buffer;
|
ssh_buffer stdout_buffer;
|
||||||
ssh_buffer stderr_buffer;
|
ssh_buffer stderr_buffer;
|
||||||
void *userarg;
|
void *userarg;
|
||||||
struct {
|
int exit_status;
|
||||||
bool status;
|
|
||||||
uint32_t code;
|
|
||||||
char *signal;
|
|
||||||
bool core_dumped;
|
|
||||||
} exit;
|
|
||||||
enum ssh_channel_request_state_e request_state;
|
enum ssh_channel_request_state_e request_state;
|
||||||
struct ssh_list *callbacks; /* list of ssh_channel_callbacks */
|
struct ssh_list *callbacks; /* list of ssh_channel_callbacks */
|
||||||
|
|
||||||
@@ -118,8 +109,4 @@ int ssh_global_request(ssh_session session,
|
|||||||
ssh_buffer buffer,
|
ssh_buffer buffer,
|
||||||
int reply);
|
int reply);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* CHANNELS_H_ */
|
#endif /* CHANNELS_H_ */
|
||||||
|
|||||||
@@ -24,7 +24,6 @@
|
|||||||
#ifndef LIBSSH_CONFIG_H_
|
#ifndef LIBSSH_CONFIG_H_
|
||||||
#define LIBSSH_CONFIG_H_
|
#define LIBSSH_CONFIG_H_
|
||||||
|
|
||||||
#include "libssh/libssh.h"
|
|
||||||
|
|
||||||
enum ssh_config_opcode_e {
|
enum ssh_config_opcode_e {
|
||||||
/* Unknown opcode */
|
/* Unknown opcode */
|
||||||
@@ -63,18 +62,7 @@ enum ssh_config_opcode_e {
|
|||||||
SOC_PUBKEYACCEPTEDKEYTYPES,
|
SOC_PUBKEYACCEPTEDKEYTYPES,
|
||||||
SOC_REKEYLIMIT,
|
SOC_REKEYLIMIT,
|
||||||
SOC_IDENTITYAGENT,
|
SOC_IDENTITYAGENT,
|
||||||
SOC_IDENTITIESONLY,
|
|
||||||
SOC_CONTROLMASTER,
|
|
||||||
SOC_CONTROLPATH,
|
|
||||||
SOC_CERTIFICATE,
|
|
||||||
SOC_REQUIRED_RSA_SIZE,
|
|
||||||
SOC_ADDRESSFAMILY,
|
|
||||||
SOC_GSSAPIKEYEXCHANGE,
|
|
||||||
SOC_GSSAPIKEXALGORITHMS,
|
|
||||||
|
|
||||||
SOC_MAX /* Keep this one last in the list */
|
SOC_MAX /* Keep this one last in the list */
|
||||||
};
|
};
|
||||||
enum ssh_config_opcode_e ssh_config_get_opcode(char *keyword);
|
|
||||||
int ssh_config_parse_line_cli(ssh_session session, const char *line);
|
|
||||||
|
|
||||||
#endif /* LIBSSH_CONFIG_H_ */
|
#endif /* LIBSSH_CONFIG_H_ */
|
||||||
|
|||||||