mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
98ea4a2219
Signed-off-by: kkhaike <kkhaike@gmail.com> Reviewed-by: Jeremy Allison <jra@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Uri Simchoni <uri@samba.org> Autobuild-User(master): Uri Simchoni <uri@samba.org> Autobuild-Date(master): Fri Aug 19 09:35:15 CEST 2016 on sn-devel-144
2877 lines
64 KiB
C
2877 lines
64 KiB
C
/*
|
|
Unix SMB/CIFS implementation.
|
|
SMB request interface structures
|
|
Copyright (C) Andrew Tridgell 2003
|
|
Copyright (C) James J Myers 2003 <myersjj@samba.org>
|
|
Copyright (C) James Peach 2007
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __LIBCLI_RAW_INTERFACES_H__
|
|
#define __LIBCLI_RAW_INTERFACES_H__
|
|
|
|
#include "source4/libcli/raw/smb.h"
|
|
#include "../libcli/smb/smb_common.h"
|
|
#include "librpc/gen_ndr/misc.h" /* for struct GUID */
|
|
#include "librpc/gen_ndr/smb2_lease_struct.h"
|
|
|
|
/* this structure is just a wrapper for a string, the only reason we
|
|
bother with this is that it allows us to check the length provided
|
|
on the wire in testsuite test code to ensure that we are
|
|
terminating names in the same way that win2003 is. The *ONLY* time
|
|
you should ever look at the 'private_length' field in this
|
|
structure is inside compliance test code, in all other cases just
|
|
use the null terminated char* as the definitive definition of the
|
|
string
|
|
|
|
also note that this structure is only used in packets where there
|
|
is an explicit length provided on the wire (hence the name). That
|
|
length is placed in 'private_length'. For packets where the length
|
|
is always determined by NULL or packet termination a normal char*
|
|
is used in the structure definition.
|
|
*/
|
|
struct smb_wire_string {
|
|
uint32_t private_length;
|
|
const char *s;
|
|
};
|
|
|
|
/*
|
|
* SMB2 uses a 16Byte handle,
|
|
* (we can maybe use struct GUID later)
|
|
*/
|
|
struct smb2_handle {
|
|
uint64_t data[2];
|
|
};
|
|
|
|
struct smb2_lease_break {
|
|
struct smb2_lease current_lease;
|
|
uint16_t new_epoch; /* only for v2 leases */
|
|
uint32_t break_flags;
|
|
uint32_t new_lease_state;
|
|
uint32_t break_reason; /* should be 0 */
|
|
uint32_t access_mask_hint; /* should be 0 */
|
|
uint32_t share_mask_hint; /* should be 0 */
|
|
};
|
|
|
|
struct ntvfs_handle;
|
|
|
|
/*
|
|
* a generic container for file handles or file pathes
|
|
* for qfileinfo/setfileinfo and qpathinfo/setpathinfo
|
|
*/
|
|
union smb_handle_or_path {
|
|
/*
|
|
* this is used for
|
|
* the qpathinfo and setpathinfo
|
|
* calls
|
|
*/
|
|
const char *path;
|
|
/*
|
|
* this is used as file handle in SMB
|
|
*/
|
|
uint16_t fnum;
|
|
|
|
/*
|
|
* this is used as file handle in SMB2
|
|
*/
|
|
struct smb2_handle handle;
|
|
|
|
/*
|
|
* this is used as generic file handle for the NTVFS layer
|
|
*/
|
|
struct ntvfs_handle *ntvfs;
|
|
};
|
|
|
|
/*
|
|
a generic container for file handles
|
|
*/
|
|
union smb_handle {
|
|
/*
|
|
* this is used as file handle in SMB
|
|
*/
|
|
uint16_t fnum;
|
|
|
|
/*
|
|
* this is used as file handle in SMB2
|
|
*/
|
|
struct smb2_handle handle;
|
|
|
|
/*
|
|
* this is used as generic file handle for the NTVFS layer
|
|
*/
|
|
struct ntvfs_handle *ntvfs;
|
|
};
|
|
|
|
/*
|
|
this header defines the structures and unions used between the SMB
|
|
parser and the backends.
|
|
*/
|
|
|
|
/* struct used for SMBlseek call */
|
|
union smb_seek {
|
|
struct {
|
|
struct {
|
|
union smb_handle file;
|
|
uint16_t mode;
|
|
int32_t offset; /* signed */
|
|
} in;
|
|
struct {
|
|
int32_t offset;
|
|
} out;
|
|
} lseek, generic;
|
|
};
|
|
|
|
/* struct used in unlink() call */
|
|
union smb_unlink {
|
|
struct {
|
|
struct {
|
|
const char *pattern;
|
|
uint16_t attrib;
|
|
} in;
|
|
} unlink;
|
|
};
|
|
|
|
|
|
/* struct used in chkpath() call */
|
|
union smb_chkpath {
|
|
struct {
|
|
struct {
|
|
const char *path;
|
|
} in;
|
|
} chkpath;
|
|
};
|
|
|
|
enum smb_mkdir_level {RAW_MKDIR_GENERIC, RAW_MKDIR_MKDIR, RAW_MKDIR_T2MKDIR};
|
|
|
|
/* union used in mkdir() call */
|
|
union smb_mkdir {
|
|
/* generic level */
|
|
struct {
|
|
enum smb_mkdir_level level;
|
|
} generic;
|
|
|
|
struct {
|
|
enum smb_mkdir_level level;
|
|
struct {
|
|
const char *path;
|
|
} in;
|
|
} mkdir;
|
|
|
|
struct {
|
|
enum smb_mkdir_level level;
|
|
struct {
|
|
const char *path;
|
|
unsigned int num_eas;
|
|
struct ea_struct *eas;
|
|
} in;
|
|
} t2mkdir;
|
|
};
|
|
|
|
/* struct used in rmdir() call */
|
|
struct smb_rmdir {
|
|
struct {
|
|
const char *path;
|
|
} in;
|
|
};
|
|
|
|
/* struct used in rename() call */
|
|
enum smb_rename_level {RAW_RENAME_RENAME, RAW_RENAME_NTRENAME, RAW_RENAME_NTTRANS};
|
|
|
|
union smb_rename {
|
|
struct {
|
|
enum smb_rename_level level;
|
|
} generic;
|
|
|
|
/* SMBrename interface */
|
|
struct {
|
|
enum smb_rename_level level;
|
|
|
|
struct {
|
|
const char *pattern1;
|
|
const char *pattern2;
|
|
uint16_t attrib;
|
|
} in;
|
|
} rename;
|
|
|
|
|
|
/* SMBntrename interface */
|
|
struct {
|
|
enum smb_rename_level level;
|
|
|
|
struct {
|
|
uint16_t attrib;
|
|
uint16_t flags; /* see RENAME_FLAG_* */
|
|
uint32_t cluster_size;
|
|
const char *old_name;
|
|
const char *new_name;
|
|
} in;
|
|
} ntrename;
|
|
|
|
/* NT TRANS rename interface */
|
|
struct {
|
|
enum smb_rename_level level;
|
|
|
|
struct {
|
|
union smb_handle file;
|
|
uint16_t flags;/* see RENAME_REPLACE_IF_EXISTS */
|
|
const char *new_name;
|
|
} in;
|
|
} nttrans;
|
|
};
|
|
|
|
enum smb_tcon_level {
|
|
RAW_TCON_TCON,
|
|
RAW_TCON_TCONX,
|
|
RAW_TCON_SMB2
|
|
};
|
|
|
|
/* union used in tree connect call */
|
|
union smb_tcon {
|
|
/* generic interface */
|
|
struct {
|
|
enum smb_tcon_level level;
|
|
} generic;
|
|
|
|
/* SMBtcon interface */
|
|
struct {
|
|
enum smb_tcon_level level;
|
|
|
|
struct {
|
|
const char *service;
|
|
const char *password;
|
|
const char *dev;
|
|
} in;
|
|
struct {
|
|
uint16_t max_xmit;
|
|
uint16_t tid;
|
|
} out;
|
|
} tcon;
|
|
|
|
/* SMBtconX interface */
|
|
struct {
|
|
enum smb_tcon_level level;
|
|
|
|
struct {
|
|
uint16_t flags;
|
|
DATA_BLOB password;
|
|
const char *path;
|
|
const char *device;
|
|
} in;
|
|
struct {
|
|
uint16_t options;
|
|
uint32_t max_access;
|
|
uint32_t guest_max_access;
|
|
char *dev_type;
|
|
char *fs_type;
|
|
uint16_t tid;
|
|
} out;
|
|
} tconx;
|
|
|
|
/* SMB2 TreeConnect */
|
|
struct smb2_tree_connect {
|
|
enum smb_tcon_level level;
|
|
|
|
struct {
|
|
/* static body buffer 8 (0x08) bytes */
|
|
uint16_t reserved;
|
|
/* uint16_t path_ofs */
|
|
/* uint16_t path_size */
|
|
/* dynamic body */
|
|
const char *path; /* as non-terminated UTF-16 on the wire */
|
|
} in;
|
|
struct {
|
|
/* static body buffer 16 (0x10) bytes */
|
|
/* uint16_t buffer_code; 0x10 */
|
|
uint8_t share_type;
|
|
uint8_t reserved;
|
|
uint32_t flags;
|
|
uint32_t capabilities;
|
|
uint32_t access_mask;
|
|
|
|
/* extracted from the SMB2 header */
|
|
uint32_t tid;
|
|
} out;
|
|
} smb2;
|
|
};
|
|
|
|
|
|
enum smb_sesssetup_level {
|
|
RAW_SESSSETUP_OLD,
|
|
RAW_SESSSETUP_NT1,
|
|
RAW_SESSSETUP_SPNEGO,
|
|
RAW_SESSSETUP_SMB2
|
|
};
|
|
|
|
/* union used in session_setup call */
|
|
union smb_sesssetup {
|
|
/* the pre-NT1 interface */
|
|
struct {
|
|
enum smb_sesssetup_level level;
|
|
|
|
struct {
|
|
uint16_t bufsize;
|
|
uint16_t mpx_max;
|
|
uint16_t vc_num;
|
|
uint32_t sesskey;
|
|
DATA_BLOB password;
|
|
const char *user;
|
|
const char *domain;
|
|
const char *os;
|
|
const char *lanman;
|
|
} in;
|
|
struct {
|
|
uint16_t action;
|
|
uint16_t vuid;
|
|
char *os;
|
|
char *lanman;
|
|
char *domain;
|
|
} out;
|
|
} old;
|
|
|
|
/* the NT1 interface */
|
|
struct {
|
|
enum smb_sesssetup_level level;
|
|
|
|
struct {
|
|
uint16_t bufsize;
|
|
uint16_t mpx_max;
|
|
uint16_t vc_num;
|
|
uint32_t sesskey;
|
|
uint32_t capabilities;
|
|
DATA_BLOB password1;
|
|
DATA_BLOB password2;
|
|
const char *user;
|
|
const char *domain;
|
|
const char *os;
|
|
const char *lanman;
|
|
} in;
|
|
struct {
|
|
uint16_t action;
|
|
uint16_t vuid;
|
|
char *os;
|
|
char *lanman;
|
|
char *domain;
|
|
} out;
|
|
} nt1;
|
|
|
|
|
|
/* the SPNEGO interface */
|
|
struct {
|
|
enum smb_sesssetup_level level;
|
|
|
|
struct {
|
|
uint16_t bufsize;
|
|
uint16_t mpx_max;
|
|
uint16_t vc_num;
|
|
uint32_t sesskey;
|
|
uint32_t capabilities;
|
|
DATA_BLOB secblob;
|
|
const char *os;
|
|
const char *lanman;
|
|
const char *workgroup;
|
|
} in;
|
|
struct {
|
|
uint16_t action;
|
|
DATA_BLOB secblob;
|
|
char *os;
|
|
char *lanman;
|
|
char *workgroup;
|
|
uint16_t vuid;
|
|
} out;
|
|
} spnego;
|
|
|
|
/* SMB2 SessionSetup */
|
|
struct smb2_session_setup {
|
|
enum smb_sesssetup_level level;
|
|
|
|
struct {
|
|
/* static body 24 (0x18) bytes */
|
|
uint8_t vc_number;
|
|
uint8_t security_mode;
|
|
uint32_t capabilities;
|
|
uint32_t channel;
|
|
/* uint16_t secblob_ofs */
|
|
/* uint16_t secblob_size */
|
|
uint64_t previous_sessionid;
|
|
/* dynamic body */
|
|
DATA_BLOB secblob;
|
|
} in;
|
|
struct {
|
|
/* body buffer 8 (0x08) bytes */
|
|
uint16_t session_flags;
|
|
/* uint16_t secblob_ofs */
|
|
/* uint16_t secblob_size */
|
|
/* dynamic body */
|
|
DATA_BLOB secblob;
|
|
|
|
/* extracted from the SMB2 header */
|
|
uint64_t uid;
|
|
} out;
|
|
} smb2;
|
|
};
|
|
|
|
/* Note that the specified enum values are identical to the actual info-levels used
|
|
* on the wire.
|
|
*/
|
|
enum smb_fileinfo_level {
|
|
RAW_FILEINFO_GENERIC = 0xF000,
|
|
RAW_FILEINFO_GETATTR, /* SMBgetatr */
|
|
RAW_FILEINFO_GETATTRE, /* SMBgetattrE */
|
|
RAW_FILEINFO_SEC_DESC, /* NT_TRANSACT_QUERY_SECURITY_DESC */
|
|
RAW_FILEINFO_STANDARD = SMB_QFILEINFO_STANDARD,
|
|
RAW_FILEINFO_EA_SIZE = SMB_QFILEINFO_EA_SIZE,
|
|
RAW_FILEINFO_EA_LIST = SMB_QFILEINFO_EA_LIST,
|
|
RAW_FILEINFO_ALL_EAS = SMB_QFILEINFO_ALL_EAS,
|
|
RAW_FILEINFO_IS_NAME_VALID = SMB_QFILEINFO_IS_NAME_VALID,
|
|
RAW_FILEINFO_BASIC_INFO = SMB_QFILEINFO_BASIC_INFO,
|
|
RAW_FILEINFO_STANDARD_INFO = SMB_QFILEINFO_STANDARD_INFO,
|
|
RAW_FILEINFO_EA_INFO = SMB_QFILEINFO_EA_INFO,
|
|
RAW_FILEINFO_NAME_INFO = SMB_QFILEINFO_NAME_INFO,
|
|
RAW_FILEINFO_ALL_INFO = SMB_QFILEINFO_ALL_INFO,
|
|
RAW_FILEINFO_ALT_NAME_INFO = SMB_QFILEINFO_ALT_NAME_INFO,
|
|
RAW_FILEINFO_STREAM_INFO = SMB_QFILEINFO_STREAM_INFO,
|
|
RAW_FILEINFO_COMPRESSION_INFO = SMB_QFILEINFO_COMPRESSION_INFO,
|
|
RAW_FILEINFO_UNIX_BASIC = SMB_QFILEINFO_UNIX_BASIC,
|
|
RAW_FILEINFO_UNIX_INFO2 = SMB_QFILEINFO_UNIX_INFO2,
|
|
RAW_FILEINFO_UNIX_LINK = SMB_QFILEINFO_UNIX_LINK,
|
|
RAW_FILEINFO_BASIC_INFORMATION = SMB_QFILEINFO_BASIC_INFORMATION,
|
|
RAW_FILEINFO_STANDARD_INFORMATION = SMB_QFILEINFO_STANDARD_INFORMATION,
|
|
RAW_FILEINFO_INTERNAL_INFORMATION = SMB_QFILEINFO_INTERNAL_INFORMATION,
|
|
RAW_FILEINFO_EA_INFORMATION = SMB_QFILEINFO_EA_INFORMATION,
|
|
RAW_FILEINFO_ACCESS_INFORMATION = SMB_QFILEINFO_ACCESS_INFORMATION,
|
|
RAW_FILEINFO_NAME_INFORMATION = SMB_QFILEINFO_NAME_INFORMATION,
|
|
RAW_FILEINFO_POSITION_INFORMATION = SMB_QFILEINFO_POSITION_INFORMATION,
|
|
RAW_FILEINFO_MODE_INFORMATION = SMB_QFILEINFO_MODE_INFORMATION,
|
|
RAW_FILEINFO_ALIGNMENT_INFORMATION = SMB_QFILEINFO_ALIGNMENT_INFORMATION,
|
|
RAW_FILEINFO_ALL_INFORMATION = SMB_QFILEINFO_ALL_INFORMATION,
|
|
RAW_FILEINFO_ALT_NAME_INFORMATION = SMB_QFILEINFO_ALT_NAME_INFORMATION,
|
|
RAW_FILEINFO_STREAM_INFORMATION = SMB_QFILEINFO_STREAM_INFORMATION,
|
|
RAW_FILEINFO_COMPRESSION_INFORMATION = SMB_QFILEINFO_COMPRESSION_INFORMATION,
|
|
RAW_FILEINFO_NETWORK_OPEN_INFORMATION = SMB_QFILEINFO_NETWORK_OPEN_INFORMATION,
|
|
RAW_FILEINFO_ATTRIBUTE_TAG_INFORMATION = SMB_QFILEINFO_ATTRIBUTE_TAG_INFORMATION,
|
|
/* SMB2 specific levels */
|
|
RAW_FILEINFO_SMB2_ALL_EAS = 0x0f01,
|
|
RAW_FILEINFO_SMB2_ALL_INFORMATION = 0x1201
|
|
};
|
|
|
|
/* union used in qfileinfo() and qpathinfo() backend calls */
|
|
union smb_fileinfo {
|
|
/* generic interface:
|
|
* matches RAW_FILEINFO_GENERIC */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
struct {
|
|
uint32_t attrib;
|
|
uint32_t ea_size;
|
|
unsigned int num_eas;
|
|
struct ea_struct {
|
|
uint8_t flags;
|
|
struct smb_wire_string name;
|
|
DATA_BLOB value;
|
|
} *eas;
|
|
NTTIME create_time;
|
|
NTTIME access_time;
|
|
NTTIME write_time;
|
|
NTTIME change_time;
|
|
uint64_t alloc_size;
|
|
uint64_t size;
|
|
uint32_t nlink;
|
|
struct smb_wire_string fname;
|
|
struct smb_wire_string alt_fname;
|
|
uint8_t delete_pending;
|
|
uint8_t directory;
|
|
uint64_t compressed_size;
|
|
uint16_t format;
|
|
uint8_t unit_shift;
|
|
uint8_t chunk_shift;
|
|
uint8_t cluster_shift;
|
|
uint64_t file_id;
|
|
uint32_t access_flags; /* seen 0x001f01ff from w2k3 */
|
|
uint64_t position;
|
|
uint32_t mode;
|
|
uint32_t alignment_requirement;
|
|
uint32_t reparse_tag;
|
|
unsigned int num_streams;
|
|
struct stream_struct {
|
|
uint64_t size;
|
|
uint64_t alloc_size;
|
|
struct smb_wire_string stream_name;
|
|
} *streams;
|
|
} out;
|
|
} generic;
|
|
|
|
|
|
/* SMBgetatr interface:
|
|
* matches RAW_FILEINFO_GETATTR */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
struct {
|
|
uint16_t attrib;
|
|
uint32_t size;
|
|
time_t write_time;
|
|
} out;
|
|
} getattr;
|
|
|
|
/* SMBgetattrE and RAW_FILEINFO_STANDARD interface */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
struct {
|
|
time_t create_time;
|
|
time_t access_time;
|
|
time_t write_time;
|
|
uint32_t size;
|
|
uint32_t alloc_size;
|
|
uint16_t attrib;
|
|
} out;
|
|
} getattre, standard;
|
|
|
|
/* trans2 RAW_FILEINFO_EA_SIZE interface */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
struct {
|
|
time_t create_time;
|
|
time_t access_time;
|
|
time_t write_time;
|
|
uint32_t size;
|
|
uint32_t alloc_size;
|
|
uint16_t attrib;
|
|
uint32_t ea_size;
|
|
} out;
|
|
} ea_size;
|
|
|
|
/* trans2 RAW_FILEINFO_EA_LIST interface */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
unsigned int num_names;
|
|
struct ea_name {
|
|
struct smb_wire_string name;
|
|
} *ea_names;
|
|
} in;
|
|
|
|
struct smb_ea_list {
|
|
unsigned int num_eas;
|
|
struct ea_struct *eas;
|
|
} out;
|
|
} ea_list;
|
|
|
|
/* trans2 RAW_FILEINFO_ALL_EAS and RAW_FILEINFO_FULL_EA_INFORMATION interfaces */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
/* SMB2 only - SMB2_CONTINUE_FLAG_* */
|
|
uint8_t continue_flags;
|
|
} in;
|
|
struct smb_ea_list out;
|
|
} all_eas;
|
|
|
|
/* trans2 qpathinfo RAW_FILEINFO_IS_NAME_VALID interface
|
|
only valid for a QPATHNAME call - no returned data */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
} is_name_valid;
|
|
|
|
/* RAW_FILEINFO_BASIC_INFO and RAW_FILEINFO_BASIC_INFORMATION interfaces */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
struct {
|
|
NTTIME create_time;
|
|
NTTIME access_time;
|
|
NTTIME write_time;
|
|
NTTIME change_time;
|
|
uint32_t attrib;
|
|
} out;
|
|
} basic_info;
|
|
|
|
|
|
/* RAW_FILEINFO_STANDARD_INFO and RAW_FILEINFO_STANDARD_INFORMATION interfaces */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
struct {
|
|
uint64_t alloc_size;
|
|
uint64_t size;
|
|
uint32_t nlink;
|
|
bool delete_pending;
|
|
bool directory;
|
|
} out;
|
|
} standard_info;
|
|
|
|
/* RAW_FILEINFO_EA_INFO and RAW_FILEINFO_EA_INFORMATION interfaces */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
struct {
|
|
uint32_t ea_size;
|
|
} out;
|
|
} ea_info;
|
|
|
|
/* RAW_FILEINFO_NAME_INFO and RAW_FILEINFO_NAME_INFORMATION interfaces */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
struct {
|
|
struct smb_wire_string fname;
|
|
} out;
|
|
} name_info;
|
|
|
|
/* RAW_FILEINFO_ALL_INFO and RAW_FILEINFO_ALL_INFORMATION interfaces */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
struct {
|
|
NTTIME create_time;
|
|
NTTIME access_time;
|
|
NTTIME write_time;
|
|
NTTIME change_time;
|
|
uint32_t attrib;
|
|
uint64_t alloc_size;
|
|
uint64_t size;
|
|
uint32_t nlink;
|
|
uint8_t delete_pending;
|
|
uint8_t directory;
|
|
uint32_t ea_size;
|
|
struct smb_wire_string fname;
|
|
} out;
|
|
} all_info;
|
|
|
|
/* RAW_FILEINFO_SMB2_ALL_INFORMATION interface */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
struct {
|
|
NTTIME create_time;
|
|
NTTIME access_time;
|
|
NTTIME write_time;
|
|
NTTIME change_time;
|
|
uint32_t attrib;
|
|
uint32_t unknown1;
|
|
uint64_t alloc_size;
|
|
uint64_t size;
|
|
uint32_t nlink;
|
|
uint8_t delete_pending;
|
|
uint8_t directory;
|
|
/* uint16_t _pad; */
|
|
uint64_t file_id;
|
|
uint32_t ea_size;
|
|
uint32_t access_mask;
|
|
uint64_t position;
|
|
uint32_t mode;
|
|
uint32_t alignment_requirement;
|
|
struct smb_wire_string fname;
|
|
} out;
|
|
} all_info2;
|
|
|
|
/* RAW_FILEINFO_ALT_NAME_INFO and RAW_FILEINFO_ALT_NAME_INFORMATION interfaces */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
struct {
|
|
struct smb_wire_string fname;
|
|
} out;
|
|
} alt_name_info;
|
|
|
|
/* RAW_FILEINFO_STREAM_INFO and RAW_FILEINFO_STREAM_INFORMATION interfaces */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
struct stream_information {
|
|
unsigned int num_streams;
|
|
struct stream_struct *streams;
|
|
} out;
|
|
} stream_info;
|
|
|
|
/* RAW_FILEINFO_COMPRESSION_INFO and RAW_FILEINFO_COMPRESSION_INFORMATION interfaces */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
struct {
|
|
uint64_t compressed_size;
|
|
uint16_t format;
|
|
uint8_t unit_shift;
|
|
uint8_t chunk_shift;
|
|
uint8_t cluster_shift;
|
|
} out;
|
|
} compression_info;
|
|
|
|
/* RAW_FILEINFO_UNIX_BASIC interface */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
struct {
|
|
uint64_t end_of_file;
|
|
uint64_t num_bytes;
|
|
NTTIME status_change_time;
|
|
NTTIME access_time;
|
|
NTTIME change_time;
|
|
uint64_t uid;
|
|
uint64_t gid;
|
|
uint32_t file_type;
|
|
uint64_t dev_major;
|
|
uint64_t dev_minor;
|
|
uint64_t unique_id;
|
|
uint64_t permissions;
|
|
uint64_t nlink;
|
|
} out;
|
|
} unix_basic_info;
|
|
|
|
/* RAW_FILEINFO_UNIX_INFO2 interface */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
struct {
|
|
uint64_t end_of_file;
|
|
uint64_t num_bytes;
|
|
NTTIME status_change_time;
|
|
NTTIME access_time;
|
|
NTTIME change_time;
|
|
uint64_t uid;
|
|
uint64_t gid;
|
|
uint32_t file_type;
|
|
uint64_t dev_major;
|
|
uint64_t dev_minor;
|
|
uint64_t unique_id;
|
|
uint64_t permissions;
|
|
uint64_t nlink;
|
|
NTTIME create_time;
|
|
uint32_t file_flags;
|
|
uint32_t flags_mask;
|
|
} out;
|
|
} unix_info2;
|
|
|
|
/* RAW_FILEINFO_UNIX_LINK interface */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
struct {
|
|
struct smb_wire_string link_dest;
|
|
} out;
|
|
} unix_link_info;
|
|
|
|
/* RAW_FILEINFO_INTERNAL_INFORMATION interface */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
struct {
|
|
uint64_t file_id;
|
|
} out;
|
|
} internal_information;
|
|
|
|
/* RAW_FILEINFO_ACCESS_INFORMATION interface */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
struct {
|
|
uint32_t access_flags;
|
|
} out;
|
|
} access_information;
|
|
|
|
/* RAW_FILEINFO_POSITION_INFORMATION interface */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
struct {
|
|
uint64_t position;
|
|
} out;
|
|
} position_information;
|
|
|
|
/* RAW_FILEINFO_MODE_INFORMATION interface */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
struct {
|
|
uint32_t mode;
|
|
} out;
|
|
} mode_information;
|
|
|
|
/* RAW_FILEINFO_ALIGNMENT_INFORMATION interface */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
struct {
|
|
uint32_t alignment_requirement;
|
|
} out;
|
|
} alignment_information;
|
|
|
|
/* RAW_FILEINFO_NETWORK_OPEN_INFORMATION interface */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
struct {
|
|
NTTIME create_time;
|
|
NTTIME access_time;
|
|
NTTIME write_time;
|
|
NTTIME change_time;
|
|
uint64_t alloc_size;
|
|
uint64_t size;
|
|
uint32_t attrib;
|
|
} out;
|
|
} network_open_information;
|
|
|
|
|
|
/* RAW_FILEINFO_ATTRIBUTE_TAG_INFORMATION interface */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
struct {
|
|
uint32_t attrib;
|
|
uint32_t reparse_tag;
|
|
} out;
|
|
} attribute_tag_information;
|
|
|
|
/* RAW_FILEINFO_SEC_DESC */
|
|
struct {
|
|
enum smb_fileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
uint32_t secinfo_flags;
|
|
} in;
|
|
struct {
|
|
struct security_descriptor *sd;
|
|
} out;
|
|
} query_secdesc;
|
|
};
|
|
|
|
|
|
enum smb_setfileinfo_level {
|
|
RAW_SFILEINFO_GENERIC = 0xF000,
|
|
RAW_SFILEINFO_SETATTR, /* SMBsetatr */
|
|
RAW_SFILEINFO_SETATTRE, /* SMBsetattrE */
|
|
RAW_SFILEINFO_SEC_DESC, /* NT_TRANSACT_SET_SECURITY_DESC */
|
|
RAW_SFILEINFO_STANDARD = SMB_SFILEINFO_STANDARD,
|
|
RAW_SFILEINFO_EA_SET = SMB_SFILEINFO_EA_SET,
|
|
RAW_SFILEINFO_BASIC_INFO = SMB_SFILEINFO_BASIC_INFO,
|
|
RAW_SFILEINFO_DISPOSITION_INFO = SMB_SFILEINFO_DISPOSITION_INFO,
|
|
RAW_SFILEINFO_ALLOCATION_INFO = SMB_SFILEINFO_ALLOCATION_INFO,
|
|
RAW_SFILEINFO_END_OF_FILE_INFO = SMB_SFILEINFO_END_OF_FILE_INFO,
|
|
RAW_SFILEINFO_UNIX_BASIC = SMB_SFILEINFO_UNIX_BASIC,
|
|
RAW_SFILEINFO_UNIX_INFO2 = SMB_SFILEINFO_UNIX_INFO2,
|
|
RAW_SFILEINFO_UNIX_LINK = SMB_SET_FILE_UNIX_LINK,
|
|
RAW_SFILEINFO_UNIX_HLINK = SMB_SET_FILE_UNIX_HLINK,
|
|
RAW_SFILEINFO_BASIC_INFORMATION = SMB_SFILEINFO_BASIC_INFORMATION,
|
|
RAW_SFILEINFO_RENAME_INFORMATION = SMB_SFILEINFO_RENAME_INFORMATION,
|
|
RAW_SFILEINFO_LINK_INFORMATION = SMB_SFILEINFO_LINK_INFORMATION,
|
|
RAW_SFILEINFO_DISPOSITION_INFORMATION = SMB_SFILEINFO_DISPOSITION_INFORMATION,
|
|
RAW_SFILEINFO_POSITION_INFORMATION = SMB_SFILEINFO_POSITION_INFORMATION,
|
|
RAW_SFILEINFO_FULL_EA_INFORMATION = SMB_SFILEINFO_FULL_EA_INFORMATION,
|
|
RAW_SFILEINFO_MODE_INFORMATION = SMB_SFILEINFO_MODE_INFORMATION,
|
|
RAW_SFILEINFO_ALLOCATION_INFORMATION = SMB_SFILEINFO_ALLOCATION_INFORMATION,
|
|
RAW_SFILEINFO_END_OF_FILE_INFORMATION = SMB_SFILEINFO_END_OF_FILE_INFORMATION,
|
|
RAW_SFILEINFO_PIPE_INFORMATION = SMB_SFILEINFO_PIPE_INFORMATION,
|
|
RAW_SFILEINFO_VALID_DATA_INFORMATION = SMB_SFILEINFO_VALID_DATA_INFORMATION,
|
|
RAW_SFILEINFO_SHORT_NAME_INFORMATION = SMB_SFILEINFO_SHORT_NAME_INFORMATION,
|
|
RAW_SFILEINFO_1025 = SMB_SFILEINFO_1025,
|
|
RAW_SFILEINFO_1027 = SMB_SFILEINFO_1027,
|
|
RAW_SFILEINFO_1029 = SMB_SFILEINFO_1029,
|
|
RAW_SFILEINFO_1030 = SMB_SFILEINFO_1030,
|
|
RAW_SFILEINFO_1031 = SMB_SFILEINFO_1031,
|
|
RAW_SFILEINFO_1032 = SMB_SFILEINFO_1032,
|
|
RAW_SFILEINFO_1036 = SMB_SFILEINFO_1036,
|
|
RAW_SFILEINFO_1041 = SMB_SFILEINFO_1041,
|
|
RAW_SFILEINFO_1042 = SMB_SFILEINFO_1042,
|
|
RAW_SFILEINFO_1043 = SMB_SFILEINFO_1043,
|
|
RAW_SFILEINFO_1044 = SMB_SFILEINFO_1044,
|
|
|
|
/* cope with breakage in SMB2 */
|
|
RAW_SFILEINFO_RENAME_INFORMATION_SMB2 = SMB_SFILEINFO_RENAME_INFORMATION|0x80000000,
|
|
};
|
|
|
|
/* union used in setfileinfo() and setpathinfo() calls */
|
|
union smb_setfileinfo {
|
|
/* generic interface */
|
|
struct {
|
|
enum smb_setfileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
} in;
|
|
} generic;
|
|
|
|
/* RAW_SFILEINFO_SETATTR (SMBsetatr) interface - only via setpathinfo() */
|
|
struct {
|
|
enum smb_setfileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
uint16_t attrib;
|
|
time_t write_time;
|
|
} in;
|
|
} setattr;
|
|
|
|
/* RAW_SFILEINFO_SETATTRE (SMBsetattrE) interface - only via setfileinfo()
|
|
also RAW_SFILEINFO_STANDARD */
|
|
struct {
|
|
enum smb_setfileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
time_t create_time;
|
|
time_t access_time;
|
|
time_t write_time;
|
|
/* notice that size, alloc_size and attrib are not settable,
|
|
unlike the corresponding qfileinfo level */
|
|
} in;
|
|
} setattre, standard;
|
|
|
|
/* RAW_SFILEINFO_EA_SET interface */
|
|
struct {
|
|
enum smb_setfileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
unsigned int num_eas;
|
|
struct ea_struct *eas;
|
|
} in;
|
|
} ea_set;
|
|
|
|
/* RAW_SFILEINFO_BASIC_INFO and
|
|
RAW_SFILEINFO_BASIC_INFORMATION interfaces */
|
|
struct {
|
|
enum smb_setfileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
NTTIME create_time;
|
|
NTTIME access_time;
|
|
NTTIME write_time;
|
|
NTTIME change_time;
|
|
uint32_t attrib;
|
|
uint32_t reserved;
|
|
} in;
|
|
} basic_info;
|
|
|
|
/* RAW_SFILEINFO_DISPOSITION_INFO and
|
|
RAW_SFILEINFO_DISPOSITION_INFORMATION interfaces */
|
|
struct {
|
|
enum smb_setfileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
bool delete_on_close;
|
|
} in;
|
|
} disposition_info;
|
|
|
|
/* RAW_SFILEINFO_ALLOCATION_INFO and
|
|
RAW_SFILEINFO_ALLOCATION_INFORMATION interfaces */
|
|
struct {
|
|
enum smb_setfileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
/* w2k3 rounds this up to nearest 4096 */
|
|
uint64_t alloc_size;
|
|
} in;
|
|
} allocation_info;
|
|
|
|
/* RAW_SFILEINFO_END_OF_FILE_INFO and
|
|
RAW_SFILEINFO_END_OF_FILE_INFORMATION interfaces */
|
|
struct {
|
|
enum smb_setfileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
uint64_t size;
|
|
} in;
|
|
} end_of_file_info;
|
|
|
|
/* RAW_SFILEINFO_RENAME_INFORMATION interface */
|
|
struct {
|
|
enum smb_setfileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
uint8_t overwrite;
|
|
uint64_t root_fid;
|
|
const char *new_name;
|
|
} in;
|
|
} rename_information;
|
|
|
|
/* RAW_SFILEINFO_LINK_INFORMATION interface */
|
|
struct {
|
|
enum smb_setfileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
uint8_t overwrite;
|
|
uint64_t root_fid;
|
|
const char *new_name;
|
|
} in;
|
|
} link_information;
|
|
|
|
/* RAW_SFILEINFO_POSITION_INFORMATION interface */
|
|
struct {
|
|
enum smb_setfileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
uint64_t position;
|
|
} in;
|
|
} position_information;
|
|
|
|
/* RAW_SFILEINFO_MODE_INFORMATION interface */
|
|
struct {
|
|
enum smb_setfileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
/* valid values seem to be 0, 2, 4 and 6 */
|
|
uint32_t mode;
|
|
} in;
|
|
} mode_information;
|
|
|
|
/* RAW_SFILEINFO_UNIX_BASIC interface */
|
|
struct {
|
|
enum smb_setfileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
uint32_t mode; /* yuck - this field remains to fix compile of libcli/clifile.c */
|
|
uint64_t end_of_file;
|
|
uint64_t num_bytes;
|
|
NTTIME status_change_time;
|
|
NTTIME access_time;
|
|
NTTIME change_time;
|
|
uint64_t uid;
|
|
uint64_t gid;
|
|
uint32_t file_type;
|
|
uint64_t dev_major;
|
|
uint64_t dev_minor;
|
|
uint64_t unique_id;
|
|
uint64_t permissions;
|
|
uint64_t nlink;
|
|
} in;
|
|
} unix_basic;
|
|
|
|
/* RAW_SFILEINFO_UNIX_INFO2 interface */
|
|
struct {
|
|
enum smb_setfileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
uint64_t end_of_file;
|
|
uint64_t num_bytes;
|
|
NTTIME status_change_time;
|
|
NTTIME access_time;
|
|
NTTIME change_time;
|
|
uint64_t uid;
|
|
uint64_t gid;
|
|
uint32_t file_type;
|
|
uint64_t dev_major;
|
|
uint64_t dev_minor;
|
|
uint64_t unique_id;
|
|
uint64_t permissions;
|
|
uint64_t nlink;
|
|
NTTIME create_time;
|
|
uint32_t file_flags;
|
|
uint32_t flags_mask;
|
|
} in;
|
|
} unix_info2;
|
|
|
|
/* RAW_SFILEINFO_UNIX_LINK, RAW_SFILEINFO_UNIX_HLINK interface */
|
|
struct {
|
|
enum smb_setfileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
const char *link_dest;
|
|
} in;
|
|
} unix_link, unix_hlink;
|
|
|
|
/* RAW_SFILEINFO_SEC_DESC */
|
|
struct {
|
|
enum smb_setfileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
uint32_t secinfo_flags;
|
|
struct security_descriptor *sd;
|
|
} in;
|
|
} set_secdesc;
|
|
|
|
/* RAW_SFILEINFO_FULL_EA_INFORMATION */
|
|
struct {
|
|
enum smb_setfileinfo_level level;
|
|
struct {
|
|
union smb_handle_or_path file;
|
|
struct smb_ea_list eas;
|
|
} in;
|
|
} full_ea_information;
|
|
};
|
|
|
|
|
|
enum smb_fsinfo_level {
|
|
RAW_QFS_GENERIC = 0xF000,
|
|
RAW_QFS_DSKATTR, /* SMBdskattr */
|
|
RAW_QFS_ALLOCATION = SMB_QFS_ALLOCATION,
|
|
RAW_QFS_VOLUME = SMB_QFS_VOLUME,
|
|
RAW_QFS_VOLUME_INFO = SMB_QFS_VOLUME_INFO,
|
|
RAW_QFS_SIZE_INFO = SMB_QFS_SIZE_INFO,
|
|
RAW_QFS_DEVICE_INFO = SMB_QFS_DEVICE_INFO,
|
|
RAW_QFS_ATTRIBUTE_INFO = SMB_QFS_ATTRIBUTE_INFO,
|
|
RAW_QFS_UNIX_INFO = SMB_QFS_UNIX_INFO,
|
|
RAW_QFS_VOLUME_INFORMATION = SMB_QFS_VOLUME_INFORMATION,
|
|
RAW_QFS_SIZE_INFORMATION = SMB_QFS_SIZE_INFORMATION,
|
|
RAW_QFS_DEVICE_INFORMATION = SMB_QFS_DEVICE_INFORMATION,
|
|
RAW_QFS_ATTRIBUTE_INFORMATION = SMB_QFS_ATTRIBUTE_INFORMATION,
|
|
RAW_QFS_QUOTA_INFORMATION = SMB_QFS_QUOTA_INFORMATION,
|
|
RAW_QFS_FULL_SIZE_INFORMATION = SMB_QFS_FULL_SIZE_INFORMATION,
|
|
RAW_QFS_OBJECTID_INFORMATION = SMB_QFS_OBJECTID_INFORMATION,
|
|
RAW_QFS_SECTOR_SIZE_INFORMATION = SMB_QFS_SECTOR_SIZE_INFORMATION,
|
|
};
|
|
|
|
|
|
/* union for fsinfo() backend call. Note that there are no in
|
|
structures, as this call only contains out parameters */
|
|
union smb_fsinfo {
|
|
/* generic interface */
|
|
struct {
|
|
enum smb_fsinfo_level level;
|
|
struct smb2_handle handle; /* only for smb2 */
|
|
|
|
struct {
|
|
uint32_t block_size;
|
|
uint64_t blocks_total;
|
|
uint64_t blocks_free;
|
|
uint32_t fs_id;
|
|
NTTIME create_time;
|
|
uint32_t serial_number;
|
|
uint32_t fs_attr;
|
|
uint32_t max_file_component_length;
|
|
uint32_t device_type;
|
|
uint32_t device_characteristics;
|
|
uint64_t quota_soft;
|
|
uint64_t quota_hard;
|
|
uint64_t quota_flags;
|
|
struct GUID guid;
|
|
char *volume_name;
|
|
char *fs_type;
|
|
} out;
|
|
} generic;
|
|
|
|
/* SMBdskattr interface */
|
|
struct {
|
|
enum smb_fsinfo_level level;
|
|
|
|
struct {
|
|
uint16_t units_total;
|
|
uint16_t blocks_per_unit;
|
|
uint16_t block_size;
|
|
uint16_t units_free;
|
|
} out;
|
|
} dskattr;
|
|
|
|
/* trans2 RAW_QFS_ALLOCATION interface */
|
|
struct {
|
|
enum smb_fsinfo_level level;
|
|
|
|
struct {
|
|
uint32_t fs_id;
|
|
uint32_t sectors_per_unit;
|
|
uint32_t total_alloc_units;
|
|
uint32_t avail_alloc_units;
|
|
uint16_t bytes_per_sector;
|
|
} out;
|
|
} allocation;
|
|
|
|
/* TRANS2 RAW_QFS_VOLUME interface */
|
|
struct {
|
|
enum smb_fsinfo_level level;
|
|
|
|
struct {
|
|
uint32_t serial_number;
|
|
struct smb_wire_string volume_name;
|
|
} out;
|
|
} volume;
|
|
|
|
/* TRANS2 RAW_QFS_VOLUME_INFO and RAW_QFS_VOLUME_INFORMATION interfaces */
|
|
struct {
|
|
enum smb_fsinfo_level level;
|
|
struct smb2_handle handle; /* only for smb2 */
|
|
|
|
struct {
|
|
NTTIME create_time;
|
|
uint32_t serial_number;
|
|
struct smb_wire_string volume_name;
|
|
} out;
|
|
} volume_info;
|
|
|
|
/* trans2 RAW_QFS_SIZE_INFO and RAW_QFS_SIZE_INFORMATION interfaces */
|
|
struct {
|
|
enum smb_fsinfo_level level;
|
|
struct smb2_handle handle; /* only for smb2 */
|
|
|
|
struct {
|
|
uint64_t total_alloc_units;
|
|
uint64_t avail_alloc_units; /* maps to call_avail_alloc_units */
|
|
uint32_t sectors_per_unit;
|
|
uint32_t bytes_per_sector;
|
|
} out;
|
|
} size_info;
|
|
|
|
/* TRANS2 RAW_QFS_DEVICE_INFO and RAW_QFS_DEVICE_INFORMATION interfaces */
|
|
struct {
|
|
enum smb_fsinfo_level level;
|
|
struct smb2_handle handle; /* only for smb2 */
|
|
|
|
struct {
|
|
uint32_t device_type;
|
|
uint32_t characteristics;
|
|
} out;
|
|
} device_info;
|
|
|
|
|
|
/* TRANS2 RAW_QFS_ATTRIBUTE_INFO and RAW_QFS_ATTRIBUTE_INFORMATION interfaces */
|
|
struct {
|
|
enum smb_fsinfo_level level;
|
|
struct smb2_handle handle; /* only for smb2 */
|
|
|
|
struct {
|
|
uint32_t fs_attr;
|
|
uint32_t max_file_component_length;
|
|
struct smb_wire_string fs_type;
|
|
} out;
|
|
} attribute_info;
|
|
|
|
|
|
/* TRANS2 RAW_QFS_UNIX_INFO interface */
|
|
struct {
|
|
enum smb_fsinfo_level level;
|
|
|
|
struct {
|
|
uint16_t major_version;
|
|
uint16_t minor_version;
|
|
uint64_t capability;
|
|
} out;
|
|
} unix_info;
|
|
|
|
/* trans2 RAW_QFS_QUOTA_INFORMATION interface */
|
|
struct {
|
|
enum smb_fsinfo_level level;
|
|
struct smb2_handle handle; /* only for smb2 */
|
|
|
|
struct {
|
|
uint64_t unknown[3];
|
|
uint64_t quota_soft;
|
|
uint64_t quota_hard;
|
|
uint64_t quota_flags;
|
|
} out;
|
|
} quota_information;
|
|
|
|
/* trans2 RAW_QFS_FULL_SIZE_INFORMATION interface */
|
|
struct {
|
|
enum smb_fsinfo_level level;
|
|
struct smb2_handle handle; /* only for smb2 */
|
|
|
|
struct {
|
|
uint64_t total_alloc_units;
|
|
uint64_t call_avail_alloc_units;
|
|
uint64_t actual_avail_alloc_units;
|
|
uint32_t sectors_per_unit;
|
|
uint32_t bytes_per_sector;
|
|
} out;
|
|
} full_size_information;
|
|
|
|
/* trans2 RAW_QFS_OBJECTID_INFORMATION interface */
|
|
struct {
|
|
enum smb_fsinfo_level level;
|
|
struct smb2_handle handle; /* only for smb2 */
|
|
|
|
struct {
|
|
struct GUID guid;
|
|
uint64_t unknown[6];
|
|
} out;
|
|
} objectid_information;
|
|
|
|
/* trans2 RAW_QFS_SECTOR_SIZE_INFORMATION interface */
|
|
struct {
|
|
enum smb_fsinfo_level level;
|
|
struct smb2_handle handle; /* only for smb2 */
|
|
|
|
struct {
|
|
uint32_t logical_bytes_per_sector;
|
|
uint32_t phys_bytes_per_sector_atomic;
|
|
uint32_t phys_bytes_per_sector_perf;
|
|
uint32_t fs_effective_phys_bytes_per_sector_atomic;
|
|
uint32_t flags;
|
|
uint32_t byte_off_sector_align;
|
|
uint32_t byte_off_partition_align;
|
|
} out;
|
|
} sector_size_info;
|
|
};
|
|
|
|
|
|
enum smb_setfsinfo_level {
|
|
RAW_SETFS_UNIX_INFO = SMB_SET_CIFS_UNIX_INFO};
|
|
|
|
union smb_setfsinfo {
|
|
/* generic interface */
|
|
struct {
|
|
enum smb_setfsinfo_level level;
|
|
} generic;
|
|
|
|
/* TRANS2 RAW_QFS_UNIX_INFO interface */
|
|
struct {
|
|
enum smb_setfsinfo_level level;
|
|
|
|
struct {
|
|
uint16_t major_version;
|
|
uint16_t minor_version;
|
|
uint64_t capability;
|
|
} in;
|
|
} unix_info;
|
|
};
|
|
|
|
enum smb_open_level {
|
|
RAW_OPEN_OPEN,
|
|
RAW_OPEN_OPENX,
|
|
RAW_OPEN_MKNEW,
|
|
RAW_OPEN_CREATE,
|
|
RAW_OPEN_CTEMP,
|
|
RAW_OPEN_SPLOPEN,
|
|
RAW_OPEN_NTCREATEX,
|
|
RAW_OPEN_T2OPEN,
|
|
RAW_OPEN_NTTRANS_CREATE,
|
|
RAW_OPEN_OPENX_READX,
|
|
RAW_OPEN_NTCREATEX_READX,
|
|
RAW_OPEN_SMB2
|
|
};
|
|
|
|
/* the generic interface is defined to be equal to the NTCREATEX interface */
|
|
#define RAW_OPEN_GENERIC RAW_OPEN_NTCREATEX
|
|
|
|
/* union for open() backend call */
|
|
union smb_open {
|
|
/*
|
|
* because the *.out.file structs are not aligned to the same offset for each level
|
|
* we provide a hepler macro that should be used to find the current smb_handle structure
|
|
*/
|
|
#define SMB_OPEN_OUT_FILE(op, file) do { \
|
|
switch (op->generic.level) { \
|
|
case RAW_OPEN_OPEN: \
|
|
file = &op->openold.out.file; \
|
|
break; \
|
|
case RAW_OPEN_OPENX: \
|
|
file = &op->openx.out.file; \
|
|
break; \
|
|
case RAW_OPEN_MKNEW: \
|
|
file = &op->mknew.out.file; \
|
|
break; \
|
|
case RAW_OPEN_CREATE: \
|
|
file = &op->create.out.file; \
|
|
break; \
|
|
case RAW_OPEN_CTEMP: \
|
|
file = &op->ctemp.out.file; \
|
|
break; \
|
|
case RAW_OPEN_SPLOPEN: \
|
|
file = &op->splopen.out.file; \
|
|
break; \
|
|
case RAW_OPEN_NTCREATEX: \
|
|
file = &op->ntcreatex.out.file; \
|
|
break; \
|
|
case RAW_OPEN_T2OPEN: \
|
|
file = &op->t2open.out.file; \
|
|
break; \
|
|
case RAW_OPEN_NTTRANS_CREATE: \
|
|
file = &op->nttrans.out.file; \
|
|
break; \
|
|
case RAW_OPEN_OPENX_READX: \
|
|
file = &op->openxreadx.out.file; \
|
|
break; \
|
|
case RAW_OPEN_NTCREATEX_READX: \
|
|
file = &op->ntcreatexreadx.out.file; \
|
|
break; \
|
|
case RAW_OPEN_SMB2: \
|
|
file = &op->smb2.out.file; \
|
|
break; \
|
|
default: \
|
|
/* this must be a programmer error */ \
|
|
file = NULL; \
|
|
break; \
|
|
} \
|
|
} while (0)
|
|
/* SMBNTCreateX, nttrans and generic interface */
|
|
struct {
|
|
enum smb_open_level level;
|
|
struct {
|
|
uint32_t flags;
|
|
union smb_handle root_fid;
|
|
uint32_t access_mask;
|
|
uint64_t alloc_size;
|
|
uint32_t file_attr;
|
|
uint32_t share_access;
|
|
uint32_t open_disposition;
|
|
uint32_t create_options;
|
|
uint32_t impersonation;
|
|
uint8_t security_flags;
|
|
/* NOTE: fname can also be a pointer to a
|
|
uint64_t file_id if create_options has the
|
|
NTCREATEX_OPTIONS_OPEN_BY_FILE_ID flag set */
|
|
const char *fname;
|
|
|
|
/* these last 2 elements are only used in the
|
|
NTTRANS varient of the call */
|
|
struct security_descriptor *sec_desc;
|
|
struct smb_ea_list *ea_list;
|
|
|
|
/* some optional parameters from the SMB2 varient */
|
|
bool query_maximal_access;
|
|
bool query_on_disk_id;
|
|
|
|
/* private flags for internal use only */
|
|
uint8_t private_flags;
|
|
} in;
|
|
struct {
|
|
union smb_handle file;
|
|
uint8_t oplock_level;
|
|
uint32_t create_action;
|
|
NTTIME create_time;
|
|
NTTIME access_time;
|
|
NTTIME write_time;
|
|
NTTIME change_time;
|
|
uint32_t attrib;
|
|
uint64_t alloc_size;
|
|
uint64_t size;
|
|
uint16_t file_type;
|
|
uint16_t ipc_state;
|
|
uint8_t is_directory;
|
|
|
|
/* optional return values matching SMB2 tagged
|
|
values in the call */
|
|
uint32_t maximal_access;
|
|
uint8_t on_disk_id[32];
|
|
} out;
|
|
} ntcreatex, nttrans, generic;
|
|
|
|
/* TRANS2_OPEN interface */
|
|
struct {
|
|
enum smb_open_level level;
|
|
struct {
|
|
uint16_t flags;
|
|
uint16_t open_mode;
|
|
uint16_t search_attrs;
|
|
uint16_t file_attrs;
|
|
time_t write_time;
|
|
uint16_t open_func;
|
|
uint32_t size;
|
|
uint32_t timeout;
|
|
const char *fname;
|
|
unsigned int num_eas;
|
|
struct ea_struct *eas;
|
|
} in;
|
|
struct {
|
|
union smb_handle file;
|
|
uint16_t attrib;
|
|
time_t write_time;
|
|
uint32_t size;
|
|
uint16_t access;
|
|
uint16_t ftype;
|
|
uint16_t devstate;
|
|
uint16_t action;
|
|
uint32_t file_id;
|
|
} out;
|
|
} t2open;
|
|
|
|
/* SMBopen interface */
|
|
struct {
|
|
enum smb_open_level level;
|
|
struct {
|
|
uint16_t open_mode;
|
|
uint16_t search_attrs;
|
|
const char *fname;
|
|
} in;
|
|
struct {
|
|
union smb_handle file;
|
|
uint16_t attrib;
|
|
time_t write_time;
|
|
uint32_t size;
|
|
uint16_t rmode;
|
|
} out;
|
|
} openold;
|
|
|
|
/* SMBopenX interface */
|
|
struct {
|
|
enum smb_open_level level;
|
|
struct {
|
|
uint16_t flags;
|
|
uint16_t open_mode;
|
|
uint16_t search_attrs; /* not honoured by win2003 */
|
|
uint16_t file_attrs;
|
|
time_t write_time; /* not honoured by win2003 */
|
|
uint16_t open_func;
|
|
uint32_t size; /* note that this sets the
|
|
initial file size, not
|
|
just allocation size */
|
|
uint32_t timeout; /* not honoured by win2003 */
|
|
const char *fname;
|
|
} in;
|
|
struct {
|
|
union smb_handle file;
|
|
uint16_t attrib;
|
|
time_t write_time;
|
|
uint32_t size;
|
|
uint16_t access;
|
|
uint16_t ftype;
|
|
uint16_t devstate;
|
|
uint16_t action;
|
|
uint32_t unique_fid;
|
|
uint32_t access_mask;
|
|
uint32_t unknown;
|
|
} out;
|
|
} openx;
|
|
|
|
/* SMBmknew interface */
|
|
struct {
|
|
enum smb_open_level level;
|
|
struct {
|
|
uint16_t attrib;
|
|
time_t write_time;
|
|
const char *fname;
|
|
} in;
|
|
struct {
|
|
union smb_handle file;
|
|
} out;
|
|
} mknew, create;
|
|
|
|
/* SMBctemp interface */
|
|
struct {
|
|
enum smb_open_level level;
|
|
struct {
|
|
uint16_t attrib;
|
|
time_t write_time;
|
|
const char *directory;
|
|
} in;
|
|
struct {
|
|
union smb_handle file;
|
|
/* temp name, relative to directory */
|
|
char *name;
|
|
} out;
|
|
} ctemp;
|
|
|
|
/* SMBsplopen interface */
|
|
struct {
|
|
enum smb_open_level level;
|
|
struct {
|
|
uint16_t setup_length;
|
|
uint16_t mode;
|
|
const char *ident;
|
|
} in;
|
|
struct {
|
|
union smb_handle file;
|
|
} out;
|
|
} splopen;
|
|
|
|
|
|
/* chained OpenX/ReadX interface */
|
|
struct {
|
|
enum smb_open_level level;
|
|
struct {
|
|
uint16_t flags;
|
|
uint16_t open_mode;
|
|
uint16_t search_attrs; /* not honoured by win2003 */
|
|
uint16_t file_attrs;
|
|
time_t write_time; /* not honoured by win2003 */
|
|
uint16_t open_func;
|
|
uint32_t size; /* note that this sets the
|
|
initial file size, not
|
|
just allocation size */
|
|
uint32_t timeout; /* not honoured by win2003 */
|
|
const char *fname;
|
|
|
|
/* readx part */
|
|
uint64_t offset;
|
|
uint16_t mincnt;
|
|
uint32_t maxcnt;
|
|
uint16_t remaining;
|
|
} in;
|
|
struct {
|
|
union smb_handle file;
|
|
uint16_t attrib;
|
|
time_t write_time;
|
|
uint32_t size;
|
|
uint16_t access;
|
|
uint16_t ftype;
|
|
uint16_t devstate;
|
|
uint16_t action;
|
|
uint32_t unique_fid;
|
|
uint32_t access_mask;
|
|
uint32_t unknown;
|
|
|
|
/* readx part */
|
|
uint8_t *data;
|
|
uint16_t remaining;
|
|
uint16_t compaction_mode;
|
|
uint16_t nread;
|
|
} out;
|
|
} openxreadx;
|
|
|
|
/* chained NTCreateX/ReadX interface */
|
|
struct {
|
|
enum smb_open_level level;
|
|
struct {
|
|
uint32_t flags;
|
|
union smb_handle root_fid;
|
|
uint32_t access_mask;
|
|
uint64_t alloc_size;
|
|
uint32_t file_attr;
|
|
uint32_t share_access;
|
|
uint32_t open_disposition;
|
|
uint32_t create_options;
|
|
uint32_t impersonation;
|
|
uint8_t security_flags;
|
|
/* NOTE: fname can also be a pointer to a
|
|
uint64_t file_id if create_options has the
|
|
NTCREATEX_OPTIONS_OPEN_BY_FILE_ID flag set */
|
|
const char *fname;
|
|
|
|
/* readx part */
|
|
uint64_t offset;
|
|
uint16_t mincnt;
|
|
uint32_t maxcnt;
|
|
uint16_t remaining;
|
|
} in;
|
|
struct {
|
|
union smb_handle file;
|
|
uint8_t oplock_level;
|
|
uint32_t create_action;
|
|
NTTIME create_time;
|
|
NTTIME access_time;
|
|
NTTIME write_time;
|
|
NTTIME change_time;
|
|
uint32_t attrib;
|
|
uint64_t alloc_size;
|
|
uint64_t size;
|
|
uint16_t file_type;
|
|
uint16_t ipc_state;
|
|
uint8_t is_directory;
|
|
|
|
/* readx part */
|
|
uint8_t *data;
|
|
uint16_t remaining;
|
|
uint16_t compaction_mode;
|
|
uint16_t nread;
|
|
} out;
|
|
} ntcreatexreadx;
|
|
|
|
#define SMB2_CREATE_FLAG_REQUEST_OPLOCK 0x0100
|
|
#define SMB2_CREATE_FLAG_REQUEST_EXCLUSIVE_OPLOCK 0x0800
|
|
#define SMB2_CREATE_FLAG_GRANT_OPLOCK 0x0001
|
|
#define SMB2_CREATE_FLAG_GRANT_EXCLUSIVE_OPLOCK 0x0080
|
|
|
|
/* SMB2 Create */
|
|
struct smb2_create {
|
|
enum smb_open_level level;
|
|
struct {
|
|
/* static body buffer 56 (0x38) bytes */
|
|
uint8_t security_flags; /* SMB2_SECURITY_* */
|
|
uint8_t oplock_level; /* SMB2_OPLOCK_LEVEL_* */
|
|
uint32_t impersonation_level; /* SMB2_IMPERSONATION_* */
|
|
uint64_t create_flags;
|
|
uint64_t reserved;
|
|
uint32_t desired_access;
|
|
uint32_t file_attributes;
|
|
uint32_t share_access; /* NTCREATEX_SHARE_ACCESS_* */
|
|
uint32_t create_disposition; /* NTCREATEX_DISP_* */
|
|
uint32_t create_options; /* NTCREATEX_OPTIONS_* */
|
|
|
|
/* uint16_t fname_ofs */
|
|
/* uint16_t fname_size */
|
|
/* uint32_t blob_ofs; */
|
|
/* uint32_t blob_size; */
|
|
|
|
/* dynamic body */
|
|
const char *fname;
|
|
|
|
/* now some optional parameters - encoded as tagged blobs */
|
|
struct smb_ea_list eas;
|
|
uint64_t alloc_size;
|
|
struct security_descriptor *sec_desc;
|
|
bool durable_open;
|
|
struct smb2_handle *durable_handle;
|
|
|
|
/* data for durable handle v2 */
|
|
bool durable_open_v2;
|
|
struct GUID create_guid;
|
|
bool persistent_open;
|
|
uint32_t timeout;
|
|
struct smb2_handle *durable_handle_v2;
|
|
|
|
bool query_maximal_access;
|
|
NTTIME timewarp;
|
|
bool query_on_disk_id;
|
|
struct smb2_lease *lease_request;
|
|
struct smb2_lease *lease_request_v2;
|
|
|
|
struct GUID *app_instance_id;
|
|
|
|
/* and any additional blobs the caller wants */
|
|
struct smb2_create_blobs blobs;
|
|
} in;
|
|
struct {
|
|
union smb_handle file;
|
|
|
|
/* static body buffer 88 (0x58) bytes */
|
|
/* uint16_t buffer_code; 0x59 = 0x58 + 1 */
|
|
uint8_t oplock_level;
|
|
uint8_t reserved;
|
|
uint32_t create_action;
|
|
NTTIME create_time;
|
|
NTTIME access_time;
|
|
NTTIME write_time;
|
|
NTTIME change_time;
|
|
uint64_t alloc_size;
|
|
uint64_t size;
|
|
uint32_t file_attr;
|
|
uint32_t reserved2;
|
|
/* struct smb2_handle handle;*/
|
|
/* uint32_t blob_ofs; */
|
|
/* uint32_t blob_size; */
|
|
|
|
/* optional return values matching tagged values in the call */
|
|
uint32_t maximal_access;
|
|
uint8_t on_disk_id[32];
|
|
struct smb2_lease lease_response;
|
|
struct smb2_lease lease_response_v2;
|
|
bool durable_open;
|
|
|
|
/* durable handle v2 */
|
|
bool durable_open_v2;
|
|
bool persistent_open;
|
|
uint32_t timeout;
|
|
|
|
/* tagged blobs in the reply */
|
|
struct smb2_create_blobs blobs;
|
|
} out;
|
|
} smb2;
|
|
};
|
|
|
|
|
|
|
|
enum smb_read_level {
|
|
RAW_READ_READBRAW,
|
|
RAW_READ_LOCKREAD,
|
|
RAW_READ_READ,
|
|
RAW_READ_READX,
|
|
RAW_READ_SMB2
|
|
};
|
|
|
|
#define RAW_READ_GENERIC RAW_READ_READX
|
|
|
|
/* union for read() backend call
|
|
|
|
note that .infoX.out.data will be allocated before the backend is
|
|
called. It will be big enough to hold the maximum size asked for
|
|
*/
|
|
union smb_read {
|
|
/* SMBreadX (and generic) interface */
|
|
struct {
|
|
enum smb_read_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
uint64_t offset;
|
|
uint32_t mincnt; /* enforced on SMB2, 16 bit on SMB */
|
|
uint32_t maxcnt;
|
|
uint16_t remaining;
|
|
bool read_for_execute;
|
|
} in;
|
|
struct {
|
|
uint8_t *data;
|
|
uint16_t remaining;
|
|
uint16_t compaction_mode;
|
|
uint32_t nread;
|
|
uint16_t flags2;
|
|
uint16_t data_offset;
|
|
} out;
|
|
} readx, generic;
|
|
|
|
/* SMBreadbraw interface */
|
|
struct {
|
|
enum smb_read_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
uint64_t offset;
|
|
uint16_t maxcnt;
|
|
uint16_t mincnt;
|
|
uint32_t timeout;
|
|
} in;
|
|
struct {
|
|
uint8_t *data;
|
|
uint32_t nread;
|
|
} out;
|
|
} readbraw;
|
|
|
|
|
|
/* SMBlockandread interface */
|
|
struct {
|
|
enum smb_read_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
uint16_t count;
|
|
uint32_t offset;
|
|
uint16_t remaining;
|
|
} in;
|
|
struct {
|
|
uint8_t *data;
|
|
uint16_t nread;
|
|
} out;
|
|
} lockread;
|
|
|
|
/* SMBread interface */
|
|
struct {
|
|
enum smb_read_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
uint16_t count;
|
|
uint32_t offset;
|
|
uint16_t remaining;
|
|
} in;
|
|
struct {
|
|
uint8_t *data;
|
|
uint16_t nread;
|
|
} out;
|
|
} read;
|
|
|
|
/* SMB2 Read */
|
|
struct smb2_read {
|
|
enum smb_read_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
|
|
/* static body buffer 48 (0x30) bytes */
|
|
/* uint16_t buffer_code; 0x31 = 0x30 + 1 */
|
|
uint8_t _pad;
|
|
uint8_t reserved;
|
|
uint32_t length;
|
|
uint64_t offset;
|
|
/* struct smb2_handle handle; */
|
|
uint32_t min_count;
|
|
uint32_t channel;
|
|
uint32_t remaining;
|
|
/* the docs give no indication of what
|
|
these channel variables are for */
|
|
uint16_t channel_offset;
|
|
uint16_t channel_length;
|
|
} in;
|
|
struct {
|
|
/* static body buffer 16 (0x10) bytes */
|
|
/* uint16_t buffer_code; 0x11 = 0x10 + 1 */
|
|
/* uint8_t data_ofs; */
|
|
/* uint8_t reserved; */
|
|
/* uint32_t data_size; */
|
|
uint32_t remaining;
|
|
uint32_t reserved;
|
|
|
|
/* dynamic body */
|
|
DATA_BLOB data;
|
|
} out;
|
|
} smb2;
|
|
};
|
|
|
|
|
|
enum smb_write_level {
|
|
RAW_WRITE_WRITEUNLOCK,
|
|
RAW_WRITE_WRITE,
|
|
RAW_WRITE_WRITEX,
|
|
RAW_WRITE_WRITECLOSE,
|
|
RAW_WRITE_SPLWRITE,
|
|
RAW_WRITE_SMB2
|
|
};
|
|
|
|
#define RAW_WRITE_GENERIC RAW_WRITE_WRITEX
|
|
|
|
/* union for write() backend call
|
|
*/
|
|
union smb_write {
|
|
/* SMBwriteX interface */
|
|
struct {
|
|
enum smb_write_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
uint64_t offset;
|
|
uint16_t wmode;
|
|
uint16_t remaining;
|
|
uint32_t count;
|
|
const uint8_t *data;
|
|
} in;
|
|
struct {
|
|
uint32_t nwritten;
|
|
uint16_t remaining;
|
|
} out;
|
|
} writex, generic;
|
|
|
|
/* SMBwriteunlock interface */
|
|
struct {
|
|
enum smb_write_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
uint16_t count;
|
|
uint32_t offset;
|
|
uint16_t remaining;
|
|
const uint8_t *data;
|
|
} in;
|
|
struct {
|
|
uint32_t nwritten;
|
|
} out;
|
|
} writeunlock;
|
|
|
|
/* SMBwrite interface */
|
|
struct {
|
|
enum smb_write_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
uint16_t count;
|
|
uint32_t offset;
|
|
uint16_t remaining;
|
|
const uint8_t *data;
|
|
} in;
|
|
struct {
|
|
uint16_t nwritten;
|
|
} out;
|
|
} write;
|
|
|
|
/* SMBwriteclose interface */
|
|
struct {
|
|
enum smb_write_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
uint16_t count;
|
|
uint32_t offset;
|
|
time_t mtime;
|
|
const uint8_t *data;
|
|
} in;
|
|
struct {
|
|
uint16_t nwritten;
|
|
} out;
|
|
} writeclose;
|
|
|
|
/* SMBsplwrite interface */
|
|
struct {
|
|
enum smb_write_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
uint16_t count;
|
|
const uint8_t *data;
|
|
} in;
|
|
} splwrite;
|
|
|
|
/* SMB2 Write */
|
|
struct smb2_write {
|
|
enum smb_write_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
|
|
/* static body buffer 48 (0x30) bytes */
|
|
/* uint16_t buffer_code; 0x31 = 0x30 + 1 */
|
|
/* uint16_t data_ofs; */
|
|
/* uint32_t data_size; */
|
|
uint64_t offset;
|
|
/* struct smb2_handle handle; */
|
|
uint64_t unknown1; /* 0xFFFFFFFFFFFFFFFF */
|
|
uint64_t unknown2; /* 0xFFFFFFFFFFFFFFFF */
|
|
|
|
/* dynamic body */
|
|
DATA_BLOB data;
|
|
} in;
|
|
struct {
|
|
/* static body buffer 17 (0x11) bytes */
|
|
/* uint16_t buffer_code; 0x11 = 0x10 + 1*/
|
|
uint16_t _pad;
|
|
uint32_t nwritten;
|
|
uint64_t unknown1; /* 0x0000000000000000 */
|
|
} out;
|
|
} smb2;
|
|
};
|
|
|
|
|
|
enum smb_lock_level {
|
|
RAW_LOCK_LOCK,
|
|
RAW_LOCK_UNLOCK,
|
|
RAW_LOCK_LOCKX,
|
|
RAW_LOCK_SMB2,
|
|
RAW_LOCK_SMB2_BREAK
|
|
};
|
|
|
|
#define RAW_LOCK_GENERIC RAW_LOCK_LOCKX
|
|
|
|
/* union for lock() backend call
|
|
*/
|
|
union smb_lock {
|
|
/* SMBlockingX and generic interface */
|
|
struct {
|
|
enum smb_lock_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
uint16_t mode;
|
|
uint32_t timeout;
|
|
uint16_t ulock_cnt;
|
|
uint16_t lock_cnt;
|
|
struct smb_lock_entry {
|
|
uint32_t pid; /* 16 bits in SMB1 */
|
|
uint64_t offset;
|
|
uint64_t count;
|
|
} *locks; /* unlocks are first in the arrray */
|
|
} in;
|
|
} generic, lockx;
|
|
|
|
/* SMBlock and SMBunlock interface */
|
|
struct {
|
|
enum smb_lock_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
uint32_t count;
|
|
uint32_t offset;
|
|
} in;
|
|
} lock, unlock;
|
|
|
|
/* SMB2 Lock */
|
|
struct smb2_lock {
|
|
enum smb_lock_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
|
|
/* static body buffer 48 (0x30) bytes */
|
|
/* uint16_t buffer_code; 0x30 */
|
|
uint16_t lock_count;
|
|
uint32_t lock_sequence;
|
|
/* struct smb2_handle handle; */
|
|
struct smb2_lock_element {
|
|
uint64_t offset;
|
|
uint64_t length;
|
|
uint32_t flags;
|
|
uint32_t reserved;
|
|
} *locks;
|
|
} in;
|
|
struct {
|
|
/* static body buffer 4 (0x04) bytes */
|
|
/* uint16_t buffer_code; 0x04 */
|
|
uint16_t reserved;
|
|
} out;
|
|
} smb2;
|
|
|
|
/* SMB2 Break */
|
|
struct smb2_break {
|
|
enum smb_lock_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
|
|
/* static body buffer 24 (0x18) bytes */
|
|
uint8_t oplock_level;
|
|
uint8_t reserved;
|
|
uint32_t reserved2;
|
|
/* struct smb2_handle handle; */
|
|
} in, out;
|
|
} smb2_break;
|
|
|
|
/* SMB2 Lease Break Ack (same opcode as smb2_break) */
|
|
struct smb2_lease_break_ack {
|
|
struct {
|
|
uint32_t reserved;
|
|
struct smb2_lease lease;
|
|
} in, out;
|
|
} smb2_lease_break_ack;
|
|
};
|
|
|
|
|
|
enum smb_close_level {
|
|
RAW_CLOSE_CLOSE,
|
|
RAW_CLOSE_SPLCLOSE,
|
|
RAW_CLOSE_SMB2,
|
|
RAW_CLOSE_GENERIC,
|
|
};
|
|
|
|
/*
|
|
union for close() backend call
|
|
*/
|
|
union smb_close {
|
|
/* generic interface */
|
|
struct {
|
|
enum smb_close_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
time_t write_time;
|
|
uint16_t flags; /* SMB2_CLOSE_FLAGS_* */
|
|
} in;
|
|
struct {
|
|
uint16_t flags;
|
|
NTTIME create_time;
|
|
NTTIME access_time;
|
|
NTTIME write_time;
|
|
NTTIME change_time;
|
|
uint64_t alloc_size;
|
|
uint64_t size;
|
|
uint32_t file_attr;
|
|
} out;
|
|
} generic;
|
|
|
|
/* SMBclose interface */
|
|
struct {
|
|
enum smb_close_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
time_t write_time;
|
|
} in;
|
|
} close;
|
|
|
|
/* SMBsplclose interface - empty! */
|
|
struct {
|
|
enum smb_close_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
} in;
|
|
} splclose;
|
|
|
|
/* SMB2 Close */
|
|
struct smb2_close {
|
|
enum smb_close_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
|
|
/* static body buffer 24 (0x18) bytes */
|
|
/* uint16_t buffer_code; 0x18 */
|
|
uint16_t flags; /* SMB2_CLOSE_FLAGS_* */
|
|
uint32_t _pad;
|
|
} in;
|
|
struct {
|
|
/* static body buffer 60 (0x3C) bytes */
|
|
/* uint16_t buffer_code; 0x3C */
|
|
uint16_t flags;
|
|
uint32_t _pad;
|
|
NTTIME create_time;
|
|
NTTIME access_time;
|
|
NTTIME write_time;
|
|
NTTIME change_time;
|
|
uint64_t alloc_size;
|
|
uint64_t size;
|
|
uint32_t file_attr;
|
|
} out;
|
|
} smb2;
|
|
};
|
|
|
|
|
|
enum smb_lpq_level {RAW_LPQ_GENERIC, RAW_LPQ_RETQ};
|
|
|
|
/*
|
|
union for lpq() backend
|
|
*/
|
|
union smb_lpq {
|
|
/* generic interface */
|
|
struct {
|
|
enum smb_lpq_level level;
|
|
|
|
} generic;
|
|
|
|
|
|
/* SMBsplretq interface */
|
|
struct {
|
|
enum smb_lpq_level level;
|
|
|
|
struct {
|
|
uint16_t maxcount;
|
|
uint16_t startidx;
|
|
} in;
|
|
struct {
|
|
uint16_t count;
|
|
uint16_t restart_idx;
|
|
struct {
|
|
time_t time;
|
|
uint8_t status;
|
|
uint16_t job;
|
|
uint32_t size;
|
|
char *user;
|
|
} *queue;
|
|
} out;
|
|
} retq;
|
|
};
|
|
|
|
enum smb_ioctl_level {
|
|
RAW_IOCTL_IOCTL,
|
|
RAW_IOCTL_NTIOCTL,
|
|
RAW_IOCTL_SMB2,
|
|
RAW_IOCTL_SMB2_NO_HANDLE
|
|
};
|
|
|
|
/*
|
|
union for ioctl() backend
|
|
*/
|
|
union smb_ioctl {
|
|
/* generic interface */
|
|
struct {
|
|
enum smb_ioctl_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
} in;
|
|
} generic;
|
|
|
|
/* struct for SMBioctl */
|
|
struct {
|
|
enum smb_ioctl_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
uint32_t request;
|
|
} in;
|
|
struct {
|
|
DATA_BLOB blob;
|
|
} out;
|
|
} ioctl;
|
|
|
|
|
|
/* struct for NT ioctl call */
|
|
struct {
|
|
enum smb_ioctl_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
uint32_t function;
|
|
bool fsctl;
|
|
uint8_t filter;
|
|
uint32_t max_data;
|
|
DATA_BLOB blob;
|
|
} in;
|
|
struct {
|
|
DATA_BLOB blob;
|
|
} out;
|
|
} ntioctl;
|
|
|
|
/* SMB2 Ioctl */
|
|
struct smb2_ioctl {
|
|
enum smb_ioctl_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
|
|
/* static body buffer 56 (0x38) bytes */
|
|
/* uint16_t buffer_code; 0x39 = 0x38 + 1 */
|
|
uint16_t _pad;
|
|
uint32_t function;
|
|
/*struct smb2_handle handle;*/
|
|
/* uint32_t out_ofs; */
|
|
/* uint32_t out_size; */
|
|
uint32_t unknown2;
|
|
/* uint32_t in_ofs; */
|
|
/* uint32_t in_size; */
|
|
uint32_t max_response_size;
|
|
uint64_t flags;
|
|
|
|
/* dynamic body */
|
|
DATA_BLOB out;
|
|
DATA_BLOB in;
|
|
} in;
|
|
struct {
|
|
union smb_handle file;
|
|
|
|
/* static body buffer 48 (0x30) bytes */
|
|
/* uint16_t buffer_code; 0x31 = 0x30 + 1 */
|
|
uint16_t _pad;
|
|
uint32_t function;
|
|
/* struct smb2_handle handle; */
|
|
/* uint32_t in_ofs; */
|
|
/* uint32_t in_size; */
|
|
/* uint32_t out_ofs; */
|
|
/* uint32_t out_size; */
|
|
uint32_t unknown2;
|
|
uint32_t unknown3;
|
|
|
|
/* dynamic body */
|
|
DATA_BLOB in;
|
|
DATA_BLOB out;
|
|
} out;
|
|
} smb2;
|
|
};
|
|
|
|
enum smb_flush_level {
|
|
RAW_FLUSH_FLUSH,
|
|
RAW_FLUSH_ALL,
|
|
RAW_FLUSH_SMB2
|
|
};
|
|
|
|
union smb_flush {
|
|
/* struct for SMBflush */
|
|
struct {
|
|
enum smb_flush_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
} in;
|
|
} flush, generic;
|
|
|
|
/* SMBflush with 0xFFFF wildcard fnum */
|
|
struct {
|
|
enum smb_flush_level level;
|
|
} flush_all;
|
|
|
|
/* SMB2 Flush */
|
|
struct smb2_flush {
|
|
enum smb_flush_level level;
|
|
struct {
|
|
union smb_handle file;
|
|
uint16_t reserved1;
|
|
uint32_t reserved2;
|
|
} in;
|
|
struct {
|
|
uint16_t reserved;
|
|
} out;
|
|
} smb2;
|
|
};
|
|
|
|
/* struct for SMBcopy */
|
|
struct smb_copy {
|
|
struct {
|
|
uint16_t tid2;
|
|
uint16_t ofun;
|
|
uint16_t flags;
|
|
const char *path1;
|
|
const char *path2;
|
|
} in;
|
|
struct {
|
|
uint16_t count;
|
|
} out;
|
|
};
|
|
|
|
|
|
/* struct for transact/transact2 call */
|
|
struct smb_trans2 {
|
|
struct {
|
|
uint16_t max_param;
|
|
uint16_t max_data;
|
|
uint8_t max_setup;
|
|
uint16_t flags;
|
|
uint32_t timeout;
|
|
uint8_t setup_count;
|
|
uint16_t *setup;
|
|
const char *trans_name; /* SMBtrans only */
|
|
DATA_BLOB params;
|
|
DATA_BLOB data;
|
|
} in;
|
|
|
|
struct {
|
|
uint8_t setup_count;
|
|
uint16_t *setup;
|
|
DATA_BLOB params;
|
|
DATA_BLOB data;
|
|
} out;
|
|
};
|
|
|
|
/* struct for nttransact2 call */
|
|
struct smb_nttrans {
|
|
struct {
|
|
uint8_t max_setup;
|
|
uint32_t max_param;
|
|
uint32_t max_data;
|
|
uint8_t setup_count;
|
|
uint16_t function;
|
|
uint8_t *setup;
|
|
DATA_BLOB params;
|
|
DATA_BLOB data;
|
|
} in;
|
|
|
|
struct {
|
|
uint8_t setup_count; /* in units of 16 bit words */
|
|
uint8_t *setup;
|
|
DATA_BLOB params;
|
|
DATA_BLOB data;
|
|
} out;
|
|
};
|
|
|
|
enum smb_notify_level {
|
|
RAW_NOTIFY_NTTRANS,
|
|
RAW_NOTIFY_SMB2
|
|
};
|
|
|
|
union smb_notify {
|
|
/* struct for nttrans change notify call */
|
|
struct {
|
|
enum smb_notify_level level;
|
|
|
|
struct {
|
|
union smb_handle file;
|
|
uint32_t buffer_size;
|
|
uint32_t completion_filter;
|
|
bool recursive;
|
|
} in;
|
|
|
|
struct {
|
|
uint32_t num_changes;
|
|
struct notify_changes {
|
|
uint32_t action;
|
|
struct smb_wire_string name;
|
|
} *changes;
|
|
} out;
|
|
} nttrans;
|
|
|
|
struct smb2_notify {
|
|
enum smb_notify_level level;
|
|
|
|
struct {
|
|
union smb_handle file;
|
|
/* static body buffer 32 (0x20) bytes */
|
|
/* uint16_t buffer_code; 0x32 */
|
|
uint16_t recursive;
|
|
uint32_t buffer_size;
|
|
/*struct smb2_handle file;*/
|
|
uint32_t completion_filter;
|
|
uint32_t unknown;
|
|
} in;
|
|
|
|
struct {
|
|
/* static body buffer 8 (0x08) bytes */
|
|
/* uint16_t buffer_code; 0x09 = 0x08 + 1 */
|
|
/* uint16_t blob_ofs; */
|
|
/* uint16_t blob_size; */
|
|
|
|
/* dynamic body */
|
|
/*DATA_BLOB blob;*/
|
|
|
|
/* DATA_BLOB content */
|
|
uint32_t num_changes;
|
|
struct notify_changes *changes;
|
|
} out;
|
|
} smb2;
|
|
};
|
|
|
|
enum smb_search_level {
|
|
RAW_SEARCH_SEARCH, /* SMBsearch */
|
|
RAW_SEARCH_FFIRST, /* SMBffirst */
|
|
RAW_SEARCH_FUNIQUE, /* SMBfunique */
|
|
RAW_SEARCH_TRANS2, /* SMBtrans2 */
|
|
RAW_SEARCH_SMB2 /* SMB2 Find */
|
|
};
|
|
|
|
enum smb_search_data_level {
|
|
RAW_SEARCH_DATA_GENERIC = 0x10000, /* only used in the smbcli_ code */
|
|
RAW_SEARCH_DATA_SEARCH,
|
|
RAW_SEARCH_DATA_STANDARD = SMB_FIND_STANDARD,
|
|
RAW_SEARCH_DATA_EA_SIZE = SMB_FIND_EA_SIZE,
|
|
RAW_SEARCH_DATA_EA_LIST = SMB_FIND_EA_LIST,
|
|
RAW_SEARCH_DATA_DIRECTORY_INFO = SMB_FIND_DIRECTORY_INFO,
|
|
RAW_SEARCH_DATA_FULL_DIRECTORY_INFO = SMB_FIND_FULL_DIRECTORY_INFO,
|
|
RAW_SEARCH_DATA_NAME_INFO = SMB_FIND_NAME_INFO,
|
|
RAW_SEARCH_DATA_BOTH_DIRECTORY_INFO = SMB_FIND_BOTH_DIRECTORY_INFO,
|
|
RAW_SEARCH_DATA_ID_FULL_DIRECTORY_INFO = SMB_FIND_ID_FULL_DIRECTORY_INFO,
|
|
RAW_SEARCH_DATA_ID_BOTH_DIRECTORY_INFO = SMB_FIND_ID_BOTH_DIRECTORY_INFO,
|
|
RAW_SEARCH_DATA_UNIX_INFO = SMB_FIND_UNIX_INFO,
|
|
RAW_SEARCH_DATA_UNIX_INFO2 = SMB_FIND_UNIX_INFO2
|
|
};
|
|
|
|
/* union for file search */
|
|
union smb_search_first {
|
|
struct {
|
|
enum smb_search_level level;
|
|
enum smb_search_data_level data_level;
|
|
} generic;
|
|
|
|
/* search (old) findfirst interface.
|
|
Also used for ffirst and funique. */
|
|
struct {
|
|
enum smb_search_level level;
|
|
enum smb_search_data_level data_level;
|
|
|
|
struct {
|
|
uint16_t max_count;
|
|
uint16_t search_attrib;
|
|
const char *pattern;
|
|
} in;
|
|
struct {
|
|
int16_t count;
|
|
} out;
|
|
} search_first;
|
|
|
|
/* trans2 findfirst interface */
|
|
struct {
|
|
enum smb_search_level level;
|
|
enum smb_search_data_level data_level;
|
|
|
|
struct {
|
|
uint16_t search_attrib;
|
|
uint16_t max_count;
|
|
uint16_t flags;
|
|
uint32_t storage_type;
|
|
const char *pattern;
|
|
|
|
/* the ea names are only used for RAW_SEARCH_EA_LIST */
|
|
unsigned int num_names;
|
|
struct ea_name *ea_names;
|
|
} in;
|
|
struct {
|
|
uint16_t handle;
|
|
uint16_t count;
|
|
uint16_t end_of_search;
|
|
} out;
|
|
} t2ffirst;
|
|
|
|
/* SMB2 Find */
|
|
struct smb2_find {
|
|
enum smb_search_level level;
|
|
enum smb_search_data_level data_level;
|
|
struct {
|
|
union smb_handle file;
|
|
|
|
/* static body buffer 32 (0x20) bytes */
|
|
/* uint16_t buffer_code; 0x21 = 0x20 + 1 */
|
|
uint8_t level;
|
|
uint8_t continue_flags; /* SMB2_CONTINUE_FLAG_* */
|
|
uint32_t file_index;
|
|
/* struct smb2_handle handle; */
|
|
/* uint16_t pattern_ofs; */
|
|
/* uint16_t pattern_size; */
|
|
uint32_t max_response_size;
|
|
|
|
/* dynamic body */
|
|
const char *pattern;
|
|
} in;
|
|
struct {
|
|
/* static body buffer 8 (0x08) bytes */
|
|
/* uint16_t buffer_code; 0x08 */
|
|
/* uint16_t blob_ofs; */
|
|
/* uint32_t blob_size; */
|
|
|
|
/* dynamic body */
|
|
DATA_BLOB blob;
|
|
} out;
|
|
} smb2;
|
|
};
|
|
|
|
/* union for file search continue */
|
|
union smb_search_next {
|
|
struct {
|
|
enum smb_search_level level;
|
|
enum smb_search_data_level data_level;
|
|
} generic;
|
|
|
|
/* search (old) findnext interface. Also used
|
|
for ffirst when continuing */
|
|
struct {
|
|
enum smb_search_level level;
|
|
enum smb_search_data_level data_level;
|
|
|
|
struct {
|
|
uint16_t max_count;
|
|
uint16_t search_attrib;
|
|
struct smb_search_id {
|
|
uint8_t reserved;
|
|
char name[11];
|
|
uint8_t handle;
|
|
uint32_t server_cookie;
|
|
uint32_t client_cookie;
|
|
} id;
|
|
} in;
|
|
struct {
|
|
uint16_t count;
|
|
} out;
|
|
} search_next;
|
|
|
|
/* trans2 findnext interface */
|
|
struct {
|
|
enum smb_search_level level;
|
|
enum smb_search_data_level data_level;
|
|
|
|
struct {
|
|
uint16_t handle;
|
|
uint16_t max_count;
|
|
uint32_t resume_key;
|
|
uint16_t flags;
|
|
const char *last_name;
|
|
|
|
/* the ea names are only used for RAW_SEARCH_EA_LIST */
|
|
unsigned int num_names;
|
|
struct ea_name *ea_names;
|
|
} in;
|
|
struct {
|
|
uint16_t count;
|
|
uint16_t end_of_search;
|
|
} out;
|
|
} t2fnext;
|
|
|
|
/* SMB2 Find */
|
|
struct smb2_find smb2;
|
|
};
|
|
|
|
/* union for search reply file data */
|
|
union smb_search_data {
|
|
/*
|
|
* search (old) findfirst
|
|
* RAW_SEARCH_DATA_SEARCH
|
|
*/
|
|
struct {
|
|
uint16_t attrib;
|
|
time_t write_time;
|
|
uint32_t size;
|
|
struct smb_search_id id;
|
|
const char *name;
|
|
} search;
|
|
|
|
/* trans2 findfirst RAW_SEARCH_DATA_STANDARD level */
|
|
struct {
|
|
uint32_t resume_key;
|
|
time_t create_time;
|
|
time_t access_time;
|
|
time_t write_time;
|
|
uint32_t size;
|
|
uint32_t alloc_size;
|
|
uint16_t attrib;
|
|
struct smb_wire_string name;
|
|
} standard;
|
|
|
|
/* trans2 findfirst RAW_SEARCH_DATA_EA_SIZE level */
|
|
struct {
|
|
uint32_t resume_key;
|
|
time_t create_time;
|
|
time_t access_time;
|
|
time_t write_time;
|
|
uint32_t size;
|
|
uint32_t alloc_size;
|
|
uint16_t attrib;
|
|
uint32_t ea_size;
|
|
struct smb_wire_string name;
|
|
} ea_size;
|
|
|
|
/* trans2 findfirst RAW_SEARCH_DATA_EA_LIST level */
|
|
struct {
|
|
uint32_t resume_key;
|
|
time_t create_time;
|
|
time_t access_time;
|
|
time_t write_time;
|
|
uint32_t size;
|
|
uint32_t alloc_size;
|
|
uint16_t attrib;
|
|
struct smb_ea_list eas;
|
|
struct smb_wire_string name;
|
|
} ea_list;
|
|
|
|
/* RAW_SEARCH_DATA_DIRECTORY_INFO interface */
|
|
struct {
|
|
uint32_t file_index;
|
|
NTTIME create_time;
|
|
NTTIME access_time;
|
|
NTTIME write_time;
|
|
NTTIME change_time;
|
|
uint64_t size;
|
|
uint64_t alloc_size;
|
|
uint32_t attrib;
|
|
struct smb_wire_string name;
|
|
} directory_info;
|
|
|
|
/* RAW_SEARCH_DATA_FULL_DIRECTORY_INFO interface */
|
|
struct {
|
|
uint32_t file_index;
|
|
NTTIME create_time;
|
|
NTTIME access_time;
|
|
NTTIME write_time;
|
|
NTTIME change_time;
|
|
uint64_t size;
|
|
uint64_t alloc_size;
|
|
uint32_t attrib;
|
|
uint32_t ea_size;
|
|
struct smb_wire_string name;
|
|
} full_directory_info;
|
|
|
|
/* RAW_SEARCH_DATA_NAME_INFO interface */
|
|
struct {
|
|
uint32_t file_index;
|
|
struct smb_wire_string name;
|
|
} name_info;
|
|
|
|
/* RAW_SEARCH_DATA_BOTH_DIRECTORY_INFO interface */
|
|
struct {
|
|
uint32_t file_index;
|
|
NTTIME create_time;
|
|
NTTIME access_time;
|
|
NTTIME write_time;
|
|
NTTIME change_time;
|
|
uint64_t size;
|
|
uint64_t alloc_size;
|
|
uint32_t attrib;
|
|
uint32_t ea_size;
|
|
struct smb_wire_string short_name;
|
|
struct smb_wire_string name;
|
|
} both_directory_info;
|
|
|
|
/* RAW_SEARCH_DATA_ID_FULL_DIRECTORY_INFO interface */
|
|
struct {
|
|
uint32_t file_index;
|
|
NTTIME create_time;
|
|
NTTIME access_time;
|
|
NTTIME write_time;
|
|
NTTIME change_time;
|
|
uint64_t size;
|
|
uint64_t alloc_size;
|
|
uint32_t attrib;
|
|
uint32_t ea_size;
|
|
uint64_t file_id;
|
|
struct smb_wire_string name;
|
|
} id_full_directory_info;
|
|
|
|
/* RAW_SEARCH_DATA_ID_BOTH_DIRECTORY_INFO interface */
|
|
struct {
|
|
uint32_t file_index;
|
|
NTTIME create_time;
|
|
NTTIME access_time;
|
|
NTTIME write_time;
|
|
NTTIME change_time;
|
|
uint64_t size;
|
|
uint64_t alloc_size;
|
|
uint32_t attrib;
|
|
uint32_t ea_size;
|
|
uint64_t file_id;
|
|
uint8_t short_name_buf[24];
|
|
struct smb_wire_string short_name;
|
|
struct smb_wire_string name;
|
|
} id_both_directory_info;
|
|
|
|
/* RAW_SEARCH_DATA_UNIX_INFO interface */
|
|
struct {
|
|
uint32_t file_index;
|
|
uint64_t size;
|
|
uint64_t alloc_size;
|
|
NTTIME status_change_time;
|
|
NTTIME access_time;
|
|
NTTIME change_time;
|
|
uint64_t uid;
|
|
uint64_t gid;
|
|
uint32_t file_type;
|
|
uint64_t dev_major;
|
|
uint64_t dev_minor;
|
|
uint64_t unique_id;
|
|
uint64_t permissions;
|
|
uint64_t nlink;
|
|
const char *name;
|
|
} unix_info;
|
|
|
|
/* RAW_SEARCH_DATA_UNIX_INFO2 interface */
|
|
struct {
|
|
uint32_t file_index;
|
|
uint64_t end_of_file;
|
|
uint64_t num_bytes;
|
|
NTTIME status_change_time;
|
|
NTTIME access_time;
|
|
NTTIME change_time;
|
|
uint64_t uid;
|
|
uint64_t gid;
|
|
uint32_t file_type;
|
|
uint64_t dev_major;
|
|
uint64_t dev_minor;
|
|
uint64_t unique_id;
|
|
uint64_t permissions;
|
|
uint64_t nlink;
|
|
NTTIME create_time;
|
|
uint32_t file_flags;
|
|
uint32_t flags_mask;
|
|
struct smb_wire_string name;
|
|
} unix_info2;
|
|
};
|
|
|
|
/* Callback function passed to the raw search interface. */
|
|
typedef bool (*smbcli_search_callback)(void *private_data, const union smb_search_data *file);
|
|
|
|
enum smb_search_close_level {RAW_FINDCLOSE_GENERIC, RAW_FINDCLOSE_FCLOSE, RAW_FINDCLOSE_FINDCLOSE};
|
|
|
|
/* union for file search close */
|
|
union smb_search_close {
|
|
struct {
|
|
enum smb_search_close_level level;
|
|
} generic;
|
|
|
|
/* SMBfclose (old search) interface */
|
|
struct {
|
|
enum smb_search_close_level level;
|
|
|
|
struct {
|
|
/* max_count and search_attrib are not used, but are present */
|
|
uint16_t max_count;
|
|
uint16_t search_attrib;
|
|
struct smb_search_id id;
|
|
} in;
|
|
} fclose;
|
|
|
|
/* SMBfindclose interface */
|
|
struct {
|
|
enum smb_search_close_level level;
|
|
|
|
struct {
|
|
uint16_t handle;
|
|
} in;
|
|
} findclose;
|
|
};
|
|
|
|
|
|
/*
|
|
struct for SMBecho call
|
|
*/
|
|
struct smb_echo {
|
|
struct {
|
|
uint16_t repeat_count;
|
|
uint16_t size;
|
|
uint8_t *data;
|
|
} in;
|
|
struct {
|
|
uint16_t count;
|
|
uint16_t sequence_number;
|
|
uint16_t size;
|
|
uint8_t *data;
|
|
} out;
|
|
};
|
|
|
|
/*
|
|
struct for shadow copy volumes
|
|
*/
|
|
struct smb_shadow_copy {
|
|
struct {
|
|
union smb_handle file;
|
|
uint32_t max_data;
|
|
} in;
|
|
struct {
|
|
uint32_t num_volumes;
|
|
uint32_t num_names;
|
|
const char **names;
|
|
} out;
|
|
};
|
|
|
|
#endif /* __LIBCLI_RAW_INTERFACES_H__ */
|