hdi-design-specifications.md 23.6 KB
Newer Older
1 2 3 4
# OpenHarmony HDI Design Specifications

## Overview

W
wusongqing 已提交
5
Hardware device interface (HDI) provides a set of interfaces that function as a bridge between drivers and system services for data transmission. They have a direct impact on system efficiency, stability, compatibility, and reliability, as well as data accuracy and integrity. This document aims to standardize the design and development of OpenHarmony HDI interfaces, thereby ensuring consistent styles and complete functionalities for the interfaces.
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
This document is developed by the [driver SIG](https://gitee.com/openharmony/community/blob/master/sig/sig-driver/sig_driver.md) and approved by the [PMC](https://gitee.com/link?target=https%3A%2F%2Fwww.openharmony.cn%2Fcommunity%2Fpmc%2F). Any revision to this document must be reviewed by the driver SIG and approved by the PMC.

**Acronyms**

| Acronym | Full Spelling                           |
| --- | ------------------------------ |
| HDI | Hardware Device Interface      |
| IDL | Interface Description Language |

**Conventions**

**Rule**: a convention that must be complied with

**Rec**: a convention that should be considered

**Note**: an explanation to a rule or rec

**Change History**
| Version | Change Description              |
| ---  | --------------------- |
| v1.0 Beta | This issue is the initial version.              |
W
wusongqing 已提交
27
| v1.0  | This issue is the official version.              |
28 29 30 31 32 33 34 35 36 37


## Scope and Definition

![](https://gitee.com/openharmony/docs/raw/master/en/design/figures/API-Category.png)

Located between the system service layer and the device driver layer, HDI provides unified device function abstract interfaces for device developers. It shields the differences of devices from system services.

## General Rules

W
wusongqing 已提交
38
### Version Control
39

W
wusongqing 已提交
40
The HDI version number must be in the format of `major.minor`, where `major` must be an integer increased in ascending order and `minor` is a one-digit integer.
41

W
wusongqing 已提交
42
- A change in `major` indicates architecture adjustment or interface definition that is not backward compatible. 
43

W
wusongqing 已提交
44
- A change in `minor` indicates enhanced or extended interface definitions that are backward compatible.
45 46 47 48 49

When `major` changes, `minor` is reset to `0`.

[Example]

W
wusongqing 已提交
50
For released vibrator interfaces:
51 52 53 54 55 56 57 58 59 60

```cpp
package ohos.hdi.vibrator.v1_0;
interface IVibrator {
   ...
   SetModulationParameter([in] unsigned int vibrationPeriod, [in] int intensity, [in] int frequency);
   ...
}
```

W
wusongqing 已提交
61
If the update to the existing interfaces does not affect version compatibility, for example, adding a function, adding an enum definition, or changing a variable name, change only `minor`, for example, to `ohos.hdi.vibrator.v1_1`, as follows:
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82

```cpp
package ohos.hdi.vibrator.v1_1;
interface IVibrator {
   ...
   SetModulationParameter([in] unsigned int vibrationPeriod, [in] int intensity, [in] int freq);
   ...
}
```

If the original interface is renamed or the variable list is modified, change `major`, for example, to `ohos.hdi.vibrator.v2_0`, as follows:

```cpp
package ohos.hdi.vibrator.v2_0;
interface IVibrator {
   ...
   SetModulationParameter([in] unsigned int vibrationPeriod, [in] int intensity, [in] int frequency, [int] time);
   ...
}
```

W
wusongqing 已提交
83
### Review and Control
84

W
wusongqing 已提交
85
HDI interfaces are provided to implement upper-layer system service requirements and perform hardware operations (such as initialization). New and updated interfaces must be fully reviewed and strictly controlled. Only interfaces that meet universal requirements can be added.
86

W
wusongqing 已提交
87
Table 1 Interface review and control roles
88

W
wusongqing 已提交
89 90 91 92 93 94 95
| **Role**   | **Responsibility**                                   |
| ----------- | ------------------------------------------------ |
| Contributor | Write HDI code and submit the code and design documents for review.                   |
| Committer   | Review the HDI code, and submit the code to the domain SIG for further review.                           |
| Domain SIG    | Review the new or updated HDI code.|
| Driver SIG  | Review the new or updated HDI code.                                 |
| PMC         | Revise and publish this design specifications.                 |
96

W
wusongqing 已提交
97
### Release
98 99 100 101 102 103 104

- HDI review process

    ![](figures/HDI-Review-Process.png)

    The main process is as follows:

W
wusongqing 已提交
105 106 107 108
    1. The contributor commits code and initiates a review. In addition to the code of new or updated HDI interfaces, the contributor must provide information about the HDI requirement source, usage scenario, permission design, and privacy protection design. For details, see "Review application composites" below. To increase the review efficiency, the contributor can email the design documents to the committer, domain SIG, and driver SIG before submitting the review application.
    2. The committer reviews the code and HDI interfaces.
    3. The domain SIG reviews the new or updated HDI interfaces.
    4. The driver SIG reviews and approves the new or updated HDI interfaces.
109 110 111 112 113 114 115 116 117 118
    5. The review is complete, and the code is merged.

- Review application composites

    After the HDI design is complete, the domain SIG must organize an effective review and provide the following documents before HDI release:

    - Complete and reasonable test cases

    - **HDI version differences, with a clear addition or change scope**

W
wusongqing 已提交
119
    - Complete interface context, which must be provided in the design document to specify when and how to use each interface
120

W
wusongqing 已提交
121
    - Resource status transition diagram in the design document for resource-oriented interfaces
122 123 124 125 126 127 128

    - Compliance with the HDI design constraints proposed in this document

- Requirements

    1. Change `major` for any release that is incompatible with earlier versions.

W
wusongqing 已提交
129
    2. Change `minor` for any interface released for function extension.
130

W
wusongqing 已提交
131
    3. To deprecate any released interface:
132 133 134

        - The `deprecated` flag must be provided.

W
wusongqing 已提交
135
        - The deprecated interfaces must be retained in at least four OpenHarmony HDI versions.
136 137 138 139 140 141 142 143 144 145 146

## HDI Design Constraints

### Consistency

#### [Rule] Use consistent nouns for terms.

Multiple nouns with similar semantic meanings are not allowed to represent the same service object. Similarly, to avoid confusion, it is not allowed to use the same noun or linguistically close nouns for different service objects.

#### [Rule] Keep the parameter sequence consistent.

W
wusongqing 已提交
147
The sequence of a parameter or parameter group in multiple interfaces must be the same.
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242

For object-oriented C programming, place the interface object as the first parameter by convention.

#### [Rule] Keep the memory ownership consistent.

If the memory (storage data) passed through the input parameter (in) or output parameter (out) is allocated by the caller, the memory must be released by the caller. If the memory is allocated by the callee, it must be released by the callee. Regardless of whether data is passed from a service to a driver or received from a driver, the ownership of the data should not be changed, which must always be the memory allocator.

[Example]

```cpp
int (*OpenLayer)(uint32_t devId, const LayerInfo *layerInfo, uint32_t *layerId);
```

When **OpenLayer** is called, the graphics layer data memory is allocated based on the input parameter **layerInfo**, and a layer ID is returned.

```cpp
int (*CloseLayer)(uint32_t devId, uint32_t layerId);
```

A **CloseLayer** interface must be provided to release the graphics layer data memory when the caller finishes the operation.

#### [Rule] Provide a specific return value for every synchronous interface.

When defining a synchronous interface, you must define the return value and provide necessary invocation status information to specify whether the invocation is successful. If the invocation fails, specify the cause of the failure. You can define a return value based on the actual error cause.

[Exceptions]

If an interface is unidirectional, which means that a value can be returned without waiting for the interface to be executed, use the keyword `one way` in the comment. Example:

```cpp
/* one way */
void WriteReady();
```

### Naming

#### [Rule] Name an interface in the format of "I" + "*interface name*".
Interface names must be concise, easy to understand, and accurate. Avoid redundant and misleading words, or rare abbreviations.

[Example]
```
    /* Good */
    interface IBattery {
        ...
    }

   /* Bad: The Interface suffix is redundant. */
    interface IBatteryInterface {
        ...
    }
```
#### [Rule] Name the HDI package in the format of "package ohos.hdi.[interface_name].v[major_version]_[minor_version]".
[Example]
```
    /* Good */
    package ohos.hdi.battery.v1_0;
    interface IBattery {
        ...
    }

   /* Bad: The hdi namespace and version information are missing. */
   package ohos.battery;
    interface IBattery {
        ...
    }
```
#### [Rule] Name classes, structs, functions, and parameters in camel case.
**Camel case style**
Camel case is the practice of writing words without spaces. It indicates the separation of words with a single capitalized letter, and the first word starts with either case, bringing about **UpperCamelCase** and **lowerCamelCase**.


| Type                                      | Style     |
| ---------------------------------------- | --------- |
| Interface types, functions, struct types, enum types, and union types      | UpperCamelCase      |
| Parameters, and member variables in a struct or union| lowerCamelCase      |
| Constants and enums                 | All uppercase letters, separated by underscores (_)|

#### [Rule] Use the interface class name as the interface file name and `.idl` as the file name extension.
- An independent interface file must be provided for every interface class, and the file name must be the same as that of the interface class (UpperCamelCase) and end with `.idl`.
- The description file of the type definition must be named `Types.idl` or `ExampleTypes.idl`.

[Example]

```
    package ohos.hdi.battery.v1_0;
    interface IBattery {
        ...
    }
```
   The interface description file must be named `IBattery.idl`.

### Ease to Use

#### [Rule] Follow the single responsibility principle.

W
wusongqing 已提交
243
The functionalities of each interface must be stable and clear, and the trigger source of interface changes must be unique.
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274

[Example]

When the device status consists of the power status and port status, use two interfaces rather than one.

**Correct Example**

```cpp
int UpdatePowerState(int_t deviceId, int status); // This interface is used to update the power status of the device.

int UpdatePortStatus(int deviceId, int status); // This interface is used to update the port status of the device.
```

**Incorrect Example**

```cpp
int UpdateDeviceStatus(int deviceId, int powerStatus, int portStatus);
```

#### [Rule] Consider cohesion during interface parameter design.

When defining an interface parameter, consider whether to pass the parameter separately or encapsulate the parameter in a struct based on the following factors:

1. Is there a meaningful encapsulation boundary?

    If there is obvious cohesion or association between parameters, you can encapsulate these parameters in a struct.

2. Is there any other use of this struct if structured parameters are used?

    If no, pass the parameter separately.

W
wusongqing 已提交
275
3. Does a parameter group occur in multiple interfaces?
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295

    If yes, you can pass these parameters as a struct. In this case, you also need to consider whether these parameter groups are cohesive.

4. Is there a large number of optional parameters, or do they usually be assigned a default value?

    If yes, you can use a struct to simplify the invocation.

[Example]

Audio sampling attributes include the sampling format, sampling frequency, and number of channels. These attributes are also sampling related and can be passed as a struct.

```cpp
struct AudioSampleAttributes
{
    enum AudioFormat format;
    uint32_t sampleRate;
    uint32_t channelCount;
};
```

W
wusongqing 已提交
296
#### [Rule] Make interfaces of different device types independent from each other.
297

W
wusongqing 已提交
298
Interfaces are managed by driver type, such as `Camera`, `Input`, `Display`, `Audio`, `Sensor`, and `Storage`. Interfaces of different device types should not depend on each other. It is recommended that common capabilities that may be used by more than two types of driver modules be abstracted as common interfaces and archived to the common interface capability library for management.
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376

[Exceptions]

There is no restriction on the interfaces that provide common capabilities. For example, the definition of primitive types and the declaration of interfaces can be referenced by all interfaces.

### Privacy Protection

### [Rule] Consider privacy security.

System services can access data such as device information and identifiers through drivers. Certain information, such as device names, serial numbers, and device addresses, is sensitive data defined in privacy protection specifications. During HDI design, pay attention to the use of these fields and review them carefully and thoroughly to ensure that the interfaces will never expose sensitive information.

[Example]

`Bluetooth` addresses are mainly used in device discovery and connection scenarios. When a device is discoverable, the `Bluetooth` address could be used for personal tracking.

The major purpose of obtaining a `Bluetooth` address is to uniquely identify a device. Therefore, you can convert the `Bluetooth` address into a unique identifier for invocation or restrict the application scope of this interface.

### Permission Control

#### [Rule] Minimize the interface permissions.

All behaviors across application sandboxes must be controlled by permissions. A specific permission can be granted only to applications that have legitimate service requirements.

### Performance

#### [Rule] Consider data transmission efficiency.

Drivers have a large number of data transmission interfaces. Data transmission may involve inter-process communication (IPC), which increases system overheads or even trigger system scheduling. Therefore, you need to consider all situations when defining interfaces. For the data that must be transmitted between processes with low overhead and low latency, you can use the shared memory or message queue.

[Example]

Define a data transmission interface for a driver module as follows:

```cpp
// IPC is not involved (direct interface calling).
int WriteData (...); // Define the data address pointer and data length as input parameters.

/*
 * IPC is involved.
 *
 * Define a shared memory or message queue object as the input parameter.
 * In this way, data can be efficiently transmitted (since repetitive operations can be minimized).
 */
int PrepareWriteData();
```

#### [Rec] Consider the interface execution time.

To improve IPC performance, you are advised to use asynchronous processing for time-consuming services on the server. If the client needs to wait for the result synchronously, you are advised to add a block on the client and use the asynchronous callback mode so that the IPC channel can be released in time.

[Example]

The `Camera` driver provides a device initialization interface, the execution of which takes more than 150 ms due to software and hardware reasons. If this interface uses synchronous mode, the camera HDI service IPC thread may be occupied for a long time, and other requests fail to be responded in time. It is more reasonable to design this interface as an asynchronous one. A callback can be used to return the initialization result to the client. If the client needs to wait for the return value before continuing other operations, it can block the process and wait for the callback result.

#### [Rec] Minimize the number of new process entities.

To reduce the system overhead, interfaces of the same type in the same subsystem must be deployed in the same process. Add processes only when they are necessary.

### Power Consumption

#### [Rule] Consider system power consumption.

When the caller releases hardware resources, the corresponding driver module should release the wake lock so the system will not be prevented from sleeping.

### Reliability

#### [Rule] Mutual dependency is forbidden for the lifecycle of interface parameters.

The lifecycle of interface parameters must be independent. Mutual dependency is prohibited. Pointer parameters should not point to the memory of other objects, for example, the serialized memory. This is because when the serialized memory is passed to the peer function, the memory block lifecycle disappears after the parameter is parsed, but the pointer may be passed between different functions, resulting in vulnerabilities such as Used After Free (UAF).

[Example]

Both `ReadUnpadBuffer` and `ReadCString` return a pointer variable that points to the internal memory of the serialized object. When the server callback is triggered, the serialized object used to pass the parameters is destroyed and the memory is free. If other processes on the server still use the pointers returned by the two interfaces, crash may occur due to the UAF.

The correct practice is to copy the data to the memory managed by the service before using the data after the service response interface returns the data.

#### [Rule] Consider reentrancy.

W
wusongqing 已提交
377
Interfaces often need to support multiple clients, and a single client may have concurrent requests. Therefore, you must consider reentrancy during HDI design. To ensure correct processing of reentrant interfaces, use locks or semaphores to protect critical resources.
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402

[Example]

A driver service provides resource request and release interfaces. When two clients request resources at the same time, if reentrancy is not considered for critical resources on the server, resources may be released in advance or cannot be released due to management data read/write competition. The correct practice is to lock critical resources.

#### [Rec] Consider the transmission buffer capability.

No flow control is posed on the amount of data sent in an interface or callback. However, if the data volume of an interface exceeds the maximum transmission buffer size, consider using a block until the resource is available.

[Example]

When memory application fails, you can use a semaphore to block the current thread until the memory is available.

#### [Rule] Do not pass function pointers across address spaces.

Virtual address space isolation is used between processes. Passing function pointers through IPC will cause access exceptions. Therefore, do not pass function pointers. To implement a callback function, use a callback object instead.

[Example]

The Wi-Fi module provides an interface to receive a callback triggered when the client accepts the server request. An incorrect practice is to write the function pointer implemented by the client to the serialized object, which causes a crash when the function pointer is called on the server.

The correct practice is to design and implement the callback interface using a callback object, and pass the callback object to the server through the serialization interface, so the server can trigger the callback when needed.

### Compatibility

W
wusongqing 已提交
403
#### [Rule] Verify the version number before the client calls an interface.
404

W
wusongqing 已提交
405
Due to the independent component update policy, the version number of an interface on the client may be different from that on the server. This requires the client to verify the version number on the server and use the matching version to call the interface on the server.
406 407 408

[Example]

W
wusongqing 已提交
409
Assume that the TP module provides interfaces of versions 1.0 and 1.1. The later version has new interfaces. The components on the client have updated to 1.1, and the server still uses 1.0. If the client directly calls an interface of 1.1 on the server, an error may occur. Instead, the client must use the service version query interface to check the server version. If the server version is 1.0, the client must use the interface of 1.0 to call the server.
410

W
wusongqing 已提交
411
#### [Rule] Release HDI interfaces in .idl format.
412

W
wusongqing 已提交
413
Currently, Unix-like drivers use virtual file system (VFS) interfaces to expose internal interfaces. The user mode and kernel mode communicate with each other using system calls. They are packed in different images, and two sets of interfaces are maintained separately. To ensure the consistency of the interface definition and parameter format between the two and consider the design objective of cross-kernel hardware driver foundation (HDF) deployment, release interfaces in .idl format and use a tool to generate interfaces of the target form. In addition, the user-mode caller is not allowed to operate the driver VFS interfaces through the file interface. This causes the framework to strongly depend on the kernel and violates the principle of depending on the interface instead of the implementation.
414

W
wusongqing 已提交
415
Recommended practice: The driver provides interfaces in .idl format and encapsulates the access to the kernel device in the interface implementation.
416 417 418

[Example]

W
wusongqing 已提交
419
An input device provides query interfaces for attributes such as the device type and data precision. The input service should not directly access the VFS interface created by the kernel in open-ioctl mode. Instead, the input driver should provide an interface to abstract the input device as an object. Then the input service calls this interface to implement the required functionalities.
420 421 422

### Documentation

W
wusongqing 已提交
423 424
#### [Rule] Release HDI interfaces in .idl format.
To ensure interface compatibility and consistency, release interfaces in .idl format. It is prohibited to directly release interfaces in C/C++ header files.
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445


#### [Rule] Provide an interface description during interface release.
The interface description must contain the interface functionality, parameter value range, return values, and precautions. The description text must be placed above the interface description in the .idl file and released with the interface.

[Example]

```
/**
    * @brief Obtains the executor information.
    *
    * @param executorInfo Indicates the executor information. For details, see {@link ExecutorInfo}.
    *
    * @return Returns <b>0</b> if the operation is successful.
    * @return Returns a non-zero value if the operation fails.
    */
GetExecutorInfo([out] struct ExecutorInfo executorInfo);
```

### Programming Languages

W
wusongqing 已提交
446
To ensure data interworking between interfaces implemented in different programming languages, follow the restrictions below when using data types in the interface description.
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473

#### Constraints on using basic data types

| IDL Data Type | C++ Data Type | C Data Type       | Data Length (Bytes)|
| -------------- | ----------- | --------------- | ----------- |
| void           | void        | void            | NA          |
| boolean        | bool        | bool            | 1           |
| byte           | int8_t      | int8_t          | 1           |
| short          | int16_t     | int16_t         | 2           |
| int            | int32_t     | int32_t         | 4           |
| long           | int64_t     | int64_t         | 8           |
| float          | float       | float           | 4           |
| double         | double      | double          | 8           |
| String         | std::string | char*, int size | NA          |
| unsigned char  | uint8_t     | uint8_t         | 1           |
| unsigned short | uint16_t    | uint16_t        | 2           |
| unsigned int   | uint32_t    | uint32_t        | 4           |
| unsigned long  | uint64_t    | uint64_t        | 8           |

#### Constraints on Using Container Types

| IDL Container Data Type| C++ Data Type     | C Data Type      |
| ----------- | ------------ | ----------- |
| List<T>     | std::list<T> | T*,int size |

#### Constraints on Using Array Types

W
wusongqing 已提交
474
| IDL Array Data Type | C++ Data Type       | C Data Type      |
475 476 477 478 479 480 481 482 483
| --------- | -------------- | ----------- |
| T[]       | std::vector<T> | T*,int size |

#### Constraints on Using Custom Types

| IDL Custom Data Type| C++ Data Type| C Data Type |
| ------- | ------- | ------ |
| struct  | struct  | struct |
| enum    | enum    | enum   |