From: qingtao.cao@windriver.com (Harry Ciao)
To: refpolicy@oss.tresys.com
Subject: [refpolicy] [PATCH 1/1] Fix the symbol required in the clamav_append_log interface.
Date: Thu, 1 Mar 2012 18:35:58 +0800 [thread overview]
Message-ID: <4F4F510E.1040504@windriver.com> (raw)
In-Reply-To: <1330597659-30214-1-git-send-email-qingtao.cao@windriver.com>
When the mta.pp is linked and expanded along with other modules, the
is_id_enabled function will throw out warning that "clamav_log_t" is
out-of-scoped (after I adding some printf before it returns 0). Turns
out this symbol is required by the clamav_append_log interface which in
turn is called by mte.pp.
clamav.te only defines one type for the log files, clamd_var_log_t,
which I guess should have been required in the clamav_append_log
interface. Otherwise the whole below optional block won't be properly
enabled:
optional_policy(`
clamav_stream_connect(system_mail_t)
clamav_append_log(system_mail_t)
')
Which could be surprising if people were wondering why the call of
clamav_stream_connect(system_mail_t) had not worked as expected.
Thanks,
Harry
On 03/01/2012 06:27 PM, Harry Ciao wrote:
> The label of clamd's log files is clamd_var_log_t instead of
> clamav_log_t, which in fact has not been defined by clamav.pp. If such
> un-decleared symbol is required by the clamav_append_log interface, the
> whole optional block that calls this interface would not be enabled as
> expected.
>
> Signed-off-by: Harry Ciao<qingtao.cao@windriver.com>
> ---
> clamav.if | 6 +++---
> 1 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/clamav.if b/clamav.if
> index 1f11572..bbac14a 100644
> --- a/clamav.if
> +++ b/clamav.if
> @@ -49,12 +49,12 @@ interface(`clamav_stream_connect',`
> #
> interface(`clamav_append_log',`
> gen_require(`
> - type clamav_log_t;
> + type clamd_var_log_t;
> ')
>
> logging_search_logs($1)
> - allow $1 clamav_log_t:dir list_dir_perms;
> - append_files_pattern($1, clamav_log_t, clamav_log_t)
> + allow $1 clamd_var_log_t:dir list_dir_perms;
> + append_files_pattern($1, clamd_var_log_t, clamd_var_log_t)
> ')
>
> ########################################
next prev parent reply other threads:[~2012-03-01 10:35 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-01 10:27 [refpolicy] [PATCH 1/1] Fix the symbol required in the clamav_append_log interface Harry Ciao
2012-03-01 10:35 ` Harry Ciao [this message]
2012-03-06 14:00 ` Christopher J. PeBenito
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=4F4F510E.1040504@windriver.com \
--to=qingtao.cao@windriver.com \
--cc=refpolicy@oss.tresys.com \
/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: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.