From: "Jason Zaman" <perfinion@gentoo.org> To: gentoo-commits@lists.gentoo.org Subject: [gentoo-commits] proj/hardened-refpolicy:next commit in: policy/modules/contrib/ Date: Wed, 17 Aug 2016 16:59:59 +0000 (UTC) [thread overview] Message-ID: <1471452415.3101fc57262e91f9e5f57a89493a32197c1ebc81.perfinion@gentoo> (raw) commit: 3101fc57262e91f9e5f57a89493a32197c1ebc81 Author: Guido Trentalancia <guido <AT> trentalancia <DOT> net> AuthorDate: Sat Aug 13 15:16:10 2016 +0000 Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org> CommitDate: Wed Aug 17 16:46:55 2016 +0000 URL: https://gitweb.gentoo.org/proj/hardened-refpolicy.git/commit/?id=3101fc57 Update the pulseaudio module for usability and ORC support Update the pulseaudio module so that it is usable (tested with latest version pulseaudio 9.0). This patch depends on a recent patch to update the gnome module. Support for the OIL Runtime Compiler (OIL) optimized code execution is added to the pulseaudio module by using a few newly created interfaces and file contexts in the gnome module. Supports the execmem permission only through a boolean which defaults to false. Thanks to Dominick Grift for the useful suggestions that permitted to create this new improved version of the patch. Signed-off-by: Guido Trentalancia <guido <AT> trentalancia.net> policy/modules/contrib/pulseaudio.fc | 1 + policy/modules/contrib/pulseaudio.if | 1 + policy/modules/contrib/pulseaudio.te | 34 ++++++++++++++++++++++++++++++---- 3 files changed, 32 insertions(+), 4 deletions(-) diff --git a/policy/modules/contrib/pulseaudio.fc b/policy/modules/contrib/pulseaudio.fc index e005030..19ade57 100644 --- a/policy/modules/contrib/pulseaudio.fc +++ b/policy/modules/contrib/pulseaudio.fc @@ -1,6 +1,7 @@ HOME_DIR/\.esd_auth -- gen_context(system_u:object_r:pulseaudio_home_t,s0) HOME_DIR/\.pulse(/.*)? gen_context(system_u:object_r:pulseaudio_home_t,s0) HOME_DIR/\.pulse-cookie -- gen_context(system_u:object_r:pulseaudio_home_t,s0) +HOME_DIR/\.config/pulse(/.*)? -- gen_context(system_u:object_r:pulseaudio_home_t,s0) /usr/bin/pulseaudio -- gen_context(system_u:object_r:pulseaudio_exec_t,s0) diff --git a/policy/modules/contrib/pulseaudio.if b/policy/modules/contrib/pulseaudio.if index ce863b0..f057680 100644 --- a/policy/modules/contrib/pulseaudio.if +++ b/policy/modules/contrib/pulseaudio.if @@ -25,6 +25,7 @@ interface(`pulseaudio_role',` pulseaudio_run($2, $1) allow $2 pulseaudio_t:process { ptrace signal_perms }; + allow $2 pulseaudio_t:fd use; ps_process_pattern($2, pulseaudio_t) allow $2 pulseaudio_home_t:dir { manage_dir_perms relabel_dir_perms }; diff --git a/policy/modules/contrib/pulseaudio.te b/policy/modules/contrib/pulseaudio.te index e7511a8..134866e 100644 --- a/policy/modules/contrib/pulseaudio.te +++ b/policy/modules/contrib/pulseaudio.te @@ -5,6 +5,14 @@ policy_module(pulseaudio, 1.8.3) # Declarations # +## <desc> +## <p> +## Allow pulseaudio to execute code in +## writable memory +## </p> +## </desc> +gen_tunable(pulseaudio_execmem, false) + attribute pulseaudio_client; attribute pulseaudio_tmpfsfile; @@ -37,7 +45,8 @@ files_pid_file(pulseaudio_var_run_t) # allow pulseaudio_t self:capability { fowner fsetid chown setgid setuid sys_nice sys_resource sys_tty_config }; -allow pulseaudio_t self:process { getcap setcap setrlimit setsched getsched signal signull }; +allow pulseaudio_t self:process { getcap getsched setcap setrlimit setsched signal signull }; + allow pulseaudio_t self:fifo_file rw_fifo_file_perms; allow pulseaudio_t self:unix_stream_socket { accept connectto listen }; allow pulseaudio_t self:unix_dgram_socket sendto; @@ -129,9 +138,15 @@ logging_send_syslog_msg(pulseaudio_t) miscfiles_read_localization(pulseaudio_t) userdom_read_user_tmpfs_files(pulseaudio_t) - +userdom_delete_user_tmpfs_files(pulseaudio_t) userdom_search_user_home_dirs(pulseaudio_t) -userdom_write_user_tmp_sockets(pulseaudio_t) +userdom_search_user_home_content(pulseaudio_t) + +userdom_manage_user_tmp_sockets(pulseaudio_t) + +tunable_policy(`pulseaudio_execmem',` + allow pulseaudio_t self:process execmem; +') tunable_policy(`use_nfs_home_dirs',` fs_manage_nfs_dirs(pulseaudio_t) @@ -146,7 +161,8 @@ tunable_policy(`use_samba_home_dirs',` ') optional_policy(` - alsa_read_rw_config(pulseaudio_t) + alsa_read_config(pulseaudio_t) + alsa_read_home_files(pulseaudio_t) ') optional_policy(` @@ -176,6 +192,15 @@ optional_policy(` ') optional_policy(` + gnome_stream_connect_gconf(pulseaudio_t) + + # OIL Runtime Compiler (ORC) optimized code execution + allow pulseaudio_t gstreamer_orcexec_t:file { manage_file_perms mmap_file_perms }; + gnome_user_runtime_filetrans_gstreamer_orcexec(pulseaudio_t, file) + gnome_home_filetrans_gstreamer_orcexec(pulseaudio_t, file) +') + +optional_policy(` rtkit_scheduled(pulseaudio_t) ') @@ -186,6 +211,7 @@ optional_policy(` ') optional_policy(` + udev_read_pid_files(pulseaudio_t) udev_read_state(pulseaudio_t) udev_read_db(pulseaudio_t) ')
WARNING: multiple messages have this Message-ID (diff)
From: "Jason Zaman" <perfinion@gentoo.org> To: gentoo-commits@lists.gentoo.org Subject: [gentoo-commits] proj/hardened-refpolicy:master commit in: policy/modules/contrib/ Date: Wed, 17 Aug 2016 16:59:04 +0000 (UTC) [thread overview] Message-ID: <1471452415.3101fc57262e91f9e5f57a89493a32197c1ebc81.perfinion@gentoo> (raw) Message-ID: <20160817165904.oCnu0UCeSas56LZuKxdMkR1dLBxaxTpmKFXlsh5OhO8@z> (raw) commit: 3101fc57262e91f9e5f57a89493a32197c1ebc81 Author: Guido Trentalancia <guido <AT> trentalancia <DOT> net> AuthorDate: Sat Aug 13 15:16:10 2016 +0000 Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org> CommitDate: Wed Aug 17 16:46:55 2016 +0000 URL: https://gitweb.gentoo.org/proj/hardened-refpolicy.git/commit/?id=3101fc57 Update the pulseaudio module for usability and ORC support Update the pulseaudio module so that it is usable (tested with latest version pulseaudio 9.0). This patch depends on a recent patch to update the gnome module. Support for the OIL Runtime Compiler (OIL) optimized code execution is added to the pulseaudio module by using a few newly created interfaces and file contexts in the gnome module. Supports the execmem permission only through a boolean which defaults to false. Thanks to Dominick Grift for the useful suggestions that permitted to create this new improved version of the patch. Signed-off-by: Guido Trentalancia <guido <AT> trentalancia.net> policy/modules/contrib/pulseaudio.fc | 1 + policy/modules/contrib/pulseaudio.if | 1 + policy/modules/contrib/pulseaudio.te | 34 ++++++++++++++++++++++++++++++---- 3 files changed, 32 insertions(+), 4 deletions(-) diff --git a/policy/modules/contrib/pulseaudio.fc b/policy/modules/contrib/pulseaudio.fc index e005030..19ade57 100644 --- a/policy/modules/contrib/pulseaudio.fc +++ b/policy/modules/contrib/pulseaudio.fc @@ -1,6 +1,7 @@ HOME_DIR/\.esd_auth -- gen_context(system_u:object_r:pulseaudio_home_t,s0) HOME_DIR/\.pulse(/.*)? gen_context(system_u:object_r:pulseaudio_home_t,s0) HOME_DIR/\.pulse-cookie -- gen_context(system_u:object_r:pulseaudio_home_t,s0) +HOME_DIR/\.config/pulse(/.*)? -- gen_context(system_u:object_r:pulseaudio_home_t,s0) /usr/bin/pulseaudio -- gen_context(system_u:object_r:pulseaudio_exec_t,s0) diff --git a/policy/modules/contrib/pulseaudio.if b/policy/modules/contrib/pulseaudio.if index ce863b0..f057680 100644 --- a/policy/modules/contrib/pulseaudio.if +++ b/policy/modules/contrib/pulseaudio.if @@ -25,6 +25,7 @@ interface(`pulseaudio_role',` pulseaudio_run($2, $1) allow $2 pulseaudio_t:process { ptrace signal_perms }; + allow $2 pulseaudio_t:fd use; ps_process_pattern($2, pulseaudio_t) allow $2 pulseaudio_home_t:dir { manage_dir_perms relabel_dir_perms }; diff --git a/policy/modules/contrib/pulseaudio.te b/policy/modules/contrib/pulseaudio.te index e7511a8..134866e 100644 --- a/policy/modules/contrib/pulseaudio.te +++ b/policy/modules/contrib/pulseaudio.te @@ -5,6 +5,14 @@ policy_module(pulseaudio, 1.8.3) # Declarations # +## <desc> +## <p> +## Allow pulseaudio to execute code in +## writable memory +## </p> +## </desc> +gen_tunable(pulseaudio_execmem, false) + attribute pulseaudio_client; attribute pulseaudio_tmpfsfile; @@ -37,7 +45,8 @@ files_pid_file(pulseaudio_var_run_t) # allow pulseaudio_t self:capability { fowner fsetid chown setgid setuid sys_nice sys_resource sys_tty_config }; -allow pulseaudio_t self:process { getcap setcap setrlimit setsched getsched signal signull }; +allow pulseaudio_t self:process { getcap getsched setcap setrlimit setsched signal signull }; + allow pulseaudio_t self:fifo_file rw_fifo_file_perms; allow pulseaudio_t self:unix_stream_socket { accept connectto listen }; allow pulseaudio_t self:unix_dgram_socket sendto; @@ -129,9 +138,15 @@ logging_send_syslog_msg(pulseaudio_t) miscfiles_read_localization(pulseaudio_t) userdom_read_user_tmpfs_files(pulseaudio_t) - +userdom_delete_user_tmpfs_files(pulseaudio_t) userdom_search_user_home_dirs(pulseaudio_t) -userdom_write_user_tmp_sockets(pulseaudio_t) +userdom_search_user_home_content(pulseaudio_t) + +userdom_manage_user_tmp_sockets(pulseaudio_t) + +tunable_policy(`pulseaudio_execmem',` + allow pulseaudio_t self:process execmem; +') tunable_policy(`use_nfs_home_dirs',` fs_manage_nfs_dirs(pulseaudio_t) @@ -146,7 +161,8 @@ tunable_policy(`use_samba_home_dirs',` ') optional_policy(` - alsa_read_rw_config(pulseaudio_t) + alsa_read_config(pulseaudio_t) + alsa_read_home_files(pulseaudio_t) ') optional_policy(` @@ -176,6 +192,15 @@ optional_policy(` ') optional_policy(` + gnome_stream_connect_gconf(pulseaudio_t) + + # OIL Runtime Compiler (ORC) optimized code execution + allow pulseaudio_t gstreamer_orcexec_t:file { manage_file_perms mmap_file_perms }; + gnome_user_runtime_filetrans_gstreamer_orcexec(pulseaudio_t, file) + gnome_home_filetrans_gstreamer_orcexec(pulseaudio_t, file) +') + +optional_policy(` rtkit_scheduled(pulseaudio_t) ') @@ -186,6 +211,7 @@ optional_policy(` ') optional_policy(` + udev_read_pid_files(pulseaudio_t) udev_read_state(pulseaudio_t) udev_read_db(pulseaudio_t) ')
next reply other threads:[~2016-08-17 17:00 UTC|newest] Thread overview: 414+ messages / expand[flat|nested] mbox.gz Atom feed top 2016-08-17 16:59 Jason Zaman [this message] 2016-08-17 16:59 ` [gentoo-commits] proj/hardened-refpolicy:master commit in: policy/modules/contrib/ Jason Zaman -- strict thread matches above, loose matches on Subject: below -- 2017-09-10 14:03 [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-09-10 14:03 Jason Zaman 2017-09-10 14:03 Jason Zaman 2017-09-10 14:03 Jason Zaman 2017-09-10 14:03 Jason Zaman 2017-09-10 14:03 Jason Zaman 2017-09-10 14:03 Jason Zaman 2017-09-10 14:03 Jason Zaman 2017-09-10 14:03 Jason Zaman 2017-09-10 14:03 Jason Zaman 2017-09-10 14:03 Jason Zaman 2017-09-10 14:03 Jason Zaman 2017-05-25 17:08 Jason Zaman 2017-05-25 17:08 Jason Zaman 2017-05-25 17:08 Jason Zaman 2017-05-25 17:08 Jason Zaman 2017-05-25 17:08 Jason Zaman 2017-05-25 17:08 Jason Zaman 2017-05-25 17:08 Jason Zaman 2017-05-25 17:08 Jason Zaman 2017-05-25 17:08 Jason Zaman 2017-05-25 17:08 Jason Zaman 2017-05-25 17:08 Jason Zaman 2017-05-25 17:08 Jason Zaman 2017-05-25 17:08 Jason Zaman 2017-05-25 17:08 Jason Zaman 2017-05-25 17:08 Jason Zaman 2017-05-25 17:04 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-05-25 17:08 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-05-07 17:47 Jason Zaman 2017-05-07 17:47 Jason Zaman 2017-05-07 17:47 Jason Zaman 2017-05-07 17:47 Jason Zaman 2017-05-07 17:47 Jason Zaman 2017-05-07 17:47 Jason Zaman 2017-05-07 17:47 Jason Zaman 2017-05-07 17:47 Jason Zaman 2017-05-07 17:47 Jason Zaman 2017-05-07 17:47 Jason Zaman 2017-05-07 17:47 Jason Zaman 2017-05-07 17:47 Jason Zaman 2017-05-07 17:47 Jason Zaman 2017-05-07 17:47 Jason Zaman 2017-05-07 17:41 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-05-07 17:47 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-05-07 16:09 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-05-07 17:47 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-05-07 16:09 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-05-07 17:47 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-05-07 16:09 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-05-07 17:47 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-05-07 16:09 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-05-07 17:47 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-04-30 9:40 Jason Zaman 2017-04-30 9:40 Jason Zaman 2017-04-30 9:40 Jason Zaman 2017-04-30 9:40 Jason Zaman 2017-04-30 9:40 Jason Zaman 2017-04-30 9:40 Jason Zaman 2017-04-30 9:40 Jason Zaman 2017-04-30 9:40 Jason Zaman 2017-04-30 9:40 Jason Zaman 2017-04-30 9:40 Jason Zaman 2017-04-30 9:40 Jason Zaman 2017-04-30 9:40 Jason Zaman 2017-04-30 9:40 Jason Zaman 2017-04-30 9:40 Jason Zaman 2017-04-30 9:40 Jason Zaman 2017-04-30 9:32 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-04-30 9:40 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-04-30 9:32 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-04-30 9:40 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-04-30 9:32 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-04-30 9:40 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-04-30 9:32 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-04-30 9:40 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-04-30 9:32 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-04-30 9:40 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-04-30 9:32 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-04-30 9:40 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-03-30 17:09 Jason Zaman 2017-03-30 17:09 Jason Zaman 2017-03-30 17:09 Jason Zaman 2017-03-30 17:09 Jason Zaman 2017-03-30 17:09 Jason Zaman 2017-03-30 17:09 Jason Zaman 2017-03-30 17:09 Jason Zaman 2017-03-30 17:09 Jason Zaman 2017-03-30 17:09 Jason Zaman 2017-03-30 17:09 Jason Zaman 2017-03-30 17:09 Jason Zaman 2017-03-30 17:09 Jason Zaman 2017-03-30 17:09 Jason Zaman 2017-03-30 17:06 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-03-30 17:09 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-03-30 17:06 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-03-30 17:09 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-03-30 17:06 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-03-30 17:09 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-03-30 17:06 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-03-30 17:09 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-03-30 17:06 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-03-30 17:09 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-02-27 11:40 Jason Zaman 2017-02-27 11:40 Jason Zaman 2017-02-27 11:40 Jason Zaman 2017-02-27 11:40 Jason Zaman 2017-02-27 11:40 Jason Zaman 2017-02-27 11:40 Jason Zaman 2017-02-27 11:40 Jason Zaman 2017-02-27 11:40 Jason Zaman 2017-02-27 10:50 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-02-27 11:40 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-02-25 16:58 Jason Zaman 2017-02-25 16:58 Jason Zaman 2017-02-25 16:58 Jason Zaman 2017-02-25 16:58 Jason Zaman 2017-02-25 16:58 Jason Zaman 2017-02-25 16:58 Jason Zaman 2017-02-25 16:58 Jason Zaman 2017-02-25 16:58 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-02-25 16:58 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-02-25 15:28 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-02-25 16:58 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-02-25 14:59 Jason Zaman 2017-02-25 14:59 Jason Zaman 2017-02-25 14:59 Jason Zaman 2017-02-25 14:59 Jason Zaman 2017-02-25 14:59 Jason Zaman 2017-02-25 14:59 Jason Zaman 2017-02-25 14:59 Jason Zaman 2017-02-25 14:59 Jason Zaman 2017-02-25 14:59 Jason Zaman 2017-02-25 14:59 Jason Zaman 2017-02-25 14:59 Jason Zaman 2017-02-25 14:51 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-02-25 14:59 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-02-25 14:51 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-02-25 14:59 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-02-25 14:51 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-02-25 14:59 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-02-17 8:50 Jason Zaman 2017-02-17 8:50 Jason Zaman 2017-02-17 8:50 Jason Zaman 2017-02-17 8:50 Jason Zaman 2017-02-17 8:50 Jason Zaman 2017-02-17 8:50 Jason Zaman 2017-02-17 8:50 Jason Zaman 2017-02-17 8:50 Jason Zaman 2017-02-17 8:50 Jason Zaman 2017-02-17 8:50 Jason Zaman 2017-02-17 8:50 Jason Zaman 2017-02-17 8:50 Jason Zaman 2017-02-17 8:44 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-02-17 8:50 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-02-17 8:44 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-02-17 8:50 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-02-17 8:44 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-02-17 8:50 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-02-17 8:44 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-02-17 8:50 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-02-17 8:44 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-02-17 8:50 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-02-17 8:44 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2017-02-17 8:50 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2017-01-01 16:47 Jason Zaman 2017-01-01 16:47 Jason Zaman 2017-01-01 16:47 Jason Zaman 2017-01-01 16:47 Jason Zaman 2017-01-01 16:47 Jason Zaman 2017-01-01 16:37 Jason Zaman 2017-01-01 16:37 Jason Zaman 2017-01-01 16:37 Jason Zaman 2017-01-01 16:37 Jason Zaman 2017-01-01 16:37 Jason Zaman 2016-12-08 5:03 Jason Zaman 2016-12-08 5:03 Jason Zaman 2016-12-08 5:03 Jason Zaman 2016-12-08 5:03 Jason Zaman 2016-12-08 5:03 Jason Zaman 2016-12-08 5:03 Jason Zaman 2016-12-08 4:47 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-12-08 5:03 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-12-06 15:10 Jason Zaman 2016-12-06 15:10 Jason Zaman 2016-12-06 15:10 Jason Zaman 2016-12-06 15:10 Jason Zaman 2016-12-06 15:10 Jason Zaman 2016-12-06 15:10 Jason Zaman 2016-12-06 14:25 Jason Zaman 2016-12-06 14:25 Jason Zaman 2016-12-06 14:25 Jason Zaman 2016-12-06 14:25 Jason Zaman 2016-12-06 14:25 Jason Zaman 2016-12-06 14:25 Jason Zaman 2016-12-06 14:25 Jason Zaman 2016-12-06 14:25 Jason Zaman 2016-12-06 14:25 Jason Zaman 2016-12-06 14:21 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-12-06 14:25 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-12-06 13:39 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-12-06 14:25 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-12-06 13:39 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-12-06 14:25 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-12-06 13:39 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-12-06 14:25 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-12-06 13:39 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-12-06 14:25 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-12-06 13:39 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-12-06 14:25 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-12-06 13:39 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-12-06 14:25 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-12-06 13:39 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-12-06 14:25 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-12-06 13:39 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-12-06 14:25 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-12-06 13:39 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-12-06 14:25 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-10-26 11:08 Jason Zaman 2016-10-26 11:08 Jason Zaman 2016-10-26 11:08 Jason Zaman 2016-10-26 11:08 Jason Zaman 2016-10-26 11:08 Jason Zaman 2016-10-26 11:08 Jason Zaman 2016-10-26 11:08 Jason Zaman 2016-10-24 17:14 Sven Vermeulen 2016-10-24 17:14 Sven Vermeulen 2016-10-24 17:14 Sven Vermeulen 2016-10-24 17:14 Sven Vermeulen 2016-10-24 17:14 Sven Vermeulen 2016-10-24 16:56 [gentoo-commits] proj/hardened-refpolicy:master " Sven Vermeulen 2016-10-24 17:13 ` [gentoo-commits] proj/hardened-refpolicy:next " Sven Vermeulen 2016-10-24 16:03 Sven Vermeulen 2016-10-24 16:03 Sven Vermeulen 2016-10-24 16:03 Sven Vermeulen 2016-10-24 16:03 Sven Vermeulen 2016-10-24 16:03 Sven Vermeulen 2016-10-24 16:03 Sven Vermeulen 2016-10-24 16:03 Sven Vermeulen 2016-10-24 16:02 [gentoo-commits] proj/hardened-refpolicy:swift " Sven Vermeulen 2016-10-24 16:03 ` [gentoo-commits] proj/hardened-refpolicy:next " Sven Vermeulen 2016-10-24 16:02 [gentoo-commits] proj/hardened-refpolicy:swift " Sven Vermeulen 2016-10-24 16:03 ` [gentoo-commits] proj/hardened-refpolicy:next " Sven Vermeulen 2016-10-24 16:02 [gentoo-commits] proj/hardened-refpolicy:swift " Sven Vermeulen 2016-10-24 16:03 ` [gentoo-commits] proj/hardened-refpolicy:next " Sven Vermeulen 2016-10-24 16:02 [gentoo-commits] proj/hardened-refpolicy:master " Sven Vermeulen 2016-10-24 16:03 ` [gentoo-commits] proj/hardened-refpolicy:next " Sven Vermeulen 2016-10-24 15:44 Jason Zaman 2016-10-03 6:26 Jason Zaman 2016-10-03 6:26 Jason Zaman 2016-10-03 6:26 Jason Zaman 2016-10-03 6:26 Jason Zaman 2016-10-03 6:26 Jason Zaman 2016-10-03 6:26 Jason Zaman 2016-10-03 6:26 Jason Zaman 2016-10-03 6:26 Jason Zaman 2016-10-03 6:26 Jason Zaman 2016-10-03 6:26 Jason Zaman 2016-10-03 6:26 Jason Zaman 2016-10-03 6:26 Jason Zaman 2016-10-03 6:26 Jason Zaman 2016-10-03 6:26 Jason Zaman 2016-10-03 6:20 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-10-03 6:26 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-10-03 6:20 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-10-03 6:26 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-10-03 6:20 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-10-03 6:26 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-10-03 6:20 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-10-03 6:26 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-10-03 6:20 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-10-03 6:26 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-10-03 6:20 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-10-03 6:26 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-10-03 6:20 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-10-03 6:26 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-08-17 16:59 Jason Zaman 2016-08-17 16:59 Jason Zaman 2016-08-17 16:59 Jason Zaman 2016-08-17 16:59 Jason Zaman 2016-08-17 16:59 Jason Zaman 2016-08-17 16:59 Jason Zaman 2016-08-17 16:59 Jason Zaman 2016-08-17 16:59 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-08-17 16:59 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-08-17 16:59 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-08-17 16:59 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-08-17 16:59 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-08-17 16:59 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-08-13 18:35 Jason Zaman 2016-08-13 18:35 Jason Zaman 2016-08-13 18:35 Jason Zaman 2016-08-13 18:35 Jason Zaman 2016-08-13 18:35 Jason Zaman 2016-08-13 18:35 Jason Zaman 2016-08-13 18:35 Jason Zaman 2016-08-13 18:35 Jason Zaman 2016-08-13 18:35 Jason Zaman 2016-08-13 18:35 Jason Zaman 2016-08-13 18:35 Jason Zaman 2016-08-13 18:35 Jason Zaman 2016-08-13 18:32 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-08-13 18:35 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-08-13 18:32 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-08-13 18:35 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-08-13 18:32 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-08-13 18:35 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-08-13 18:32 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-08-13 18:35 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-08-13 18:32 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-08-13 18:35 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-08-13 18:32 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2016-08-13 18:35 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2016-05-26 19:28 Jason Zaman 2016-05-26 19:28 Jason Zaman 2016-05-26 17:39 Jason Zaman 2016-05-26 17:39 Jason Zaman 2016-05-26 15:54 Jason Zaman 2016-05-26 15:54 Jason Zaman 2015-12-18 4:14 Jason Zaman 2015-12-18 3:49 Jason Zaman 2015-12-17 18:52 Jason Zaman 2015-12-17 18:49 Jason Zaman 2015-12-17 18:49 Jason Zaman 2015-12-17 18:49 Jason Zaman 2015-12-17 18:49 Jason Zaman 2015-12-17 18:49 Jason Zaman 2015-12-17 18:49 Jason Zaman 2015-12-17 18:49 Jason Zaman 2015-12-17 18:49 Jason Zaman 2015-12-17 18:49 Jason Zaman 2015-12-17 18:49 Jason Zaman 2015-12-17 18:49 Jason Zaman 2015-12-17 16:10 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-12-17 18:49 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-12-17 16:10 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-12-17 18:49 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-12-17 16:10 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-12-17 18:49 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-12-17 16:10 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-12-17 18:49 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-12-17 16:10 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-12-17 18:49 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-12-17 16:10 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-12-17 18:49 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-11-23 13:42 Jason Zaman 2015-11-22 10:14 Jason Zaman 2015-11-22 10:14 Jason Zaman 2015-10-26 5:48 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-10-26 5:36 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-10-26 5:48 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-10-26 5:36 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-10-26 5:36 Jason Zaman 2015-10-22 13:44 Jason Zaman 2015-10-17 17:02 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-10-17 17:02 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-10-17 17:02 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-10-17 17:02 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-10-17 17:02 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-10-17 17:02 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-10-17 17:02 Jason Zaman 2015-10-11 10:48 Jason Zaman 2015-10-11 10:48 Jason Zaman 2015-09-20 7:00 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-10-11 10:48 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-09-06 11:25 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-09-06 11:23 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-09-06 11:25 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-09-06 11:23 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-09-06 11:23 Jason Zaman 2015-09-06 11:23 Jason Zaman 2015-09-02 14:41 Jason Zaman 2015-09-02 14:41 Jason Zaman 2015-08-27 19:52 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-08-27 19:52 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-08-27 19:11 Jason Zaman 2015-08-27 19:11 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-08-27 19:11 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-08-27 19:11 Jason Zaman 2015-08-27 19:11 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-08-27 19:11 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-08-27 19:11 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-08-27 19:11 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-08-27 19:11 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-08-27 19:11 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-08-27 18:58 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-08-26 6:46 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-08-27 18:00 Jason Zaman 2015-08-27 17:49 Jason Zaman 2015-08-27 13:26 Jason Zaman 2015-08-26 6:46 Jason Zaman 2015-08-26 6:46 Jason Zaman 2015-08-26 6:46 Jason Zaman 2015-08-26 6:46 Jason Zaman 2015-08-23 4:13 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-08-26 6:46 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-08-02 19:06 Jason Zaman 2015-08-02 19:06 Jason Zaman 2015-08-02 19:06 Jason Zaman 2015-08-02 19:06 Jason Zaman 2015-08-02 19:06 Jason Zaman 2015-08-02 19:06 Jason Zaman 2015-07-31 14:15 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-08-02 19:06 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-07-13 21:45 Jason Zaman 2015-07-13 21:45 Jason Zaman 2015-07-13 21:45 Jason Zaman 2015-07-13 21:45 Jason Zaman 2015-07-13 21:45 Jason Zaman 2015-07-13 21:45 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-07-13 21:45 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-07-13 21:45 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-07-13 21:45 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-07-13 20:59 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-07-13 21:45 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-07-11 19:57 Jason Zaman 2015-07-11 19:57 Jason Zaman 2015-07-11 19:57 Jason Zaman 2015-07-11 19:57 Jason Zaman 2015-07-11 19:57 Jason Zaman 2015-07-11 19:55 Jason Zaman 2015-07-11 19:52 Jason Zaman 2015-07-11 19:52 Jason Zaman 2015-07-11 19:52 Jason Zaman 2015-07-11 19:52 Jason Zaman 2015-07-11 19:52 Jason Zaman 2015-07-11 19:52 Jason Zaman 2015-07-02 19:28 Jason Zaman 2015-07-02 18:37 Jason Zaman 2015-07-02 18:07 Jason Zaman 2015-07-02 18:07 Jason Zaman 2015-07-02 18:07 Jason Zaman 2015-07-02 18:07 Jason Zaman 2015-07-02 17:07 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-07-02 18:07 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-05-11 22:57 Jason Zaman 2015-05-11 22:10 Jason Zaman 2015-05-11 21:49 Jason Zaman 2015-03-29 10:01 Jason Zaman 2015-03-29 10:01 Jason Zaman 2015-03-29 10:01 Jason Zaman 2015-03-29 10:01 Jason Zaman 2015-03-29 9:59 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-03-29 10:01 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-03-25 16:01 Jason Zaman 2015-03-25 16:01 Jason Zaman 2015-03-25 16:01 Jason Zaman 2015-03-25 16:01 Jason Zaman 2015-03-25 16:01 Jason Zaman 2015-03-25 16:01 Jason Zaman 2015-03-25 16:01 Jason Zaman 2015-03-25 16:01 Jason Zaman 2015-03-25 16:01 Jason Zaman 2015-03-25 16:01 Jason Zaman 2015-03-25 16:01 Jason Zaman 2015-03-25 15:55 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-03-25 16:01 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-03-25 2:17 Jason Zaman 2015-03-24 13:25 Jason Zaman 2015-03-24 13:25 Jason Zaman 2015-03-23 14:58 Jason Zaman 2015-03-23 14:58 Jason Zaman 2015-03-23 14:58 Jason Zaman 2015-03-04 17:03 Sven Vermeulen 2015-03-04 17:03 Sven Vermeulen 2015-02-24 17:11 Jason Zaman 2015-02-24 17:11 Jason Zaman 2015-02-24 17:11 Jason Zaman 2015-02-24 17:11 Jason Zaman 2015-02-24 17:11 Jason Zaman 2015-02-24 17:11 Jason Zaman 2015-02-24 17:11 Jason Zaman 2015-02-24 17:11 Jason Zaman 2015-02-09 18:35 [gentoo-commits] proj/hardened-refpolicy:adminroles " Jason Zaman 2015-02-09 18:33 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-02-09 18:33 Jason Zaman 2015-01-29 9:12 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-01-29 8:38 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-01-29 9:12 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-01-29 8:38 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-01-29 8:38 Jason Zaman 2015-01-29 8:38 Jason Zaman 2015-01-29 8:38 Jason Zaman 2015-01-29 6:51 Jason Zaman 2015-01-29 6:51 Jason Zaman 2015-01-29 6:51 Jason Zaman 2015-01-29 6:51 Jason Zaman 2015-01-29 6:51 Jason Zaman 2015-01-26 5:59 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2015-01-29 6:51 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2015-01-25 13:46 Sven Vermeulen 2015-01-25 13:46 Sven Vermeulen 2015-01-25 13:46 Sven Vermeulen 2015-01-25 13:46 Sven Vermeulen 2015-01-25 13:46 Sven Vermeulen 2015-01-20 15:08 Jason Zaman 2015-01-20 15:08 Jason Zaman 2015-01-20 15:08 Jason Zaman 2015-01-20 15:08 Jason Zaman 2015-01-20 15:08 Jason Zaman 2014-12-21 12:49 [gentoo-commits] proj/hardened-refpolicy:master " Jason Zaman 2014-12-20 15:49 ` [gentoo-commits] proj/hardened-refpolicy:next " Jason Zaman 2014-11-28 11:16 Sven Vermeulen 2014-11-28 10:44 Sven Vermeulen 2014-11-28 9:40 [gentoo-commits] proj/hardened-refpolicy:master " Sven Vermeulen 2014-11-28 10:04 ` [gentoo-commits] proj/hardened-refpolicy:next " Sven Vermeulen 2014-11-23 13:22 [gentoo-commits] proj/hardened-refpolicy:master " Sven Vermeulen 2014-11-28 10:04 ` [gentoo-commits] proj/hardened-refpolicy:next " Sven Vermeulen
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=1471452415.3101fc57262e91f9e5f57a89493a32197c1ebc81.perfinion@gentoo \ --to=perfinion@gentoo.org \ --cc=gentoo-commits@lists.gentoo.org \ --cc=gentoo-dev@lists.gentoo.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox