blob: cd4b40a967a954cd3f2eb6abc5cfc58865be43d2 [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);
112
113 // Next unique id for all applications
114 static inline uint64_t next_id_ = 0;
115
116 std::string name_;
117 std::string path_;
118 std::vector<char *> args_;
119 std::optional<uid_t> user_;
120
121 pid_t pid_ = -1;
122 ScopedPipe::ScopedReadPipe read_pipe_;
123 ScopedPipe::ScopedWritePipe write_pipe_;
124 uint64_t id_;
125 int exit_code_ = 0;
126 aos::monotonic_clock::time_point start_time_, exit_time_;
127 bool queue_restart_ = false;
128 bool terminating_ = false;
Austin Schuh5f79a5a2021-10-12 17:46:50 -0700129 bool autostart_ = true;
Tyler Chatowa79419d2020-08-12 20:12:11 -0700130
131 aos::starter::State status_ = aos::starter::State::STOPPED;
132 aos::starter::LastStopReason stop_reason_ =
133 aos::starter::LastStopReason::STOP_REQUESTED;
134
135 aos::ShmEventLoop *event_loop_;
136 aos::TimerHandler *start_timer_, *restart_timer_, *stop_timer_;
137
138 DISALLOW_COPY_AND_ASSIGN(Application);
139};
140
141// Registers a signalfd listener with the given event loop and calls callback
142// whenever a signal is received.
143class SignalListener {
144 public:
145 SignalListener(aos::ShmEventLoop *loop,
146 std::function<void(signalfd_siginfo)> callback);
147
148 ~SignalListener();
149
150 private:
151 aos::ShmEventLoop *loop_;
152 std::function<void(signalfd_siginfo)> callback_;
153 aos::ipc_lib::SignalFd signalfd_;
154
155 DISALLOW_COPY_AND_ASSIGN(SignalListener);
156};
157
158class Starter {
159 public:
160 Starter(const aos::Configuration *event_loop_config);
161
162 // Inserts a new application from config. Returns the inserted application if
163 // it was successful, otherwise nullptr if an application already exists
164 // with the given name.
165 Application *AddApplication(const aos::Application *application);
166
167 // Runs the event loop and starts all applications
168 void Run();
169
170 void Cleanup();
171
172 private:
173 // Signals which indicate starter has died
174 static const inline std::vector<int> kStarterDeath = {
175 SIGHUP, SIGINT, SIGQUIT, SIGILL, SIGABRT, SIGFPE,
176 SIGSEGV, SIGPIPE, SIGTERM, SIGBUS, SIGXCPU};
177
178 void OnSignal(signalfd_siginfo signal);
179
180 void SendStatus();
181
182 const std::string config_path_;
183 const aos::Configuration *config_msg_;
184
185 aos::ShmEventLoop event_loop_;
186 aos::Sender<aos::starter::Status> status_sender_;
187 aos::TimerHandler *status_timer_;
188 aos::TimerHandler *cleanup_timer_;
189
190 std::unordered_map<std::string, Application> applications_;
191
192 // Set to true on cleanup to block rpc commands and ensure cleanup only
193 // happens once.
194 bool exiting_ = false;
195
196 SignalListener listener_;
197
198 DISALLOW_COPY_AND_ASSIGN(Starter);
199};
200
201} // namespace starter
202} // namespace aos
203
204#endif // AOS_STARTER_STARTERD_LIB_H_