2011-07-02 22:40:03 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-07-03 01:10:10 +04:00
|
|
|
* Transport Packets (TPKTs)
|
2011-07-02 22:40:03 +04:00
|
|
|
*
|
|
|
|
* Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2012-08-15 01:09:01 +04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2011-07-03 01:10:10 +04:00
|
|
|
#include "tpdu.h"
|
|
|
|
|
2011-07-02 22:40:03 +04:00
|
|
|
#include "tpkt.h"
|
|
|
|
|
|
|
|
/**
|
2011-07-03 01:10:10 +04:00
|
|
|
* TPKTs are defined in:
|
2011-07-02 22:40:03 +04:00
|
|
|
*
|
|
|
|
* http://tools.ietf.org/html/rfc1006/
|
|
|
|
* RFC 1006 - ISO Transport Service on top of the TCP
|
|
|
|
*
|
|
|
|
* http://www.itu.int/rec/T-REC-T.123/
|
|
|
|
* ITU-T T.123 (01/2007) - Network-specific data protocol stacks for multimedia conferencing
|
|
|
|
*
|
|
|
|
* TPKT Header
|
|
|
|
* ____________________ byte
|
|
|
|
* | |
|
|
|
|
* | 3 (version) | 1
|
|
|
|
* |____________________|
|
|
|
|
* | |
|
|
|
|
* | Reserved | 2
|
|
|
|
* |____________________|
|
|
|
|
* | |
|
|
|
|
* | Length (MSB) | 3
|
|
|
|
* |____________________|
|
|
|
|
* | |
|
|
|
|
* | Length (LSB) | 4
|
|
|
|
* |____________________|
|
|
|
|
* | |
|
2011-07-03 01:10:10 +04:00
|
|
|
* | X.224 TPDU | 5 - ?
|
2011-07-02 22:40:03 +04:00
|
|
|
* ....
|
2011-07-03 01:10:10 +04:00
|
|
|
*
|
|
|
|
* A TPKT header is of fixed length 4, and the following X.224 TPDU is at least three bytes long.
|
|
|
|
* Therefore, the minimum TPKT length is 7, and the maximum TPKT length is 65535. Because the TPKT
|
|
|
|
* length includes the TPKT header (4 bytes), the maximum X.224 TPDU length is 65531.
|
2011-07-02 22:40:03 +04:00
|
|
|
*/
|
|
|
|
|
2011-08-09 12:40:58 +04:00
|
|
|
/**
|
|
|
|
* Verify if a packet has valid TPKT header.\n
|
|
|
|
* @param s
|
2012-10-09 10:38:39 +04:00
|
|
|
* @return BOOL
|
2011-08-09 12:40:58 +04:00
|
|
|
*/
|
|
|
|
|
2013-03-21 23:19:33 +04:00
|
|
|
BOOL tpkt_verify_header(wStream* s)
|
2011-08-09 12:40:58 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE version;
|
2011-08-09 12:40:58 +04:00
|
|
|
|
2013-05-09 00:27:21 +04:00
|
|
|
Stream_Peek_UINT8(s, version);
|
2012-11-13 20:06:33 +04:00
|
|
|
|
2011-08-09 12:40:58 +04:00
|
|
|
if (version == 3)
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-08-09 12:40:58 +04:00
|
|
|
else
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2011-08-09 12:40:58 +04:00
|
|
|
}
|
|
|
|
|
2011-07-05 05:35:32 +04:00
|
|
|
/**
|
|
|
|
* Read a TPKT header.\n
|
|
|
|
* @param s
|
2017-05-29 11:50:22 +03:00
|
|
|
* @param length
|
|
|
|
* @return success
|
2011-07-05 05:35:32 +04:00
|
|
|
*/
|
|
|
|
|
2017-05-29 11:50:22 +03:00
|
|
|
BOOL tpkt_read_header(wStream* s, UINT16* length)
|
2011-07-02 22:40:03 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE version;
|
2017-05-29 11:50:22 +03:00
|
|
|
|
|
|
|
if (Stream_GetRemainingLength(s) < 1)
|
|
|
|
return FALSE;
|
2011-07-02 22:40:03 +04:00
|
|
|
|
2013-05-09 00:27:21 +04:00
|
|
|
Stream_Peek_UINT8(s, version);
|
2011-07-02 22:40:03 +04:00
|
|
|
|
|
|
|
if (version == 3)
|
|
|
|
{
|
2017-05-29 11:50:22 +03:00
|
|
|
UINT16 len;
|
|
|
|
if (Stream_GetRemainingLength(s) < 4)
|
|
|
|
return FALSE;
|
|
|
|
|
2013-04-30 06:35:15 +04:00
|
|
|
Stream_Seek(s, 2);
|
2017-05-29 11:50:22 +03:00
|
|
|
Stream_Read_UINT16_BE(s, len);
|
|
|
|
if (len < 4)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
*length = len;
|
2011-07-02 22:40:03 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* not a TPKT header */
|
2017-05-29 11:50:22 +03:00
|
|
|
*length = 0;
|
2011-07-02 22:40:03 +04:00
|
|
|
}
|
|
|
|
|
2017-05-29 11:50:22 +03:00
|
|
|
return TRUE;
|
2011-07-02 22:40:03 +04:00
|
|
|
}
|
|
|
|
|
2011-07-05 05:35:32 +04:00
|
|
|
/**
|
|
|
|
* Write a TPKT header.\n
|
|
|
|
* @param s
|
|
|
|
* @param length
|
|
|
|
*/
|
|
|
|
|
2013-03-21 23:19:33 +04:00
|
|
|
void tpkt_write_header(wStream* s, UINT16 length)
|
2011-07-02 22:40:03 +04:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Write_UINT8(s, 3); /* version */
|
|
|
|
Stream_Write_UINT8(s, 0); /* reserved */
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Write_UINT16_BE(s, length); /* length */
|
2011-07-02 22:40:03 +04:00
|
|
|
}
|