mirror of
https://github.com/samba-team/samba.git
synced 2025-01-06 13:18:07 +03:00
5a3fd9c0f5
We'll stash the file type in there soon Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
69 lines
1.7 KiB
Plaintext
69 lines
1.7 KiB
Plaintext
#include "idl_types.h"
|
|
|
|
/*
|
|
IDL for smb311 unix structures
|
|
*/
|
|
|
|
import "security.idl";
|
|
|
|
[
|
|
version(0.0),
|
|
pointer_default(unique),
|
|
headerhelper("../lib/util/time.h")
|
|
]
|
|
interface smb3posix
|
|
{
|
|
const int UNIX_TYPE_FILE = 0;
|
|
const int UNIX_TYPE_DIR = 1;
|
|
const int UNIX_TYPE_SYMLINK = 2;
|
|
const int UNIX_TYPE_CHARDEV = 3;
|
|
const int UNIX_TYPE_BLKDEV = 4;
|
|
const int UNIX_TYPE_FIFO = 5;
|
|
const int UNIX_TYPE_SOCKET = 6;
|
|
const int UNIX_TYPE_UNKNOWN = 0xFFFFFFFF;
|
|
|
|
const int UNIX_X_OTH = 0000001;
|
|
const int UNIX_W_OTH = 0000002;
|
|
const int UNIX_R_OTH = 0000004;
|
|
const int UNIX_X_GRP = 0000010;
|
|
const int UNIX_W_GRP = 0000020;
|
|
const int UNIX_R_GRP = 0000040;
|
|
const int UNIX_X_USR = 0000100;
|
|
const int UNIX_W_USR = 0000200;
|
|
const int UNIX_R_USR = 0000400;
|
|
const int UNIX_STICKY = 0001000;
|
|
const int UNIX_SET_GID = 0002000;
|
|
const int UNIX_SET_UID = 0004000;
|
|
|
|
const int UNIX_OTH_MASK = 0000007;
|
|
const int UNIX_GRP_MASK = 0000070;
|
|
const int UNIX_USR_MASK = 0000700;
|
|
const int UNIX_PERM_MASK = 0000777;
|
|
const int UNIX_EXTRA_MASK = 0007000;
|
|
const int UNIX_FILETYPE_MASK = 0070000;
|
|
const int UNIX_FILETYPE_SHIFT = 12;
|
|
const int UNIX_ALL_MASK = 0077777;
|
|
|
|
typedef [public,flag(NDR_NOALIGN)] struct {
|
|
uint32 nlinks;
|
|
uint32 reparse_tag;
|
|
uint32 posix_mode;
|
|
dom_sid owner;
|
|
dom_sid group;
|
|
} smb3_posix_cc_info;
|
|
|
|
typedef [public,flag(NDR_NOALIGN)] struct {
|
|
NTTIME creation_time;
|
|
NTTIME last_access_time;
|
|
NTTIME last_write_time;
|
|
NTTIME change_time;
|
|
hyper end_of_file;
|
|
hyper allocation_size;
|
|
uint32 file_attributes;
|
|
hyper inode;
|
|
uint32 device;
|
|
uint32 reserved;
|
|
smb3_posix_cc_info cc;
|
|
} smb3_file_posix_information;
|
|
}
|