linux-security-module.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: dan.carpenter@oracle.com (Dan Carpenter)
To: linux-security-module@vger.kernel.org
Subject: [bug report] apparmor: add support for mapping secids and using secctxes
Date: Tue, 8 May 2018 12:39:01 +0300	[thread overview]
Message-ID: <20180508093901.GA3155@mwanda> (raw)

Hello John Johansen,

The patch c092921219d2: "apparmor: add support for mapping secids and
using secctxes" from Jul 31, 2017, leads to the following static
checker warning:

	security/apparmor/secid.c:162 apparmor_secid_to_secctx()
	warn: unsigned '*seclen' is never less than zero.

security/apparmor/secid.c
   141  int apparmor_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
   142  {
   143          /* TODO: cache secctx and ref count so we don't have to recreate */
   144          struct aa_label *label = aa_secid_to_label(secid);
   145  
   146          AA_BUG(!secdata);
   147          AA_BUG(!seclen);
   148  
   149          if (!label)
   150                  return -EINVAL;
   151  
   152          if (secdata)
   153                  *seclen = aa_label_asxprint(secdata, root_ns, label,
                                  ^^^^^^^^^^^^^^^^^
This can return -ENOMEM on error.

   154                                              FLAG_SHOW_MODE | FLAG_VIEW_SUBNS |
   155                                              FLAG_HIDDEN_UNCONFINED |
   156                                              FLAG_ABS_ROOT, GFP_ATOMIC);
   157          else
   158                  *seclen = aa_label_snxprint(NULL, 0, root_ns, label,
   159                                              FLAG_SHOW_MODE | FLAG_VIEW_SUBNS |
   160                                              FLAG_HIDDEN_UNCONFINED |
   161                                              FLAG_ABS_ROOT);
   162          if (*seclen < 0)
                    ^^^^^^^^^^^
It's strange that this warning is only showing up now...

   163                  return -ENOMEM;
   164  
   165          return 0;
   166  }

regards,
dan carpenter
--
To unsubscribe from this list: send the line "unsubscribe linux-security-module" in
the body of a message to majordomo at vger.kernel.org
More majordomo info@ http://vger.kernel.org/majordomo-info.html

             reply	other threads:[~2018-05-08  9:39 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-08  9:39 Dan Carpenter [this message]
2018-05-08 17:49 ` [bug report] apparmor: add support for mapping secids and using secctxes John Johansen

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=20180508093901.GA3155@mwanda \
    --to=dan.carpenter@oracle.com \
    --cc=linux-security-module@vger.kernel.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: link
Be 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;
as well as URLs for NNTP newsgroup(s).