From 3b9431ddb963db68101e35b54f044ba0938b2fa7 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 22 Jan 2005 05:36:32 +0000 Subject: r4927: parse the NBT session request in the smb server. This gets rid of that annoying "not parsing session request" message on each SMB connection (This used to be commit b06b8dd2f4f4fea750b05fd29d68372828159f16) --- source4/smb_server/reply.c | 48 +++++++++++++++++++++++++++++++++++------ source4/smb_server/smb_server.h | 4 ++++ 2 files changed, 45 insertions(+), 7 deletions(-) (limited to 'source4/smb_server') diff --git a/source4/smb_server/reply.c b/source4/smb_server/reply.c index 2dc36a3b65..17dcb8623a 100644 --- a/source4/smb_server/reply.c +++ b/source4/smb_server/reply.c @@ -25,6 +25,7 @@ #include "includes.h" #include "smb_server/smb_server.h" +#include "libcli/nbt/libnbt.h" /* useful way of catching wct errors with file and line number */ @@ -2370,6 +2371,41 @@ void reply_sendtxt(struct smbsrv_request *req) } +/* + parse the called/calling names from session request +*/ +static NTSTATUS parse_session_request(struct smbsrv_request *req) +{ + DATA_BLOB blob; + NTSTATUS status; + + blob.data = req->in.buffer + 4; + blob.length = ascii_len_n(blob.data, req->in.size - PTR_DIFF(blob.data, req->in.buffer)); + if (blob.length == 0) return NT_STATUS_BAD_NETWORK_NAME; + + req->smb_conn->negotiate.called_name = talloc(req->smb_conn, struct nbt_name); + req->smb_conn->negotiate.calling_name = talloc(req->smb_conn, struct nbt_name); + if (req->smb_conn->negotiate.called_name == NULL || + req->smb_conn->negotiate.calling_name == NULL) { + return NT_STATUS_NO_MEMORY; + } + + status = nbt_name_from_blob(req, &blob, req->smb_conn->negotiate.called_name); + NT_STATUS_NOT_OK_RETURN(status); + + blob.data += blob.length; + blob.length = ascii_len_n(blob.data, req->in.size - PTR_DIFF(blob.data, req->in.buffer)); + if (blob.length == 0) return NT_STATUS_BAD_NETWORK_NAME; + + status = nbt_name_from_blob(req, &blob, req->smb_conn->negotiate.calling_name); + NT_STATUS_NOT_OK_RETURN(status); + + req->smb_conn->negotiate.done_nbt_session = True; + + return NT_STATUS_OK; +} + + /**************************************************************************** Reply to a special message - a SMB packet with non zero NBT message type @@ -2378,7 +2414,7 @@ void reply_special(struct smbsrv_request *req) { uint8_t msg_type; uint8_t *buf = talloc_zero_array(req, uint8_t, 4); - + msg_type = CVAL(req->in.buffer,0); SIVAL(buf, 0, 0); @@ -2392,13 +2428,11 @@ void reply_special(struct smbsrv_request *req) SCVAL(buf,0,0x82); SCVAL(buf,3,0); - - DEBUG(0,("REWRITE: not parsing netbios names in NBT session request!\n")); - /* TODO: store the name for the session setup 'remote - machine' code, as well as smbstatus */ - req->smb_conn->negotiate.done_nbt_session = True; - + /* we don't check the status - samba always accepts session + requests for any name */ + parse_session_request(req); + req->out.buffer = buf; req->out.size = 4; req_send_reply_nosign(req); diff --git a/source4/smb_server/smb_server.h b/source4/smb_server/smb_server.h index aebace9ad0..2b1ca87cb9 100644 --- a/source4/smb_server/smb_server.h +++ b/source4/smb_server/smb_server.h @@ -197,6 +197,10 @@ struct smbsrv_connection { /* the timezone we sent to the client */ int zone_offset; + + /* NBT names only set when done_nbt_session is true */ + struct nbt_name *called_name; + struct nbt_name *calling_name; } negotiate; /* the context associated with open tree connects on a smb socket */ -- cgit