44c1ec3276
* factor out most websocket specific code parts into websocket.c * create wst.c (Websocket Transport) as gateway transport implementation * introduce GatewayUrl setting that holds the websocket url * introduce GatewayHttpExtAuthBearer that holds the HTTP Bearer * GatewayHttpExtAuthBearer can be used by both rdg and wst
72 lines
2.0 KiB
C
72 lines
2.0 KiB
C
/**
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
* Websocket Framing
|
|
*
|
|
* Copyright 2023 Michael Saxl <mike@mwsys.mine.bz>
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef FREERDP_LIB_CORE_GATEWAY_WEBSOCKET_H
|
|
#define FREERDP_LIB_CORE_GATEWAY_WEBSOCKET_H
|
|
|
|
#include <winpr/wtypes.h>
|
|
#include <winpr/stream.h>
|
|
|
|
#include <freerdp/api.h>
|
|
|
|
#include "../../crypto/tls.h"
|
|
|
|
#define WEBSOCKET_MASK_BIT 0x80
|
|
#define WEBSOCKET_FIN_BIT 0x80
|
|
|
|
typedef enum
|
|
{
|
|
WebsocketContinuationOpcode = 0x0,
|
|
WebsocketTextOpcode = 0x1,
|
|
WebsocketBinaryOpcode = 0x2,
|
|
WebsocketCloseOpcode = 0x8,
|
|
WebsocketPingOpcode = 0x9,
|
|
WebsocketPongOpcode = 0xa,
|
|
} WEBSOCKET_OPCODE;
|
|
|
|
typedef enum
|
|
{
|
|
WebsocketStateOpcodeAndFin,
|
|
WebsocketStateLengthAndMasking,
|
|
WebsocketStateShortLength,
|
|
WebsocketStateLongLength,
|
|
WebSocketStateMaskingKey,
|
|
WebSocketStatePayload,
|
|
} WEBSOCKET_STATE;
|
|
|
|
typedef struct
|
|
{
|
|
size_t payloadLength;
|
|
uint32_t maskingKey;
|
|
BOOL masking;
|
|
BOOL closeSent;
|
|
BYTE opcode;
|
|
BYTE fragmentOriginalOpcode;
|
|
BYTE lengthAndMaskPosition;
|
|
WEBSOCKET_STATE state;
|
|
wStream* responseStreamBuffer;
|
|
} websocket_context;
|
|
|
|
FREERDP_LOCAL BOOL websocket_write_wstream(BIO* bio, wStream* sPacket, WEBSOCKET_OPCODE opcode);
|
|
FREERDP_LOCAL int websocket_write(BIO* bio, const BYTE* buf, int isize, WEBSOCKET_OPCODE opcode);
|
|
FREERDP_LOCAL int websocket_read(BIO* bio, BYTE* pBuffer, size_t size,
|
|
websocket_context* encodingContext);
|
|
|
|
#endif /* FREERDP_LIB_CORE_GATEWAY_WEBSOCKET_H */
|