summaryrefslogtreecommitdiff
path: root/source4/libcli/smb2/smb2.h
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-04-13 22:26:46 +0200
committerStefan Metzmacher <metze@samba.org>2009-05-11 15:54:24 +0200
commit993bdd87b5c3c9f5f727d06b5b2b32964881e568 (patch)
treed65e7abfb4725d5d4da24d81e73487a0669af3f1 /source4/libcli/smb2/smb2.h
parentce8f3528f147fd0f616bc441f7753b26e97f19c8 (diff)
downloadsamba-993bdd87b5c3c9f5f727d06b5b2b32964881e568.tar.gz
samba-993bdd87b5c3c9f5f727d06b5b2b32964881e568.tar.bz2
samba-993bdd87b5c3c9f5f727d06b5b2b32964881e568.zip
Move SMB2 constants to a separate file
Diffstat (limited to 'source4/libcli/smb2/smb2.h')
-rw-r--r--source4/libcli/smb2/smb2.h115
1 files changed, 1 insertions, 114 deletions
diff --git a/source4/libcli/smb2/smb2.h b/source4/libcli/smb2/smb2.h
index 98e3c5b931..f1c83215c7 100644
--- a/source4/libcli/smb2/smb2.h
+++ b/source4/libcli/smb2/smb2.h
@@ -24,6 +24,7 @@
#include "libcli/raw/request.h"
#include "libcli/raw/libcliraw.h"
+#include "libcli/smb2/smb2_constants.h"
struct smb2_handle;
struct smb2_lease_break;
@@ -191,120 +192,6 @@ struct smb2_request {
#define SMB2_MIN_SIZE 0x42
#define SMB2_MIN_SIZE_NO_BODY 0x40
-/* offsets into header elements for a sync SMB2 request */
-#define SMB2_HDR_PROTOCOL_ID 0x00
-#define SMB2_HDR_LENGTH 0x04
-#define SMB2_HDR_EPOCH 0x06
-#define SMB2_HDR_STATUS 0x08
-#define SMB2_HDR_OPCODE 0x0c
-#define SMB2_HDR_CREDIT 0x0e
-#define SMB2_HDR_FLAGS 0x10
-#define SMB2_HDR_NEXT_COMMAND 0x14
-#define SMB2_HDR_MESSAGE_ID 0x18
-#define SMB2_HDR_PID 0x20
-#define SMB2_HDR_TID 0x24
-#define SMB2_HDR_SESSION_ID 0x28
-#define SMB2_HDR_SIGNATURE 0x30 /* 16 bytes */
-#define SMB2_HDR_BODY 0x40
-
-/* header flags */
-#define SMB2_HDR_FLAG_REDIRECT 0x01
-#define SMB2_HDR_FLAG_ASYNC 0x02
-#define SMB2_HDR_FLAG_CHAINED 0x04
-#define SMB2_HDR_FLAG_SIGNED 0x08
-#define SMB2_HDR_FLAG_DFS 0x10000000
-
-/* SMB2 opcodes */
-#define SMB2_OP_NEGPROT 0x00
-#define SMB2_OP_SESSSETUP 0x01
-#define SMB2_OP_LOGOFF 0x02
-#define SMB2_OP_TCON 0x03
-#define SMB2_OP_TDIS 0x04
-#define SMB2_OP_CREATE 0x05
-#define SMB2_OP_CLOSE 0x06
-#define SMB2_OP_FLUSH 0x07
-#define SMB2_OP_READ 0x08
-#define SMB2_OP_WRITE 0x09
-#define SMB2_OP_LOCK 0x0a
-#define SMB2_OP_IOCTL 0x0b
-#define SMB2_OP_CANCEL 0x0c
-#define SMB2_OP_KEEPALIVE 0x0d
-#define SMB2_OP_FIND 0x0e
-#define SMB2_OP_NOTIFY 0x0f
-#define SMB2_OP_GETINFO 0x10
-#define SMB2_OP_SETINFO 0x11
-#define SMB2_OP_BREAK 0x12
-
-#define SMB2_MAGIC 0x424D53FE /* 0xFE 'S' 'M' 'B' */
-
-/* the dialects we support */
-#define SMB2_DIALECT_REVISION 0x202
-#define SMB21_DIALECT_REVISION 0x210
-#define SMB2_LONGHORN_BETA_DIALECT_REVISION 0x0 /* early beta dialect */
-
-/* SMB2 negotiate security_mode */
-#define SMB2_NEGOTIATE_SIGNING_ENABLED 0x01
-#define SMB2_NEGOTIATE_SIGNING_REQUIRED 0x02
-
-/* SMB2 capabilities - only 1 so far. I'm sure more will be added */
-#define SMB2_CAP_DFS 0x00000001
-/* so we can spot new caps as added */
-#define SMB2_CAP_ALL SMB2_CAP_DFS
-
-/* SMB2 share flags */
-#define SMB2_SHAREFLAG_MANUAL_CACHING 0x0000
-#define SMB2_SHAREFLAG_AUTO_CACHING 0x0010
-#define SMB2_SHAREFLAG_VDO_CACHING 0x0020
-#define SMB2_SHAREFLAG_NO_CACHING 0x0030
-#define SMB2_SHAREFLAG_DFS 0x0001
-#define SMB2_SHAREFLAG_DFS_ROOT 0x0002
-#define SMB2_SHAREFLAG_RESTRICT_EXCLUSIVE_OPENS 0x0100
-#define SMB2_SHAREFLAG_FORCE_SHARED_DELETE 0x0200
-#define SMB2_SHAREFLAG_ALLOW_NAMESPACE_CACHING 0x0400
-#define SMB2_SHAREFLAG_ACCESS_BASED_DIRECTORY_ENUM 0x0800
-#define SMB2_SHAREFLAG_ALL 0x0F33
-
-/* SMB2 create security flags */
-#define SMB2_SECURITY_DYNAMIC_TRACKING 0x01
-#define SMB2_SECURITY_EFFECTIVE_ONLY 0x02
-
-/* SMB2 requested oplock levels */
-#define SMB2_OPLOCK_LEVEL_NONE 0x00
-#define SMB2_OPLOCK_LEVEL_II 0x01
-#define SMB2_OPLOCK_LEVEL_EXCLUSIVE 0x08
-#define SMB2_OPLOCK_LEVEL_BATCH 0x09
-#define SMB2_OPLOCK_LEVEL_LEASE 0xFF
-
-/* SMB2 lease bits */
-#define SMB2_LEASE_NONE 0x00
-#define SMB2_LEASE_READ 0x01
-#define SMB2_LEASE_HANDLE 0x02
-#define SMB2_LEASE_WRITE 0x04
-
-/* SMB2 lease break flags */
-#define SMB2_NOTIFY_BREAK_LEASE_FLAG_ACK_REQUIRED 0x01
-
-/* SMB2 impersonation levels */
-#define SMB2_IMPERSONATION_ANONYMOUS 0x00
-#define SMB2_IMPERSONATION_IDENTIFICATION 0x01
-#define SMB2_IMPERSONATION_IMPERSONATION 0x02
-#define SMB2_IMPERSONATION_DELEGATE 0x03
-
-/* SMB2 create tags */
-#define SMB2_CREATE_TAG_EXTA "ExtA"
-#define SMB2_CREATE_TAG_MXAC "MxAc"
-#define SMB2_CREATE_TAG_SECD "SecD"
-#define SMB2_CREATE_TAG_DHNQ "DHnQ"
-#define SMB2_CREATE_TAG_DHNC "DHnC"
-#define SMB2_CREATE_TAG_ALSI "AlSi"
-#define SMB2_CREATE_TAG_TWRP "TWrp"
-#define SMB2_CREATE_TAG_QFID "QFid"
-#define SMB2_CREATE_TAG_RQLS "RqLs"
-
-/* SMB2 Create ignore some more create_options */
-#define SMB2_CREATE_OPTIONS_NOT_SUPPORTED_MASK (NTCREATEX_OPTIONS_TREE_CONNECTION | \
- NTCREATEX_OPTIONS_OPFILTER)
-
/*
check that a body has the expected size
*/