Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 28f259b7 authored by Vasiliy Kulikov's avatar Vasiliy Kulikov Committed by Sage Weil
Browse files

block: rbd: fixed may leaks



rbd_client_create() doesn't free rbdc, this leads to many leaks.

seg_len in rbd_do_op() is unsigned, so (seg_len < 0) makes no sense.
Also if fixed check fails then seg_name is leaked.

Signed-off-by: default avatarVasiliy Kulikov <segooon@gmail.com>
Signed-off-by: default avatarYehuda Sadeh <yehuda@hq.newdream.net>
parent 496e5955
Loading
Loading
Loading
Loading
+8 −6
Original line number Original line Diff line number Diff line
@@ -241,6 +241,7 @@ static struct rbd_client *rbd_client_create(struct ceph_options *opt)
	rbdc->client = ceph_create_client(opt, rbdc);
	rbdc->client = ceph_create_client(opt, rbdc);
	if (IS_ERR(rbdc->client))
	if (IS_ERR(rbdc->client))
		goto out_rbdc;
		goto out_rbdc;
	opt = NULL; /* Now rbdc->client is responsible for opt */


	ret = ceph_open_session(rbdc->client);
	ret = ceph_open_session(rbdc->client);
	if (ret < 0)
	if (ret < 0)
@@ -255,13 +256,12 @@ static struct rbd_client *rbd_client_create(struct ceph_options *opt)


out_err:
out_err:
	ceph_destroy_client(rbdc->client);
	ceph_destroy_client(rbdc->client);
	return ERR_PTR(ret);

out_rbdc:
out_rbdc:
	kfree(rbdc);
	kfree(rbdc);
out_opt:
out_opt:
	if (opt)
		ceph_destroy_options(opt);
		ceph_destroy_options(opt);
	return ERR_PTR(-ENOMEM);
	return ERR_PTR(ret);
}
}


/*
/*
@@ -889,8 +889,10 @@ static int rbd_do_op(struct request *rq,
				  rbd_dev->header.block_name,
				  rbd_dev->header.block_name,
				  ofs, len,
				  ofs, len,
				  seg_name, &seg_ofs);
				  seg_name, &seg_ofs);
	if (seg_len < 0)
	if ((s64)seg_len < 0) {
		return seg_len;
		ret = seg_len;
		goto done;
	}


	payload_len = (flags & CEPH_OSD_FLAG_WRITE ? seg_len : 0);
	payload_len = (flags & CEPH_OSD_FLAG_WRITE ? seg_len : 0);