Viet-Trung Tran

18 papers B 1C 1Journal 3Unranked 12
YearRankTypeTitle / Venue / Authors
2024 conf
KSE
Xuan-Dung Doan, Viet-Hoang Vu, Ngoc-Dung Nguyen, Viet-Trung Tran
2023 conf
ACIIDS (Companion)
Trung-Kien Nguyen, Viet-Trung Tran, Huy-Anh Nguyen, Khac-Hoai Nam Bui
2022 conf
ACIIDS (1)
Viet-Trung Tran, Hai-Nam Cao, Tuan-Dung Cao
2022 conf
KSE
Viet-Trung Tran, Van-Sang Tran, Xuan-Bang Nguyen, The-Trung Tran
2022 J jnl
CoRR
Viet-Trung Tran, Hai-Nam Cao, Tuan-Dung Cao
2022 C conf
IEA/AIE
Hai-Nam Cao, Duc-Thai Do, Viet-Trung Tran, Tuan-Dung Cao, Young-In Song
2021 conf
RIVF
Hai-Nam Cao, Viet-Trung Tran
2019 conf
SoICT
Hong-Ngoc Bui, Viet-Trung Tran
2018 J jnl
CoRR
Hong-Hai Phan-Vu, Viet-Trung Tran, Van-Nam Nguyen, Hoang-Vu Dang, Phan-Thuan Do
2017 conf
SoICT
Hong-Hai Phan-Vu, Van-Nam Nguyen, Viet-Trung Tran, Phan-Thuan Do
2016 conf
KSE
Viet-Trung Tran, Kiem-Hieu Nguyen, Duc-Hanh Bui
2016 conf
KSE
Hung Tien Tran, Hiep Tuan Nguyen, Viet-Trung Tran
2015 conf
SoICT
Hoang-Linh Truong, Duy-Khanh Bui, Viet-Trung Tran
2013
Viet-Trung Tran
2012 J jnl
ACM SIGOPS Oper. Syst. Rev.
Viet-Trung Tran, Bogdan Nicolae, Gabriel Antoniu
2011 B conf
CCGRID
Viet-Trung Tran, Bogdan Nicolae, Gabriel Antoniu, Luc Bougé
2011 conf
IPDPS Workshops
Viet-Trung Tran
2009 conf
CoreGRID@Euro-Par
Viet-Trung Tran, Gabriel Antoniu, Bogdan Nicolae, Luc Bougé, Osamu Tatebe
redb/extractors/decompiler/apk/library_filter.py
← Index redb/extractors/decompiler/apk/library_filter.py python
"""Package-based library filtering for APK DEX code analysis.

Determines whether a method belongs to a known library/framework package
and should be filtered out of content tables. This is the Android equivalent
of is_lib_or_thunk() in the Binary Ninja pipeline.
"""

import os
from typing import Dict, List


DEFAULT_LIBRARY_PREFIXES = [
    "android.",
    "androidx.",
    "com.google.android.",
    "com.google.firebase.",
    "com.google.gson.",
    "com.google.protobuf.",
    "kotlin.",
    "kotlinx.",
    "org.apache.",
    "com.squareup.",
    "io.reactivex.",
    "org.reactivestreams.",
    "com.facebook.",
    "com.crashlytics.",
    "io.fabric.",
    "org.junit.",
    "org.mockito.",
]


class LibraryFilter:
    """Filters library/framework classes from APK analysis."""

    def __init__(self, prefixes: List[str] = None):
        env_prefixes = os.getenv("APK_LIBRARY_PREFIXES")
        if env_prefixes:
            self._prefixes = [p.strip() for p in env_prefixes.split(",") if p.strip()]
        elif prefixes is not None:
            self._prefixes = prefixes
        else:
            self._prefixes = DEFAULT_LIBRARY_PREFIXES

        # Convert Dalvik-style prefixes to both formats for matching
        self._dot_prefixes = tuple(self._prefixes)

        self._stats = {"library": 0, "user": 0}

    def is_library(self, class_name: str) -> bool:
        """Check if a class belongs to a known library/framework package.

        Accepts both Java dot notation (com.example.Foo) and Dalvik
        descriptor notation (Lcom/example/Foo;).
        """
        # Normalize Dalvik descriptor to dot notation
        normalized = self._normalize_class_name(class_name)

        is_lib = normalized.startswith(self._dot_prefixes)
        if is_lib:
            self._stats["library"] += 1
        else:
            self._stats["user"] += 1
        return is_lib

    def get_filter_stats(self) -> Dict[str, int]:
        """Return counts of filtered vs. retained classes."""
        return dict(self._stats)

    @staticmethod
    def _normalize_class_name(class_name: str) -> str:
        """Convert Dalvik descriptor to dot notation.

        Lcom/example/Foo; -> com.example.Foo
        com.example.Foo -> com.example.Foo
        """
        if class_name.startswith("L") and class_name.endswith(";"):
            return class_name[1:-1].replace("/", ".")
        return class_name.replace("/", ".")