blob: a91d9d4b5dcff18c96482fb84338c68a9129191a [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef _INIT_INIT_H
18#define _INIT_INIT_H
19
Dima Zavinda04c522011-09-01 17:09:44 -070020#include <cutils/list.h>
Colin Crossed8a7d82010-04-19 17:05:34 -070021
Colin Cross6310a822010-04-20 14:29:05 -070022#include <sys/stat.h>
23
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080024void handle_control_message(const char *msg, const char *arg);
25
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080026struct command
27{
28 /* list of commands in an action */
29 struct listnode clist;
30
31 int (*func)(int nargs, char **args);
32 int nargs;
33 char *args[1];
34};
35
36struct action {
37 /* node in list of all actions */
38 struct listnode alist;
39 /* node in the queue of pending actions */
40 struct listnode qlist;
41 /* node in list of actions for a trigger */
42 struct listnode tlist;
43
44 unsigned hash;
45 const char *name;
46
47 struct listnode commands;
48 struct command *current;
49};
50
51struct socketinfo {
52 struct socketinfo *next;
53 const char *name;
54 const char *type;
55 uid_t uid;
56 gid_t gid;
57 int perm;
58};
59
60struct svcenvinfo {
61 struct svcenvinfo *next;
62 const char *name;
63 const char *value;
64};
65
66#define SVC_DISABLED 0x01 /* do not autostart with class */
67#define SVC_ONESHOT 0x02 /* do not restart on exit */
68#define SVC_RUNNING 0x04 /* currently active */
69#define SVC_RESTARTING 0x08 /* waiting to restart */
70#define SVC_CONSOLE 0x10 /* requires console */
71#define SVC_CRITICAL 0x20 /* will reboot into recovery if keeps crashing */
Ken Sumrall752923c2010-12-03 16:33:31 -080072#define SVC_RESET 0x40 /* Use when stopping a process, but not disabling
73 so it can be restarted with its class */
Ken Sumralla2864802011-10-26 16:56:00 -070074#define SVC_RC_DISABLED 0x80 /* Remember if the disabled flag was set in the rc script */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080075
Nick Pelly830abe02010-03-23 20:37:40 -070076#define NR_SVC_SUPP_GIDS 12 /* twelve supplementary groups */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080077
Colin Crossebc6ff12010-04-13 19:52:01 -070078#define COMMAND_RETRY_TIMEOUT 5
79
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080080struct service {
81 /* list of all services */
82 struct listnode slist;
83
84 const char *name;
85 const char *classname;
86
87 unsigned flags;
88 pid_t pid;
89 time_t time_started; /* time of last start */
90 time_t time_crashed; /* first crash within inspection window */
91 int nr_crashed; /* number of times crashed within window */
92
93 uid_t uid;
94 gid_t gid;
95 gid_t supp_gids[NR_SVC_SUPP_GIDS];
96 size_t nr_supp_gids;
97
98 struct socketinfo *sockets;
99 struct svcenvinfo *envvars;
100
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800101 struct action onrestart; /* Actions to execute on restart. */
102
103 /* keycodes for triggering this service via /dev/keychord */
104 int *keycodes;
105 int nkeycodes;
106 int keychord_id;
San Mehatc83cd872009-05-14 14:54:22 -0700107
San Mehat4e221f02010-02-25 14:19:50 -0800108 int ioprio_class;
109 int ioprio_pri;
110
San Mehatc83cd872009-05-14 14:54:22 -0700111 int nargs;
112 /* "MUST BE AT THE END OF THE STRUCT" */
113 char *args[1];
114}; /* ^-------'args' MUST be at the end of this struct! */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800115
Colin Cross9c5366b2010-04-13 19:48:59 -0700116void notify_service_state(const char *name, const char *state);
117
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800118struct service *service_find_by_name(const char *name);
119struct service *service_find_by_pid(pid_t pid);
120struct service *service_find_by_keychord(int keychord_id);
121void service_for_each(void (*func)(struct service *svc));
122void service_for_each_class(const char *classname,
123 void (*func)(struct service *svc));
124void service_for_each_flags(unsigned matchflags,
125 void (*func)(struct service *svc));
126void service_stop(struct service *svc);
Ken Sumrall752923c2010-12-03 16:33:31 -0800127void service_reset(struct service *svc);
San Mehatf24e2522009-05-19 13:30:46 -0700128void service_start(struct service *svc, const char *dynamic_args);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800129void property_changed(const char *name, const char *value);
130
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800131#define INIT_IMAGE_FILE "/initlogo.rle"
132
133int load_565rle_image( char *file_name );
134
135#endif /* _INIT_INIT_H */