3 # procd_open_service(name, [script]):
4 # Initialize a new procd command message containing a service with one or more instances
6 # procd_close_service()
7 # Send the command message for the service
9 # procd_open_instance([name]):
10 # Add an instance to the service described by the previous procd_open_service call
12 # procd_set_param(type, [value...])
14 # command: command line (array).
15 # respawn info: array with 3 values $restart_timeout $fail_hreshold $max_fail
16 # env: environment variable (passed to the process)
17 # data: arbitrary name/value pairs for detecting config changes (table)
18 # file: configuration files (array)
19 # netdev: bound network device (detects ifindex changes)
20 # limits: resource limits (passed to the process)
21 # user info: array with 1 values $username
23 # No space separation is done for arrays/tables - use one function argument per command line argument
25 # procd_close_instance():
26 # Complete the instance being prepared
28 # procd_kill(service, [instance]):
29 # Kill a service instance (or all instances)
32 . $IPKG_INSTROOT/usr/share/libubox/jshn.sh
39 json_set_namespace procd old_cb
41 json_set_namespace $old_cb
46 eval "$1() { _procd_call _$1 \"\$@\"; }"
54 [ -n "$PROCD_DEBUG" ] && json_dump >&2
55 ubus call service "$cmd" "$(json_dump)"
59 _procd_open_service() {
63 _PROCD_SERVICE="$name"
67 json_add_string name "$name"
68 [ -n "$script" ] && json_add_string script "$script"
69 json_add_object instances
72 _procd_close_service() {
78 _procd_add_array_data() {
79 while [ "$#" -gt 0 ]; do
80 json_add_string "" "$1"
88 _procd_add_array_data "$@"
92 _procd_add_table_data() {
96 [ "$1" = "$val" ] && val=
97 json_add_string "$var" "$val"
105 _procd_add_table_data "$@"
109 _procd_open_instance() {
110 local name="$1"; shift
112 _PROCD_INSTANCE_SEQ="$(($_PROCD_INSTANCE_SEQ + 1))"
113 name="${name:-instance$_PROCD_INSTANCE_SEQ}"
114 json_add_object "$name"
115 [ -n "$TRACE_SYSCALLS" ] && json_add_boolean trace "1"
118 _procd_open_trigger() {
119 json_add_array "triggers"
122 _procd_open_validate() {
123 json_add_array "validate"
127 json_add_object "jail"
128 json_add_string name "$1"
129 json_add_string root "/tmp/.jail/$1"
135 log) json_add_boolean "log" "1";;
136 ubus) json_add_boolean "ubus" "1";;
137 procfs) json_add_boolean "procfs" "1";;
138 sysfs) json_add_boolean "sysfs" "1";;
141 json_add_object "mount"
146 _procd_add_jail_mount() {
147 local _json_no_warning=1
157 json_add_string "$a" "0"
163 _procd_add_jail_mount_rw() {
164 local _json_no_warning=1
174 json_add_string "$a" "1"
181 local type="$1"; shift
185 _procd_add_table "$type" "$@"
187 command|netdev|file|respawn|watch)
188 _procd_add_array "$type" "$@"
191 json_add_array "$type"
192 json_add_string "" "$@"
196 json_add_int "$type" "$1"
199 json_add_string "$type" "$1"
202 json_add_boolean "$type" "$1"
207 _procd_add_interface_trigger() {
209 _procd_add_array_data "$1"
213 _procd_add_array_data "if"
216 _procd_add_array_data "eq" "interface" "$1"
221 _procd_add_array_data "run_script" "$@"
229 _procd_add_reload_interface_trigger() {
230 local script=$(readlink "$initscript")
231 local name=$(basename ${script:-$initscript})
234 _procd_add_interface_trigger "interface.*" $1 /etc/init.d/$name reload
238 _procd_add_config_trigger() {
240 _procd_add_array_data "$1"
244 _procd_add_array_data "if"
247 _procd_add_array_data "eq" "package" "$1"
252 _procd_add_array_data "run_script" "$@"
260 _procd_add_raw_trigger() {
262 _procd_add_array_data "$1"
269 _procd_add_array_data "run_script" "$@"
273 json_add_int "" "$timeout"
278 _procd_add_reload_trigger() {
279 local script=$(readlink "$initscript")
280 local name=$(basename ${script:-$initscript})
285 _procd_add_config_trigger "config.change" "$file" /etc/init.d/$name reload
290 _procd_add_validation() {
293 _procd_close_validate
296 _procd_append_param() {
297 local type="$1"; shift
298 local _json_no_warning=1
302 _procd_set_param "$type" "$@"
307 _procd_add_table_data "$@"
309 command|netdev|file|respawn|watch)
310 _procd_add_array_data "$@"
313 json_add_string "" "$@"
319 _procd_close_instance() {
323 _procd_close_trigger() {
327 _procd_close_validate() {
331 _procd_add_instance() {
333 _procd_set_param command "$@"
334 _procd_close_instance
342 [ -n "$service" ] && json_add_string name "$service"
343 [ -n "$instance" ] && json_add_string instance "$instance"
344 _procd_ubus_call delete
349 json_set_namespace procd __procd_old_cb
355 json_set_namespace $__procd_old_cb
358 _procd_set_config_changed() {
362 json_add_string type config.change
364 json_add_string package "$package"
367 ubus call service event "$(json_dump)"
370 procd_add_mdns_service() {
371 local service proto port
375 json_add_object "${service}_$port"
376 json_add_string "service" "_$service._$proto.local"
377 json_add_int port "$port"
380 for txt in $@; do json_add_string "" $txt; done
388 json_add_object "mdns"
389 procd_add_mdns_service $@
394 uci_validate_section()
402 _result=`/sbin/validate_data "$_package" "$_type" "$_name" "$@" 2> /dev/null`
405 [ "$_error" = "0" ] || `/sbin/validate_data "$_package" "$_type" "$_name" "$@" 1> /dev/null`
411 procd_close_service \
413 procd_add_raw_trigger \
414 procd_add_config_trigger \
415 procd_add_interface_trigger \
416 procd_add_reload_trigger \
417 procd_add_reload_interface_trigger \
419 procd_close_trigger \
420 procd_open_instance \
421 procd_close_instance \
422 procd_open_validate \
423 procd_close_validate \
425 procd_add_jail_mount \
426 procd_add_jail_mount_rw \
429 procd_add_validation \
430 procd_set_config_changed \