mirror of
https://github.com/rwinkhart/sys.git
synced 2026-09-01 06:46:44 -04:00
unix: add new fscrypt declarations from Linux v5.4
Create Go bindings for the updated fscrypt UAPI from Linux v5.4: - Various new ioctls. We use the regex FS_IOC_.*ENCRYPTION to match both the new and existing fscrypt ioctls. - Various new structures for passing to the ioctls - Various new constants named like FSCRYPT_* - FscryptPolicy was renamed to FscryptPolicyV1. (But the old name is still available for source compatibility.) - The existing fscrypt-related constants named like FS_* (besides the ioctls) were renamed to FSCRYPT_*. (But the old names are still available for source compatibility.) For reference, see fscrypt.h: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/include/uapi/linux/fscrypt.h?h=v5.4 Fixes golang/go#35856 Change-Id: I48ddd37cfa7c1e0e7eb227baa6f220c848ddc880 Reviewed-on: https://go-review.googlesource.com/c/sys/+/208898 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
committed by
Ian Lance Taylor
parent
8a8471f7e5
commit
63cb32ae39
@@ -440,6 +440,20 @@ type FscryptPolicy C.struct_fscrypt_policy
|
|||||||
|
|
||||||
type FscryptKey C.struct_fscrypt_key
|
type FscryptKey C.struct_fscrypt_key
|
||||||
|
|
||||||
|
type FscryptPolicyV1 C.struct_fscrypt_policy_v1
|
||||||
|
|
||||||
|
type FscryptPolicyV2 C.struct_fscrypt_policy_v2
|
||||||
|
|
||||||
|
type FscryptGetPolicyExArg C.struct_fscrypt_get_policy_ex_arg
|
||||||
|
|
||||||
|
type FscryptKeySpecifier C.struct_fscrypt_key_specifier
|
||||||
|
|
||||||
|
type FscryptAddKeyArg C.struct_fscrypt_add_key_arg
|
||||||
|
|
||||||
|
type FscryptRemoveKeyArg C.struct_fscrypt_remove_key_arg
|
||||||
|
|
||||||
|
type FscryptGetKeyStatusArg C.struct_fscrypt_get_key_status_arg
|
||||||
|
|
||||||
// Structure for Keyctl
|
// Structure for Keyctl
|
||||||
|
|
||||||
type KeyctlDHParams C.struct_keyctl_dh_params
|
type KeyctlDHParams C.struct_keyctl_dh_params
|
||||||
|
|||||||
+4
-1
@@ -197,6 +197,7 @@ struct ltchars {
|
|||||||
#include <linux/fanotify.h>
|
#include <linux/fanotify.h>
|
||||||
#include <linux/filter.h>
|
#include <linux/filter.h>
|
||||||
#include <linux/fs.h>
|
#include <linux/fs.h>
|
||||||
|
#include <linux/fscrypt.h>
|
||||||
#include <linux/genetlink.h>
|
#include <linux/genetlink.h>
|
||||||
#include <linux/hdreg.h>
|
#include <linux/hdreg.h>
|
||||||
#include <linux/icmpv6.h>
|
#include <linux/icmpv6.h>
|
||||||
@@ -496,7 +497,9 @@ ccflags="$@"
|
|||||||
$2 ~ /^CAN_/ ||
|
$2 ~ /^CAN_/ ||
|
||||||
$2 ~ /^CAP_/ ||
|
$2 ~ /^CAP_/ ||
|
||||||
$2 ~ /^ALG_/ ||
|
$2 ~ /^ALG_/ ||
|
||||||
$2 ~ /^FS_(POLICY_FLAGS|KEY_DESC|ENCRYPTION_MODE|[A-Z0-9_]+_KEY_SIZE|IOC_(GET|SET)_ENCRYPTION)/ ||
|
$2 ~ /^FS_(POLICY_FLAGS|KEY_DESC|ENCRYPTION_MODE|[A-Z0-9_]+_KEY_SIZE)/ ||
|
||||||
|
$2 ~ /^FS_IOC_.*ENCRYPTION/ ||
|
||||||
|
$2 ~ /^FSCRYPT_/ ||
|
||||||
$2 ~ /^GRND_/ ||
|
$2 ~ /^GRND_/ ||
|
||||||
$2 ~ /^RND/ ||
|
$2 ~ /^RND/ ||
|
||||||
$2 ~ /^KEY_(SPEC|REQKEY_DEFL)_/ ||
|
$2 ~ /^KEY_(SPEC|REQKEY_DEFL)_/ ||
|
||||||
|
|||||||
+2808
-2778
File diff suppressed because it is too large
Load Diff
+2808
-2778
File diff suppressed because it is too large
Load Diff
+2814
-2784
File diff suppressed because it is too large
Load Diff
+2801
-2771
File diff suppressed because it is too large
Load Diff
+2810
-2780
File diff suppressed because it is too large
Load Diff
+2810
-2780
File diff suppressed because it is too large
Load Diff
+2810
-2780
File diff suppressed because it is too large
Load Diff
+2810
-2780
File diff suppressed because it is too large
Load Diff
+2869
-2839
File diff suppressed because it is too large
Load Diff
+2869
-2839
File diff suppressed because it is too large
Load Diff
+2795
-2765
File diff suppressed because it is too large
Load Diff
+2868
-2838
File diff suppressed because it is too large
Load Diff
+2858
-2828
File diff suppressed because it is too large
Load Diff
@@ -179,6 +179,55 @@ type FscryptKey struct {
|
|||||||
Size uint32
|
Size uint32
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV1 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
Master_key_descriptor [8]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV2 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
_ [4]uint8
|
||||||
|
Master_key_identifier [16]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetPolicyExArg struct {
|
||||||
|
Size uint64
|
||||||
|
Policy [24]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptKeySpecifier struct {
|
||||||
|
Type uint32
|
||||||
|
_ uint32
|
||||||
|
U [32]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptAddKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Raw_size uint32
|
||||||
|
_ [9]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptRemoveKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Removal_status_flags uint32
|
||||||
|
_ [5]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetKeyStatusArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
_ [6]uint32
|
||||||
|
Status uint32
|
||||||
|
Status_flags uint32
|
||||||
|
User_count uint32
|
||||||
|
_ [13]uint32
|
||||||
|
}
|
||||||
|
|
||||||
type KeyctlDHParams struct {
|
type KeyctlDHParams struct {
|
||||||
Private int32
|
Private int32
|
||||||
Prime int32
|
Prime int32
|
||||||
|
|||||||
@@ -179,6 +179,55 @@ type FscryptKey struct {
|
|||||||
Size uint32
|
Size uint32
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV1 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
Master_key_descriptor [8]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV2 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
_ [4]uint8
|
||||||
|
Master_key_identifier [16]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetPolicyExArg struct {
|
||||||
|
Size uint64
|
||||||
|
Policy [24]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptKeySpecifier struct {
|
||||||
|
Type uint32
|
||||||
|
_ uint32
|
||||||
|
U [32]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptAddKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Raw_size uint32
|
||||||
|
_ [9]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptRemoveKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Removal_status_flags uint32
|
||||||
|
_ [5]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetKeyStatusArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
_ [6]uint32
|
||||||
|
Status uint32
|
||||||
|
Status_flags uint32
|
||||||
|
User_count uint32
|
||||||
|
_ [13]uint32
|
||||||
|
}
|
||||||
|
|
||||||
type KeyctlDHParams struct {
|
type KeyctlDHParams struct {
|
||||||
Private int32
|
Private int32
|
||||||
Prime int32
|
Prime int32
|
||||||
|
|||||||
@@ -183,6 +183,55 @@ type FscryptKey struct {
|
|||||||
Size uint32
|
Size uint32
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV1 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
Master_key_descriptor [8]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV2 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
_ [4]uint8
|
||||||
|
Master_key_identifier [16]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetPolicyExArg struct {
|
||||||
|
Size uint64
|
||||||
|
Policy [24]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptKeySpecifier struct {
|
||||||
|
Type uint32
|
||||||
|
_ uint32
|
||||||
|
U [32]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptAddKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Raw_size uint32
|
||||||
|
_ [9]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptRemoveKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Removal_status_flags uint32
|
||||||
|
_ [5]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetKeyStatusArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
_ [6]uint32
|
||||||
|
Status uint32
|
||||||
|
Status_flags uint32
|
||||||
|
User_count uint32
|
||||||
|
_ [13]uint32
|
||||||
|
}
|
||||||
|
|
||||||
type KeyctlDHParams struct {
|
type KeyctlDHParams struct {
|
||||||
Private int32
|
Private int32
|
||||||
Prime int32
|
Prime int32
|
||||||
|
|||||||
@@ -180,6 +180,55 @@ type FscryptKey struct {
|
|||||||
Size uint32
|
Size uint32
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV1 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
Master_key_descriptor [8]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV2 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
_ [4]uint8
|
||||||
|
Master_key_identifier [16]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetPolicyExArg struct {
|
||||||
|
Size uint64
|
||||||
|
Policy [24]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptKeySpecifier struct {
|
||||||
|
Type uint32
|
||||||
|
_ uint32
|
||||||
|
U [32]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptAddKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Raw_size uint32
|
||||||
|
_ [9]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptRemoveKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Removal_status_flags uint32
|
||||||
|
_ [5]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetKeyStatusArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
_ [6]uint32
|
||||||
|
Status uint32
|
||||||
|
Status_flags uint32
|
||||||
|
User_count uint32
|
||||||
|
_ [13]uint32
|
||||||
|
}
|
||||||
|
|
||||||
type KeyctlDHParams struct {
|
type KeyctlDHParams struct {
|
||||||
Private int32
|
Private int32
|
||||||
Prime int32
|
Prime int32
|
||||||
|
|||||||
@@ -182,6 +182,55 @@ type FscryptKey struct {
|
|||||||
Size uint32
|
Size uint32
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV1 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
Master_key_descriptor [8]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV2 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
_ [4]uint8
|
||||||
|
Master_key_identifier [16]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetPolicyExArg struct {
|
||||||
|
Size uint64
|
||||||
|
Policy [24]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptKeySpecifier struct {
|
||||||
|
Type uint32
|
||||||
|
_ uint32
|
||||||
|
U [32]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptAddKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Raw_size uint32
|
||||||
|
_ [9]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptRemoveKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Removal_status_flags uint32
|
||||||
|
_ [5]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetKeyStatusArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
_ [6]uint32
|
||||||
|
Status uint32
|
||||||
|
Status_flags uint32
|
||||||
|
User_count uint32
|
||||||
|
_ [13]uint32
|
||||||
|
}
|
||||||
|
|
||||||
type KeyctlDHParams struct {
|
type KeyctlDHParams struct {
|
||||||
Private int32
|
Private int32
|
||||||
Prime int32
|
Prime int32
|
||||||
|
|||||||
@@ -180,6 +180,55 @@ type FscryptKey struct {
|
|||||||
Size uint32
|
Size uint32
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV1 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
Master_key_descriptor [8]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV2 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
_ [4]uint8
|
||||||
|
Master_key_identifier [16]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetPolicyExArg struct {
|
||||||
|
Size uint64
|
||||||
|
Policy [24]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptKeySpecifier struct {
|
||||||
|
Type uint32
|
||||||
|
_ uint32
|
||||||
|
U [32]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptAddKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Raw_size uint32
|
||||||
|
_ [9]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptRemoveKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Removal_status_flags uint32
|
||||||
|
_ [5]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetKeyStatusArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
_ [6]uint32
|
||||||
|
Status uint32
|
||||||
|
Status_flags uint32
|
||||||
|
User_count uint32
|
||||||
|
_ [13]uint32
|
||||||
|
}
|
||||||
|
|
||||||
type KeyctlDHParams struct {
|
type KeyctlDHParams struct {
|
||||||
Private int32
|
Private int32
|
||||||
Prime int32
|
Prime int32
|
||||||
|
|||||||
@@ -180,6 +180,55 @@ type FscryptKey struct {
|
|||||||
Size uint32
|
Size uint32
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV1 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
Master_key_descriptor [8]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV2 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
_ [4]uint8
|
||||||
|
Master_key_identifier [16]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetPolicyExArg struct {
|
||||||
|
Size uint64
|
||||||
|
Policy [24]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptKeySpecifier struct {
|
||||||
|
Type uint32
|
||||||
|
_ uint32
|
||||||
|
U [32]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptAddKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Raw_size uint32
|
||||||
|
_ [9]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptRemoveKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Removal_status_flags uint32
|
||||||
|
_ [5]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetKeyStatusArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
_ [6]uint32
|
||||||
|
Status uint32
|
||||||
|
Status_flags uint32
|
||||||
|
User_count uint32
|
||||||
|
_ [13]uint32
|
||||||
|
}
|
||||||
|
|
||||||
type KeyctlDHParams struct {
|
type KeyctlDHParams struct {
|
||||||
Private int32
|
Private int32
|
||||||
Prime int32
|
Prime int32
|
||||||
|
|||||||
@@ -182,6 +182,55 @@ type FscryptKey struct {
|
|||||||
Size uint32
|
Size uint32
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV1 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
Master_key_descriptor [8]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV2 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
_ [4]uint8
|
||||||
|
Master_key_identifier [16]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetPolicyExArg struct {
|
||||||
|
Size uint64
|
||||||
|
Policy [24]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptKeySpecifier struct {
|
||||||
|
Type uint32
|
||||||
|
_ uint32
|
||||||
|
U [32]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptAddKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Raw_size uint32
|
||||||
|
_ [9]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptRemoveKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Removal_status_flags uint32
|
||||||
|
_ [5]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetKeyStatusArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
_ [6]uint32
|
||||||
|
Status uint32
|
||||||
|
Status_flags uint32
|
||||||
|
User_count uint32
|
||||||
|
_ [13]uint32
|
||||||
|
}
|
||||||
|
|
||||||
type KeyctlDHParams struct {
|
type KeyctlDHParams struct {
|
||||||
Private int32
|
Private int32
|
||||||
Prime int32
|
Prime int32
|
||||||
|
|||||||
@@ -181,6 +181,55 @@ type FscryptKey struct {
|
|||||||
Size uint32
|
Size uint32
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV1 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
Master_key_descriptor [8]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV2 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
_ [4]uint8
|
||||||
|
Master_key_identifier [16]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetPolicyExArg struct {
|
||||||
|
Size uint64
|
||||||
|
Policy [24]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptKeySpecifier struct {
|
||||||
|
Type uint32
|
||||||
|
_ uint32
|
||||||
|
U [32]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptAddKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Raw_size uint32
|
||||||
|
_ [9]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptRemoveKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Removal_status_flags uint32
|
||||||
|
_ [5]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetKeyStatusArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
_ [6]uint32
|
||||||
|
Status uint32
|
||||||
|
Status_flags uint32
|
||||||
|
User_count uint32
|
||||||
|
_ [13]uint32
|
||||||
|
}
|
||||||
|
|
||||||
type KeyctlDHParams struct {
|
type KeyctlDHParams struct {
|
||||||
Private int32
|
Private int32
|
||||||
Prime int32
|
Prime int32
|
||||||
|
|||||||
@@ -181,6 +181,55 @@ type FscryptKey struct {
|
|||||||
Size uint32
|
Size uint32
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV1 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
Master_key_descriptor [8]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV2 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
_ [4]uint8
|
||||||
|
Master_key_identifier [16]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetPolicyExArg struct {
|
||||||
|
Size uint64
|
||||||
|
Policy [24]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptKeySpecifier struct {
|
||||||
|
Type uint32
|
||||||
|
_ uint32
|
||||||
|
U [32]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptAddKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Raw_size uint32
|
||||||
|
_ [9]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptRemoveKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Removal_status_flags uint32
|
||||||
|
_ [5]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetKeyStatusArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
_ [6]uint32
|
||||||
|
Status uint32
|
||||||
|
Status_flags uint32
|
||||||
|
User_count uint32
|
||||||
|
_ [13]uint32
|
||||||
|
}
|
||||||
|
|
||||||
type KeyctlDHParams struct {
|
type KeyctlDHParams struct {
|
||||||
Private int32
|
Private int32
|
||||||
Prime int32
|
Prime int32
|
||||||
|
|||||||
@@ -180,6 +180,55 @@ type FscryptKey struct {
|
|||||||
Size uint32
|
Size uint32
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV1 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
Master_key_descriptor [8]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV2 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
_ [4]uint8
|
||||||
|
Master_key_identifier [16]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetPolicyExArg struct {
|
||||||
|
Size uint64
|
||||||
|
Policy [24]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptKeySpecifier struct {
|
||||||
|
Type uint32
|
||||||
|
_ uint32
|
||||||
|
U [32]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptAddKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Raw_size uint32
|
||||||
|
_ [9]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptRemoveKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Removal_status_flags uint32
|
||||||
|
_ [5]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetKeyStatusArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
_ [6]uint32
|
||||||
|
Status uint32
|
||||||
|
Status_flags uint32
|
||||||
|
User_count uint32
|
||||||
|
_ [13]uint32
|
||||||
|
}
|
||||||
|
|
||||||
type KeyctlDHParams struct {
|
type KeyctlDHParams struct {
|
||||||
Private int32
|
Private int32
|
||||||
Prime int32
|
Prime int32
|
||||||
|
|||||||
@@ -179,6 +179,55 @@ type FscryptKey struct {
|
|||||||
Size uint32
|
Size uint32
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV1 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
Master_key_descriptor [8]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV2 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
_ [4]uint8
|
||||||
|
Master_key_identifier [16]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetPolicyExArg struct {
|
||||||
|
Size uint64
|
||||||
|
Policy [24]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptKeySpecifier struct {
|
||||||
|
Type uint32
|
||||||
|
_ uint32
|
||||||
|
U [32]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptAddKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Raw_size uint32
|
||||||
|
_ [9]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptRemoveKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Removal_status_flags uint32
|
||||||
|
_ [5]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetKeyStatusArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
_ [6]uint32
|
||||||
|
Status uint32
|
||||||
|
Status_flags uint32
|
||||||
|
User_count uint32
|
||||||
|
_ [13]uint32
|
||||||
|
}
|
||||||
|
|
||||||
type KeyctlDHParams struct {
|
type KeyctlDHParams struct {
|
||||||
Private int32
|
Private int32
|
||||||
Prime int32
|
Prime int32
|
||||||
|
|||||||
@@ -183,6 +183,55 @@ type FscryptKey struct {
|
|||||||
Size uint32
|
Size uint32
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV1 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
Master_key_descriptor [8]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptPolicyV2 struct {
|
||||||
|
Version uint8
|
||||||
|
Contents_encryption_mode uint8
|
||||||
|
Filenames_encryption_mode uint8
|
||||||
|
Flags uint8
|
||||||
|
_ [4]uint8
|
||||||
|
Master_key_identifier [16]uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetPolicyExArg struct {
|
||||||
|
Size uint64
|
||||||
|
Policy [24]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptKeySpecifier struct {
|
||||||
|
Type uint32
|
||||||
|
_ uint32
|
||||||
|
U [32]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptAddKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Raw_size uint32
|
||||||
|
_ [9]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptRemoveKeyArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
Removal_status_flags uint32
|
||||||
|
_ [5]uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
type FscryptGetKeyStatusArg struct {
|
||||||
|
Key_spec FscryptKeySpecifier
|
||||||
|
_ [6]uint32
|
||||||
|
Status uint32
|
||||||
|
Status_flags uint32
|
||||||
|
User_count uint32
|
||||||
|
_ [13]uint32
|
||||||
|
}
|
||||||
|
|
||||||
type KeyctlDHParams struct {
|
type KeyctlDHParams struct {
|
||||||
Private int32
|
Private int32
|
||||||
Prime int32
|
Prime int32
|
||||||
|
|||||||
Reference in New Issue
Block a user