]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
ksmbd: fix SID memory leak in set_posix_acl_entries_dacl() on overflow
authorFerry Meng <mengferry@linux.alibaba.com>
Mon, 11 May 2026 13:18:16 +0000 (21:18 +0800)
committerSteve French <stfrench@microsoft.com>
Wed, 13 May 2026 21:35:23 +0000 (16:35 -0500)
Commit 299f962c0b02 ("ksmbd: use check_add_overflow() to prevent u16
DACL size overflow") added check_add_overflow() guards that break out
of the ACE-building loops in set_posix_acl_entries_dacl() when the
accumulated DACL size would wrap past 65535.

However, each iteration allocates a struct smb_sid via kmalloc_obj()
at the top of the loop and relies on the kfree(sid) call at the end
of the loop body (the 'pass_same_sid' label in the first loop, and
the explicit kfree at the tail of the second loop) to release it.
The newly introduced 'break' statements bypass those kfree() calls,
leaking the sid buffer every time an overflow is detected.

A malicious or malformed file with enough POSIX ACL entries to trip
the overflow check will leak one or more struct smb_sid allocations
on every request that touches the file's DACL, providing a trivial
kernel memory exhaustion vector.

Free sid before breaking out of the loops to plug the leak.

Fixes: 299f962c0b02 ("ksmbd: use check_add_overflow() to prevent u16 DACL size overflow")
Cc: stable@vger.kernel.org
Signed-off-by: Ferry Meng <mengferry@linux.alibaba.com>
Acked-by: Namjae Jeon <linkinjeon@kernel.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
fs/smb/server/smbacl.c

index c1d1f34581d69d0665d95a34d13ded291ae14b9b..9161e9d7ed2477f8d359227c8ab11ab7e30b3277 100644 (file)
@@ -643,8 +643,10 @@ static void set_posix_acl_entries_dacl(struct mnt_idmap *idmap,
                ntace = (struct smb_ace *)((char *)pndace + *size);
                ace_sz = fill_ace_for_sid(ntace, sid, ACCESS_ALLOWED, flags,
                                pace->e_perm, 0777);
-               if (check_add_overflow(*size, ace_sz, size))
+               if (check_add_overflow(*size, ace_sz, size)) {
+                       kfree(sid);
                        break;
+               }
                (*num_aces)++;
                if (pace->e_tag == ACL_USER)
                        ntace->access_req |=
@@ -655,8 +657,10 @@ static void set_posix_acl_entries_dacl(struct mnt_idmap *idmap,
                        ntace = (struct smb_ace *)((char *)pndace + *size);
                        ace_sz = fill_ace_for_sid(ntace, sid, ACCESS_ALLOWED,
                                        0x03, pace->e_perm, 0777);
-                       if (check_add_overflow(*size, ace_sz, size))
+                       if (check_add_overflow(*size, ace_sz, size)) {
+                               kfree(sid);
                                break;
+                       }
                        (*num_aces)++;
                        if (pace->e_tag == ACL_USER)
                                ntace->access_req |=
@@ -698,8 +702,10 @@ posix_default_acl:
                ntace = (struct smb_ace *)((char *)pndace + *size);
                ace_sz = fill_ace_for_sid(ntace, sid, ACCESS_ALLOWED, 0x0b,
                                pace->e_perm, 0777);
-               if (check_add_overflow(*size, ace_sz, size))
+               if (check_add_overflow(*size, ace_sz, size)) {
+                       kfree(sid);
                        break;
+               }
                (*num_aces)++;
                if (pace->e_tag == ACL_USER)
                        ntace->access_req |=