Skip to content

Commit

Permalink
Improve/numpy fuzzing (#13022)
Browse files Browse the repository at this point in the history
  • Loading branch information
serge-sans-paille authored Feb 18, 2025
1 parent dc8367f commit 8da9681
Show file tree
Hide file tree
Showing 4 changed files with 196 additions and 0 deletions.
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()

0 comments on commit 8da9681

Please sign in to comment.