chiark / gitweb /
mount: FAT uuids are uppercase
[elogind.git] / TODO
1 * don't fail a service if reload fails
2
3 * reload PID file after reload, allow dynamically changing main PIDs
4
5 * Fix multiple reload statements
6
7 * make usage of SIGKILL when shutting down services optional
8
9 * figure out what happened to bluez patch
10
11 * in pam_systemd: add option to kill normal user sessions on logout but only those with uid != 0
12
13 * introduce StandardOutput=syslog+console and StandardOutput=kmsg+console to support fsck output at boot
14
15 * Patch systemd-fsck to use -C and pass console fd to it
16
17 * sometimes processes seem to remain when we kill a service
18   http://lists.fedoraproject.org/pipermail/devel/2011-January/147559.html
19
20 * when launching pager, take number of columns first
21
22 * support remote/ssh systemctl/systemadm, and local privileged access
23
24 * finish syslog socket stuff
25
26 * when starting systemd --user we get "Failed to set udev event buffer size."
27
28 * configurable jitter for timer events
29
30 * dbus should run with oom adjust set
31
32 * support caching password questions in plymouth and on the console
33   https://bugzilla.redhat.com/show_bug.cgi?id=655538
34
35 * dep loop when using encrypted swap
36   https://bugzilla.redhat.com/show_bug.cgi?id=657234
37
38 * exclude java hsp files by default
39   https://bugzilla.redhat.com/show_bug.cgi?id=527425
40
41 * load EnvironmentFile= when starting services, not when reloading configuration
42   https://bugzilla.redhat.com/show_bug.cgi?id=661282
43
44 * somehow some /etc/fstab supplied mount params are never applied to api fs
45   https://bugzilla.redhat.com/show_bug.cgi?id=663108
46
47 * automount units can cause a segfault:
48   https://bugs.freedesktop.org/show_bug.cgi?id=32076
49
50 * support globs in systemd-tmpfiles
51
52 * drop IN_ATTRIB from inotify watches for .path units where possible to avoid
53   lots of wakeups due to /dev changing when we watch a subdir of /dev.
54
55 * Support ProcessNeededForShutdown=true to allow stuff like mdmon
56   to be killed very late after the rootfs is read only
57
58 * Integrate "mdadm --wait-clean". Maybe just let SIGTERM to mdmon trigger the
59   needed action
60
61 * bind mounts with 'fsck' fail and block for a minute:
62     /foo /bar none bind 1 1
63   (requesting fsck is wrong, but why do we block for a minute
64    instead of just handling the error)
65
66 * oneshot services which do not remain: 'exited' instead of 'dead'?
67   it should be visible in 'systemctl' that they have been run?
68
69 * dot output for --test showing the 'initial transaction'
70
71 * calendar time support in timer, iCalendar semantics for the timer stuff (RFC2445)
72   - check timerfd() patch: http://lkml.org/lkml/2010/11/23/290
73
74 * systemd --user
75   - get PR_SET_ANCHOR merged: http://lkml.org/lkml/2010/2/2/165
76
77 * add VT tracking:
78     - provide CK functionality
79     - start getty only when actual vt switch happens (same model as
80       socket on-demand activation). allocate the next free tty and
81       start a getty there. this way, pressing alt-f[1-12] will switch
82       through running X and getty sessions, and any unallocated
83       activated tty will start a new getty. the hardcoding of
84       getty[1-6] will entirely go away.
85     - http://git.kernel.org/?p=linux/kernel/git/gregkh/tty-2.6.git;a=commitdiff;h=fbc92a3455577ab17615cbcb91826399061bd789
86
87 * implicitly import "defaults" settings file into all types
88
89 * port over to LISTEN_FDS/LISTEN_PID:
90    - uuidd    DONE
91    - dbus     DONE
92    - rsyslog  DONE
93    - rpcbind (/var/run/rpcbind.sock!) DONE
94    - cups     DONE
95    - avahi-daemon (/var/run/avahi-daemon/socket) DONE
96    - ssh      CLASSIC
97    - postfix, saslauthd
98    - apache/samba
99    - libvirtd (/var/run/libvirt/libvirt-sock-ro)
100    - bluetoothd (/var/run/sdp! @/org/bluez/audio!)
101    - distccd
102
103 * fingerprint.target, wireless.target, gps.target
104
105 * set_put(), hashmap_put() return values check. i.e. == 0 doesn't free()!
106
107 * io priority during initialization
108
109 * if a service fails too often, make the service enter failed mode, and the socket, too.
110
111 * systemctl list-jobs - show dependencies
112
113 * accountsservice is borked
114
115 * auditd service files
116
117 * add systemctl switch to dump transaction without executing it
118
119 * suspend, resume
120
121 * readahead: btrfs/LVM SSD detection
122
123 * when processes remain in a service even though the start command failed enter active
124
125 * add seperate man page for [Install] settings
126
127 * only add quotacheck deps to .mount units which mention grpquota/usrquota in the mount flags
128
129 * systemctl condrestart should return 0 if service isn't running
130
131 * tmpfiles: allow specification of .conf files on cmdline
132
133 * allow runtime changing of log level and target
134
135 * automatically determine TERM= based on tty name even for /dev/console
136     http://git.kernel.org/?p=linux/kernel/git/gregkh/tty-2.6.git;a=commitdiff;h=fbc92a3455577ab17615cbcb91826399061bd789
137     http://git.kernel.org/?p=linux/kernel/git/gregkh/tty-2.6.git;a=commitdiff;h=b7b8de087384cc1954a8cd075af3f9e5977caa2e
138
139 * fix hotplug transactions
140
141 * isolate multi-user.target doesn't start a getty@tty1 if we run it from graphical.target
142
143 * sendmail.service doesn't get rid PID file, fails to kill everything on stop
144
145 * global defaults for StandardOuput=xxx
146
147 * mkswap/mke2fs is called on wrong devices in crypto devices.
148
149 Fedora:
150
151 * obsolete readhead in systemd pkg
152
153 * chkconfig → systemd enable/daemon-reload glue
154
155 * /var/lock, /var/run → what happens if rpm stuff is no %ghosted?
156
157 External:
158
159 * make cryptsetup lower --iter-time
160
161 * patch kernel for xattr support in /dev, /proc/, /sys and /sys/fs/cgroup.
162
163 * patch kernel for cpu feature modalias for autoloading aes/kvm/...
164     http://git.kernel.org/?p=linux/kernel/git/ak/linux-misc-2.6.git;a=shortlog;h=refs/heads/cpuid-match
165
166 * place /etc/inittab with explaining blurb.
167
168 * pam_securetty should honour console=
169
170 * procps, psmisc, sysvinit-tools, hostname → util-linux-ng
171
172 https://bugzilla.redhat.com/show_bug.cgi?id=614245 -- plymouth
173 https://bugzilla.redhat.com/show_bug.cgi?id=612789 -- umount /cgroup on halt
174 https://bugzilla.redhat.com/show_bug.cgi?id=612728 -- /etc/rc.d/init.d/functions
175 https://bugzilla.redhat.com/show_bug.cgi?id=612712 -- pam_systemd
176 https://bugs.freedesktop.org/show_bug.cgi?id=29193 -- accountsservice
177 https://bugs.freedesktop.org/show_bug.cgi?id=29194 -- ConsoleKit
178 https://bugs.freedesktop.org/show_bug.cgi?id=29205 -- udisks
179 http://article.gmane.org/gmane.linux.bluez.kernel/6479 -- bluez
180 http://www.spinics.net/lists/linux-nfs/msg14371.html -- rpcbind
181 https://bugzilla.redhat.com/show_bug.cgi?id=617328 -- ntp
182 https://bugzilla.redhat.com/show_bug.cgi?id=617320 -- at
183 https://bugzilla.redhat.com/show_bug.cgi?id=617326 -- fprintd
184 https://bugzilla.redhat.com/show_bug.cgi?id=617333 -- yum
185 https://bugzilla.redhat.com/show_bug.cgi?id=617317 -- acpid
186 https://bugzilla.redhat.com/show_bug.cgi?id=617327 -- gpm
187 https://bugzilla.redhat.com/show_bug.cgi?id=617330 -- pcsc-lite
188 https://bugzilla.redhat.com/show_bug.cgi?id=617321 -- audit
189 https://bugzilla.redhat.com/show_bug.cgi?id=617316 -- abrt
190
191 Regularly:
192
193 * look for close() vs. close_nointr() vs. close_nointr_nofail()
194
195 * check for strerror(r) instead of strerror(-r)
196
197 * Use PR_SET_PROCTITLE_AREA if it becomes available in the kernel
198
199 * %m in printf() instead of strerror();
200
201 * pahole
202
203 * CFLAGS="-Wl,--gc-sections -Wl,--print-gc-sections -ffunction-sections -fdata-sections"