Print this page
NEX-17289 Minimal SMB 3.0.2 support
Reviewed by: Gordon Ross <gordon.ross@nexenta.com>
Reviewed by: Evan Layton <evan.layton@nexenta.com>
NEX-5665 SMB2 oplock leases
Reviewed by: Matt Barden <matt.barden@nexenta.com>
Reviewed by: Evan Layton <evan.layton@nexenta.com>
Reviewed by: Roman Strashkin <roman.strashkin@nexenta.com>
NEX-5665 SMB2 oplock leases
Reviewed by: Matt Barden <matt.barden@nexenta.com>
Reviewed by: Evan Layton <evan.layton@nexenta.com>
Reviewed by: Roman Strashkin <roman.strashkin@nexenta.com>
NEX-5273 SMB 3 Encryption
Reviewed by: Gordon Ross <gordon.ross@nexenta.com>
Reviewed by: Evan Layton <evan.layton@nexenta.com>
Reviewed by: Roman Strashkin <roman.strashkin@nexenta.com>
NEX-3553 SMB2/3 durable handles
Reviewed by: Gordon Ross <gwr@nexenta.com>
Reviewed by: Kevin Crowe <kevin.crowe@nexenta.com>
NEX-3733 Want SMB2 Apple extensions
Reviewed by: Kevin Crowe <kevin.crowe@nexenta.com>
Reviewed by: Matt Barden <Matt.Barden@nexenta.com>
NEX-3610 CLONE NEX-3591 SMB3 signing
Reviewed by: Gordon Ross <gwr@nexenta.com>
Reviewed by: Dan Fields <dan.fields@nexenta.com>
NEX-3080 SMB1 signing problem with Kerberos auth.
Reviewed by: Bayard Bell <bayard.bell@nexenta.com>
Reviewed by: Dan Fields <dan.fields@nexenta.com>
Reviewed by: Kevin Crowe <kevin.crowe@nexenta.com>
Reviewed by: Matt Barden <Matt.Barden@nexenta.com>
NEX-1734 SMB2 oplock break request missing a flag
SMB-79 Codenomicon: SMB2 TC: 4978 - Panic in smb_latency_add_sample
SMB-11 SMB2 message parse & dispatch
SMB-12 SMB2 Negotiate Protocol
SMB-13 SMB2 Session Setup
SMB-14 SMB2 Logoff
SMB-15 SMB2 Tree Connect
SMB-16 SMB2 Tree Disconnect
SMB-17 SMB2 Create
SMB-18 SMB2 Close
SMB-19 SMB2 Flush
SMB-20 SMB2 Read
SMB-21 SMB2 Write
SMB-22 SMB2 Lock/Unlock
SMB-23 SMB2 Ioctl
SMB-24 SMB2 Cancel
SMB-25 SMB2 Echo
SMB-26 SMB2 Query Dir
SMB-27 SMB2 Change Notify
SMB-28 SMB2 Query Info
SMB-29 SMB2 Set Info
SMB-30 SMB2 Oplocks
SMB-53 SMB2 Create Context options
(SMB2 code review cleanup 1, 2, 3)

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/smbsrv/smb2.h
          +++ new/usr/src/uts/common/smbsrv/smb2.h
↓ open down ↓ 2 lines elided ↑ open up ↑
   3    3   * Common Development and Distribution License ("CDDL"), version 1.0.
   4    4   * You may only use this file in accordance with the terms of version
   5    5   * 1.0 of the CDDL.
   6    6   *
   7    7   * A full copy of the text of the CDDL should have accompanied this
   8    8   * source.  A copy of the CDDL is also available via the Internet at
   9    9   * http://www.illumos.org/license/CDDL.
  10   10   */
  11   11  
  12   12  /*
  13      - * Copyright 2015 Nexenta Systems, Inc.  All rights reserved.
       13 + * Copyright 2018 Nexenta Systems, Inc.  All rights reserved.
  14   14   */
  15   15  
  16   16  #ifndef _SMB_SMB2_H
  17   17  #define _SMB_SMB2_H
  18   18  
  19   19  #ifdef __cplusplus
  20   20  extern "C" {
  21   21  #endif
  22   22  
  23   23  #define SMB2_PROTOCOL_ID        { 0xFE, 'S', 'M', 'B' }
  24   24  #define SMB2_HDR_SIZE   64
       25 +#define SMB3_TFORM_HDR_SIZE     52
  25   26  
  26   27  /*
       28 + * Protocol ID as a 32-bit little-endian integer.
       29 + */
       30 +#define SMB2_PROTOCOL_MAGIC     0x424d53fe
       31 +#define SMB3_ENCRYPTED_MAGIC    0x424d53fd
       32 +
       33 +/*
  27   34   * SMB2 header command codes.
  28   35   * These are uint16_t on the wire.
  29   36   */
  30   37  typedef enum {
  31   38          SMB2_NEGOTIATE = 0,
  32   39          SMB2_SESSION_SETUP,
  33   40          SMB2_LOGOFF,
  34   41          SMB2_TREE_CONNECT,
  35   42          SMB2_TREE_DISCONNECT,
  36   43          SMB2_CREATE,
↓ open down ↓ 105 lines elided ↑ open up ↑
 142  149  #define SMB2_CAP_PERSISTENT_HANDLES     0x00000010
 143  150  #define SMB2_CAP_DIRECTORY_LEASING      0x00000020
 144  151  #define SMB2_CAP_ENCRYPTION             0x00000040
 145  152  
 146  153  /* SMB2 session flags */
 147  154  #define SMB2_SESSION_FLAG_IS_GUEST      0x0001
 148  155  #define SMB2_SESSION_FLAG_IS_NULL       0x0002
 149  156  #define SMB2_SESSION_FLAG_ENCRYPT_DATA  0x0004
 150  157  
 151  158  /*
      159 + * Client wants to bind an existing session to a new connection
      160 + */
      161 +#define SMB2_SESSION_FLAG_BINDING       0x01
      162 +
      163 +/*
 152  164   * SMB2 Tree connect, disconnect
 153  165   */
 154  166  
 155  167  /* SMB2 sharetype flags */
 156  168  #define SMB2_SHARE_TYPE_DISK            0x1
 157  169  #define SMB2_SHARE_TYPE_PIPE            0x2
 158  170  #define SMB2_SHARE_TYPE_PRINT           0x3
 159  171  
 160  172  /* SMB2 share flags */
 161  173  #define SMB2_SHAREFLAG_MANUAL_CACHING                   0x00000000
↓ open down ↓ 16 lines elided ↑ open up ↑
 178  190  #define SMB2_SHARE_CAP_DFS                              0x00000008
 179  191  /* SMB 3.0 */
 180  192  #define SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY          0x00000010
 181  193  #define SMB2_SHARE_CAP_SCALEOUT                         0x00000020
 182  194  #define SMB2_SHARE_CAP_CLUSTER                          0x00000040
 183  195  
 184  196  /*
 185  197   * SMB2 Create (open)
 186  198   */
 187  199  
 188      -/* SMB2 requested oplock levels */
      200 +/*
      201 + * SMB2 requested oplock levels
      202 + * Corresponds to ntifs.h OPLOCK_LEVEL_... but NOT the same!
      203 + */
 189  204  #define SMB2_OPLOCK_LEVEL_NONE                          0x00
 190  205  #define SMB2_OPLOCK_LEVEL_II                            0x01
 191  206  #define SMB2_OPLOCK_LEVEL_EXCLUSIVE                     0x08
 192  207  #define SMB2_OPLOCK_LEVEL_BATCH                         0x09
 193  208  #define SMB2_OPLOCK_LEVEL_LEASE                         0xFF
 194  209  
      210 +/*
      211 + * SMB2 create request lease "type"
      212 + * Note: Same as ntifs.h OPLOCK_LEVEL_CACHE...
      213 + */
      214 +#define SMB2_LEASE_NONE                                 0x00
      215 +#define SMB2_LEASE_READ_CACHING                         0x01
      216 +#define SMB2_LEASE_HANDLE_CACHING                       0x02
      217 +#define SMB2_LEASE_WRITE_CACHING                        0x04
      218 +
      219 +/* SMB2 create lease flags */
      220 +#define SMB2_LEASE_FLAG_BREAK_IN_PROGRESS               0x00000002
      221 +#define SMB2_LEASE_FLAG_PARENT_LEASE_KEY_SET            0x00000004
      222 +
 195  223  /* SMB2 impersonation levels */
 196  224  #define SMB2_IMPERSONATION_ANONYMOUS                    0x00
 197  225  #define SMB2_IMPERSONATION_IDENTIFICATION               0x01
 198  226  #define SMB2_IMPERSONATION_IMPERSONATION                0x02
 199  227  #define SMB2_IMPERSONATION_DELEGATE                     0x03
 200  228  
 201  229  /*
 202  230   * Note: ShareAccess, CreateDispositon, CreateOptions,
 203  231   * all use the same definitions as SMB1 (from MS-FSA).
 204  232   * Ditto FileAccess flags (as with ACLs)
↓ open down ↓ 45 lines elided ↑ open up ↑
 250  278   * by the provided time stamp.
 251  279   */
 252  280  
 253  281  #define SMB2_CREATE_QUERY_ON_DISK_ID            0x51466964 /* ("QFid") */
 254  282  /*
 255  283   * The client is requesting that the server return a 32-byte
 256  284   * opaque BLOB that uniquely identifies the file being opened
 257  285   * on disk. No data is passed to the server by the client.
 258  286   */
 259  287  
      288 +#define SMB2_CREATE_DURABLE_HANDLE_REQUEST_V2   0x44483251 /* ("DH2Q") */
      289 +/*
      290 + * The client is requesting the open to be durable.
      291 + * This value is only supported for the SMB 3.x dialect family.
      292 + */
      293 +
      294 +#define SMB2_CREATE_DURABLE_HANDLE_RECONNECT_V2 0x44483243 /* ("DH2C") */
      295 +/*
      296 + * The client is requesting to reconnect to a
      297 + * durable open after being disconnected.
      298 + * This value is only supported for the SMB 3.x dialect family.
      299 + */
      300 +
      301 +#define SMB2_DHANDLE_FLAG_PERSISTENT    0x00000002
      302 +/* A persistent handle is requested. */
      303 +
 260  304  #define SMB2_CREATE_REQUEST_LEASE               0x52714c73 /* ("RqLs") */
 261  305  /*
 262  306   * The client is requesting that the server return a lease.
 263  307   * This value is only supported for the SMB 2.1 and 3.0 dialects.
 264  308   */
 265  309  
 266      -/* SMB2 create request lease */
 267      -#define SMB2_LEASE_NONE                         0x00
 268      -#define SMB2_LEASE_READ_CACHING                 0x01
 269      -#define SMB2_LEASE_HANDLE_CACHING               0x02
 270      -#define SMB2_LEASE_WRITE_CACHING                0x04
      310 +#define SMB2_CREATE_CTX_AAPL                    0x4141504c /* ("AAPL") */
      311 +/*
      312 + * Client is MacOS X looking for MacOS-specific extensions.
      313 + */
 271  314  
 272      -/* SMB2 lease break notification flags */
 273      -#define SMB2_NOTIFY_BREAK_LEASE_FLAG_ACK_REQUIRED  0x01
 274      -
 275  315  /*
 276  316   * SMB2 Close
 277  317   */
 278  318  #define SMB2_CLOSE_FLAG_POSTQUERY_ATTRIB        0x0001
 279  319  
 280  320  /*
      321 + * SMB2 Read
      322 + */
      323 +#define SMB2_READFLAG_READ_UNBUFFERED           0x00000001
      324 +
      325 +/*
 281  326   * SMB2 Write
 282  327   */
 283  328  #define SMB2_WRITEFLAG_WRITE_THROUGH            0x00000001
      329 +#define SMB2_WRITEFLAG_WRITE_UNBUFFERED         0x00000002
 284  330  
 285  331  /*
 286  332   * SMB2 Lock Request
 287  333   */
 288  334  
 289  335  /* SMB2 lock flags */
 290  336  
 291  337  /*
 292  338   * SMB2_LOCKFLAG_SHARED_LOCK
 293  339   * The range MUST be locked shared, allowing other opens
↓ open down ↓ 63 lines elided ↑ open up ↑
 357  403  #define SMB2_0_INFO_SECURITY            0x03
 358  404  /* The security information is requested. */
 359  405  #define SMB2_0_INFO_QUOTA               0x04
 360  406  /* The underlying object store quota information is requested. */
 361  407  
 362  408  /*
 363  409   * SMB2 Change Nofity Request
 364  410   */
 365  411  #define SMB2_WATCH_TREE                 0x00000001
 366  412  
      413 +/* SMB2 Oplock Break: lease break notification flags */
      414 +#define SMB2_NOTIFY_BREAK_LEASE_FLAG_ACK_REQUIRED  0x01
      415 +
 367  416  #ifdef __cplusplus
 368  417  }
 369  418  #endif
 370  419  
 371  420  #endif /* _SMB_SMB2_H */
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX