Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
N
nettle
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Wim Lewis
nettle
Commits
57122465
Commit
57122465
authored
Oct 23, 2014
by
Niels Möller
Browse files
Options
Downloads
Patches
Plain Diff
Fixed out-of-bounds reads in memxor.
parent
dbcea3e4
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog
+3
-0
3 additions, 0 deletions
ChangeLog
memxor.c
+35
-8
35 additions, 8 deletions
memxor.c
with
38 additions
and
8 deletions
ChangeLog
+
3
−
0
View file @
57122465
2014-10-23 Niels Möller <nisse@lysator.liu.se>
2014-10-23 Niels Möller <nisse@lysator.liu.se>
* memxor.c (memxor_different_alignment): Avoid out-of-bounds
reads, corresponding to valgrind's --partial-loads-ok.
* configure.ac (asm_replace_list): Deleted memxor.asm, now
* configure.ac (asm_replace_list): Deleted memxor.asm, now
incompatible with the memxor/memxor3 split.
incompatible with the memxor/memxor3 split.
...
...
This diff is collapsed.
Click to expand it.
memxor.c
+
35
−
8
View file @
57122465
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
# include "config.h"
# include "config.h"
#endif
#endif
#include
<assert.h>
#include
<limits.h>
#include
<limits.h>
#include
"memxor.h"
#include
"memxor.h"
...
@@ -69,29 +70,44 @@ memxor_common_alignment (word_t *dst, const word_t *src, size_t n)
...
@@ -69,29 +70,44 @@ memxor_common_alignment (word_t *dst, const word_t *src, size_t n)
words, not bytes. Assumes we can read complete words at the start
words, not bytes. Assumes we can read complete words at the start
and end of the src operand. */
and end of the src operand. */
static
void
static
void
memxor_different_alignment
(
word_t
*
dst
,
const
char
*
src
,
size_t
n
)
memxor_different_alignment
(
word_t
*
dst
,
const
unsigned
char
*
src
,
size_t
n
)
{
{
int
shl
,
shr
;
int
shl
,
shr
;
const
word_t
*
src_word
;
const
word_t
*
src_word
;
unsigned
offset
=
ALIGN_OFFSET
(
src
);
unsigned
offset
=
ALIGN_OFFSET
(
src
);
word_t
s0
,
s1
;
word_t
s0
,
s1
;
const
unsigned
char
*
part
;
unsigned
i
;
assert
(
n
>
0
);
shl
=
CHAR_BIT
*
offset
;
shl
=
CHAR_BIT
*
offset
;
shr
=
CHAR_BIT
*
(
sizeof
(
word_t
)
-
offset
);
shr
=
CHAR_BIT
*
(
sizeof
(
word_t
)
-
offset
);
src_word
=
(
const
word_t
*
)
((
uintptr_t
)
src
&
-
sizeof
(
word_t
));
src_word
=
(
const
word_t
*
)
((
uintptr_t
)
src
&
-
sizeof
(
word_t
));
/* Read top offset bytes, in native byte order. */
part
=
src
+
n
*
sizeof
(
word_t
)
-
offset
;
#if WORDS_BIGENDIAN
for
(
s0
=
part
[
0
],
i
=
1
;
i
<
offset
;
i
++
)
s0
=
(
s0
<<
CHAR_BIT
)
|
part
[
i
];
s0
<<=
shr
;
/* FIXME: Eliminate this shift? */
#else
/* !WORDS_BIGENDIAN */
for
(
i
=
offset
,
s0
=
part
[
--
i
];
i
>
0
;
)
s0
=
(
s0
<<
CHAR_BIT
)
|
part
[
--
i
];
#endif
/* !WORDS_BIGENDIAN */
/* Do n-1 regular iterations */
if
(
n
&
1
)
if
(
n
&
1
)
s1
=
s0
;
else
{
{
n
--
;
n
--
;
s1
=
src_word
[
n
];
s1
=
src_word
[
n
];
s0
=
src_word
[
n
+
1
];
/* FIXME: Overread */
dst
[
n
]
^=
MERGE
(
s1
,
shl
,
s0
,
shr
);
dst
[
n
]
^=
MERGE
(
s1
,
shl
,
s0
,
shr
);
}
}
else
s1
=
src_word
[
n
];
/* FIXME: Overread */
while
(
n
>
0
)
assert
(
n
&
1
);
while
(
n
>
2
)
{
{
n
-=
2
;
n
-=
2
;
s0
=
src_word
[
n
+
1
];
s0
=
src_word
[
n
+
1
];
...
@@ -99,6 +115,17 @@ memxor_different_alignment (word_t *dst, const char *src, size_t n)
...
@@ -99,6 +115,17 @@ memxor_different_alignment (word_t *dst, const char *src, size_t n)
s1
=
src_word
[
n
];
/* FIXME: Overread on last iteration */
s1
=
src_word
[
n
];
/* FIXME: Overread on last iteration */
dst
[
n
]
^=
MERGE
(
s1
,
shl
,
s0
,
shr
);
dst
[
n
]
^=
MERGE
(
s1
,
shl
,
s0
,
shr
);
}
}
assert
(
n
==
1
);
/* Read low wordsize - offset bytes */
#if WORDS_BIGENDIAN
for
(
s0
=
src
[
0
],
i
=
1
;
i
<
sizeof
(
word_t
)
-
offset
;
i
++
)
s0
=
(
s0
<<
CHAR_BIT
)
|
src
[
i
];
#else
/* !WORDS_BIGENDIAN */
for
(
i
=
sizeof
(
word_t
)
-
offset
,
s0
=
src
[
--
i
];
i
>
0
;
)
s0
=
(
s0
<<
CHAR_BIT
)
|
src
[
--
i
];
s0
<<=
shl
;
/* FIXME: eliminate shift? */
#endif
/* !WORDS_BIGENDIAN */
dst
[
0
]
^=
MERGE
(
s0
,
shl
,
s1
,
shr
);
}
}
/* Performance, Intel SU1400 (x86_64): 0.25 cycles/byte aligned, 0.45
/* Performance, Intel SU1400 (x86_64): 0.25 cycles/byte aligned, 0.45
...
@@ -109,8 +136,8 @@ memxor_different_alignment (word_t *dst, const char *src, size_t n)
...
@@ -109,8 +136,8 @@ memxor_different_alignment (word_t *dst, const char *src, size_t n)
void
*
void
*
memxor
(
void
*
dst_in
,
const
void
*
src_in
,
size_t
n
)
memxor
(
void
*
dst_in
,
const
void
*
src_in
,
size_t
n
)
{
{
char
*
dst
=
dst_in
;
unsigned
char
*
dst
=
dst_in
;
const
char
*
src
=
src_in
;
const
unsigned
char
*
src
=
src_in
;
if
(
n
>=
WORD_T_THRESH
)
if
(
n
>=
WORD_T_THRESH
)
{
{
...
@@ -129,7 +156,7 @@ memxor(void *dst_in, const void *src_in, size_t n)
...
@@ -129,7 +156,7 @@ memxor(void *dst_in, const void *src_in, size_t n)
n
%=
sizeof
(
word_t
);
n
%=
sizeof
(
word_t
);
if
(
offset
)
if
(
offset
)
memxor_different_alignment
((
word_t
*
)
(
dst
+
n
),
(
src
+
n
)
,
nwords
);
memxor_different_alignment
((
word_t
*
)
(
dst
+
n
),
src
+
n
,
nwords
);
else
else
memxor_common_alignment
((
word_t
*
)
(
dst
+
n
),
memxor_common_alignment
((
word_t
*
)
(
dst
+
n
),
(
const
word_t
*
)
(
src
+
n
),
nwords
);
(
const
word_t
*
)
(
src
+
n
),
nwords
);
...
...
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