blob: 2bbfa22c679c999d1e6d67fdf0906439c0bca570 [file] [log] [blame]
Tyler Chatowa79419d2020-08-12 20:12:11 -07001#ifndef AOS_STARTER_STARTERD_LIB_H_
2#define AOS_STARTER_STARTERD_LIB_H_
3
Tyler Chatowa79419d2020-08-12 20:12:11 -07004#include <sys/signalfd.h>
5#include <sys/wait.h>
6
Tyler Chatowbf0609c2021-07-31 16:13:27 -07007#include <csignal>
8#include <cstdio>
Tyler Chatowa79419d2020-08-12 20:12:11 -07009#include <string>
10#include <unordered_map>
11#include <vector>
12
13#include "aos/configuration.h"
14#include "aos/events/shm_event_loop.h"
15#include "aos/ipc_lib/signalfd.h"
16#include "aos/macros.h"
17#include "aos/starter/starter_generated.h"
18#include "aos/starter/starter_rpc_generated.h"
19
20namespace aos {
21namespace starter {
22
23// RAII Pipe for sending individual ints between reader and writer.
24class ScopedPipe {
25 public:
26 class ScopedReadPipe;
27 class ScopedWritePipe;
28
29 static std::tuple<ScopedReadPipe, ScopedWritePipe> MakePipe();
30
31 virtual ~ScopedPipe();
32
33 int fd() const { return fd_; }
34
35 private:
36 ScopedPipe(int fd = -1);
37
38 int fd_;
39
40 ScopedPipe(const ScopedPipe &) = delete;
41 ScopedPipe &operator=(const ScopedPipe &) = delete;
42 ScopedPipe(ScopedPipe &&);
43 ScopedPipe &operator=(ScopedPipe &&);
44};
45
46class ScopedPipe::ScopedReadPipe : public ScopedPipe {
47 public:
48 std::optional<uint32_t> Read();
49
50 private:
51 using ScopedPipe::ScopedPipe;
52
53 friend class ScopedPipe;
54};
55
56class ScopedPipe::ScopedWritePipe : public ScopedPipe {
57 public:
58 void Write(uint32_t data);
59
60 private:
61 using ScopedPipe::ScopedPipe;
62
63 friend class ScopedPipe;
64};
65
66// Manages a running process, allowing starting and stopping, and restarting
67// automatically.
68class Application {
69 public:
70 Application(const aos::Application *application,
71 aos::ShmEventLoop *event_loop);
72
73 flatbuffers::Offset<aos::starter::ApplicationStatus> PopulateStatus(
74 flatbuffers::FlatBufferBuilder *builder);
75
76 // Returns the last pid of this process. -1 if not started yet.
77 pid_t get_pid() const { return pid_; }
78
79 // Handles a SIGCHLD signal received by the parent. Does nothing if this
80 // process was not the target. Returns true if this Application should be
81 // removed.
82 bool MaybeHandleSignal();
83
84 // Handles a command. May do nothing if application is already in the desired
85 // state.
86 void HandleCommand(aos::starter::Command cmd);
87
88 void Start() { HandleCommand(aos::starter::Command::START); }
89
90 void Stop() { HandleCommand(aos::starter::Command::STOP); }
91
92 void Terminate();
93
94 void set_args(
95 const flatbuffers::Vector<flatbuffers::Offset<flatbuffers::String>>
96 &args);
97
Austin Schuh5f79a5a2021-10-12 17:46:50 -070098 bool autostart() const { return autostart_; }
99
Tyler Chatowa79419d2020-08-12 20:12:11 -0700100 private:
101 void DoStart();
102
103 void DoStop(bool restart);
104
105 void QueueStart();
106
107 // Copy flatbuffer vector of strings to vector of std::string.
108 static std::vector<std::string> FbsVectorToVector(
109 const flatbuffers::Vector<flatbuffers::Offset<flatbuffers::String>> &v);
110
111 static std::optional<uid_t> FindUid(const char *name);
Austin Schuh529ac592021-10-14 16:11:13 -0700112 static std::optional<gid_t> FindPrimaryGidForUser(const char *name);
Tyler Chatowa79419d2020-08-12 20:12:11 -0700113
114 // Next unique id for all applications
115 static inline uint64_t next_id_ = 0;
116
117 std::string name_;
118 std::string path_;
119 std::vector<char *> args_;
120 std::optional<uid_t> user_;
Austin Schuh529ac592021-10-14 16:11:13 -0700121 std::optional<gid_t> group_;
Tyler Chatowa79419d2020-08-12 20:12:11 -0700122
123 pid_t pid_ = -1;
124 ScopedPipe::ScopedReadPipe read_pipe_;
125 ScopedPipe::ScopedWritePipe write_pipe_;
126 uint64_t id_;
127 int exit_code_ = 0;
128 aos::monotonic_clock::time_point start_time_, exit_time_;
129 bool queue_restart_ = false;
130 bool terminating_ = false;
Austin Schuh5f79a5a2021-10-12 17:46:50 -0700131 bool autostart_ = true;
Tyler Chatowa79419d2020-08-12 20:12:11 -0700132
133 aos::starter::State status_ = aos::starter::State::STOPPED;
134 aos::starter::LastStopReason stop_reason_ =
135 aos::starter::LastStopReason::STOP_REQUESTED;
136
137 aos::ShmEventLoop *event_loop_;
138 aos::TimerHandler *start_timer_, *restart_timer_, *stop_timer_;
139
140 DISALLOW_COPY_AND_ASSIGN(Application);
141};
142
143// Registers a signalfd listener with the given event loop and calls callback
144// whenever a signal is received.
145class SignalListener {
146 public:
147 SignalListener(aos::ShmEventLoop *loop,
148 std::function<void(signalfd_siginfo)> callback);
149
150 ~SignalListener();
151
152 private:
153 aos::ShmEventLoop *loop_;
154 std::function<void(signalfd_siginfo)> callback_;
155 aos::ipc_lib::SignalFd signalfd_;
156
157 DISALLOW_COPY_AND_ASSIGN(SignalListener);
158};
159
160class Starter {
161 public:
162 Starter(const aos::Configuration *event_loop_config);
163
164 // Inserts a new application from config. Returns the inserted application if
165 // it was successful, otherwise nullptr if an application already exists
166 // with the given name.
167 Application *AddApplication(const aos::Application *application);
168
169 // Runs the event loop and starts all applications
170 void Run();
171
172 void Cleanup();
173
174 private:
175 // Signals which indicate starter has died
176 static const inline std::vector<int> kStarterDeath = {
177 SIGHUP, SIGINT, SIGQUIT, SIGILL, SIGABRT, SIGFPE,
178 SIGSEGV, SIGPIPE, SIGTERM, SIGBUS, SIGXCPU};
179
180 void OnSignal(signalfd_siginfo signal);
181
182 void SendStatus();
183
184 const std::string config_path_;
185 const aos::Configuration *config_msg_;
186
187 aos::ShmEventLoop event_loop_;
188 aos::Sender<aos::starter::Status> status_sender_;
189 aos::TimerHandler *status_timer_;
190 aos::TimerHandler *cleanup_timer_;
191
192 std::unordered_map<std::string, Application> applications_;
193
194 // Set to true on cleanup to block rpc commands and ensure cleanup only
195 // happens once.
196 bool exiting_ = false;
197
198 SignalListener listener_;
199
200 DISALLOW_COPY_AND_ASSIGN(Starter);
201};
202
203} // namespace starter
204} // namespace aos
205
206#endif // AOS_STARTER_STARTERD_LIB_H_