Olivier Coulaud

35 papers A 1C 3Journal 20Unranked 10
YearRankTypeTitle / Venue / Authors
2026 J jnl
Comput. Aided Des.
Olivier Coulaud
2025 conf
IPDPS (Workshops)
Przemyslaw Dominikowski, Atte Torri, Brice Pointal, Oguz Kaya, Laércio Lima Pilla, Olivier Coulaud
2025 conf
Euro-Par (3)
Atte Torri, Przemyslaw Dominikowski, Brice Pointal, Oguz Kaya, Laércio Lima Pilla, Olivier Coulaud
2024 J jnl
J. Comput. Phys.
Olivier Coulaud, Adrien Loseille, Pierre Schrooyen
2023 A conf
IPDPS
Emmanuel Agullo, Alfredo Buttari, Olivier Coulaud, Lionel Eyraud-Dubois, Mathieu Faverge, Alain Franc, Abdou Guermouche, Antoine Jego, Romain Peressoni, Florent Pruvost
2022 J jnl
CoRR
Olivier Coulaud, Luc Giraud, Martina Iannacito
2022 J jnl
CoRR
Olivier Coulaud, Luc Giraud, Martina Iannacito
2021 J jnl
CoRR
Olivier Coulaud, Alain Franc, Martina Iannacito
2020 J jnl
Optim. Lett.
Alain Franc, Pierre Blanchard, Olivier Coulaud
2018 J jnl
CoRR
Alain Franc, Pierre Blanchard, Olivier Coulaud
2017 J jnl
IEEE Trans. Parallel Distributed Syst.
Emmanuel Agullo, Olivier Aumage, Bérenger Bramas, Olivier Coulaud, Samuel Pitoiset
2016 J jnl
Concurr. Comput. Pract. Exp.
Emmanuel Agullo, Bérenger Bramas, Olivier Coulaud, Eric Darve, Matthias Messner, Toru Takahashi
2015 J jnl
Parallel Comput.
Bérenger Bramas, Olivier Coulaud, Guillaume Sylvand
2014 J jnl
SIAM J. Sci. Comput.
Emmanuel Agullo, Bérenger Bramas, Olivier Coulaud, Eric Darve, Matthias Messner, Toru Takahashi
2014 conf
Euro-Par
Bérenger Bramas, Olivier Coulaud, Guillaume Sylvand
2013 book
Olivier Coulaud
2013 J jnl
CoRR
Olivier Coulaud, Patrice Bordat, Pierre Fayon, Vincent Lebris, Isabelle Baraille, Ross Brown
2012 conf
SC Companion
Emmanuel Agullo, George Bosilca, Bérenger Bramas, Cedric Castagnede, Olivier Coulaud, Eric Darve, Jack J. Dongarra, Mathieu Faverge, Nathalie Furmento, Luc Giraud, Xavier Lacoste, Julien Langou, Hatem Ltaief, Matthias Messner, Raymond Namyst, Pierre Ramet, Toru Takahashi, Samuel Thibault, Stanimire Tomov, Ichitaro Yamazaki
2012 J jnl
Concurr. Comput. Pract. Exp.
Rached Abdelkhalek, Henri Calandra, Olivier Coulaud, Guillaume Latu, Jean Roman
2012 J jnl
CoRR
Matthias Messner, Bérenger Bramas, Olivier Coulaud, Eric Darve
2012 J jnl
CoRR
Emmanuel Agullo, Bérenger Bramas, Olivier Coulaud, Eric Darve, Matthias Messner, Toru Takahashi
2012 conf
SC Companion
Emmanuel Agullo, George Bosilca, Bérenger Bramas, Cedric Castagnede, Olivier Coulaud, Eric Darve, Jack J. Dongarra, Mathieu Faverge, Nathalie Furmento, Luc Giraud, Xavier Lacoste, Julien Langou, Hatem Ltaief, Matthias Messner, Raymond Namyst, Pierre Ramet, Toru Takahashi, Samuel Thibault, Stanimire Tomov, Ichitaro Yamazaki
2011 conf
Euro-Par (2)
Olivier Coulaud, Kengo Nakajima, Esmond G. Ng, Mariano Vázquez
2010 J jnl
Math. Comput. Model.
Olivier Coulaud, Pierre Fortin, Jean Roman
2009 conf
HPCS
Rached Abdelkhalek, Henri Calandra, Olivier Coulaud, Jean Roman, Guillaume Latu
2008 J jnl
J. Comput. Phys.
Olivier Coulaud, Pierre Fortin, Jean Roman
2007 C conf
ISPDC
Olivier Coulaud, Pierre Fortin, Jean Roman
2007 C conf
ISPDC
Nicolas Richart, Aurélien Esnard, Olivier Coulaud
2006 C conf
DS-RT
Aurélien Esnard, Nicolas Richart, Olivier Coulaud
2006 conf
ICPP Workshops
Guillaume Anciaux, Olivier Coulaud, Jean Roman
2004 conf
Euro-Par
Aurélien Esnard, Michaël Dussere, Olivier Coulaud
2003 J jnl
Parallel Comput.
Olivier Coulaud, Michaël Dussere, Pascal Hénon, Erik Lefebvre, Jean Roman
2003 conf
PARCO
Olivier Coulaud, Michaël Dussere, Aurélien Esnard
2000 J jnl
Numer. Algorithms
Olivier Coulaud, Pierre-Eric Bernard
1998 J jnl
J. Parallel Distributed Comput.
Olivier Coulaud, Eric Dillon
redb/extractors/pe_extractors/pe_imports.py
← Index redb/extractors/pe_extractors/pe_imports.py python
import inspect
from typing import Any, List, Tuple
from datetime import datetime, timezone

from redb.extractors.enum import Tag
from redb.extractors.pe_extractor import PEExtractor
from redb.models.dataclasses import PEImport


class PEImportExtractor(PEExtractor):

    def __init__(
        self,
        filepath,
        log,
        exporters=None,
        index_prefix=None,
        elastic_index=None,
        known_benign=False,
        known_malicious=False,
        pe=None,
    ):
        super().__init__(
            filepath,
            log,
            exporters,
            index_prefix,
            elastic_index,
            known_benign,
            known_malicious,
            pe,
        )
        self.elastic_index = self.index_prefix + "-pe_imports"
        self.log.debug(inspect.currentframe().f_code.co_name)

    def tag(self):
        return Tag.PE_IMPORT.value

    def _extract_imports(self):
        self.log.debug(inspect.currentframe().f_code.co_name)

        imports_symbols = []
        imports_lib = []
        imports_total = 0
        # pe_import = None
        try:
            directory_entry_import = getattr(self.pe, "DIRECTORY_ENTRY_IMPORT", [])
            imports_total = len(directory_entry_import)
            for entry in directory_entry_import:
                symbols = []
                tmp_import = {}
                libname = entry.dll.decode() if entry.dll else ""
                imports_lib.append(libname)
                # replace . with _ to avoid issues with elastic
                # entryname = entryname.replace(".", "_")
                for symbol in entry.imports:
                    if symbol.name:
                        symbols.append(symbol.name.decode())
                # imports_symbols[entryname] = symbols
                tmp_import[libname] = symbols
                imports_symbols.append(tmp_import)
            return PEImport(
                pe_imports_total=imports_total,
                pe_import_libraryName=imports_lib if imports_lib else None,
                pe_import_functions=imports_symbols if imports_symbols else None,
            )
        except Exception as e:
            self.log.error(f"Extract imports error {self.hash.sha256} Exception: {e}")
        return pe_import

    def extract(self):
        try:
            self.log.debug(inspect.currentframe().f_code.co_name)
            return self._extract_imports()
        except Exception as e:
            self.log.error(f"Extract imports error {self.hash.sha256} Exception: {e}")
            return None

    def prepare_export_data(self, exporter_type: str) -> Any:
        if exporter_type == "ElasticsearchExporter":
            return self.extract()
        elif exporter_type == "ClickHouseExporter":
            imports = self.extract()
            if (
                imports is None
                or imports.pe_imports_total == 0
                or (
                    imports.pe_import_libraryName is None
                    and imports.pe_import_functions is None
                )
            ):
                return None

            # Flatten the data - one row per function import
            data = []
            current_time = datetime.now(timezone.utc)

            for lib_funcs in imports.pe_import_functions:
                for lib, funcs in lib_funcs.items():
                    for func in funcs:
                        data.append(
                            [
                                self.sha256,  # sha256
                                self.md5,  # md5
                                self.sha1,  # sha1
                                lib,  # library_name
                                func,  # function_name
                                current_time,  # analysis_date
                            ]
                        )

            column_names = [
                "sha256",
                "md5",
                "sha1",
                "library_name",
                "function_name",
                "analysis_date",
            ]

            column_type_names = [
                "FixedString(64)",
                "FixedString(32)",
                "FixedString(40)",
                "LowCardinality(Nullable(String))",
                "LowCardinality(Nullable(String))",
                "DateTime64(3, 'UTC')",
            ]

            if not data:
                return None

            return (data, column_names, column_type_names)

    def get_clickhouse_table(self) -> str:
        return "redb_pe_imports"