|
From: <ssm...@us...> - 2006-09-29 14:59:20
|
Revision: 2041
http://svn.sourceforge.net/selinux/?rev=2041&view=rev
Author: ssmalley
Date: 2006-09-29 07:59:14 -0700 (Fri, 29 Sep 2006)
Log Message:
-----------
Author: "James Athey"
Email: ja...@tr...
Subject: libsemanage: add genhomedircon path to semanage.conf parsing
Date: Thu, 28 Sep 2006 17:31:46 -0400
This patch adds the ability to specify a path to genhomedircon in semanage.conf, similar to specifying a path to setfiles or load_policy. For example:
[genhomedircon]
path = /usr/local/sbin/genhomedircon_modified
args = -t $@
[end]
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/src/conf-parse.y
trunk/libsemanage/src/conf-scan.l
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2006-09-29 14:54:01 UTC (rev 2040)
+++ trunk/libsemanage/ChangeLog 2006-09-29 14:59:14 UTC (rev 2041)
@@ -1,3 +1,6 @@
+ * Merged patch to add genhomedircon path to semanage.conf from
+ James Athey.
+
1.6.16 2006-08-14
* Make most copy errors fatal, but allow exceptions for
file_contexts.local, seusers, and netfilter_contexts if
Modified: trunk/libsemanage/src/conf-parse.y
===================================================================
--- trunk/libsemanage/src/conf-parse.y 2006-09-29 14:54:01 UTC (rev 2040)
+++ trunk/libsemanage/src/conf-parse.y 2006-09-29 14:59:14 UTC (rev 2041)
@@ -1,6 +1,7 @@
-/* Author: Jason Tang <jt...@tr...>
+/* Authors: Jason Tang <jt...@tr...>
+ * James Athey <ja...@tr...>
*
- * Copyright (C) 2004-2005 Tresys Technology, LLC
+ * Copyright (C) 2004-2006 Tresys Technology, LLC
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -56,7 +57,7 @@
}
%token MODULE_STORE VERSION EXPAND_CHECK FILE_MODE
-%token LOAD_POLICY_START SETFILES_START
+%token LOAD_POLICY_START SETFILES_START GENHOMEDIRCON_START
%token VERIFY_MOD_START VERIFY_LINKED_START VERIFY_KERNEL_START BLOCK_END
%token PROG_PATH PROG_ARGS
%token <s> ARG
@@ -137,6 +138,14 @@
YYABORT;
}
}
+ | GENHOMEDIRCON_START {
+ semanage_conf_external_prog_destroy(current_conf->genhomedircon);
+ current_conf->genhomedircon = NULL;
+ if (new_external_prog(¤t_conf->genhomedircon) == -1) {
+ parse_errors++;
+ YYABORT;
+ }
+ }
;
verify_block: verify_start external_opts BLOCK_END {
Modified: trunk/libsemanage/src/conf-scan.l
===================================================================
--- trunk/libsemanage/src/conf-scan.l 2006-09-29 14:54:01 UTC (rev 2040)
+++ trunk/libsemanage/src/conf-scan.l 2006-09-29 14:59:14 UTC (rev 2041)
@@ -1,6 +1,7 @@
-/* Author: Jason Tang <jt...@tr...>
+/* Authors: Jason Tang <jt...@tr...>
+ * James Athey <ja...@tr...>
*
- * Copyright (C) 2004-2005 Tresys Technology, LLC
+ * Copyright (C) 2004-2006 Tresys Technology, LLC
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -43,6 +44,7 @@
file-mode return FILE_MODE;
"[load_policy]" return LOAD_POLICY_START;
"[setfiles]" return SETFILES_START;
+"[genhomedircon]" return GENHOMEDIRCON_START;
"[verify module]" return VERIFY_MOD_START;
"[verify linked]" return VERIFY_LINKED_START;
"[verify kernel]" return VERIFY_KERNEL_START;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ssm...@us...> - 2006-09-29 15:01:05
|
Revision: 2042
http://svn.sourceforge.net/selinux/?rev=2042&view=rev
Author: ssmalley
Date: 2006-09-29 08:00:58 -0700 (Fri, 29 Sep 2006)
Log Message:
-----------
Author: "James Athey"
Email: ja...@tr...
Subject: libsemanage: add genhomedircon path to semanage.conf parsing
Date: Thu, 28 Sep 2006 17:31:46 -0400
This patch adds the ability to specify a path to genhomedircon in semanage.conf, similar to specifying a path to setfiles or load_policy. For example:
[genhomedircon]
path = /usr/local/sbin/genhomedircon_modified
args = -t $@
[end]
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/src/direct_api.c
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2006-09-29 14:59:14 UTC (rev 2041)
+++ trunk/libsemanage/ChangeLog 2006-09-29 15:00:58 UTC (rev 2042)
@@ -1,3 +1,5 @@
+ * Merged patch to not destroy sepol handle on error path of
+ connect from James Athey.
* Merged patch to add genhomedircon path to semanage.conf from
James Athey.
Modified: trunk/libsemanage/src/direct_api.c
===================================================================
--- trunk/libsemanage/src/direct_api.c 2006-09-29 14:59:14 UTC (rev 2041)
+++ trunk/libsemanage/src/direct_api.c 2006-09-29 15:00:58 UTC (rev 2042)
@@ -218,7 +218,6 @@
err:
ERR(sh, "could not establish direct connection");
- sepol_handle_destroy(sh->sepolh);
return STATUS_ERR;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ssm...@us...> - 2006-09-29 15:33:35
|
Revision: 2044
http://svn.sourceforge.net/selinux/?rev=2044&view=rev
Author: ssmalley
Date: 2006-09-29 08:33:28 -0700 (Fri, 29 Sep 2006)
Log Message:
-----------
Author: Daniel J Walsh
Email: dw...@re...
Subject: libsemanage patch to handle installation problem
Date: Fri, 29 Sep 2006 10:43:34 -0400
During install if selinux-policy-mls or selinux-policy-strict get
installed before targeted, libsemanage will
try to load those policies when it should not.
Dan
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/src/semanage_store.c
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2006-09-29 15:27:26 UTC (rev 2043)
+++ trunk/libsemanage/ChangeLog 2006-09-29 15:33:28 UTC (rev 2044)
@@ -1,3 +1,5 @@
+ * Merged patch to skip reload if no active store exists and
+ the store path doesn't match the active store path from Dan Walsh.
* Merged patch to not destroy sepol handle on error path of
connect from James Athey.
* Merged patch to add genhomedircon path to semanage.conf from
Modified: trunk/libsemanage/src/semanage_store.c
===================================================================
--- trunk/libsemanage/src/semanage_store.c 2006-09-29 15:27:26 UTC (rev 2043)
+++ trunk/libsemanage/src/semanage_store.c 2006-09-29 15:33:28 UTC (rev 2044)
@@ -1110,7 +1110,9 @@
/* They are not the same store */
goto skip_reload;
}
- }
+ } else if (errno == ENOENT &&
+ strcmp(really_active_store, storepath) != 0)
+ goto skip_reload;
if (semanage_reload_policy(sh)) {
goto cleanup;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <kma...@us...> - 2006-11-27 20:35:01
|
Revision: 2109
http://svn.sourceforge.net/selinux/?rev=2109&view=rev
Author: kmacmillan
Date: 2006-11-27 12:34:59 -0800 (Mon, 27 Nov 2006)
Log Message:
-----------
corrected version number for libsemanage - 1.9.1
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/VERSION
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2006-11-27 19:18:45 UTC (rev 2108)
+++ trunk/libsemanage/ChangeLog 2006-11-27 20:34:59 UTC (rev 2109)
@@ -1,8 +1,8 @@
-1.8.1 2006-11-27
+1.9.1 2006-11-27
* Merged patch to compile wit -fPIC instead of -fpic from
Manoj Srivastava to prevent hitting the global offest table
limit. Patch changed to include libselinux and libsemanage in
- addition to libselinux.
+ addition to libsepol.
1.8 2006-10-17
* Updated version for release.
Modified: trunk/libsemanage/VERSION
===================================================================
--- trunk/libsemanage/VERSION 2006-11-27 19:18:45 UTC (rev 2108)
+++ trunk/libsemanage/VERSION 2006-11-27 20:34:59 UTC (rev 2109)
@@ -1 +1 @@
-1.8.1
+1.9.1
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <mad...@us...> - 2007-01-08 20:35:29
|
Revision: 2157
http://svn.sourceforge.net/selinux/?rev=2157&view=rev
Author: madmethod
Date: 2007-01-08 12:35:21 -0800 (Mon, 08 Jan 2007)
Log Message:
-----------
version bump for libsemanage 1.9.2
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/VERSION
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2007-01-08 20:33:11 UTC (rev 2156)
+++ trunk/libsemanage/ChangeLog 2007-01-08 20:35:21 UTC (rev 2157)
@@ -1,3 +1,8 @@
+1.9.2 2007-01-08
+ * Merged patch to optionally reduce disk usage by removing
+ the backup module store and linked policy from Karl MacMillan
+ * Merged patch to correctly propagate return values in libsemanage
+
1.9.1 2006-11-27
* Merged patch to compile wit -fPIC instead of -fpic from
Manoj Srivastava to prevent hitting the global offest table
@@ -3,4 +8,5 @@
limit. Patch changed to include libselinux and libsemanage in
addition to libsepol.
+
1.8 2006-10-17
* Updated version for release.
Modified: trunk/libsemanage/VERSION
===================================================================
--- trunk/libsemanage/VERSION 2007-01-08 20:33:11 UTC (rev 2156)
+++ trunk/libsemanage/VERSION 2007-01-08 20:35:21 UTC (rev 2157)
@@ -1 +1 @@
-1.9.1
+1.9.2
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ssm...@us...> - 2007-03-12 15:24:35
|
Revision: 2285
http://svn.sourceforge.net/selinux/?rev=2285&view=rev
Author: ssmalley
Date: 2007-03-12 08:24:30 -0700 (Mon, 12 Mar 2007)
Log Message:
-----------
Updated ChangeLog and VERSION
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/VERSION
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2007-03-12 15:22:07 UTC (rev 2284)
+++ trunk/libsemanage/ChangeLog 2007-03-12 15:24:30 UTC (rev 2285)
@@ -1,3 +1,9 @@
+2.0.1 2007-03-12
+ * Merged dbase_file_flush patch from Dan Walsh.
+ This removes any mention of specific tools (e.g. semanage)
+ from the comment header of the auto-generated files,
+ since there are multiple front-end tools.
+
2.0.0 2007-02-20
* Merged Makefile test target patch from Caleb Case.
* Merged get_commit_number function rename patch from Caleb Case.
Modified: trunk/libsemanage/VERSION
===================================================================
--- trunk/libsemanage/VERSION 2007-03-12 15:22:07 UTC (rev 2284)
+++ trunk/libsemanage/VERSION 2007-03-12 15:24:30 UTC (rev 2285)
@@ -1 +1 @@
-2.0.0
+2.0.1
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ssm...@us...> - 2007-04-24 20:20:49
|
Revision: 2371
http://svn.sourceforge.net/selinux/?rev=2371&view=rev
Author: ssmalley
Date: 2007-04-24 13:20:48 -0700 (Tue, 24 Apr 2007)
Log Message:
-----------
Updated ChangeLog and VERSION.
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/VERSION
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2007-04-24 20:19:26 UTC (rev 2370)
+++ trunk/libsemanage/ChangeLog 2007-04-24 20:20:48 UTC (rev 2371)
@@ -1,3 +1,8 @@
+2.0.2 2007-04-24
+ * Merged optimizations from Stephen Smalley.
+ - do not set all booleans upon commit, only those whose values have changed
+ - only install the sandbox upon commit if something was rebuilt
+
2.0.1 2007-03-12
* Merged dbase_file_flush patch from Dan Walsh.
This removes any mention of specific tools (e.g. semanage)
Modified: trunk/libsemanage/VERSION
===================================================================
--- trunk/libsemanage/VERSION 2007-04-24 20:19:26 UTC (rev 2370)
+++ trunk/libsemanage/VERSION 2007-04-24 20:20:48 UTC (rev 2371)
@@ -1 +1 @@
-2.0.1
+2.0.2
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <kma...@us...> - 2007-04-25 20:53:24
|
Revision: 2384
http://svn.sourceforge.net/selinux/?rev=2384&view=rev
Author: kmacmillan
Date: 2007-04-25 13:43:09 -0700 (Wed, 25 Apr 2007)
Log Message:
-----------
updated libsemanage to version 2.0.3
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/VERSION
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2007-04-25 20:37:45 UTC (rev 2383)
+++ trunk/libsemanage/ChangeLog 2007-04-25 20:43:09 UTC (rev 2384)
@@ -1,3 +1,6 @@
+2.0.3 2007-04-25
+ * Fix to libsemanage man patches so whatis will work better from Dan Walsh
+
2.0.2 2007-04-24
* Merged optimizations from Stephen Smalley.
- do not set all booleans upon commit, only those whose values have changed
Modified: trunk/libsemanage/VERSION
===================================================================
--- trunk/libsemanage/VERSION 2007-04-25 20:37:45 UTC (rev 2383)
+++ trunk/libsemanage/VERSION 2007-04-25 20:43:09 UTC (rev 2384)
@@ -1 +1 @@
-2.0.2
+2.0.3
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ssm...@us...> - 2007-08-23 14:48:59
|
Revision: 2532
http://selinux.svn.sourceforge.net/selinux/?rev=2532&view=rev
Author: ssmalley
Date: 2007-08-23 07:48:58 -0700 (Thu, 23 Aug 2007)
Log Message:
-----------
updated libsemanage to version 2.0.5
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/VERSION
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2007-08-23 14:46:08 UTC (rev 2531)
+++ trunk/libsemanage/ChangeLog 2007-08-23 14:48:58 UTC (rev 2532)
@@ -1,6 +1,12 @@
+2.0.5 2007-08-23
+ * Replace genhomedircon script with equivalent functionality within
+ libsemanage and introduce disable-genhomedircon option in
+ semanage.conf from Todd Miller.
+ Note: Depends on ustr.
+
2.0.4 2007-08-16
* Allow dontaudits to be turned off via semanage interface when
- updating policy
+ updating policy from Joshua Brindle.
2.0.3 2007-04-25
* Fix to libsemanage man patches so whatis will work better from Dan Walsh
Modified: trunk/libsemanage/VERSION
===================================================================
--- trunk/libsemanage/VERSION 2007-08-23 14:46:08 UTC (rev 2531)
+++ trunk/libsemanage/VERSION 2007-08-23 14:48:58 UTC (rev 2532)
@@ -1 +1 @@
-2.0.4
+2.0.5
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ssm...@us...> - 2007-09-10 19:30:31
|
Revision: 2556
http://selinux.svn.sourceforge.net/selinux/?rev=2556&view=rev
Author: ssmalley
Date: 2007-09-10 12:30:31 -0700 (Mon, 10 Sep 2007)
Log Message:
-----------
updated libsemanage to version 2.0.6
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/VERSION
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2007-09-10 19:29:37 UTC (rev 2555)
+++ trunk/libsemanage/ChangeLog 2007-09-10 19:30:31 UTC (rev 2556)
@@ -1,3 +1,6 @@
+2.0.6 2007-09-10
+ * Change to use getpw* function calls to the _r versions from Todd Miller.
+
2.0.5 2007-08-23
* Replace genhomedircon script with equivalent functionality within
libsemanage and introduce disable-genhomedircon option in
Modified: trunk/libsemanage/VERSION
===================================================================
--- trunk/libsemanage/VERSION 2007-09-10 19:29:37 UTC (rev 2555)
+++ trunk/libsemanage/VERSION 2007-09-10 19:30:31 UTC (rev 2556)
@@ -1 +1 @@
-2.0.5
+2.0.6
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ssm...@us...> - 2007-09-19 18:43:35
|
Revision: 2571
http://selinux.svn.sourceforge.net/selinux/?rev=2571&view=rev
Author: ssmalley
Date: 2007-09-19 11:43:34 -0700 (Wed, 19 Sep 2007)
Log Message:
-----------
updated libsemanage to version 2.0.7
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/VERSION
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2007-09-19 18:42:25 UTC (rev 2570)
+++ trunk/libsemanage/ChangeLog 2007-09-19 18:43:34 UTC (rev 2571)
@@ -1,3 +1,6 @@
+2.0.7 2007-09-19
+ * Improve reporting of system errors, e.g. full filesystem or read-only filesystem from Stephen Smalley.
+
2.0.6 2007-09-10
* Change to use getpw* function calls to the _r versions from Todd Miller.
Modified: trunk/libsemanage/VERSION
===================================================================
--- trunk/libsemanage/VERSION 2007-09-19 18:42:25 UTC (rev 2570)
+++ trunk/libsemanage/VERSION 2007-09-19 18:43:34 UTC (rev 2571)
@@ -1 +1 @@
-2.0.6
+2.0.7
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ssm...@us...> - 2007-09-19 21:14:45
|
Revision: 2574
http://selinux.svn.sourceforge.net/selinux/?rev=2574&view=rev
Author: ssmalley
Date: 2007-09-19 14:14:39 -0700 (Wed, 19 Sep 2007)
Log Message:
-----------
updated libsemanage to version 2.0.8
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/VERSION
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2007-09-19 21:13:57 UTC (rev 2573)
+++ trunk/libsemanage/ChangeLog 2007-09-19 21:14:39 UTC (rev 2574)
@@ -1,3 +1,7 @@
+2.0.8 2007-09-19
+ * Clear errno on non-fatal errors to avoid reporting them upon a
+ later error that does not set errno.
+
2.0.7 2007-09-19
* Improve reporting of system errors, e.g. full filesystem or read-only filesystem from Stephen Smalley.
Modified: trunk/libsemanage/VERSION
===================================================================
--- trunk/libsemanage/VERSION 2007-09-19 21:13:57 UTC (rev 2573)
+++ trunk/libsemanage/VERSION 2007-09-19 21:14:39 UTC (rev 2574)
@@ -1 +1 @@
-2.0.7
+2.0.8
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ssm...@us...> - 2007-09-24 16:37:18
|
Revision: 2582
http://selinux.svn.sourceforge.net/selinux/?rev=2582&view=rev
Author: ssmalley
Date: 2007-09-24 09:37:16 -0700 (Mon, 24 Sep 2007)
Log Message:
-----------
updated libsemanage to version 2.0.9
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/VERSION
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2007-09-24 16:35:08 UTC (rev 2581)
+++ trunk/libsemanage/ChangeLog 2007-09-24 16:37:16 UTC (rev 2582)
@@ -1,3 +1,6 @@
+2.0.9 2007-09-24
+ * Pass CFLAGS to CC even on link command, per Dennis Gilmore.
+
2.0.8 2007-09-19
* Clear errno on non-fatal errors to avoid reporting them upon a
later error that does not set errno.
Modified: trunk/libsemanage/VERSION
===================================================================
--- trunk/libsemanage/VERSION 2007-09-24 16:35:08 UTC (rev 2581)
+++ trunk/libsemanage/VERSION 2007-09-24 16:37:16 UTC (rev 2582)
@@ -1 +1 @@
-2.0.8
+2.0.9
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ssm...@us...> - 2007-09-28 13:43:21
|
Revision: 2624
http://selinux.svn.sourceforge.net/selinux/?rev=2624&view=rev
Author: ssmalley
Date: 2007-09-28 06:43:19 -0700 (Fri, 28 Sep 2007)
Log Message:
-----------
updated libsemanage to version 2.0.10
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/VERSION
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2007-09-28 13:40:53 UTC (rev 2623)
+++ trunk/libsemanage/ChangeLog 2007-09-28 13:43:19 UTC (rev 2624)
@@ -1,3 +1,9 @@
+2.0.10 2007-09-28
+ * Fix error checking on getpw*_r functions from Todd Miller.
+ * Make genhomedircon skip invalid homedir contexts from Todd Miller.
+ * Set default user and prefix from seusers from Dan Walsh.
+ * Add swigify Makefile target from Dan Walsh.
+
2.0.9 2007-09-24
* Pass CFLAGS to CC even on link command, per Dennis Gilmore.
Modified: trunk/libsemanage/VERSION
===================================================================
--- trunk/libsemanage/VERSION 2007-09-28 13:40:53 UTC (rev 2623)
+++ trunk/libsemanage/VERSION 2007-09-28 13:43:19 UTC (rev 2624)
@@ -1 +1 @@
-2.0.9
+2.0.10
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ssm...@us...> - 2007-09-28 18:21:30
|
Revision: 2626
http://selinux.svn.sourceforge.net/selinux/?rev=2626&view=rev
Author: ssmalley
Date: 2007-09-28 11:21:04 -0700 (Fri, 28 Sep 2007)
Log Message:
-----------
updated libsemanage to version 2.0.11
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/VERSION
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2007-09-28 18:20:26 UTC (rev 2625)
+++ trunk/libsemanage/ChangeLog 2007-09-28 18:21:04 UTC (rev 2626)
@@ -1,3 +1,6 @@
+2.0.11 2007-09-28
+ * Fix ordering of file_contexts.homedirs from Todd Miller and Dan Walsh.
+
2.0.10 2007-09-28
* Fix error checking on getpw*_r functions from Todd Miller.
* Make genhomedircon skip invalid homedir contexts from Todd Miller.
Modified: trunk/libsemanage/VERSION
===================================================================
--- trunk/libsemanage/VERSION 2007-09-28 18:20:26 UTC (rev 2625)
+++ trunk/libsemanage/VERSION 2007-09-28 18:21:04 UTC (rev 2626)
@@ -1 +1 @@
-2.0.10
+2.0.11
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ssm...@us...> - 2007-10-05 14:07:03
|
Revision: 2640
http://selinux.svn.sourceforge.net/selinux/?rev=2640&view=rev
Author: ssmalley
Date: 2007-10-05 07:07:01 -0700 (Fri, 05 Oct 2007)
Log Message:
-----------
updated libsemanage to version 2.0.12
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/VERSION
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2007-10-05 14:05:52 UTC (rev 2639)
+++ trunk/libsemanage/ChangeLog 2007-10-05 14:07:01 UTC (rev 2640)
@@ -1,3 +1,7 @@
+2.0.12 2007-10-05
+ * ustr cleanups from James Antill.
+ * Ensure that /root gets labeled even if using the default context from Dan Walsh.
+
2.0.11 2007-09-28
* Fix ordering of file_contexts.homedirs from Todd Miller and Dan Walsh.
Modified: trunk/libsemanage/VERSION
===================================================================
--- trunk/libsemanage/VERSION 2007-10-05 14:05:52 UTC (rev 2639)
+++ trunk/libsemanage/VERSION 2007-10-05 14:07:01 UTC (rev 2640)
@@ -1 +1 @@
-2.0.11
+2.0.12
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ssm...@us...> - 2007-11-05 18:54:59
|
Revision: 2669
http://selinux.svn.sourceforge.net/selinux/?rev=2669&view=rev
Author: ssmalley
Date: 2007-11-05 10:54:58 -0800 (Mon, 05 Nov 2007)
Log Message:
-----------
updated libsemanage to version 2.0.13
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/VERSION
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2007-11-05 18:54:28 UTC (rev 2668)
+++ trunk/libsemanage/ChangeLog 2007-11-05 18:54:58 UTC (rev 2669)
@@ -1,3 +1,6 @@
+2.0.13 2007-11-05
+ * Allow handle_unknown in base to be overridden by semanage.conf from Stephen Smalley.
+
2.0.12 2007-10-05
* ustr cleanups from James Antill.
* Ensure that /root gets labeled even if using the default context from Dan Walsh.
Modified: trunk/libsemanage/VERSION
===================================================================
--- trunk/libsemanage/VERSION 2007-11-05 18:54:28 UTC (rev 2668)
+++ trunk/libsemanage/VERSION 2007-11-05 18:54:58 UTC (rev 2669)
@@ -1 +1 @@
-2.0.12
+2.0.13
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ssm...@us...> - 2007-11-05 19:11:45
|
Revision: 2677
http://selinux.svn.sourceforge.net/selinux/?rev=2677&view=rev
Author: ssmalley
Date: 2007-11-05 11:11:43 -0800 (Mon, 05 Nov 2007)
Log Message:
-----------
updated libsemanage to version 2.0.14
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/VERSION
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2007-11-05 19:11:02 UTC (rev 2676)
+++ trunk/libsemanage/ChangeLog 2007-11-05 19:11:43 UTC (rev 2677)
@@ -1,3 +1,6 @@
+2.0.14 2007-11-05
+ * Call rmdir() rather than remove() on directory removal so that errno isn't polluted from Stephen Smalley.
+
2.0.13 2007-11-05
* Allow handle_unknown in base to be overridden by semanage.conf from Stephen Smalley.
Modified: trunk/libsemanage/VERSION
===================================================================
--- trunk/libsemanage/VERSION 2007-11-05 19:11:02 UTC (rev 2676)
+++ trunk/libsemanage/VERSION 2007-11-05 19:11:43 UTC (rev 2677)
@@ -1 +1 @@
-2.0.13
+2.0.14
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ssm...@us...> - 2007-12-05 19:01:41
|
Revision: 2694
http://selinux.svn.sourceforge.net/selinux/?rev=2694&view=rev
Author: ssmalley
Date: 2007-12-05 09:44:23 -0800 (Wed, 05 Dec 2007)
Log Message:
-----------
updated libsemanage to version 2.0.15
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/VERSION
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2007-12-05 17:39:30 UTC (rev 2693)
+++ trunk/libsemanage/ChangeLog 2007-12-05 17:44:23 UTC (rev 2694)
@@ -1,3 +1,7 @@
+2.0.15 2007-12-05
+ * Fix genhomedircon handling of shells and missing user context template from Dan Walsh.
+ * Copy the store path in semanage_select_store from Dan Walsh.
+
2.0.14 2007-11-05
* Call rmdir() rather than remove() on directory removal so that errno isn't polluted from Stephen Smalley.
Modified: trunk/libsemanage/VERSION
===================================================================
--- trunk/libsemanage/VERSION 2007-12-05 17:39:30 UTC (rev 2693)
+++ trunk/libsemanage/VERSION 2007-12-05 17:44:23 UTC (rev 2694)
@@ -1 +1 @@
-2.0.14
+2.0.15
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ssm...@us...> - 2008-01-24 20:29:44
|
Revision: 2753
http://selinux.svn.sourceforge.net/selinux/?rev=2753&view=rev
Author: ssmalley
Date: 2008-01-24 12:29:37 -0800 (Thu, 24 Jan 2008)
Log Message:
-----------
updated libsemanage to version 2.0.16
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/VERSION
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2008-01-24 20:15:58 UTC (rev 2752)
+++ trunk/libsemanage/ChangeLog 2008-01-24 20:29:37 UTC (rev 2753)
@@ -1,3 +1,6 @@
+2.0.16 2008-01-24
+ * Merged fix for genhomedircon handling of missing HOME_DIR or HOME_ROOT templates from Caleb Case.
+
2.0.15 2007-12-05
* Fix genhomedircon handling of shells and missing user context template from Dan Walsh.
* Copy the store path in semanage_select_store from Dan Walsh.
Modified: trunk/libsemanage/VERSION
===================================================================
--- trunk/libsemanage/VERSION 2008-01-24 20:15:58 UTC (rev 2752)
+++ trunk/libsemanage/VERSION 2008-01-24 20:29:37 UTC (rev 2753)
@@ -1 +1 @@
-2.0.15
+2.0.16
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ssm...@us...> - 2008-01-25 18:58:58
|
Revision: 2759
http://selinux.svn.sourceforge.net/selinux/?rev=2759&view=rev
Author: ssmalley
Date: 2008-01-25 10:58:56 -0800 (Fri, 25 Jan 2008)
Log Message:
-----------
updated libsemanage to version 2.0.17
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/VERSION
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2008-01-25 18:57:54 UTC (rev 2758)
+++ trunk/libsemanage/ChangeLog 2008-01-25 18:58:56 UTC (rev 2759)
@@ -1,3 +1,6 @@
+2.0.17 2008-01-25
+ * Merged second version of fix for genhomedircon handling from Caleb Case.
+
2.0.16 2008-01-24
* Merged fix for genhomedircon handling of missing HOME_DIR or HOME_ROOT templates from Caleb Case.
Modified: trunk/libsemanage/VERSION
===================================================================
--- trunk/libsemanage/VERSION 2008-01-25 18:57:54 UTC (rev 2758)
+++ trunk/libsemanage/VERSION 2008-01-25 18:58:56 UTC (rev 2759)
@@ -1 +1 @@
-2.0.16
+2.0.17
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ssm...@us...> - 2008-01-28 13:44:06
|
Revision: 2767
http://selinux.svn.sourceforge.net/selinux/?rev=2767&view=rev
Author: ssmalley
Date: 2008-01-28 05:44:02 -0800 (Mon, 28 Jan 2008)
Log Message:
-----------
updated libsemanage to version 2.0.18
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/VERSION
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2008-01-28 13:43:16 UTC (rev 2766)
+++ trunk/libsemanage/ChangeLog 2008-01-28 13:44:02 UTC (rev 2767)
@@ -1,3 +1,6 @@
+2.0.18 2008-01-28
+ * Fix spurious out of memory error reports.
+
2.0.17 2008-01-25
* Merged second version of fix for genhomedircon handling from Caleb Case.
Modified: trunk/libsemanage/VERSION
===================================================================
--- trunk/libsemanage/VERSION 2008-01-28 13:43:16 UTC (rev 2766)
+++ trunk/libsemanage/VERSION 2008-01-28 13:44:02 UTC (rev 2767)
@@ -1 +1 @@
-2.0.17
+2.0.18
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <mil...@us...> - 2008-01-31 16:06:20
|
Revision: 2773
http://selinux.svn.sourceforge.net/selinux/?rev=2773&view=rev
Author: millertc
Date: 2008-01-31 08:06:18 -0800 (Thu, 31 Jan 2008)
Log Message:
-----------
updated libsemanage to version 2.0.19
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/VERSION
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2008-01-31 16:03:50 UTC (rev 2772)
+++ trunk/libsemanage/ChangeLog 2008-01-31 16:06:18 UTC (rev 2773)
@@ -1,3 +1,6 @@
+2.0.19 2008-01-31
+ * Fix genhomedircon to not override a file context with a homedir context from Todd Miller.
+
2.0.18 2008-01-28
* Fix spurious out of memory error reports.
Modified: trunk/libsemanage/VERSION
===================================================================
--- trunk/libsemanage/VERSION 2008-01-31 16:03:50 UTC (rev 2772)
+++ trunk/libsemanage/VERSION 2008-01-31 16:06:18 UTC (rev 2773)
@@ -1 +1 @@
-2.0.18
+2.0.19
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ssm...@us...> - 2008-02-04 15:42:20
|
Revision: 2781
http://selinux.svn.sourceforge.net/selinux/?rev=2781&view=rev
Author: ssmalley
Date: 2008-02-04 07:42:17 -0800 (Mon, 04 Feb 2008)
Log Message:
-----------
updated libsemanage to version 2.0.21
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/VERSION
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2008-02-04 15:41:21 UTC (rev 2780)
+++ trunk/libsemanage/ChangeLog 2008-02-04 15:42:17 UTC (rev 2781)
@@ -1,6 +1,9 @@
+2.0.21 2008-02-04
+ * Drop the base module immediately after expanding to permit memory re-use from Stephen Smalley.
+
2.0.12 2008-02-02
* Use sepol_set_expand_consume_base to reduce peak memory usage when
- using semodule
+ using semodule from Joshua Brindle.
2.0.19 2008-01-31
* Fix genhomedircon to not override a file context with a homedir context from Todd Miller.
Modified: trunk/libsemanage/VERSION
===================================================================
--- trunk/libsemanage/VERSION 2008-02-04 15:41:21 UTC (rev 2780)
+++ trunk/libsemanage/VERSION 2008-02-04 15:42:17 UTC (rev 2781)
@@ -1 +1 @@
-2.0.20
+2.0.21
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ssm...@us...> - 2008-02-04 16:34:52
|
Revision: 2783
http://selinux.svn.sourceforge.net/selinux/?rev=2783&view=rev
Author: ssmalley
Date: 2008-02-04 08:34:48 -0800 (Mon, 04 Feb 2008)
Log Message:
-----------
updated libsemanage to version 2.0.22
Modified Paths:
--------------
trunk/libsemanage/ChangeLog
trunk/libsemanage/VERSION
Modified: trunk/libsemanage/ChangeLog
===================================================================
--- trunk/libsemanage/ChangeLog 2008-02-04 16:33:54 UTC (rev 2782)
+++ trunk/libsemanage/ChangeLog 2008-02-04 16:34:48 UTC (rev 2783)
@@ -1,3 +1,6 @@
+2.0.22 2008-02-04
+ * Free policydb before fork from Joshua Brindle.
+
2.0.21 2008-02-04
* Drop the base module immediately after expanding to permit memory re-use from Stephen Smalley.
Modified: trunk/libsemanage/VERSION
===================================================================
--- trunk/libsemanage/VERSION 2008-02-04 16:33:54 UTC (rev 2782)
+++ trunk/libsemanage/VERSION 2008-02-04 16:34:48 UTC (rev 2783)
@@ -1 +1 @@
-2.0.21
+2.0.22
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|