Application Sandbox

The application sandbox is an isolation mechanism used to prevent malicious data access through path traversal. With this mechanism, only the application sandbox directory is visible to an application.

  • The system provides a dedicated application sandbox directory in the internal storage to map the directory of each application. The application sandbox directory contains only the application file directory and the directory containing the minimum system files required for the running of the application.

  • The application sandbox directory defines the minimum data range visible to an application. Each application can access only its own application files and the system files required for its running. The application cannot access files of other applications. This ensures application file security.

  • In each application sandbox directory, the application can save and process its application files in the application file directory, and can only read the system files and directories. To access user files, the application needs to call specific APIs and have authorization from the user.

The following figure illustrates the file access mechanism in the application sandbox.

Figure 1 File access mechanism in the application sandbox

Application sandbox file access relationship

Application Sandbox Directory and Application Sandbox Path

With the application sandbox mechanism, an application is not aware of the existence and location of other applications' directories and user file directories. Even the directories visible to an application are isolated by permission and namespace to form an independent directory view and shield the physical (real) paths.

  • As shown in the following figure, the application sandbox mechanism minimizes the number of directories and files visible to a common application (third-party application). In addition, the directories and file paths visible to a common application are different from those visible to a system process. The path of a file or folder in the application sandbox directory visible to a common application is called the application sandbox path.

  • You can view the physical application paths (the directory view visible to a system process) in the HDC shell. For details about the mappings between the application sandbox paths and physical paths, see Mappings Between Application Sandbox Paths and Physical Paths.

  • The application sandbox paths and physical paths are not in one-to-one mappings. The application sandbox paths are always shorter than physical paths. Some physical paths do not have the corresponding application sandbox paths.

Figure 2 Different directory views to processes and applications

Application sandbox path

Application File Directory and Application File Path

The application sandbox directory consists of the application file directory and system file directory.

The system file directory visible to an application is preset by OpenHarmony.

The following figure shows the application file directory structure. The path of a file or a folder in the application file directory is called the application file path. The application file paths have different attributes.

Figure 3 Application file directory structure

Application file directory structure

NOTE

  • Do not use file paths made up by level 1 to level 3 directory names. Incompatibility problems may occur if the directory names are changed in later versions.
  • Use Context to obtain the application file paths, including but not limited to the directories highlighted in green in Figure 3. For details about how to obtain the context and application file paths, see Context (Stage Model).
  1. Level 1 directory data/: application file directory.

  2. Level 2 directory storage/: directory for persistent files of the application.

  3. Level 3 directories el1/ and el2/: directories for files of different encryption levels.

    • el1: directory for the data that can be accessed once the device starts. This directory contains device-focused files.
    • el2: directory for the data that can be accessed only after at least one successful unlock operation (by PIN, fingerprint, or facial authentication, or password-free sign-in) upon the start of the device. This directory contains user-focused files.
      Unless otherwise required, application data is placed in the el2 directory for security purposes. The data that needs to be accessed before the screen is unlocked (such as the clock, alarm, and wallpaper data) is placed in the el1 directory. For details about the operations on el1/ and el2/, see Obtaining and Modifying el Directories.
  4. Level 4 and level 5 directories: directories for the application global information and OpenHarmony Ability Packages (HAPs). An application in the development state has one or more HAPs. For details, see Application Package Structure in Stage Model. The application global data is stored in the distributedfiles directory and files, cache, preferences, and temp in base. You can use ApplicationContext to obtain the application file paths of these directories.

    You can use UIAbilityContext, AbilityStageContext, and ExtensionContext to obtain application file paths related to a HAP. When a HAP is uninstalled, the files in the haps/ directory are automatically deleted, without affecting the files in application-level directories. For details about how to obtain the context and application file paths, see Context (Stage Model).

The following table describes the application file paths and their lifecycle.

Table 1 Application file paths

Folder Name Context Attribute Name Type Description
bundle bundleCodeDir Installation file directory Directory for saving the HAPs after an application is installed.
This directory is cleared when the application is uninstalled.
Do not access resource files using concatenated paths. Use @ohos.resourceManager instead.
You can store the application's code resource data, including the HAPs of the application, reusable library files, and plug-ins, in this directory. The code in this directory can be dynamically loaded.
base NA Directory for the device's files Directory for saving the application's persistent data on the device. Subdirectories include files/, cache/, temp/, and haps/.
This directory is cleared when the application is uninstalled.
database databaseDir Database directory Directory in el2 for saving the files operated by the distributed database service.
This directory is cleared when the application is uninstalled.
This directory can be used to store the application's private database data, such as database files, in distributed scenarios only.
distributedfiles distributedFilesDir Distributed file directory Directory in el2 for saving the application files that can be directly accessed across devices.
This directory is cleared when the application is uninstalled.
You can place the application's data used for distributed scenarios, including file sharing, file backup, and file processing across devices, in this directory. The data stored in this directory enables an application to run smoothly on multiple devices that form a Super Device.
files filesDir Application file directory Directory for saving the application's persistent files on the device.
This directory is cleared when the application is uninstalled.
You can place the application's private data, including persistent files, images, media files, and log files, in this directory. The data is stored in this directory to ensure privacy, security, and permanent validity.
cache cacheDir Application cache file directory Directory for caching the downloaded files of the application or saving the cache files regenerated on the device.
This directory is automatically cleared when the size of the cache directory reaches the quota or the system storage space reaches a certain threshold. End users can also clear this directory by using a system space management application.
The application needs to check whether a file still exists and determine whether to cache a file again.
You can place the cached data of the application, including offline data, cached images, database backup, and temporary files, in this directory. Data stored in this directory may be automatically deleted by the system. Therefore, do not store important data in this directory.
preferences preferencesDir Preferences file directory Directory for saving common application configuration and user preference data managed by using database APIs.
This directory is cleared when the application is uninstalled. For details about how to make preferences data persistent, see Persisting Preferences Data.
You can place application preferences data, including preference files and configuration files, in this directory. This directory applies to storing only a small amount of data.
temp tempDir Temporary file directory Directory for saving the files generated and required during the application's runtime on the device.
This directory is cleared when the application exits.
You can place temporarily generated data of the application, including cached database data and images, temporary log files, downloaded application installation packages, in this directory. The data stored in this directory can be deleted immediately after being used.