forked from davmac314/dinit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTODO
85 lines (79 loc) · 4.43 KB
/
TODO
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
For version 0.7.0:
------------------
* dinitctl: Warn when stopping a service would cause a dependent to stop. Require a force flag to
proceed [done]
* dinitctl: implement "restart" command [done]
* Get rid of "floating" service state [done]
For version 0.8.0:
------------------
* Easy way to reload service description (including if service is running, where possible).
* provide a way to check configuration for errors (maybe a dinitctl command)
- eg. check a service and all dependencies.
* report process launch failure reason (stage & errno) via dinitctl.
* "chain-to" can result in an unbreakable loop if the chain is circular. Chained services should not be
started during shutdown to prevent this (also avoids a race condition where the chained service is left
running when everything else has shutdown).
* Show "activated" state in "dinitctl list" output
For version 1.0:
----------------
* Limit memory use by control connections. Currently clients can queue commands without limit.
* Consider using mlockall (if system process).
* Dinitctl command to get full status of a service.
* "triggered" service type: external process notifies Dinit when the service
has started. (maybe?)
- key thing is we want some way to eg mount filesystem once the disk comes up,
configure network when device comes up, etc, potentially relying an an external
tool/daemon.
* on shutdown, after repeated intervals with no activity, display information
about services we are waiting on (or, do this when prompted via ^C or C-A-D).
* Documentation must be complete (see section below).
* Proper support for socket activation?
* Chaining of service process input/output?
* Be able to boot and shutdown Linux and FreeBSD (or OpenBSD).
For later:
----------
* On linux when running with PID != 1, write PID to /proc/sys/kernel/cad_pid so
that we still receive SIGINT from ctrl+alt+del (must be done after /proc is
mounted, possibly could be left to a service script)
* Perhaps need a way to prevent script services from re-starting.
(eg there's no need to mount filesystems twice; there might be various other
system initialisations that can't or shouldn't really be "undone" and so do
not need to be re-done).
* Internationalisation
* A service can prevent shutdown/reboot by failing to stop. Maybe make
multiple CTRL-ALT-DEL presses (or ^C since that's more portable) commence
immediate shutdown (or launch a simple control interface).
* When we take down a service or tty session, it would be ideal if we could kill
the whole process tree, not just the leader process (need cgroups or pid
namespace or other mechanism).
* Allow logging tasks to memory (growing or circular buffer) and later
switching to disk logging (allows for filesystem mounted readonly on boot).
But perhaps this really the responsibility of another daemon.
* Allow running services with different resource limits, chroot, cgroups,
namespaces (pid/fs/uid), etc
* Support chaining service output to another process (logger) input; if the
service dies the file descriptor of its stdout isn't closed and is reassigned
when the service is restarted, so that minimal output is lost.
- even more, it would be nice if a single logger process could be responsible
for receiving output from multiple services. This would require some kind of
protocol for passing new output descriptors to the logger (for when a
service starts).
Even later / Maybe never:
-------------------------
* Support recognising /etc/init.d services automatically (as script services, with
no dependency management - or upstart compatible dependency management)
Also BSD's rc.d style scripts (PROVIDE, REQUIRE).
* Place some reasonable, soft limit on the number of services to be started
simultaneously, to prevent thrashing. Services that are taking a long time
to start don't count to the limit. Maybe use CPU/IO usage as a controlling
factor.
* Cron-like tasks (if started, they run a sub-task periodically. Stopping the
task will wait until the sub-task is complete).
* Allow to run services attached to virtual tty, allow connection to that tty (ala "screen").
* SystemD-like handling of filesystem mounts (see autofs documentation in kernel)
i.e. a mount point gets an autofs attached, and lazily gets mounted when accessed
(or is mounted in parallel). Probably put the functionality in a separate daemon.
Documentation:
--------------
* Design philosophy/rationale document
* More system integration documentation?