* [PATCH] Smack: fix for /smack/access output, use string instead of byte
@ 2011-10-10 11:29 Jarkko Sakkinen
2011-10-11 0:21 ` Casey Schaufler
0 siblings, 1 reply; 2+ messages in thread
From: Jarkko Sakkinen @ 2011-10-10 11:29 UTC (permalink / raw)
To: Casey Schaufler; +Cc: linux-kernel, linux-security-module, Jarkko Sakkinen
Small fix for the output of access SmackFS file. Use string
is instead of byte. Makes it easier to extend API if it is
needed.
Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@intel.com>
---
security/smack/smackfs.c | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/security/smack/smackfs.c b/security/smack/smackfs.c
index 54f6e18..5498c4a 100644
--- a/security/smack/smackfs.c
+++ b/security/smack/smackfs.c
@@ -1497,6 +1497,7 @@ static ssize_t smk_write_access(struct file *file, const char __user *buf,
{
struct smack_rule rule;
char *data;
+ int res;
if (!capable(CAP_MAC_ADMIN))
return -EPERM;
@@ -1508,8 +1509,10 @@ static ssize_t smk_write_access(struct file *file, const char __user *buf,
if (count < SMK_LOADLEN || smk_parse_rule(data, &rule))
return -EINVAL;
- data[0] = smk_access(rule.smk_subject, rule.smk_object,
- rule.smk_access, NULL) == 0;
+ res = smk_access(rule.smk_subject, rule.smk_object, rule.smk_access,
+ NULL);
+ data[0] = res == 0 ? '1' : '0';
+ data[1] = '\0';
simple_transaction_set(file, 1);
return SMK_LOADLEN;
--
1.7.4.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] Smack: fix for /smack/access output, use string instead of byte
2011-10-10 11:29 [PATCH] Smack: fix for /smack/access output, use string instead of byte Jarkko Sakkinen
@ 2011-10-11 0:21 ` Casey Schaufler
0 siblings, 0 replies; 2+ messages in thread
From: Casey Schaufler @ 2011-10-11 0:21 UTC (permalink / raw)
To: Jarkko Sakkinen; +Cc: linux-kernel, linux-security-module, Casey Schaufler
On 10/10/2011 4:29 AM, Jarkko Sakkinen wrote:
> Small fix for the output of access SmackFS file. Use string
> is instead of byte. Makes it easier to extend API if it is
> needed.
>
> Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@intel.com>
Applied to git://gitorious.org/smack-next/kernel.git
> ---
> security/smack/smackfs.c | 7 +++++--
> 1 files changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/security/smack/smackfs.c b/security/smack/smackfs.c
> index 54f6e18..5498c4a 100644
> --- a/security/smack/smackfs.c
> +++ b/security/smack/smackfs.c
> @@ -1497,6 +1497,7 @@ static ssize_t smk_write_access(struct file *file, const char __user *buf,
> {
> struct smack_rule rule;
> char *data;
> + int res;
>
> if (!capable(CAP_MAC_ADMIN))
> return -EPERM;
> @@ -1508,8 +1509,10 @@ static ssize_t smk_write_access(struct file *file, const char __user *buf,
> if (count < SMK_LOADLEN || smk_parse_rule(data, &rule))
> return -EINVAL;
>
> - data[0] = smk_access(rule.smk_subject, rule.smk_object,
> - rule.smk_access, NULL) == 0;
> + res = smk_access(rule.smk_subject, rule.smk_object, rule.smk_access,
> + NULL);
> + data[0] = res == 0 ? '1' : '0';
> + data[1] = '\0';
>
> simple_transaction_set(file, 1);
> return SMK_LOADLEN;
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-10-11 0:27 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-10 11:29 [PATCH] Smack: fix for /smack/access output, use string instead of byte Jarkko Sakkinen
2011-10-11 0:21 ` Casey Schaufler
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox