ceph: fix memory leaks in __ceph_sync_read()
BugLink: https://bugs.launchpad.net/bugs/2102266 commit d6fd6f8280f0257ba93f16900a0d3d3912f32c79 upstream. In two `break` statements, the call to ceph_release_page_vector() was missing, leaking the allocation from ceph_alloc_page_vector(). Instead of adding the missing ceph_release_page_vector() calls, the Ceph maintainers preferred to transfer page ownership to the `ceph_osd_request` by passing `own_pages=true` to osd_req_op_extent_osd_data_pages(). This requires postponing the ceph_osdc_put_request() call until after the block that accesses the `pages`. Cc: stable@vger.kernel.org Fixes:03bc06c7b0("ceph: add new mount option to enable sparse reads") Fixes:f0fe1e54cf("ceph: plumb in decryption during reads") Signed-off-by: Max Kellermann <max.kellermann@ionos.com> Reviewed-by: Ilya Dryomov <idryomov@gmail.com> Signed-off-by: Ilya Dryomov <idryomov@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Koichiro Den <koichiro.den@canonical.com> Signed-off-by: Mehmet Basaran <mehmet.basaran@canonical.com>
This commit is contained in:
committed by
Mehmet Basaran
parent
88ca625637
commit
4fc149bb7e
+3
-4
@@ -1065,7 +1065,7 @@ ssize_t __ceph_sync_read(struct inode *inode, loff_t *ki_pos,
|
||||
|
||||
osd_req_op_extent_osd_data_pages(req, 0, pages, read_len,
|
||||
offset_in_page(read_off),
|
||||
false, false);
|
||||
false, true);
|
||||
|
||||
op = &req->r_ops[0];
|
||||
if (sparse) {
|
||||
@@ -1131,8 +1131,6 @@ ssize_t __ceph_sync_read(struct inode *inode, loff_t *ki_pos,
|
||||
ret = min_t(ssize_t, fret, len);
|
||||
}
|
||||
|
||||
ceph_osdc_put_request(req);
|
||||
|
||||
/* Short read but not EOF? Zero out the remainder. */
|
||||
if (ret < len && (off + ret < i_size)) {
|
||||
int zlen = min(len - ret, i_size - off - ret);
|
||||
@@ -1164,7 +1162,8 @@ ssize_t __ceph_sync_read(struct inode *inode, loff_t *ki_pos,
|
||||
break;
|
||||
}
|
||||
}
|
||||
ceph_release_page_vector(pages, num_pages);
|
||||
|
||||
ceph_osdc_put_request(req);
|
||||
|
||||
if (off >= i_size || !more)
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user