Open Byron opened 10 months ago
@Byron libssh2 is what libgit2 uses, so I'd expect it to be sufficiently mature.
ssh2 appears to just be bindings to libssh2.
So it seems like the choice is between libssh2 (mature and used elsewhere) or russh (pure Rust).
So it seems like the choice is between libssh2 (mature and used elsewhere) or russh (pure Rust).
Maybe gitoxide can add new features for:
so that cargo can always use libssh2 as dylib, while other who want to avoid dynamic dep on external C lib can either use external ssh cmd or use russh?
Thanks @joshtriplett for pointing that out - the issue has been updated for correctness, and I agree about the choice, particularly if it's true that libssh
doesn't have Rust bindings yet.
so that cargo can always use libssh2 as dylib, while other who want to avoid dynamic dep on external C lib can either use external ssh cmd or use russh?
There could definitely be multiple implementations, even though I don't know how much effort it is to integrate them correctly (usually, how much configuration git
applies or libgit2
allows to pass so gitoxide
would have to match it for Cargo-compatibility).
It was always my thought that the current ssh
transport (based on the ssh
program) can remain as basis that is the default on linux (as per the gitoxide.ssh.transport
configuration or something like that), and is changed to a built-in implementation in Windows by default while still allowing the user to change it to a built-in variant provided it was compiled in.
even though I don't know how much effort it is to integrate them correctly
I think the libssh2 is definitely the easier one to implement given that cargo also uses it.
russh might be missing some configuration/support for some ciphers, though I think it would still be great to add support for it, I'm hoping for a mature ssh implementation in (pure) Rust.
It was always my thought that the current
ssh
transport (based on thessh
program) can remain as basis that is the default on linux (as per thegitoxide.ssh.transport
configuration or something like that), and is changed to a built-in implementation in Windows by default while still allowing the user to change it to a built-in variant provided it was compiled in.
I agree, though AFAIK Windows also provides ssh from a certain windows 10 version.
I would definitely want them to be gated behind feature flags since for cargo-binstall I might choose to use external ssh cmd only.
russh currently requires openssl for RSA key support, which is a bit unfortunate since it takes away ability to use pure-rust alternatives such as ring or rust-crypto.
On the plus side, there's async-ssh2-tokio
, a high level wrapper for russh, providing an async API compatible with tokio.
BTW, one thing I always desire is the support of async in high-level API, so that:
AtomicBool
for cancellationreqwest::Client
, which contains a conn pool, and the tokio
runtimetokio::task::spawn_blocking
or tokio::task::block_in_place
when using gixI understand why it is structured as is, because using async can be painful, its future size returned might be huge and IIRC compiler can't return huge future without copying yet (there's some missed optimization opportunities) and async-trait is still not supported very well, plus using async would immediately cause all high-level API to switch to async.
And most of the operation is synchronous for now (filesystem operations) and it's only fetching that uses network operations.
Though in the future - with the io-uring being adopted by runtime, it would also help reducing I/O for gitoxide, especially if the repository is large.
Tokio is already working on it in crate tokio-uring
and they might eventually use it as a backend in tokio
tokio-rs/tokio#2411
Hey folks, I think russh
supports a pure rust RSA now after #273
That's good news! it's time to start adopting russh in gitoxide once 0.44 comes out.
I just noticed that russh 0.44.0 has been released today.
Summary 💡
A built-in transport that allows to manually configure an SSH connection without the need for the
ssh
program.Candidates for the
ssh
part are:russh
- Rustssh-agent
, which makes it something I'd seriously look atssh2
- Rust bindings tolibssh2
libssh2
- C librarylibgit2
libssh
libssh
- C librarylibssh2
, but has undesirable licenseMotivation 🔦
Cargo should be standalone, and right now it needs the
ssh
-program to clonessh://
URLs. Even though this is beneficial on Linux, it's usually not very portable and often won't work at all on Windows.git2
hasssh
support built-in usinglibssh
which works, but has a less desirable license thanlibssh2
.References
enum
git2
ssh configuration options, which is whatcargo
caters to and is implemented with.sync
(or async if needed) version of theTransport
traitssh
program, along with the the git-upload-pack invocationSuggestions
Requirement