smb_echo.c revision 7b59d02d2a384be9a08087b14defadd214b3c1dd
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <smbsrv/smb_incl.h>
/*
* The echo request is used to test the connection to the server,
* and to see if the server is still responding. The tid is ignored,
* so this request may be sent to the server even if there are no
* tree connections to the server.
*
* Each response echoes the data sent, though ByteCount may indicate
* no data. If echo-count is zero, no response is sent.
*/
smb_sdrc_t
smb_com_echo(struct smb_request *sr)
{
unsigned short necho;
unsigned short nbytes;
unsigned short i;
struct mbuf_chain reply;
char *data;
if (smbsr_decode_vwv(sr, "w", &necho) != 0)
return (SDRC_ERROR_REPLY);
nbytes = sr->smb_bcc;
data = smbsr_malloc(&sr->request_storage, nbytes);
if (smb_decode_mbc(&sr->smb_data, "#c", nbytes, data))
return (SDRC_ERROR_REPLY);
for (i = 1; i <= necho; ++i) {
MBC_INIT(&reply, SMB_HEADER_ED_LEN + 10 + nbytes);
(void) smb_encode_mbc(&reply, SMB_HEADER_ED_FMT,
sr->first_smb_com,
sr->smb_rcls,
sr->smb_reh,
sr->smb_err,
sr->smb_flg | SMB_FLAGS_REPLY,
sr->smb_flg2,
sr->smb_pid_high,
sr->smb_sig,
sr->smb_tid,
sr->smb_pid,
sr->smb_uid,
sr->smb_mid);
(void) smb_encode_mbc(&reply, "bww#c", 1, i,
nbytes, nbytes, data);
if (sr->session->signing.flags & SMB_SIGNING_ENABLED)
smb_sign_reply(sr, &reply);
(void) smb_session_send(sr->session, 0, &reply);
}
return (SDRC_NO_REPLY);
}
/*
* Broadcast messages are not supported.
*/
smb_sdrc_t /*ARGSUSED*/
smb_com_send_broadcast_message(struct smb_request *sr)
{
return (SDRC_UNIMPLEMENTED);
}
/*
* Multi-block messages are not supported.
*/
smb_sdrc_t /*ARGSUSED*/
smb_com_send_end_mb_message(struct smb_request *sr)
{
return (SDRC_UNIMPLEMENTED);
}
/*
* Single-block messages are not supported.
*/
smb_sdrc_t /*ARGSUSED*/
smb_com_send_single_message(struct smb_request *sr)
{
return (SDRC_UNIMPLEMENTED);
}
/*
* Multi-block messages are not supported.
*/
smb_sdrc_t /*ARGSUSED*/
smb_com_send_start_mb_message(struct smb_request *sr)
{
return (SDRC_UNIMPLEMENTED);
}
/*
* Multi-block messages are not supported.
*/
smb_sdrc_t /*ARGSUSED*/
smb_com_send_text_mb_message(struct smb_request *sr)
{
return (SDRC_UNIMPLEMENTED);
}