2006-09-14 12:34:54 +00:00
|
|
|
diff --exclude-from=exclude --exclude='*.po' -N -u -r nsapolicycoreutils/restorecon/restorecon.8 policycoreutils-1.30.29/restorecon/restorecon.8
|
2006-08-31 15:11:57 +00:00
|
|
|
--- nsapolicycoreutils/restorecon/restorecon.8 2006-08-28 16:58:19.000000000 -0400
|
2006-09-14 12:34:54 +00:00
|
|
|
+++ policycoreutils-1.30.29/restorecon/restorecon.8 2006-09-14 08:12:16.000000000 -0400
|
2006-08-31 15:11:57 +00:00
|
|
|
@@ -23,6 +23,9 @@
|
|
|
|
|
|
|
|
.SH "OPTIONS"
|
|
|
|
.TP
|
|
|
|
+.B \-i
|
|
|
|
+ignore files that do not exist
|
|
|
|
+.TP
|
|
|
|
.B \-f infilename
|
|
|
|
infilename contains a list of files to be processed by application. Use \- for stdin.
|
|
|
|
.TP
|
2006-09-14 12:34:54 +00:00
|
|
|
diff --exclude-from=exclude --exclude='*.po' -N -u -r nsapolicycoreutils/restorecon/restorecon.c policycoreutils-1.30.29/restorecon/restorecon.c
|
2006-09-02 02:43:09 +00:00
|
|
|
--- nsapolicycoreutils/restorecon/restorecon.c 2006-09-01 22:32:11.000000000 -0400
|
2006-09-14 12:34:54 +00:00
|
|
|
+++ policycoreutils-1.30.29/restorecon/restorecon.c 2006-09-14 08:17:23.000000000 -0400
|
2006-09-08 14:53:08 +00:00
|
|
|
@@ -11,9 +11,10 @@
|
2006-08-31 15:11:57 +00:00
|
|
|
* restorecon [-Rnv] pathname...
|
|
|
|
*
|
|
|
|
* -e Specify directory to exclude
|
|
|
|
+ * -i Ignore error if file does not exist
|
|
|
|
* -n Do not change any file labels.
|
|
|
|
* -v Show changes in file labels.
|
2006-09-08 14:53:08 +00:00
|
|
|
- * -o filename save list of files with incorrect context
|
2006-09-14 12:34:54 +00:00
|
|
|
+ * -o filename save list of files with incorrect context
|
2006-09-08 14:53:08 +00:00
|
|
|
* -F Force reset of context to match file_context for customizable files
|
|
|
|
*
|
|
|
|
* pathname... The file(s) to label
|
2006-09-11 14:29:14 +00:00
|
|
|
@@ -41,12 +42,14 @@
|
|
|
|
#include <ftw.h>
|
|
|
|
|
2006-09-08 14:53:08 +00:00
|
|
|
static int change = 1;
|
2006-09-11 14:29:14 +00:00
|
|
|
+static int change_ctr = 0;
|
2006-09-08 14:53:08 +00:00
|
|
|
static int verbose = 0;
|
|
|
|
static int progress = 0;
|
2006-09-14 12:34:54 +00:00
|
|
|
static FILE *outfile = NULL;
|
2006-08-31 15:11:57 +00:00
|
|
|
static char *progname;
|
|
|
|
static int errors = 0;
|
|
|
|
static int recurse = 0;
|
|
|
|
+static int file_exist = 1;
|
|
|
|
static int force = 0;
|
|
|
|
#define STAT_BLOCK_SIZE 1
|
|
|
|
static int pipe_fds[2] = { -1, -1 };
|
2006-09-11 14:29:14 +00:00
|
|
|
@@ -129,7 +132,7 @@
|
2006-08-31 15:11:57 +00:00
|
|
|
void usage(const char *const name)
|
|
|
|
{
|
|
|
|
fprintf(stderr,
|
|
|
|
- "usage: %s [-FnrRv] [-e excludedir ] [-o filename ] [-f filename | pathname... ]\n",
|
2006-09-14 12:34:54 +00:00
|
|
|
+ "usage: %s [-iFonrRv] [-e excludedir ] [-o filename ] [-f filename | pathname... ]\n",
|
2006-08-31 15:11:57 +00:00
|
|
|
name);
|
|
|
|
exit(1);
|
|
|
|
}
|
2006-09-14 12:34:54 +00:00
|
|
|
@@ -160,7 +163,9 @@
|
2006-08-31 15:11:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (lstat(filename, &st) != 0) {
|
2006-09-14 12:34:54 +00:00
|
|
|
- fprintf(stderr, "lstat(%s) failed: %s\n", filename,
|
2006-08-31 15:11:57 +00:00
|
|
|
+ if (!file_exist && errno == ENOENT)
|
|
|
|
+ return 0;
|
2006-09-14 12:34:54 +00:00
|
|
|
+ fprintf(outfile, "lstat(%s) failed: %s\n", filename,
|
2006-08-31 15:11:57 +00:00
|
|
|
strerror(errno));
|
|
|
|
return 1;
|
2006-09-14 12:34:54 +00:00
|
|
|
}
|
2006-09-11 14:29:14 +00:00
|
|
|
@@ -249,9 +251,12 @@
|
|
|
|
freecon(scontext);
|
|
|
|
return 1;
|
2006-09-08 14:53:08 +00:00
|
|
|
}
|
2006-09-11 14:29:14 +00:00
|
|
|
- }
|
|
|
|
+ }
|
|
|
|
+ else
|
|
|
|
+ change_ctr++;
|
|
|
|
+
|
2006-09-08 14:53:08 +00:00
|
|
|
if (verbose)
|
|
|
|
- printf("%s reset %s context %s->%s\n",
|
|
|
|
+ fprintf(stderr, "%s reset %s context %s->%s\n",
|
|
|
|
progname, filename,
|
|
|
|
(retcontext >=
|
|
|
|
0 ? prev_context : ""),
|
2006-09-11 14:29:14 +00:00
|
|
|
@@ -259,7 +264,7 @@
|
2006-09-08 14:53:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (verbose > 1 && !force && customizable > 0) {
|
|
|
|
- printf("%s: %s not reset customized by admin to %s\n",
|
|
|
|
+ fprintf(stderr, "%s: %s not reset customized by admin to %s\n",
|
|
|
|
progname, filename, prev_context);
|
|
|
|
}
|
|
|
|
|
2006-09-11 14:29:14 +00:00
|
|
|
@@ -322,6 +327,8 @@
|
2006-08-31 15:11:57 +00:00
|
|
|
close(pipe_fds[1]);
|
|
|
|
if (rc == -1 || rc > 0) {
|
|
|
|
if (nftw(buf, apply_spec, 1024, FTW_PHYS)) {
|
|
|
|
+ if (!file_exist && errno == ENOENT)
|
|
|
|
+ return;
|
|
|
|
fprintf(stderr,
|
|
|
|
"%s: error while labeling files under %s\n",
|
|
|
|
progname, buf);
|
2006-09-11 14:29:14 +00:00
|
|
|
@@ -353,11 +360,14 @@
|
2006-08-31 15:11:57 +00:00
|
|
|
exit(0);
|
|
|
|
set_matchpathcon_flags(MATCHPATHCON_NOTRANS);
|
|
|
|
|
|
|
|
- while ((opt = getopt(argc, argv, "pFrRnvf:o:e:")) > 0) {
|
2006-09-14 12:34:54 +00:00
|
|
|
+ while ((opt = getopt(argc, argv, "ipFrRnvf:o:e:")) > 0) {
|
2006-08-31 15:11:57 +00:00
|
|
|
switch (opt) {
|
|
|
|
case 'n':
|
|
|
|
change = 0;
|
|
|
|
break;
|
|
|
|
+ case 'i':
|
|
|
|
+ file_exist = 0;
|
|
|
|
+ break;
|
|
|
|
case 'r':
|
|
|
|
case 'R':
|
|
|
|
recurse = 1;
|
2006-09-14 12:34:54 +00:00
|
|
|
@@ -370,13 +380,17 @@
|
2006-09-08 14:53:08 +00:00
|
|
|
exit(1);
|
|
|
|
break;
|
|
|
|
case 'o':
|
|
|
|
- outfile = fopen(optarg, "w");
|
|
|
|
- if (!outfile) {
|
|
|
|
- fprintf(stderr, "Error opening %s: %s\n",
|
|
|
|
- optarg, strerror(errno));
|
|
|
|
- usage(argv[0]);
|
2006-09-14 12:34:54 +00:00
|
|
|
+ if (strcmp(optarg,"-") == 0)
|
|
|
|
+ outfile=stdout;
|
|
|
|
+ else {
|
|
|
|
+ outfile = fopen(optarg, "w");
|
|
|
|
+ if (!outfile) {
|
|
|
|
+ fprintf(stderr, "Error opening %s: %s\n",
|
|
|
|
+ optarg, strerror(errno));
|
|
|
|
+ usage(argv[0]);
|
|
|
|
+ }
|
|
|
|
+ __fsetlocking(outfile, FSETLOCKING_BYCALLER);
|
|
|
|
}
|
2006-09-08 14:53:08 +00:00
|
|
|
- __fsetlocking(outfile, FSETLOCKING_BYCALLER);
|
|
|
|
break;
|
|
|
|
case 'v':
|
|
|
|
if (progress) {
|
2006-09-14 12:34:54 +00:00
|
|
|
@@ -425,8 +439,11 @@
|
2006-09-08 14:53:08 +00:00
|
|
|
process(argv[i]);
|
|
|
|
}
|
|
|
|
}
|
2006-09-11 14:29:14 +00:00
|
|
|
+
|
2006-09-14 12:34:54 +00:00
|
|
|
if (outfile)
|
|
|
|
fclose(outfile);
|
2006-09-08 14:53:08 +00:00
|
|
|
|
2006-09-14 12:34:54 +00:00
|
|
|
+ if (change) return change_ctr;
|
|
|
|
+
|
2006-09-08 14:53:08 +00:00
|
|
|
return errors;
|
|
|
|
}
|
2006-09-14 12:34:54 +00:00
|
|
|
diff --exclude-from=exclude --exclude='*.po' -N -u -r nsapolicycoreutils/scripts/fixfiles policycoreutils-1.30.29/scripts/fixfiles
|
2006-09-02 02:43:09 +00:00
|
|
|
--- nsapolicycoreutils/scripts/fixfiles 2006-09-01 22:32:11.000000000 -0400
|
2006-09-14 12:34:54 +00:00
|
|
|
+++ policycoreutils-1.30.29/scripts/fixfiles 2006-09-14 08:12:16.000000000 -0400
|
2006-09-06 14:54:32 +00:00
|
|
|
@@ -117,8 +117,8 @@
|
|
|
|
exit $?
|
2006-08-31 15:11:57 +00:00
|
|
|
fi
|
|
|
|
if [ ! -z "$RPMFILES" ]; then
|
2006-09-06 14:54:32 +00:00
|
|
|
- for i in `echo $RPMFILES | sed 's/,/ /g'`; do
|
2006-08-31 15:11:57 +00:00
|
|
|
- rpmlist $i | ${RESTORECON} ${OUTFILES} ${FORCEFLAG} -R $* -f - 2>&1 >> $LOGFILE
|
2006-09-06 14:54:32 +00:00
|
|
|
+ for i in `echo "$RPMFILES" | sed 's/,/ /g'`; do
|
2006-09-08 14:53:08 +00:00
|
|
|
+ rpmlist $i | ${RESTORECON} ${OUTFILES} ${FORCEFLAG} -i $* -f - 2>> $LOGFILE
|
2006-08-31 15:11:57 +00:00
|
|
|
done
|
|
|
|
exit $?
|
|
|
|
fi
|
2006-09-08 14:53:08 +00:00
|
|
|
@@ -126,10 +126,10 @@
|
|
|
|
if [ -x /usr/bin/find ]; then
|
|
|
|
for d in ${DIRS} ; do find $d \
|
|
|
|
! \( -fstype ext2 -o -fstype ext3 -o -fstype jfs -o -fstype xfs \) -prune -o -print | \
|
|
|
|
- ${RESTORECON} ${OUTFILES} ${FORCEFLAG} $* -f - 2>&1 >> $LOGFILE
|
|
|
|
+ ${RESTORECON} ${OUTFILES} ${FORCEFLAG} $* -f - 2>> $LOGFILE
|
|
|
|
done
|
|
|
|
else
|
|
|
|
- ${RESTORECON} ${OUTFILES} ${FORCEFLAG} -R $* $DIRS 2>&1 >> $LOGFILE
|
|
|
|
+ ${RESTORECON} ${OUTFILES} ${FORCEFLAG} -R $* $DIRS 2>> $LOGFILE
|
|
|
|
fi
|
|
|
|
|
|
|
|
exit $?
|
2006-09-06 14:54:32 +00:00
|
|
|
@@ -219,7 +219,7 @@
|
|
|
|
# check if they specified both DIRS and RPMFILES
|
|
|
|
#
|
|
|
|
|
|
|
|
-if [ ! -z $RPMFILES ]; then
|
|
|
|
+if [ ! -z "$RPMFILES" ]; then
|
|
|
|
if [ $OPTIND -le $# ]; then
|
|
|
|
usage
|
|
|
|
fi
|