From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <41584DCA.7030006@redhat.com> Date: Mon, 27 Sep 2004 13:28:42 -0400 From: Daniel J Walsh MIME-Version: 1.0 To: SELinux Subject: Patch to restorecon to add -R switch Content-Type: multipart/mixed; boundary="------------090700020003030402070304" Sender: owner-selinux@tycho.nsa.gov List-Id: selinux@tycho.nsa.gov This is a multi-part message in MIME format. --------------090700020003030402070304 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit This will allow us to restorecon -R /dev in the initscripts. Also patch adds some fixed for fixfiles. Dan --------------090700020003030402070304 Content-Type: text/plain; name="policycoreutils-rhat.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="policycoreutils-rhat.patch" --- policycoreutils-1.17.5/restorecon/restorecon.c.rhat 2004-08-30 11:46:46.000000000 -0400 +++ policycoreutils-1.17.5/restorecon/restorecon.c 2004-09-24 19:14:23.515031544 -0400 @@ -8,7 +8,7 @@ * to match the specification returned by matchpathcon. * * USAGE: - * restorecon [-nv] pathname... + * restorecon [-Rnv] pathname... * * -n Do not change any file labels. * -v Show changes in file labels. @@ -33,19 +33,25 @@ #include #include #include +#define __USE_XOPEN_EXTENDED 1 /* nftw */ +#include -char *progname; +static int change=1; +static int verbose=0; +static FILE *outfile=NULL; +static char *progname; +static int errors=0; +static int recurse; void usage(const char * const name) { fprintf(stderr, - "usage: %s [-nv] [-f filename | pathname... ]\n", name); + "usage: %s [-Rnv] [-f filename | pathname... ]\n", name); exit(1); } -int restore(char *filename, int change, int verbose, FILE *outfile) { +int restore(char *filename) { int retcontext=0; int retval=0; - int errors=0; security_context_t scontext; security_context_t prev_context; int len=strlen(filename); @@ -135,15 +141,36 @@ freecon(scontext); return errors; } +static int apply_spec(const char *file, + const struct stat *sb_unused, int flag, struct FTW *s_unused) +{ + if (flag == FTW_DNR) { + fprintf(stderr, "%s: unable to read directory %s\n", + progname, file); + return 0; + } + errors=errors+restore((char *)file); + return 0; +} +void process(char *buf) { + if (recurse) { + if (nftw + (buf, apply_spec, 1024, FTW_PHYS | FTW_MOUNT)) { + fprintf(stderr, + "%s: error while labeling files under %s\n", + progname, buf); + exit(1); + } + } + else + errors=errors+restore(buf); +} int main(int argc, char **argv) { int i=0; char *file_name=NULL; int errors=0; - int change=1; - int verbose=0; int file=0; int opt; - FILE *outfile=NULL; char buf[PATH_MAX]; progname=argv[0]; @@ -152,11 +179,14 @@ memset(buf,0, sizeof(buf)); - while ((opt = getopt(argc, argv, "nvf:o:")) > 0) { + while ((opt = getopt(argc, argv, "Rnvf:o:")) > 0) { switch (opt) { case 'n': change = 0; break; + case 'R': + recurse = 1; + break; case 'o': outfile = fopen(optarg,"w"); if (!outfile) { @@ -187,14 +217,14 @@ } while(fgets(buf,PATH_MAX,f)) { buf[strlen(buf)-1]=0; - errors=errors+restore(buf, change, verbose, outfile); + process(buf); } if (strcmp(file_name,"-")!=0) fclose(f); } else { for (i=optind; i< argc; i++) { - errors=errors+restore(argv[i], change, verbose, outfile); + process(argv[i]); } } if (outfile) --- policycoreutils-1.17.5/restorecon/restorecon.8.rhat 2004-08-30 11:46:46.000000000 -0400 +++ policycoreutils-1.17.5/restorecon/restorecon.8 2004-09-24 19:23:38.235701184 -0400 @@ -4,10 +4,10 @@ .SH "SYNOPSIS" .B restorecon -.I [\-o outfilename ] [\-n] [\-v] pathname... +.I [\-o outfilename ] [\-R] [\-n] [\-v] pathname... .P .B restorecon -.I \-f infilename [\-o outfilename ] [\-n] [\-v] +.I \-f infilename [\-o outfilename ] [\-R] [\-n] [\-v] .SH "DESCRIPTION" This manual page describes the @@ -26,6 +26,9 @@ .B \-f infilename infilename contains a list of files to be processed by application. Use \- for stdin. .TP +.B \-R +change files and directories file labels recursively +.TP .B \-n don't change any file labels. .TP --- policycoreutils-1.17.5/scripts/fixfiles.rhat 2004-08-30 11:46:47.000000000 -0400 +++ policycoreutils-1.17.5/scripts/fixfiles 2004-09-24 18:46:15.672622592 -0400 @@ -36,6 +36,8 @@ FILESYSTEMSRO=`mount | grep -v "context=" | egrep -v '\((|.*,)bind(,.*|)\)' | awk '/(ext[23]| xfs | reiserfs ).*\(ro/{print $3}';` FILESYSTEMS="$FILESYSTEMSRW $FILESYSTEMSRO" SELINUXTYPE="targeted" +FCFILE=`mktemp /var/tmp/file_contexts.XXXXXXXXXX` +trap "rm -f $FCFILE; exit 2" 1 2 3 5 15 if [ -e /etc/selinux/config ]; then . /etc/selinux/config @@ -48,14 +50,14 @@ echo "logging to $LOGFILE" if [ ! -z "$1" ]; then for i in `echo $1 | sed 's/,/ /g'`; do - rpm -q -l $i | restorecon ${OUTFILES} -n -v -f - 2>&1 | tee $LOGFILE + rpm -q -l $i | restorecon ${OUTFILES} -n -v -f - 2>&1 > $LOGFILE done else if [ ! -z "$FILESYSTEMSRO" ]; then echo "Warning: Skipping the following R/O filesystems:" echo "$FILESYSTEMSRO" fi - ${SETFILES} ${OUTFILES} -n -v ${FC} ${FILESYSTEMSRW} 2>&1 | tee $LOGFILE + ${SETFILES} ${OUTFILES} -n -v ${FCFILE} ${FILESYSTEMSRW} 2>&1 > $LOGFILE fi } @@ -63,14 +65,14 @@ echo "logging to $LOGFILE" if [ ! -z "$1" ]; then for i in `echo $1 | sed 's/,/ /g'`; do - rpm -q -l $i | restorecon ${OUTFILES} -v -f - 2>&1 | tee $LOGFILE + rpm -q -l $i | restorecon ${OUTFILES} -v -f - 2>&1 > $LOGFILE done else if [ ! -z "$FILESYSTEMSRO" ]; then echo "Warning: Skipping the following R/O filesystems:" echo "$FILESYSTEMSRO" fi - ${SETFILES} ${OUTFILES} -v ${FC} ${FILESYSTEMS} 2>&1 | tee $LOGFILE + ${SETFILES} ${OUTFILES} -v ${FCFILE} ${FILESYSTEMS} 2>&1 > $LOGFILE fi } @@ -80,29 +82,29 @@ rm -rf /tmp/.??* /tmp/* if [ ! -z "$1" ]; then for i in `echo $1 | sed 's/,/ /g'`; do - rpm -q -l $i | restorecon ${OUTFILES} -v -f - 2>&1 | tee $LOGFILE + rpm -q -l $i | restorecon ${OUTFILES} -v -f - 2>&1 > $LOGFILE done else if [ ! -z "$FILESYSTEMSRO" ]; then echo "Warning: Skipping the following R/O filesystems:" echo "$FILESYSTEMSRO" fi - ${SETFILES} ${OUTFILES} -v ${FC} ${FILESYSTEMS} 2>&1 | tee $LOGFILE + ${SETFILES} ${OUTFILES} -v ${FCFILE} ${FILESYSTEMS} 2>&1 > $LOGFILE fi } relabelCheck() { -echo -n " -Files in the /tmp directory may be labeled incorrectly, this command -can remove all files in /tmp. If you choose to remove files from /tmp, -a reboot will be required after completion. - -Do you wish to clean out the /tmp directory [N]? " -read answer -if [ "$answer" = y -o "$answer" = Y ]; then - relabel $1 -else - restoreLabels $1 -fi + echo -n " + Files in the /tmp directory may be labeled incorrectly, this command + can remove all files in /tmp. If you choose to remove files from /tmp, + a reboot will be required after completion. + + Do you wish to clean out the /tmp directory [N]? " + read answer + if [ "$answer" = y -o "$answer" = Y ]; then + relabel $1 + else + restoreLabels $1 + fi } @@ -110,6 +112,12 @@ echo $"Usage: $0 {-R rpmpackage[,rpmpackage...] [-l logfile ] [-o outputfile ] |check|restore|[-F] relabel}" } +if [ $# = 0 ]; then + usage + rm -f $FCFILE + exit 1 +fi + # See how we were called. for i in $@; do if [ $rpmFlag = 2 ]; then @@ -127,6 +135,7 @@ logfileFlag=1 continue fi + case "$i" in check) checkFlag=1 @@ -151,22 +160,38 @@ ;; *) usage + rm -f $FCFILE exit 1 esac done if [ `expr $checkFlag + $restoreFlag + $relabelFlag` -gt 1 ]; then usage + rm -f $FCFILE exit 1 fi + +cp $FC $FCFILE +# +# Check for removable devices +# +for i in /proc/ide/hd*/media; do + grep -q cdrom $i && echo $i | awk -F / '{ print "/dev/"$4"\t-b\tsystem_u:object_r:removable_device_t"}' >> $FCFILE || true +done + +if [ $logfileFlag = 0 ]; then + LOGFILE=`mktemp /var/tmp/fixfiles.log.XXXXXXXXXX` + if [ ! -w $LOGFILE ] ; then + rm -f $FCFILE + exit 1 + fi +fi + if [ $checkFlag = 1 ]; then checkLabels $rpmFiles fi if [ $restoreFlag = 1 ]; then restoreLabels $rpmFiles fi -if [ $logfileFlag = 0 ]; then - LOGFILE=`mktemp /var/tmp/fixfiles.XXXXXXXXXX` || exit 1 -fi if [ $relabelFlag = 1 ]; then if [ $fullFlag = 1 ]; then relabel $rpmFiles @@ -174,6 +199,6 @@ relabelCheck $rpmFiles fi fi -exit $? - +rm $FCFILE +exit $? --------------090700020003030402070304-- -- This message was distributed to subscribers of the selinux mailing list. If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with the words "unsubscribe selinux" without quotes as the message.