-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
libgit2: use provided host to validate public key
The callback from libgit2 only provides a hostname (without the port), but the `known_hosts` file indexes the public keys based on the full host (e.g. `[localhost]:123` for a host behind a specific port). As a result, it was unable to find the correct public key for the hostname when it was added to the `known_hosts` file with the port. To work around this, we add the user provided host that includes the port to the `PublicKeyAuth` strategy, and use this to find the right entry in the `known_hosts` file, after having validated that the hostname provided to the callback matches the hostname of the host provided by the user. Signed-off-by: Hidde Beydals <[email protected]>
- Loading branch information
Showing
2 changed files
with
18 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,8 +73,8 @@ func TestAuthSecretStrategyForURL(t *testing.T) { | |
}{ | ||
{"HTTP", "http://git.example.com/org/repo.git", &BasicAuth{}, false}, | ||
{"HTTPS", "https://git.example.com/org/repo.git", &BasicAuth{}, false}, | ||
{"SSH", "ssh://git.example.com:2222/org/repo.git", &PublicKeyAuth{}, false}, | ||
{"SSH with username", "ssh://[email protected]:2222/org/repo.git", &PublicKeyAuth{user: "example"}, false}, | ||
{"SSH", "ssh://git.example.com:2222/org/repo.git", &PublicKeyAuth{host: "git.example.com:2222"}, false}, | ||
{"SSH with username", "ssh://[email protected]:2222/org/repo.git", &PublicKeyAuth{user: "example", host: "git.example.com:2222"}, false}, | ||
{"unsupported", "protocol://example.com", nil, true}, | ||
} | ||
for _, tt := range tests { | ||
|