summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2008-10-16 21:04:18 -0700
committerKarolin Seeger <kseeger@samba.org>2008-10-21 12:29:23 +0200
commitfeb057d4503118e519b5dbd9d2c3ca2c1ee55380 (patch)
tree25286c65f2177adda9333146a693c203ea6b9dac
parent01fd94981e322da59ac2c00055220c89de135ebe (diff)
downloadsamba-feb057d4503118e519b5dbd9d2c3ca2c1ee55380.tar.gz
samba-feb057d4503118e519b5dbd9d2c3ca2c1ee55380.tar.xz
samba-feb057d4503118e519b5dbd9d2c3ca2c1ee55380.zip
Cope with bad trans2mkdir requests from System i QNTC IBM SMB client.
If total_data == 4 Windows doesn't care what values are placed in that field, it just ignores them. The System i QNTC IBM SMB client puts bad values here, so ignore them. Jeremy. (cherry picked from commit 5b1d8588d01d11251541829c5a3dff211fe925fd)
-rw-r--r--source/smbd/trans2.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/smbd/trans2.c b/source/smbd/trans2.c
index f3b45ad1fd0..acc424f8124 100644
--- a/source/smbd/trans2.c
+++ b/source/smbd/trans2.c
@@ -7048,10 +7048,11 @@ static void call_trans2mkdir(connection_struct *conn, struct smb_request *req,
reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
return;
}
- } else if (IVAL(pdata,0) != 4) {
- reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
- return;
}
+ /* If total_data == 4 Windows doesn't care what values
+ * are placed in that field, it just ignores them.
+ * The System i QNTC IBM SMB client puts bad values here,
+ * so ignore them. */
status = create_directory(conn, req, directory);