Welcome to little lamb

Code » anopa » master » tree

[master] / doc / anopa.pod

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
=head1 NAME

anopa - init system/service manager build around s6 supervision suite

=head1 DESCRIPTION

anopa is an collection of tools and scripts aimed to provide an init system and
service manager for Linux systems, based around the s6 supervision suite[B<1>].

It provides some execline[B<2>] scripts that can be used as init for different
stage of the boot process, leaving stage 2 to be handled by B<s6-svscan>, as
well as tools that can be used to create a runtime repository of servicedirs,
start/stop them and other related functions.

=head1 WHAT DOES INIT (PID 1) DO ?

Paraphrasing B<s6>'s author, Laurent Bercot, there are really three stages for
the init process of a Unix system :

=over

=item Stage 1: Booting up phase

=item Stage 2: Supervision phase

=item Stage 3: Shutting down phase

=back

Stage 1 starts when the kernel launches the first userland process,
traditionally called B<init>. The goal is to prepare the system: mounting
file systems, setting system clock, configuring the network, and other similar
tasks are to be performed, to be ready to start long-running processes, that
will be expected to stay running for as long as the system is up.

Stage 2 starts with the launch of all long-running processes (getty-s, ssh
server, etc) and continues - as you're using the system - with supervising said
processes, making sure they stay up, and restarting them should they not. init's
job here also includes reaping any orphaned zombies.

Stage 3 starts when a shutdown (or reboot) is initiated. init then needs to
"undo" what was done prior: stop all long-running processes, clean up, unmount
file systems, etc

B<s6-svscan> is perfectly suited to be in charge of stage 2, supervising
long-running processes. B<anopa> provides tools to take care of the other
stages.

Because the init process launched by the kernel, also known as PID 1, cannot die
and has to be the one process to exist from start to finish, lots of init system
include all functionalities into a single binary. Instead, since PID 1 is
allowed to execute I<into> another binary, this is what B<anopa> makes uses of.

=head1 NOTION OF SERVICES

B<s6> works with services, defined under what's called a service directory, or
I<servicedir>. Since it is build around it, B<anopa> uses the same principle;
However, a service from B<anopa>'s point-of-view can either be one-shot, i.e. a
process to start on boot (during stage 1) and that's it (possibly with a
counter-part one to be run on shutdown, during stage 3), or a long-run, i.e. a
process to be started during phase 2, and to stay up until stage 3 is initiated.

Therefore, you can have two kinds of services, and servicedir: one-shot, and
long-run. A servicedir is simply a directory, in which the definition of the
service is held.

Long-run services requires a file I<run> to be present, which will be the
long-running process launched & supervised (or, more likely, is a small script
executing into said process). Therefore, the rule is that if a servicedir
contains a file I<run> it is of a long-run service, else of a one-shot one.

=head2 LONG-RUN SERVICES

Long-run services will be launched & supervised by B<s6-svscan>, therefore you
should refer to its official documentation[B<3>] when it comes to that, but such
servicedirs contain:

=over

=item An executable file named I<run>

It can be any executable file (binary or script), but usually will be a small
script containing the command setting up the services, before executing into it.

=item An optional executable file named I<finish>

Like I<run>, it can be any executable file. If present, it is executed every
time the I<run> script dies. Generally, its main purpose is to clean up
non-volatile data such as the file system after the supervised process has been
killed.

Note that it must do its work and exit in less than 5 seconds, else it'll be
killed.

=item An optional, empty, regular file named I<nosetsid>

If such a file exists, B<s6-supervise> will not make the service a process group
and session leader; the service will be run in the same process group as
B<s6-supervise>. If no I<nosetsid> file exists, the service has its own process
group and is started as a session leader.

=item An optional service directory named I<log>

If it exists then two services will be monitored: the actual service (I<./run>)
as well as its logger (I<./log/run>).
A pipe is open and maintained between the two, i.e. everything that I<./run>
writes to its stdout will appear on I<./log/run>'s stdin. The service is said to
be logged; the I<log> service is called the service's logger.

See B<aa-enable>(1) for how you can use a file instead, to automatically use the
same logger for all services.

Note that by default, B<aa-status>(1) only list oneshots & longruns, excluding
such loggers. Refer to its option B<--filter> to include/list them.

=item An optional regular file named I<notification-fd>

If such a file exists, it means that the service supports readiness
notification. The file must only contain an unsigned integer, which is the
number of the file descriptor that the service writes its readiness notification
to, as per B<s6-supervise> requirements.

This is used by B<aa-start>(1) to determine whether to wait for event 'U'
instead of 'u' when starting the service.

=item An optional, empty, regular file named I<gets-ready>

This is B<anopa>-specific, and if present indicates to B<aa-start>(1) that the
service supports readiness, so it will wait for event 'U' (instead of 'u') when
starting it.

This can be used for services that support readiness outside of the
I<notification-fd> file interface (e.g. via B<aa-setready>(1) triggered on a log
event).

=item An optional regular file named I<retries>

This is B<anopa>-specific, and only used for services that supports readiness
(else it's simply ignored).
The file must only contain an unsigned integer, which is the number of times the
service can go down (and, therefore, restarted) whilst B<aa-start> is waiting
for it to become ready.

This is used by B<aa-start>(1) to allow up to I<retries> event 'd' while waiting
for 'U'. After that, the service is considered failed (though nothing is changed
regarding its supervised state, i.e. its B<s6-supervise> will continue to
restart it unless/until told otherwise.)

=item An optional regular file named I<timeout>

If such a file exists, it should contain the number of seconds before the
service is considered to be in time out; i.e. B<aa-start>(1)/B<aa-stop>(1) will
stop waiting for them.

=back

For completeness, the following "internals" are also supported.

=over

=item A directory named I<supervise>

It is automatically created by B<s6-supervise> if it does not exist. This is
where B<s6-supervise> stores its information. The directory must be writable.
It is automatically created by B<aa-enable>(1) with permissions 0711, to allow
reading the status file as a user.

=item A fifodir named I<event>

It is automatically created by B<s6-supervise> if it does not exist. This is
used to send notifications when the service goes up/down.

=item An optional, empty, regular file named I<down>

If such a file exists, the default state of the service is considered down, not
up, and it isn't automatically started by B<s6-supervise>.
It is automatically created by B<aa-enable>(1), except for the service specified
with B<--skip-down>.

=back

=head2 ONE-SHOT SERVICES

One-shot services are simply binaries that will be executed by B<aa-start>(1) or
B<aa-stop>(1). Such servicedirs contain:

=over

=item An optional executable file named I<start>

It can be any executable file (binary or script), that will be executed by
B<aa-start> when starting the service. It if exits with 0 the service will be
considered started, else failed.
If no such file exists, the service will be considered started instantly.

=item An optional executable file named I<stop>

It can be any executable file (binary or script), that will be executed by
B<aa-stop> when stopping the service. It if exits with 0 the service will be
considered stopped, else stopped-failed.
If no such file exists, the service will be considered stopped instantly.

=item An optional regular file named I<retries>

The file must only contain an unsigned integer, which is the number of times the
service can go fail, and then be restarted, until it is actually considered
failed.

=item An optional, empty, regular file named I<essential>

If present and the service fails to be started, when it exits B<aa-start> will
return 1. It will only return 0 if no essential services failed to be started.
This can be used by I<init>, e.g. to launch an emergency shell if B<aa-start>
end successfully (return non-zero).

You would usually use such a file for the service mounting the root filesystem
in initramfs, or launching getty.

=item An optional regular file I<timeout>

If such a file exists, it should contain the number of seconds before the
service is considered to be in time out; i.e. B<aa-start>(1)/B<aa-stop>(1) will
stop waiting for them, killing the process. See B<aa-start>(1) for more.

=back

Note that a one-shot service can have only a I<start> script, only a I<stop>
script, both, or none. In the later case, it can be used simply to order things.

For example, you could use a service I<sysinit>, making sure all very early
services (e.g. mounting file systems or setting up console) are started before
it, and starting everything else after it.

(Similarly, it would get everything stopped before those services are stopped,
obviously.)

=head2 SERVICE DEPENDENCIES

Common to long-run and one-shot services, therefore supported in both types of
servicedirs, are the notion of dependencies and ordering introduced by B<anopa>.

The idea is that on boot, all long-run servicedirs will actually contain an
empty file I<down> so that they aren't automatically started by B<s6-svscan>.
Instead, B<aa-start>(1) will be used to start everything (during stage 2), both
one-shot and long-run services; It will also be used by B<aa-stop>(1) to order
stopping.

(If you create your runtime service repository using B<aa-enable>(1) this is
done automatically.)

Four additional directories can be found inside servicedirs, used by
B<aa-start>(1) and B<aa-stop>(1) to determine when to start/stop what.

=over

=item An optional directory named I<needs>

This directory can contain empty regular files, whose name is the name of a
service to be marked as dependency of the current service. Such services will be
auto-started by B<aa-start>(1) and the current service will automatically be
marked to be started after it.

Additionally, should the dependency service fail to start, the current service
will not be started, but placed into a failed state (for dependency error).

B<aa-stop>(1) will process those as if they were in directory I<after>.

=item An optional directory named I<wants>

This directory can contain empty regular files, whose name is the name of a
service to be auto-started by B<aa-start>(1). This is not a dependency, and
there's no ordering associated either.

This is ignored by B<aa-stop>(1).

=item An optional directory named I<after>

This directory can contain empty regular files. The current service will only be
started after those services have been started by B<aa-start>(1); And the other
way around for B<aa-stop>(1), i.e. those services will be stopped after the
current service has been (or, the current service before them).

It is important to note that this is only an ordering directive, i.e. if the
service isn't actually being started, then the directive is simply ignored. And
if it is, but fails to start, the current service will still be started
regardless.

=item An optional directory named I<before>

This directory can contain empty regular files. If those services are being
started, then they'll only be started after the current service by
B<aa-start>(1); And the other way around for B<aa-stop>(1), i.e. the current
service will be stopped after they have been.

It is important to note that this is only an ordering directive, i.e. if the
service isn't being started then it is simply ignored. And if it is, but the
current service fails to start, it will still be started regardless.

=back

It should also be noted that a long-run service will be considered started once
the event 'u' is received; Should the service actually fail right after will
have no consequences on the rest of the B<aa-start>(1) process.

=head3 Dependencies and Loggers

Loggers (I<*/log> services) are special in that they're not in the
repodir/scandir directly, and also not listed by B<aa-status>(1) by default (See
its B<--filter> for more).

However, they're not ignored by anopa, and every longrun service with a logger
will automatically have a dependency ("needs") on its logger. This means that
e.g. to start I<foobar>, I<foobar/log> will first be started, as expected.

They can also contain user-defined dependencies, exactly as with any other
services. It is not, however, possible to add a dependency onto such a logger
(due to the slash in its name).

=head1 SERVICE REPOSITORY (AND SCANDIR)

B<s6-svscan> will supervise all services found in its scandir. Obviously,
because it has no notion of one-shot services, only servicedir for long-run
services should be found there.

The way this works in B<anopa> is to use B<aa-enable>(1) to create the service
repository, as well as the scandir. This is done by using source directories,
and optionally merging in configuration directories.
The idea is that you will not create your service repository manually, but
instead using B<aa-enable>(1) from pre-established definitions.

The service repository will contain all (enabled) servicedirs, both one-shots
and long-runs. For long-run servicedirs, symlinks will be put into directory
I<.scandir> which will be used by B<s6-svscan> as its scandir.

A typical organization would work like the following :

=over

=item I</usr/lib/services>

Source directory containing available servicedirs. This is where servicedirs
from packages would be installed. Used by B<aa-enable>(1).

=item I</etc/anopa/services>

Source directory containing available servicedirs. This is where the
administrator can define its own servicedirs, either because they're not
provided by packages, or to be used instead. Used by B<aa-enable>(1).

=item I</etc/anopa/enabled/onboot>

List directory containing either empty regular files, whose name is the name of
a service to enable on boot, or directories, whose name is the name of a service
to enable on boot.

In the later case, the content of the folder will also be merged/copied over
into the servicedir.

Must be used manually withy B<aa-enable>(1) to generate
I</var/lib/repodir/onboot>

=item I</etc/anopa/listdirs/onboot>

List directory containing empty regular files, whose name is the name of a
service to start on boot. Used by B<aa-start>(1) from B<aa-stage2>(1).

=item I</var/lib/repodir/onboot>

Repository directory which will be copied into I</run/services> on boot (using
B<aa-hiercopy>(1)) by B<aa-stage1>(1), thus ensuring its content remains
unchanged whilst the runtime repository lives in memory (I</run> being expected
to be a tmpfs).

Used by B<aa-stage1>(1).

=item I</run/services>

Runtime repository, the service repository for the current system, containing a
directory I<.scandir>, with symlinks for all long-run services, used by
B<s6-svscan> as its scandir. Used by B<aa-enable>(1), B<aa-start>(1) and
B<aa-stop>(1), copied from I</var/lib/repodir/onboot> by B<aa-stage1>(1).

=back

Ahead of time, the repository directory I</var/lib/repodir/onboot> needs to be
created. This is expected to be done with B<aa-enable>(1), using
I</etc/anopa/enabled/onboot> as listdir.

To do so, it reads the content of the listdir, and for each service named there
copies the corresponding servicedir from a source directory into the runtime
repository. If listdir contained a directory, its content is then merged/copied
over into the newly created servicedir, allowing easy custom service-specific
configuration.

Source directories are looked up in order, thus allowing the administrator to
provide not only its own servicedirs, but its own version of a given servicedir.

Refer to B<aa-enable>(1) for more on how it works and how the copy operation
takes place.


When booting, you would use B<aa-stage1>(1) as your init. It will use
B<aa-hiercopy>(1) to copy the repository directory as runtime repository
I</run/services>, then start B<s6-svscan> and I</run/services/.anopa/init>,
which is the "real" init script aimed to start all services.

It would usually be B<aa-stage2>(1), little wrapper around B<aa-start>(1), that
will start all services in order, handling dependencies, getting the system up &
ready.

Refer to B<aa-start>(1) for more on how it works; Refer to B<aa-stage1>(1) and
B<aa-stage2>(1) for more on this init process on boot works.

You can also see B<aa-stage0>(1) and B<aa-stage4>(1) for how to use B<anopa> in
your initramfs, as I</init> and I</shutdown> respectively.

Note that this is of course only a possible solution to set up your system, you
are of course free to organize things differently, using only the tool(s) you
need from B<anopa> however you wish.

=head1 LINKS

=over

=item [B<1>] s6 supervision suite

L<http://skarnet.org/software/s6/>

=item [B<2>] execline

L<http://skarnet.org/software/execline/>

=item [B<3>] s6 service directories

L<http://skarnet.org/software/s6/servicedir.html>

=back