Andrew Tridgell
c1a8e866fe
r11693: added a full async composite function for SMB2 that does:
...
- name resolution
- socket connect
- negprot
- multi-stage session setup
- tcon
2007-10-10 13:46:14 -05:00
Andrew Tridgell
7bf1046fbb
r11692: added a full composite (async) spnego session setup for SMB2. This
...
simplies the torture code a lot.
2007-10-10 13:46:14 -05:00
Andrew Tridgell
26ed781375
r11691: added reply buffer code checks and oplock flags for create request/reply
2007-10-10 13:46:13 -05:00
Andrew Tridgell
3a0abb3ff0
r11687: filled in 3 more fields in the close reply
2007-10-10 13:46:13 -05:00
Andrew Tridgell
02d7331903
r11683: fixed create call
2007-10-10 13:46:13 -05:00
Andrew Tridgell
173a213f91
r11682: filled in access_mask in tcon reply
2007-10-10 13:46:13 -05:00
Andrew Tridgell
a95413568f
r11681: filled in a few more smb2_create() fields
2007-10-10 13:46:13 -05:00
Andrew Tridgell
d3bcc6628c
r11680: added smb2_close(). This also demonstrates that file handles are 16
...
bytes, not 20 bytes (metze, you were right!)
2007-10-10 13:46:12 -05:00
Andrew Tridgell
548fbd86b3
r11679: opening/creating files in SMB2 now works. Lots of unknown parameters
...
in the call tho.
2007-10-10 13:46:12 -05:00
Stefan Metzmacher
7a1b414524
r11678: - add suport for sgroup,replica vs. sgroup,replica tests
...
- add some sgroup,replica vs. sgroup,replica tests
metze
2007-10-10 13:46:12 -05:00
Stefan Metzmacher
19fb79b35d
r11677: print leading zeros
...
metze
2007-10-10 13:46:12 -05:00
Stefan Metzmacher
66a94de5dd
r11676: as tridge uses 0x%llx in his latest commits...
...
try to use it every where and see how portable it is
metze
2007-10-10 13:46:12 -05:00
Stefan Metzmacher
653f5ccd61
r11675: a more general way of getting rid of compiler warnings and errors
...
metze
2007-10-10 13:46:11 -05:00
Andrew Tridgell
a24a4c3110
r11674: SMB2 tree connect now works. We do 2 session setups and 2 tree
...
connects, giving the following output:
Running SMB2-CONNECT
Negprot reply:
current_time = Fri Nov 11 20:10:42 2005 EST
boot_time = Sat Nov 12 10:34:33 2005 EST
Session setup gave UID 0x40000000071
Session setup gave UID 0x140000000075
Tree connect gave tid = 0x7500000001
Tree connect gave tid = 0x7500000005
SMB2-CONNECT took 0.049024 secs
2007-10-10 13:46:11 -05:00
Stefan Metzmacher
534e34a1a1
r11673: - update the max_version of the owner when we get some records
...
in the sgroup_merge test, so that we don't see old records as new ones
- finish the owned,sgroup,active vs. sgroup * section
metze
2007-10-10 13:46:11 -05:00
Stefan Metzmacher
938853dc50
r11672: - add support for special group merge tests
...
- add owned,sgroup,active vs. replica,sgroup,active test
metze
2007-10-10 13:46:11 -05:00
Stefan Metzmacher
2084d62dd5
r11671: - make sure req is initialized
...
- only free the buffer when there's no request
- call async callback on error
metze
2007-10-10 13:46:10 -05:00
Stefan Metzmacher
c0eebe293f
r11670: fix the build
...
metze
2007-10-10 13:46:10 -05:00
Stefan Metzmacher
43aa5cffd3
r11669: - make sure req is initialized
...
- call async callback on error
metze
2007-10-10 13:46:10 -05:00
Andrew Tridgell
72b34a7c1b
r11668: yay! we get a successful session setup with SMB2, and get back a 64bit uid
2007-10-10 13:46:10 -05:00
Andrew Tridgell
804c229c3b
r11666: filled in the basic session setup. Vista happily accepts the first
...
stage of the session setup, and waits for more.
2007-10-10 13:46:09 -05:00
Andrew Tridgell
4ef3902a8a
r11665: started to put some meat on the structure used for the SMB2 library
...
the call definitions will be in smb2_calls.h, which will play a
similar role that smb_interfaces.h plays for the old SMB protocol
2007-10-10 13:46:09 -05:00
Andrew Tridgell
1f97dccd52
r11664: forgot to commit the structs.h change
2007-10-10 13:46:09 -05:00
Andrew Tridgell
13f27fadca
r11663: start of a SMB2 torture test. Just does a negprot and prints some fields for now.
...
test name is SMB2-CONNECT
2007-10-10 13:46:09 -05:00
Andrew Tridgell
68422dc73f
r11662: the beginnings of a SMB2 client library. Very hackish, meant for experimentation
2007-10-10 13:46:09 -05:00
Andrew Tridgell
d19235ede5
r11660: - the libcli/raw/ lib no longer uses the SMBCLI_REQUEST_SEND state, or
...
the associated send queue
- fixed negnowait to not watch for the SMBCLI_REQUEST_SEND state
2007-10-10 13:46:08 -05:00
Andrew Tridgell
c8185fe414
r11659: allow the max runtime for smbtorture and smbd to be controlled on a
...
per-host basis in the build farm
2007-10-10 13:46:08 -05:00
Stefan Metzmacher
d677ebf43d
r11650: - as every call that goes down to the ntvfs layer need a valid tcon and session
...
ntcancel also needs to have AS_USER
- move the SIGNING_NO_REPLY logic as global option, because this needs to be set
for the error replies too.
- as we currently don't know how to generate signatures for ntcancel replies
we just skip the sending of the reply
- w2k3 first checks the VUID and then the TID, so we do now
- ntcreateX also uses ERRbaduid when getting a wrong VUID
metze
2007-10-10 13:46:08 -05:00
Stefan Metzmacher
e6eb0fd2c2
r11649: - add support for ntcancel replies (they only happen in error cases,
...
e.g when you supply an invalid TID or VUID)
- as we don't yet understand how to check the smb_signing of this
replies, we just ignore the whole packet
abartlet,jra,tridge:
can someone try to find out how to create and verify
the signatures for this replies.
what I noticed is that still use the increment by one for the request,
and later requests are still generated fine, only the generating and verifying
of the ntcancel replies make problems
metze
2007-10-10 13:46:08 -05:00
Stefan Metzmacher
475eb4cc96
r11648: fix some bugs...
...
metze
2007-10-10 13:46:08 -05:00
Stefan Metzmacher
356e7d037c
r11647: add smbcli_ prefix
...
metze
2007-10-10 13:46:07 -05:00
Stefan Metzmacher
0c520e19a0
r11646: fix typos
...
metze
2007-10-10 13:46:07 -05:00
Stefan Metzmacher
16f2d92618
r11644: free the buffer when it's not used
...
metze
2007-10-10 13:46:07 -05:00
Stefan Metzmacher
913d5356eb
r11643: fix compiler warnings
...
metze
2007-10-10 13:46:07 -05:00
Stefan Metzmacher
9d6406d8da
r11642: add some error checks
...
metze
2007-10-10 13:46:05 -05:00
Stefan Metzmacher
9399e4d260
r11641: remove unused parameter vuid
...
metze
2007-10-10 13:46:05 -05:00
Stefan Metzmacher
5fb5d1a864
r11640: just a nicer format, and make adding more special cases easier
...
metze
2007-10-10 13:46:05 -05:00
Andrew Tridgell
c4266c7f68
r11639: fixed some create_time tests that should be change_time tests
2007-10-10 13:46:04 -05:00
Andrew Tridgell
8331eee64c
r11638: fixed handling of null volume name in RAW-QFSINFO test
...
thanks to Stephen Zarkos for finding this
2007-10-10 13:46:04 -05:00
Stefan Metzmacher
3389544c2b
r11637: we need a session and a tcon for ntioctl() and ntrename()
...
metze
2007-10-10 13:46:03 -05:00
Andrew Tridgell
ba7864b07e
r11636: a bit neater solution to the nt_cancel problem
2007-10-10 13:46:03 -05:00
Stefan Metzmacher
97cd824e44
r11635: fix a handling of packet_send in the smb client lib
...
this was cause of the PANIC on the build farm on metze01
as we use req->out.buffer from the old request in the smb_raw_ntcancel()
and send a 0 TID, that causes our server code to crash
(a fix for the server code will follow)
metze
2007-10-10 13:46:03 -05:00
Stefan Metzmacher
91dfa4c28d
r11634: - make crc table static
...
- const uint8_t * in all places
- update header prototype
metze
2007-10-10 13:46:03 -05:00
Tim Potter
89039683db
r11633: Fix some more warnings.
2007-10-10 13:46:02 -05:00
Andrew Tridgell
fa904afed9
r11632: removed 2 unused functions
2007-10-10 13:46:02 -05:00
Andrew Tridgell
86d08d3ec5
r11631: fixed a signed/unsigned warning
2007-10-10 13:46:02 -05:00
Andrew Tridgell
7e40077aa7
r11630: another fix for over-reading in the packet code. This time get the
...
sign of the comparison right :-)
2007-10-10 13:46:02 -05:00
Andrew Tridgell
9c95015b9c
r11629: fixed a bug found with the socket:testnonblock code. With randomised
...
under-reads we could end up supplying a buffer to the client that has
an incorrect length
2007-10-10 13:46:01 -05:00
Andrew Tridgell
d340ea7906
r11628: fixed a valgrind error in the rpc echo test
2007-10-10 13:46:01 -05:00
Andrew Tridgell
f869fd674e
r11627: give the caller much more control over the stream to packet process,
...
allowing it to specify the initial read size (thus preventing
over-reading) and to stop the recv process when needed. This is used
by the dcerpc socket code, which relies on not getting packets when it
isn't ready for them
2007-10-10 13:46:01 -05:00