* Is is reasonable to support quota in fuse?
@ 2024-06-03 11:36 JunChao Sun
2024-06-04 6:03 ` JunChao Sun
` (2 more replies)
0 siblings, 3 replies; 14+ messages in thread
From: JunChao Sun @ 2024-06-03 11:36 UTC (permalink / raw)
To: linux-fsdevel
Currently, FUSE in the kernel part does not support quotas. If users
want to implement quota functionality with FUSE, they can only achieve
this at the user level using the underlying file system features.
However, if the underlying file system, such as btrfs, does not
support UID/GID level quotas and only support subvolume level quota,
users will need to find alternative methods to implement quota
functionality.
And consider another scenario: implementing a FUSE file system on top
of an ext4 file system, but all writes to ext4 are done as a single
user (e.g., root). In this case, ext4's UID and GID quotas are not
applicable, and users need to find other ways to implement quotas for
users or groups.
Given these challenges, I would like to inquire about the community's
perspective on implementing quota functionality at the FUSE kernel
part. Is it feasible to implement quota functionality in the FUSE
kernel module, allowing users to set quotas for FUSE just as they
would for ext4 (e.g., using commands like quotaon /mnt/fusefs or
quotaset /mnt/fusefs)? Would the community consider accepting patches
for this feature?
I look forward to your insights on this matter.
Thank you for your time and consideration.
Best regards.
^ permalink raw reply [flat|nested] 14+ messages in thread* Re: Is is reasonable to support quota in fuse? 2024-06-03 11:36 Is is reasonable to support quota in fuse? JunChao Sun @ 2024-06-04 6:03 ` JunChao Sun 2024-06-04 6:40 ` Miklos Szeredi 2024-06-06 15:17 ` Darrick J. Wong 2 siblings, 0 replies; 14+ messages in thread From: JunChao Sun @ 2024-06-04 6:03 UTC (permalink / raw) To: linux-fsdevel, miklos Friendly ping... JunChao Sun <sunjunchao2870@gmail.com> 于2024年6月3日周一 19:36写道: > > Currently, FUSE in the kernel part does not support quotas. If users > want to implement quota functionality with FUSE, they can only achieve > this at the user level using the underlying file system features. > However, if the underlying file system, such as btrfs, does not > support UID/GID level quotas and only support subvolume level quota, > users will need to find alternative methods to implement quota > functionality. > > And consider another scenario: implementing a FUSE file system on top > of an ext4 file system, but all writes to ext4 are done as a single > user (e.g., root). In this case, ext4's UID and GID quotas are not > applicable, and users need to find other ways to implement quotas for > users or groups. > > Given these challenges, I would like to inquire about the community's > perspective on implementing quota functionality at the FUSE kernel > part. Is it feasible to implement quota functionality in the FUSE > kernel module, allowing users to set quotas for FUSE just as they > would for ext4 (e.g., using commands like quotaon /mnt/fusefs or > quotaset /mnt/fusefs)? Would the community consider accepting patches > for this feature? > > I look forward to your insights on this matter. > > Thank you for your time and consideration. > > Best regards. ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Is is reasonable to support quota in fuse? 2024-06-03 11:36 Is is reasonable to support quota in fuse? JunChao Sun 2024-06-04 6:03 ` JunChao Sun @ 2024-06-04 6:40 ` Miklos Szeredi 2024-06-04 6:54 ` JunChao Sun 2024-06-06 15:17 ` Darrick J. Wong 2 siblings, 1 reply; 14+ messages in thread From: Miklos Szeredi @ 2024-06-04 6:40 UTC (permalink / raw) To: JunChao Sun; +Cc: linux-fsdevel, Jan Kara On Mon, 3 Jun 2024 at 13:37, JunChao Sun <sunjunchao2870@gmail.com> wrote: > Given these challenges, I would like to inquire about the community's > perspective on implementing quota functionality at the FUSE kernel > part. Is it feasible to implement quota functionality in the FUSE > kernel module, allowing users to set quotas for FUSE just as they > would for ext4 (e.g., using commands like quotaon /mnt/fusefs or > quotaset /mnt/fusefs)? Would the community consider accepting patches > for this feature? I would say yes, but I have no experience with quota in any way, so cannot help with the details. Thanks, Miklos ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Is is reasonable to support quota in fuse? 2024-06-04 6:40 ` Miklos Szeredi @ 2024-06-04 6:54 ` JunChao Sun 2024-06-04 9:27 ` Jan Kara 0 siblings, 1 reply; 14+ messages in thread From: JunChao Sun @ 2024-06-04 6:54 UTC (permalink / raw) To: Miklos Szeredi; +Cc: linux-fsdevel, Jan Kara Miklos Szeredi <miklos@szeredi.hu> 于2024年6月4日周二 14:40写道: > > On Mon, 3 Jun 2024 at 13:37, JunChao Sun <sunjunchao2870@gmail.com> wrote: > > > Given these challenges, I would like to inquire about the community's > > perspective on implementing quota functionality at the FUSE kernel > > part. Is it feasible to implement quota functionality in the FUSE > > kernel module, allowing users to set quotas for FUSE just as they > > would for ext4 (e.g., using commands like quotaon /mnt/fusefs or > > quotaset /mnt/fusefs)? Would the community consider accepting patches > > for this feature? > > > > I would say yes, but I have no experience with quota in any way, so > > cannot help with the details. Thanks for your reply. I'd like try to implement this feature. Best regards. > > Thanks, > Miklos ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Is is reasonable to support quota in fuse? 2024-06-04 6:54 ` JunChao Sun @ 2024-06-04 9:27 ` Jan Kara 2024-06-04 13:49 ` JunChao Sun 0 siblings, 1 reply; 14+ messages in thread From: Jan Kara @ 2024-06-04 9:27 UTC (permalink / raw) To: JunChao Sun; +Cc: Miklos Szeredi, linux-fsdevel, Jan Kara On Tue 04-06-24 14:54:01, JunChao Sun wrote: > Miklos Szeredi <miklos@szeredi.hu> 于2024年6月4日周二 14:40写道: > > > > On Mon, 3 Jun 2024 at 13:37, JunChao Sun <sunjunchao2870@gmail.com> wrote: > > > > > Given these challenges, I would like to inquire about the community's > > > perspective on implementing quota functionality at the FUSE kernel > > > part. Is it feasible to implement quota functionality in the FUSE > > > kernel module, allowing users to set quotas for FUSE just as they > > > would for ext4 (e.g., using commands like quotaon /mnt/fusefs or > > > quotaset /mnt/fusefs)? Would the community consider accepting patches > > > for this feature? > > > > > > > I would say yes, but I have no experience with quota in any way, so > > > cannot help with the details. > > Thanks for your reply. I'd like try to implement this feature. Nice idea! But before you go and spend a lot of time trying to implement something, I suggest that you write down a design how you imagine all this to work and we can talk about it. Questions like: Do you have particular usecases in mind? Where do you plan to perform the accounting / enforcement? Where do you want to store quota information? How do you want to recover from unclean shutdowns? Etc... Honza -- Jan Kara <jack@suse.com> SUSE Labs, CR ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Is is reasonable to support quota in fuse? 2024-06-04 9:27 ` Jan Kara @ 2024-06-04 13:49 ` JunChao Sun 2024-06-05 10:29 ` Jan Kara 0 siblings, 1 reply; 14+ messages in thread From: JunChao Sun @ 2024-06-04 13:49 UTC (permalink / raw) To: Jan Kara; +Cc: Miklos Szeredi, linux-fsdevel Jan Kara <jack@suse.cz> 于2024年6月4日周二 17:27写道: > > On Tue 04-06-24 14:54:01, JunChao Sun wrote: > > Miklos Szeredi <miklos@szeredi.hu> 于2024年6月4日周二 14:40写道: > > > > > > On Mon, 3 Jun 2024 at 13:37, JunChao Sun <sunjunchao2870@gmail.com> wrote: > > > > > > > Given these challenges, I would like to inquire about the community's > > > > perspective on implementing quota functionality at the FUSE kernel > > > > part. Is it feasible to implement quota functionality in the FUSE > > > > kernel module, allowing users to set quotas for FUSE just as they > > > > would for ext4 (e.g., using commands like quotaon /mnt/fusefs or > > > > quotaset /mnt/fusefs)? Would the community consider accepting patches > > > > for this feature? > > > > > > > > > > I would say yes, but I have no experience with quota in any way, so > > > > cannot help with the details. > > > > Thanks for your reply. I'd like try to implement this feature. > > Nice idea! But before you go and spend a lot of time trying to implement > something, I suggest that you write down a design how you imagine all this > to work and we can talk about it. Questions like: Do you have particular > usecases in mind? Where do you plan to perform the accounting / > enforcement? Where do you want to store quota information? How do you want > to recover from unclean shutdowns? Etc... > > Honza > > -- > Jan Kara <jack@suse.com> > SUSE Labs, CR Thanks a lot for your suggestions. I am reviewing the quota code of ext4 and the fuse code to determine if the implementation method used in ext4 can be ported to fuse. Based on my current understanding, the key issue is that ext4 reserves several inodes for quotas and can manage the disk itself, allowing it to directly flush quota data to the disk blocks corresponding to the quota inodes within the kernel. However, fuse does not seem to manage the disk itself; it sends all read and write requests to user space for completion. Therefore, it may not be possible to directly flush the data in the quota inode to the disk in fuse. I am considering whether it would be feasible to implement the quota inode in user space in a similar manner. For example, users could reserve a few regular files that are invisible to actual file system users to store the contents of quota. When updating the quota, the user would be notified to flush the quota data to the disk. The benefit of this approach is that it can directly reuse the quota metadata format from the kernel, users do not need to redesign metadata. However, performance might be an issue with this approach. And if fuse could reserve some disk blocks to save contents of quota inode, that would be better, but as far as my current understanding goes, it seems that this is not possible. I haven't finalized the design yet and still need to look at the code and related documents. Best regards -- Junchao Sun <sunjunchao2870@gmail.com> ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Is is reasonable to support quota in fuse? 2024-06-04 13:49 ` JunChao Sun @ 2024-06-05 10:29 ` Jan Kara 2024-06-05 19:53 ` Theodore Ts'o 2024-06-06 3:14 ` JunChao Sun 0 siblings, 2 replies; 14+ messages in thread From: Jan Kara @ 2024-06-05 10:29 UTC (permalink / raw) To: JunChao Sun; +Cc: Jan Kara, Miklos Szeredi, linux-fsdevel On Tue 04-06-24 21:49:20, JunChao Sun wrote: > Jan Kara <jack@suse.cz> 于2024年6月4日周二 17:27写道: > > On Tue 04-06-24 14:54:01, JunChao Sun wrote: > > > Miklos Szeredi <miklos@szeredi.hu> 于2024年6月4日周二 14:40写道: > > > > > > > > On Mon, 3 Jun 2024 at 13:37, JunChao Sun <sunjunchao2870@gmail.com> wrote: > > > > > > > > > Given these challenges, I would like to inquire about the community's > > > > > perspective on implementing quota functionality at the FUSE kernel > > > > > part. Is it feasible to implement quota functionality in the FUSE > > > > > kernel module, allowing users to set quotas for FUSE just as they > > > > > would for ext4 (e.g., using commands like quotaon /mnt/fusefs or > > > > > quotaset /mnt/fusefs)? Would the community consider accepting patches > > > > > for this feature? > > > > > > > > > > > > > I would say yes, but I have no experience with quota in any way, so > > > > > cannot help with the details. > > > > > > Thanks for your reply. I'd like try to implement this feature. > > > > Nice idea! But before you go and spend a lot of time trying to implement > > something, I suggest that you write down a design how you imagine all this > > to work and we can talk about it. Questions like: Do you have particular > > usecases in mind? Where do you plan to perform the accounting / > > enforcement? Where do you want to store quota information? How do you want > > to recover from unclean shutdowns? Etc... > > Thanks a lot for your suggestions. > > I am reviewing the quota code of ext4 and the fuse code to determine > if the implementation method used in ext4 can be ported to fuse. Based > on my current understanding, the key issue is that ext4 reserves > several inodes for quotas and can manage the disk itself, allowing it > to directly flush quota data to the disk blocks corresponding to the > quota inodes within the kernel. Yes. > However, fuse does not seem to manage > the disk itself; it sends all read and write requests to user space > for completion. Therefore, it may not be possible to directly flush > the data in the quota inode to the disk in fuse. Yes, ext4 uses journalling to keep filesystem state consistent with quota information. Doing this within FUSE would be rather difficult (essentially you would have to implement journal within FUSE with will have rather high performace overhead). But that's why I'm asking for usecases. For some usecases it may be fine that in case of unclean shutdown you run quotacheck program to update quota information based on current usage - non-journalling filesystems use this method. So where do you want to use quotas on a FUSE filesystem? > I am considering whether it would be feasible to implement the quota > inode in user space in a similar manner. For example, users could > reserve a few regular files that are invisible to actual file system > users to store the contents of quota. When updating the quota, the > user would be notified to flush the quota data to the disk. The > benefit of this approach is that it can directly reuse the quota > metadata format from the kernel, users do not need to redesign > metadata. However, performance might be an issue with this approach. Yes, storing quota data in some files inside the filesystem is probably the easiest way to go. I'd just not bother with flushing because as you say the performance would suck in that case. Honza -- Jan Kara <jack@suse.com> SUSE Labs, CR ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Is is reasonable to support quota in fuse? 2024-06-05 10:29 ` Jan Kara @ 2024-06-05 19:53 ` Theodore Ts'o 2024-06-06 3:58 ` JunChao Sun 2024-06-06 3:14 ` JunChao Sun 1 sibling, 1 reply; 14+ messages in thread From: Theodore Ts'o @ 2024-06-05 19:53 UTC (permalink / raw) To: Jan Kara; +Cc: JunChao Sun, Miklos Szeredi, linux-fsdevel On Wed, Jun 05, 2024 at 12:29:45PM +0200, Jan Kara wrote: > > But that's why I'm asking for usecases. For some usecases it may be fine > that in case of unclean shutdown you run quotacheck program to update quota > information based on current usage - non-journalling filesystems use this > method. So where do you want to use quotas on a FUSE filesystem? Something else to consider is whether you want to allow the user to query the current quota information (e.g., the "quota" command), and whether you want the system administrator to be able to set quota limits, and whether you expect that when the soft quota limits are exceeded that warnings get written to the user's tty. All of this would mean that the kernel fuse driver would need changes, and the kernel<->userspae FUSE protocol would need to be extended as well. And at that pointm you really want to get the FUSE maintainer involved, since the FUSE protocol is somethign which is used on other OS's (e.g., Windows, MacOS, etc.) As Jan put it, it's all in the use cases that you expect to be able to support. If you just want quota to be tracked, and for certain writes to return EDQUOT, that's one thing. If you want the full Linux quota user experience, that's quite another. Cheers, - Ted ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Is is reasonable to support quota in fuse? 2024-06-05 19:53 ` Theodore Ts'o @ 2024-06-06 3:58 ` JunChao Sun 0 siblings, 0 replies; 14+ messages in thread From: JunChao Sun @ 2024-06-06 3:58 UTC (permalink / raw) To: Theodore Ts'o; +Cc: Jan Kara, Miklos Szeredi, linux-fsdevel Theodore Ts'o <tytso@mit.edu> 于2024年6月6日周四 03:53写道: > > On Wed, Jun 05, 2024 at 12:29:45PM +0200, Jan Kara wrote: > > > > But that's why I'm asking for usecases. For some usecases it may be fine > > that in case of unclean shutdown you run quotacheck program to update quota > > information based on current usage - non-journalling filesystems use this > > method. So where do you want to use quotas on a FUSE filesystem? > > > > Something else to consider is whether you want to allow the user to > > query the current quota information (e.g., the "quota" command), and > > whether you want the system administrator to be able to set quota > > limits, and whether you expect that when the soft quota limits are > > exceeded that warnings get written to the user's tty. All of this Thanks a lot for your kind reminders and suggestions. In the first step, I plan to implement basic functionalities. This includes users being able to query quotas, administrators being able to set quotas, and returning EDQUOT when the hard limit is exceeded. However, it does not include issuing warnings to the user's tty when the soft limit is exceeded or providing other full Linux quota support beyond this. > > would mean that the kernel fuse driver would need changes, and the > > kernel<->userspae FUSE protocol would need to be extended as well. > > And at that pointm you really want to get the FUSE maintainer > > involved, since the FUSE protocol is somethign which is used on other > > OS's (e.g., Windows, MacOS, etc.) Yes, we need to extend the protocol to inform users about quota updates. Reading may not require informing the user; it can be done directly in the kernel, but careful consideration is needed on how to implement this. And further discussion and thought are needed. After completing the basic functional thinking and implementation design, I will discuss with the FUSE maintainer which protocol extensions are feasible and which are not. > > As Jan put it, it's all in the use cases that you expect to be able to > support. If you just want quota to be tracked, and for certain writes > to return EDQUOT, that's one thing. If you want the full Linux quota > user experience, that's quite another. > > Cheers, > > - Ted Best regards, -- Junchao Sun <sunjunchao2870@gmail.com> ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Is is reasonable to support quota in fuse? 2024-06-05 10:29 ` Jan Kara 2024-06-05 19:53 ` Theodore Ts'o @ 2024-06-06 3:14 ` JunChao Sun 2024-06-06 16:10 ` Jan Kara 1 sibling, 1 reply; 14+ messages in thread From: JunChao Sun @ 2024-06-06 3:14 UTC (permalink / raw) To: Jan Kara; +Cc: Miklos Szeredi, linux-fsdevel, Theodore Ts'o Jan Kara <jack@suse.cz> 于2024年6月5日周三 18:29写道: > > On Tue 04-06-24 21:49:20, JunChao Sun wrote: > > Jan Kara <jack@suse.cz> 于2024年6月4日周二 17:27写道: > > > On Tue 04-06-24 14:54:01, JunChao Sun wrote: > > > > Miklos Szeredi <miklos@szeredi.hu> 于2024年6月4日周二 14:40写道: > > > > > > > > > > On Mon, 3 Jun 2024 at 13:37, JunChao Sun <sunjunchao2870@gmail.com> wrote: > > > > > > > > > > > Given these challenges, I would like to inquire about the community's > > > > > > perspective on implementing quota functionality at the FUSE kernel > > > > > > part. Is it feasible to implement quota functionality in the FUSE > > > > > > kernel module, allowing users to set quotas for FUSE just as they > > > > > > would for ext4 (e.g., using commands like quotaon /mnt/fusefs or > > > > > > quotaset /mnt/fusefs)? Would the community consider accepting patches > > > > > > for this feature? > > > > > > > > > > > > > > > > I would say yes, but I have no experience with quota in any way, so > > > > > > cannot help with the details. > > > > > > > > Thanks for your reply. I'd like try to implement this feature. > > > > > > Nice idea! But before you go and spend a lot of time trying to implement > > > something, I suggest that you write down a design how you imagine all this > > > to work and we can talk about it. Questions like: Do you have particular > > > usecases in mind? Where do you plan to perform the accounting / > > > enforcement? Where do you want to store quota information? How do you want > > > to recover from unclean shutdowns? Etc... > > > > Thanks a lot for your suggestions. > > > > I am reviewing the quota code of ext4 and the fuse code to determine > > if the implementation method used in ext4 can be ported to fuse. Based > > on my current understanding, the key issue is that ext4 reserves > > several inodes for quotas and can manage the disk itself, allowing it > > to directly flush quota data to the disk blocks corresponding to the > > quota inodes within the kernel. > > Yes. > > > However, fuse does not seem to manage > > the disk itself; it sends all read and write requests to user space > > for completion. Therefore, it may not be possible to directly flush > > the data in the quota inode to the disk in fuse. > > Yes, ext4 uses journalling to keep filesystem state consistent with quota > information. Doing this within FUSE would be rather difficult (essentially > you would have to implement journal within FUSE with will have rather high > performace overhead). > > > > But that's why I'm asking for usecases. For some usecases it may be fine > > that in case of unclean shutdown you run quotacheck program to update quota > > information based on current usage - non-journalling filesystems use this > > method. So where do you want to use quotas on a FUSE filesystem? Please allow me to ask a silly question. I'm not sure if I correctly understand what you mean by 'unclean shutdown'. Do you mean an inconsistent state that requires using fsck to repair, like in ext4 after a sudden power loss, or is it something else only about quota? In my scenario, FUSE (both the kernel and user space parts) acts merely as a proxy. FUSE is based on multiple file systems, and a user's file and directory exists in only one of these file systems. It does not even have its own superblock or inode metadata. When a user performs read or write operations on a specific file, FUSE checks the directory corresponding to this file on each file system to see if the user's file is there; if one is not, it continues to check the next file system. > > > I am considering whether it would be feasible to implement the quota > > inode in user space in a similar manner. For example, users could > > reserve a few regular files that are invisible to actual file system > > users to store the contents of quota. When updating the quota, the > > user would be notified to flush the quota data to the disk. The > > benefit of this approach is that it can directly reuse the quota > > metadata format from the kernel, users do not need to redesign > > metadata. However, performance might be an issue with this approach. > > Yes, storing quota data in some files inside the filesystem is probably the > easiest way to go. I'd just not bother with flushing because as you say > the performance would suck in that case. What about using caching and asynchronous updates? For example, in FUSE, allocate some pages to cache the quota data. When updating quota data, write to the cache first and then place the task in a work queue. The work queue will then send the request to user space to complete the actual disk write operation. When there are read requests, the content is read directly from the cache. The problem with this approach is that asynchronous updates might lead to loss of quota data in the event of a sudden power failure. This seems acceptable to me, but I am not sure if it aligns with the definition of quota. Additionally, this assumes that the quota file will not be very large, which I believe is a reasonable assumption.Perhaps there are some drawbacks I haven't considered? Regarding the enforcement of quota limits, I plan to perform this in the kernel. For project quotas, the kernel can know how much space and how many inodes are being used by the corresponding project ID. For now, I only want to implement project quota because I believe that user and group quotas can be simulated using project quotas. Additionally, users' definitions of file system users and groups might differ from file UID and GID. Users can freely use project IDs to define file system users and groups. > > Honza > -- > Jan Kara <jack@suse.com> > SUSE Labs, CR Best regards, -- Junchao Sun <sunjunchao2870@gmail.com> ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Is is reasonable to support quota in fuse? 2024-06-06 3:14 ` JunChao Sun @ 2024-06-06 16:10 ` Jan Kara 2024-06-07 12:11 ` JunChao Sun 0 siblings, 1 reply; 14+ messages in thread From: Jan Kara @ 2024-06-06 16:10 UTC (permalink / raw) To: JunChao Sun; +Cc: Jan Kara, Miklos Szeredi, linux-fsdevel, Theodore Ts'o On Thu 06-06-24 11:14:48, JunChao Sun wrote: > Jan Kara <jack@suse.cz> 于2024年6月5日周三 18:29写道: > > > > On Tue 04-06-24 21:49:20, JunChao Sun wrote: > > > Jan Kara <jack@suse.cz> 于2024年6月4日周二 17:27写道: > > > > On Tue 04-06-24 14:54:01, JunChao Sun wrote: > > > > > Miklos Szeredi <miklos@szeredi.hu> 于2024年6月4日周二 14:40写道: > > > > > > > > > > > > On Mon, 3 Jun 2024 at 13:37, JunChao Sun <sunjunchao2870@gmail.com> wrote: > > > > > > > > > > > > > Given these challenges, I would like to inquire about the community's > > > > > > > perspective on implementing quota functionality at the FUSE kernel > > > > > > > part. Is it feasible to implement quota functionality in the FUSE > > > > > > > kernel module, allowing users to set quotas for FUSE just as they > > > > > > > would for ext4 (e.g., using commands like quotaon /mnt/fusefs or > > > > > > > quotaset /mnt/fusefs)? Would the community consider accepting patches > > > > > > > for this feature? > > > > > > > > > > > > > > > > > > > I would say yes, but I have no experience with quota in any way, so > > > > > > > cannot help with the details. > > > > > > > > > > Thanks for your reply. I'd like try to implement this feature. > > > > > > > > Nice idea! But before you go and spend a lot of time trying to implement > > > > something, I suggest that you write down a design how you imagine all this > > > > to work and we can talk about it. Questions like: Do you have particular > > > > usecases in mind? Where do you plan to perform the accounting / > > > > enforcement? Where do you want to store quota information? How do you want > > > > to recover from unclean shutdowns? Etc... > > > > > > Thanks a lot for your suggestions. > > > > > > I am reviewing the quota code of ext4 and the fuse code to determine > > > if the implementation method used in ext4 can be ported to fuse. Based > > > on my current understanding, the key issue is that ext4 reserves > > > several inodes for quotas and can manage the disk itself, allowing it > > > to directly flush quota data to the disk blocks corresponding to the > > > quota inodes within the kernel. > > > > Yes. > > > > > However, fuse does not seem to manage > > > the disk itself; it sends all read and write requests to user space > > > for completion. Therefore, it may not be possible to directly flush > > > the data in the quota inode to the disk in fuse. > > > > Yes, ext4 uses journalling to keep filesystem state consistent with quota > > information. Doing this within FUSE would be rather difficult (essentially > > you would have to implement journal within FUSE with will have rather high > > performace overhead). > > > > > > > But that's why I'm asking for usecases. For some usecases it may be fine > > > that in case of unclean shutdown you run quotacheck program to update quota > > > information based on current usage - non-journalling filesystems use this > > > method. So where do you want to use quotas on a FUSE filesystem? > > Please allow me to ask a silly question. I'm not sure if I correctly > understand what you mean by 'unclean shutdown'. Do you mean an > inconsistent state that requires using fsck to repair, like in ext4 > after a sudden power loss, or is it something else only about quota? No, I mean cases like sudden power loss or kernel crash or similar. However note that journalling filesystems (such as ext4 or xfs or many others) do not require fsck after such event. The journal allows them to recover automatically. > In my scenario, FUSE (both the kernel and user space parts) acts > merely as a proxy. FUSE is based on multiple file systems, and a > user's file and directory exists in only one of these file systems. It > does not even have its own superblock or inode metadata. When a user > performs read or write operations on a specific file, FUSE checks the > directory corresponding to this file on each file system to see if the > user's file is there; if one is not, it continues to check the next > file system. I see. So your usecase is kind of a filesystem unioning solution and you want to add quotas on top of that? > > > I am considering whether it would be feasible to implement the quota > > > inode in user space in a similar manner. For example, users could > > > reserve a few regular files that are invisible to actual file system > > > users to store the contents of quota. When updating the quota, the > > > user would be notified to flush the quota data to the disk. The > > > benefit of this approach is that it can directly reuse the quota > > > metadata format from the kernel, users do not need to redesign > > > metadata. However, performance might be an issue with this approach. > > > > Yes, storing quota data in some files inside the filesystem is probably the > > easiest way to go. I'd just not bother with flushing because as you say > > the performance would suck in that case. > > What about using caching and asynchronous updates? For example, in > FUSE, allocate some pages to cache the quota data. When updating quota > data, write to the cache first and then place the task in a work > queue. The work queue will then send the request to user space to > complete the actual disk write operation. When there are read > requests, the content is read directly from the cache. So how quota works for filesystems without journaling is that we keep quota information for cached inodes in memory (struct dquot - this is per ID (uid/gid/projid) structure). The quota information is written back to quota file on events like sync(2) (which also handles unmount) or when last inode referencing particular dquot structure is reclaimed from memory. There is no periodic background writeback for quota structures. > The problem with this approach is that asynchronous updates might lead > to loss of quota data in the event of a sudden power failure. This > seems acceptable to me, but I am not sure if it aligns with the > definition of quota. Additionally, this assumes that the quota file > will not be very large, which I believe is a reasonable > assumption.Perhaps there are some drawbacks I haven't considered? Yes, quota files are pretty small (for today's standards) as they scale with the number of filesystem users which isn't generally too big. As you observe, quota information will not be uptodate in the event of powerfail or similar. That is the reason why administrator (or init scripts) are responsible for calling quotacheck(8) for filesystems when unclean shutdown is detected. Quotacheck(8) scans the whole filesystem, summarizes disk usage for each user, group, etc. and updates the information in the quota file. > Regarding the enforcement of quota limits, I plan to perform this in > the kernel. For project quotas, the kernel can know how much space and > how many inodes are being used by the corresponding project ID. For > now, I only want to implement project quota because I believe that > user and group quotas can be simulated using project quotas. This is not true. First and formost, owner of a file can arbitrarily change its projid while unpriviledged user cannot set file's owner. So there is no way for user to escape user quota accounting while project quota accounting is more or less cooperative space tracking feature (this is different with user namespaces but your usecase does not sound like it depends on them). Similarly file's group can be set only to groups user is a member of. Finally you can have smaller user limits and bigger group limits which constrain a group of users which is not possible to do just with project quotas. > Additionally, users' definitions of file system users and groups might > differ from file UID and GID. Users can freely use project IDs to > define file system users and groups. Well, if UIDs in the filesystem do not match current system view of users, you have a larger problem be permission checking etc. So I'm not sure I understand your comment here. But anyway if you are convinced project quotas are the right solution for your usecase then I don't object. From kernel POV there's no fundamental difference. Honza -- Jan Kara <jack@suse.com> SUSE Labs, CR ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Is is reasonable to support quota in fuse? 2024-06-06 16:10 ` Jan Kara @ 2024-06-07 12:11 ` JunChao Sun 0 siblings, 0 replies; 14+ messages in thread From: JunChao Sun @ 2024-06-07 12:11 UTC (permalink / raw) To: Jan Kara; +Cc: Miklos Szeredi, linux-fsdevel, Theodore Ts'o Jan Kara <jack@suse.cz> 于2024年6月7日周五 00:10写道: > > On Thu 06-06-24 11:14:48, JunChao Sun wrote: > > Jan Kara <jack@suse.cz> 于2024年6月5日周三 18:29写道: > > > > > > On Tue 04-06-24 21:49:20, JunChao Sun wrote: > > > > Jan Kara <jack@suse.cz> 于2024年6月4日周二 17:27写道: > > > > > On Tue 04-06-24 14:54:01, JunChao Sun wrote: > > > > > > Miklos Szeredi <miklos@szeredi.hu> 于2024年6月4日周二 14:40写道: > > > > > > > > > > > > > > On Mon, 3 Jun 2024 at 13:37, JunChao Sun <sunjunchao2870@gmail.com> wrote: > > > > > > > > > > > > > > > Given these challenges, I would like to inquire about the community's > > > > > > > > perspective on implementing quota functionality at the FUSE kernel > > > > > > > > part. Is it feasible to implement quota functionality in the FUSE > > > > > > > > kernel module, allowing users to set quotas for FUSE just as they > > > > > > > > would for ext4 (e.g., using commands like quotaon /mnt/fusefs or > > > > > > > > quotaset /mnt/fusefs)? Would the community consider accepting patches > > > > > > > > for this feature? > > > > > > > > > > > > > > > > > > > > > > I would say yes, but I have no experience with quota in any way, so > > > > > > > > cannot help with the details. > > > > > > > > > > > > Thanks for your reply. I'd like try to implement this feature. > > > > > > > > > > Nice idea! But before you go and spend a lot of time trying to implement > > > > > something, I suggest that you write down a design how you imagine all this > > > > > to work and we can talk about it. Questions like: Do you have particular > > > > > usecases in mind? Where do you plan to perform the accounting / > > > > > enforcement? Where do you want to store quota information? How do you want > > > > > to recover from unclean shutdowns? Etc... > > > > > > > > Thanks a lot for your suggestions. > > > > > > > > I am reviewing the quota code of ext4 and the fuse code to determine > > > > if the implementation method used in ext4 can be ported to fuse. Based > > > > on my current understanding, the key issue is that ext4 reserves > > > > several inodes for quotas and can manage the disk itself, allowing it > > > > to directly flush quota data to the disk blocks corresponding to the > > > > quota inodes within the kernel. > > > > > > Yes. > > > > > > > However, fuse does not seem to manage > > > > the disk itself; it sends all read and write requests to user space > > > > for completion. Therefore, it may not be possible to directly flush > > > > the data in the quota inode to the disk in fuse. > > > > > > Yes, ext4 uses journalling to keep filesystem state consistent with quota > > > information. Doing this within FUSE would be rather difficult (essentially > > > you would have to implement journal within FUSE with will have rather high > > > performace overhead). > > > > > > > > > > But that's why I'm asking for usecases. For some usecases it may be fine > > > > that in case of unclean shutdown you run quotacheck program to update quota > > > > information based on current usage - non-journalling filesystems use this > > > > method. So where do you want to use quotas on a FUSE filesystem? > > > > Please allow me to ask a silly question. I'm not sure if I correctly > > understand what you mean by 'unclean shutdown'. Do you mean an > > inconsistent state that requires using fsck to repair, like in ext4 > > after a sudden power loss, or is it something else only about quota? > > > > No, I mean cases like sudden power loss or kernel crash or similar. However > > note that journalling filesystems (such as ext4 or xfs or many others) do > > not require fsck after such event. The journal allows them to recover > > automatically. Thanks for your clarification. I understand. > > > In my scenario, FUSE (both the kernel and user space parts) acts > > merely as a proxy. FUSE is based on multiple file systems, and a > > user's file and directory exists in only one of these file systems. It > > does not even have its own superblock or inode metadata. When a user > > performs read or write operations on a specific file, FUSE checks the > > directory corresponding to this file on each file system to see if the > > user's file is there; if one is not, it continues to check the next > > file system. > > > > I see. So your usecase is kind of a filesystem unioning solution and you > > want to add quotas on top of that? Exactly. And all files were written by root, the underlying filesystem(btrfs) does't support project quota also. > > > > > I am considering whether it would be feasible to implement the quota > > > > inode in user space in a similar manner. For example, users could > > > > reserve a few regular files that are invisible to actual file system > > > > users to store the contents of quota. When updating the quota, the > > > > user would be notified to flush the quota data to the disk. The > > > > benefit of this approach is that it can directly reuse the quota > > > > metadata format from the kernel, users do not need to redesign > > > > metadata. However, performance might be an issue with this approach. > > > > > > Yes, storing quota data in some files inside the filesystem is probably the > > > easiest way to go. I'd just not bother with flushing because as you say > > > the performance would suck in that case. > > > > What about using caching and asynchronous updates? For example, in > > FUSE, allocate some pages to cache the quota data. When updating quota > > data, write to the cache first and then place the task in a work > > queue. The work queue will then send the request to user space to > > complete the actual disk write operation. When there are read > > requests, the content is read directly from the cache. > > > > So how quota works for filesystems without journaling is that we keep quota > > information for cached inodes in memory (struct dquot - this is per ID > > (uid/gid/projid) structure). The quota information is written back to quota > > file on events like sync(2) (which also handles unmount) or when last inode > > referencing particular dquot structure is reclaimed from memory. There is > > no periodic background writeback for quota structures. Thanks a lot for your explanation. Got it. I saw that the f2fs_quota_write() function in f2fs does exactly what you described; it just writes the data into the page cache. And ioctl Q_SYNC command or umount syncs all quota data to disk. Maybe using this method in Fuse is also appropriate. > > > The problem with this approach is that asynchronous updates might lead > > to loss of quota data in the event of a sudden power failure. This > > seems acceptable to me, but I am not sure if it aligns with the > > definition of quota. Additionally, this assumes that the quota file > > will not be very large, which I believe is a reasonable > > assumption.Perhaps there are some drawbacks I haven't considered? > > > > Yes, quota files are pretty small (for today's standards) as they scale > > with the number of filesystem users which isn't generally too big. As you > > observe, quota information will not be uptodate in the event of powerfail > > or similar. That is the reason why administrator (or init scripts) are > > responsible for calling quotacheck(8) for filesystems when unclean shutdown > > is detected. Quotacheck(8) scans the whole filesystem, summarizes disk > > usage for each user, group, etc. and updates the information in the quota > > file. So the time it takes to execute quotacheck is also directly proportional to the size of the file system, right? The larger the file system, the longer quotacheck takes to run, regardless of the number of users or groups, because quotacheck needs to scan the entire file system. > > > Regarding the enforcement of quota limits, I plan to perform this in > > the kernel. For project quotas, the kernel can know how much space and > > how many inodes are being used by the corresponding project ID. For > > now, I only want to implement project quota because I believe that > > user and group quotas can be simulated using project quotas. > > > > This is not true. First and formost, owner of a file can arbitrarily change > > its projid while unpriviledged user cannot set file's owner. So there is no > > way for user to escape user quota accounting while project quota accounting > > is more or less cooperative space tracking feature (this is different with > > user namespaces but your usecase does not sound like it depends on them). > > Similarly file's group can be set only to groups user is a member of. > > Finally you can have smaller user limits and bigger group limits which > > constrain a group of users which is not possible to do just with project > > quotas. Yes, you're right. They work in conjunction. User quotas cannot be replaced by project quotas. > > > Additionally, users' definitions of file system users and groups might > > differ from file UID and GID. Users can freely use project IDs to > > define file system users and groups. > > > > Well, if UIDs in the filesystem do not match current system view of users, > > you have a larger problem be permission checking etc. So I'm not sure I > > understand your comment here. But anyway if you are convinced project > > quotas are the right solution for your usecase then I don't object. From > > kernel POV there's no fundamental difference. Yes, the permission checking was done by upper applications. Thanks again for your comments! They are really helpful. > > Honza > -- > Jan Kara <jack@suse.com> > SUSE Labs, CR Best regards, -- Junchao Sun <sunjunchao2870@gmail.com> ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Is is reasonable to support quota in fuse? 2024-06-03 11:36 Is is reasonable to support quota in fuse? JunChao Sun 2024-06-04 6:03 ` JunChao Sun 2024-06-04 6:40 ` Miklos Szeredi @ 2024-06-06 15:17 ` Darrick J. Wong 2024-06-07 11:10 ` JunChao Sun 2 siblings, 1 reply; 14+ messages in thread From: Darrick J. Wong @ 2024-06-06 15:17 UTC (permalink / raw) To: JunChao Sun; +Cc: linux-fsdevel On Mon, Jun 03, 2024 at 07:36:42PM +0800, JunChao Sun wrote: > Currently, FUSE in the kernel part does not support quotas. If users > want to implement quota functionality with FUSE, they can only achieve > this at the user level using the underlying file system features. > However, if the underlying file system, such as btrfs, does not > support UID/GID level quotas and only support subvolume level quota, > users will need to find alternative methods to implement quota > functionality. How would your quota shim find out about things like the increase in block usage of the underlying fs? Let's say the underlying fs is like vfat, which fakes sparse hole support by allocating and zeroing (as needed) all the space before the start of the write. So the kernel tells fuse to write a byte at 1MB. Most unixy filesystems will allocate a single block, write a byte (and the necessary zeroes) and bump quota by 1. fat instead will allocate 1028K of space, zero all of it, and write the byte. How does /that/ get communicated back to fuse? Some sort of protocol extension that says "Hey I wrote the data you asked, and btw block usage increased by XXXX bytes"? If that increase takes you over an enforced quota limit, the correct response would have been to return EDQUOT having not made any changes to the file. --D > And consider another scenario: implementing a FUSE file system on top > of an ext4 file system, but all writes to ext4 are done as a single > user (e.g., root). In this case, ext4's UID and GID quotas are not > applicable, and users need to find other ways to implement quotas for > users or groups. > > Given these challenges, I would like to inquire about the community's > perspective on implementing quota functionality at the FUSE kernel > part. Is it feasible to implement quota functionality in the FUSE > kernel module, allowing users to set quotas for FUSE just as they > would for ext4 (e.g., using commands like quotaon /mnt/fusefs or > quotaset /mnt/fusefs)? Would the community consider accepting patches > for this feature? > > I look forward to your insights on this matter. > > Thank you for your time and consideration. > > Best regards. > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Is is reasonable to support quota in fuse? 2024-06-06 15:17 ` Darrick J. Wong @ 2024-06-07 11:10 ` JunChao Sun 0 siblings, 0 replies; 14+ messages in thread From: JunChao Sun @ 2024-06-07 11:10 UTC (permalink / raw) To: Darrick J. Wong; +Cc: linux-fsdevel, Jan Kara, Theodore Ts'o Darrick J. Wong <djwong@kernel.org> 于2024年6月6日周四 23:17写道: > > On Mon, Jun 03, 2024 at 07:36:42PM +0800, JunChao Sun wrote: > > Currently, FUSE in the kernel part does not support quotas. If users > > want to implement quota functionality with FUSE, they can only achieve > > this at the user level using the underlying file system features. > > However, if the underlying file system, such as btrfs, does not > > support UID/GID level quotas and only support subvolume level quota, > > users will need to find alternative methods to implement quota > > functionality. > > > > How would your quota shim find out about things like the increase in > > block usage of the underlying fs? Let's say the underlying fs is like > > vfat, which fakes sparse hole support by allocating and zeroing (as > > needed) all the space before the start of the write. > > > > So the kernel tells fuse to write a byte at 1MB. Most unixy filesystems > > will allocate a single block, write a byte (and the necessary zeroes) > > and bump quota by 1. > > > > fat instead will allocate 1028K of space, zero all of it, and write the > > byte. How does /that/ get communicated back to fuse? Some sort of > > protocol extension that says "Hey I wrote the data you asked, and btw > > block usage increased by XXXX bytes"? If that increase takes you over > > an enforced quota limit, the correct response would have been to return > > EDQUOT having not made any changes to the file. It turns out that's actually the case, and the previous 1024KB of empty space cannot be reused. I tested by creating a 10GB vfat filesystem, created 9 files, and wrote a byte at the 1GB-4KB position in each file. When I tried to do the same operation on the 10th file, I encountered an ENOSPC error. I find this extension a bit peculiar because the user has spent a lot of time to get data written to the disk and the write has been completed correctly, but Fuse informs the user that the write has failed and is invalid... It's likely to get users confused. Furthermore, users would need knowledge of the underlying filesystem to accurately report how many bytes the disk usage has increased. Perhaps it's better to accept that a fuse fs based on vfat cannot support quotas, and indeed, vfat currently does not support quotas. However, it's necessary to carefully consider how to make it so that users do not use quotas on a Fuse filesystem based on vfat... > > --D > > > And consider another scenario: implementing a FUSE file system on top > > of an ext4 file system, but all writes to ext4 are done as a single > > user (e.g., root). In this case, ext4's UID and GID quotas are not > > applicable, and users need to find other ways to implement quotas for > > users or groups. > > > > Given these challenges, I would like to inquire about the community's > > perspective on implementing quota functionality at the FUSE kernel > > part. Is it feasible to implement quota functionality in the FUSE > > kernel module, allowing users to set quotas for FUSE just as they > > would for ext4 (e.g., using commands like quotaon /mnt/fusefs or > > quotaset /mnt/fusefs)? Would the community consider accepting patches > > for this feature? > > > > I look forward to your insights on this matter. > > > > Thank you for your time and consideration. > > > > Best regards. > > Best regards, -- Junchao Sun <sunjunchao2870@gmail.com> ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2024-06-07 12:11 UTC | newest] Thread overview: 14+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-06-03 11:36 Is is reasonable to support quota in fuse? JunChao Sun 2024-06-04 6:03 ` JunChao Sun 2024-06-04 6:40 ` Miklos Szeredi 2024-06-04 6:54 ` JunChao Sun 2024-06-04 9:27 ` Jan Kara 2024-06-04 13:49 ` JunChao Sun 2024-06-05 10:29 ` Jan Kara 2024-06-05 19:53 ` Theodore Ts'o 2024-06-06 3:58 ` JunChao Sun 2024-06-06 3:14 ` JunChao Sun 2024-06-06 16:10 ` Jan Kara 2024-06-07 12:11 ` JunChao Sun 2024-06-06 15:17 ` Darrick J. Wong 2024-06-07 11:10 ` JunChao Sun
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.