-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
fsverity_linux.go: Fix fsverity.IsEnabled() for big endian systems #10981
Conversation
Signed-off-by: Alexey Lunev <[email protected]>
Hi @xbt573. Thanks for your PR. I'm waiting for a containerd member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
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.
Isn't c long int64 on 64 bit systems.. Should this be platform dependent?
Oh, didn't see this one. Then int32 assumption is very incorrect, but as we see int64 or long doesn't work with big endian machines. |
we can build and check goos on a per platform basis |
I checked all possible output flags for
Also, i asked about this on Golang issue tracker and got this response: golang/go#70302 (comment) If this is OK we can change
#define FS_VERITY_FL 0x00100000 /* Verity protected inode */
// 0x00100000 == 1048576 |
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
thx was that s390x system 32 or 64bit.. presume the later and can move along but would be nice to know if we have an endian issue with go int to c long on 32bit and or 64bit.. |
See the note in the man page: https://man7.org/linux/man-pages/man2/ioctl_iflags.2.html#NOTES |
/cherrypick release/2.0 |
@estesp: new pull request created: #11005 In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
I found out that
unix.Syscall(..., uintptr(unsafe.Pointer(&return_value)))
returns very big value.If syscall returns
128
(not verity, just example) on other systems, it returns549755813888
ons390x
, sofsverity.IsEnabled
is almost incorrect. Note that128 << 32 == 549755813888
.This happens because
s390x
is Big Endian, whereas other ones are Little Endian.One fix is to change
attr
variable type toint32
, but this won't work if containerd is compiled against or used on system where Cint
is not 4 bytes wide.This PR includes change of
attr
variable type toint32
.