Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Question about remote clone #1060

Open
b-smiley opened this issue Jun 15, 2024 · 1 comment
Open

Question about remote clone #1060

b-smiley opened this issue Jun 15, 2024 · 1 comment

Comments

@b-smiley
Copy link

b-smiley commented Jun 15, 2024

Overview

The provided documentation for cloning with an SSH key closely follows the code below. I keep getting an authentication error even after trying most of the closed-issue solutions in this repository. I suspect that the error is coming from libssh2 dependency because when I trace the bug it appears to be erroring out in remote.c.

The SSH key does work with the environment because it clones properly when using git in terminal

Error

Failed to clone: failed to start SSH session: Unable to exchange encryption keys; class=Ssh (23) 😡

Code

Rust Code

use git2::{build::RepoBuilder, Cred, Error, FetchOptions, RemoteCallbacks, Repository};
use std::env;
use std::path::Path;

fn main() {
    let url = "ssh://git@localhost:2222/home/git/repos/test.git";
    let path = Path::new("./test");

    let mut callbacks = RemoteCallbacks::new();

    callbacks.credentials(|_url, username_from_url, _allowed_types| {
        Cred::ssh_key(
            username_from_url.unwrap(),
            None,
            std::path::Path::new(&format!("{}/.ssh/id_rsa", env::var("HOME").unwrap())),
            None,
        )
    });

    let mut fetch_options = FetchOptions::new();
    fetch_options.remote_callbacks(callbacks);

    let mut builder = RepoBuilder::new();
    builder.fetch_options(fetch_options);

    match builder.clone(&url, &path) {
        Ok(repo) => println!("Successfully cloned into {}", repo.path().display()),
        Err(e) => println!("Failed to clone: {}", e),
    }
}

Enviroment

  • Client (Me): Windows 11
  • Git Server: Docker Container with ubuntu (see docker-compose below)

docker-compose.yml

services:
  git-server:
    build: .
    ports:
      - "2222:22"
    volumes:
      - ./ssh:/home/git/.ssh

dockerfile

FROM ubuntu:latest

# Update and install git and openssh-server
# Create the directory for the sshd server
RUN apt-get update && \
    apt-get install -y git openssh-server && \
    mkdir /var/run/sshd


# Switch to the git user and create the .ssh directory with git user permissions
RUN useradd -m git && \
    su git -c "mkdir -p ~/.ssh && chmod 700 ~/.ssh && touch ~/.ssh/authorized_keys && chmod 600 ~/.ssh/authorized_keys"

# ⚠️ Must add the ssh key to the authorized_keys file see read me for more
RUN chmod 700 /home/git/.ssh && \
    chmod 600 /home/git/.ssh/authorized_keys

RUN chown -R git:git /home/git/.ssh

# Create a folder for the git repositories
RUN su git -c "mkdir /home/git/repos"

# Create a test repository
RUN su git -c "cd /home/git/repos && git init --bare test.git"

# Expose the ssh port
EXPOSE 22

# Start the sshd server
CMD ["/usr/sbin/sshd", "-D"]

SSH key creation

ssh-keygen -t rsa -b 4096 -C "[email protected]"
I then put this key in the mount .ssh folder and put it in a file called authorized_keys.

Final Remark

I am just trying to get a test environment for a server set up so I can test it with my actual application. If anyone has an alternative approach.

@Some1and2-XC
Copy link

Its pretty simple, this is the line where the example code finds your ssh keys.
std::path::Path::new(&format!("{}/.ssh/id_rsa", env::var("HOME").unwrap())),

Basically its looking at ~/.ssh/id_rsa while you're initializing ~/.ssh/authorized_keys to have your ssh info.
Changing the format! section to format!("{}/.ssh/authorized_keys"...) should do the trick.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants