linux-cifs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] smbinfo: Add command for displaying alternate data streams
@ 2021-04-08 10:02 J. Pablo González
  2021-04-09 14:05 ` Aurélien Aptel
  0 siblings, 1 reply; 4+ messages in thread
From: J. Pablo González @ 2021-04-08 10:02 UTC (permalink / raw)
  To: linux-cifs

Hi,

This patch adds a new command to smbinfo which retrieves and displays
the list of alternate data streams for a file.

Signed-off-by: Juan Pablo González <disablez@gmail.com>
---
 smbinfo     | 41 +++++++++++++++++++++++++++++++++++++++++
 smbinfo.rst |  2 ++
 2 files changed, 43 insertions(+)

diff --git a/smbinfo b/smbinfo
index 9752963..55c44e1 100755
--- a/smbinfo
+++ b/smbinfo
@@ -253,6 +253,10 @@ def main():
     sap.add_argument("file")
     sap.set_defaults(func=cmd_filestandardinfo)

+    sap = subp.add_parser("filestreaminfo", help="Prints
FileStreamInfo for a cifs file")
+    sap.add_argument("file")
+    sap.set_defaults(func=cmd_filestreaminfo)
+
     sap = subp.add_parser("fsctl-getobjid", help="Prints the objectid
of the file and GUID of the underlying volume.")
     sap.add_argument("file")
     sap.set_defaults(func=cmd_fsctl_getobjid)
@@ -753,7 +757,44 @@ def cmd_secdesc(args):
               print(ace)
               off_dacl += ace.size

+def cmd_filestreaminfo(args):
+    qi = QueryInfoStruct(info_type=0x1, file_info_class=22,
input_buffer_length=INPUT_BUFFER_LENGTH)
+    try:
+        fd = os.open(args.file, os.O_RDONLY)
+        info = os.fstat(fd)
+        buf = qi.ioctl(fd)
+    except Exception as e:
+        print("syscall failed: %s"%e)
+        return False

+    print_filestreaminfo(buf)
+
+def print_filestreaminfo(buf):
+    offset = 0
+
+    while offset < len(buf):
+
+        next_offset = struct.unpack_from('<I', buf, offset + 0)[0]
+        name_length = struct.unpack_from('<I', buf, offset + 4)[0]
+        if (name_length > 0):
+            stream_size = struct.unpack_from('<q', buf, offset + 8)[0]
+            stream_alloc_size = struct.unpack_from('<q', buf, offset + 16)[0]
+            stream_utf16le_name = struct.unpack_from('< %ss'%
name_length, buf, offset + 24)[0]
+            stream_name = stream_utf16le_name.decode("utf-16le")
+            if (offset > 0):
+                print()
+            if (stream_name=="::$DATA"):
+                print("Name: %s"% stream_name)
+            else:
+                print("Name: %s"% stream_name[stream_name.find(":") +
1 : stream_name.rfind(':$DATA')])
+            print("Size: %d bytes"% stream_size)
+            print("Allocation size: %d bytes "% stream_alloc_size)
+
+        if (next_offset == 0):
+            break
+
+        offset+=next_offset
+
 class KeyDebugInfoStruct:
     def __init__(self):
         self.suid = bytearray()
diff --git a/smbinfo.rst b/smbinfo.rst
index 7413849..1acf3c4 100644
--- a/smbinfo.rst
+++ b/smbinfo.rst
@@ -65,6 +65,8 @@ COMMAND

 `filestandardinfo`: Prints the FileStandardInformation class

+`filestreaminfo`: Prints the FileStreamInformation class
+
 `fsctl-getobjid`: Prints the ObjectID

 `getcompression`: Prints the compression setting for the file.
-- 
2.13.3.windows.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] smbinfo: Add command for displaying alternate data streams
  2021-04-08 10:02 [PATCH] smbinfo: Add command for displaying alternate data streams J. Pablo González
@ 2021-04-09 14:05 ` Aurélien Aptel
  2021-04-14 18:55   ` Pavel Shilovsky
  0 siblings, 1 reply; 4+ messages in thread
From: Aurélien Aptel @ 2021-04-09 14:05 UTC (permalink / raw)
  To: J. Pablo González, linux-cifs

J. Pablo González <disablez@gmail.com> writes:
> This patch adds a new command to smbinfo which retrieves and displays
> the list of alternate data streams for a file.

I gave it a quick try and it works. LGTM.

Reviewed-by: Aurelien Aptel <aaptel@suse.com>

Cheers,
-- 
Aurélien Aptel / SUSE Labs Samba Team
GPG: 1839 CB5F 9F5B FB9B AA97  8C99 03C8 A49B 521B D5D3
SUSE Software Solutions Germany GmbH, Maxfeldstr. 5, 90409 Nürnberg, DE
GF: Felix Imendörffer, Mary Higgins, Sri Rasiah HRB 247165 (AG München)


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] smbinfo: Add command for displaying alternate data streams
  2021-04-09 14:05 ` Aurélien Aptel
@ 2021-04-14 18:55   ` Pavel Shilovsky
  2021-04-14 22:05     ` J. Pablo González
  0 siblings, 1 reply; 4+ messages in thread
From: Pavel Shilovsky @ 2021-04-14 18:55 UTC (permalink / raw)
  To: Aurélien Aptel; +Cc: J. Pablo González, linux-cifs

пт, 9 апр. 2021 г. в 07:06, Aurélien Aptel <aaptel@suse.com>:
>
> J. Pablo González <disablez@gmail.com> writes:
> > This patch adds a new command to smbinfo which retrieves and displays
> > the list of alternate data streams for a file.
>
> I gave it a quick try and it works. LGTM.
>
> Reviewed-by: Aurelien Aptel <aaptel@suse.com>

Pablo, Aurelien,

Thanks for the patch and for trying it out!

Merged into the next branch on github.

--
Best regards,
Pavel Shilovsky

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] smbinfo: Add command for displaying alternate data streams
  2021-04-14 18:55   ` Pavel Shilovsky
@ 2021-04-14 22:05     ` J. Pablo González
  0 siblings, 0 replies; 4+ messages in thread
From: J. Pablo González @ 2021-04-14 22:05 UTC (permalink / raw)
  To: Pavel Shilovsky; +Cc: Aurélien Aptel, linux-cifs

Great, thank you both for your time.

On Wed, Apr 14, 2021 at 8:55 PM Pavel Shilovsky <piastryyy@gmail.com> wrote:
>
> пт, 9 апр. 2021 г. в 07:06, Aurélien Aptel <aaptel@suse.com>:
> >
> > J. Pablo González <disablez@gmail.com> writes:
> > > This patch adds a new command to smbinfo which retrieves and displays
> > > the list of alternate data streams for a file.
> >
> > I gave it a quick try and it works. LGTM.
> >
> > Reviewed-by: Aurelien Aptel <aaptel@suse.com>
>
> Pablo, Aurelien,
>
> Thanks for the patch and for trying it out!
>
> Merged into the next branch on github.
>
> --
> Best regards,
> Pavel Shilovsky

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-04-14 22:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-08 10:02 [PATCH] smbinfo: Add command for displaying alternate data streams J. Pablo González
2021-04-09 14:05 ` Aurélien Aptel
2021-04-14 18:55   ` Pavel Shilovsky
2021-04-14 22:05     ` J. Pablo González

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).