public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Suggestion for Capability Check Refinement in check_syslog_permissions()
@ 2024-01-03  5:00 孟敬姿
  2024-01-03  6:59 ` Greg KH
  0 siblings, 1 reply; 11+ messages in thread
From: 孟敬姿 @ 2024-01-03  5:00 UTC (permalink / raw)
  To: pmladek, rostedt, john.ogness, senozhatsky, keescook, tony.luck,
	gpiccoli
  Cc: linux-hardening, linux-kernel

Hi, we suggest revisiting the capability checks in check_syslog_permissions(). Currently CAP_SYSLOG is checked first, and if it’s not there but there is a CAP_SYS_ADMIN, it can also pass the check. We recommend refining this check to exclusively use CAP_SYSLOG. Here's our reasoning for this suggestion:

(1) Independence of CAP_SYSLOG and CAP_SYS_ADMIN: Since the introduction of CAP_SYSLOG in Linux 2.6.37, it has been a distinct capability from CAP_SYS_ADMIN. For compatibility reasons, it might make sense to keep CAP_SYS_ADMIN at the beginning. However, now that 13 years have passed,we think maybe it's appropriate to update the code to reflect their separate roles. 

(2) Maintaining Least Privilege Principle: CAP_SYS_ADMIN is overloaded and known as the new "root"[1]. And according to the manual page[2] “Don't choose CAP_SYS_ADMIN if you can possibly avoid it!”, it's beneficial to use the most specific capability required for a given task.

This issue exists in several kernel versions and we have checked it on the latest stable release(Linux 6.6.9). 

Your feedback and insights on this proposed modification would be highly appreciated. Thank you for your time and consideration.

Best regards,
Jingzi

reference:
[1] https://lwn.net/Articles/486306/
[2] https://www.man7.org/linux/man-pages/man7/capabilities.7.html

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

end of thread, other threads:[~2024-02-01 18:05 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-03  5:00 Suggestion for Capability Check Refinement in check_syslog_permissions() 孟敬姿
2024-01-03  6:59 ` Greg KH
2024-01-04  9:43   ` Petr Mladek
2024-01-04 16:27     ` Steven Rostedt
2024-01-05  6:20   ` [PATCH] cap_syslog: remove CAP_SYS_ADMIN when dmesg_restrict Jingzi Meng
2024-01-05 14:49     ` Theodore Ts'o
2024-01-05 15:23       ` Petr Mladek
2024-01-08  6:32       ` 孟敬姿
2024-01-08 17:57     ` Kees Cook
2024-01-15  1:24       ` 孟敬姿
2024-02-01 18:05     ` Kees Cook

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox