Message ID | 20230129121851.2248378-1-willy@infradead.org (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | fscrypt: Copy the memcg information to the ciphertext page | expand |
On Sun, Jan 29, 2023 at 12:18:51PM +0000, Matthew Wilcox (Oracle) wrote: > Both f2fs and ext4 end up passing the ciphertext page to > wbc_account_cgroup_owner(). At the moment, the ciphertext page appears > to belong to no cgroup, so it is accounted to the root_mem_cgroup instead > of whatever cgroup the original page was in. > > It's hard to say how far back this is a bug. The crypto code shared > between ext4 & f2fs was created in May 2015 with commit 0b81d0779072, > but neither filesystem did anything with memcg_data before then. memcg > writeback accounting was added to ext4 in July 2015 in commit 001e4a8775f6 > and it wasn't added to f2fs until January 2018 (commit 578c647879f7). > > I'm going with the ext4 commit since this is the first commit where > there was a difference in behaviour between encrypted and unencrypted > filesystems. > > Fixes: 001e4a8775f6 ("ext4: implement cgroup writeback support") > Cc: stable@vger.kernel.org > Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org> > --- > fs/crypto/crypto.c | 3 +++ > 1 file changed, 3 insertions(+) What is the actual effect of this bug? The bounce pages are short-lived, so surely it doesn't really matter what memory cgroup they get charged to? I guess it's really more about the effect on cgroup writeback? And that's also the reason why this is a problem here but not e.g. in dm-crypt? > diff --git a/fs/crypto/crypto.c b/fs/crypto/crypto.c > index e78be66bbf01..a4e76f96f291 100644 > --- a/fs/crypto/crypto.c > +++ b/fs/crypto/crypto.c > @@ -205,6 +205,9 @@ struct page *fscrypt_encrypt_pagecache_blocks(struct page *page, > } > SetPagePrivate(ciphertext_page); > set_page_private(ciphertext_page, (unsigned long)page); > +#ifdef CONFIG_MEMCG > + ciphertext_page->memcg_data = page->memcg_data; > +#endif > return ciphertext_page; > } Nothing outside mm/ and include/linux/memcontrol.h does anything with memcg_data directly. Are you sure this is the right thing to do here? Also, this patch causes the following: [ 16.192276] BUG: Bad page state in process kworker/u4:2 pfn:10798a [ 16.192919] page:00000000332f5565 refcount:0 mapcount:0 mapping:0000000000000000 index:0x0 pfn:0x10798a [ 16.193848] memcg:ffff88810766c000 [ 16.194186] flags: 0x200000000000000(node=0|zone=2) [ 16.194642] raw: 0200000000000000 0000000000000000 dead000000000122 0000000000000000 [ 16.195356] raw: 0000000000000000 0000000000000000 00000000ffffffff ffff88810766c000 [ 16.196061] page dumped because: page still charged to cgroup [ 16.196599] CPU: 0 PID: 33 Comm: kworker/u4:2 Tainted: G T 6.2.0-rc5-00001-gf84eecbf5db1 #3 [ 16.197494] Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS Arch Linux 1.16.1-1-1 04/01/2014 [ 16.198343] Workqueue: ext4-rsv-conversion ext4_end_io_rsv_work [ 16.198899] Call Trace: [ 16.199143] <TASK> [ 16.199350] show_stack+0x47/0x56 [ 16.199670] dump_stack_lvl+0x55/0x72 [ 16.200019] dump_stack+0x14/0x18 [ 16.200345] bad_page.cold+0x5e/0x8a [ 16.200685] free_page_is_bad_report+0x61/0x70 [ 16.201111] free_pcp_prepare+0x13f/0x290 [ 16.201486] free_unref_page+0x27/0x1f0 [ 16.201848] __free_pages+0xa0/0xc0 [ 16.202186] mempool_free_pages+0xd/0x20 [ 16.202556] mempool_free+0x28/0x90 [ 16.202889] fscrypt_free_bounce_page+0x26/0x40 [ 16.203322] ext4_finish_bio+0x1ed/0x240 [ 16.203690] ext4_release_io_end+0x4a/0x100 [ 16.204088] ext4_end_io_rsv_work+0xa8/0x1b0 [ 16.204492] process_one_work+0x27f/0x580 [ 16.204874] worker_thread+0x5a/0x3d0 [ 16.205229] ? process_one_work+0x580/0x580 [ 16.205621] kthread+0x102/0x130 [ 16.205929] ? kthread_exit+0x30/0x30 [ 16.206280] ret_from_fork+0x1f/0x30 [ 16.206620] </TASK>
On Sun, Jan 29, 2023 at 10:10:35AM -0800, Eric Biggers wrote: > On Sun, Jan 29, 2023 at 12:18:51PM +0000, Matthew Wilcox (Oracle) wrote: > > Both f2fs and ext4 end up passing the ciphertext page to > > wbc_account_cgroup_owner(). At the moment, the ciphertext page appears > > to belong to no cgroup, so it is accounted to the root_mem_cgroup instead > > of whatever cgroup the original page was in. > > > > It's hard to say how far back this is a bug. The crypto code shared > > between ext4 & f2fs was created in May 2015 with commit 0b81d0779072, > > but neither filesystem did anything with memcg_data before then. memcg > > writeback accounting was added to ext4 in July 2015 in commit 001e4a8775f6 > > and it wasn't added to f2fs until January 2018 (commit 578c647879f7). > > What is the actual effect of this bug? > > The bounce pages are short-lived, so surely it doesn't really matter what memory > cgroup they get charged to? Ah, we don't want to charge the _memory_ of the bounce pages to the cgroup. We want to charge the _I/O_ to the cgroup. Looking at the original commits, the effect will be that if you have an unencrypted filesystem, writeback will be throttled according to the cgroup's rules, but if you have an encrypted filesystem, it will escape the cgroup I/O limits. > I guess it's really more about the effect on cgroup writeback? And that's also > the reason why this is a problem here but not e.g. in dm-crypt? I haven't looked at dm-crypt at all, but my assumption is that the fs charges the I/O of the pagecache page to the cgroup, and there's no need to do it again. > > diff --git a/fs/crypto/crypto.c b/fs/crypto/crypto.c > > index e78be66bbf01..a4e76f96f291 100644 > > --- a/fs/crypto/crypto.c > > +++ b/fs/crypto/crypto.c > > @@ -205,6 +205,9 @@ struct page *fscrypt_encrypt_pagecache_blocks(struct page *page, > > } > > SetPagePrivate(ciphertext_page); > > set_page_private(ciphertext_page, (unsigned long)page); > > +#ifdef CONFIG_MEMCG > > + ciphertext_page->memcg_data = page->memcg_data; > > +#endif > > return ciphertext_page; > > } > > Nothing outside mm/ and include/linux/memcontrol.h does anything with memcg_data > directly. Are you sure this is the right thing to do here? Nope ;-) Happy to hear from people who know more about cgroups than I do. Adding some more ccs. > Also, this patch causes the following: Oops. Clearly memcg_data needs to be set to NULL before we free it.
Hello, On Sun, Jan 29, 2023 at 09:26:57PM +0000, Matthew Wilcox wrote: > > > diff --git a/fs/crypto/crypto.c b/fs/crypto/crypto.c > > > index e78be66bbf01..a4e76f96f291 100644 > > > --- a/fs/crypto/crypto.c > > > +++ b/fs/crypto/crypto.c > > > @@ -205,6 +205,9 @@ struct page *fscrypt_encrypt_pagecache_blocks(struct page *page, > > > } > > > SetPagePrivate(ciphertext_page); > > > set_page_private(ciphertext_page, (unsigned long)page); > > > +#ifdef CONFIG_MEMCG > > > + ciphertext_page->memcg_data = page->memcg_data; > > > +#endif > > > return ciphertext_page; > > > } > > > > Nothing outside mm/ and include/linux/memcontrol.h does anything with memcg_data > > directly. Are you sure this is the right thing to do here? > > Nope ;-) Happy to hear from people who know more about cgroups than I > do. Adding some more ccs. > > > Also, this patch causes the following: > > Oops. Clearly memcg_data needs to be set to NULL before we free it. These can usually be handled by explicitly associating the bio's to the desired cgroups using one of bio_associate_blkg*() or bio_clone_blkg_association(). It is possible to go through memcg ownership too using set_active_memcg() so that the page is owned by the target cgroup; however, the page ownership doesn't directly map to IO ownership as the relationship depends on the type of the page (e.g. IO ownership for pagecache writeback is determined per-inode, not per-page). If the in-flight pages are limited, it probably is better to set bio association directly. Thanks.
On Tue, Jan 31, 2023 at 11:27:44AM -1000, Tejun Heo wrote: > Hello, > > On Sun, Jan 29, 2023 at 09:26:57PM +0000, Matthew Wilcox wrote: > > > > diff --git a/fs/crypto/crypto.c b/fs/crypto/crypto.c > > > > index e78be66bbf01..a4e76f96f291 100644 > > > > --- a/fs/crypto/crypto.c > > > > +++ b/fs/crypto/crypto.c > > > > @@ -205,6 +205,9 @@ struct page *fscrypt_encrypt_pagecache_blocks(struct page *page, > > > > } > > > > SetPagePrivate(ciphertext_page); > > > > set_page_private(ciphertext_page, (unsigned long)page); > > > > +#ifdef CONFIG_MEMCG > > > > + ciphertext_page->memcg_data = page->memcg_data; > > > > +#endif > > > > return ciphertext_page; > > > > } > > > > > > Nothing outside mm/ and include/linux/memcontrol.h does anything with memcg_data > > > directly. Are you sure this is the right thing to do here? > > > > Nope ;-) Happy to hear from people who know more about cgroups than I > > do. Adding some more ccs. > > > > > Also, this patch causes the following: > > > > Oops. Clearly memcg_data needs to be set to NULL before we free it. > > These can usually be handled by explicitly associating the bio's to the > desired cgroups using one of bio_associate_blkg*() or > bio_clone_blkg_association(). Here that already happens in wbc_init_bio(), called from io_submit_init_bio() in fs/ext4/page-io.c. > It is possible to go through memcg ownership > too using set_active_memcg() so that the page is owned by the target cgroup; > however, the page ownership doesn't directly map to IO ownership as the > relationship depends on the type of the page (e.g. IO ownership for > pagecache writeback is determined per-inode, not per-page). If the in-flight > pages are limited, it probably is better to set bio association directly. ext4 also calls wbc_account_cgroup_owner() for each pagecache page that's written out. It seems this is for a different purpose -- it looks like the fs-writeback code is trying to figure out which cgroup "owns" the inode based on which cgroup "owns" most of the pagecache pages? The bug we're discussing here is that when ext4 writes out a pagecache page in an encrypted file, it first encrypts the data into a bounce page, then passes the bounce page (which don't have a memcg) to wbc_account_cgroup_owner(). Maybe the proper fix is to just pass the pagecache page to wbc_account_cgroup_owner() instead? See below for ext4 (a separate patch would be needed for f2fs): diff --git a/fs/ext4/page-io.c b/fs/ext4/page-io.c index beaec6d81074a..1e4db96a04e63 100644 --- a/fs/ext4/page-io.c +++ b/fs/ext4/page-io.c @@ -409,7 +409,8 @@ static void io_submit_init_bio(struct ext4_io_submit *io, static void io_submit_add_bh(struct ext4_io_submit *io, struct inode *inode, - struct page *page, + struct page *pagecache_page, + struct page *bounce_page, struct buffer_head *bh) { int ret; @@ -421,10 +422,11 @@ static void io_submit_add_bh(struct ext4_io_submit *io, } if (io->io_bio == NULL) io_submit_init_bio(io, bh); - ret = bio_add_page(io->io_bio, page, bh->b_size, bh_offset(bh)); + ret = bio_add_page(io->io_bio, bounce_page ?: pagecache_page, + bh->b_size, bh_offset(bh)); if (ret != bh->b_size) goto submit_and_retry; - wbc_account_cgroup_owner(io->io_wbc, page, bh->b_size); + wbc_account_cgroup_owner(io->io_wbc, pagecache_page, bh->b_size); io->io_next_block++; } @@ -561,8 +563,7 @@ int ext4_bio_write_page(struct ext4_io_submit *io, do { if (!buffer_async_write(bh)) continue; - io_submit_add_bh(io, inode, - bounce_page ? bounce_page : page, bh); + io_submit_add_bh(io, inode, page, bounce_page, bh); } while ((bh = bh->b_this_page) != head); unlock: unlock_page(page);
Hello, On Tue, Jan 31, 2023 at 10:31:31PM -0800, Eric Biggers wrote: > > These can usually be handled by explicitly associating the bio's to the > > desired cgroups using one of bio_associate_blkg*() or > > bio_clone_blkg_association(). > > Here that already happens in wbc_init_bio(), called from io_submit_init_bio() in > fs/ext4/page-io.c. Yeah, without bouncing, that's usually how writeback IOs are associated with their cgroups. > > It is possible to go through memcg ownership > > too using set_active_memcg() so that the page is owned by the target cgroup; > > however, the page ownership doesn't directly map to IO ownership as the > > relationship depends on the type of the page (e.g. IO ownership for > > pagecache writeback is determined per-inode, not per-page). If the in-flight > > pages are limited, it probably is better to set bio association directly. > > ext4 also calls wbc_account_cgroup_owner() for each pagecache page that's > written out. It seems this is for a different purpose -- it looks like the > fs-writeback code is trying to figure out which cgroup "owns" the inode based on > which cgroup "owns" most of the pagecache pages? Yeah, there's a difference between how memory and IO track cgroup ownership. Memory ownership is per-page but IO ownership is per-inode. This is because splitting writeback IOs of the same inode can perform really badly, so we try to find the majority dirty page owner cgroup of a given inode and associate the whole inode to that cgroup. So, something like md / dm, which gets a bio from filesystem and then bounces it to another bio, would use either bio_clone_blkg_association() to copy the association of the original bio (which probably is set through wbc_init_bio()) or determine the cgroup the bio should belong to somehow and set it explicitly with bio_associate_blkg(). However, here, as the filesystem is the one bouncing I guess it can be simpler. > The bug we're discussing here is that when ext4 writes out a pagecache page in > an encrypted file, it first encrypts the data into a bounce page, then passes > the bounce page (which don't have a memcg) to wbc_account_cgroup_owner(). Maybe > the proper fix is to just pass the pagecache page to wbc_account_cgroup_owner() > instead? See below for ext4 (a separate patch would be needed for f2fs): Yeah, this makes sense to me and is the right thing to do no matter what. wbc_account_cgroup_owner() should be fed the origin page so that the IO can be blamed on the owner of that page. Thanks.
On Thu, Feb 02, 2023 at 11:30:42AM -1000, Tejun Heo wrote: > > The bug we're discussing here is that when ext4 writes out a pagecache page in > > an encrypted file, it first encrypts the data into a bounce page, then passes > > the bounce page (which don't have a memcg) to wbc_account_cgroup_owner(). Maybe > > the proper fix is to just pass the pagecache page to wbc_account_cgroup_owner() > > instead? See below for ext4 (a separate patch would be needed for f2fs): > > Yeah, this makes sense to me and is the right thing to do no matter what. > wbc_account_cgroup_owner() should be fed the origin page so that the IO can > be blamed on the owner of that page. Thanks. These patches fix this for ext4 and f2fs: * https://lore.kernel.org/r/20230203005503.141557-1-ebiggers@kernel.org * https://lore.kernel.org/r/20230203010239.216421-1-ebiggers@kernel.org - Eric
diff --git a/fs/crypto/crypto.c b/fs/crypto/crypto.c index e78be66bbf01..a4e76f96f291 100644 --- a/fs/crypto/crypto.c +++ b/fs/crypto/crypto.c @@ -205,6 +205,9 @@ struct page *fscrypt_encrypt_pagecache_blocks(struct page *page, } SetPagePrivate(ciphertext_page); set_page_private(ciphertext_page, (unsigned long)page); +#ifdef CONFIG_MEMCG + ciphertext_page->memcg_data = page->memcg_data; +#endif return ciphertext_page; } EXPORT_SYMBOL(fscrypt_encrypt_pagecache_blocks);
Both f2fs and ext4 end up passing the ciphertext page to wbc_account_cgroup_owner(). At the moment, the ciphertext page appears to belong to no cgroup, so it is accounted to the root_mem_cgroup instead of whatever cgroup the original page was in. It's hard to say how far back this is a bug. The crypto code shared between ext4 & f2fs was created in May 2015 with commit 0b81d0779072, but neither filesystem did anything with memcg_data before then. memcg writeback accounting was added to ext4 in July 2015 in commit 001e4a8775f6 and it wasn't added to f2fs until January 2018 (commit 578c647879f7). I'm going with the ext4 commit since this is the first commit where there was a difference in behaviour between encrypted and unencrypted filesystems. Fixes: 001e4a8775f6 ("ext4: implement cgroup writeback support") Cc: stable@vger.kernel.org Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org> --- fs/crypto/crypto.c | 3 +++ 1 file changed, 3 insertions(+)