We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In order to track attempts to follow symlinks outside of a directory root, we need to be able to extract the d_name.name member from struct dentry.
d_name.name
struct dentry
The LSM function used to track this behavior is security_inode_follow_link (available since 4.19):
security_inode_follow_link
int security_inode_follow_link(struct dentry *dentry, struct inode *inode, bool rcu);
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
In order to track attempts to follow symlinks outside of a directory root, we need to be able to extract the
d_name.name
member fromstruct dentry
.The LSM function used to track this behavior is
security_inode_follow_link
(available since 4.19):The text was updated successfully, but these errors were encountered: