* Mon Jan 3 2005 Dan Walsh <dwalsh@redhat.com> 1.19.3-1
- Update to latest from NSA * Merged fixfiles and restorecon patches from Dan Walsh. * Don't display change if only user part changed.
This commit is contained in:
parent
29309fe6a6
commit
9fb0a29c97
@ -4,3 +4,4 @@ policycoreutils-1.17.7.tgz
|
|||||||
policycoreutils-1.18.1.tgz
|
policycoreutils-1.18.1.tgz
|
||||||
policycoreutils-1.19.1.tgz
|
policycoreutils-1.19.1.tgz
|
||||||
policycoreutils-1.19.2.tgz
|
policycoreutils-1.19.2.tgz
|
||||||
|
policycoreutils-1.19.3.tgz
|
||||||
|
@ -1,86 +1,38 @@
|
|||||||
diff --exclude-from=exclude -N -u -r nsapolicycoreutils/restorecon/restorecon.c policycoreutils-1.19.2/restorecon/restorecon.c
|
diff --exclude-from=exclude -N -u -r nsapolicycoreutils/restorecon/restorecon.c policycoreutils-1.19.2/restorecon/restorecon.c
|
||||||
--- nsapolicycoreutils/restorecon/restorecon.c 2004-12-29 12:18:11.000000000 -0500
|
--- nsapolicycoreutils/restorecon/restorecon.c 2005-01-05 15:12:59.569516712 -0500
|
||||||
+++ policycoreutils-1.19.2/restorecon/restorecon.c 2005-01-03 14:14:12.256118904 -0500
|
+++ policycoreutils-1.19.2/restorecon/restorecon.c 2005-01-05 15:11:14.994550830 -0500
|
||||||
@@ -68,7 +68,8 @@
|
@@ -43,6 +43,20 @@
|
||||||
return 1;
|
static int errors=0;
|
||||||
}
|
static int recurse;
|
||||||
if (S_ISLNK(st.st_mode)) {
|
|
||||||
- fprintf(stderr,"Warning! %s refers to a symbolic link, not following last component.\n", filename);
|
+/* Compare two contexts to see if their differences are "significant",
|
||||||
+ if (verbose>1)
|
+ * or whether the only difference is in the user. */
|
||||||
+ fprintf(stderr,"Warning! %s refers to a symbolic link, not following last component.\n", filename);
|
+static int only_changed_user(const char *a, const char *b)
|
||||||
char *p = NULL, *file_sep;
|
+{
|
||||||
char *tmp_path = strdup(filename);
|
+ char *rest_a, *rest_b; /* Rest of the context after the user */
|
||||||
if (!tmp_path) {
|
+ rest_a = strchr(a, ':');
|
||||||
@@ -129,8 +130,8 @@
|
+ rest_b = strchr(b, ':');
|
||||||
|
+ if (!rest_a || !rest_b)
|
||||||
|
+ return 0;
|
||||||
|
+ if (strcmp(rest_a, rest_b) == 0)
|
||||||
|
+ return 1;
|
||||||
|
+ return 0;
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
void usage(const char * const name)
|
||||||
|
{
|
||||||
|
fprintf(stderr,
|
||||||
|
@@ -129,9 +143,10 @@
|
||||||
|
freecon(scontext);
|
||||||
return 1;
|
return 1;
|
||||||
} else
|
} else
|
||||||
if (verbose)
|
- if (verbose)
|
||||||
- fprintf(stderr,"%s reset context %s->%s\n",
|
- fprintf(stderr,"%s reset context %s:%s->%s\n",
|
||||||
- progname, filename, scontext);
|
- progname, filename, prev_context, scontext);
|
||||||
+ fprintf(stderr,"%s reset context %s %s->%s\n",
|
+ if (verbose > 1 ||
|
||||||
|
+ !only_changed_user(scontext, prev_context))
|
||||||
|
+ fprintf(stderr,"%s reset context %s:%s->%s\n",
|
||||||
+ progname, filename, prev_context, scontext);
|
+ progname, filename, prev_context, scontext);
|
||||||
}
|
}
|
||||||
if (retcontext >= 0)
|
if (retcontext >= 0)
|
||||||
freecon(prev_context);
|
freecon(prev_context);
|
||||||
@@ -198,7 +199,7 @@
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'v':
|
|
||||||
- verbose = 1;
|
|
||||||
+ verbose++;
|
|
||||||
break;
|
|
||||||
case 'f':
|
|
||||||
file = 1;
|
|
||||||
diff --exclude-from=exclude -N -u -r nsapolicycoreutils/scripts/fixfiles policycoreutils-1.19.2/scripts/fixfiles
|
|
||||||
--- nsapolicycoreutils/scripts/fixfiles 2004-10-26 11:15:41.000000000 -0400
|
|
||||||
+++ policycoreutils-1.19.2/scripts/fixfiles 2005-01-03 13:30:04.000000000 -0500
|
|
||||||
@@ -53,10 +53,13 @@
|
|
||||||
echo $1 >> $LOGFILE
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
+rpmlist() {
|
|
||||||
+rpm -q --qf '[%{FILESTATES} %{FILENAMES}\n]' "$1" | grep '^0 ' | cut -f2- -d ' '
|
|
||||||
+}
|
|
||||||
checkLabels () {
|
|
||||||
if [ ! -z "$1" ]; then
|
|
||||||
for i in `echo $1 | sed 's/,/ /g'`; do
|
|
||||||
- rpm -q -l $i | restorecon ${OUTFILES} -n -v -f - 2>&1 >> $LOGFILE
|
|
||||||
+ rpmlist $i | restorecon ${OUTFILES} -R -n -v -f - 2>&1 >> $LOGFILE
|
|
||||||
done
|
|
||||||
else
|
|
||||||
if [ ! -z "$FILESYSTEMSRO" ]; then
|
|
||||||
@@ -70,7 +73,7 @@
|
|
||||||
restoreLabels () {
|
|
||||||
if [ ! -z "$1" ]; then
|
|
||||||
for i in `echo $1 | sed 's/,/ /g'`; do
|
|
||||||
- rpm -q -l $i | restorecon ${OUTFILES} -v -f - 2>&1 >> $LOGFILE
|
|
||||||
+ rpmlist $i | restorecon ${OUTFILES} -R -v -f - 2>&1 >> $LOGFILE
|
|
||||||
done
|
|
||||||
else
|
|
||||||
if [ ! -z "$FILESYSTEMSRO" ]; then
|
|
||||||
@@ -82,13 +85,11 @@
|
|
||||||
}
|
|
||||||
|
|
||||||
relabel() {
|
|
||||||
-logit "Cleaning out /tmp"
|
|
||||||
-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 >> $LOGFILE
|
|
||||||
- done
|
|
||||||
+ restoreLabels $1
|
|
||||||
else
|
|
||||||
+ logit "Cleaning out /tmp"
|
|
||||||
+ rm -rf /tmp/.??* /tmp/*
|
|
||||||
if [ ! -z "$FILESYSTEMSRO" ]; then
|
|
||||||
logit "Warning: Skipping the following R/O filesystems:"
|
|
||||||
logit "$FILESYSTEMSRO"
|
|
||||||
@@ -180,7 +181,7 @@
|
|
||||||
restoreLabels $rpmFiles
|
|
||||||
fi
|
|
||||||
if [ $relabelFlag = 1 ]; then
|
|
||||||
- if [ $fullFlag = 1 ]; then
|
|
||||||
+ if [ $fullFlag = 1 -o ! -z "$rpmFiles" ]; then
|
|
||||||
relabel $rpmFiles
|
|
||||||
else
|
|
||||||
relabelCheck $rpmFiles
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
Summary: SELinux policy core utilities.
|
Summary: SELinux policy core utilities.
|
||||||
Name: policycoreutils
|
Name: policycoreutils
|
||||||
Version: 1.19.2
|
Version: 1.19.3
|
||||||
Release: 4
|
Release: 1
|
||||||
License: GPL
|
License: GPL
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
Source: http://www.nsa.gov/selinux/archives/policycoreutils-%{version}.tgz
|
Source: http://www.nsa.gov/selinux/archives/policycoreutils-%{version}.tgz
|
||||||
@ -76,6 +76,11 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jan 3 2005 Dan Walsh <dwalsh@redhat.com> 1.19.3-1
|
||||||
|
- Update to latest from NSA
|
||||||
|
* Merged fixfiles and restorecon patches from Dan Walsh.
|
||||||
|
* Don't display change if only user part changed.
|
||||||
|
|
||||||
* Mon Jan 3 2005 Dan Walsh <dwalsh@redhat.com> 1.19.2-4
|
* Mon Jan 3 2005 Dan Walsh <dwalsh@redhat.com> 1.19.2-4
|
||||||
- Fix fixfiles handling of rpm
|
- Fix fixfiles handling of rpm
|
||||||
- Fix restorecon to not warn on symlinks unless -v -v
|
- Fix restorecon to not warn on symlinks unless -v -v
|
||||||
|
Loading…
Reference in New Issue
Block a user