浅谈su临时切换用户的实现方法

最近开发Android app需要用到root权限去调用一些shell程序,接触过Linux的同学知道用su这个命令,su的意思是switch user,切换用户。然而在我调用su的时候,授权管理器总会弹出确认提示,更操蛋的是我手机安装的授权管理器即使设置了自动授权所有请求都不起作用!火了!干脆自己找su源码去改写个来用。

搜索了一下,发现superuser的su源码:

[cpp]  view plain copy
  1. /* 
  2. ** Licensed under the Apache License, Version 2.0 (the "License");  
  3. ** you may not use this file except in compliance with the License.  
  4. ** You may obtain a copy of the License at  
  5. ** 
  6. **     http://www.apache.org/licenses/LICENSE-2.0  
  7. ** 
  8. ** Unless required by applicable law or agreed to in writing, software  
  9. ** distributed under the License is distributed on an "AS IS" BASIS,  
  10. ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
  11. ** See the License for the specific language governing permissions and  
  12. ** limitations under the License. 
  13. */  
  14.   
  15. #include   
  16. #include   
  17. #include   
  18. #include   
  19. #include   
  20. #include   
  21. #include   
  22.   
  23. #include   
  24. #include   
  25.   
  26. #include   
  27.   
  28. #include   
  29.   
  30. #define DBPATH "/data/data/com.koushikdutta.superuser/databases/superuser.sqlite"  
  31.   
  32. static int g_puid;  
  33.   
  34. static void printRow(int argc, char** argv, char** azColName)  
  35. {  
  36.         int i;  
  37.         for (i = 0; i < argc; i++)  
  38.         {  
  39.                 printf("%s: %s\n", azColName[i], argv[i]);  
  40.         }  
  41. }  
  42.   
  43. typedef struct whitelistCallInfo whitelistCallInfo;  
  44. struct whitelistCallInfo  
  45. {  
  46.         sqlite3* db;  
  47.         int count;  
  48. };  
  49.   
  50. static int whitelistCallback(void *data, int argc, char **argv, char **azColName)  
  51. {         
  52.         whitelistCallInfo* callInfo = (whitelistCallInfo*)data;  
  53.         // note the count  
  54.         int count = atoi(argv[2]);  
  55.         callInfo->count = count;  
  56.         // remove whitelist entries that are expired  
  57.         if (count - 1 <= 0)  
  58.         {  
  59.                 char remove[1024];  
  60.                 sprintf(remove, "delete from whitelist where _id='%s';", argv[0]);  
  61.                 sqlite3_exec(callInfo->db, remove, NULL, NULL, NULL);  
  62.                 return 0;  
  63.         }  
  64.   
  65.         char update[1024];  
  66.         sprintf(update, "update whitelist set count=%d where _id='%s';", count, argv[0]);  
  67.         sqlite3_exec(callInfo->db, update, NULL, NULL, NULL);  
  68.         return 0;  
  69. }  
  70.   
  71. static int checkWhitelist()  
  72. {  
  73.         sqlite3 *db;  
  74.         int rc = sqlite3_open_v2(DBPATH, &db, SQLITE_OPEN_READWRITE, NULL);  
  75.         if (!rc)  
  76.         {  
  77.                 char *errorMessage;  
  78.                 char query[1024];  
  79.                 sprintf(query, "select * from whitelist where _id=%d limit 1;", g_puid);  
  80.                 struct whitelistCallInfo callInfo;  
  81.                 callInfo.count = 0;  
  82.                 callInfo.db = db;  
  83.                 rc = sqlite3_exec(db, query, whitelistCallback, &callInfo, &errorMessage);  
  84.                 if (rc != SQLITE_OK)  
  85.                 {  
  86.                         sqlite3_close(db);  
  87.                         return 0;  
  88.                 }  
  89.                 sqlite3_close(db);  
  90.                 return callInfo.count;  
  91.         }  
  92.         sqlite3_close(db);  
  93.         return 0;  
  94. }  
  95.   
  96. static int executionFailure(char *context)  
  97. {  
  98.         fprintf(stderr, "su: %s. Error:%s\n", context, strerror(errno));  
  99.         return -errno;  
  100. }  
  101.   
  102. static int permissionDenied()  
  103. {  
  104.         // the superuser activity couldn't be started  
  105.         printf("su: permission denied\n");  
  106.         return 1;  
  107. }  
  108.   
  109. int main(int argc, char **argv)  
  110. {  
  111.         struct stat stats;  
  112.         struct passwd *pw;  
  113.         int uid = 0;  
  114.         int gid = 0;  
  115.   
  116.         int ppid = getppid();  
  117.         char szppid[256];  
  118.         sprintf(szppid, "/proc/%d", ppid);  
  119.         stat(szppid, &stats);  
  120.         g_puid = stats.st_uid;  
  121.   
  122.         // lets make sure the caller is allowed to execute this  
  123.         if (!checkWhitelist())  
  124.         {  
  125.                 char sysCmd[1024];  
  126.                 sprintf(sysCmd, "am start -a android.intent.action.MAIN -n com.koushikdutta.superuser/com.koushikdutta.superuser.SuperuserRequestActivity --ei uid %d --ei pid %d > /dev/null", g_puid, ppid);  
  127.                 if (system(sysCmd))  
  128.                         return executionFailure("am.");  
  129.   
  130.                 int found = 0;  
  131.                 int i;  
  132.                 for (i = 0; i < 10; i++)  
  133.                 {  
  134.                         sleep(1);  
  135.                         // 0 means waiting for user input  
  136.                         // > 0 means yes/always  
  137.                         // < 0 means no  
  138.                         int checkResult = checkWhitelist();  
  139.                         if (checkResult > 0)  
  140.                         {  
  141.                                 found = 1;  
  142.                                 break;  
  143.                         }  
  144.                         else if (checkResult < 0)  
  145.                         {  
  146.                                 // user hit no  
  147.                                 return permissionDenied();  
  148.                         }  
  149.                 }  
  150.   
  151.                 if (!found)  
  152.                         return permissionDenied();  
  153.         }  
  154.   
  155.         if(setgid(gid) || setuid(uid))   
  156.                 return permissionDenied();  
  157.   
  158.         char *exec_args[argc + 1];  
  159.         exec_args[argc] = NULL;  
  160.         exec_args[0] = "sh";  
  161.         int i;  
  162.         for (i = 1; i < argc; i++)  
  163.         {  
  164.                 exec_args[i] = argv[i];  
  165.         }  
  166.         execv("/system/bin/sh", exec_args);  
  167.         return executionFailure("sh");  
  168. }  

才百来行代码,来阅读下吧!

。。。

看明白了,浅浅地了解了思路,大概就是先看看当前进程的uid是不是在白名单上,如果在就马上去拿权限,如果不在那就调用am start启动授权管理器的activity来让用户选择是否通过。

从代码上看拿权限的关键点就是setuid(uid)和setgid(gid)了,这两函数就是把当前进程设置为属于对应的用户和用户组。看代码上下文得知uid和gid的值都是0,其实就是root的id值嘛。设置完之后,那就用execv运行/system/bin/sh程序打开一个新的sh进程,新的sh进程就有root权限,并且还能在此进程上面运行各种其他程序或者执行shell了。

好吧,我不需要验证白名单不需要用户确认,直接拿到root来执行shell就好了。那我就改写下代码,那些浮云都删掉。

[cpp]  view plain copy
  1. int main(int argc, char **argv)  
  2. {  
  3.         int uid = 0;  
  4.         int gid = 0;  
  5.   
  6.         if(setgid(gid) || setuid(uid)) {  
  7.                 printf("permission denied!");  
  8.                 return 1;  
  9.         }  
  10.   
  11.         char *exec_args[argc + 1];  
  12.         exec_args[argc] = NULL;  
  13.         exec_args[0] = "sh";  
  14.         int i;  
  15.         for (i = 1; i < argc; i++)  
  16.         {  
  17.                 exec_args[i] = argv[i];  
  18.         }  
  19.         execv("/system/bin/sh", exec_args);  
  20.         return 1;  
  21. }  
就这样就OK?!不行呢~编译出来的su程序setuid()一直不成功呢~PS:代码是绝对可行的呀!

好吧,点睛之笔来了!

原来要想调用setuid()是需要root权限的,但是我根本没有root权限又如何调用这个呀?很矛盾。

还漏了设置su文件的权限哦!

先感叹下,Linux的权限控制确实是复杂哦!

chmod 755 su

悲剧,还不行。

其实,Linux的文件权限还有组特殊权限的,要我的su能正常运行必须要设置两个特殊权限!这两权限的名称就叫setuid、setgid!

setuid权限就是让程序进程在特殊情况下可以使用该文件所有者的权限!我表达的有点别扭!

就是我su程序运行之后,

我想调用setuid(),

但是进程现在不是root用户的,

那么看看有没设置特殊权限setuid?

哎哟,有哦!

那么su文件的所有者是谁?

是root哦!

系统说:OK,你被批准了!

哦耶,setuid()设置成功!(setgid()同理)


setuid()和setgid()执行成功了!我们的进程就正式切换成root的了哦!调用execv()去创建我们新的sh进程!拿着root权限各种为所欲为!!!


文笔不好,关于文件特殊权限写得好像云里雾里的感觉!抛出参考文献吧!

点击打开链接 关于Linux特殊权限的一些知识。


原文地址:http://blog.csdn.net/captain_black/article/details/8714213

你可能感兴趣的:(Android)