File Hash Fingerprinting Across Mount Namespaces

Resolve Bottlenecks,
Find Innovative Solutions
Generate Solutions

Solution Overview

Problem

Existing malware detection methods are vulnerable to time-of-check-to-time-of-use (TOCTTOU) race conditions, particularly in cloud computing environments, due to limitations in kernel modifications and mount namespace restrictions, which compromise file integrity verification and resource security.

Innovation Solution

A two-stage file hashing solution involving a kernel resident portion using eBPF and a user space resident portion to generate a file hash, combined with mount namespace tracking, to ensure accurate file integrity verification without requiring kernel updates.

Engineering Contradictions & Design Principles

VSEngineering Contradiction Analysis

1Reliability

If malware detection is performed by scanning application files prior to execution, then malware can be detected, but the system is vulnerable to TOCTTOU race conditions where file contents may be replaced between scanning and execution

Engineering Contradiction:
Improvefile integrity verificationVSAvoidTOCTTOU race condition
Core Design Contradiction:
ReliabilityVSObject-affected harmful factors

Solution Approach 1:

The system performs preliminary actions by capturing fingerprinting data (inode number, device identifier, mount count) at the moment of application execution in kernel space, and preemptively switches to the target process's mount namespace before generating the file hash in user space. This ensures the file remains accessible and its fingerprinting data remains valid throughout the hash generation process, preventing TOCTTOU race conditions.

Inventive Principle:
Principle #10Preliminary action

Solution Approach 2:

The patent introduces an intermediary mechanism (mount namespace switching) that bridges kernel space and user space operations. By switching to the target process's mount namespace, the system creates a consistent filesystem view that links the fingerprinting data captured in kernel space with the file hash generation in user space, ensuring data consistency without requiring kernel modifications.

Inventive Principle:
Principle #24Intermediary (Mediator)

2Reliability

If kernel modifications are made to prevent TOCTTOU race conditions, then file integrity can be ensured, but system complexity increases and kernel updates are required

Engineering Contradiction:
Improvefile integrity verificationVSAvoidkernel modification complexity
Core Design Contradiction:
ReliabilityVSDevice complexity

Solution Approach 1:

The patent uses mount namespace switching as an intermediary mechanism that operates at the boundary between kernel and user space without requiring kernel modifications. The eBPF program in kernel space captures fingerprinting data and triggers a namespace switch, then the user space application performs hash generation in the switched namespace. This intermediary approach achieves reliable file integrity verification while keeping the kernel unchanged.

Inventive Principle:
Principle #24Intermediary (Mediator)

Solution Approach 2:

The system leverages existing Linux kernel features (eBPF, mount namespaces) to achieve file integrity verification without requiring custom kernel modifications. The kernel's built-in namespace mechanism is used to provide the necessary isolation and consistency, allowing the solution to serve itself using existing infrastructure rather than requiring additional kernel developments.

Inventive Principle:
Principle #25Self-service

3Ease of manufacture

If file hash generation is performed in user space after application execution, then kernel resources are preserved, but mount namespace restrictions prevent access to the target application file

Engineering Contradiction:
Improveimplementation simplicityVSAvoidmount namespace restriction
Core Design Contradiction:
Ease of manufactureVSObject-affected harmful factors

Solution Approach 1:

The system performs preliminary action by switching to the target process's mount namespace before the user space application attempts to access the file for hash generation. The eBPF program detects application execution, captures fingerprinting data, and preemptively switches the mount namespace context, ensuring the file is accessible when the user space application needs it, while still preserving kernel resources.

Inventive Principle:
Principle #10Preliminary action

Solution Approach 2:

Mount namespace switching serves as an intermediary mechanism that enables user space applications to access files that would otherwise be inaccessible due to namespace restrictions. By switching to the target process's namespace context, the system creates a bridge that allows the user space hash generation tool to see and access the target application file without requiring kernel modifications or compromising security boundaries.

Inventive Principle:
Principle #24Intermediary (Mediator)

Data Source

PatentEP4425358B1Fingerprinting techniques to support file hash generation
Publication Date: 2026.01.14 CROWDSTRIKE
  • EP4425358B1 patent drawingFigure 1
  • EP4425358B1 patent drawingFigure 2
  • EP4425358B1 patent drawingFigure 3

AI summary

A method of generating a file hash using fingerprinting data includes acquiring, using one or more programs executing in a kernel space of an operating system, fingerprinting data associated with a target application process in a user space of the operating system responsive to detecting an execution of the target application process, sharing, by a processing device using the one or more programs, the fingerprinting data with a user space monitoring application executing in the user space of the operating system, generating a hash value of a target application file associated with the target application process, and determining, using the user space monitoring application, a validity of the hash value based on the fingerprinting data.