Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1607981
| From | Paul Moore <paul@paul-moore.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 20/46] selinux: Move four assignments for the variable "rc" in range_read() |
| Date | 2017-03-23 23:20 +0100 |
| Message-ID | <tojfj-lE-11@gated-at.bofh.it> (permalink) |
| References | <sZUrL-3Jh-9@gated-at.bofh.it> <sZUUN-47Q-1@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Sun, Jan 15, 2017 at 10:20 AM, SF Markus Elfring
<elfring@users.sourceforge.net> wrote:
> From: Markus Elfring <elfring@users.sourceforge.net>
> Date: Sat, 14 Jan 2017 19:55:00 +0100
>
> One local variable was set to an error code in four cases before
> a concrete error situation was detected. Thus move the corresponding
> assignments into if branches to indicate a software failure there.
>
> Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
> ---
> security/selinux/ss/policydb.c | 17 ++++++++++-------
> 1 file changed, 10 insertions(+), 7 deletions(-)
See previous comments.
> diff --git a/security/selinux/ss/policydb.c b/security/selinux/ss/policydb.c
> index a696876fc327..4cd96ce51322 100644
> --- a/security/selinux/ss/policydb.c
> +++ b/security/selinux/ss/policydb.c
> @@ -1854,10 +1854,11 @@ static int range_read(struct policydb *p, void *fp)
>
> nel = le32_to_cpu(buf[0]);
> for (i = 0; i < nel; i++) {
> - rc = -ENOMEM;
> rt = kzalloc(sizeof(*rt), GFP_KERNEL);
> - if (!rt)
> + if (!rt) {
> + rc = -ENOMEM;
> goto out;
> + }
>
> rc = next_entry(buf, fp, (sizeof(u32) * 2));
> if (rc)
> @@ -1873,24 +1874,26 @@ static int range_read(struct policydb *p, void *fp)
> } else
> rt->target_class = p->process_class;
>
> - rc = -EINVAL;
> if (!policydb_type_isvalid(p, rt->source_type) ||
> !policydb_type_isvalid(p, rt->target_type) ||
> - !policydb_class_isvalid(p, rt->target_class))
> + !policydb_class_isvalid(p, rt->target_class)) {
> + rc = -EINVAL;
> goto out;
> + }
>
> - rc = -ENOMEM;
> r = kzalloc(sizeof(*r), GFP_KERNEL);
> - if (!r)
> + if (!r) {
> + rc = -ENOMEM;
> goto out;
> + }
>
> rc = mls_read_range_helper(r, fp);
> if (rc)
> goto out;
>
> - rc = -EINVAL;
> if (!mls_range_isvalid(p, r)) {
> printk(KERN_WARNING "SELinux: rangetrans: invalid range\n");
> + rc = -EINVAL;
> goto out;
> }
>
> --
> 2.11.0
>
--
paul moore
www.paul-moore.com
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
Re: [PATCH 20/46] selinux: Move four assignments for the variable "rc" in range_read() Paul Moore <paul@paul-moore.com> - 2017-03-23 23:20 +0100
csiph-web