Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
apk-tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hassan Albahri
apk-tools
Commits
67108bf0
Commit
67108bf0
authored
15 years ago
by
Timo Teräs
Browse files
Options
Downloads
Patches
Plain Diff
io: fix corruption of big files on mmap write
remember to increment destination pointer; and munmap the proper base address.
parent
fe43d8ab
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/io.c
+13
-14
13 additions, 14 deletions
src/io.c
with
13 additions
and
14 deletions
src/io.c
+
13
−
14
View file @
67108bf0
...
...
@@ -114,21 +114,19 @@ size_t apk_istream_splice(void *stream, int fd, size_t size,
{
static
void
*
splice_buffer
=
NULL
;
struct
apk_istream
*
is
=
(
struct
apk_istream
*
)
stream
;
unsigned
char
*
buf
=
MAP_FAILED
;
size_t
bufsz
,
done
=
0
,
r
,
togo
,
mmapped
=
0
;
unsigned
char
*
buf
,
*
mmapbase
=
MAP_FAILED
;
size_t
bufsz
,
done
=
0
,
r
,
togo
;
bufsz
=
size
;
if
(
size
>
128
*
1024
)
{
if
(
ftruncate
(
fd
,
size
)
==
0
)
buf
=
mmap
(
NULL
,
size
,
PROT_READ
|
PROT_WRITE
,
MAP_SHARED
,
fd
,
0
);
if
(
buf
!=
MAP_FAILED
)
{
mmapped
=
1
;
if
(
bufsz
>
2
*
1024
*
1024
)
bufsz
=
2
*
1024
*
1024
;
}
mmapbase
=
mmap
(
NULL
,
size
,
PROT_READ
|
PROT_WRITE
,
MAP_SHARED
,
fd
,
0
);
if
(
bufsz
>
2
*
1024
*
1024
)
bufsz
=
2
*
1024
*
1024
;
buf
=
mmapbase
;
}
if
(
!
mmap
ped
)
{
if
(
mmap
base
==
MAP_FAILED
)
{
if
(
splice_buffer
==
NULL
)
splice_buffer
=
malloc
(
256
*
1024
);
buf
=
splice_buffer
;
...
...
@@ -149,13 +147,14 @@ size_t apk_istream_splice(void *stream, int fd, size_t size,
if
(
r
<
0
)
goto
err
;
if
(
!
mmap
ped
)
{
if
(
mmap
base
==
MAP_FAILED
)
{
if
(
write
(
fd
,
buf
,
r
)
!=
r
)
{
if
(
r
<
0
)
r
=
-
errno
;
goto
err
;
}
}
}
else
buf
+=
r
;
done
+=
r
;
if
(
r
!=
togo
)
...
...
@@ -163,8 +162,8 @@ size_t apk_istream_splice(void *stream, int fd, size_t size,
}
r
=
done
;
err:
if
(
mmap
ped
)
munmap
(
buf
,
size
);
if
(
mmap
base
!=
MAP_FAILED
)
munmap
(
mmapbase
,
size
);
return
r
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment