linux-security-module.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Denis Efremov <efremov@ispras.ru>
To: Stephen Smalley <sds@tycho.nsa.gov>
Cc: Denis Efremov <efremov@ispras.ru>,
	Casey Schaufler <casey@schaufler-ca.com>,
	"Eric W. Biederman" <ebiederm@xmission.com>,
	Eric Paris <eparis@parisplace.org>,
	Kees Cook <keescook@chromium.org>,
	John Johansen <john.johansen@canonical.com>,
	James Morris <jmorris@namei.org>,
	"Serge E. Hallyn" <serge@hallyn.com>,
	Paul Moore <paul@paul-moore.com>,
	Kentaro Takeda <takedakn@nttdata.co.jp>,
	linux-security-module@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: [PATCH v2 05/11] LSM: fix documentation for the socket_getpeersec_dgram hook
Date: Tue, 26 Feb 2019 23:49:06 +0300	[thread overview]
Message-ID: <b6a9ba2ba6f106d3bb0ba82c5edae8ed461e63ea.1551213058.git.efremov@ispras.ru> (raw)
In-Reply-To: <cover.1551213058.git.efremov@ispras.ru>
In-Reply-To: <cover.1551213058.git.efremov@ispras.ru>

The socket_getpeersec_dgram hook was changed in the commit
"[AF_UNIX]: Kernel memory leak fix for af_unix datagram
getpeersec patch" (dc49c1f94e34). The arguments @secdata
and @seclen were changed to @sock and @secid. This patch
updates the documentation accordingly.

Signed-off-by: Denis Efremov <efremov@ispras.ru>
---
 include/linux/lsm_hooks.h | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/include/linux/lsm_hooks.h b/include/linux/lsm_hooks.h
index 603659fb795a..79011eff9795 100644
--- a/include/linux/lsm_hooks.h
+++ b/include/linux/lsm_hooks.h
@@ -857,13 +857,13 @@
  * @socket_getpeersec_dgram:
  *	This hook allows the security module to provide peer socket security
  *	state for udp sockets on a per-packet basis to userspace via
- *	getsockopt SO_GETPEERSEC.  The application must first have indicated
- *	the IP_PASSSEC option via getsockopt.  It can then retrieve the
+ *	getsockopt SO_GETPEERSEC. The application must first have indicated
+ *	the IP_PASSSEC option via getsockopt. It can then retrieve the
  *	security state returned by this hook for a packet via the SCM_SECURITY
  *	ancillary message type.
- *	@skb is the skbuff for the packet being queried
- *	@secdata is a pointer to a buffer in which to copy the security data
- *	@seclen is the maximum length for @secdata
+ *	@sock contains the peer socket. May be NULL.
+ *	@skb is the sk_buff for the packet being queried. May be NULL.
+ *	@secid pointer to store the secid of the packet.
  *	Return 0 on success, error on failure.
  * @sk_alloc_security:
  *	Allocate and attach a security structure to the sk->sk_security field,
-- 
2.17.2


  parent reply	other threads:[~2019-02-26 20:51 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-02-26 20:49 [PATCH v2 00/11] LSM documentation update Denis Efremov
2019-02-26 20:49 ` [PATCH v2 01/11] LSM: fix documentation for sb_copy_data hook Denis Efremov
2019-02-26 20:49 ` [PATCH v2 02/11] LSM: fix documentation for the syslog hook Denis Efremov
2019-02-26 20:49 ` [PATCH v2 03/11] LSM: fix documentation for the socket_post_create hook Denis Efremov
2019-02-26 20:49 ` [PATCH v2 04/11] LSM: fix documentation for the task_setscheduler hook Denis Efremov
2019-02-26 20:49 ` Denis Efremov [this message]
2019-02-26 20:49 ` [PATCH v2 06/11] LSM: fix documentation for the path_chmod hook Denis Efremov
2019-02-26 20:49 ` [PATCH v2 07/11] LSM: fix documentation for the audit_* hooks Denis Efremov
2019-02-26 20:49 ` [PATCH v2 08/11] LSM: fix documentation for the msg_queue_* hooks Denis Efremov
2019-02-26 20:49 ` [PATCH v2 09/11] LSM: fix documentation for the sem_* hooks Denis Efremov
2019-02-26 20:49 ` [PATCH v2 10/11] LSM: fix documentation for the shm_* hooks Denis Efremov
2019-02-26 20:49 ` [PATCH v2 11/11] LSM: lsm_hooks.h: fix documentation format Denis Efremov
2019-02-26 23:34 ` [PATCH v2 00/11] LSM documentation update Casey Schaufler
2019-02-27  0:09 ` Kees Cook
2019-02-27 15:10   ` Denis Efremov
2019-02-27 16:27     ` Kees Cook
2019-03-26 14:38 ` Denis Efremov
2019-03-26 14:53   ` Jonathan Corbet
2019-03-26 18:16     ` James Morris
2019-03-27  2:22 ` James Morris

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=b6a9ba2ba6f106d3bb0ba82c5edae8ed461e63ea.1551213058.git.efremov@ispras.ru \
    --to=efremov@ispras.ru \
    --cc=casey@schaufler-ca.com \
    --cc=ebiederm@xmission.com \
    --cc=eparis@parisplace.org \
    --cc=jmorris@namei.org \
    --cc=john.johansen@canonical.com \
    --cc=keescook@chromium.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-security-module@vger.kernel.org \
    --cc=paul@paul-moore.com \
    --cc=sds@tycho.nsa.gov \
    --cc=serge@hallyn.com \
    --cc=takedakn@nttdata.co.jp \
    /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).