- Upgrade to upstream
dlopen libsepol.so.1 rather than libsepol.so from Stephen Smalley. Based on a suggestion from Ulrich Drepper, defer regex compilation until we have a stem match, by Stephen Smalley. A further optimization would be to defer regex compilation until we have a complete match of the constant prefix of the regex - TBD.
This commit is contained in:
parent
2a8f17ac0d
commit
c4aa29e945
@ -134,3 +134,5 @@ libselinux-2.0.36.tgz
|
|||||||
libselinux-2.0.37.tgz
|
libselinux-2.0.37.tgz
|
||||||
libselinux-2.0.40.tgz
|
libselinux-2.0.40.tgz
|
||||||
libselinux-2.0.42.tgz
|
libselinux-2.0.42.tgz
|
||||||
|
libselinux-2.0.43.tgz
|
||||||
|
libselinux-2.0.45.tgz
|
||||||
|
@ -1,6 +1,18 @@
|
|||||||
diff --exclude-from=exclude -N -u -r nsalibselinux/src/matchpathcon.c libselinux-2.0.35/src/matchpathcon.c
|
diff --exclude-from=exclude -N -u -r nsalibselinux/include/selinux/av_permissions.h libselinux-2.0.42/include/selinux/av_permissions.h
|
||||||
|
--- nsalibselinux/include/selinux/av_permissions.h 2007-11-15 15:52:46.000000000 -0500
|
||||||
|
+++ libselinux-2.0.42/include/selinux/av_permissions.h 2007-11-15 16:30:48.000000000 -0500
|
||||||
|
@@ -900,6 +900,8 @@
|
||||||
|
#define PACKET__SEND 0x00000001UL
|
||||||
|
#define PACKET__RECV 0x00000002UL
|
||||||
|
#define PACKET__RELABELTO 0x00000004UL
|
||||||
|
+#define PACKET__FLOW_IN 0x00000008UL
|
||||||
|
+#define PACKET__FLOW_OUT 0x00000010UL
|
||||||
|
#define KEY__VIEW 0x00000001UL
|
||||||
|
#define KEY__READ 0x00000002UL
|
||||||
|
#define KEY__WRITE 0x00000004UL
|
||||||
|
diff --exclude-from=exclude -N -u -r nsalibselinux/src/matchpathcon.c libselinux-2.0.42/src/matchpathcon.c
|
||||||
--- nsalibselinux/src/matchpathcon.c 2007-09-28 09:48:58.000000000 -0400
|
--- nsalibselinux/src/matchpathcon.c 2007-09-28 09:48:58.000000000 -0400
|
||||||
+++ libselinux-2.0.35/src/matchpathcon.c 2007-09-27 13:54:33.000000000 -0400
|
+++ libselinux-2.0.42/src/matchpathcon.c 2007-11-15 15:08:23.000000000 -0500
|
||||||
@@ -2,6 +2,7 @@
|
@@ -2,6 +2,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
@ -18,10 +30,9 @@ diff --exclude-from=exclude -N -u -r nsalibselinux/src/matchpathcon.c libselinux
|
|||||||
va_end(ap);
|
va_end(ap);
|
||||||
}
|
}
|
||||||
|
|
||||||
%module selinux
|
diff --exclude-from=exclude -N -u -r nsalibselinux/utils/matchpathcon.c libselinux-2.0.42/utils/matchpathcon.c
|
||||||
diff --exclude-from=exclude -N -u -r nsalibselinux/utils/matchpathcon.c libselinux-2.0.35/utils/matchpathcon.c
|
|
||||||
--- nsalibselinux/utils/matchpathcon.c 2007-07-16 14:20:45.000000000 -0400
|
--- nsalibselinux/utils/matchpathcon.c 2007-07-16 14:20:45.000000000 -0400
|
||||||
+++ libselinux-2.0.35/utils/matchpathcon.c 2007-09-27 13:54:33.000000000 -0400
|
+++ libselinux-2.0.42/utils/matchpathcon.c 2007-11-15 15:08:23.000000000 -0500
|
||||||
@@ -17,10 +17,24 @@
|
@@ -17,10 +17,24 @@
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
%define libsepolver 2.0.10-1
|
%define libsepolver 2.0.10-1
|
||||||
Summary: SELinux library and simple utilities
|
Summary: SELinux library and simple utilities
|
||||||
Name: libselinux
|
Name: libselinux
|
||||||
Version: 2.0.42
|
Version: 2.0.45
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: Public domain (uncopyrighted)
|
License: Public domain (uncopyrighted)
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
@ -123,6 +123,16 @@ exit 0
|
|||||||
%{_libdir}/python*/site-packages/selinux.py*
|
%{_libdir}/python*/site-packages/selinux.py*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Nov 30 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.45-1
|
||||||
|
- Upgrade to upstream
|
||||||
|
* dlopen libsepol.so.1 rather than libsepol.so from Stephen Smalley.
|
||||||
|
* Based on a suggestion from Ulrich Drepper, defer regex compilation until we have a stem match, by Stephen Smalley.
|
||||||
|
* A further optimization would be to defer regex compilation until we have a complete match of the constant prefix of the regex - TBD.
|
||||||
|
|
||||||
|
* Thu Nov 15 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.43-1
|
||||||
|
- Upgrade to upstream
|
||||||
|
* Regenerated Flask headers from policy.
|
||||||
|
|
||||||
* Thu Nov 15 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.42-1
|
* Thu Nov 15 2007 Dan Walsh <dwalsh@redhat.com> - 2.0.42-1
|
||||||
- Upgrade to upstream
|
- Upgrade to upstream
|
||||||
* AVC enforcing mode override patch from Eamon Walsh.
|
* AVC enforcing mode override patch from Eamon Walsh.
|
||||||
|
Loading…
Reference in New Issue
Block a user