Print this page
NEX-15578 SMB2 durable handle redesign
Reviewed by: Matt Barden <matt.barden@nexenta.com>
Reviewed by: Evan Layton <evan.layton@nexenta.com>
NEX-15578 SMB2 durable handle redesign
Reviewed by: Matt Barden <matt.barden@nexenta.com>
Reviewed by: Evan Layton <evan.layton@nexenta.com>
NEX-1643 dtrace provider for smbsrv
Reviewed by: Evan Layton <evan.layton@nexenta.com>
Reviewed by: Matt Barden <matt.barden@nexenta.com>
NEX-3553 SMB2/3 durable handles
Reviewed by: Gordon Ross <gwr@nexenta.com>
Reviewed by: Kevin Crowe <kevin.crowe@nexenta.com>
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/fs/smbsrv/smb2_logoff.c
          +++ new/usr/src/uts/common/fs/smbsrv/smb2_logoff.c
↓ 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 2013 Nexenta Systems, Inc.  All rights reserved.
       13 + * Copyright 2017 Nexenta Systems, Inc.  All rights reserved.
  14   14   */
  15   15  
  16   16  /*
  17   17   * Dispatch function for SMB2_LOGOFF
  18   18   */
  19   19  
  20   20  #include <smbsrv/smb2_kproto.h>
  21   21  
  22   22  smb_sdrc_t
  23   23  smb2_logoff(smb_request_t *sr)
↓ open down ↓ 9 lines elided ↑ open up ↑
  33   33              &sr->smb_data, "ww",
  34   34              &StructSize,                /* w */
  35   35              &reserved);                 /* w */
  36   36          if (rc)
  37   37                  return (SDRC_ERROR);
  38   38          if (StructSize != 4)
  39   39                  return (SDRC_ERROR);
  40   40  
  41   41          if (sr->uid_user == NULL)
  42   42                  return (SDRC_ERROR);
       43 +
       44 +        DTRACE_SMB2_START(op__Logoff, smb_request_t *, sr);
       45 +
       46 +        sr->uid_user->preserve_opens = SMB2_DH_PRESERVE_ALL;
  43   47          smb_user_logoff(sr->uid_user);
  44   48  
       49 +        DTRACE_SMB2_DONE(op__Logoff, smb_request_t *, sr);
       50 +
  45   51          /*
  46   52           * SMB2 Logoff reply
  47   53           */
  48   54          (void) smb_mbc_encodef(
  49   55              &sr->reply, "wwl",
  50   56              4,  /* StructSize */        /* w */
  51   57              0); /* reserved */          /* w */
  52   58  
  53   59          return (SDRC_SUCCESS);
  54   60  }
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX