yangxuguang-huawei
|
ecbb64d5de
|
refactor: make shared libraries lean
Co-Authored-By: Agent
Signed-off-by: yangxuguang-huawei <yangxuguang3@huawei.com>
|
2026-03-12 16:20:16 +08:00 |
|
yangxuguang-huawei
|
d5d05c3f52
|
bugfix: ConnectAgentExtensionAbility permission
Signed-off-by: yangxuguang-huawei <yangxuguang3@huawei.com>
|
2026-03-12 09:16:14 +08:00 |
|
SKY2001
|
986fec4119
|
AgentExtensionContext
Signed-off-by: SKY2001 <songtianyu10@huawei.com>
|
2026-03-06 15:58:36 +08:00 |
|
yangxuguang-huawei
|
f0f16be9da
|
bugfix: AgentManagerService
Co-Authorded-By: Agent
Signed-off-by: yangxuguang-huawei <yangxuguang3@huawei.com>
|
2026-03-04 10:29:25 +08:00 |
|
unknown
|
977c95d068
|
fix empty
Signed-off-by: unknown <sijunjie@huawei.com>
|
2026-03-02 22:04:33 +08:00 |
|
unknown
|
24524a3aae
|
devices type
Signed-off-by: unknown <sijunjie@huawei.com>
|
2026-02-28 14:29:41 +08:00 |
|
unknown
|
9a8b72d941
|
add check skill id
Signed-off-by: unknown <sijunjie@huawei.com>
|
2026-02-27 14:11:13 +08:00 |
|
openharmony_ci
|
1ba90a54d7
|
!18455 merge feat/connect-ets-2 into master
feat: Connect/Disconnect AgentExtension 1.2 part2
Created-by: yangxuguang-huawei
Commit-by: yangxuguang-huawei
Merged-by: openharmony_ci
Description: **IssueNo**:
https://gitcode.com/openharmony/ability_ability_runtime/issues/14566
**Description**:
**稳定性自检:**
| 自检项 | 自检结果 |
| ------------------------------------------------------------ | -------- |
| 涉及跨进程调用的相关操作需要抛至主线程或加锁防止并发 | ok|
| 成员变量进行赋值或创建需要排查并发 | ok|
| 谨慎在lambda表达式中使用引用捕获 | ok|
| 谨慎在未经拷贝的情况下使用外部传入的string、C字符串 | ok|
| map\vector\list\set等stl模板类使用时需要排查并发 | ok|
| 谨慎考虑加锁范围 | ok|
| 在IPC通信中谨慎使用同步通信方式 | ok|
| 禁止传递this指针至其他模块或线程(特别是eventhandler任务) | ok|
| 禁止将外部传入的裸指针在内部直接构造智能指针 | ok|
| 禁止多个独立创建的智能指针管理同一地址 | ok|
| 禁止在析构函数中抛异步任务 | ok|
| 禁止js对象在非js线程(例如在IPC线程)创建、使用或销毁 | ok|
| 禁止在对外接口中未经判空直接使用外部传入的指针 | ok|
| 禁止接口返回局部变量引用 | ok|
| 禁止在信号函数中加锁 | ok|
| 禁止在关键流程(SA启动、应用启动等主流程)执行耗时的操作 | ok|
| 禁止将同一个cpp编译在不同的so中 | ok|
**安全编码自检:**
| 自检项 | 自检结果 |
| -------------------------------------------------------------- | -------- |
| 裸指针避免通过隐式转换构造为sptr | ok|
| json对象在取值之前必须先判断类型,避免类型不匹配 | ok|
| 序列化时必须对传入的数组大小进行校验,避免出现超大数组 | ok |
| 避免使用未明确位宽的整型,选择使用int8_t、uint8_t等类型 | ok|
| 外部传入的路径要做规范化校验,对路径中的.、..、../等特殊字符严格校验 | ok |
| 指针变量、表示资源描述符的变量、bool变量必须赋初值 | ok|
| readParcelable获取的对象使用前需要判空 | ok|
| 分配和释放内存的函数需要成对出现 | ok|
| 申请内存后异常退出前需要及时进行内存释放 | ok |
| 内存申请前必须对内存大小进行合法性校验 | ok|
| 内存分配后必须判断是否成功 | ok|
| 禁止使用realloc、alloca函数 | ok|
| 禁止打印文件路径、口令等敏感信息,如有需要,使用private修饰 | ok|
| 禁止打印内存地址 | ok|
| 整数之间运算时必须严格检查,确保不会出现溢出、反转、除0 | ok|
| 禁止对有符号整数进行位操作符运算 | ok|
| 禁止对指针进行逻辑或位运算 | ok|
| 循环次数如果收外部数据控制,需要检验其合法性 | ok|
| 禁止使用内存操作类危险函数,需要使用安全函数 | ok|
| 谨慎使用不可重入函数 | ok|
| 必须检查安全函数的返回值,并进行正确处理 | ok|
| 禁止仅通过TokenType类型判断绕过权限校验 | ok|
**TDD Result**:
已验证OK
**XTS Result**:
已验证OK
### 是否已执行L0用例
- [x] 已验证
- [ ] 不涉及。如不涉及,请写明理由
See merge request: openharmony/ability_ability_runtime!18455
|
2026-02-27 09:29:02 +08:00 |
|
openharmony_ci
|
ad88e8f6cd
|
!18481 merge master into master
fix inputMode length
Created-by: littlejerry1
Commit-by: unknown
Merged-by: openharmony_ci
Description: **IssueNo**:
https://gitcode.com/openharmony/ability_ability_runtime/issues/14585
**Description**:
fix inputMode length
**稳定性自检:**
ok
**安全编码自检:**
ok
**TDD Result**:
NA
**XTS Result**:
ok
### 是否已执行L0用例
- [ok] 已验证
- [ ] 不涉及。如不涉及,请写明理由
See merge request: openharmony/ability_ability_runtime!18481
|
2026-02-26 23:33:15 +08:00 |
|
yangxuguang-huawei
|
1bb9ba7c0e
|
feat: Connect/Disconnect AgentExtension 1.2 part2
Co-Authored-By: Agent
Signed-off-by: yangxuguang-huawei <yangxuguang3@huawei.com>
|
2026-02-26 22:17:11 +08:00 |
|
unknown
|
f2a28cbff5
|
fix inputMode length
Signed-off-by: unknown <sijunjie@huawei.com>
|
2026-02-26 19:28:09 +08:00 |
|
openharmony_ci
|
777fadaac6
|
!18474 merge master into master
fix bugs
Created-by: littlejerry1
Commit-by: unknown
Merged-by: openharmony_ci
Description: **IssueNo**:
https://gitcode.com/openharmony/docs/issues/99597
**Description**:
修复agent card 问题
**稳定性自检:**
ok
**安全编码自检:**
ok
**TDD Result**:
ok
**XTS Result**:
NA
### 是否已执行L0用例
- [ok] 已验证
- [ ] 不涉及。如不涉及,请写明理由
See merge request: openharmony/ability_ability_runtime!18474
|
2026-02-26 17:49:47 +08:00 |
|
unknown
|
eda0151b44
|
fix bugs
Signed-off-by: unknown <sijunjie@huawei.com>
|
2026-02-26 16:46:54 +08:00 |
|
openharmony_ci
|
2daca33941
|
!18468 merge feat/agent-permission into master
feat: add permission for getting agent cards
Created-by: yangxuguang-huawei
Commit-by: yangxuguang-huawei
Merged-by: openharmony_ci
Description: **IssueNo**:
https://gitcode.com/openharmony/ability_ability_runtime/issues/14575
**Description**:
**稳定性自检:**
| 自检项 | 自检结果 |
| ------------------------------------------------------------ | -------- |
| 涉及跨进程调用的相关操作需要抛至主线程或加锁防止并发 | ok|
| 成员变量进行赋值或创建需要排查并发 | ok|
| 谨慎在lambda表达式中使用引用捕获 | ok|
| 谨慎在未经拷贝的情况下使用外部传入的string、C字符串 | ok|
| map\vector\list\set等stl模板类使用时需要排查并发 | ok|
| 谨慎考虑加锁范围 | ok|
| 在IPC通信中谨慎使用同步通信方式 | ok|
| 禁止传递this指针至其他模块或线程(特别是eventhandler任务) | ok|
| 禁止将外部传入的裸指针在内部直接构造智能指针 | ok|
| 禁止多个独立创建的智能指针管理同一地址 | ok|
| 禁止在析构函数中抛异步任务 | ok|
| 禁止js对象在非js线程(例如在IPC线程)创建、使用或销毁 | ok|
| 禁止在对外接口中未经判空直接使用外部传入的指针 | ok|
| 禁止接口返回局部变量引用 | ok|
| 禁止在信号函数中加锁 | ok|
| 禁止在关键流程(SA启动、应用启动等主流程)执行耗时的操作 | ok|
| 禁止将同一个cpp编译在不同的so中 | ok|
**安全编码自检:**
| 自检项 | 自检结果 |
| -------------------------------------------------------------- | -------- |
| 裸指针避免通过隐式转换构造为sptr | ok|
| json对象在取值之前必须先判断类型,避免类型不匹配 | ok|
| 序列化时必须对传入的数组大小进行校验,避免出现超大数组 | ok |
| 避免使用未明确位宽的整型,选择使用int8_t、uint8_t等类型 | ok|
| 外部传入的路径要做规范化校验,对路径中的.、..、../等特殊字符严格校验 | ok |
| 指针变量、表示资源描述符的变量、bool变量必须赋初值 | ok|
| readParcelable获取的对象使用前需要判空 | ok|
| 分配和释放内存的函数需要成对出现 | ok|
| 申请内存后异常退出前需要及时进行内存释放 | ok |
| 内存申请前必须对内存大小进行合法性校验 | ok|
| 内存分配后必须判断是否成功 | ok|
| 禁止使用realloc、alloca函数 | ok|
| 禁止打印文件路径、口令等敏感信息,如有需要,使用private修饰 | ok|
| 禁止打印内存地址 | ok|
| 整数之间运算时必须严格检查,确保不会出现溢出、反转、除0 | ok|
| 禁止对有符号整数进行位操作符运算 | ok|
| 禁止对指针进行逻辑或位运算 | ok|
| 循环次数如果收外部数据控制,需要检验其合法性 | ok|
| 禁止使用内存操作类危险函数,需要使用安全函数 | ok|
| 谨慎使用不可重入函数 | ok|
| 必须检查安全函数的返回值,并进行正确处理 | ok|
| 禁止仅通过TokenType类型判断绕过权限校验 | ok|
**TDD Result**:
已验证OK
**XTS Result**:
已验证OK
### 是否已执行L0用例
- [x] 已验证
- [ ] 不涉及。如不涉及,请写明理由
See merge request: openharmony/ability_ability_runtime!18468
|
2026-02-26 16:27:16 +08:00 |
|
openharmony_ci
|
6fae29e9ba
|
!18442 merge agent1.2 into master
add etsAgentUIExtension
Created-by: zexin_c
Commit-by: zexin_c
Merged-by: openharmony_ci
Description: **IssueNo**:
**Description**:
**稳定性自检:**
| 自检项 | 自检结果 |
| ------------------------------------------------------------ | -------- |
| 涉及跨进程调用的相关操作需要抛至主线程或加锁防止并发 | pass |
| 成员变量进行赋值或创建需要排查并发 | pass |
| 谨慎在lambda表达式中使用引用捕获 | pass |
| 谨慎在未经拷贝的情况下使用外部传入的string、C字符串 | pass |
| map\vector\list\set等stl模板类使用时需要排查并发 | pass |
| 谨慎考虑加锁范围 | pass |
| 在IPC通信中谨慎使用同步通信方式 | pass |
| 禁止传递this指针至其他模块或线程(特别是eventhandler任务) | pass |
| 禁止将外部传入的裸指针在内部直接构造智能指针 | pass |
| 禁止多个独立创建的智能指针管理同一地址 | pass |
| 禁止在析构函数中抛异步任务 | pass |
| 禁止js对象在非js线程(例如在IPC线程)创建、使用或销毁 | pass |
| 禁止在对外接口中未经判空直接使用外部传入的指针 | pass |
| 禁止接口返回局部变量引用 | pass |
| 禁止在信号函数中加锁 | pass |
| 禁止在关键流程(SA启动、应用启动等主流程)执行耗时的操作 | pass |
| 禁止将同一个cpp编译在不同的so中 | pass |
**安全编码自检:**
| 自检项 | 自检结果 |
| -------------------------------------------------------------- | -------- |
| 裸指针避免通过隐式转换构造为sptr | pass |
| json对象在取值之前必须先判断类型,避免类型不匹配 | pass |
| 序列化时必须对传入的数组大小进行校验,避免出现超大数组 | pass |
| 避免使用未明确位宽的整型,选择使用int8_t、uint8_t等类型 | pass |
| 外部传入的路径要做规范化校验,对路径中的.、..、../等特殊字符严格校验 | pass |
| 指针变量、表示资源描述符的变量、bool变量必须赋初值 | pass |
| readParcelable获取的对象使用前需要判空 | pass |
| 分配和释放内存的函数需要成对出现 | pass |
| 申请内存后异常退出前需要及时进行内存释放 | pass |
| 内存申请前必须对内存大小进行合法性校验 | pass |
| 内存分配后必须判断是否成功 | pass |
| 禁止使用realloc、alloca函数 | pass |
| 禁止打印文件路径、口令等敏感信息,如有需要,使用private修饰 | pass |
| 禁止打印内存地址 | pass |
| 整数之间运算时必须严格检查,确保不会出现溢出、反转、除0 | pass |
| 禁止对有符号整数进行位操作符运算 | pass |
| 禁止对指针进行逻辑或位运算 | pass |
| 循环次数如果收外部数据控制,需要检验其合法性 | pass |
| 禁止使用内存操作类危险函数,需要使用安全函数 | pass |
| 谨慎使用不可重入函数 | pass |
| 必须检查安全函数的返回值,并进行正确处理 | pass |
| 禁止仅通过TokenType类型判断绕过权限校验 | pass |
**TDD Result**:
不涉及
**XTS Result**:
### 是否已执行L0用例
- [x] 已验证
- [ ] 不涉及。如不涉及,请写明理由
See merge request: openharmony/ability_ability_runtime!18442
|
2026-02-26 14:08:07 +08:00 |
|
openharmony_ci
|
73d2deb7c3
|
!18457 merge AgentExtensionAbility-AI-commit into master
AgentExtension-1.2-AI-检视意见同步
Created-by: SKY2001
Commit-by: SKY2001
Merged-by: openharmony_ci
Description: **IssueNo**:
https://gitcode.com/openharmony/ability_ability_runtime/issues/14568?ref=&did=3775529#tid-3775529
**Description**:
**稳定性自检:**
| 自检项 | 自检结果 |
| ------------------------------------------------------------ | -------- |
| 涉及跨进程调用的相关操作需要抛至主线程或加锁防止并发 | pass |
| 成员变量进行赋值或创建需要排查并发 | pass |
| 谨慎在lambda表达式中使用引用捕获 | pass |
| 谨慎在未经拷贝的情况下使用外部传入的string、C字符串 | pass |
| map\vector\list\set等stl模板类使用时需要排查并发 | pass |
| 谨慎考虑加锁范围 | pass |
| 在IPC通信中谨慎使用同步通信方式 | pass |
| 禁止传递this指针至其他模块或线程(特别是eventhandler任务) | pass |
| 禁止将外部传入的裸指针在内部直接构造智能指针 | pass |
| 禁止多个独立创建的智能指针管理同一地址 | pass |
| 禁止在析构函数中抛异步任务 | pass |
| 禁止js对象在非js线程(例如在IPC线程)创建、使用或销毁 | pass |
| 禁止在对外接口中未经判空直接使用外部传入的指针 | pass |
| 禁止接口返回局部变量引用 | pass |
| 禁止在信号函数中加锁 | pass |
| 禁止在关键流程(SA启动、应用启动等主流程)执行耗时的操作 | pass |
| 禁止将同一个cpp编译在不同的so中 | pass |
**安全编码自检:**
| 自检项 | 自检结果 |
| -------------------------------------------------------------- | -------- |
| 裸指针避免通过隐式转换构造为sptr | pass |
| json对象在取值之前必须先判断类型,避免类型不匹配 | pass |
| 序列化时必须对传入的数组大小进行校验,避免出现超大数组 | pass |
| 避免使用未明确位宽的整型,选择使用int8_t、uint8_t等类型 | pass |
| 外部传入的路径要做规范化校验,对路径中的.、..、../等特殊字符严格校验 | pass |
| 指针变量、表示资源描述符的变量、bool变量必须赋初值 | pass |
| readParcelable获取的对象使用前需要判空 | pass |
| 分配和释放内存的函数需要成对出现 | pass |
| 申请内存后异常退出前需要及时进行内存释放 | pass |
| 内存申请前必须对内存大小进行合法性校验 | pass |
| 内存分配后必须判断是否成功 | pass |
| 禁止使用realloc、alloca函数 | pass |
| 禁止打印文件路径、口令等敏感信息,如有需要,使用private修饰 | pass |
| 禁止打印内存地址 | pass |
| 整数之间运算时必须严格检查,确保不会出现溢出、反转、除0 | pass |
| 禁止对有符号整数进行位操作符运算 | pass |
| 禁止对指针进行逻辑或位运算 | pass |
| 循环次数如果收外部数据控制,需要检验其合法性 | pass |
| 禁止使用内存操作类危险函数,需要使用安全函数 | pass |
| 谨慎使用不可重入函数 | pass |
| 必须检查安全函数的返回值,并进行正确处理 | pass |
| 禁止仅通过TokenType类型判断绕过权限校验 | pass |
**TDD Result**:
pass
**XTS Result**:
pass
### 是否已执行L0用例
- [ ] 已验证
- [ ] 不涉及。如不涉及,请写明理由
See merge request: openharmony/ability_ability_runtime!18457
|
2026-02-26 14:07:12 +08:00 |
|
yangxuguang-huawei
|
910c817165
|
feat: add permission for getting agent cards
Co-Authored-By: Agent
Signed-off-by: yangxuguang-huawei <yangxuguang3@huawei.com>
|
2026-02-26 11:16:38 +08:00 |
|
zexin_c
|
80ceb84943
|
fix ets export
Co-Authored-By: Agent
Signed-off-by: zexin_c <chenzexin14@huawei.com>
|
2026-02-26 09:55:31 +08:00 |
|
SKY2001
|
633f87a703
|
AgentExtension-1.2-AI-检视意见同步
Signed-off-by: SKY2001 <songtianyu10@huawei.com>
|
2026-02-25 16:58:03 +08:00 |
|
openharmony_ci
|
1b462758f4
|
!18456 merge bugfix/agentmgr into master
feat: remove AGENT_MGR_SERVICE_ID
Created-by: yangxuguang-huawei
Commit-by: yangxuguang-huawei
Merged-by: openharmony_ci
Description: **IssueNo**:
https://gitcode.com/openharmony/systemabilitymgr_samgr/issues/1087
**Description**:
**稳定性自检:**
| 自检项 | 自检结果 |
| ------------------------------------------------------------ | -------- |
| 涉及跨进程调用的相关操作需要抛至主线程或加锁防止并发 | ok|
| 成员变量进行赋值或创建需要排查并发 | ok|
| 谨慎在lambda表达式中使用引用捕获 | ok|
| 谨慎在未经拷贝的情况下使用外部传入的string、C字符串 | ok|
| map\vector\list\set等stl模板类使用时需要排查并发 | ok|
| 谨慎考虑加锁范围 | ok|
| 在IPC通信中谨慎使用同步通信方式 | ok|
| 禁止传递this指针至其他模块或线程(特别是eventhandler任务) | ok|
| 禁止将外部传入的裸指针在内部直接构造智能指针 | ok|
| 禁止多个独立创建的智能指针管理同一地址 | ok|
| 禁止在析构函数中抛异步任务 | ok|
| 禁止js对象在非js线程(例如在IPC线程)创建、使用或销毁 | ok|
| 禁止在对外接口中未经判空直接使用外部传入的指针 | ok|
| 禁止接口返回局部变量引用 | ok|
| 禁止在信号函数中加锁 | ok|
| 禁止在关键流程(SA启动、应用启动等主流程)执行耗时的操作 | ok|
| 禁止将同一个cpp编译在不同的so中 | ok|
**安全编码自检:**
| 自检项 | 自检结果 |
| -------------------------------------------------------------- | -------- |
| 裸指针避免通过隐式转换构造为sptr | ok|
| json对象在取值之前必须先判断类型,避免类型不匹配 | ok|
| 序列化时必须对传入的数组大小进行校验,避免出现超大数组 | ok |
| 避免使用未明确位宽的整型,选择使用int8_t、uint8_t等类型 | ok|
| 外部传入的路径要做规范化校验,对路径中的.、..、../等特殊字符严格校验 | ok |
| 指针变量、表示资源描述符的变量、bool变量必须赋初值 | ok|
| readParcelable获取的对象使用前需要判空 | ok|
| 分配和释放内存的函数需要成对出现 | ok|
| 申请内存后异常退出前需要及时进行内存释放 | ok |
| 内存申请前必须对内存大小进行合法性校验 | ok|
| 内存分配后必须判断是否成功 | ok|
| 禁止使用realloc、alloca函数 | ok|
| 禁止打印文件路径、口令等敏感信息,如有需要,使用private修饰 | ok|
| 禁止打印内存地址 | ok|
| 整数之间运算时必须严格检查,确保不会出现溢出、反转、除0 | ok|
| 禁止对有符号整数进行位操作符运算 | ok|
| 禁止对指针进行逻辑或位运算 | ok|
| 循环次数如果收外部数据控制,需要检验其合法性 | ok|
| 禁止使用内存操作类危险函数,需要使用安全函数 | ok|
| 谨慎使用不可重入函数 | ok|
| 必须检查安全函数的返回值,并进行正确处理 | ok|
| 禁止仅通过TokenType类型判断绕过权限校验 | ok|
**TDD Result**:
已验证OK
**XTS Result**:
已验证OK
### 是否已执行L0用例
- [x] 已验证
- [ ] 不涉及。如不涉及,请写明理由
See merge request: openharmony/ability_ability_runtime!18456
|
2026-02-25 14:09:58 +08:00 |
|
openharmony_ci
|
a8d7a9f554
|
!18454 merge feat/connect-ets-1 into master
feat: Connect/Disconnect AgentExtension 1.2 part1
Created-by: yangxuguang-huawei
Commit-by: yangxuguang-huawei
Merged-by: openharmony_ci
Description: **IssueNo**:
https://gitcode.com/openharmony/ability_ability_runtime/issues/14564
**Description**:
**稳定性自检:**
| 自检项 | 自检结果 |
| ------------------------------------------------------------ | -------- |
| 涉及跨进程调用的相关操作需要抛至主线程或加锁防止并发 | ok|
| 成员变量进行赋值或创建需要排查并发 | ok|
| 谨慎在lambda表达式中使用引用捕获 | ok|
| 谨慎在未经拷贝的情况下使用外部传入的string、C字符串 | ok|
| map\vector\list\set等stl模板类使用时需要排查并发 | ok|
| 谨慎考虑加锁范围 | ok|
| 在IPC通信中谨慎使用同步通信方式 | ok|
| 禁止传递this指针至其他模块或线程(特别是eventhandler任务) | ok|
| 禁止将外部传入的裸指针在内部直接构造智能指针 | ok|
| 禁止多个独立创建的智能指针管理同一地址 | ok|
| 禁止在析构函数中抛异步任务 | ok|
| 禁止js对象在非js线程(例如在IPC线程)创建、使用或销毁 | ok|
| 禁止在对外接口中未经判空直接使用外部传入的指针 | ok|
| 禁止接口返回局部变量引用 | ok|
| 禁止在信号函数中加锁 | ok|
| 禁止在关键流程(SA启动、应用启动等主流程)执行耗时的操作 | ok|
| 禁止将同一个cpp编译在不同的so中 | ok|
**安全编码自检:**
| 自检项 | 自检结果 |
| -------------------------------------------------------------- | -------- |
| 裸指针避免通过隐式转换构造为sptr | ok|
| json对象在取值之前必须先判断类型,避免类型不匹配 | ok|
| 序列化时必须对传入的数组大小进行校验,避免出现超大数组 | ok |
| 避免使用未明确位宽的整型,选择使用int8_t、uint8_t等类型 | ok|
| 外部传入的路径要做规范化校验,对路径中的.、..、../等特殊字符严格校验 | ok |
| 指针变量、表示资源描述符的变量、bool变量必须赋初值 | ok|
| readParcelable获取的对象使用前需要判空 | ok|
| 分配和释放内存的函数需要成对出现 | ok|
| 申请内存后异常退出前需要及时进行内存释放 | ok |
| 内存申请前必须对内存大小进行合法性校验 | ok|
| 内存分配后必须判断是否成功 | ok|
| 禁止使用realloc、alloca函数 | ok|
| 禁止打印文件路径、口令等敏感信息,如有需要,使用private修饰 | ok|
| 禁止打印内存地址 | ok|
| 整数之间运算时必须严格检查,确保不会出现溢出、反转、除0 | ok|
| 禁止对有符号整数进行位操作符运算 | ok|
| 禁止对指针进行逻辑或位运算 | ok|
| 循环次数如果收外部数据控制,需要检验其合法性 | ok|
| 禁止使用内存操作类危险函数,需要使用安全函数 | ok|
| 谨慎使用不可重入函数 | ok|
| 必须检查安全函数的返回值,并进行正确处理 | ok|
| 禁止仅通过TokenType类型判断绕过权限校验 | ok|
**TDD Result**:
已验证OK
**XTS Result**:
已验证ok
### 是否已执行L0用例
- [x] 已验证
- [ ] 不涉及。如不涉及,请写明理由
See merge request: openharmony/ability_ability_runtime!18454
|
2026-02-25 12:17:55 +08:00 |
|
zexin_c
|
c8a9793114
|
modify create with dlopen
Signed-off-by: zexin_c <chenzexin14@huawei.com>
|
2026-02-25 11:57:50 +08:00 |
|
yangxuguang-huawei
|
6749211e24
|
bugfix: AgentCard
Signed-off-by: yangxuguang-huawei <yangxuguang3@huawei.com>
|
2026-02-25 11:10:27 +08:00 |
|
yangxuguang-huawei
|
6f0a9e1509
|
feat: Connect/Disconnect AgentExtension 1.2 part1
Signed-off-by: yangxuguang-huawei <yangxuguang3@huawei.com>
|
2026-02-25 10:55:55 +08:00 |
|
yangxuguang-huawei
|
8ca7c46899
|
feat: remove AGENT_MGR_SERVICE_ID
Signed-off-by: yangxuguang-huawei <yangxuguang3@huawei.com>
|
2026-02-25 09:31:34 +08:00 |
|
yangxuguang-huawei
|
0adda894a3
|
bugfix: AgentCard
Signed-off-by: yangxuguang-huawei <yangxuguang3@huawei.com>
|
2026-02-24 22:12:04 +08:00 |
|
zexin_c
|
bb13389ed4
|
rename file
Signed-off-by: zexin_c <chenzexin14@huawei.com>
|
2026-02-24 11:47:20 +08:00 |
|
zexin_c
|
40feda9ffa
|
add etsAgentUI
Signed-off-by: zexin_c <chenzexin14@huawei.com>
|
2026-02-24 10:59:55 +08:00 |
|
SKY2001
|
1dd9bc2d7f
|
AgentExtension-1.2
Signed-off-by: SKY2001 <songtianyu10@huawei.com>
|
2026-02-24 10:38:29 +08:00 |
|
openharmony_ci
|
499259b3a5
|
!18425 merge master into master
change agent name
Created-by: littlejerry1
Commit-by: unknown
Merged-by: openharmony_ci
Description: **IssueNo**:
https://gitcode.com/openharmony/ability_ability_runtime/issues/14542
**Description**:
change agend name
**稳定性自检:**
NA
**安全编码自检:**
NA
**TDD Result**:
NA
**XTS Result**:
NA
### 是否已执行L0用例
- [NA] 已验证
- [ ] 不涉及。如不涉及,请写明理由
See merge request: openharmony/ability_ability_runtime!18425
|
2026-02-14 11:32:32 +08:00 |
|
unknown
|
393063ef8c
|
change agend name
Signed-off-by: unknown <sijunjie@huawei.com>
|
2026-02-14 09:22:59 +08:00 |
|
openharmony_ci
|
0def50b9c2
|
!18424 merge master into master
fix bugs
Created-by: littlejerry1
Commit-by: unknown
Merged-by: openharmony_ci
Description: **IssueNo**:
https://gitcode.com/openharmony/ability_ability_runtime/issues/14541
**Description**:
变更AgentCard字段
**稳定性自检:**
ok
**安全编码自检:**
ok
**TDD Result**:
ok
**XTS Result**:
ok
### 是否已执行L0用例
- [NA] 已验证
- [ ] 不涉及。如不涉及,请写明理由
See merge request: openharmony/ability_ability_runtime!18424
|
2026-02-13 19:18:58 +08:00 |
|
unknown
|
a0db179e3f
|
fix bugs
Signed-off-by: unknown <sijunjie@huawei.com>
|
2026-02-13 18:05:12 +08:00 |
|
zexin_c
|
d62bf1d629
|
comment fix
Signed-off-by: zexin_c <chenzexin14@huawei.com>
|
2026-02-11 15:00:12 +08:00 |
|
zexin_c
|
00626ae675
|
fix gn path
Signed-off-by: zexin_c <chenzexin14@huawei.com>
|
2026-02-11 10:28:54 +08:00 |
|
zexin_c
|
630c4bc4e2
|
fix gn error & add extension process mode
Signed-off-by: zexin_c <chenzexin14@huawei.com>
|
2026-02-10 21:52:07 +08:00 |
|
zexin_c
|
60e405081d
|
use dlopen& fix gn error
Signed-off-by: zexin_c <chenzexin14@huawei.com>
|
2026-02-09 20:19:39 +08:00 |
|
zexin_c
|
e72b305aee
|
change filepath
Signed-off-by: zexin_c <chenzexin14@huawei.com>
|
2026-02-09 10:53:54 +08:00 |
|
yangxuguang-huawei
|
3d30b86f24
|
refactor: AgentRuntime
Signed-off-by: yangxuguang-huawei <yangxuguang3@huawei.com>
|
2026-02-07 15:47:13 +08:00 |
|
openharmony_ci
|
46242fe95e
|
!18246 merge agentUI into master
add agentuiextension Ability
Created-by: zexin_c
Commit-by: zexin_c
Merged-by: openharmony_ci
Description: **IssueNo**:
**Description**:
**稳定性自检:**
| 自检项 | 自检结果 |
| ------------------------------------------------------------ | -------- |
| 涉及跨进程调用的相关操作需要抛至主线程或加锁防止并发 | PASS |
| 成员变量进行赋值或创建需要排查并发 | PASS |
| 谨慎在lambda表达式中使用引用捕获 | PASS |
| 谨慎在未经拷贝的情况下使用外部传入的string、C字符串 | PASS |
| map\vector\list\set等stl模板类使用时需要排查并发 | PASS |
| 谨慎考虑加锁范围 | PASS |
| 在IPC通信中谨慎使用同步通信方式 |PASS |
| 禁止传递this指针至其他模块或线程(特别是eventhandler任务) | PASS |
| 禁止将外部传入的裸指针在内部直接构造智能指针 | PASS |
| 禁止多个独立创建的智能指针管理同一地址 | PASS |
| 禁止在析构函数中抛异步任务 | PASS |
| 禁止js对象在非js线程(例如在IPC线程)创建、使用或销毁 | PASS |
| 禁止在对外接口中未经判空直接使用外部传入的指针 | PASS |
| 禁止接口返回局部变量引用 | PASS |
| 禁止在信号函数中加锁 | PASS |
| 禁止在关键流程(SA启动、应用启动等主流程)执行耗时的操作 | PASS |
| 禁止将同一个cpp编译在不同的so中 | PASS |
**安全编码自检:**
| 自检项 | 自检结果 |
| -------------------------------------------------------------- | -------- |
| 裸指针避免通过隐式转换构造为sptr | PASS |
| json对象在取值之前必须先判断类型,避免类型不匹配 | PASS |
| 序列化时必须对传入的数组大小进行校验,避免出现超大数组 | PASS |
| 避免使用未明确位宽的整型,选择使用int8_t、uint8_t等类型 | PASS |
| 外部传入的路径要做规范化校验,对路径中的.、..、../等特殊字符严格校验 | PASS |
| 指针变量、表示资源描述符的变量、bool变量必须赋初值 | PASS |
| readParcelable获取的对象使用前需要判空 | PASS |
| 分配和释放内存的函数需要成对出现 | PASS |
| 申请内存后异常退出前需要及时进行内存释放 | PASS |
| 内存申请前必须对内存大小进行合法性校验 | PASS |
| 内存分配后必须判断是否成功 | PASS |
| 禁止使用realloc、alloca函数 | PASS |
| 禁止打印文件路径、口令等敏感信息,如有需要,使用private修饰 | PASS |
| 禁止打印内存地址 | PASS |
| 整数之间运算时必须严格检查,确保不会出现溢出、反转、除0 | PASS |
| 禁止对有符号整数进行位操作符运算 | PASS |
| 禁止对指针进行逻辑或位运算 | PASS |
| 循环次数如果收外部数据控制,需要检验其合法性 | PASS |
| 禁止使用内存操作类危险函数,需要使用安全函数 |PASS |
| 谨慎使用不可重入函数 | PASS |
| 必须检查安全函数的返回值,并进行正确处理 | PASS |
| 禁止仅通过TokenType类型判断绕过权限校验 | PASS |
**TDD Result**:
不涉及
**XTS Result**:
### 是否已执行L0用例
- [x] 已验证
- [ ] 不涉及。如不涉及,请写明理由
See merge request: openharmony/ability_ability_runtime!18246
|
2026-02-06 14:50:36 +08:00 |
|
yangxuguang-huawei
|
a3332f89b6
|
bugfix: Connect/Disconnect AgentExtension part2
Signed-off-by: yangxuguang-huawei <yangxuguang3@huawei.com>
|
2026-02-06 11:32:42 +08:00 |
|
zexin_c
|
842bff506d
|
fix head & module path
Signed-off-by: zexin_c <chenzexin14@huawei.com>
|
2026-02-06 11:15:49 +08:00 |
|
yangxuguang-huawei
|
1a9142878c
|
tdd: Connect/Disconnect AgentExtension part4
Signed-off-by: yangxuguang-huawei <yangxuguang3@huawei.com>
|
2026-02-05 16:05:09 +08:00 |
|
yangxuguang-huawei
|
3a3dd69fed
|
bugfix: Connect/Disconnect AgentExtension
Signed-off-by: yangxuguang-huawei <yangxuguang3@huawei.com>
|
2026-02-05 10:20:14 +08:00 |
|
yangxuguang-huawei
|
bda958fdd0
|
tdd: Connect/Disconnect AgentExtension part2
Signed-off-by: yangxuguang-huawei <yangxuguang3@huawei.com>
|
2026-02-03 21:54:14 +08:00 |
|
yangxuguang-huawei
|
8f361c17f4
|
feat: Connect/Disconnect AgentExtension part3
Signed-off-by: yangxuguang-huawei <yangxuguang3@huawei.com>
|
2026-02-03 14:06:59 +08:00 |
|
zexin_c
|
36c694f59d
|
fix gn path
Signed-off-by: zexin_c <chenzexin14@huawei.com>
|
2026-02-03 09:08:54 +08:00 |
|
zexin_c
|
6b0052683c
|
fix include dir
Signed-off-by: zexin_c <chenzexin14@huawei.com>
|
2026-02-03 08:58:29 +08:00 |
|
zexin_c
|
8a671fd37c
|
add agentuiextenion
Signed-off-by: zexin_c <chenzexin14@huawei.com>
|
2026-02-03 08:58:29 +08:00 |
|
yangxuguang-huawei
|
612e8ebb9e
|
feat: Connect/Disconnect AgentExtension part2
Signed-off-by: yangxuguang-huawei <yangxuguang3@huawei.com>
|
2026-02-02 09:50:51 +08:00 |
|