Linux Security Modules development
 help / color / mirror / Atom feed
* [PATCH] ima: Check for ERR_PTR from dentry_path() in validate_hash_algo()
@ 2026-08-27 17:43 Bradley Morgan
  2026-09-02 12:21 ` Mimi Zohar
  0 siblings, 1 reply; 3+ messages in thread
From: Bradley Morgan @ 2026-08-27 17:43 UTC (permalink / raw)
  To: Mimi Zohar
  Cc: linux-integrity, linux-security-module, linux-kernel, brads,
	stable, syzbot+5ebeb3089ea6439c37be

dentry_path() returns ERR_PTR(-ENAMETOOLONG) when the path exceeds the
buffer. validate_hash_algo() passes the result straight to
integrity_audit_msg() without checking. ERR_PTR is not NULL, so
integrity_audit_message() sees a valid pointer and calls strlen() on
it, which faults:

    BUG: unable to handle page fault for address: ffffffffffffffdc
    RIP: 0010:strlen+0x30/0xa0
    Call Trace:
     audit_log_untrustedstring+0x19/0x30
     integrity_audit_message+0x366/0x4f0
     ima_inode_setxattr+0x512/0x5f0

Check for IS_ERR() and use NULL instead, which makes the audit message
skip the name= field instead of crashing.

Fixes: 4f2946aa0c45 ("IMA: introduce a new policy option func=SETXATTR_CHECK")
Cc: stable@vger.kernel.org
Reported-by: syzbot+5ebeb3089ea6439c37be@syzkaller.appspotmail.com
Link: https://lore.kernel.org/all/6a8f89e5.1d9ded08.62e62.00bf.GAE@google.com/
Signed-off-by: Bradley Morgan <brads@mainlining.org>
---
 security/integrity/ima/ima_appraise.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/security/integrity/ima/ima_appraise.c b/security/integrity/ima/ima_appraise.c
index ced2e131b061..b280488e15fc 100644
--- a/security/integrity/ima/ima_appraise.c
+++ b/security/integrity/ima/ima_appraise.c
@@ -748,6 +748,8 @@ static int validate_hash_algo(struct dentry *dentry,
 		return -EACCES;
 
 	path = dentry_path(dentry, pathbuf, PATH_MAX);
+	if (IS_ERR(path))
+		path = NULL;
 
 	integrity_audit_msg(AUDIT_INTEGRITY_DATA, d_inode(dentry), path,
 			    "set_data", errmsg, -EACCES, 0);
-- 
2.47.3


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

* Re: [PATCH] ima: Check for ERR_PTR from dentry_path() in validate_hash_algo()
  2026-08-27 17:43 [PATCH] ima: Check for ERR_PTR from dentry_path() in validate_hash_algo() Bradley Morgan
@ 2026-09-02 12:21 ` Mimi Zohar
  2026-09-02 12:27   ` Bradley Morgan
  0 siblings, 1 reply; 3+ messages in thread
From: Mimi Zohar @ 2026-09-02 12:21 UTC (permalink / raw)
  To: Bradley Morgan
  Cc: linux-integrity, linux-security-module, linux-kernel, stable,
	syzbot+5ebeb3089ea6439c37be

On Thu, 2026-08-27 at 17:43 +0000, Bradley Morgan wrote:
> dentry_path() returns ERR_PTR(-ENAMETOOLONG) when the path exceeds the
> buffer. validate_hash_algo() passes the result straight to
> integrity_audit_msg() without checking. ERR_PTR is not NULL, so
> integrity_audit_message() sees a valid pointer and calls strlen() on
> it, which faults:
> 
>     BUG: unable to handle page fault for address: ffffffffffffffdc
>     RIP: 0010:strlen+0x30/0xa0
>     Call Trace:
>      audit_log_untrustedstring+0x19/0x30
>      integrity_audit_message+0x366/0x4f0
>      ima_inode_setxattr+0x512/0x5f0
> 
> Check for IS_ERR() and use NULL instead, which makes the audit message
> skip the name= field instead of crashing.
> 
> Fixes: 4f2946aa0c45 ("IMA: introduce a new policy option func=SETXATTR_CHECK")
> Cc: stable@vger.kernel.org
> Reported-by: syzbot+5ebeb3089ea6439c37be@syzkaller.appspotmail.com
> Link: https://lore.kernel.org/all/6a8f89e5.1d9ded08.62e62.00bf.GAE@google.com/
> Signed-off-by: Bradley Morgan <brads@mainlining.org>

Thanks, Bradley.  The patch is now queued in next-integrity.

Mimi

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

* Re: [PATCH] ima: Check for ERR_PTR from dentry_path() in validate_hash_algo()
  2026-09-02 12:21 ` Mimi Zohar
@ 2026-09-02 12:27   ` Bradley Morgan
  0 siblings, 0 replies; 3+ messages in thread
From: Bradley Morgan @ 2026-09-02 12:27 UTC (permalink / raw)
  To: Mimi Zohar
  Cc: linux-integrity, linux-security-module, linux-kernel, stable,
	syzbot+5ebeb3089ea6439c37be, paul

On 2 September 2026 13:21:36 BST, Mimi Zohar <zohar@linux.ibm.com> wrote:
>On Thu, 2026-08-27 at 17:43 +0000, Bradley Morgan wrote:
>> dentry_path() returns ERR_PTR(-ENAMETOOLONG) when the path exceeds the
>> buffer. validate_hash_algo() passes the result straight to
>> integrity_audit_msg() without checking. ERR_PTR is not NULL, so
>> integrity_audit_message() sees a valid pointer and calls strlen() on
>> it, which faults:
>> 
>>     BUG: unable to handle page fault for address: ffffffffffffffdc
>>     RIP: 0010:strlen+0x30/0xa0
>>     Call Trace:
>>      audit_log_untrustedstring+0x19/0x30
>>      integrity_audit_message+0x366/0x4f0
>>      ima_inode_setxattr+0x512/0x5f0
>> 
>> Check for IS_ERR() and use NULL instead, which makes the audit message
>> skip the name= field instead of crashing.
>> 
>> Fixes: 4f2946aa0c45 ("IMA: introduce a new policy option
>func=SETXATTR_CHECK")
>> Cc: stable@vger.kernel.org
>> Reported-by: syzbot+5ebeb3089ea6439c37be@syzkaller.appspotmail.com
>> Link:
>https://lore.kernel.org/all/6a8f89e5.1d9ded08.62e62.00bf.GAE@google.com/
>> Signed-off-by: Bradley Morgan <brads@mainlining.org>
>
>Thanks, Bradley.  The patch is now queued in next-integrity.

Cheers, +CC Paul, the syzbot issue should now be fixed

>
>Mimi

--- Thanks!
https://lore.kernel.org/all/EE579805-42F2-4C58-B752-F28779EEB717@grrlz.net/

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

end of thread, other threads:[~2026-09-02 12:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-27 17:43 [PATCH] ima: Check for ERR_PTR from dentry_path() in validate_hash_algo() Bradley Morgan
2026-09-02 12:21 ` Mimi Zohar
2026-09-02 12:27   ` Bradley Morgan

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