Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 331629
b: refs/heads/master
c: d2bb24e
h: refs/heads/master
i:
  331627: f2add33
v: v3
  • Loading branch information
Alex Elder committed Oct 1, 2012
1 parent 002571a commit b0b28d2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d78fd7ae03136c0610bee33eeebb4ffe67c752d5
refs/heads/master: d2bb24e506596ad0c10e4a7f4b2fca88cc75c0bc
28 changes: 15 additions & 13 deletions trunk/drivers/block/rbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -494,17 +494,21 @@ static int rbd_header_from_disk(struct rbd_image_header *header,
u32 allocated_snaps)
{
u32 snap_count;
size_t size;

if (!rbd_dev_ondisk_valid(ondisk))
return -ENXIO;

snap_count = le32_to_cpu(ondisk->snap_count);
if (snap_count > (SIZE_MAX - sizeof(struct ceph_snap_context))
/ sizeof (u64))

/* Make sure we don't overflow below */
size = SIZE_MAX - sizeof (struct ceph_snap_context);
if (snap_count > size / sizeof (header->snapc->snaps[0]))
return -EINVAL;
header->snapc = kmalloc(sizeof(struct ceph_snap_context) +
snap_count * sizeof(u64),
GFP_KERNEL);

size = sizeof (struct ceph_snap_context);
size += snap_count * sizeof (header->snapc->snaps[0]);
header->snapc = kmalloc(size, GFP_KERNEL);
if (!header->snapc)
return -ENOMEM;

Expand All @@ -515,8 +519,8 @@ static int rbd_header_from_disk(struct rbd_image_header *header,
GFP_KERNEL);
if (!header->snap_names)
goto err_snapc;
header->snap_sizes = kmalloc(snap_count * sizeof(u64),
GFP_KERNEL);
size = snap_count * sizeof (*header->snap_sizes);
header->snap_sizes = kmalloc(size, GFP_KERNEL);
if (!header->snap_sizes)
goto err_names;
} else {
Expand All @@ -526,14 +530,12 @@ static int rbd_header_from_disk(struct rbd_image_header *header,
header->snap_sizes = NULL;
}

header->object_prefix = kmalloc(sizeof (ondisk->block_name) + 1,
GFP_KERNEL);
size = sizeof (ondisk->block_name) + 1;
header->object_prefix = kmalloc(size, GFP_KERNEL);
if (!header->object_prefix)
goto err_sizes;

memcpy(header->object_prefix, ondisk->block_name,
sizeof(ondisk->block_name));
header->object_prefix[sizeof (ondisk->block_name)] = '\0';
memcpy(header->object_prefix, ondisk->block_name, size - 1);
header->object_prefix[size - 1] = '\0';

header->image_size = le64_to_cpu(ondisk->image_size);
header->obj_order = ondisk->options.order;
Expand Down

0 comments on commit b0b28d2

Please sign in to comment.