linux-doc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] lsm: move hook comments docs to security/security.c
@ 2023-04-28  3:09 Randy Dunlap
  2023-04-28 14:43 ` Paul Moore
  0 siblings, 1 reply; 4+ messages in thread
From: Randy Dunlap @ 2023-04-28  3:09 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Paul Moore, James Morris, Serge E. Hallyn,
	linux-security-module, Jonathan Corbet, linux-doc, KP Singh, bpf

Fix one kernel-doc warning, but invesigating that led to other
kernel-doc movement (lsm_hooks.h to security.c) that needs to be
fixed also.

include/linux/lsm_hooks.h:1: warning: no structured comments found

Fixes: e261301c851a ("lsm: move the remaining LSM hook comments to security/security.c")
Fixes: 1cd2aca64a5d ("lsm: move the io_uring hook comments to security/security.c")
Fixes: 452b670c7222 ("lsm: move the perf hook comments to security/security.c")
Fixes: 55e853201a9e ("lsm: move the bpf hook comments to security/security.c")
Fixes: b14faf9c94a6 ("lsm: move the audit hook comments to security/security.c")
Fixes: 1427ddbe5cc1 ("lsm: move the binder hook comments to security/security.c")
Fixes: 43fad2821876 ("lsm: move the sysv hook comments to security/security.c")
Fixes: ecc419a44535 ("lsm: move the key hook comments to security/security.c")
Fixes: 742b99456e86 ("lsm: move the xfrm hook comments to security/security.c")
Fixes: ac318aed5498 ("lsm: move the Infiniband hook comments to security/security.c")
Fixes: 4a49f592e931 ("lsm: move the SCTP hook comments to security/security.c")
Fixes: 6b6bbe8c02a1 ("lsm: move the socket hook comments to security/security.c")
Fixes: 2c2442fd46cd ("lsm: move the AF_UNIX hook comments to security/security.c")
Fixes: 2bcf51bf2f03 ("lsm: move the netlink hook comments to security/security.c")
Fixes: 130c53bfee4b ("lsm: move the task hook comments to security/security.c")
Fixes: a0fd6480de48 ("lsm: move the file hook comments to security/security.c")
Fixes: 9348944b775d ("lsm: move the kernfs hook comments to security/security.c")
Fixes: 916e32584dfa ("lsm: move the inode hook comments to security/security.c")
Fixes: 08526a902cc4 ("lsm: move the filesystem hook comments to security/security.c")
Fixes: 36819f185590 ("lsm: move the fs_context hook comments to security/security.c")
Fixes: 1661372c912d ("lsm: move the program execution hook comments to security/security.c")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Paul Moore <paul@paul-moore.com>
Cc: James Morris <jmorris@namei.org>
Cc: "Serge E. Hallyn" <serge@hallyn.com>
Cc: linux-security-module@vger.kernel.org
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: KP Singh <kpsingh@kernel.org>
Cc: bpf@vger.kernel.org
---
 Documentation/bpf/prog_lsm.rst             |    2 +-
 Documentation/security/lsm-development.rst |    6 +++---
 Documentation/security/lsm.rst             |    2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff -- a/Documentation/bpf/prog_lsm.rst b/Documentation/bpf/prog_lsm.rst
--- a/Documentation/bpf/prog_lsm.rst
+++ b/Documentation/bpf/prog_lsm.rst
@@ -18,7 +18,7 @@ LSM hook:
 .. c:function:: int file_mprotect(struct vm_area_struct *vma, unsigned long reqprot, unsigned long prot);
 
 Other LSM hooks which can be instrumented can be found in
-``include/linux/lsm_hooks.h``.
+``security/security.c``.
 
 eBPF programs that use Documentation/bpf/btf.rst do not need to include kernel
 headers for accessing information from the attached eBPF program's context.
diff -- a/Documentation/security/lsm-development.rst b/Documentation/security/lsm-development.rst
--- a/Documentation/security/lsm-development.rst
+++ b/Documentation/security/lsm-development.rst
@@ -11,7 +11,7 @@ that end users and distros can make a mo
 LSMs suit their requirements.
 
 For extensive documentation on the available LSM hook interfaces, please
-see ``include/linux/lsm_hooks.h`` and associated structures:
+see ``security/security.c`` and associated structures:
 
-.. kernel-doc:: include/linux/lsm_hooks.h
-   :internal:
+.. kernel-doc:: security/security.c
+   :export:
diff -- a/Documentation/security/lsm.rst b/Documentation/security/lsm.rst
--- a/Documentation/security/lsm.rst
+++ b/Documentation/security/lsm.rst
@@ -98,7 +98,7 @@ associate these values with real securit
 LSM hooks are maintained in lists. A list is maintained for each
 hook, and the hooks are called in the order specified by CONFIG_LSM.
 Detailed documentation for each hook is
-included in the `include/linux/lsm_hooks.h` header file.
+included in the `security/security.c` source file.
 
 The LSM framework provides for a close approximation of
 general security module stacking. It defines

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] lsm: move hook comments docs to security/security.c
  2023-04-28  3:09 [PATCH] lsm: move hook comments docs to security/security.c Randy Dunlap
@ 2023-04-28 14:43 ` Paul Moore
  2023-04-28 14:46   ` Randy Dunlap
  0 siblings, 1 reply; 4+ messages in thread
From: Paul Moore @ 2023-04-28 14:43 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: linux-kernel, James Morris, Serge E. Hallyn,
	linux-security-module, Jonathan Corbet, linux-doc, KP Singh, bpf

On Thu, Apr 27, 2023 at 11:09 PM Randy Dunlap <rdunlap@infradead.org> wrote:
>
> Fix one kernel-doc warning, but invesigating that led to other
> kernel-doc movement (lsm_hooks.h to security.c) that needs to be
> fixed also.
>
> include/linux/lsm_hooks.h:1: warning: no structured comments found
>
> Fixes: e261301c851a ("lsm: move the remaining LSM hook comments to security/security.c")
> Fixes: 1cd2aca64a5d ("lsm: move the io_uring hook comments to security/security.c")
> Fixes: 452b670c7222 ("lsm: move the perf hook comments to security/security.c")
> Fixes: 55e853201a9e ("lsm: move the bpf hook comments to security/security.c")
> Fixes: b14faf9c94a6 ("lsm: move the audit hook comments to security/security.c")
> Fixes: 1427ddbe5cc1 ("lsm: move the binder hook comments to security/security.c")
> Fixes: 43fad2821876 ("lsm: move the sysv hook comments to security/security.c")
> Fixes: ecc419a44535 ("lsm: move the key hook comments to security/security.c")
> Fixes: 742b99456e86 ("lsm: move the xfrm hook comments to security/security.c")
> Fixes: ac318aed5498 ("lsm: move the Infiniband hook comments to security/security.c")
> Fixes: 4a49f592e931 ("lsm: move the SCTP hook comments to security/security.c")
> Fixes: 6b6bbe8c02a1 ("lsm: move the socket hook comments to security/security.c")
> Fixes: 2c2442fd46cd ("lsm: move the AF_UNIX hook comments to security/security.c")
> Fixes: 2bcf51bf2f03 ("lsm: move the netlink hook comments to security/security.c")
> Fixes: 130c53bfee4b ("lsm: move the task hook comments to security/security.c")
> Fixes: a0fd6480de48 ("lsm: move the file hook comments to security/security.c")
> Fixes: 9348944b775d ("lsm: move the kernfs hook comments to security/security.c")
> Fixes: 916e32584dfa ("lsm: move the inode hook comments to security/security.c")
> Fixes: 08526a902cc4 ("lsm: move the filesystem hook comments to security/security.c")
> Fixes: 36819f185590 ("lsm: move the fs_context hook comments to security/security.c")
> Fixes: 1661372c912d ("lsm: move the program execution hook comments to security/security.c")
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> Cc: Paul Moore <paul@paul-moore.com>
> Cc: James Morris <jmorris@namei.org>
> Cc: "Serge E. Hallyn" <serge@hallyn.com>
> Cc: linux-security-module@vger.kernel.org
> Cc: Jonathan Corbet <corbet@lwn.net>
> Cc: linux-doc@vger.kernel.org
> Cc: KP Singh <kpsingh@kernel.org>
> Cc: bpf@vger.kernel.org
> ---
>  Documentation/bpf/prog_lsm.rst             |    2 +-
>  Documentation/security/lsm-development.rst |    6 +++---
>  Documentation/security/lsm.rst             |    2 +-
>  3 files changed, 5 insertions(+), 5 deletions(-)

Thanks Randy.  Did you want to take this via the doc tree, or would
you prefer if I pulled this into the LSM tree?

Acked-by: Paul Moore <paul@paul-moore.com>

-- 
paul-moore.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] lsm: move hook comments docs to security/security.c
  2023-04-28 14:43 ` Paul Moore
@ 2023-04-28 14:46   ` Randy Dunlap
  2023-04-28 16:05     ` Paul Moore
  0 siblings, 1 reply; 4+ messages in thread
From: Randy Dunlap @ 2023-04-28 14:46 UTC (permalink / raw)
  To: Paul Moore
  Cc: linux-kernel, James Morris, Serge E. Hallyn,
	linux-security-module, Jonathan Corbet, linux-doc, KP Singh, bpf



On 4/28/23 07:43, Paul Moore wrote:
> On Thu, Apr 27, 2023 at 11:09 PM Randy Dunlap <rdunlap@infradead.org> wrote:
>>
>> Fix one kernel-doc warning, but invesigating that led to other
>> kernel-doc movement (lsm_hooks.h to security.c) that needs to be
>> fixed also.
>>
>> include/linux/lsm_hooks.h:1: warning: no structured comments found
>>
>> Fixes: e261301c851a ("lsm: move the remaining LSM hook comments to security/security.c")
>> Fixes: 1cd2aca64a5d ("lsm: move the io_uring hook comments to security/security.c")
>> Fixes: 452b670c7222 ("lsm: move the perf hook comments to security/security.c")
>> Fixes: 55e853201a9e ("lsm: move the bpf hook comments to security/security.c")
>> Fixes: b14faf9c94a6 ("lsm: move the audit hook comments to security/security.c")
>> Fixes: 1427ddbe5cc1 ("lsm: move the binder hook comments to security/security.c")
>> Fixes: 43fad2821876 ("lsm: move the sysv hook comments to security/security.c")
>> Fixes: ecc419a44535 ("lsm: move the key hook comments to security/security.c")
>> Fixes: 742b99456e86 ("lsm: move the xfrm hook comments to security/security.c")
>> Fixes: ac318aed5498 ("lsm: move the Infiniband hook comments to security/security.c")
>> Fixes: 4a49f592e931 ("lsm: move the SCTP hook comments to security/security.c")
>> Fixes: 6b6bbe8c02a1 ("lsm: move the socket hook comments to security/security.c")
>> Fixes: 2c2442fd46cd ("lsm: move the AF_UNIX hook comments to security/security.c")
>> Fixes: 2bcf51bf2f03 ("lsm: move the netlink hook comments to security/security.c")
>> Fixes: 130c53bfee4b ("lsm: move the task hook comments to security/security.c")
>> Fixes: a0fd6480de48 ("lsm: move the file hook comments to security/security.c")
>> Fixes: 9348944b775d ("lsm: move the kernfs hook comments to security/security.c")
>> Fixes: 916e32584dfa ("lsm: move the inode hook comments to security/security.c")
>> Fixes: 08526a902cc4 ("lsm: move the filesystem hook comments to security/security.c")
>> Fixes: 36819f185590 ("lsm: move the fs_context hook comments to security/security.c")
>> Fixes: 1661372c912d ("lsm: move the program execution hook comments to security/security.c")
>> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
>> Cc: Paul Moore <paul@paul-moore.com>
>> Cc: James Morris <jmorris@namei.org>
>> Cc: "Serge E. Hallyn" <serge@hallyn.com>
>> Cc: linux-security-module@vger.kernel.org
>> Cc: Jonathan Corbet <corbet@lwn.net>
>> Cc: linux-doc@vger.kernel.org
>> Cc: KP Singh <kpsingh@kernel.org>
>> Cc: bpf@vger.kernel.org
>> ---
>>  Documentation/bpf/prog_lsm.rst             |    2 +-
>>  Documentation/security/lsm-development.rst |    6 +++---
>>  Documentation/security/lsm.rst             |    2 +-
>>  3 files changed, 5 insertions(+), 5 deletions(-)
> 
> Thanks Randy.  Did you want to take this via the doc tree, or would
> you prefer if I pulled this into the LSM tree?
> 
> Acked-by: Paul Moore <paul@paul-moore.com>
> 

I think that the LSM tree would be appropriate for it.

Thanks.

-- 
~Randy

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] lsm: move hook comments docs to security/security.c
  2023-04-28 14:46   ` Randy Dunlap
@ 2023-04-28 16:05     ` Paul Moore
  0 siblings, 0 replies; 4+ messages in thread
From: Paul Moore @ 2023-04-28 16:05 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: linux-kernel, James Morris, Serge E. Hallyn,
	linux-security-module, Jonathan Corbet, linux-doc, KP Singh, bpf

On Fri, Apr 28, 2023 at 10:46 AM Randy Dunlap <rdunlap@infradead.org> wrote:
> On 4/28/23 07:43, Paul Moore wrote:
> > On Thu, Apr 27, 2023 at 11:09 PM Randy Dunlap <rdunlap@infradead.org> wrote:
> >>
> >> Fix one kernel-doc warning, but invesigating that led to other
> >> kernel-doc movement (lsm_hooks.h to security.c) that needs to be
> >> fixed also.
> >>
> >> include/linux/lsm_hooks.h:1: warning: no structured comments found
> >>
> >> Fixes: e261301c851a ("lsm: move the remaining LSM hook comments to security/security.c")
> >> Fixes: 1cd2aca64a5d ("lsm: move the io_uring hook comments to security/security.c")
> >> Fixes: 452b670c7222 ("lsm: move the perf hook comments to security/security.c")
> >> Fixes: 55e853201a9e ("lsm: move the bpf hook comments to security/security.c")
> >> Fixes: b14faf9c94a6 ("lsm: move the audit hook comments to security/security.c")
> >> Fixes: 1427ddbe5cc1 ("lsm: move the binder hook comments to security/security.c")
> >> Fixes: 43fad2821876 ("lsm: move the sysv hook comments to security/security.c")
> >> Fixes: ecc419a44535 ("lsm: move the key hook comments to security/security.c")
> >> Fixes: 742b99456e86 ("lsm: move the xfrm hook comments to security/security.c")
> >> Fixes: ac318aed5498 ("lsm: move the Infiniband hook comments to security/security.c")
> >> Fixes: 4a49f592e931 ("lsm: move the SCTP hook comments to security/security.c")
> >> Fixes: 6b6bbe8c02a1 ("lsm: move the socket hook comments to security/security.c")
> >> Fixes: 2c2442fd46cd ("lsm: move the AF_UNIX hook comments to security/security.c")
> >> Fixes: 2bcf51bf2f03 ("lsm: move the netlink hook comments to security/security.c")
> >> Fixes: 130c53bfee4b ("lsm: move the task hook comments to security/security.c")
> >> Fixes: a0fd6480de48 ("lsm: move the file hook comments to security/security.c")
> >> Fixes: 9348944b775d ("lsm: move the kernfs hook comments to security/security.c")
> >> Fixes: 916e32584dfa ("lsm: move the inode hook comments to security/security.c")
> >> Fixes: 08526a902cc4 ("lsm: move the filesystem hook comments to security/security.c")
> >> Fixes: 36819f185590 ("lsm: move the fs_context hook comments to security/security.c")
> >> Fixes: 1661372c912d ("lsm: move the program execution hook comments to security/security.c")
> >> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> >> Cc: Paul Moore <paul@paul-moore.com>
> >> Cc: James Morris <jmorris@namei.org>
> >> Cc: "Serge E. Hallyn" <serge@hallyn.com>
> >> Cc: linux-security-module@vger.kernel.org
> >> Cc: Jonathan Corbet <corbet@lwn.net>
> >> Cc: linux-doc@vger.kernel.org
> >> Cc: KP Singh <kpsingh@kernel.org>
> >> Cc: bpf@vger.kernel.org
> >> ---
> >>  Documentation/bpf/prog_lsm.rst             |    2 +-
> >>  Documentation/security/lsm-development.rst |    6 +++---
> >>  Documentation/security/lsm.rst             |    2 +-
> >>  3 files changed, 5 insertions(+), 5 deletions(-)
> >
> > Thanks Randy.  Did you want to take this via the doc tree, or would
> > you prefer if I pulled this into the LSM tree?
>
> I think that the LSM tree would be appropriate for it.

Fair enough, I just merged this into the lsm/stable-6.4 branch and
I'll send this up to Linus shortly.

-- 
paul-moore.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-04-28 16:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-28  3:09 [PATCH] lsm: move hook comments docs to security/security.c Randy Dunlap
2023-04-28 14:43 ` Paul Moore
2023-04-28 14:46   ` Randy Dunlap
2023-04-28 16:05     ` Paul Moore

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).