Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
ab8a0fdb
Commit
ab8a0fdb
authored
Jan 06, 2017
by
Edward Thomson
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '25_certcheckcb' into maint/v0.25
parents
75db289a
98d66240
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
2 deletions
+30
-2
src/transports/http.c
+1
-2
tests/online/badssl.c
+29
-0
No files found.
src/transports/http.c
View file @
ab8a0fdb
...
...
@@ -624,13 +624,12 @@ static int http_connect(http_subtransport *t)
if
((
!
error
||
error
==
GIT_ECERTIFICATE
)
&&
t
->
owner
->
certificate_check_cb
!=
NULL
&&
git_stream_is_encrypted
(
t
->
io
))
{
git_cert
*
cert
;
int
is_valid
;
int
is_valid
=
(
error
==
GIT_OK
)
;
if
((
error
=
git_stream_certificate
(
&
cert
,
t
->
io
))
<
0
)
return
error
;
giterr_clear
();
is_valid
=
error
!=
GIT_ECERTIFICATE
;
error
=
t
->
owner
->
certificate_check_cb
(
cert
,
is_valid
,
t
->
connection_data
.
host
,
t
->
owner
->
message_cb_payload
);
if
(
error
<
0
)
{
...
...
tests/online/badssl.c
View file @
ab8a0fdb
...
...
@@ -10,37 +10,66 @@ static bool g_has_ssl = true;
static
bool
g_has_ssl
=
false
;
#endif
static
int
cert_check_assert_invalid
(
git_cert
*
cert
,
int
valid
,
const
char
*
host
,
void
*
payload
)
{
GIT_UNUSED
(
cert
);
GIT_UNUSED
(
host
);
GIT_UNUSED
(
payload
);
cl_assert_equal_i
(
0
,
valid
);
return
GIT_ECERTIFICATE
;
}
void
test_online_badssl__expired
(
void
)
{
git_clone_options
opts
=
GIT_CLONE_OPTIONS_INIT
;
opts
.
fetch_opts
.
callbacks
.
certificate_check
=
cert_check_assert_invalid
;
if
(
!
g_has_ssl
)
cl_skip
();
cl_git_fail_with
(
GIT_ECERTIFICATE
,
git_clone
(
&
g_repo
,
"https://expired.badssl.com/fake.git"
,
"./fake"
,
NULL
));
cl_git_fail_with
(
GIT_ECERTIFICATE
,
git_clone
(
&
g_repo
,
"https://expired.badssl.com/fake.git"
,
"./fake"
,
&
opts
));
}
void
test_online_badssl__wrong_host
(
void
)
{
git_clone_options
opts
=
GIT_CLONE_OPTIONS_INIT
;
opts
.
fetch_opts
.
callbacks
.
certificate_check
=
cert_check_assert_invalid
;
if
(
!
g_has_ssl
)
cl_skip
();
cl_git_fail_with
(
GIT_ECERTIFICATE
,
git_clone
(
&
g_repo
,
"https://wrong.host.badssl.com/fake.git"
,
"./fake"
,
NULL
));
cl_git_fail_with
(
GIT_ECERTIFICATE
,
git_clone
(
&
g_repo
,
"https://wrong.host.badssl.com/fake.git"
,
"./fake"
,
&
opts
));
}
void
test_online_badssl__self_signed
(
void
)
{
git_clone_options
opts
=
GIT_CLONE_OPTIONS_INIT
;
opts
.
fetch_opts
.
callbacks
.
certificate_check
=
cert_check_assert_invalid
;
if
(
!
g_has_ssl
)
cl_skip
();
cl_git_fail_with
(
GIT_ECERTIFICATE
,
git_clone
(
&
g_repo
,
"https://self-signed.badssl.com/fake.git"
,
"./fake"
,
NULL
));
cl_git_fail_with
(
GIT_ECERTIFICATE
,
git_clone
(
&
g_repo
,
"https://self-signed.badssl.com/fake.git"
,
"./fake"
,
&
opts
));
}
void
test_online_badssl__old_cipher
(
void
)
{
git_clone_options
opts
=
GIT_CLONE_OPTIONS_INIT
;
opts
.
fetch_opts
.
callbacks
.
certificate_check
=
cert_check_assert_invalid
;
if
(
!
g_has_ssl
)
cl_skip
();
cl_git_fail
(
git_clone
(
&
g_repo
,
"https://rc4.badssl.com/fake.git"
,
"./fake"
,
NULL
));
cl_git_fail
(
git_clone
(
&
g_repo
,
"https://rc4.badssl.com/fake.git"
,
"./fake"
,
&
opts
));
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment