Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
Olm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Nheko Reborn
Olm
Commits
bfeb554e
Commit
bfeb554e
authored
8 years ago
by
Mark Haines
Browse files
Options
Downloads
Patches
Plain Diff
Add a fuzzer for olm_group_decrypt
parent
ee8172d8
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Makefile
+1
-1
1 addition, 1 deletion
Makefile
fuzzers/fuzz_decrypt.cpp
+1
-0
1 addition, 0 deletions
fuzzers/fuzz_decrypt.cpp
fuzzers/fuzz_group_decrypt.cpp
+71
-0
71 additions, 0 deletions
fuzzers/fuzz_group_decrypt.cpp
fuzzers/include/fuzzing.hh
+13
-3
13 additions, 3 deletions
fuzzers/include/fuzzing.hh
with
86 additions
and
4 deletions
Makefile
+
1
−
1
View file @
bfeb554e
...
...
@@ -7,7 +7,7 @@ JS_OPTIMIZE_FLAGS ?= -O3
FUZZING_OPTIMIZE_FLAGS
?=
-O3
CC
=
gcc
EMCC
=
emcc
AFL_CC
=
afl
_
gcc
AFL_CC
=
afl
-
gcc
AFL_CXX
=
afl-g++
RELEASE_TARGET
:=
$(
BUILD_DIR
)
/libolm.so
DEBUG_TARGET
:=
$(
BUILD_DIR
)
/libolm_debug.so
...
...
This diff is collapsed.
Click to expand it.
fuzzers/fuzz_decrypt.cpp
+
1
−
0
View file @
bfeb554e
...
...
@@ -61,4 +61,5 @@ int main(int argc, const char *argv[]) {
ignored
=
write
(
STDOUT_FILENO
,
plaintext
,
length
);
ignored
=
write
(
STDOUT_FILENO
,
"
\n
"
,
1
);
return
ignored
;
}
This diff is collapsed.
Click to expand it.
fuzzers/fuzz_group_decrypt.cpp
0 → 100644
+
71
−
0
View file @
bfeb554e
#include
"olm/olm.hh"
#include
"fuzzing.hh"
int
main
(
int
argc
,
const
char
*
argv
[])
{
size_t
ignored
;
if
(
argc
<=
2
)
{
const
char
*
message
=
"Usage: decrypt <pickle_key> <group_session>
\n
"
;
ignored
=
write
(
STDERR_FILENO
,
message
,
strlen
(
message
));
exit
(
3
);
}
const
char
*
key
=
argv
[
1
];
size_t
key_length
=
strlen
(
key
);
int
session_fd
=
check_errno
(
"Error opening session file"
,
open
(
argv
[
2
],
O_RDONLY
)
);
uint8_t
*
session_buffer
;
ssize_t
session_length
=
check_errno
(
"Error reading session file"
,
read_file
(
session_fd
,
&
session_buffer
)
);
int
message_fd
=
STDIN_FILENO
;
uint8_t
*
message_buffer
;
ssize_t
message_length
=
check_errno
(
"Error reading message file"
,
read_file
(
message_fd
,
&
message_buffer
)
);
uint8_t
*
tmp_buffer
=
(
uint8_t
*
)
malloc
(
message_length
);
memcpy
(
tmp_buffer
,
message_buffer
,
message_length
);
uint8_t
session_memory
[
olm_inbound_group_session_size
()];
OlmInboundGroupSession
*
session
=
olm_inbound_group_session
(
session_memory
);
check_error
(
olm_inbound_group_session_last_error
,
session
,
"Error unpickling session"
,
olm_unpickle_inbound_group_session
(
session
,
key
,
key_length
,
session_buffer
,
session_length
)
);
size_t
max_length
=
check_error
(
olm_inbound_group_session_last_error
,
session
,
"Error getting plaintext length"
,
olm_group_decrypt_max_plaintext_length
(
session
,
tmp_buffer
,
message_length
)
);
uint8_t
plaintext
[
max_length
];
size_t
length
=
check_error
(
olm_inbound_group_session_last_error
,
session
,
"Error decrypting message"
,
olm_group_decrypt
(
session
,
message_buffer
,
message_length
,
plaintext
,
max_length
)
);
ignored
=
write
(
STDOUT_FILENO
,
plaintext
,
length
);
ignored
=
write
(
STDOUT_FILENO
,
"
\n
"
,
1
);
return
ignored
;
}
This diff is collapsed.
Click to expand it.
fuzzers/include/fuzzing.hh
+
13
−
3
View file @
bfeb554e
...
...
@@ -53,13 +53,15 @@ T check_errno(
return
value
;
}
size_t
check_session
(
OlmSession
*
session
,
template
<
typename
T
,
typename
F
>
size_t
check_error
(
F
f
,
T
*
object
,
const
char
*
message
,
size_t
value
)
{
if
(
value
==
olm_error
())
{
const
char
*
olm_message
=
olm_session_last_error
(
session
);
const
char
*
olm_message
=
f
(
object
);
ssize_t
ignored
;
ignored
=
write
(
STDERR_FILENO
,
message
,
strlen
(
message
));
ignored
=
write
(
STDERR_FILENO
,
": "
,
2
);
...
...
@@ -70,3 +72,11 @@ size_t check_session(
}
return
value
;
}
size_t
check_session
(
OlmSession
*
session
,
const
char
*
message
,
size_t
value
)
{
return
check_error
(
olm_session_last_error
,
session
,
message
,
value
);
}
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