Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve/numpy fuzzing #13022

Merged
merged 3 commits into from
Feb 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions projects/numpy/fuzz_datetime.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
#!/usr/bin/python3
# Copyright 2022 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import atheris
import os
import sys

with atheris.instrument_imports():
import numpy as np

def TestOneInput(input_bytes):
fdp = atheris.FuzzedDataProvider(input_bytes)
input_str = fdp.ConsumeString(sys.maxsize)
try:
np.datetime64(input_str)
except ValueError:
return
except SyntaxError:
return

def main():
atheris.instrument_all()
atheris.Setup(sys.argv, TestOneInput, enable_python_coverage=True)
atheris.Fuzz()

if __name__ == "__main__":
main()
41 changes: 41 additions & 0 deletions projects/numpy/fuzz_dtype.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
#!/usr/bin/python3
# Copyright 2022 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import atheris
import os
import sys

with atheris.instrument_imports():
import numpy as np

def TestOneInput(input_bytes):
fdp = atheris.FuzzedDataProvider(input_bytes)
input_str = fdp.ConsumeString(sys.maxsize)
try:
np.dtype(input_str)
except ValueError:
return
except TypeError:
return
except SyntaxError:
return

def main():
atheris.instrument_all()
atheris.Setup(sys.argv, TestOneInput, enable_python_coverage=True)
atheris.Fuzz()

if __name__ == "__main__":
main()
50 changes: 50 additions & 0 deletions projects/numpy/fuzz_fromfile_loader.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#!/usr/bin/python3
# Copyright 2022 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import atheris
import os
import sys
import tempfile
from tokenize import TokenError
from zipfile import BadZipFile

with atheris.instrument_imports():
import numpy as np

def TestOneInput(input_bytes):
with tempfile.NamedTemporaryFile(suffix=".dat", delete=False) as fd:
fdp = atheris.FuzzedDataProvider(input_bytes)
fd.write(fdp.ConsumeBytes(sys.maxsize))
tmpname = fd.name

try:
np.fromfile(tmpname)
# Catch all of the exceptions that are documented in help(np.load)
except OSError:
return
except ValueError:
return
except EOFError:
return
finally:
os.remove(tmpname)

def main():
atheris.instrument_all()
atheris.Setup(sys.argv, TestOneInput, enable_python_coverage=True)
atheris.Fuzz()

if __name__ == "__main__":
main()
66 changes: 66 additions & 0 deletions projects/numpy/fuzz_fromregex_loader.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
#!/usr/bin/python3
# Copyright 2022 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import atheris
import os
import re
import sys
import tempfile
from tokenize import TokenError
from zipfile import BadZipFile

with atheris.instrument_imports():
import numpy as np

def TestOneInput(input_bytes):
fdp = atheris.FuzzedDataProvider(input_bytes)
input_str = fdp.ConsumeString(20)
try:
dtype = np.dtype(input_str)
except (ValueError, TypeError, SyntaxError):
return

input_str = fdp.ConsumeString(20)
try:
reg = re.compile(input_str)
except (ValueError, TypeError, re.error,OverflowError):
return

with tempfile.NamedTemporaryFile(suffix=".txt", delete=False) as fd:
fd.write(fdp.ConsumeBytes(5000))
tmpname = fd.name

try:
a = np.fromregex(tmpname, reg, dtype)
if a.shape != (0,):
print(a.shape)
except OSError:
return
except TypeError:
return
except ValueError:
return
except EOFError:
return
finally:
os.remove(tmpname)

def main():
atheris.instrument_all()
atheris.Setup(sys.argv, TestOneInput, enable_python_coverage=True)
atheris.Fuzz()

if __name__ == "__main__":
main()
Loading