mirror of https://github.com/google/oss-fuzz.git
[g-api-resource-manager] Update Project Repo to Fix Build (#12015)
Fixes [Monorail Issue 59721][Monorail-issue]. The https://github.com/googleapis/python-resource-manager repository was archived on 2023-09-05 and the project was moved to the `google-cloud-resource-manager` package in the https://github.com/googleapis/google-cloud-python repository. The upstream migration removed the source code from the original repo, resulting in the broken build. [Monorail-issue]: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=59721 ## Other Changes Introduced Here ### Fixes for Missing Instrumentation of Native Extension Code See9a8989bf73
### Fuzzer Update Seed33e0a4156
## Related PRs Fixing Similar Issues - #12014 - #12016
This commit is contained in:
parent
9e02afd41e
commit
3d3fb7d583
|
@ -15,8 +15,10 @@
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
FROM gcr.io/oss-fuzz-base/base-builder-python
|
FROM gcr.io/oss-fuzz-base/base-builder-python
|
||||||
RUN apt-get update && apt-get install -y make autoconf automake libtool
|
RUN apt-get update && \
|
||||||
RUN pip3 install --upgrade pip && pip install google-api-core google-cloud-core mock
|
apt-get install -y libre2-dev zlib1g-dev libssl-dev
|
||||||
RUN git clone --depth 1 https://github.com/googleapis/python-resource-manager
|
RUN python3 -m pip install --upgrade pip && \
|
||||||
WORKDIR python-resource-manager
|
python3 -m pip install --upgrade mock
|
||||||
|
RUN git clone --depth 1 https://github.com/googleapis/google-cloud-python $SRC/google-cloud-python
|
||||||
|
WORKDIR $SRC/google-cloud-python/packages/google-cloud-resource-manager
|
||||||
COPY build.sh *.py $SRC/
|
COPY build.sh *.py $SRC/
|
||||||
|
|
|
@ -15,7 +15,12 @@
|
||||||
#
|
#
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
GRPC_PYTHON_CFLAGS="${CFLAGS}" GRPC_PYTHON_BUILD_SYSTEM_RE2=true GRPC_PYTHON_BUILD_SYSTEM_OPENSSL=true GRPC_PYTHON_BUILD_SYSTEM_ZLIB=true pip3 install -v .
|
GRPC_PYTHON_CFLAGS="${CFLAGS}" \
|
||||||
|
GRPC_PYTHON_BUILD_SYSTEM_RE2=true \
|
||||||
|
GRPC_PYTHON_BUILD_SYSTEM_OPENSSL=true \
|
||||||
|
GRPC_PYTHON_BUILD_SYSTEM_ZLIB=true \
|
||||||
|
MAX_JOBS=$(nproc) \
|
||||||
|
python3 -m pip install -v . --no-binary :all:
|
||||||
|
|
||||||
for fuzzer in $(find $SRC -name 'fuzz_*.py'); do
|
for fuzzer in $(find $SRC -name 'fuzz_*.py'); do
|
||||||
compile_python_fuzzer $fuzzer
|
compile_python_fuzzer $fuzzer
|
||||||
|
|
|
@ -14,12 +14,11 @@
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
"""Fuzzer for google/cloud/resourcemanager_v3/services/tag_values/client.py"""
|
"""Fuzzer for google/cloud/resourcemanager_v3/services/tag_values/client.py"""
|
||||||
|
|
||||||
import os
|
|
||||||
import sys
|
import sys
|
||||||
|
import mock
|
||||||
import atheris
|
import atheris
|
||||||
|
|
||||||
import mock
|
with atheris.instrument_imports():
|
||||||
|
|
||||||
from google.auth import credentials as ga_credentials
|
from google.auth import credentials as ga_credentials
|
||||||
from google.longrunning import operations_pb2
|
from google.longrunning import operations_pb2
|
||||||
from google.iam.v1 import iam_policy_pb2
|
from google.iam.v1 import iam_policy_pb2
|
||||||
|
@ -133,8 +132,7 @@ def TestOneInput(data):
|
||||||
target(fdp, client)
|
target(fdp, client)
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
atheris.instrument_all()
|
atheris.Setup(sys.argv, TestOneInput)
|
||||||
atheris.Setup(sys.argv, TestOneInput, enable_python_coverage=True)
|
|
||||||
atheris.Fuzz()
|
atheris.Fuzz()
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
fuzzing_engines:
|
fuzzing_engines:
|
||||||
- libfuzzer
|
- libfuzzer
|
||||||
homepage: https://github.com/googleapis/python-resource-manager
|
homepage: https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-resource-manager
|
||||||
language: python
|
language: python
|
||||||
main_repo: https://github.com/googleapis/python-resource-manager
|
main_repo: https://github.com/googleapis/google-cloud-python
|
||||||
sanitizers:
|
sanitizers:
|
||||||
- address
|
- address
|
||||||
- undefined
|
- undefined
|
||||||
|
|
Loading…
Reference in New Issue