设置ctl.start 属性启动init.rc 中service以及权限问题

通过property_set('ctl.start', service_xx)启动init.rc中的service可能会遇到权限问题。只有AID_SYSTEM或AID_ROOT用户可以执行此操作,或者在控制权限列表control_perms中指定。当遇到权限限制时,可以在/system/core/include/private/android_filesystem_config.h中查找对应进程定义,并将其添加到control_perms列表中,如为AID_WIFI添加启动service_xx的权限。" 105944144,7707476,win10家庭版安装Docker Desktop教程,"['Docker', 'Windows 10', 'Hyper-V', '容器技术']

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

通过property_set(“ctl.start”, service_xx);

来启动init.rc中的service是一个很方便方法来调用某个可执行程序或某个脚本程序

service service_xx /system/bin/xx

disabled
oneshot

但在非AID_ROOT、AID_SYSTEM 用户的进程中调用ctl.start ctl.stop会碰到权限问题:

system/core/init/property_service.c

[cpp] view plain copy
/*

  • White list of UID that are allowed to start/stop services.
  • Currently there are no user apps that require.
    */
    struct {
    const char *service;
    unsigned int uid;
    unsigned int gid;
    } control_perms[] = {
    { “dumpstate”,AID_SHELL, AID_LOG },
    {NULL, 0, 0 }
    };

/*

  • Checks permissions for starting/stoping system services.

  • AID_SYSTEM and AID_ROOT are always allowed.

  • Returns 1 if uid allowed, 0 otherwise.
    */
    static int check_control_perms(const char *name, int uid, int gid) {
    int i;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

android framework

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值