Skip to content

Commit 54f1a58

Browse files
idryomovUlrich Hecht
authored andcommitted
libceph: fix potential use-after-free in have_mon_and_osd_map()
commit 076381c261374c587700b3accf410bdd2dba334e upstream. The wait loop in __ceph_open_session() can race with the client receiving a new monmap or osdmap shortly after the initial map is received. Both ceph_monc_handle_map() and handle_one_map() install a new map immediately after freeing the old one kfree(monc->monmap); monc->monmap = monmap; ceph_osdmap_destroy(osdc->osdmap); osdc->osdmap = newmap; under client->monc.mutex and client->osdc.lock respectively, but because neither is taken in have_mon_and_osd_map() it's possible for client->monc.monmap->epoch and client->osdc.osdmap->epoch arms in client->monc.monmap && client->monc.monmap->epoch && client->osdc.osdmap && client->osdc.osdmap->epoch; condition to dereference an already freed map. This happens to be reproducible with generic/395 and generic/397 with KASAN enabled: BUG: KASAN: slab-use-after-free in have_mon_and_osd_map+0x56/0x70 Read of size 4 at addr ffff88811012d810 by task mount.ceph/13305 CPU: 2 UID: 0 PID: 13305 Comm: mount.ceph Not tainted 6.14.0-rc2-build2+ #1266 ... Call Trace: <TASK> have_mon_and_osd_map+0x56/0x70 ceph_open_session+0x182/0x290 ceph_get_tree+0x333/0x680 vfs_get_tree+0x49/0x180 do_new_mount+0x1a3/0x2d0 path_mount+0x6dd/0x730 do_mount+0x99/0xe0 __do_sys_mount+0x141/0x180 do_syscall_64+0x9f/0x100 entry_SYSCALL_64_after_hwframe+0x76/0x7e </TASK> Allocated by task 13305: ceph_osdmap_alloc+0x16/0x130 ceph_osdc_init+0x27a/0x4c0 ceph_create_client+0x153/0x190 create_fs_client+0x50/0x2a0 ceph_get_tree+0xff/0x680 vfs_get_tree+0x49/0x180 do_new_mount+0x1a3/0x2d0 path_mount+0x6dd/0x730 do_mount+0x99/0xe0 __do_sys_mount+0x141/0x180 do_syscall_64+0x9f/0x100 entry_SYSCALL_64_after_hwframe+0x76/0x7e Freed by task 9475: kfree+0x212/0x290 handle_one_map+0x23c/0x3b0 ceph_osdc_handle_map+0x3c9/0x590 mon_dispatch+0x655/0x6f0 ceph_con_process_message+0xc3/0xe0 ceph_con_v1_try_read+0x614/0x760 ceph_con_workfn+0x2de/0x650 process_one_work+0x486/0x7c0 process_scheduled_works+0x73/0x90 worker_thread+0x1c8/0x2a0 kthread+0x2ec/0x300 ret_from_fork+0x24/0x40 ret_from_fork_asm+0x1a/0x30 Rewrite the wait loop to check the above condition directly with client->monc.mutex and client->osdc.lock taken as appropriate. While at it, improve the timeout handling (previously mount_timeout could be exceeded in case wait_event_interruptible_timeout() slept more than once) and access client->auth_err under client->monc.mutex to match how it's set in finish_auth(). monmap_show() and osdmap_show() now take the respective lock before accessing the map as well. Cc: stable@vger.kernel.org Reported-by: David Howells <dhowells@redhat.com> Signed-off-by: Ilya Dryomov <idryomov@gmail.com> Reviewed-by: Viacheslav Dubeyko <Slava.Dubeyko@ibm.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Ulrich Hecht <uli@kernel.org>
1 parent 4b746bb commit 54f1a58

2 files changed

Lines changed: 43 additions & 25 deletions

File tree

net/ceph/ceph_common.c

Lines changed: 33 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#include <linux/nsproxy.h>
1313
#include <linux/parser.h>
1414
#include <linux/sched.h>
15+
#include <linux/sched/signal.h>
1516
#include <linux/seq_file.h>
1617
#include <linux/slab.h>
1718
#include <linux/statfs.h>
@@ -684,42 +685,53 @@ void ceph_destroy_client(struct ceph_client *client)
684685
}
685686
EXPORT_SYMBOL(ceph_destroy_client);
686687

687-
/*
688-
* true if we have the mon map (and have thus joined the cluster)
689-
*/
690-
static bool have_mon_and_osd_map(struct ceph_client *client)
691-
{
692-
return client->monc.monmap && client->monc.monmap->epoch &&
693-
client->osdc.osdmap && client->osdc.osdmap->epoch;
694-
}
695-
696688
/*
697689
* mount: join the ceph cluster, and open root directory.
698690
*/
699691
int __ceph_open_session(struct ceph_client *client, unsigned long started)
700692
{
701-
unsigned long timeout = client->options->mount_timeout;
702-
long err;
693+
DEFINE_WAIT_FUNC(wait, woken_wake_function);
694+
long timeout = ceph_timeout_jiffies(client->options->mount_timeout);
695+
bool have_monmap, have_osdmap;
696+
int err;
703697

704698
/* open session, and wait for mon and osd maps */
705699
err = ceph_monc_open_session(&client->monc);
706700
if (err < 0)
707701
return err;
708702

709-
while (!have_mon_and_osd_map(client)) {
710-
if (timeout && time_after_eq(jiffies, started + timeout))
711-
return -ETIMEDOUT;
703+
add_wait_queue(&client->auth_wq, &wait);
704+
for (;;) {
705+
mutex_lock(&client->monc.mutex);
706+
err = client->auth_err;
707+
have_monmap = client->monc.monmap && client->monc.monmap->epoch;
708+
mutex_unlock(&client->monc.mutex);
709+
710+
down_read(&client->osdc.lock);
711+
have_osdmap = client->osdc.osdmap && client->osdc.osdmap->epoch;
712+
up_read(&client->osdc.lock);
713+
714+
if (err || (have_monmap && have_osdmap))
715+
break;
716+
717+
if (signal_pending(current)) {
718+
err = -ERESTARTSYS;
719+
break;
720+
}
721+
722+
if (!timeout) {
723+
err = -ETIMEDOUT;
724+
break;
725+
}
712726

713727
/* wait */
714728
dout("mount waiting for mon_map\n");
715-
err = wait_event_interruptible_timeout(client->auth_wq,
716-
have_mon_and_osd_map(client) || (client->auth_err < 0),
717-
ceph_timeout_jiffies(timeout));
718-
if (err < 0)
719-
return err;
720-
if (client->auth_err < 0)
721-
return client->auth_err;
729+
timeout = wait_woken(&wait, TASK_INTERRUPTIBLE, timeout);
722730
}
731+
remove_wait_queue(&client->auth_wq, &wait);
732+
733+
if (err)
734+
return err;
723735

724736
pr_info("client%llu fsid %pU\n", ceph_client_gid(client),
725737
&client->fsid);

net/ceph/debugfs.c

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,9 @@ static int monmap_show(struct seq_file *s, void *p)
3636
int i;
3737
struct ceph_client *client = s->private;
3838

39+
mutex_lock(&client->monc.mutex);
3940
if (client->monc.monmap == NULL)
40-
return 0;
41+
goto out_unlock;
4142

4243
seq_printf(s, "epoch %d\n", client->monc.monmap->epoch);
4344
for (i = 0; i < client->monc.monmap->num_mon; i++) {
@@ -48,6 +49,9 @@ static int monmap_show(struct seq_file *s, void *p)
4849
ENTITY_NAME(inst->name),
4950
ceph_pr_addr(&inst->addr.in_addr));
5051
}
52+
53+
out_unlock:
54+
mutex_unlock(&client->monc.mutex);
5155
return 0;
5256
}
5357

@@ -56,13 +60,14 @@ static int osdmap_show(struct seq_file *s, void *p)
5660
int i;
5761
struct ceph_client *client = s->private;
5862
struct ceph_osd_client *osdc = &client->osdc;
59-
struct ceph_osdmap *map = osdc->osdmap;
63+
struct ceph_osdmap *map;
6064
struct rb_node *n;
6165

66+
down_read(&osdc->lock);
67+
map = osdc->osdmap;
6268
if (map == NULL)
63-
return 0;
69+
goto out_unlock;
6470

65-
down_read(&osdc->lock);
6671
seq_printf(s, "epoch %u barrier %u flags 0x%x\n", map->epoch,
6772
osdc->epoch_barrier, map->flags);
6873

@@ -129,6 +134,7 @@ static int osdmap_show(struct seq_file *s, void *p)
129134
seq_printf(s, "]\n");
130135
}
131136

137+
out_unlock:
132138
up_read(&osdc->lock);
133139
return 0;
134140
}

0 commit comments

Comments
 (0)