adbd cannot run as root in production builds

本文详细解释了在尝试使用adb获取Root权限时遇到的错误信息“adb cannot run as root in production builds”的原因,并提供了修改建议。
adb root 后为什么出现
“adbd cannot run as root in production builds”
看看下面的代码就懂了,你也会知道怎么去改了!




~/mywork/403-sync/system/core/adb/services.c/ 




110 void restart_root_service(int fd, void *cookie)
111 {
112     char buf[100];
113     char value[PROPERTY_VALUE_MAX];
114 
115     if (getuid() == 0) {
116         snprintf(buf, sizeof(buf), "adbd is already running as root\n");
117         writex(fd, buf, strlen(buf));
118         adb_close(fd);
119     } else {
120         property_get("ro.debuggable", value, "");
121         if (strcmp(value, "1") != 0) {
122             snprintf(buf, sizeof(buf), "adbd cannot run as root in production builds\n");
123             writex(fd, buf, strlen(buf));
124             adb_close(fd);
125             return;
126         }
127 
128         snprintf(buf, sizeof(buf), "restarting adbd as root\n");
129         writex(fd, buf, strlen(buf));
130         adb_close(fd);
131 
132         // This will cause a property trigger in init.rc to restart us
133         property_set("service.adb.root", "1");
134     }
135 }
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

YasinLeeX

再来一杯西湖龙井。

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

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

打赏作者

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

抵扣说明:

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

余额充值