Skip to content

Commit dd577cb

Browse files
Ye BinsfX-bot
Ye Bin
authored andcommitted
proc: fix UAF in proc_get_inode()
commit 654b33ada4ab5e926cd9c570196fefa7bec7c1df upstream. Fix race between rmmod and /proc/XXX's inode instantiation. The bug is that pde->proc_ops don't belong to /proc, it belongs to a module, therefore dereferencing it after /proc entry has been registered is a bug unless use_pde/unuse_pde() pair has been used. use_pde/unuse_pde can be avoided (2 atomic ops!) because pde->proc_ops never changes so information necessary for inode instantiation can be saved _before_ proc_register() in PDE itself and used later, avoiding pde->proc_ops->... dereference. rmmod lookup sys_delete_module proc_lookup_de pde_get(de); proc_get_inode(dir->i_sb, de); mod->exit() proc_remove remove_proc_subtree proc_entry_rundown(de); free_module(mod); if (S_ISREG(inode->i_mode)) if (de->proc_ops->proc_read_iter) --> As module is already freed, will trigger UAF BUG: unable to handle page fault for address: fffffbfff80a702b PGD 817fc4067 P4D 817fc4067 PUD 817fc0067 PMD 102ef4067 PTE 0 Oops: Oops: 0000 [#1] PREEMPT SMP KASAN PTI CPU: 26 UID: 0 PID: 2667 Comm: ls Tainted: G Hardware name: QEMU Standard PC (i440FX + PIIX, 1996) RIP: 0010:proc_get_inode+0x302/0x6e0 RSP: 0018:ffff88811c837998 EFLAGS: 00010a06 RAX: dffffc0000000000 RBX: ffffffffc0538140 RCX: 0000000000000007 RDX: 1ffffffff80a702b RSI: 0000000000000001 RDI: ffffffffc0538158 RBP: ffff8881299a6000 R08: 0000000067bbe1e5 R09: 1ffff11023906f20 R10: ffffffffb560ca07 R11: ffffffffb2b43a58 R12: ffff888105bb78f0 R13: ffff888100518048 R14: ffff8881299a6004 R15: 0000000000000001 FS: 00007f95b9686840(0000) GS:ffff8883af100000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: fffffbfff80a702b CR3: 0000000117dd2000 CR4: 00000000000006f0 DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 Call Trace: <TASK> proc_lookup_de+0x11f/0x2e0 __lookup_slow+0x188/0x350 walk_component+0x2ab/0x4f0 path_lookupat+0x120/0x660 filename_lookup+0x1ce/0x560 vfs_statx+0xac/0x150 __do_sys_newstat+0x96/0x110 do_syscall_64+0x5f/0x170 entry_SYSCALL_64_after_hwframe+0x76/0x7e [[email protected]: don't do 2 atomic ops on the common path] Link: https://lkml.kernel.org/r/3d25ded0-1739-447e-812b-e34da7990dcf@p183 Fixes: 778f3dd ("Fix procfs compat_ioctl regression") Signed-off-by: Ye Bin <[email protected]> Signed-off-by: Alexey Dobriyan <[email protected]> Cc: Al Viro <[email protected]> Cc: David S. Miller <[email protected]> Cc: <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent ecec4ea commit dd577cb

File tree

4 files changed

+31
-6
lines changed

4 files changed

+31
-6
lines changed

fs/proc/generic.c

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,10 +563,16 @@ struct proc_dir_entry *proc_create_reg(const char *name, umode_t mode,
563563
return p;
564564
}
565565

566-
static inline void pde_set_flags(struct proc_dir_entry *pde)
566+
static void pde_set_flags(struct proc_dir_entry *pde)
567567
{
568568
if (pde->proc_ops->proc_flags & PROC_ENTRY_PERMANENT)
569569
pde->flags |= PROC_ENTRY_PERMANENT;
570+
if (pde->proc_ops->proc_read_iter)
571+
pde->flags |= PROC_ENTRY_proc_read_iter;
572+
#ifdef CONFIG_COMPAT
573+
if (pde->proc_ops->proc_compat_ioctl)
574+
pde->flags |= PROC_ENTRY_proc_compat_ioctl;
575+
#endif
570576
}
571577

572578
struct proc_dir_entry *proc_create_data(const char *name, umode_t mode,
@@ -630,6 +636,7 @@ struct proc_dir_entry *proc_create_seq_private(const char *name, umode_t mode,
630636
p->proc_ops = &proc_seq_ops;
631637
p->seq_ops = ops;
632638
p->state_size = state_size;
639+
pde_set_flags(p);
633640
return proc_register(parent, p);
634641
}
635642
EXPORT_SYMBOL(proc_create_seq_private);
@@ -660,6 +667,7 @@ struct proc_dir_entry *proc_create_single_data(const char *name, umode_t mode,
660667
return NULL;
661668
p->proc_ops = &proc_single_ops;
662669
p->single_show = show;
670+
pde_set_flags(p);
663671
return proc_register(parent, p);
664672
}
665673
EXPORT_SYMBOL(proc_create_single_data);

fs/proc/inode.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -684,13 +684,13 @@ struct inode *proc_get_inode(struct super_block *sb, struct proc_dir_entry *de)
684684

685685
if (S_ISREG(inode->i_mode)) {
686686
inode->i_op = de->proc_iops;
687-
if (de->proc_ops->proc_read_iter)
687+
if (pde_has_proc_read_iter(de))
688688
inode->i_fop = &proc_iter_file_ops;
689689
else
690690
inode->i_fop = &proc_reg_file_ops;
691691
#ifdef CONFIG_COMPAT
692-
if (de->proc_ops->proc_compat_ioctl) {
693-
if (de->proc_ops->proc_read_iter)
692+
if (pde_has_proc_compat_ioctl(de)) {
693+
if (pde_has_proc_read_iter(de))
694694
inode->i_fop = &proc_iter_file_ops_compat;
695695
else
696696
inode->i_fop = &proc_reg_file_ops_compat;

fs/proc/internal.h

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,20 @@ static inline bool pde_is_permanent(const struct proc_dir_entry *pde)
7979
return pde->flags & PROC_ENTRY_PERMANENT;
8080
}
8181

82+
static inline bool pde_has_proc_read_iter(const struct proc_dir_entry *pde)
83+
{
84+
return pde->flags & PROC_ENTRY_proc_read_iter;
85+
}
86+
87+
static inline bool pde_has_proc_compat_ioctl(const struct proc_dir_entry *pde)
88+
{
89+
#ifdef CONFIG_COMPAT
90+
return pde->flags & PROC_ENTRY_proc_compat_ioctl;
91+
#else
92+
return false;
93+
#endif
94+
}
95+
8296
extern struct kmem_cache *proc_dir_entry_cache;
8397
void pde_free(struct proc_dir_entry *pde);
8498

include/linux/proc_fs.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,13 @@ enum {
2020
* If in doubt, ignore this flag.
2121
*/
2222
#ifdef MODULE
23-
PROC_ENTRY_PERMANENT = 0U,
23+
PROC_ENTRY_PERMANENT = 0U,
2424
#else
25-
PROC_ENTRY_PERMANENT = 1U << 0,
25+
PROC_ENTRY_PERMANENT = 1U << 0,
2626
#endif
27+
28+
PROC_ENTRY_proc_read_iter = 1U << 1,
29+
PROC_ENTRY_proc_compat_ioctl = 1U << 2,
2730
};
2831

2932
struct proc_ops {

0 commit comments

Comments
 (0)