diff --git a/checkpolicy/ChangeLog b/checkpolicy/ChangeLog index 7dc7d760..ea0979ce 100644 --- a/checkpolicy/ChangeLog +++ b/checkpolicy/ChangeLog @@ -1,3 +1,8 @@ +2.1.12 2013-02-01 + * Fix errors found by coverity + * implement default type policy syntax + * Free allocated memory when clean up / exit. + 2.1.11 2012-09-13 * fd leak reading policy * check return code on ebitmap_set_bit diff --git a/checkpolicy/VERSION b/checkpolicy/VERSION index a39c0b78..348fc11e 100644 --- a/checkpolicy/VERSION +++ b/checkpolicy/VERSION @@ -1 +1 @@ -2.1.11 +2.1.12 diff --git a/libselinux/ChangeLog b/libselinux/ChangeLog index 0e5def7f..448d9f1b 100644 --- a/libselinux/ChangeLog +++ b/libselinux/ChangeLog @@ -1,3 +1,32 @@ +2.1.13 2013-02-01 + * audit2why: make sure path is nul terminated + * utils: new file context regex compiler + * label_file: use precompiled filecontext when possible + * do not leak mmapfd + * sefcontontext_compile: Add error handling to help debug problems in libsemanage. + * man: make selinux.8 mention service man pages + * audit2why: Fix segfault if finish() called twice + * audit2why: do not leak on multiple init() calls + * mode_to_security_class: interface to translate a mode_t in to a security class + * audit2why: Cleanup audit2why analysys function + * man: Fix program synopsis and function prototypes in man pages + * man: Fix man pages formatting + * man: Fix typo in man page + * man: Add references and man page links to _raw function variants + * Use ENOTSUP instead of EOPNOTSUPP for getfilecon functions + * man: context_new(3): fix the return value description + * selinux_status_open: handle error from sysconf + * selinux_status_open: do not leak statusfd on exec + * Fix errors found by coverity + * Change boooleans.subs to booleans.subs_dist. + * optimize set*con functions + * pkg-config do not specifc ruby version + * unmap file contexts on selabel_close() + * do not leak file contexts with mmap'd backend + * sefcontext_compile: do not leak fd on error + * matchmediacon: do not leak fd + * src/label_android_property: do not leak fd on error + 2.1.12 2012-09-13 * Add support for lxc_contexts_path * utils: add service to getdefaultcon diff --git a/libselinux/VERSION b/libselinux/VERSION index 348fc11e..ea4bd0fb 100644 --- a/libselinux/VERSION +++ b/libselinux/VERSION @@ -1 +1 @@ -2.1.12 +2.1.13 diff --git a/libsemanage/ChangeLog b/libsemanage/ChangeLog index 8ed0b5c1..060787b3 100644 --- a/libsemanage/ChangeLog +++ b/libsemanage/ChangeLog @@ -1,3 +1,18 @@ +2.1.10 2013-02-01 + * Add sefcontext_compile to compile regex everytime policy is rebuilt + * Cleanup/fix enable/disable/remove module. + * redo genhomedircon minuid + * fixes from coverity + * semanage_store: do not leak memory in semanage_exec_prog + * genhomedircon: remove useless conditional in get_home_dirs + * genhomedircon: double free in get_home_dirs + * fcontext_record: do not leak on error in semanage_fcontext_key_create + * genhomedircon: do not leak on failure in write_gen_home_dir_context + * semanage_store: do not leak fd + * genhomedircon: do not leak shells list + * semanage_store: do not leak on strdup failure + * semanage_store: rewrite for readability + 2.1.9 2012-09-13 * libsemanage: do not set soname needlessly * libsemanage: remove PYTHONLIBDIR and ruby equivalent diff --git a/libsemanage/VERSION b/libsemanage/VERSION index 63a1a1ca..8dbb0f26 100644 --- a/libsemanage/VERSION +++ b/libsemanage/VERSION @@ -1 +1 @@ -2.1.9 +2.1.10 diff --git a/libsepol/ChangeLog b/libsepol/ChangeLog index 75bf7b4b..54f63c77 100644 --- a/libsepol/ChangeLog +++ b/libsepol/ChangeLog @@ -1,3 +1,9 @@ +2.1.9 2013-02-01 + * filename_trans: use some better sorting to compare and merge + * coverity fixes + * implement default type policy syntax + * Fix memory leak issues found by Klocwork + 2.1.8 2011-09-13 * fix neverallow checking on attributes * Move context_copy() after switch block in ocontext_copy_*(). diff --git a/libsepol/VERSION b/libsepol/VERSION index ebf14b46..63a1a1ca 100644 --- a/libsepol/VERSION +++ b/libsepol/VERSION @@ -1 +1 @@ -2.1.8 +2.1.9 diff --git a/policycoreutils/ChangeLog b/policycoreutils/ChangeLog index 0ce4bf6b..7811613f 100644 --- a/policycoreutils/ChangeLog +++ b/policycoreutils/ChangeLog @@ -1,3 +1,38 @@ +2.1.14 2013-02-01 + * setfiles: estimate percent progress + * load_policy: make link at the destination directory + * Rebuild polgen.glade with glade-3 + * sepolicy: new command to unite small utilities + * sepolicy: Update Makefiles and po files + * sandbox: use sepolicy to look for sandbox_t + * gui: switch to use sepolicy + * gui: sepolgen: use sepolicy to generate + * semanage: use sepolicy for boolean dictionary + * add po file configuration information + * po: stop running update-po on all + * semanage: seobject verify policy types before allowing you to assign them. + * gui: Start using Popen, instead of os.spawnl + * sandbox: Copy /var/tmp to /tmp as they are the same inside + * qualifier to shred content + * semanage: Fix handling of boolean_sub names when using the -F flag + * semanage: man: roles instead of role + * gui: system-config-selinux: Catch no DISPLAY= error + * setfiles: print error if no default label found + * semanage: list logins file entries in semanage login -l + * semanage: good error message is sepolgen python module missing + * gui: system-config-selinux: do not use lokkit + * secon: add support for setrans color information in prompt output + * restorecond: remove /etc/mtab from default list + * gui: If you are not able to read enforcemode set it to False + * genhomedircon: regenerate genhomedircon more often + * restorecond: Add /etc/udpatedb.conf to restorecond.conf + * genhomedircon generation to allow spec file to pass in SEMODULE_PATH + * fixfiles: relabel only after specific date + * po: update translations + * sandbox: seunshare: do not reassign realloc value + * seunshare: do checking on setfsuid + * sestatus: rewrite to shut up coverity + 2.1.13 2012-09-13 * genhomedircon: manual page improvements * setfiles/restorecon minor improvements diff --git a/policycoreutils/VERSION b/policycoreutils/VERSION index ea4bd0fb..1b5105df 100644 --- a/policycoreutils/VERSION +++ b/policycoreutils/VERSION @@ -1 +1 @@ -2.1.13 +2.1.14 diff --git a/sepolgen/ChangeLog b/sepolgen/ChangeLog index e67c5575..bcecbae4 100644 --- a/sepolgen/ChangeLog +++ b/sepolgen/ChangeLog @@ -1,3 +1,8 @@ +1.1.9 2013-02-01 + * audit.py: Handle times in foreign locals for audit2allow -b + * Use refpolicy_makefile() instead of hardcoding Makefile path + * understand role attributes + 1.1.8 2012-09-13 * Allow returning of bastard matches * sepolgen: return and output constraint violation information diff --git a/sepolgen/VERSION b/sepolgen/VERSION index 18efdb9a..512a1faa 100644 --- a/sepolgen/VERSION +++ b/sepolgen/VERSION @@ -1 +1 @@ -1.1.8 +1.1.9