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