1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
|
# Unix SMB/CIFS implementation.
# Copyright Volker Lendecke <vl@samba.org> 2022
#
# 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 3 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, see <http://www.gnu.org/licenses/>.
#
from samba.samba3 import libsmb_samba_internal as libsmb
from samba import NTSTATUSError,ntstatus
import samba.tests.libsmb
from samba.dcerpc import security
from samba.common import get_string
from samba.dcerpc import smb3posix
from samba.ndr import ndr_unpack
from samba.dcerpc.security import dom_sid
from samba import reparse_symlink
import os
import subprocess
import stat
def posix_context(mode):
return (libsmb.SMB2_CREATE_TAG_POSIX, mode.to_bytes(4, 'little'))
class Smb3UnixTests(samba.tests.libsmb.LibsmbTests):
def setUp(self):
super().setUp()
self.samsid = os.environ["SAMSID"]
prefix = os.environ["PREFIX"]
p = subprocess.run(['stat', '-f', '-c', '%T', prefix], capture_output=True, text=True)
self.fstype = p.stdout.strip().lower()
def connections(self, share1=None, posix1=False, share2=None, posix2=True):
if not share1:
share1 = samba.tests.env_get_var_value(
"SHARE1", allow_missing=True)
if not share1:
share1 = "tmp"
if not share2:
share2 = samba.tests.env_get_var_value(
"SHARE2", allow_missing=True)
if not share2:
share2 = "tmp"
conn1 = libsmb.Conn(
self.server_ip,
share1,
self.lp,
self.creds,
posix=posix1)
conn2 = libsmb.Conn(
self.server_ip,
share2,
self.lp,
self.creds,
posix=posix2)
return (conn1, conn2)
def test_negotiate_context_posix(self):
c = libsmb.Conn(
self.server_ip,
"tmp",
self.lp,
self.creds,
posix=True)
self.assertTrue(c.have_posix())
def test_negotiate_context_posix_invalid_length(self):
with self.assertRaises(NTSTATUSError) as cm:
c = libsmb.Conn(
self.server_ip,
"tmp",
self.lp,
self.creds,
negotiate_contexts=[(0x100, b'01234')])
e = cm.exception
self.assertEqual(e.args[0], ntstatus.NT_STATUS_INVALID_PARAMETER)
def test_negotiate_context_posix_invalid_blob(self):
c = libsmb.Conn(
self.server_ip,
"tmp",
self.lp,
self.creds,
negotiate_contexts=[(0x100, b'0123456789012345')])
self.assertFalse(c.have_posix())
def test_posix_create_context(self):
c = libsmb.Conn(
self.server_ip,
"tmp",
self.lp,
self.creds,
posix=True)
self.assertTrue(c.have_posix())
cc_in=[(libsmb.SMB2_CREATE_TAG_POSIX,b'0000')]
fnum,_,cc_out = c.create_ex("",CreateContexts=cc_in)
self.assertEqual(cc_in[0][0],cc_out[0][0])
c.close(fnum)
def test_posix_create_invalid_context_length(self):
c = libsmb.Conn(
self.server_ip,
"tmp",
self.lp,
self.creds,
posix=True)
self.assertTrue(c.have_posix())
cc_in=[(libsmb.SMB2_CREATE_TAG_POSIX,b'00000')]
with self.assertRaises(NTSTATUSError) as cm:
fnum,_,cc_out = c.create_ex("",CreateContexts=cc_in)
e = cm.exception
self.assertEqual(e.args[0], ntstatus.NT_STATUS_INVALID_PARAMETER)
def test_posix_query_dir(self):
test_files = []
try:
c = libsmb.Conn(
self.server_ip,
"smb3_posix_share",
self.lp,
self.creds,
posix=True)
self.assertTrue(c.have_posix())
for i in range(10):
fname = '\\test%d' % i
wire_mode = libsmb.unix_mode_to_wire(0o744)
f,_,cc_out = c.create_ex(fname,
CreateDisposition=libsmb.FILE_OPEN_IF,
CreateContexts=[posix_context(wire_mode)])
c.close(f)
test_files.append(fname)
expected_count = len(c.list(''))
self.assertNotEqual(expected_count, 0, 'No files were found')
actual_count = len(c.list('',
info_level=libsmb.SMB2_FIND_POSIX_INFORMATION))
self.assertEqual(actual_count-2, expected_count,
'SMB2_FIND_POSIX_INFORMATION failed to list contents')
finally:
if len(test_files) > 0:
for fname in test_files:
self.clean_file(c, fname)
def test_posix_reserved_char(self):
c = libsmb.Conn(
self.server_ip,
"smb3_posix_share",
self.lp,
self.creds,
posix=True)
self.assertTrue(c.have_posix())
test_files = ['a ', 'a ', '. ', '. ', 'a.',
'.a', ' \\ ', '>', '<' '?']
for fname in test_files:
try:
wire_mode = libsmb.unix_mode_to_wire(0o744)
f,_,cc_out = c.create_ex('\\%s' % fname,
CreateDisposition=libsmb.FILE_CREATE,
DesiredAccess=security.SEC_FILE_READ_ATTRIBUTE,
CreateContexts=[posix_context(wire_mode)])
except NTSTATUSError as e:
self.fail(e)
c.close(f)
try:
res = c.list('', info_level=libsmb.SMB2_FIND_POSIX_INFORMATION)
found_files = {get_string(i['name']): i for i in res}
for fname in test_files:
self.assertTrue(fname in found_files)
except NTSTATUSError as e:
self.fail(e)
finally:
wire_mode = libsmb.unix_mode_to_wire(0o600)
for fname in test_files:
f,_,_ = c.create_ex('\\%s' % fname,
CreateDisposition=libsmb.FILE_OPEN,
DesiredAccess=security.SEC_STD_DELETE,
CreateContexts=[posix_context(wire_mode)])
c.delete_on_close(f, True)
c.close(f)
def test_posix_delete_on_close(self):
c = libsmb.Conn(
self.server_ip,
"smb3_posix_share",
self.lp,
self.creds,
posix=True)
self.assertTrue(c.have_posix())
wire_mode = libsmb.unix_mode_to_wire(0o744)
f,_,cc_out = c.create_ex('\\TESTING999',
DesiredAccess=security.SEC_STD_ALL,
CreateDisposition=libsmb.FILE_CREATE,
CreateContexts=[posix_context(wire_mode)])
c.delete_on_close(f, True)
c.close(f)
def test_posix_case_sensitive(self):
try:
c = libsmb.Conn(
self.server_ip,
"smb3_posix_share",
self.lp,
self.creds,
posix=True)
self.assertTrue(c.have_posix())
wire_mode = libsmb.unix_mode_to_wire(0o644)
f,_,cc_out = c.create_ex('\\xx',
DesiredAccess=security.SEC_STD_ALL,
CreateDisposition=libsmb.FILE_CREATE,
CreateContexts=[posix_context(wire_mode)])
c.close(f)
fail = False
wire_mode = libsmb.unix_mode_to_wire(0)
try:
f,_,cc_out = c.create_ex('\\XX',
DesiredAccess=security.SEC_STD_ALL,
CreateDisposition=libsmb.FILE_OPEN,
CreateContexts=[posix_context(wire_mode)])
except NTSTATUSError:
pass
else:
fail = True
c.close(f)
self.assertFalse(fail, "Opening uppercase file didn't fail")
finally:
self.clean_file(c, '\\xx')
def test_posix_perm_files(self):
test_files = {}
try:
c = libsmb.Conn(
self.server_ip,
"smb3_posix_share",
self.lp,
self.creds,
posix=True)
self.assertTrue(c.have_posix())
for perm in range(0o600, 0o7777+1):
# Owner write permission is required or cleanup will fail, and
# owner read is required to list the file if O_PATH is disabled
if perm & 0o600 != 0o600:
continue
# Don't create with setuid or setgid.
if perm & 0o6000 != 0:
continue
fname = 'testfile%04o' % perm
test_files[fname] = perm
wire_mode = libsmb.unix_mode_to_wire(perm)
f,_,cc_out = c.create_ex('\\%s' % fname,
DesiredAccess=security.SEC_FILE_ALL,
CreateDisposition=libsmb.FILE_CREATE,
CreateContexts=[posix_context(wire_mode)])
if perm & 0o200 == 0o200:
c.write(f, buffer=b"data", offset=0)
c.close(f)
dname = 'testdir%04o' % perm
test_files[dname] = perm
f,_,cc_out = c.create_ex('\\%s' % dname,
DesiredAccess=security.SEC_STD_ALL,
CreateDisposition=libsmb.FILE_CREATE,
CreateOptions=libsmb.FILE_DIRECTORY_FILE,
CreateContexts=[posix_context(wire_mode)])
c.close(f)
res = c.list("", info_level=libsmb.SMB2_FIND_POSIX_INFORMATION)
found_files = {get_string(i['name']): i for i in res}
for fname,perm in test_files.items():
self.assertIn(get_string(fname), found_files.keys(),
'Test file not found')
found_unixmode = found_files[fname]['perms']
found_perms = found_unixmode & (stat.S_IRWXU|
stat.S_IRWXG|
stat.S_IRWXO|
stat.S_ISUID|
stat.S_ISGID|
stat.S_ISVTX)
self.assertEqual(test_files[fname], found_perms,
'Requested %04o, Received %04o' % \
(test_files[fname], found_perms))
self.assertEqual(found_files[fname]['reparse_tag'],
libsmb.IO_REPARSE_TAG_RESERVED_ZERO)
self.assertEqual(found_perms, perm)
self.assertEqual(found_files[fname]['owner_sid'],
self.samsid + "-1000")
self.assertTrue(found_files[fname]['group_sid'].startswith("S-1-22-2-"))
if fname.startswith("testfile"):
self.assertTrue(stat.S_ISREG(found_unixmode))
self.assertEqual(found_files[fname]['nlink'], 1)
self.assertEqual(found_files[fname]['size'], 4)
self.assertEqual(found_files[fname]['allocation_size'],
4096)
self.assertEqual(found_files[fname]['attrib'],
libsmb.FILE_ATTRIBUTE_ARCHIVE)
else:
self.assertTrue(stat.S_ISDIR(found_unixmode))
# Note: btrfs always reports the link count of directories as one.
if self.fstype == "btrfs":
self.assertEqual(found_files[fname]['nlink'], 1)
else:
self.assertEqual(found_files[fname]['nlink'], 2)
self.assertEqual(found_files[fname]['attrib'],
libsmb.FILE_ATTRIBUTE_DIRECTORY)
finally:
if len(test_files) > 0:
for fname in test_files.keys():
self.clean_file(c, '\\%s' % fname)
def test_share_root_null_sids_fid(self):
c = libsmb.Conn(
self.server_ip,
"smb3_posix_share",
self.lp,
self.creds,
posix=True)
self.assertTrue(c.have_posix())
res = c.list("", info_level=libsmb.SMB2_FIND_POSIX_INFORMATION)
found_files = {get_string(i['name']): i for i in res}
dotdot = found_files['..']
self.assertEqual('S-1-0-0', dotdot['owner_sid'],
'The owner sid for .. was not NULL')
self.assertEqual('S-1-0-0', dotdot['group_sid'],
'The group sid for .. was not NULL')
self.assertEqual(0, dotdot['ino'], 'The ino for .. was not 0')
self.assertEqual(0, dotdot['dev'], 'The dev for .. was not 0')
def test_create_context_basic1(self):
"""
Check basic CreateContexts response
"""
try:
c = libsmb.Conn(
self.server_ip,
"smb3_posix_share",
self.lp,
self.creds,
posix=True)
self.assertTrue(c.have_posix())
wire_mode = libsmb.unix_mode_to_wire(
stat.S_IFREG|stat.S_IWUSR|stat.S_IRUSR)
f,_,cc_out = c.create_ex('\\test_create_context_basic1_file',
DesiredAccess=security.SEC_STD_ALL,
CreateDisposition=libsmb.FILE_CREATE,
CreateContexts=[posix_context(wire_mode)])
c.close(f)
cc = ndr_unpack(smb3posix.smb3_posix_cc_info, cc_out[0][1])
self.assertEqual(cc.nlinks, 1)
self.assertEqual(cc.reparse_tag, libsmb.IO_REPARSE_TAG_RESERVED_ZERO)
self.assertEqual(cc.posix_mode, 0o600)
self.assertEqual(cc.owner, dom_sid(self.samsid + "-1000"))
self.assertTrue(str(cc.group).startswith("S-1-22-2-"))
wire_mode = libsmb.unix_mode_to_wire(
stat.S_IFREG|stat.S_IRUSR|stat.S_IWUSR|stat.S_IXUSR)
f,_,cc_out = c.create_ex('\\test_create_context_basic1_dir',
DesiredAccess=security.SEC_STD_ALL,
CreateDisposition=libsmb.FILE_CREATE,
CreateOptions=libsmb.FILE_DIRECTORY_FILE,
CreateContexts=[posix_context(wire_mode)])
c.close(f)
cc = ndr_unpack(smb3posix.smb3_posix_cc_info, cc_out[0][1])
# Note: btrfs always reports the link count of directories as one.
if self.fstype == "btrfs":
self.assertEqual(cc.nlinks, 1)
else:
self.assertEqual(cc.nlinks, 2)
self.assertEqual(cc.reparse_tag, libsmb.IO_REPARSE_TAG_RESERVED_ZERO)
(type, perms) = self.wire_mode_to_unix(cc.posix_mode);
self.assertEqual(type, stat.S_IFDIR)
self.assertEqual(perms, 0o700)
self.assertEqual(cc.owner, dom_sid(self.samsid + "-1000"))
self.assertTrue(str(cc.group).startswith("S-1-22-2-"))
finally:
self.clean_file(c, '\\test_create_context_basic1_file')
self.clean_file(c, '\\test_create_context_basic1_dir')
def test_create_context_reparse(self):
"""
Check reparse tag in posix create context response
"""
try:
c = libsmb.Conn(
self.server_ip,
"smb3_posix_share",
self.lp,
self.creds,
posix=True)
self.assertTrue(c.have_posix())
tag = 0x80000025
wire_mode = libsmb.unix_mode_to_wire(0o600)
f,_,cc_out = c.create_ex('\\reparse',
DesiredAccess=security.SEC_STD_ALL,
CreateDisposition=libsmb.FILE_CREATE,
CreateContexts=[posix_context(wire_mode)])
cc = ndr_unpack(smb3posix.smb3_posix_cc_info, cc_out[0][1])
self.assertEqual(cc.reparse_tag, libsmb.IO_REPARSE_TAG_RESERVED_ZERO)
b = reparse_symlink.put(tag, 0, b'asdf')
c.fsctl(f, libsmb.FSCTL_SET_REPARSE_POINT, b, 0)
c.close(f)
wire_mode = libsmb.unix_mode_to_wire(0o600)
f,_,cc_out = c.create_ex('\\reparse',
DesiredAccess=security.SEC_STD_ALL,
CreateDisposition=libsmb.FILE_OPEN,
CreateContexts=[posix_context(wire_mode)])
c.close(f)
cc = ndr_unpack(smb3posix.smb3_posix_cc_info, cc_out[0][1])
self.assertEqual(cc.reparse_tag, tag)
finally:
self.clean_file(c, '\\reparse')
def test_delete_on_close(self):
"""
Test two opens with delete-on-close:
1. Windows open
2. POSIX open
Closing handle 1 should unlink the file, a subsequent directory
listing shouldn't list the deleted file.
"""
(winconn,posixconn) = self.connections()
self.clean_file(winconn, 'test_delete_on_close')
fdw = winconn.create(
'test_delete_on_close',
DesiredAccess=security.SEC_FILE_WRITE_ATTRIBUTE | security.SEC_STD_DELETE,
ShareAccess=0x07,
CreateDisposition=libsmb.FILE_CREATE)
self.addCleanup(self.clean_file, winconn, 'test_delete_on_close')
wire_mode = libsmb.unix_mode_to_wire(0o600)
fdp,_,_ = posixconn.create_ex(
'test_delete_on_close',
DesiredAccess=security.SEC_FILE_WRITE_ATTRIBUTE | security.SEC_STD_DELETE,
ShareAccess=0x07,
CreateDisposition=libsmb.FILE_OPEN,
CreateContexts=[posix_context(wire_mode)])
winconn.delete_on_close(fdw, 1)
posixconn.delete_on_close(fdp, 1)
winconn.close(fdw)
# The file should now already be deleted
l = winconn.list('', mask='test_delete_on_close')
found_files = {get_string(f['name']): f for f in l}
self.assertFalse('test_delete_on_close' in found_files)
def test_posix_fs_info(self):
"""
Test the posix filesystem attributes list given by cli_get_posix_fs_info.
With a non-posix connection, a NT_STATUS_INVALID_INFO_CLASS error
is expected.
"""
(winconn, posixconn) = self.connections()
try:
posix_info = posixconn.get_posix_fs_info()
except Exception as e:
self.fail(str(e))
self.assertTrue(isinstance(posix_info, dict))
self.assertTrue('optimal_transfer_size' in posix_info)
with self.assertRaises(NTSTATUSError) as cm:
winconn.get_posix_fs_info()
e = cm.exception
self.assertEqual(e.args[0], ntstatus.NT_STATUS_INVALID_INFO_CLASS)
def test_copy_chunk_posix(self):
"""
Test copy-chunk works with a destination handle opened in POSIX mode
"""
(_, c) = self.connections()
self.clean_file(c, '\\test_copy_chunk_posix_src')
self.clean_file(c, '\\test_copy_chunk_posix_dst')
wire_mode = libsmb.unix_mode_to_wire(0o644)
sh,*_ = c.create_ex('\\test_copy_chunk_posix_src',
DesiredAccess=security.SEC_GENERIC_ALL,
CreateDisposition=libsmb.FILE_CREATE,
CreateContexts=[posix_context(wire_mode)])
dh,*_ = c.create_ex('\\test_copy_chunk_posix_dst',
DesiredAccess=security.SEC_GENERIC_WRITE,
CreateDisposition=libsmb.FILE_CREATE,
CreateContexts=[posix_context(wire_mode)])
c.write(sh, buffer=b"data", offset=0)
try:
written = c.copy_chunk(sh, dh, 4, 0, 0)
except Exception as e:
self.fail(str(e))
finally:
c.close(sh)
c.close(dh)
self.clean_file(c, '\\test_copy_chunk_posix_src')
self.clean_file(c, '\\test_copy_chunk_posix_dst')
def test_append(self):
"""
Test append-io behaviour
"""
(wc, pc) = self.connections()
self.clean_file(pc, '\\test_append')
wire_mode = libsmb.unix_mode_to_wire(0o644)
ph,*_ = pc.create_ex('\\test_append',
DesiredAccess=security.SEC_FILE_APPEND_DATA | security.SEC_FILE_READ_DATA,
CreateDisposition=libsmb.FILE_CREATE,
ShareAccess=libsmb.FILE_SHARE_READ|libsmb.FILE_SHARE_WRITE,
CreateContexts=[posix_context(wire_mode)])
wh,*_ = wc.create_ex('\\test_append',
DesiredAccess=security.SEC_FILE_APPEND_DATA,
ShareAccess=libsmb.FILE_SHARE_READ|libsmb.FILE_SHARE_WRITE,
CreateDisposition=libsmb.FILE_OPEN)
wc.write(wh, buffer=b"hello", offset=0)
wc.write(wh, buffer=b"h", offset=0)
try:
pc.write(ph, buffer=b"world", offset=0)
except Exception as e:
self.assertEqual(e.args[0], ntstatus.NT_STATUS_INVALID_PARAMETER)
pass
else:
pc.close(ph)
wc.close(wh)
self.clean_file(pc, '\\test_append')
self.fail("Write with offset=0 must fail on POSIX handle in append mode")
pc.write(ph, buffer=b" world", offset=libsmb.VFS_PWRITE_APPEND_OFFSET)
info = pc.qfileinfo(ph, libsmb.FSCC_FILE_POSIX_INFORMATION);
self.assertEqual(info['size'], 11)
data = pc.read(ph, 0, 11)
self.assertEqual(data, b'hello world')
pc.close(ph)
wc.close(wh)
self.clean_file(pc, '\\test_append')
|