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
3853ba8d
Commit
3853ba8d
authored
Apr 22, 2023
by
Edward Thomson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
smart: validate shallow/unshallow pkts
parent
48273490
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
6 deletions
+24
-6
src/libgit2/transports/smart_pkt.c
+24
-6
No files found.
src/libgit2/transports/smart_pkt.c
View file @
3853ba8d
...
...
@@ -444,11 +444,15 @@ static int shallow_pkt(git_pkt **out, const char *line, size_t len)
GIT_ERROR_CHECK_ALLOC
(
pkt
);
pkt
->
type
=
GIT_PKT_SHALLOW
;
line
+=
7
;
len
-=
7
;
if
(
git__prefixncmp
(
line
,
len
,
"shallow "
))
goto
out_err
;
line
+=
8
;
len
-=
8
;
if
(
len
>=
GIT_OID_SHA1_HEXSIZE
)
{
git_oid__fromstr
(
&
pkt
->
oid
,
line
+
1
,
GIT_OID_SHA1
);
git_oid__fromstr
(
&
pkt
->
oid
,
line
,
GIT_OID_SHA1
);
line
+=
GIT_OID_SHA1_HEXSIZE
+
1
;
len
-=
GIT_OID_SHA1_HEXSIZE
+
1
;
}
...
...
@@ -456,6 +460,11 @@ static int shallow_pkt(git_pkt **out, const char *line, size_t len)
*
out
=
(
git_pkt
*
)
pkt
;
return
0
;
out_err:
git_error_set
(
GIT_ERROR_NET
,
"invalid packet line"
);
git__free
(
pkt
);
return
-
1
;
}
static
int
unshallow_pkt
(
git_pkt
**
out
,
const
char
*
line
,
size_t
len
)
...
...
@@ -466,11 +475,15 @@ static int unshallow_pkt(git_pkt **out, const char *line, size_t len)
GIT_ERROR_CHECK_ALLOC
(
pkt
);
pkt
->
type
=
GIT_PKT_UNSHALLOW
;
line
+=
9
;
len
-=
9
;
if
(
git__prefixncmp
(
line
,
len
,
"unshallow "
))
goto
out_err
;
line
+=
10
;
len
-=
10
;
if
(
len
>=
GIT_OID_SHA1_HEXSIZE
)
{
git_oid__fromstr
(
&
pkt
->
oid
,
line
+
1
,
GIT_OID_SHA1
);
git_oid__fromstr
(
&
pkt
->
oid
,
line
,
GIT_OID_SHA1
);
line
+=
GIT_OID_SHA1_HEXSIZE
+
1
;
len
-=
GIT_OID_SHA1_HEXSIZE
+
1
;
}
...
...
@@ -478,6 +491,11 @@ static int unshallow_pkt(git_pkt **out, const char *line, size_t len)
*
out
=
(
git_pkt
*
)
pkt
;
return
0
;
out_err:
git_error_set
(
GIT_ERROR_NET
,
"invalid packet line"
);
git__free
(
pkt
);
return
-
1
;
}
static
int
parse_len
(
size_t
*
out
,
const
char
*
line
,
size_t
linelen
)
...
...
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