-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Use inode quota in volume size #336
base: dev
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello @rolysr, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!
Summary of Changes
This pull request modifies the fs_get_self_quota
function to include inode quota in the calculation of available space. It updates the function signature in both mastercomm.h
and mastercomm.cc
to accept an inode parameter. The statfs
function in sauna_client.cc
is updated to retrieve and incorporate inode quota information when gUseQuotaInVolumeSize
is enabled. Additionally, a test case is added to test_use_quota_in_volume_size.sh
to verify the behavior of folder quotas.
Highlights
- Inode Quota Inclusion: The primary goal is to incorporate inode quota into the available space calculation, providing a more consistent quota management experience.
- Function Signature Update: The
fs_get_self_quota
function now accepts an inode parameter, allowing it to fetch quota information specific to an inode. - Quota Retrieval and Application: The
statfs
function insauna_client.cc
now retrieves inode quota information and uses it to adjust the available space calculation. - Test Case Addition: A new test case has been added to verify the correct behavior of folder quotas, ensuring that inode quotas are properly enforced.
Changelog
Click here to see the changelog
- src/mount/mastercomm.cc
- Modified
fs_get_self_quota
function to accept an inode parameter on line 3122. - Added
QuotaOwnerType::kInode
to the requested entities on line 3130.
- Modified
- src/mount/mastercomm.h
- Updated the signature of
fs_get_self_quota
to include the inode parameter on line 124.
- Updated the signature of
- src/mount/sauna_client.cc
- Modified
statfs
function to include inode quota on line 719. - Added logic to retrieve and apply inode quota information on lines 751-760.
- Adjusted the calculation of
availspace
to includeinodeAvailSpace
on line 770.
- Modified
- tests/test_suites/ShortSystemTests/test_use_quota_in_volume_size.sh
- Added a test case to verify folder quota behavior on lines 76-90.
- Added commands to increase user and group quotas, then decrease the inode quota for the root directory.
Using Gemini Code Assist
The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.
Invoking Gemini
You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command>
or @gemini-code-assist <command>
. Below is a summary of the supported commands.
Feature | Command | Description |
---|---|---|
Code Review | /gemini review |
Performs a code review for the current pull request in its current state. |
Pull Request Summary | /gemini summary |
Provides a summary of the current pull request in its current state. |
Comment | @gemini-code-assist | Responds in comments when explicitly tagged, both in issue comments and review comments. |
Help | /gemini help |
Displays a list of available commands. |
Customization
To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/
folder in the base of the repository. Detailed instructions can be found here.
Limitations & Feedback
Gemini Code Assist is currently in preview and may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments to provide feedback.
You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.
Trivia time!
What is the purpose of an inode in a file system?
Click here for the answer
An inode (index node) is a data structure in a file system that stores metadata about a file, such as its permissions, owner, size, and the location of its data blocks on disk.
Footnotes
-
Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution. ↩
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This commit introduces inode quota support to the volume size calculation, enhancing quota consistency. The changes look good overall, but there are a few areas that could be improved for clarity and robustness.
Summary of Findings
- Error Handling in Quota Retrieval: The code currently throws a generic exception when quota retrieval fails, which might not be the most informative approach. Consider providing more context or specific error codes to aid in debugging.
- Redundant Variable Initialization: The variables
userUsedSpace
,groupUsedSpace
, andinodeUsedSpace
are initialized to 0 and then immediately potentially overwritten byentry.limit
. Consider initializing them directly withentry.limit
if the quota entry is found, or keeping the initial value if not. - Test Coverage: The new test case only checks for zero available space after setting an inode quota. It would be beneficial to add tests that verify the available space is correctly calculated for non-zero inode quotas.
Merge Readiness
The pull request is almost ready for merging. Addressing the error handling and variable initialization concerns would improve the code's robustness and readability. The test coverage could also be expanded to provide more confidence in the correctness of the changes. I am unable to directly approve this pull request, and recommend that others review and approve this code before merging. At a minimum, the HIGH severity comment should be addressed before merging.
tests/test_suites/ShortSystemTests/test_use_quota_in_volume_size.sh
Outdated
Show resolved
Hide resolved
087b32b
to
5f1a1a9
Compare
02d27dc
to
5f1a1a9
Compare
Sure! Here are some additional test cases for directory-based quota:
# Create a folder with a quota of 1/2 user_limit
mkdir folder2
saunafs setquota -d 0 $((user_limit / 2)) 0 0 folder2
# Verify folder quota is enforced
cd folder2
assert_success sudo -nu saunafstest_1 dd if=/dev/zero of=file4 bs=1M count=$((user_limit_mb / 2))
assert_fail sudo -nu saunafstest_1 dd if=/dev/zero of=file4 bs=1M count=$((user_limit_mb))
# Increase folder quota to exceed user quota
saunafs setquota -d 0 $((2 * user_limit)) 0 0 folder2
# Verify user quota is enforced
assert_fail sudo -nu saunafstest_1 dd if=/dev/zero of=file4 bs=1M count=$((user_limit_mb))
cd -
# Create nested folders with different quotas
mkdir -p folder3/subfolder1
saunafs setquota -d 0 $((user_limit * 3 / 4)) 0 0 folder3
saunafs setquota -d 0 $((user_limit / 2)) 0 0 folder3/subfolder1
# Verify quotas are enforced at each level
cd folder3
assert_success sudo -nu saunafstest_1 dd if=/dev/zero of=file5 bs=1M count=$((user_limit_mb / 2))
cd subfolder1
assert_success sudo -nu saunafstest_1 dd if=/dev/zero of=file6 bs=1M count=$((user_limit_mb / 4))
assert_fail sudo -nu saunafstest_1 dd if=/dev/zero of=file6 bs=1M count=$((user_limit_mb / 2))
cd -
cd -
# Create a folder and fill it up to its quota
mkdir folder4
saunafs setquota -d 0 $((user_limit / 2)) 0 0 folder4
cd folder4
assert_success sudo -nu saunafstest_1 dd if=/dev/zero of=file7 bs=1M count=$((user_limit_mb / 2))
# Decrease the folder quota
saunafs setquota -d 0 $((user_limit / 4)) 0 0 folder4
# Verify writing further data fails
assert_fail sudo -nu saunafstest_1 dd if=/dev/zero of=file8 bs=1M count=$((user_limit_mb / 2))
cd -
# Create a folder and set a quota
mkdir folder5
saunafs setquota -d 0 $((user_limit / 2)) 0 0 folder5
cd folder5
# Verify the quota is enforced for different users
assert_success sudo -nu saunafstest_1 dd if=/dev/zero of=file9 bs=1M count=$((user_limit_mb / 4))
assert_fail sudo -nu saunafstest_2 dd if=/dev/zero of=file10 bs=1M count=$((user_limit_mb / 2))
cd -
# Create a folder and set a quota
mkdir folder6
saunafs setquota -d 0 $((user_limit / 2)) 0 0 folder6
cd folder6
# Verify the quota is enforced for different groups
assert_success sudo -nu saunafstest_1 dd if=/dev/zero of=file11 bs=1M count=$((user_limit_mb / 4))
assert_fail sudo -nu saunafstest_1 chgrp othergroup file11
assert_fail sudo -nu saunafstest_2 dd if=/dev/zero of=file12 bs=1M count=$((user_limit_mb / 2))
cd - These test cases will help ensure that the directory-based quota system works correctly under various conditions. |
5f1a1a9
to
587a399
Compare
As a minor change, I'd liketo propose to use the inode used space (the space occupied by the folder) as the mount used space. Currently it is showing the user's used space, which might not be the desired one or expected one, could be even confusing. I think it all depends of the use case this option is intended for. |
e23c73d
to
613c46b
Compare
tests/test_suites/ShortSystemTests/test_use_quota_in_volume_size.sh
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
613c46b
to
2d80c18
Compare
tests/test_suites/ShortSystemTests/test_use_quota_in_volume_size.sh
Outdated
Show resolved
Hide resolved
tests/test_suites/ShortSystemTests/test_use_quota_in_volume_size.sh
Outdated
Show resolved
Hide resolved
tests/test_suites/ShortSystemTests/test_use_quota_in_volume_size.sh
Outdated
Show resolved
Hide resolved
tests/test_suites/ShortSystemTests/test_quota_in_volume_size.sh
Outdated
Show resolved
Hide resolved
tests/test_suites/ShortSystemTests/test_quota_in_volume_size.sh
Outdated
Show resolved
Hide resolved
tests/test_suites/ShortSystemTests/test_quota_in_volume_size.sh
Outdated
Show resolved
Hide resolved
tests/test_suites/ShortSystemTests/test_quota_in_volume_size.sh
Outdated
Show resolved
Hide resolved
tests/test_suites/ShortSystemTests/test_quota_in_volume_size.sh
Outdated
Show resolved
Hide resolved
56ecffb
to
bf80086
Compare
This commit incorporates the quota assigned to a directory into the calculation of the current available space. This change improves the consistency of quota configuration across users, groups, and folders. Co-authored-by: Dave <dave@leil.io> Co-authored-by: aNeutrino <pm@leil.io> Signed-off-by: Rolando Sánchez Ramos <rolysr@leil.io>
bf80086
to
b9f4b99
Compare
This commit incorporates the quota assigned to a directory into the calculation of the current available space. This change improves the consistency of quota configuration across users, groups, and folders.