s3:libsmb: fix smb signing for fragmented trans/trans2/nttrans requests
commitc5dba69179d752b81e5d06f5df3a82f1d08b3e70
authorStefan Metzmacher <metze@samba.org>
Wed, 18 Mar 2009 06:56:51 +0000 (18 07:56 +0100)
committerKarolin Seeger <kseeger@samba.org>
Fri, 27 Mar 2009 13:15:49 +0000 (27 14:15 +0100)
tree9b8482638aff0f80a0a743aa2ed83afe12642d36
parent0de7a08b4c2bb97fd002baea46fb93824d9fa89f
s3:libsmb: fix smb signing for fragmented trans/trans2/nttrans requests

Before we send the secondary requests we need to remove the
old mid=>seqnum mapping and reset cli->mid and make the new
mid=>seqnum mapping "persistent".

The bug we had in cli_send_trans was this:
The first cli_send_smb() incremented cli->mid
and the secondary requests used the incremented mid,
but as cli->outbuf still had the correct mid,
we send the correct mid to the server. The real problem
was that the cli_send_smb() function stored the seqnum
under the wrong mid.

cli_send_nttrans() was totally broken and now follows the
same logic as cli_send_trans().

The good thing is that in practice the problem is unlikely to happen,
because max_xmit is large enough to avoid secondary requests.

metze
(cherry picked from commit 880fbc4e8cd67de73c4bcda94489eb1e1422a04b)
(cherry picked from commit 70466990b4b7c68ae95dbbcf741cd3f41f2dd0b3)
(cherry picked from commit d01cca5e3ddb925696d49a1ea728013ec1032372)
source/libsmb/clitrans.c