1. 程式人生 > >Android 的 init.rc 檔案簡介

Android 的 init.rc 檔案簡介

init.rc由許多的Action和Service組成。每一個語句佔據一行,並且各個關鍵字被空格分開.

由 # (前面允許有空格)開始的行都是註釋行(comment)

一個actions 或 services 的開始隱含聲明瞭一個新的段,所有commands 或 options 屬於最近的宣告。在第一個段之前的 commands 或 options 都會被忽略

每一個actions 和 services 都有不同的名字。後面與前面發生重名的,那麼這個後面重名的將被忽略或被認為是一個錯誤。

actions其實就是一組被命名的命令序列。actions 都有一個觸發條件,觸發條件決定了action何時執行。當一個事件發生如果匹配action的觸發條件,那麼這個action將會被新增到預備執行佇列的尾部(除非它已經在隊列當中) 

每一個action中的命令將被順序執行。init程序負責在其它activities(如:裝置建立/銷燬,屬性設定,程序重啟)之間執行這些命令序列。

每一個action格式如下:

on <trigger>

<command>

<command>

  ...

trigger是一個action觸發的條件,一共有如下幾種:

1、boot

發生在init啟動時,/init.conf被載入以後。

2、<name>=<value>

發生在名字為<name>的屬性的值被設定為<value>時。

3、device-added-<path>/device-removed-<path>

當一個device node被新增/刪除時。

4、service-exited-<name>當某個服務退出時。

command一共有如下幾種:

1、exec <path> [<argument>]*

fork並execute一個路徑<path>下面的程式,直到程式執行完畢後,init才會繼續前進。儘量避免使用這個command,它有可能導致init阻塞。其它command不存在這個問題。

2、export <name> <value>

把全域性環境變數<name>的值設定為<value>。這個命令執行完畢以後啟動的所有程序都會繼承這個全域性變數。

3、ifup <interface>

Bring the network interface <interface> online.(開啟某個網絡卡)

4、import <filename>

Parse an init config file, extending the current configuration.

5、hostname <name>

Set the host name.

6、class_start <serviceclass>

如果某一類service沒有執行,啟動它們。

7、class_stop <serviceclass>

如果某一類service正在執行,停止它們。

8、domainname <name>

Set the domain name.

9、insmod <path>

安裝路徑<path>指定的模組。

10、mkdir <path>

建立<path>代表的資料夾,只能一層層地建立。

11、mount <type> <device> <dir> [ <mountoption> ]*

把<device>掛載到系統型別為<type>的檔案系統的<dir>目錄下。<device>可能有[email protected]的形式,代表名字為name的mtd塊裝置。

12、setkey

未定義

13、setprop <name> <value>

設定系統屬性。

14、setrlimit <resource> <cur> <max>

Set the rlimit for a resource.

15、start <service>

如果服務沒有執行,啟動它。

16、stop <service>

如果服務正在執行,停止它。

17、symlink <target> <path>

把<target>連結到目錄<path>下。

18、write <path> <string> [ <string> ]*

開啟<path>所指的檔案,並把<string>寫入。

關於3、5、8,參見init.rc裡面的

on boot

# basic network init

    ifup lo

    hostname localhost

    domainname localdomain

關於14,參見init.rc裡面的

# set RLIMIT_NICE to allow priorities from 19 to -20

    setrlimit 13 40 40

說完了action下來我們來說說service

services 是一些由init 啟動 和 重新(如果有需要)啟動的程式,當然這些程式如果是存在的。

每一個service格式如下:

service <name> <pathname> [ <argument> ]*

<option>

<option>

  ...

例如:

1

 service ppp /system/bin/pppd call gprs
     user root
     group system radio
     disabled
     oneshot

2

service mtpd /system/bin/mtpd
    socket mtpd stream 600 system system
    user vpn
    group vpn net_admin net_raw
    disabled
    oneshot

options 是service的修飾符,用來告訴init 怎樣及何時啟動service。一共有如下幾種:

1、disableds

這個服務不能通過啟動一類服務來啟動,只能單獨以名字來啟動。

2、socket <type> <name> <perm>  <user> <group> 

建立一個名字為/dev/socket/<name>的unix domain socket,並把它的fd傳遞給 載入的程序。<type>的值是dgram或stream.

注意:在init.rc中使用socket時,<type>是放在<name>之後的。

init程式在執行過程中可能會設定幾個特殊屬性的值,來告訴其它程式它正在做什麼。這些屬性是:

(1)、init.action

當前正在執行的action的名字,如果沒有,就是“”。

(2)、init.command

當前正在執行的command的名字,如果沒有,就是“”。

(3)、init.svc.<name>

一個服務的狀態。可能的值有:“stopped”,"running","restarting"

3、user <username>

在啟動服務之前,把使用者名稱切換到<username>。預設是root

4、group <groupname> [ <groupname> ]*

在啟動服務之前,把組名切換到<groupname>。一個服務可能屬於多個組。

5、capability [ <capability> ]+

Set linux capability before exec'ing this service

6、oneshot

服務之執行一次,退出後不再重啟。

7、class <name>

為服務設定一個類別,一個類別是中的服務可以同時啟動或停止。如果沒有這個屬性,服務的預設類別是“default”

預設情況下,通過init啟動的程式都會把stdout和stderr定向到/dev/null。有時為了除錯方便,可以通過Android的logwrapper程式啟動某個程式。這樣,被啟動程式stdout和stderr就被定向到了Android的LOG系統中,可以通過logcat來查看了。

例如:

service akmd /system/bin/logwraper /sbin/akmd