Author: jh Date: Tue Mar 30 15:25:16 2010 New Revision: 205882 URL: http://svn.freebsd.org/changeset/base/205882
Log: MFC r205121: Use an unique directory name instead of hardcoded /tmp/.diskless. A malicious user could create a file named /tmp/.diskless and cause the script to misbehave. PR: conf/141258 Modified: stable/7/etc/rc.d/tmp Directory Properties: stable/7/etc/ (props changed) Modified: stable/7/etc/rc.d/tmp ============================================================================== --- stable/7/etc/rc.d/tmp Tue Mar 30 13:55:15 2010 (r205881) +++ stable/7/etc/rc.d/tmp Tue Mar 30 15:25:16 2010 (r205882) @@ -49,8 +49,8 @@ case "${tmpmfs}" in [Nn][Oo]) ;; *) - if /bin/mkdir -p /tmp/.diskless 2> /dev/null; then - rmdir /tmp/.diskless + if _tmpdir=$(mktemp -d -q /tmp/.diskless.XXXXXX); then + rmdir ${_tmpdir} else if [ -h /tmp ]; then echo "*** /tmp is a symlink to a non-writable area!" _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"