diff options
-rw-r--r-- | NOFORK_NOEXEC.lst | 4 | ||||
-rw-r--r-- | miscutils/raidautorun.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/NOFORK_NOEXEC.lst b/NOFORK_NOEXEC.lst index 3a30af0e2..99af24357 100644 --- a/NOFORK_NOEXEC.lst +++ b/NOFORK_NOEXEC.lst | |||
@@ -274,7 +274,7 @@ pscan - longterm | |||
274 | pstree - noexec | 274 | pstree - noexec |
275 | pwd - NOFORK | 275 | pwd - NOFORK |
276 | pwdx - NOFORK | 276 | pwdx - NOFORK |
277 | raidautorun | 277 | raidautorun - noexec. very simple. leaks: open+xioctl |
278 | rdate - needs ^C (may talk to DNS servers, which may be down) | 278 | rdate - needs ^C (may talk to DNS servers, which may be down) |
279 | rdev - leaks: find_block_device -> readdir+xstrdup | 279 | rdev - leaks: find_block_device -> readdir+xstrdup |
280 | readlink - NOFORK | 280 | readlink - NOFORK |
@@ -294,7 +294,7 @@ route - needs ^C (may talk to DNS servers, which may be down) | |||
294 | rpm - runner | 294 | rpm - runner |
295 | rpm2cpio - runner | 295 | rpm2cpio - runner |
296 | rtcwake - longterm: puts system to sleep, optimizing this for speed is pointless | 296 | rtcwake - longterm: puts system to sleep, optimizing this for speed is pointless |
297 | run-parts | 297 | run-parts - longterm |
298 | runlevel - noexec. can be nofork if "endutxent()" is called unconditionally, but too rare to bother? | 298 | runlevel - noexec. can be nofork if "endutxent()" is called unconditionally, but too rare to bother? |
299 | runsv - daemon | 299 | runsv - daemon |
300 | runsvdir - daemon | 300 | runsvdir - daemon |
diff --git a/miscutils/raidautorun.c b/miscutils/raidautorun.c index ecedf9ce2..caf6e0821 100644 --- a/miscutils/raidautorun.c +++ b/miscutils/raidautorun.c | |||
@@ -15,7 +15,7 @@ | |||
15 | //config: raidautorun tells the kernel md driver to | 15 | //config: raidautorun tells the kernel md driver to |
16 | //config: search and start RAID arrays. | 16 | //config: search and start RAID arrays. |
17 | 17 | ||
18 | //applet:IF_RAIDAUTORUN(APPLET(raidautorun, BB_DIR_SBIN, BB_SUID_DROP)) | 18 | //applet:IF_RAIDAUTORUN(APPLET_NOEXEC(raidautorun, raidautorun, BB_DIR_SBIN, BB_SUID_DROP, raidautorun)) |
19 | 19 | ||
20 | //kbuild:lib-$(CONFIG_RAIDAUTORUN) += raidautorun.o | 20 | //kbuild:lib-$(CONFIG_RAIDAUTORUN) += raidautorun.o |
21 | 21 | ||