Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
58 changes: 58 additions & 0 deletions floss/language/cli_common.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# Copyright 2023 Google LLC
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why does this say 2023?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I used that from the other file, I'll update that to 2026

#
# 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 logging
import argparse

import pefile

logger = logging.getLogger(__name__)


def add_common_args(parser: argparse.ArgumentParser, default_min_length: int):
parser.add_argument("path", help="file or path to analyze")
parser.add_argument(
"-n",
"--minimum-length",
dest="min_length",
type=int,
default=default_min_length,
help="minimum string length",
)

logging_group = parser.add_argument_group("logging arguments")
logging_group.add_argument("-d", "--debug", action="store_true", help="enable debugging output on STDERR")
logging_group.add_argument(
"-q",
"--quiet",
action="store_true",
help="disable all status output except fatal errors",
)


def configure_logging(args: argparse.Namespace):
if args.debug:
logging.basicConfig(level=logging.DEBUG)
logging.getLogger().setLevel(logging.DEBUG)
else:
logging.basicConfig(level=logging.INFO)
logging.getLogger().setLevel(logging.INFO)


def open_pe_or_none(path: str):
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i don't think this function is worth it. let's remove.

try:
return pefile.PE(path)
except pefile.PEFormatError as err:
logger.debug(f"NOT a valid PE file: {err}")
return None
34 changes: 5 additions & 29 deletions floss/language/go/coverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,10 @@
import argparse
from typing import List

import pefile

from floss.utils import get_static_strings
from floss.results import StaticString, StringEncoding
from floss.language.utils import get_extract_stats
from floss.language.cli_common import add_common_args, open_pe_or_none, configure_logging
from floss.language.go.extract import extract_go_strings

logger = logging.getLogger(__name__)
Expand All @@ -32,36 +31,13 @@

def main():
parser = argparse.ArgumentParser(description="Get Go strings")
parser.add_argument("path", help="file or path to analyze")
parser.add_argument(
"-n",
"--minimum-length",
dest="min_length",
type=int,
default=MIN_STR_LEN,
help="minimum string length",
)
logging_group = parser.add_argument_group("logging arguments")
logging_group.add_argument("-d", "--debug", action="store_true", help="enable debugging output on STDERR")
logging_group.add_argument(
"-q",
"--quiet",
action="store_true",
help="disable all status output except fatal errors",
)
add_common_args(parser, MIN_STR_LEN)
args = parser.parse_args()

if args.debug:
logging.basicConfig(level=logging.DEBUG)
logging.getLogger().setLevel(logging.DEBUG)
else:
logging.basicConfig(level=logging.INFO)
logging.getLogger().setLevel(logging.INFO)
configure_logging(args)

try:
pe = pefile.PE(args.path)
except pefile.PEFormatError as err:
logger.debug(f"NOT a valid PE file: {err}")
pe = open_pe_or_none(args.path)
if pe is None:
return 1

path = pathlib.Path(args.path)
Expand Down
34 changes: 6 additions & 28 deletions floss/language/rust/coverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@

from floss.strings import extract_ascii_unicode_strings
from floss.language.utils import get_extract_stats
from floss.language.cli_common import add_common_args, open_pe_or_none, configure_logging
from floss.language.rust.extract import extract_rust_strings

logger = logging.getLogger(__name__)
Expand All @@ -32,36 +33,13 @@

def main():
parser = argparse.ArgumentParser(description="Get Rust strings")
parser.add_argument("path", help="file or path to analyze")
parser.add_argument(
"-n",
"--minimum-length",
dest="min_length",
type=int,
default=MIN_STR_LEN,
help="minimum string length",
)
logging_group = parser.add_argument_group("logging arguments")
logging_group.add_argument("-d", "--debug", action="store_true", help="enable debugging output on STDERR")
logging_group.add_argument(
"-q",
"--quiet",
action="store_true",
help="disable all status output except fatal errors",
)
add_common_args(parser, MIN_STR_LEN)
args = parser.parse_args()

if args.debug:
logging.basicConfig(level=logging.DEBUG)
logging.getLogger().setLevel(logging.DEBUG)
else:
logging.basicConfig(level=logging.INFO)
logging.getLogger().setLevel(logging.INFO)

try:
pe = pefile.PE(args.path)
except pefile.PEFormatError as err:
logger.debug(f"NOT a valid PE file: {err}")
configure_logging(args)

pe = open_pe_or_none(args.path)
if pe is None:
return 1

path = pathlib.Path(args.path)
Expand Down