r16407: add parsing code the SMB2 GetInfo in the server
authorStefan Metzmacher <metze@samba.org>
Tue, 20 Jun 2006 07:05:51 +0000 (07:05 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 19:09:13 +0000 (14:09 -0500)
metze
(This used to be commit c4755c83c61c0cc822c69cd274056ec20ba66fdb)

source4/smb_server/smb2/config.mk
source4/smb_server/smb2/fileinfo.c [new file with mode: 0644]
source4/smb_server/smb2/fileio.c

index d7401f19d0bc09b2ed5809dd7ba53dde119abc9d..7fc222eba32a63592d761b9d094ffd315ae85523 100644 (file)
@@ -8,6 +8,7 @@ OBJ_FILES = \
                sesssetup.o \
                tcon.o \
                fileio.o \
+               fileinfo.o \
                keepalive.o
 PUBLIC_DEPENDENCIES = \
                ntvfs LIBPACKET LIBCLI_SMB2
diff --git a/source4/smb_server/smb2/fileinfo.c b/source4/smb_server/smb2/fileinfo.c
new file mode 100644 (file)
index 0000000..366de56
--- /dev/null
@@ -0,0 +1,77 @@
+/* 
+   Unix SMB2 implementation.
+   
+   Copyright (C) Stefan Metzmacher     2006
+   
+   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 2 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, write to the Free Software
+   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
+
+#include "includes.h"
+#include "libcli/smb2/smb2.h"
+#include "libcli/smb2/smb2_calls.h"
+#include "smb_server/smb_server.h"
+#include "smb_server/service_smb_proto.h"
+#include "smb_server/smb2/smb2_server.h"
+#include "ntvfs/ntvfs.h"
+
+static void smb2srv_getinfo_send(struct ntvfs_request *ntvfs)
+{
+       struct smb2srv_request *req;
+       struct smb2_getinfo *info;
+
+       SMB2SRV_CHECK_ASYNC_STATUS(info, struct smb2_getinfo);
+       SMB2SRV_CHECK(smb2srv_setup_reply(req, 0x08, True, 0));
+
+       /* TODO: this is maybe a o16s32_blob */
+       SMB2SRV_CHECK(smb2_push_o16s16_blob(&req->out, 0x02, info->out.blob));
+       SSVAL(req->out.body,    0x06,   0);
+
+       smb2srv_send_reply(req);
+}
+
+static NTSTATUS smb2srv_getinfo_backend(struct ntvfs_request *ntvfs, struct smb2_getinfo *info)
+{
+       return NT_STATUS_NOT_IMPLEMENTED;
+}
+
+void smb2srv_getinfo_recv(struct smb2srv_request *req)
+{
+       struct smb2_getinfo *info;
+
+       SMB2SRV_CHECK_BODY_SIZE(req, 0x30, True);
+       SMB2SRV_TALLOC_IO_PTR(info, struct smb2_getinfo);
+       SMB2SRV_SETUP_NTVFS_REQUEST(smb2srv_getinfo_send, NTVFS_ASYNC_STATE_MAY_ASYNC);
+
+       info->in.level                  = SVAL(req->in.body, 0x02);
+       info->in.max_response_size      = IVAL(req->in.body, 0x04);
+       info->in.unknown1               = IVAL(req->in.body, 0x08);
+       info->in.unknown2               = IVAL(req->in.body, 0x0C);
+       info->in.flags                  = IVAL(req->in.body, 0x10);
+       info->in.flags2                 = IVAL(req->in.body, 0x14);
+       info->in.file.ntvfs             = smb2srv_pull_handle(req, req->in.body, 0x18);
+
+       SMB2SRV_CHECK_FILE_HANDLE(info->in.file.ntvfs);
+       SMB2SRV_CALL_NTVFS_BACKEND(smb2srv_getinfo_backend(req->ntvfs, info));
+}
+
+void smb2srv_setinfo_recv(struct smb2srv_request *req)
+{
+       smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
+}
+
+void smb2srv_break_recv(struct smb2srv_request *req)
+{
+       smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
+}
index f873841e9761f9d3edaa83fa3f17377fb1caa331..d42fb06f46cde07aa1758024f62ffba81a418bcb 100644 (file)
@@ -251,18 +251,3 @@ void smb2srv_notify_recv(struct smb2srv_request *req)
 {
        smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
 }
-
-void smb2srv_getinfo_recv(struct smb2srv_request *req)
-{
-       smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
-}
-
-void smb2srv_setinfo_recv(struct smb2srv_request *req)
-{
-       smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
-}
-
-void smb2srv_break_recv(struct smb2srv_request *req)
-{
-       smb2srv_send_error(req, NT_STATUS_NOT_IMPLEMENTED);
-}