chiark / gitweb /
cdb295ddaacc3f9d76ce538719ffba606b8cecff
[elogind.git] / TODO
1 * udev-kernel.socket + udev.control.socket seems not
2   to work, udevd is started but no fd is passed
3
4 F15:
5
6 * swap units that are activated by one name but shown in the kernel under another are semi-broken
7
8 F15 External:
9
10 * NFS, networkmanager ordering issue (PENDING)
11
12 * NM should pull in network.target (PENDING)
13   https://bugzilla.redhat.com/show_bug.cgi?id=692008
14
15 * bluetooth should be possible to disable (PENDING)
16
17 * make anaconda write timeout=0 for encrypted devices
18
19 * fix broken Sockets=syslog-ng.socket packaging
20
21 Features:
22
23 * add conditions for file executability
24
25 * allow creating fifos with tmpfiles
26
27 * implement Register= switch in .socket units to enable registration
28   in Avahi, RPC and other socket registration services.
29
30 * Remove kill_mode parameter to kill bus calls
31
32 * Fix nspawn to not read-only mount /selinux on the host system
33
34 * make sure people don't leave processes around after ExecStartPre=
35
36 * make sure systemd-ask-password-wall does not shutdown systemd-ask-password-console too early
37
38 * add loginctl, i.e. a systemctl for logind introspection
39
40 * support presets
41
42 * kernel: add /proc/sys file exposing CAP_LAST_CAP?
43
44 * kernel: add device_type = "fb", "fbcon" to class "graphics"
45
46 * understand https://bugzilla.redhat.com/show_bug.cgi?id=672194
47
48 * readahead: use BTRFS_IOC_DEFRAG_RANGE instead of BTRFS_IOC_DEFRAG ioctl, with START_IO
49
50 * readahead: check whether a btrfs volume includes ssd by checking mount flag "ssd"
51
52 * support sd_notify() style notificatio when reload is finished (RELOADED=1)
53
54 * verify that the AF_UNIX sockets of a service in the fs still exist
55   when we start a service in order to avoid confusion when a user
56   assumes starting a service is enough to make it accessible
57
58 * Make it possible to set the keymap independently from the font on
59   the kernel cmdline. Right now setting one resets also the other.
60
61 * add dbus call to convert snapshot into target
62
63 * move nss-myhostname into systemd
64
65 * figure out a standard place to configure timezone name, inform myllynen@redhat.com
66
67 * add dbus call to convert snapshot into target, and a dbus call to generate target from current state
68
69 * detect LXC with $container=lxc
70
71 * add prefix match to sysctl, tmpfiles, ...
72
73 * drop /.readahead on bigger upgrades with yum
74
75 * add inode stat() check to readahead to suppress preloading changed files
76
77 * allow list of paths in config_parse_condition_path()
78
79 * introduce dbus calls for enabling/disabling a service
80
81 * support notifications for services being enabled/disabled
82
83 * show enablement status in systemctl status
84
85 * consider services with any kind of link in /etc/systemd/system enabled
86
87 * teach systemctl to enable unit files in arbitrary directories
88
89 * In systemctl make sure both is-enabled and is-active print a string, or neither.
90
91 * Implement:
92     systemctl mask <unit>
93     systemctl unmask <unit>
94   Also support --temp to make this temporary by placing mask links in /run.
95
96 * add support for /bin/mount -s
97
98 * GC unreferenced jobs (such as .device jobs)
99
100 * add JoinControllers= to system.conf to mount certain cgroup
101   controllers together in order to guarantee atomic creation/addition
102   of cgroups
103
104 * avoid DefaultStandardOutput=syslog to have any effect on StandardInput=socket services
105
106 * cgroup_notify_empty(): recursively check groups up the tree, too
107
108 * fix alsa mixer restore to not print error when no config is stored
109
110 * fix upstart reboot compat call
111
112 * when failing to start a service due to ratelimiting, try again later, if restart=always is set
113
114 * write blog stories about:
115   - enabling dbus services
116   - status update
117   - /etc/sysconfig and /etc/default
118
119 * allow port=0 in .socket units
120
121 * rename systemd-logger to systemd-stdio-syslog-bridge
122
123 * take BSD file lock on tty devices when using them?
124
125 * avoid any flag files, or readahead files in /, we need to support r/o /
126   or / on tmpfs like Android setups.
127
128 * move readahead files into /var, look for them with .path units
129
130 * teach dbus to activate all services it finds in /etc/systemd/services/org-*.service
131
132 * get process transport into dbus for systemctl -P/-H
133
134 * document default dependencies
135
136 * support systemd.whitelist=/systemd.blacklist= on the kernel command
137   line.
138
139 * Find a way to replace /var/run, /var/lock directories with
140   symlinks during an RPM package upgrade (filesystem.rpm or systemd.rpm).
141   (lua code to create symlinks right away for new installations is in filesytem.rpm now)
142   We soon want to get rid of var-run.mount var-lock.mount units:
143     if mountpoint /run ; then
144           umount /var/run || :
145     else
146           mount --move /var/run /run || mount --bind /var/run /run
147     fi
148     mv /var/run /var/.run.save
149     ln -s /run /var/run
150     echo "R /var/.run.save" > /etc/tmpfiles.d/remove-run-save.conf
151
152 * when key file cannot be found, read it from kbd in cryptsetup
153
154 * add switch to systemctl to show enabled but not running services. Or
155   another switch that shows service that have been running since
156   booting but aren't running anymore.
157
158 * reuse mkdtemp namespace dirs in /tmp?
159
160 * recreate systemd's D-Bus private socket file on SIGUSR2
161
162 * be more specific what failed:
163     ...
164     Unmounting file systems.
165     Not all file systems unmounted, 1 left.
166     Disabling swaps.
167     Detaching loop devices.
168     Detaching DM devices.
169     Cannot finalize remaining file systems and devices, trying to kill remaining processes.
170     Unmounting file systems.
171     Not all file systems unmounted, 1 left.
172     Cannot finalize remaining file systems and devices, giving up.
173     ...
174
175 * check for compiled-in, but not active selinux, and don't print any warnings
176   about policy loading. Probably check for available selinux in /proc/filesystems,
177   and check for active selinux with getcon_raw() == "kernel"
178
179 * Support --test based on current system state
180
181 * show failure error string in "systemctl status"
182
183 * make sure timeouts are applied to Type=oneshot services.
184
185 * detect LXC environment
186
187 * investigate whether the gnome pty helper should be moved into systemd, to provide cgroup support.
188
189 * perhaps add "systemctl reenable" as combination of "systemctl disable" and "systemctl enable"
190
191 * need a way to apply mount options of api vfs from systemd unit files
192   (or some other modern source?) instead of fstab?
193
194 * maybe introduce ExecRestartPre=
195
196 * figure out what happened to bluez patch
197
198 * Patch systemd-fsck to use -C and pass console fd to it
199
200 * configurable jitter for timer events
201
202 * Support ProcessNeededForShutdown=true to allow stuff like mdmon to
203   be killed very late after the rootfs is read only? If implement pass
204   this to shutdown binary via command line argument.
205
206 * use pivot_root on shutdown so that we can unmount the root directory.
207    - copy binaries to, and pivot_root() to the "shutdown tmpfs"
208    - solve "mdadm --wait-clean" problem that way
209
210 * dot output for --test showing the 'initial transaction'
211
212 * calendar time support in timer, iCalendar semantics for the timer stuff (RFC2445)
213     http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=99ee5315dac6211e972fa3f23bcc9a0343ff58c4
214
215 * systemd --user
216   - get PR_SET_ANCHOR merged: http://lkml.org/lkml/2010/2/2/165
217
218 * add VT tracking:
219   - provide CK functionality
220   - start getty only when actual vt switch happens (same model as
221     socket on-demand activation). allocate the next free tty and
222     start a getty there. this way, pressing alt-f[1-12] will switch
223     through running X and getty sessions, and any unallocated
224     activated tty will start a new getty. the hardcoding of
225     getty[1-6] will entirely go away.
226   - http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fbc92a3455577ab17615cbcb91826399061bd789
227
228 * implicitly import "defaults" settings file into all types
229
230 * port over to LISTEN_FDS/LISTEN_PID:
231    - uuidd    HAVEPATCH
232    - rpcbind (/var/run/rpcbind.sock!) HAVEPATCH
233    - cups     HAVEPATCH
234    - postfix, saslauthd
235    - apache/samba
236    - libvirtd (/var/run/libvirt/libvirt-sock-ro)
237    - bluetoothd (/var/run/sdp! @/org/bluez/audio!)
238    - distccd
239
240 * fingerprint.target, wireless.target, gps.target, netdevice.target
241
242 * set_put(), hashmap_put() return values check. i.e. == 0 doesn't free()!
243
244 * io priority during initialization
245
246 * if a service fails too often, make the service enter failed mode, and the socket, too.
247
248 * systemctl list-jobs - show dependencies
249
250 * auditd service files
251
252 * add systemctl switch to dump transaction without executing it
253
254 * suspend, resume support?
255
256 * readahead: btrfs/LVM SSD detection
257
258 * add separate man page for [Install] settings
259
260 * allow runtime changing of log level and target
261
262 * drop cap bounding set in readahead and other services
263
264 External:
265
266 * udisks should not use udisks-part-id, instead use blkid. also not probe /dev/loopxxx
267
268 * snd-seq should go, https://bugzilla.redhat.com/show_bug.cgi?id=676095
269
270 * gnome-shell python script/glxinfo/is-accelerated must die
271
272 * make cryptsetup lower --iter-time
273
274 * patch kernel for xattr support in /dev, /proc/, /sys and /sys/fs/cgroup?
275
276 * patch kernel for cpu feature modalias for autoloading aes/kvm/...
277     http://git.kernel.org/?p=linux/kernel/git/ak/linux-misc-2.6.git;a=shortlog;h=refs/heads/cpuid-match
278   (Rafael J. Wysocki's sysdev rework is on the way. After that CPUs can be exported a proper bus.)
279
280 * procps, psmisc, sysvinit-tools, hostname → util-linux-ng
281
282 https://bugzilla.redhat.com/show_bug.cgi?id=614245 -- plymouth
283 https://bugzilla.redhat.com/show_bug.cgi?id=612789 -- umount /cgroup on halt
284 https://bugzilla.redhat.com/show_bug.cgi?id=612728 -- /etc/rc.d/init.d/functions
285 https://bugzilla.redhat.com/show_bug.cgi?id=612712 -- pam_systemd
286 https://bugs.freedesktop.org/show_bug.cgi?id=29193 -- accountsservice
287 https://bugs.freedesktop.org/show_bug.cgi?id=29194 -- ConsoleKit
288 https://bugs.freedesktop.org/show_bug.cgi?id=29205 -- udisks
289 http://article.gmane.org/gmane.linux.bluez.kernel/6479 -- bluez
290 http://www.spinics.net/lists/linux-nfs/msg14371.html -- rpcbind
291 https://bugzilla.redhat.com/show_bug.cgi?id=617328 -- ntp
292 https://bugzilla.redhat.com/show_bug.cgi?id=617320 -- at
293 https://bugzilla.redhat.com/show_bug.cgi?id=617326 -- fprintd
294 https://bugzilla.redhat.com/show_bug.cgi?id=617333 -- yum
295 https://bugzilla.redhat.com/show_bug.cgi?id=617317 -- acpid
296 https://bugzilla.redhat.com/show_bug.cgi?id=617327 -- gpm
297 https://bugzilla.redhat.com/show_bug.cgi?id=617330 -- pcsc-lite
298 https://bugzilla.redhat.com/show_bug.cgi?id=617321 -- audit
299 https://bugzilla.redhat.com/show_bug.cgi?id=617316 -- abrt
300
301 Regularly:
302
303 * look for close() vs. close_nointr() vs. close_nointr_nofail()
304
305 * check for strerror(r) instead of strerror(-r)
306
307 * Use PR_SET_PROCTITLE_AREA if it becomes available in the kernel
308
309 * %m in printf() instead of strerror();
310
311 * pahole
312
313 * CFLAGS="-Wl,--gc-sections -Wl,--print-gc-sections -ffunction-sections -fdata-sections"