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
3644e98f
Commit
3644e98f
authored
Mar 18, 2011
by
nulltoken
Committed by
Vicent Marti
Mar 23, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix detection of attempt to escape the root directory on Windows
parent
c90292ce
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
4 deletions
+38
-4
src/fileops.c
+6
-4
tests/t00-core.c
+32
-0
No files found.
src/fileops.c
View file @
3644e98f
...
...
@@ -503,13 +503,15 @@ int gitfo_mkdir_recurs(const char *path, int mode)
static
int
retrieve_previous_path_component_start
(
const
char
*
path
)
{
int
offset
,
len
,
start
=
0
;
int
offset
,
len
,
root_offset
,
start
=
0
;
root_offset
=
retrieve_path_root_offset
(
path
);
if
(
root_offset
>
-
1
)
start
+=
root_offset
;
len
=
strlen
(
path
);
offset
=
len
-
1
;
//TODO: Deal with Windows rooted path
/* Skip leading slash */
if
(
path
[
start
]
==
'/'
)
start
++
;
...
...
@@ -518,7 +520,7 @@ static int retrieve_previous_path_component_start(const char *path)
if
(
path
[
offset
]
==
'/'
)
offset
--
;
if
(
offset
<
0
)
if
(
offset
<
root_offset
)
return
GIT_ERROR
;
while
(
offset
>
start
&&
path
[
offset
-
1
]
!=
'/'
)
{
...
...
tests/t00-core.c
View file @
3644e98f
...
...
@@ -389,6 +389,37 @@ BEGIN_TEST(path6, "properly join path components for more than one path")
must_pass
(
ensure_joinpath_n
(
"a"
,
"b"
,
""
,
"/c/d"
,
"a/b/c/d"
));
END_TEST
static
int
count_number_of_path_segments
(
const
char
*
path
)
{
int
number
=
0
;
char
*
current
=
(
char
*
)
path
;
while
(
*
current
)
{
if
(
*
current
++
==
'/'
)
number
++
;
}
assert
(
number
>
0
);
return
--
number
;
}
BEGIN_TEST
(
path7
,
"prevent a path which escapes the root directory from being prettified"
)
char
current_workdir
[
GIT_PATH_MAX
];
char
prettified
[
GIT_PATH_MAX
];
int
i
=
0
,
number_to_escape
;
must_pass
(
gitfo_getcwd
(
current_workdir
,
sizeof
(
current_workdir
)));
number_to_escape
=
count_number_of_path_segments
(
current_workdir
);
for
(
i
=
0
;
i
<
number_to_escape
+
1
;
i
++
)
git__joinpath
(
current_workdir
,
current_workdir
,
"../"
);
must_fail
(
gitfo_prettify_dir_path
(
prettified
,
sizeof
(
prettified
),
current_workdir
));
END_TEST
typedef
struct
name_data
{
int
count
;
/* return count */
char
*
name
;
/* filename */
...
...
@@ -645,6 +676,7 @@ BEGIN_SUITE(core)
ADD_TEST
(
path4
);
ADD_TEST
(
path5
);
ADD_TEST
(
path6
);
ADD_TEST
(
path7
);
ADD_TEST
(
dirent0
);
ADD_TEST
(
dirent1
);
...
...
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