diff options
author | Roy Marples <roy@marples.name> | 2008-01-15 19:47:48 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-01-15 19:47:48 +0000 |
commit | c6774d1c74baaf62827e82967ff62bb843854477 (patch) | |
tree | 25669137201b9fdb9e358094e59c19bbe3edf4bd /src/librc/librc.c | |
parent | 0b5d44af8db2f20a5278e04af6ae6e9ad629c4df (diff) |
If adding to the boot runlevel, ensure that the realpath of the resolved service points to /etc/init.d/$service
Diffstat (limited to 'src/librc/librc.c')
-rw-r--r-- | src/librc/librc.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/librc/librc.c b/src/librc/librc.c index 0e35c8b8..38961b75 100644 --- a/src/librc/librc.c +++ b/src/librc/librc.c @@ -765,14 +765,18 @@ bool rc_service_add (const char *runlevel, const char *service) /* We need to ensure that only things in /etc/init.d are added * to the boot runlevel */ if (strcmp (runlevel, RC_LEVEL_BOOT) == 0) { - char *tmp = xstrdup (init); + char tmp[MAXPATHLEN]; + + if (! realpath (init, tmp)) + return (false); retval = (strcmp (dirname (tmp), RC_INITDIR) == 0); - free (tmp); if (! retval) { free (init); errno = EPERM; return (false); } + free (init); + init = xstrdup (tmp); } file = rc_strcatpaths (RC_RUNLEVELDIR, runlevel, basename_c (service), |