Asterisk - The Open Source Telephony Project GIT-master-6144b6b
Loading...
Searching...
No Matches
Data Structures | Macros | Typedefs | Enumerations | Functions
http_websocket.h File Reference

Support for WebSocket connections within the Asterisk HTTP server and client WebSocket connections to a server. More...

#include "asterisk/http.h"
#include "asterisk/optional_api.h"
#include <errno.h>
Include dependency graph for http_websocket.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  ast_websocket_client_options
 Options used for a websocket client. More...
 
struct  ast_websocket_protocol
 A websocket protocol implementation. More...
 

Macros

#define AST_DEFAULT_WEBSOCKET_WRITE_TIMEOUT   100
 Default websocket write timeout, in ms.
 
#define AST_DEFAULT_WEBSOCKET_WRITE_TIMEOUT_STR   "100"
 Default websocket write timeout, in ms (as a string)
 
#define AST_WEBSOCKET_MAX_RX_PAYLOAD_SIZE   65535
 Size of the pre-determined buffer for WebSocket frames.
 
#define AST_WEBSOCKET_PROTOCOL_VERSION   1
 Protocol version. This prevents dynamically loadable modules from registering if this struct is changed.
 

Typedefs

typedef void(* ast_websocket_callback) (struct ast_websocket *session, struct ast_variable *parameters, struct ast_variable *headers)
 Callback for when a new connection for a sub-protocol is established.
 
typedef int(* ast_websocket_pre_callback) (struct ast_tcptls_session_instance *ser, struct ast_variable *parameters, struct ast_variable *headers, const char *session_id)
 Callback from the HTTP request attempting to establish a websocket connection.
 

Enumerations

enum  ast_websocket_opcode {
  AST_WEBSOCKET_OPCODE_TEXT = 0x1 , AST_WEBSOCKET_OPCODE_BINARY = 0x2 , AST_WEBSOCKET_OPCODE_PING = 0x9 , AST_WEBSOCKET_OPCODE_PONG = 0xA ,
  AST_WEBSOCKET_OPCODE_CLOSE = 0x8 , AST_WEBSOCKET_OPCODE_CONTINUATION = 0x0 , AST_WEBSOCKET_OPCODE_UNKNOWN = 0xf
}
 WebSocket operation codes. More...
 
enum  ast_websocket_result {
  WS_OK = 0 , WS_ALLOCATE_ERROR , WS_KEY_ERROR , WS_URI_PARSE_ERROR ,
  WS_URI_RESOLVE_ERROR , WS_BAD_STATUS , WS_INVALID_RESPONSE , WS_BAD_REQUEST ,
  WS_URL_NOT_FOUND , WS_HEADER_MISMATCH , WS_HEADER_MISSING , WS_NOT_SUPPORTED ,
  WS_WRITE_ERROR , WS_CLIENT_START_ERROR , WS_UNAUTHORIZED , WS_TLS_ERROR
}
 Result code for a websocket client. More...
 
enum  ast_websocket_status_code {
  AST_WEBSOCKET_STATUS_NORMAL = 1000 , AST_WEBSOCKET_STATUS_GOING_AWAY = 1001 , AST_WEBSOCKET_STATUS_PROTOCOL_ERROR = 1002 , AST_WEBSOCKET_STATUS_UNSUPPORTED_DATA = 1003 ,
  AST_WEBSOCKET_STATUS_RESERVED_1004 = 1004 , AST_WEBSOCKET_STATUS_RESERVED_1005 = 1005 , AST_WEBSOCKET_STATUS_RESERVED_1006 = 1006 , AST_WEBSOCKET_STATUS_INVALID_FRAME = 1007 ,
  AST_WEBSOCKET_STATUS_POLICY_VIOLATION = 1008 , AST_WEBSOCKET_STATUS_TOO_BIG = 1009 , AST_WEBSOCKET_STATUS_MANDATORY_EXT = 1010 , AST_WEBSOCKET_STATUS_INTERNAL_ERROR = 1011 ,
  AST_WEBSOCKET_STATUS_RESERVED_1012 = 1012 , AST_WEBSOCKET_STATUS_RESERVED_1013 = 1013 , AST_WEBSOCKET_STATUS_BAD_GATEWAY = 1014 , AST_WEBSOCKET_STATUS_RESERVED_1015 = 1015
}
 Websocket Status Codes from RFC-6455. More...
 
enum  ast_websocket_type {
  AST_WS_TYPE_CLIENT_PERSISTENT = (1 << 0) , AST_WS_TYPE_CLIENT_PER_CALL_CONFIG = (1 << 1) , AST_WS_TYPE_CLIENT_PER_CALL = (1 << 2) , AST_WS_TYPE_CLIENT = (1 << 3) ,
  AST_WS_TYPE_INBOUND = (1 << 4) , AST_WS_TYPE_SERVER = (1 << 5) , AST_WS_TYPE_ANY = (0xFFFFFFFF)
}
 WebSocket connection/configuration types. More...
 

Functions

int AST_OPTIONAL_API_NAME() ast_websocket_add_protocol (const char *name, ast_websocket_callback callback)
 Add a sub-protocol handler to the default /ws server.
 
int AST_OPTIONAL_API_NAME() ast_websocket_add_protocol2 (struct ast_websocket_protocol *protocol)
 Add a sub-protocol handler to the default /ws server.
 
const char *AST_OPTIONAL_API_NAME() ast_websocket_client_accept_protocol (struct ast_websocket *ws)
 Retrieve the server accepted sub-protocol on the client.
 
struct ast_websocket *AST_OPTIONAL_API_NAME() ast_websocket_client_create (const char *uri, const char *protocols, struct ast_tls_config *tls_cfg, enum ast_websocket_result *result)
 Create, and connect, a websocket client.
 
struct ast_websocket *AST_OPTIONAL_API_NAME() ast_websocket_client_create_with_options (struct ast_websocket_client_options *options, enum ast_websocket_result *result)
 Create, and connect, a websocket client using given options.
 
int AST_OPTIONAL_API_NAME() ast_websocket_close (struct ast_websocket *session, uint16_t reason)
 Close a WebSocket session by sending a message with the CLOSE opcode and an optional code.
 
int AST_OPTIONAL_API_NAME() ast_websocket_fd (struct ast_websocket *session)
 Get the file descriptor for a WebSocket session.
 
int AST_OPTIONAL_API_NAME() ast_websocket_is_secure (struct ast_websocket *session)
 Get whether the WebSocket session is using a secure transport or not.
 
struct ast_sockaddr *AST_OPTIONAL_API_NAME() ast_websocket_local_address (struct ast_websocket *session)
 Get the local address for a WebSocket connection session.
 
int AST_OPTIONAL_API_NAME() ast_websocket_read (struct ast_websocket *session, char **payload, uint64_t *payload_len, enum ast_websocket_opcode *opcode, int *fragmented)
 Read a WebSocket frame and handle it.
 
int AST_OPTIONAL_API_NAME() ast_websocket_read_string (struct ast_websocket *ws, char **buf)
 Read a WebSocket frame containing string data.
 
void AST_OPTIONAL_API_NAME() ast_websocket_reconstruct_disable (struct ast_websocket *session)
 Disable multi-frame reconstruction.
 
void AST_OPTIONAL_API_NAME() ast_websocket_reconstruct_enable (struct ast_websocket *session, size_t bytes)
 Enable multi-frame reconstruction up to a certain number of bytes.
 
void AST_OPTIONAL_API_NAME() ast_websocket_ref (struct ast_websocket *session)
 Increase the reference count for a WebSocket session.
 
struct ast_sockaddr *AST_OPTIONAL_API_NAME() ast_websocket_remote_address (struct ast_websocket *session)
 Get the remote address for a WebSocket connected session.
 
int AST_OPTIONAL_API_NAME() ast_websocket_remove_protocol (const char *name, ast_websocket_callback callback)
 Remove a sub-protocol handler from the default /ws server.
 
const char *AST_OPTIONAL_API_NAME() ast_websocket_result_to_str (enum ast_websocket_result result)
 Convert a websocket result code to a string.
 
int AST_OPTIONAL_API_NAME() ast_websocket_server_add_protocol (struct ast_websocket_server *server, const char *name, ast_websocket_callback callback)
 Add a sub-protocol handler to the given server.
 
int AST_OPTIONAL_API_NAME() ast_websocket_server_add_protocol2 (struct ast_websocket_server *server, struct ast_websocket_protocol *protocol)
 Add a sub-protocol handler to the given server.
 
struct ast_websocket_server *AST_OPTIONAL_API_NAME() ast_websocket_server_create (void)
 Creates a ast_websocket_server.
 
int AST_OPTIONAL_API_NAME() ast_websocket_server_remove_protocol (struct ast_websocket_server *server, const char *name, ast_websocket_callback callback)
 Remove a sub-protocol handler from the given server.
 
const char *AST_OPTIONAL_API_NAME() ast_websocket_session_id (struct ast_websocket *session)
 Get the session ID for a WebSocket session.
 
int AST_OPTIONAL_API_NAME() ast_websocket_set_nonblock (struct ast_websocket *session)
 Set the socket of a WebSocket session to be non-blocking.
 
int AST_OPTIONAL_API_NAME() ast_websocket_set_timeout (struct ast_websocket *session, int timeout)
 Set the timeout on a non-blocking WebSocket session.
 
const char *AST_OPTIONAL_API_NAME() ast_websocket_status_to_str (enum ast_websocket_status_code code)
 Convert a websocket status code to a string.
 
struct ast_websocket_protocol *AST_OPTIONAL_API_NAME() ast_websocket_sub_protocol_alloc (const char *name)
 Allocate a websocket sub-protocol instance.
 
const char * ast_websocket_type_to_str (enum ast_websocket_type type)
 
void AST_OPTIONAL_API_NAME() ast_websocket_unref (struct ast_websocket *session)
 Decrease the reference count for a WebSocket session.
 
int AST_OPTIONAL_API_NAME() ast_websocket_uri_cb (struct ast_tcptls_session_instance *ser, const struct ast_http_uri *urih, const char *uri, enum ast_http_method method, struct ast_variable *get_vars, struct ast_variable *headers)
 Callback suitable for use with a ast_http_uri.
 
int AST_OPTIONAL_API_NAME() ast_websocket_wait_for_input (struct ast_websocket *session, int timeout)
 Wait for the WebSocket session to be ready to be read.
 
int AST_OPTIONAL_API_NAME() ast_websocket_write (struct ast_websocket *session, enum ast_websocket_opcode opcode, char *payload, uint64_t payload_size)
 Construct and transmit a WebSocket frame.
 
int AST_OPTIONAL_API_NAME() ast_websocket_write_string (struct ast_websocket *ws, const char *buf)
 Construct and transmit a WebSocket frame containing string data.
 

Detailed Description

Support for WebSocket connections within the Asterisk HTTP server and client WebSocket connections to a server.

Supported WebSocket versions in server implementation: Version 7 defined in specification http://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol-07 Version 8 defined in specification http://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol-10 Version 13 defined in specification http://tools.ietf.org/html/rfc6455 Supported WebSocket versions in client implementation: Version 13 defined in specification http://tools.ietf.org/html/rfc6455

Author
Joshua Colp jcolp.nosp@m.@dig.nosp@m.ium.c.nosp@m.om

Definition in file http_websocket.h.

Macro Definition Documentation

◆ AST_DEFAULT_WEBSOCKET_WRITE_TIMEOUT

#define AST_DEFAULT_WEBSOCKET_WRITE_TIMEOUT   100

Default websocket write timeout, in ms.

Definition at line 28 of file http_websocket.h.

◆ AST_DEFAULT_WEBSOCKET_WRITE_TIMEOUT_STR

#define AST_DEFAULT_WEBSOCKET_WRITE_TIMEOUT_STR   "100"

Default websocket write timeout, in ms (as a string)

Definition at line 31 of file http_websocket.h.

◆ AST_WEBSOCKET_MAX_RX_PAYLOAD_SIZE

#define AST_WEBSOCKET_MAX_RX_PAYLOAD_SIZE   65535

Size of the pre-determined buffer for WebSocket frames.

Definition at line 106 of file http_websocket.h.

◆ AST_WEBSOCKET_PROTOCOL_VERSION

#define AST_WEBSOCKET_PROTOCOL_VERSION   1

Protocol version. This prevents dynamically loadable modules from registering if this struct is changed.

Definition at line 169 of file http_websocket.h.

Typedef Documentation

◆ ast_websocket_callback

typedef void(* ast_websocket_callback) (struct ast_websocket *session, struct ast_variable *parameters, struct ast_variable *headers)

Callback for when a new connection for a sub-protocol is established.

Parameters
sessionA WebSocket session structure
parametersParameters extracted from the request URI
headersHeaders included in the request
Note
Once called the ownership of the session is transferred to the sub-protocol handler. It is responsible for closing and cleaning up.

Definition at line 150 of file http_websocket.h.

◆ ast_websocket_pre_callback

typedef int(* ast_websocket_pre_callback) (struct ast_tcptls_session_instance *ser, struct ast_variable *parameters, struct ast_variable *headers, const char *session_id)

Callback from the HTTP request attempting to establish a websocket connection.

This callback occurs when an HTTP request is made to establish a websocket connection. Implementers of ast_websocket_protocol can use this to deny a request, or to set up application specific data before invocation of ast_websocket_callback.

Parameters
serThe TCP/TLS session
parametersParameters extracted from the request URI
headersHeaders included in the request
session_idThe id of the current session.
Return values
0The session should be accepted
-1The session should be rejected. Note that the caller must send an error response using ast_http_error.
Since
13.5.0

Definition at line 137 of file http_websocket.h.

Enumeration Type Documentation

◆ ast_websocket_opcode

WebSocket operation codes.

Enumerator
AST_WEBSOCKET_OPCODE_TEXT 

Text frame

AST_WEBSOCKET_OPCODE_BINARY 

Binary frame

AST_WEBSOCKET_OPCODE_PING 

Request that the other side respond with a pong

AST_WEBSOCKET_OPCODE_PONG 

Response to a ping

AST_WEBSOCKET_OPCODE_CLOSE 

Connection is being closed

AST_WEBSOCKET_OPCODE_CONTINUATION 

Continuation of a previous frame

AST_WEBSOCKET_OPCODE_UNKNOWN 

Error

Definition at line 71 of file http_websocket.h.

71 {
72 AST_WEBSOCKET_OPCODE_TEXT = 0x1, /*!< Text frame */
73 AST_WEBSOCKET_OPCODE_BINARY = 0x2, /*!< Binary frame */
74 AST_WEBSOCKET_OPCODE_PING = 0x9, /*!< Request that the other side respond with a pong */
75 AST_WEBSOCKET_OPCODE_PONG = 0xA, /*!< Response to a ping */
76 AST_WEBSOCKET_OPCODE_CLOSE = 0x8, /*!< Connection is being closed */
77 AST_WEBSOCKET_OPCODE_CONTINUATION = 0x0, /*!< Continuation of a previous frame */
78 AST_WEBSOCKET_OPCODE_UNKNOWN = 0xf, /*!< Error */
79};
@ AST_WEBSOCKET_OPCODE_PING
@ AST_WEBSOCKET_OPCODE_PONG
@ AST_WEBSOCKET_OPCODE_CONTINUATION
@ AST_WEBSOCKET_OPCODE_BINARY
@ AST_WEBSOCKET_OPCODE_UNKNOWN
@ AST_WEBSOCKET_OPCODE_CLOSE
@ AST_WEBSOCKET_OPCODE_TEXT

◆ ast_websocket_result

Result code for a websocket client.

Enumerator
WS_OK 
WS_ALLOCATE_ERROR 
WS_KEY_ERROR 
WS_URI_PARSE_ERROR 
WS_URI_RESOLVE_ERROR 
WS_BAD_STATUS 
WS_INVALID_RESPONSE 
WS_BAD_REQUEST 
WS_URL_NOT_FOUND 
WS_HEADER_MISMATCH 
WS_HEADER_MISSING 
WS_NOT_SUPPORTED 
WS_WRITE_ERROR 
WS_CLIENT_START_ERROR 
WS_UNAUTHORIZED 
WS_TLS_ERROR 

Definition at line 448 of file http_websocket.h.

448 {
449 WS_OK = 0,
465};
@ WS_BAD_REQUEST
@ WS_TLS_ERROR
@ WS_URL_NOT_FOUND
@ WS_CLIENT_START_ERROR
@ WS_KEY_ERROR
@ WS_NOT_SUPPORTED
@ WS_ALLOCATE_ERROR
@ WS_HEADER_MISMATCH
@ WS_WRITE_ERROR
@ WS_UNAUTHORIZED
@ WS_URI_RESOLVE_ERROR
@ WS_OK
@ WS_INVALID_RESPONSE
@ WS_BAD_STATUS
@ WS_URI_PARSE_ERROR
@ WS_HEADER_MISSING

◆ ast_websocket_status_code

Websocket Status Codes from RFC-6455.

Enumerator
AST_WEBSOCKET_STATUS_NORMAL 
AST_WEBSOCKET_STATUS_GOING_AWAY 
AST_WEBSOCKET_STATUS_PROTOCOL_ERROR 
AST_WEBSOCKET_STATUS_UNSUPPORTED_DATA 
AST_WEBSOCKET_STATUS_RESERVED_1004 
AST_WEBSOCKET_STATUS_RESERVED_1005 
AST_WEBSOCKET_STATUS_RESERVED_1006 
AST_WEBSOCKET_STATUS_INVALID_FRAME 
AST_WEBSOCKET_STATUS_POLICY_VIOLATION 
AST_WEBSOCKET_STATUS_TOO_BIG 
AST_WEBSOCKET_STATUS_MANDATORY_EXT 
AST_WEBSOCKET_STATUS_INTERNAL_ERROR 
AST_WEBSOCKET_STATUS_RESERVED_1012 
AST_WEBSOCKET_STATUS_RESERVED_1013 
AST_WEBSOCKET_STATUS_BAD_GATEWAY 
AST_WEBSOCKET_STATUS_RESERVED_1015 

Definition at line 82 of file http_websocket.h.

82 {
99};
@ AST_WEBSOCKET_STATUS_RESERVED_1015
@ AST_WEBSOCKET_STATUS_BAD_GATEWAY
@ AST_WEBSOCKET_STATUS_UNSUPPORTED_DATA
@ AST_WEBSOCKET_STATUS_PROTOCOL_ERROR
@ AST_WEBSOCKET_STATUS_NORMAL
@ AST_WEBSOCKET_STATUS_MANDATORY_EXT
@ AST_WEBSOCKET_STATUS_TOO_BIG
@ AST_WEBSOCKET_STATUS_RESERVED_1006
@ AST_WEBSOCKET_STATUS_RESERVED_1004
@ AST_WEBSOCKET_STATUS_RESERVED_1013
@ AST_WEBSOCKET_STATUS_RESERVED_1005
@ AST_WEBSOCKET_STATUS_POLICY_VIOLATION
@ AST_WEBSOCKET_STATUS_GOING_AWAY
@ AST_WEBSOCKET_STATUS_INTERNAL_ERROR
@ AST_WEBSOCKET_STATUS_RESERVED_1012
@ AST_WEBSOCKET_STATUS_INVALID_FRAME

◆ ast_websocket_type

WebSocket connection/configuration types.

These may look like they overlap or are redundant, but they're shared by other modules like ari and chan_websocket and it didn't make sense to force them to define their own types.

Enumerator
AST_WS_TYPE_CLIENT_PERSISTENT 
AST_WS_TYPE_CLIENT_PER_CALL_CONFIG 
AST_WS_TYPE_CLIENT_PER_CALL 
AST_WS_TYPE_CLIENT 
AST_WS_TYPE_INBOUND 
AST_WS_TYPE_SERVER 
AST_WS_TYPE_ANY 

Definition at line 57 of file http_websocket.h.

57 {
61 AST_WS_TYPE_CLIENT = (1 << 3),
62 AST_WS_TYPE_INBOUND = (1 << 4),
63 AST_WS_TYPE_SERVER = (1 << 5),
64 AST_WS_TYPE_ANY = (0xFFFFFFFF),
65};
@ AST_WS_TYPE_ANY
@ AST_WS_TYPE_CLIENT
@ AST_WS_TYPE_INBOUND
@ AST_WS_TYPE_CLIENT_PER_CALL_CONFIG
@ AST_WS_TYPE_SERVER
@ AST_WS_TYPE_CLIENT_PERSISTENT
@ AST_WS_TYPE_CLIENT_PER_CALL

Function Documentation

◆ ast_websocket_add_protocol()

int AST_OPTIONAL_API_NAME() ast_websocket_add_protocol ( const char *  name,
ast_websocket_callback  callback 
)

Add a sub-protocol handler to the default /ws server.

Parameters
nameName of the sub-protocol to register
callbackCallback called when a new connection requesting the sub-protocol is established
Return values
0success
-1if sub-protocol handler could not be registered

Definition at line 1242 of file res_http_websocket.c.

1243{
1245}
static struct ast_channel * callback(struct ast_channelstorage_instance *driver, ao2_callback_data_fn *cb_fn, void *arg, void *data, int ao2_flags, int rdlock)
static const char name[]
Definition format_mp3.c:68
static int websocket_add_protocol_internal(const char *name, ast_websocket_callback callback)

References callback(), name, and websocket_add_protocol_internal().

Referenced by AST_TEST_DEFINE(), and load_module().

◆ ast_websocket_add_protocol2()

int AST_OPTIONAL_API_NAME() ast_websocket_add_protocol2 ( struct ast_websocket_protocol protocol)

Add a sub-protocol handler to the default /ws server.

Parameters
protocolThe sub-protocol to register. Note that this must be allocated using /ref ast_websocket_sub_protocol_alloc.
Note
This method is reference stealing. It will steal the reference to protocol on success.
Return values
0success
-1if sub-protocol handler could not be registered
Since
13.5.0

Definition at line 1247 of file res_http_websocket.c.

1248{
1249 struct ast_websocket_server *ws_server = websocketuri.data;
1250
1251 if (!ws_server) {
1252 return -1;
1253 }
1254
1255 if (ast_websocket_server_add_protocol2(ws_server, protocol)) {
1256 return -1;
1257 }
1258
1259 return 0;
1260}
static struct ast_http_uri websocketuri
int AST_OPTIONAL_API_NAME() ast_websocket_server_add_protocol2(struct ast_websocket_server *server, struct ast_websocket_protocol *protocol)
Add a sub-protocol handler to the given server.
void * data
Definition http.h:116
Structure for a WebSocket server.

References ast_websocket_server_add_protocol2(), ast_http_uri::data, and websocketuri.

◆ ast_websocket_client_accept_protocol()

const char *AST_OPTIONAL_API_NAME() ast_websocket_client_accept_protocol ( struct ast_websocket ws)

Retrieve the server accepted sub-protocol on the client.

Parameters
wsthe websocket client
Returns
the accepted client sub-protocol.
Since
13

Definition at line 1563 of file res_http_websocket.c.

1565{
1566 return ws->client->accept_protocol;
1567}
struct websocket_client * client

References websocket_client::accept_protocol, and ast_websocket::client.

Referenced by AST_TEST_DEFINE().

◆ ast_websocket_client_create()

struct ast_websocket *AST_OPTIONAL_API_NAME() ast_websocket_client_create ( const char *  uri,
const char *  protocols,
struct ast_tls_config tls_cfg,
enum ast_websocket_result result 
)

Create, and connect, a websocket client.

If the client websocket successfully connects, then the accepted protocol can be checked via a call to ast_websocket_client_accept_protocol.

Note
While connecting this will block until a response is received from the remote host.
Expected uri form:
ws[s]://<address>[:port][/<path>] 
The address (can be a host name) and port are parsed out and used to connect to the remote server. If multiple IPs are returned during address resolution then the first one is chosen.
Parameters
uriuri to connect to
protocolsa comma separated string of supported protocols
tls_cfgsecure websocket credentials
resultresult code set on client failure
Returns
a client websocket.
Return values
NULLif object could not be created or connected
Since
13
Warning
The returned websocket must be closed with ast_websocket_close and its reference count decremented with ast_websocket_unref when it's no longer needed.

Definition at line 1914 of file res_http_websocket.c.

1917{
1919 .uri = uri,
1920 .protocols = protocols,
1921 .timeout = -1,
1922 .tls_cfg = tls_cfg,
1923 };
1924
1926}
static PGresult * result
Definition cel_pgsql.c:84
struct ast_websocket *AST_OPTIONAL_API_NAME() ast_websocket_client_create_with_options(struct ast_websocket_client_options *options, enum ast_websocket_result *result)
Create, and connect, a websocket client using given options.
Options used for a websocket client.
struct ast_tls_config * tls_cfg
static struct test_options options

References ast_websocket_client_create_with_options(), options, ast_websocket_client_options::protocols, result, ast_websocket_client_options::tls_cfg, and ast_websocket_client_options::uri.

Referenced by AST_TEST_DEFINE(), AST_TEST_DEFINE(), AST_TEST_DEFINE(), and AST_TEST_DEFINE().

◆ ast_websocket_client_create_with_options()

struct ast_websocket *AST_OPTIONAL_API_NAME() ast_websocket_client_create_with_options ( struct ast_websocket_client_options options,
enum ast_websocket_result result 
)

Create, and connect, a websocket client using given options.

If the client websocket successfully connects, then the accepted protocol can be checked via a call to ast_websocket_client_accept_protocol.

Note
While connecting this will block until a response is received from the remote host, or the connection timeout is reached
Parameters
optionsWebsocket client options
resultresult code set on client failure
Returns
a client websocket.
Return values
NULLif object could not be created or connected
Warning
The returned websocket must be closed with ast_websocket_close and its reference count decremented with ast_websocket_unref when it's no longer needed.

Definition at line 2006 of file res_http_websocket.c.

2008{
2009 struct ast_websocket *ws = NULL;
2010 SCOPE_ENTER(2, "%s: Creating client\n", options->uri);
2011
2013 if (!ws) {
2014 SCOPE_EXIT_LOG_RTN_VALUE(NULL, LOG_ERROR, "%s: Failed to create: %s\n", options->uri, ast_websocket_result_to_str(*result));
2015 }
2016
2017 ast_trace(-1, "%s: Connecting\n", ws->client->options->uri);
2018
2019 if ((*result = websocket_client_connect(ws, options)) != WS_OK) {
2020 ao2_ref(ws, -1);
2021 SCOPE_EXIT_RTN_VALUE(NULL, "%s: Failed to connect: %s\n", options->uri, ast_websocket_result_to_str(*result));
2022 }
2023 ast_trace(-1, "%s: Connected\n", ws->client->options->uri);
2024
2025 if (ws->client->options->tcp_keepalives) {
2026 int sockfd = ast_iostream_get_fd(ws->stream);
2027 int enabled = 1;
2028
2029 setsockopt(sockfd, SOL_SOCKET, SO_KEEPALIVE, &enabled, sizeof(enabled));
2030 setsockopt(sockfd, IPPROTO_TCP, TCP_KEEPIDLE, &options->tcp_keepalive_time, sizeof(options->tcp_keepalive_time));
2031 setsockopt(sockfd, IPPROTO_TCP, TCP_KEEPINTVL, &options->tcp_keepalive_interval, sizeof(&options->tcp_keepalive_interval));
2032 setsockopt(sockfd, IPPROTO_TCP, TCP_KEEPCNT, &options->tcp_keepalive_probes, sizeof(&options->tcp_keepalive_probes));
2033 ast_trace(-1, "%s: Enabled TCP keepalives\n", ws->client->options->uri);
2034 }
2035
2036 if (ws->client->options->pingpongs) {
2039 if (ws->client->ping_sched_timer < 0) {
2040 ast_log(LOG_WARNING, "%s: Unable to schedule PING/PONG keepalives\n", ws->client->options->uri);
2041 ao2_ref(ws, -1);
2042 } else {
2043 ast_trace(-1, "%s: Enabled PING/PONG keepalives\n", ws->client->options->uri);
2044 }
2045 }
2046 SCOPE_EXIT_RTN_VALUE(ws, "%s: Client created and connected %p %p\n", options->uri, ws, ws->client);
2047}
#define ast_log
Definition astobj2.c:42
#define ao2_ref(o, delta)
Reference/unreference an object and return the old refcount.
Definition astobj2.h:459
#define ao2_bump(obj)
Bump refcount on an AO2 object by one, returning the object.
Definition astobj2.h:480
static int enabled
Definition dnsmgr.c:91
#define SCOPE_EXIT_RTN_VALUE(__return_value,...)
#define SCOPE_EXIT_LOG_RTN_VALUE(__value, __log_level,...)
#define SCOPE_ENTER(level,...)
#define ast_trace(level,...)
#define LOG_ERROR
#define LOG_WARNING
int ast_iostream_get_fd(struct ast_iostream *stream)
Get an iostream's file descriptor.
Definition iostream.c:85
static int ping_scheduler_callback(const void *obj)
static struct ast_websocket * websocket_client_create(struct ast_websocket_client_options *options, enum ast_websocket_result *result)
static struct ast_sched_context * ping_scheduler
static enum ast_websocket_result websocket_client_connect(struct ast_websocket *ws, struct ast_websocket_client_options *options)
const char *AST_OPTIONAL_API_NAME() ast_websocket_result_to_str(enum ast_websocket_result result)
Convert a websocket result code to a string.
#define NULL
Definition resample.c:96
int ast_sched_add(struct ast_sched_context *con, int when, ast_sched_cb callback, const void *data) attribute_warn_unused_result
Adds a scheduled event.
Definition sched.c:567
Structure definition for session.
struct ast_iostream * stream
struct ast_websocket_client_options * options

References ao2_bump, ao2_ref, ast_iostream_get_fd(), ast_log, ast_sched_add(), ast_trace, ast_websocket_result_to_str(), ast_websocket::client, enabled, LOG_ERROR, LOG_WARNING, NULL, websocket_client::options, options, websocket_client::ping_sched_timer, ping_scheduler, ping_scheduler_callback(), ast_websocket_client_options::pingpong_interval, ast_websocket_client_options::pingpongs, result, SCOPE_ENTER, SCOPE_EXIT_LOG_RTN_VALUE, SCOPE_EXIT_RTN_VALUE, ast_websocket::stream, ast_websocket_client_options::tcp_keepalives, ast_websocket_client_options::uri, websocket_client_connect(), websocket_client_create(), and WS_OK.

Referenced by ast_websocket_client_connect(), ast_websocket_client_create(), and websocket_connect().

◆ ast_websocket_close()

int AST_OPTIONAL_API_NAME() ast_websocket_close ( struct ast_websocket session,
uint16_t  reason 
)

Close a WebSocket session by sending a message with the CLOSE opcode and an optional code.

Parameters
sessionPointer to the WebSocket session
reasonReason code for closing the session as defined in the RFC
Return values
0if successfully written
-1if error occurred

Close a WebSocket session by sending a message with the CLOSE opcode and an optional code.

Definition at line 553 of file res_http_websocket.c.

554{
555 if (session->closed_by == WS_NOT_CLOSED) {
556 session->closed_by = WS_CLOSED_BY_US;
557 }
558
559 return websocket_close(session, reason, 0);
560}
static struct ast_mansession session
static int websocket_close(struct ast_websocket *session, uint16_t reason, int force)
@ WS_NOT_CLOSED
@ WS_CLOSED_BY_US

References session, websocket_close(), WS_CLOSED_BY_US, and WS_NOT_CLOSED.

Referenced by ast_websocket_read(), incoming_ws_established_cb(), outbound_session_apply_config(), outbound_session_handler_thread(), outbound_session_pc_close_thread(), outbound_sessions_load(), session_destroy_fn(), session_shutdown_cb(), webchan_hangup(), websocket_disconnect(), websocket_established_cb(), and ws_shutdown().

◆ ast_websocket_fd()

int AST_OPTIONAL_API_NAME() ast_websocket_fd ( struct ast_websocket session)

Get the file descriptor for a WebSocket session.

Returns
file descriptor
Note
You must not directly read from or write to this file descriptor. It should only be used for polling.

Definition at line 662 of file res_http_websocket.c.

663{
664 return session->closing ? -1 : ast_iostream_get_fd(session->stream);
665}

References ast_iostream_get_fd(), and session.

Referenced by session_read(), speech_test_server_cb(), websocket_echo_callback(), websocket_handoff_to_channel(), websocket_read(), and ws_shutdown().

◆ ast_websocket_is_secure()

int AST_OPTIONAL_API_NAME() ast_websocket_is_secure ( struct ast_websocket session)

Get whether the WebSocket session is using a secure transport or not.

Return values
0if unsecure
1if secure

Definition at line 682 of file res_http_websocket.c.

683{
684 return session->secure;
685}

References session.

Referenced by transport_create().

◆ ast_websocket_local_address()

struct ast_sockaddr *AST_OPTIONAL_API_NAME() ast_websocket_local_address ( struct ast_websocket session)

Get the local address for a WebSocket connection session.

Returns
Local address
Since
13.19.0

Definition at line 677 of file res_http_websocket.c.

678{
679 return &session->local_address;
680}

References session.

Referenced by transport_create().

◆ ast_websocket_read()

int AST_OPTIONAL_API_NAME() ast_websocket_read ( struct ast_websocket session,
char **  payload,
uint64_t *  payload_len,
enum ast_websocket_opcode opcode,
int *  fragmented 
)

Read a WebSocket frame and handle it.

Parameters
sessionPointer to the WebSocket session
payloadPointer to a char* which will be populated with a pointer to the payload if present
payload_lenPointer to a uint64_t which will be populated with the length of the payload if present
opcodePointer to an enum which will be populated with the opcode of the frame
fragmentedPointer to an int which is set to 1 if payload is fragmented and 0 if not
Return values
-1on error
0on success
Note
Once an AST_WEBSOCKET_OPCODE_CLOSE opcode is received the socket will be closed

Definition at line 803 of file res_http_websocket.c.

804{
805 int fin = 0;
806 int mask_present = 0;
807 char *mask = NULL, *new_payload = NULL;
808 size_t options_len = 0, frame_size = 0;
809 SCOPE_ENTER(4, "%s: Reading\n", WS_SESSION_REMOTE(session));
810
811 *payload = NULL;
812 *payload_len = 0;
813 *fragmented = 0;
814
815 if (ws_safe_read(session, &session->buf[0], MIN_WS_HDR_SZ, opcode)) {
816 SCOPE_EXIT_RTN_VALUE(-1, "%s: Initial ws_safe_read failed\n", WS_SESSION_REMOTE(session));
817 }
819
820 /* ok, now we have the first 2 bytes, so we know some flags, opcode and payload length (or whether payload length extension will be required) */
821 *opcode = session->buf[0] & 0xf;
822 *payload_len = session->buf[1] & 0x7f;
825 fin = (session->buf[0] >> 7) & 1;
826 mask_present = (session->buf[1] >> 7) & 1;
827
828 /* Based on the mask flag and payload length, determine how much more we need to read before start parsing the rest of the header */
829 options_len += mask_present ? 4 : 0;
830 options_len += (*payload_len == 126) ? 2 : (*payload_len == 127) ? 8 : 0;
831 if (options_len) {
832 /* read the rest of the header options */
833 if (ws_safe_read(session, &session->buf[frame_size], options_len, opcode)) {
834 SCOPE_EXIT_RTN_VALUE(-1, "%s: ws_safe_read of options failed\n", WS_SESSION_REMOTE(session));
835 }
836 frame_size += options_len;
837 }
838
839 if (*payload_len == 126) {
840 /* Grab the 2-byte payload length */
841 *payload_len = ntohs(get_unaligned_uint16(&session->buf[2]));
842 mask = &session->buf[4];
843 } else if (*payload_len == 127) {
844 /* Grab the 8-byte payload length */
845 *payload_len = ntohll(get_unaligned_uint64(&session->buf[2]));
846 mask = &session->buf[10];
847 } else {
848 /* Just set the mask after the small 2-byte header */
849 mask = &session->buf[2];
850 }
851
852 /* Now read the rest of the payload */
853 *payload = &session->buf[frame_size]; /* payload will start here, at the end of the options, if any */
854 frame_size = frame_size + (*payload_len); /* final frame size is header + optional headers + payload data */
856 /* The frame won't fit :-( */
858 SCOPE_EXIT_LOG_RTN_VALUE(-1, LOG_WARNING, "%s: Cannot fit huge websocket frame of %zu bytes\n",
860 }
861
862 if (*payload_len) {
863 if (ws_safe_read(session, *payload, *payload_len, opcode)) {
864 SCOPE_EXIT_RTN_VALUE(-1, "%s: ws_safe_read of payload failed\n", WS_SESSION_REMOTE(session));
865 }
866 }
867
868 /* If a mask is present unmask the payload */
869 if (mask_present) {
870 unsigned int pos;
871 for (pos = 0; pos < *payload_len; pos++) {
872 (*payload)[pos] ^= mask[pos % 4];
873 }
874 }
875
876 /* Per the RFC for PING we need to send back an opcode with the application data as received */
877 if (*opcode == AST_WEBSOCKET_OPCODE_PING) {
878 if (ast_websocket_write(session, AST_WEBSOCKET_OPCODE_PONG, *payload, *payload_len)) {
880 }
881 *payload_len = 0;
882 SCOPE_EXIT_RTN_VALUE(0, "%s: PING received. Sent PONG\n", WS_SESSION_REMOTE(session));
883 }
884
885 if (websocket_handled_pong_or_close(session, *payload, *payload_len, *opcode)) {
886 SCOPE_EXIT_RTN_VALUE(0, "%s: Handled PONG or CLOSE\n", WS_SESSION_REMOTE(session));
887 }
888
889 /* Below this point we are handling TEXT, BINARY or CONTINUATION opcodes */
890 if (*payload_len) {
891 if (!(new_payload = ast_realloc(session->payload, (session->payload_len + *payload_len)))) {
892 *payload_len = 0;
894 SCOPE_EXIT_LOG_RTN_VALUE(-1, LOG_WARNING, "%s: Failed allocation: %p, %zu, %"PRIu64"\n",
895 WS_SESSION_REMOTE(session), session->payload, session->payload_len, *payload_len);
896 }
897
898 session->payload = new_payload;
899 memcpy((session->payload + session->payload_len), (*payload), (*payload_len));
900 session->payload_len += *payload_len;
901 } else if (!session->payload_len && session->payload) {
902 ast_free(session->payload);
903 session->payload = NULL;
904 }
905
906 if (!fin && session->reconstruct && (session->payload_len < session->reconstruct)) {
907 /* If this is not a final message we need to defer returning it until later */
908 if (*opcode != AST_WEBSOCKET_OPCODE_CONTINUATION) {
909 session->opcode = *opcode;
910 }
912 *payload_len = 0;
913 *payload = NULL;
914 } else {
915 if (*opcode == AST_WEBSOCKET_OPCODE_CONTINUATION) {
916 if (!fin) {
917 /* If this was not actually the final message tell the user it is fragmented so they can deal with it accordingly */
918 *fragmented = 1;
919 } else {
920 /* Final frame in multi-frame so push up the actual opcode */
921 *opcode = session->opcode;
922 }
923 }
924 *payload_len = session->payload_len;
925 *payload = session->payload;
926 session->payload_len = 0;
927 }
928 } else {
929 ast_log(LOG_WARNING, "WebSocket unknown opcode %u\n", *opcode);
930 /* We received an opcode that we don't understand, the RFC states that 1003 is for a type of data that can't be accepted... opcodes
931 * fit that, I think. */
933 }
934
935 SCOPE_EXIT_RTN_VALUE(0, "%s: Read complete. Opcode: %s Length: %"PRIu64"\n",
936 WS_SESSION_REMOTE(session), websocket_opcode2str(*opcode), *payload_len);
937}
uint64_t ntohll(uint64_t net64)
Definition strcompat.c:365
#define ast_free(a)
Definition astmm.h:180
#define ast_realloc(p, len)
A wrapper for realloc()
Definition astmm.h:226
static int frame_size[4]
Definition format_g726.c:52
#define AST_WEBSOCKET_MAX_RX_PAYLOAD_SIZE
Size of the pre-determined buffer for WebSocket frames.
int AST_OPTIONAL_API_NAME() ast_websocket_write(struct ast_websocket *session, enum ast_websocket_opcode opcode, char *payload, uint64_t payload_size)
Write function for websocket traffic.
#define MIN_WS_HDR_SZ
static int ws_safe_read(struct ast_websocket *session, char *buf, size_t len, enum ast_websocket_opcode *opcode)
static int websocket_handled_pong_or_close(struct ast_websocket *session, char *payload, uint64_t payload_len, enum ast_websocket_opcode opcode)
#define WS_SESSION_REMOTE(_session)
int AST_OPTIONAL_API_NAME() ast_websocket_close(struct ast_websocket *session, uint16_t reason)
Close function for websocket session.
static const char * websocket_opcode2str(enum ast_websocket_opcode opcode)
static unsigned short get_unaligned_uint16(const void *p)
Definition unaligned.h:44
static uint64_t get_unaligned_uint64(const void *p)
Definition unaligned.h:32

References ast_free, ast_log, ast_realloc, ast_websocket_close(), AST_WEBSOCKET_MAX_RX_PAYLOAD_SIZE, AST_WEBSOCKET_OPCODE_BINARY, AST_WEBSOCKET_OPCODE_CLOSE, AST_WEBSOCKET_OPCODE_CONTINUATION, AST_WEBSOCKET_OPCODE_PING, AST_WEBSOCKET_OPCODE_PONG, AST_WEBSOCKET_OPCODE_TEXT, ast_websocket_write(), frame_size, get_unaligned_uint16(), get_unaligned_uint64(), LOG_WARNING, MIN_WS_HDR_SZ, ntohll(), NULL, ast_websocket::opcode, ast_websocket::payload, ast_websocket::payload_len, SCOPE_ENTER, SCOPE_EXIT_LOG_RTN_VALUE, SCOPE_EXIT_RTN_VALUE, session, websocket_handled_pong_or_close(), websocket_opcode2str(), ws_safe_read(), and WS_SESSION_REMOTE.

Referenced by ast_websocket_read_string(), read_from_ws_and_queue(), session_read(), speech_test_server_cb(), websocket_cb(), websocket_echo_callback(), and websocket_read().

◆ ast_websocket_read_string()

int AST_OPTIONAL_API_NAME() ast_websocket_read_string ( struct ast_websocket ws,
char **  buf 
)

Read a WebSocket frame containing string data.

Note
The caller is responsible for freeing the output "buf".
Parameters
wspointer to the websocket
bufstring buffer to populate with data read from socket
Return values
-1on error
Returns
number of bytes read on success
Note
Once an AST_WEBSOCKET_OPCODE_CLOSE opcode is received the socket will be closed

Definition at line 2049 of file res_http_websocket.c.

2051{
2052 char *payload;
2053 uint64_t payload_len;
2054 enum ast_websocket_opcode opcode;
2055 int fragmented = 1;
2056
2057 while (fragmented) {
2058 if (ast_websocket_read(ws, &payload, &payload_len,
2059 &opcode, &fragmented)) {
2060 ast_log(LOG_ERROR, "Client WebSocket string read - "
2061 "error reading string data\n");
2062 return -1;
2063 }
2064
2065 if (opcode == AST_WEBSOCKET_OPCODE_PING) {
2066 /* Try read again, we have sent pong already */
2067 fragmented = 1;
2068 continue;
2069 }
2070
2071 if (opcode == AST_WEBSOCKET_OPCODE_CONTINUATION) {
2072 continue;
2073 }
2074
2075 if (opcode == AST_WEBSOCKET_OPCODE_CLOSE) {
2076 return -1;
2077 }
2078
2079 if (opcode != AST_WEBSOCKET_OPCODE_TEXT) {
2080 ast_log(LOG_ERROR, "Client WebSocket string read - "
2081 "non string data received\n");
2082 return -1;
2083 }
2084 }
2085
2086 if (!(*buf = ast_strndup(payload, payload_len))) {
2087 return -1;
2088 }
2089
2090 return payload_len + 1;
2091}
#define ast_strndup(str, len)
A wrapper for strndup()
Definition astmm.h:256
char buf[BUFSIZE]
Definition eagi_proxy.c:66
ast_websocket_opcode
WebSocket operation codes.
int AST_OPTIONAL_API_NAME() ast_websocket_read(struct ast_websocket *session, char **payload, uint64_t *payload_len, enum ast_websocket_opcode *opcode, int *fragmented)
Read a WebSocket frame and handle it.

References ast_log, ast_strndup, AST_WEBSOCKET_OPCODE_CLOSE, AST_WEBSOCKET_OPCODE_CONTINUATION, AST_WEBSOCKET_OPCODE_PING, AST_WEBSOCKET_OPCODE_TEXT, ast_websocket_read(), buf, LOG_ERROR, ast_websocket::opcode, ast_websocket::payload, and ast_websocket::payload_len.

Referenced by AST_TEST_DEFINE().

◆ ast_websocket_reconstruct_disable()

void AST_OPTIONAL_API_NAME() ast_websocket_reconstruct_disable ( struct ast_websocket session)

Disable multi-frame reconstruction.

Parameters
sessionPointer to the WebSocket session
Note
If reconstruction is disabled each message that is part of a multi-frame message will be sent up to the user when ast_websocket_read is called.

Definition at line 638 of file res_http_websocket.c.

639{
640 session->reconstruct = 0;
641}

References session.

◆ ast_websocket_reconstruct_enable()

void AST_OPTIONAL_API_NAME() ast_websocket_reconstruct_enable ( struct ast_websocket session,
size_t  bytes 
)

Enable multi-frame reconstruction up to a certain number of bytes.

Parameters
sessionPointer to the WebSocket session
bytesIf a reconstructed payload exceeds the specified number of bytes the payload will be returned and upon reception of the next multi-frame a new reconstructed payload will begin.

Definition at line 633 of file res_http_websocket.c.

634{
635 session->reconstruct = MIN(bytes, MAXIMUM_RECONSTRUCTION_CEILING);
636}
#define MAXIMUM_RECONSTRUCTION_CEILING
Maximum reconstruction size for multi-frame payload reconstruction.
#define MIN(a, b)
Definition utils.h:252

References MAXIMUM_RECONSTRUCTION_CEILING, MIN, and session.

Referenced by websocket_handoff_to_channel().

◆ ast_websocket_ref()

void AST_OPTIONAL_API_NAME() ast_websocket_ref ( struct ast_websocket session)

Increase the reference count for a WebSocket session.

Parameters
sessionPointer to the WebSocket session

Definition at line 643 of file res_http_websocket.c.

644{
646 int refcount = session ? ao2_ref(session, 0) : 0;
647 SCOPE_ENTER(2, "%s: Reffing. Refcount: %d\n", id, refcount);
648 ao2_ref(session, +1);
649 SCOPE_EXIT("%s: Reffed. Refcount: %d\n", id, session ? refcount - 1 : 0);
650}
#define ast_strdupa(s)
duplicate a string in memory from the stack
Definition astmm.h:298
#define SCOPE_EXIT(...)

References ao2_ref, ast_strdupa, SCOPE_ENTER, SCOPE_EXIT, session, and WS_SESSION_REMOTE.

Referenced by session_update(), and transport_create().

◆ ast_websocket_remote_address()

struct ast_sockaddr *AST_OPTIONAL_API_NAME() ast_websocket_remote_address ( struct ast_websocket session)

Get the remote address for a WebSocket connected session.

Returns
Remote address

Definition at line 672 of file res_http_websocket.c.

673{
674 return &session->remote_address;
675}

References session.

Referenced by ari_websocket_send_event(), session_update(), session_write(), transport_create(), transport_read(), websocket_established_cb(), and websocket_handoff_to_channel().

◆ ast_websocket_remove_protocol()

int AST_OPTIONAL_API_NAME() ast_websocket_remove_protocol ( const char *  name,
ast_websocket_callback  callback 
)

Remove a sub-protocol handler from the default /ws server.

Parameters
nameName of the sub-protocol to unregister
callbackSession Established callback that was previously registered with the sub-protocol
Return values
0success
-1if sub-protocol was not found or if callback did not match

Definition at line 1271 of file res_http_websocket.c.

1272{
1274}
static int websocket_remove_protocol_internal(const char *name, ast_websocket_callback callback)

References callback(), name, and websocket_remove_protocol_internal().

Referenced by AST_TEST_DEFINE(), and unload_module().

◆ ast_websocket_result_to_str()

const char *AST_OPTIONAL_API_NAME() ast_websocket_result_to_str ( enum ast_websocket_result  result)

Convert a websocket result code to a string.

Parameters
resultThe result code to convert
Returns
A string representation of the result code

Definition at line 2129 of file res_http_websocket.c.

2131{
2133 return "unknown";
2134 }
2136}
const char * websocket_result_string_map[]
#define ARRAY_IN_BOUNDS(v, a)
Checks to see if value is within the bounds of the given array.
Definition utils.h:727

References ARRAY_IN_BOUNDS, result, and websocket_result_string_map.

Referenced by ast_websocket_client_connect(), ast_websocket_client_create_with_options(), webchan_call(), websocket_client_handshake(), websocket_client_handshake_get_response(), and websocket_proxy_handshake().

◆ ast_websocket_server_add_protocol()

int AST_OPTIONAL_API_NAME() ast_websocket_server_add_protocol ( struct ast_websocket_server server,
const char *  name,
ast_websocket_callback  callback 
)

Add a sub-protocol handler to the given server.

Parameters
serverThe server to add the sub-protocol to
nameName of the sub-protocol to register
callbackCallback called when a new connection requesting the sub-protocol is established
Return values
0success
-1if sub-protocol handler could not be registered
Since
12

Definition at line 295 of file res_http_websocket.c.

296{
297 struct ast_websocket_protocol *protocol;
298
299 if (!server->protocols) {
300 return -1;
301 }
302
304 if (!protocol) {
305 return -1;
306 }
307 protocol->session_established = callback;
308
309 if (ast_websocket_server_add_protocol2(server, protocol)) {
310 ao2_ref(protocol, -1);
311 return -1;
312 }
313
314 return 0;
315}
struct ast_websocket_protocol *AST_OPTIONAL_API_NAME() ast_websocket_sub_protocol_alloc(const char *name)
Allocate a websocket sub-protocol instance.
A websocket protocol implementation.
ast_websocket_callback session_established
Callback called when a new session is established. Mandatory.
struct ao2_container * protocols

References ao2_ref, ast_websocket_server_add_protocol2(), ast_websocket_sub_protocol_alloc(), callback(), name, ast_websocket_server::protocols, and ast_websocket_protocol::session_established.

Referenced by websocket_add_protocol_internal().

◆ ast_websocket_server_add_protocol2()

int AST_OPTIONAL_API_NAME() ast_websocket_server_add_protocol2 ( struct ast_websocket_server server,
struct ast_websocket_protocol protocol 
)

Add a sub-protocol handler to the given server.

Parameters
serverThe server to add the sub-protocol to.
protocolThe sub-protocol to register. Note that this must be allocated using /ref ast_websocket_sub_protocol_alloc.
Note
This method is reference stealing. It will steal the reference to protocol on success.
Return values
0success
-1if sub-protocol handler could not be registered
Since
13.5.0

Definition at line 317 of file res_http_websocket.c.

318{
319 struct ast_websocket_protocol *existing;
320
321 if (!server->protocols) {
322 return -1;
323 }
324
325 if (protocol->version != AST_WEBSOCKET_PROTOCOL_VERSION) {
326 ast_log(LOG_WARNING, "WebSocket could not register sub-protocol '%s': "
327 "expected version '%u', got version '%u'\n",
328 protocol->name, AST_WEBSOCKET_PROTOCOL_VERSION, protocol->version);
329 return -1;
330 }
331
332 ao2_lock(server->protocols);
333
334 /* Ensure a second protocol handler is not registered for the same protocol */
335 existing = ao2_find(server->protocols, protocol->name, OBJ_KEY | OBJ_NOLOCK);
336 if (existing) {
337 ao2_ref(existing, -1);
338 ao2_unlock(server->protocols);
339 return -1;
340 }
341
342 ao2_link_flags(server->protocols, protocol, OBJ_NOLOCK);
343 ao2_unlock(server->protocols);
344
345 ast_debug(1, "WebSocket registered sub-protocol '%s'\n", protocol->name);
346 ao2_ref(protocol, -1);
347
348 return 0;
349}
#define OBJ_KEY
Definition astobj2.h:1151
#define ao2_link_flags(container, obj, flags)
Add an object to a container.
Definition astobj2.h:1554
#define ao2_find(container, arg, flags)
Definition astobj2.h:1736
#define ao2_unlock(a)
Definition astobj2.h:729
#define ao2_lock(a)
Definition astobj2.h:717
@ OBJ_NOLOCK
Assume that the ao2_container is already locked.
Definition astobj2.h:1063
#define AST_WEBSOCKET_PROTOCOL_VERSION
Protocol version. This prevents dynamically loadable modules from registering if this struct is chang...
#define ast_debug(level,...)
Log a DEBUG message.
unsigned int version
Protocol version. Should be set to /ref AST_WEBSOCKET_PROTOCOL_VERSION.
char * name
Name of the protocol.

References ao2_find, ao2_link_flags, ao2_lock, ao2_ref, ao2_unlock, ast_debug, ast_log, AST_WEBSOCKET_PROTOCOL_VERSION, LOG_WARNING, OBJ_KEY, OBJ_NOLOCK, and ast_websocket_server::protocols.

Referenced by ari_websocket_load_module(), ast_websocket_add_protocol2(), ast_websocket_server_add_protocol(), and load_module().

◆ ast_websocket_server_create()

struct ast_websocket_server *AST_OPTIONAL_API_NAME() ast_websocket_server_create ( void  )

Creates a ast_websocket_server.

Returns
New ast_websocket_server instance
Return values
NULLon error
Since
12

Definition at line 250 of file res_http_websocket.c.

251{
253}
static struct ast_websocket_server * websocket_server_create_impl(void)

References websocket_server_create_impl().

Referenced by ari_websocket_load_module(), and load_module().

◆ ast_websocket_server_remove_protocol()

int AST_OPTIONAL_API_NAME() ast_websocket_server_remove_protocol ( struct ast_websocket_server server,
const char *  name,
ast_websocket_callback  callback 
)

Remove a sub-protocol handler from the given server.

Parameters
serverThe server to unregister the sub-protocol from
nameName of the sub-protocol to unregister
callbackCallback that was previously registered with the sub-protocol
Return values
0success
-1if sub-protocol was not found or if callback did not match
Since
12

Definition at line 351 of file res_http_websocket.c.

352{
353 struct ast_websocket_protocol *protocol;
354
355 if (!(protocol = ao2_find(server->protocols, name, OBJ_KEY))) {
356 return -1;
357 }
358
359 if (protocol->session_established != callback) {
360 ao2_ref(protocol, -1);
361 return -1;
362 }
363
364 ao2_unlink(server->protocols, protocol);
365 ao2_ref(protocol, -1);
366
367 ast_debug(1, "WebSocket unregistered sub-protocol '%s'\n", name);
368
369 return 0;
370}
#define ao2_unlink(container, obj)
Remove an object from a container.
Definition astobj2.h:1578

References ao2_find, ao2_ref, ao2_unlink, ast_debug, callback(), name, OBJ_KEY, ast_websocket_server::protocols, and ast_websocket_protocol::session_established.

Referenced by websocket_remove_protocol_internal().

◆ ast_websocket_session_id()

const char *AST_OPTIONAL_API_NAME() ast_websocket_session_id ( struct ast_websocket session)

Get the session ID for a WebSocket session.

Returns
session id

Definition at line 701 of file res_http_websocket.c.

702{
703 return session->session_id;
704}

References session.

Referenced by websocket_established_cb().

◆ ast_websocket_set_nonblock()

int AST_OPTIONAL_API_NAME() ast_websocket_set_nonblock ( struct ast_websocket session)

Set the socket of a WebSocket session to be non-blocking.

Return values
0on success
-1on failure

Definition at line 687 of file res_http_websocket.c.

688{
691 return 0;
692}
void ast_iostream_set_exclusive_input(struct ast_iostream *stream, int exclusive_input)
Set the iostream if it can exclusively depend upon the set timeouts.
Definition iostream.c:154
void ast_iostream_nonblock(struct ast_iostream *stream)
Make an iostream non-blocking.
Definition iostream.c:104

References ast_iostream_nonblock(), ast_iostream_set_exclusive_input(), and session.

Referenced by session_update(), and websocket_cb().

◆ ast_websocket_set_timeout()

int AST_OPTIONAL_API_NAME() ast_websocket_set_timeout ( struct ast_websocket session,
int  timeout 
)

Set the timeout on a non-blocking WebSocket session.

Since
11.11.0
12.4.0
Return values
0on success
-1on failure

Definition at line 694 of file res_http_websocket.c.

695{
696 session->timeout = timeout;
697
698 return 0;
699}

References session, and ast_websocket::timeout.

Referenced by session_update(), and websocket_cb().

◆ ast_websocket_status_to_str()

const char *AST_OPTIONAL_API_NAME() ast_websocket_status_to_str ( enum ast_websocket_status_code  code)

Convert a websocket status code to a string.

Parameters
codeThe code to convert
Returns
A string representation of the code

Definition at line 2162 of file res_http_websocket.c.

2164{
2165 int i;
2166
2167 for (i = 0; i < ARRAY_LEN(websocket_status_map); i++) {
2168 if (websocket_status_map[i].code == code)
2169 return websocket_status_map[i].desc;
2170 }
2171
2172 return "Unknown";
2173}
static const struct status_map websocket_status_map[]
const char * desc
#define ARRAY_LEN(a)
Definition utils.h:706

References ARRAY_LEN, status_map::code, status_map::desc, and websocket_status_map.

Referenced by _websocket_request_hangup(), websocket_close(), and websocket_handled_pong_or_close().

◆ ast_websocket_sub_protocol_alloc()

struct ast_websocket_protocol *AST_OPTIONAL_API_NAME() ast_websocket_sub_protocol_alloc ( const char *  name)

Allocate a websocket sub-protocol instance.

Returns
An instance of ast_websocket_protocol on success
Return values
NULLon error
Since
13.5.0

Definition at line 276 of file res_http_websocket.c.

277{
278 struct ast_websocket_protocol *protocol;
279
280 protocol = ao2_alloc(sizeof(*protocol), protocol_destroy_fn);
281 if (!protocol) {
282 return NULL;
283 }
284
285 protocol->name = ast_strdup(name);
286 if (!protocol->name) {
287 ao2_ref(protocol, -1);
288 return NULL;
289 }
291
292 return protocol;
293}
#define ast_strdup(str)
A wrapper for strdup()
Definition astmm.h:241
#define ao2_alloc(data_size, destructor_fn)
Definition astobj2.h:409
static void protocol_destroy_fn(void *obj)
Destructor function for protocols.

References ao2_alloc, ao2_ref, ast_strdup, AST_WEBSOCKET_PROTOCOL_VERSION, name, ast_websocket_protocol::name, NULL, protocol_destroy_fn(), and ast_websocket_protocol::version.

Referenced by ari_websocket_load_module(), ast_websocket_server_add_protocol(), and load_module().

◆ ast_websocket_type_to_str()

const char * ast_websocket_type_to_str ( enum ast_websocket_type  type)

Definition at line 167 of file res_http_websocket.c.

168{
169 switch (type) {
171 return "persistent";
173 return "per_call";
175 return "per_call_config";
177 return "client";
179 return "inbound";
181 return "server";
182 case AST_WS_TYPE_ANY:
183 return "any";
184 default:
185 return "unknown";
186 }
187}
static const char type[]

References AST_WS_TYPE_ANY, AST_WS_TYPE_CLIENT, AST_WS_TYPE_CLIENT_PER_CALL, AST_WS_TYPE_CLIENT_PER_CALL_CONFIG, AST_WS_TYPE_CLIENT_PERSISTENT, AST_WS_TYPE_INBOUND, AST_WS_TYPE_SERVER, and type.

Referenced by session_cleanup().

◆ ast_websocket_unref()

void AST_OPTIONAL_API_NAME() ast_websocket_unref ( struct ast_websocket session)

Decrease the reference count for a WebSocket session.

Parameters
sessionPointer to the WebSocket session

Definition at line 652 of file res_http_websocket.c.

653{
655 int refcount = session ? ao2_ref(session, 0) : 0;
656 SCOPE_ENTER(2, "%s: Unreffing. Refcount: %d\n", id, refcount);
657
659 SCOPE_EXIT("%s: Unreffed. Refcount: %d\n", id, session ? refcount - 1 : 0);
660}
#define ao2_cleanup(obj)
Definition astobj2.h:1934

References ao2_cleanup, ao2_ref, ast_strdupa, SCOPE_ENTER, SCOPE_EXIT, session, and WS_SESSION_REMOTE.

Referenced by incoming_ws_established_cb(), outbound_session_handler_thread(), session_dtor(), speech_test_server_cb(), transport_dtor(), webchan_hangup(), websocket_cb(), websocket_destroy(), websocket_destructor(), websocket_echo_callback(), and websocket_established_cb().

◆ ast_websocket_uri_cb()

int AST_OPTIONAL_API_NAME() ast_websocket_uri_cb ( struct ast_tcptls_session_instance ser,
const struct ast_http_uri urih,
const char *  uri,
enum ast_http_method  method,
struct ast_variable get_vars,
struct ast_variable headers 
)

Callback suitable for use with a ast_http_uri.

Set the data field of the ast_http_uri to ast_websocket_server.

Since
12

Definition at line 980 of file res_http_websocket.c.

981{
982 struct ast_variable *v;
983 const char *upgrade = NULL, *key = NULL, *key1 = NULL, *key2 = NULL, *protos = NULL;
984 char *requested_protocols = NULL, *protocol = NULL;
985 int version = 0, flags = 1;
986 struct ast_websocket_protocol *protocol_handler = NULL;
987 struct ast_websocket *session;
988 struct ast_websocket_server *server;
989
991
992 /* Upgrade requests are only permitted on GET methods */
993 if (method != AST_HTTP_GET) {
994 ast_http_error(ser, 501, "Not Implemented", "Attempt to use unimplemented / unsupported method");
995 return 0;
996 }
997
998 server = urih->data;
999
1000 /* Get the minimum headers required to satisfy our needs */
1001 for (v = headers; v; v = v->next) {
1002 if (!strcasecmp(v->name, "Upgrade")) {
1003 upgrade = v->value;
1004 } else if (!strcasecmp(v->name, "Sec-WebSocket-Key")) {
1005 key = v->value;
1006 } else if (!strcasecmp(v->name, "Sec-WebSocket-Key1")) {
1007 key1 = v->value;
1008 } else if (!strcasecmp(v->name, "Sec-WebSocket-Key2")) {
1009 key2 = v->value;
1010 } else if (!strcasecmp(v->name, "Sec-WebSocket-Protocol")) {
1011 protos = v->value;
1012 } else if (!strcasecmp(v->name, "Sec-WebSocket-Version")) {
1013 if (sscanf(v->value, "%30d", &version) != 1) {
1014 version = 0;
1015 }
1016 }
1017 }
1018
1019 /* If this is not a websocket upgrade abort */
1020 if (!upgrade || strcasecmp(upgrade, "websocket")) {
1021 ast_log(LOG_WARNING, "WebSocket connection from '%s' could not be accepted - did not request WebSocket\n",
1023 ast_http_error(ser, 426, "Upgrade Required", NULL);
1024 return 0;
1025 } else if (ast_strlen_zero(protos)) {
1026 /* If there's only a single protocol registered, and the
1027 * client doesn't specify what protocol it's using, go ahead
1028 * and accept the connection */
1029 protocol_handler = one_protocol(server);
1030 if (!protocol_handler) {
1031 /* Multiple registered subprotocols; client must specify */
1032 ast_log(LOG_WARNING, "WebSocket connection from '%s' could not be accepted - no protocols requested\n",
1035 return 0;
1036 }
1037 } else if (key1 && key2) {
1038 /* Specification defined in http://tools.ietf.org/html/draft-hixie-thewebsocketprotocol-76 and
1039 * http://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol-00 -- not currently supported*/
1040 ast_log(LOG_WARNING, "WebSocket connection from '%s' could not be accepted - unsupported version '00/76' chosen\n",
1043 return 0;
1044 }
1045
1046 if (!protocol_handler && protos) {
1047 requested_protocols = ast_strdupa(protos);
1048 /* Iterate through the requested protocols trying to find one that we have a handler for */
1049 while (!protocol_handler && (protocol = strsep(&requested_protocols, ","))) {
1050 protocol_handler = ao2_find(server->protocols, ast_strip(protocol), OBJ_KEY);
1051 }
1052 }
1053
1054 /* If no protocol handler exists bump this back to the requester */
1055 if (!protocol_handler) {
1056 ast_log(LOG_WARNING, "WebSocket connection from '%s' could not be accepted - no protocols out of '%s' supported\n",
1057 ast_sockaddr_stringify(&ser->remote_address), protos);
1059 return 0;
1060 }
1061
1062 /* Determine how to respond depending on the version */
1063 if (version == 7 || version == 8 || version == 13) {
1064 char base64[64];
1065
1066 if (!key || strlen(key) + strlen(WEBSOCKET_GUID) + 1 > 8192) { /* no stack overflows please */
1068 ao2_ref(protocol_handler, -1);
1069 return 0;
1070 }
1071
1072 if (ast_http_body_discard(ser)) {
1074 ao2_ref(protocol_handler, -1);
1075 return 0;
1076 }
1077
1078 if (!(session = ao2_alloc(sizeof(*session) + AST_UUID_STR_LEN + 1, session_destroy_fn))) {
1079 ast_log(LOG_WARNING, "WebSocket connection from '%s' could not be accepted\n",
1082 ao2_ref(protocol_handler, -1);
1083 return 0;
1084 }
1086
1087 /* Generate the session id */
1088 if (!ast_uuid_generate_str(session->session_id, sizeof(session->session_id))) {
1089 ast_log(LOG_WARNING, "WebSocket connection from '%s' could not be accepted - failed to generate a session id\n",
1091 ast_http_error(ser, 500, "Internal Server Error", "Allocation failed");
1092 ao2_ref(protocol_handler, -1);
1093 return 0;
1094 }
1095
1096 if (protocol_handler->session_attempted
1097 && protocol_handler->session_attempted(ser, get_vars, headers, session->session_id)) {
1098 ast_debug(3, "WebSocket connection from '%s' rejected by protocol handler '%s'\n",
1099 ast_sockaddr_stringify(&ser->remote_address), protocol_handler->name);
1101 ao2_ref(protocol_handler, -1);
1102 return 0;
1103 }
1104
1105 /* RFC 6455, Section 4.1:
1106 *
1107 * 6. If the response includes a |Sec-WebSocket-Protocol| header
1108 * field and this header field indicates the use of a
1109 * subprotocol that was not present in the client's handshake
1110 * (the server has indicated a subprotocol not requested by
1111 * the client), the client MUST _Fail the WebSocket
1112 * Connection_.
1113 */
1114 if (protocol) {
1116 "HTTP/1.1 101 Switching Protocols\r\n"
1117 "Upgrade: %s\r\n"
1118 "Connection: Upgrade\r\n"
1119 "Sec-WebSocket-Accept: %s\r\n"
1120 "Sec-WebSocket-Protocol: %s\r\n\r\n",
1121 upgrade,
1122 websocket_combine_key(key, base64, sizeof(base64)),
1123 protocol);
1124 } else {
1126 "HTTP/1.1 101 Switching Protocols\r\n"
1127 "Upgrade: %s\r\n"
1128 "Connection: Upgrade\r\n"
1129 "Sec-WebSocket-Accept: %s\r\n\r\n",
1130 upgrade,
1131 websocket_combine_key(key, base64, sizeof(base64)));
1132 }
1133 } else {
1134
1135 /* Specification defined in http://tools.ietf.org/html/draft-hixie-thewebsocketprotocol-75 or completely unknown */
1136 ast_log(LOG_WARNING, "WebSocket connection from '%s' could not be accepted - unsupported version '%d' chosen\n",
1139 ao2_ref(protocol_handler, -1);
1140 return 0;
1141 }
1142
1143 /* Enable keepalive on all sessions so the underlying user does not have to */
1144 if (setsockopt(ast_iostream_get_fd(ser->stream), SOL_SOCKET, SO_KEEPALIVE, &flags, sizeof(flags))) {
1145 ast_log(LOG_WARNING, "WebSocket connection from '%s' could not be accepted - failed to enable keepalive\n",
1148 ao2_ref(session, -1);
1149 ao2_ref(protocol_handler, -1);
1150 return 0;
1151 }
1152
1153 /* Get our local address for the connected socket */
1154 if (ast_getsockname(ast_iostream_get_fd(ser->stream), &session->local_address)) {
1155 ast_log(LOG_WARNING, "WebSocket connection from '%s' could not be accepted - failed to get local address\n",
1158 ao2_ref(session, -1);
1159 ao2_ref(protocol_handler, -1);
1160 return 0;
1161 }
1162
1163 ast_debug(3, "WebSocket connection from '%s' for protocol '%s' accepted using version '%d'\n", ast_sockaddr_stringify(&ser->remote_address), protocol ? : "", version);
1164
1165 /* Populate the session with all the needed details */
1166 session->stream = ser->stream;
1167 ast_sockaddr_copy(&session->remote_address, &ser->remote_address);
1168 session->opcode = -1;
1170 session->secure = ast_iostream_get_ssl(ser->stream) ? 1 : 0;
1171
1172 /* Give up ownership of the socket and pass it to the protocol handler */
1174 protocol_handler->session_established(session, get_vars, headers);
1175 ao2_ref(protocol_handler, -1);
1176
1177 /*
1178 * By dropping the stream from the session the connection
1179 * won't get closed when the HTTP server cleans up because we
1180 * passed the connection to the protocol handler.
1181 */
1182 ser->stream = NULL;
1183
1184 return 0;
1185}
char * strsep(char **str, const char *delims)
static char version[AST_MAX_EXTENSION]
@ AST_HTTP_GET
Definition http.h:60
int ast_http_body_discard(struct ast_tcptls_session_instance *ser)
Read and discard any unread HTTP request body.
Definition http.c:1185
void ast_http_error(struct ast_tcptls_session_instance *ser, int status, const char *title, const char *text)
Send HTTP error message and close socket.
Definition http.c:714
#define AST_DEFAULT_WEBSOCKET_WRITE_TIMEOUT
Default websocket write timeout, in ms.
ssize_t ast_iostream_printf(struct ast_iostream *stream, const char *format,...)
Write a formatted string to an iostream.
Definition iostream.c:507
SSL * ast_iostream_get_ssl(struct ast_iostream *stream)
Get a pointer to an iostream's OpenSSL SSL structure.
Definition iostream.c:114
#define SCOPED_MODULE_USE(module)
Definition module.h:679
int ast_getsockname(int sockfd, struct ast_sockaddr *addr)
Wrapper around getsockname(2) that uses struct ast_sockaddr.
Definition netsock2.c:600
static char * ast_sockaddr_stringify(const struct ast_sockaddr *addr)
Wrapper around ast_sockaddr_stringify_fmt() with default format.
Definition netsock2.h:256
static void ast_sockaddr_copy(struct ast_sockaddr *dst, const struct ast_sockaddr *src)
Copies the data from one ast_sockaddr to another.
Definition netsock2.h:167
static void websocket_bad_request(struct ast_tcptls_session_instance *ser)
static struct ast_websocket_protocol * one_protocol(struct ast_websocket_server *server)
If the server has exactly one configured protocol, return it.
#define DEFAULT_RECONSTRUCTION_CEILING
Default reconstruction size for multi-frame payload reconstruction. If exceeded the next frame will s...
static char * websocket_combine_key(const char *key, char *res, int res_size)
#define WEBSOCKET_GUID
GUID used to compute the accept key, defined in the specifications.
static void session_destroy_fn(void *obj)
Destructor function for sessions.
const char * method
Definition res_pjsip.c:1273
static force_inline int attribute_pure ast_strlen_zero(const char *s)
Definition strings.h:65
char * ast_strip(char *s)
Strip leading/trailing whitespace from a string.
Definition strings.h:223
struct ast_module * self
Definition module.h:356
struct ast_iostream * stream
Definition tcptls.h:162
struct ast_sockaddr remote_address
Definition tcptls.h:153
Structure for variables, used for configurations and for channel variables.
struct ast_variable * next
ast_websocket_pre_callback session_attempted
Callback called when a new session is attempted. Optional.
static char base64[64]
Definition utils.c:80
#define AST_UUID_STR_LEN
Definition uuid.h:27
char * ast_uuid_generate_str(char *buf, size_t size)
Generate a UUID string.
Definition uuid.c:141

References ao2_alloc, ao2_find, ao2_ref, ast_debug, AST_DEFAULT_WEBSOCKET_WRITE_TIMEOUT, ast_getsockname(), ast_http_body_discard(), ast_http_error(), AST_HTTP_GET, ast_iostream_get_fd(), ast_iostream_get_ssl(), ast_iostream_printf(), ast_iostream_set_exclusive_input(), ast_log, ast_sockaddr_copy(), ast_sockaddr_stringify(), ast_strdupa, ast_strip(), ast_strlen_zero(), ast_uuid_generate_str(), AST_UUID_STR_LEN, base64, ast_http_uri::data, DEFAULT_RECONSTRUCTION_CEILING, LOG_WARNING, method, ast_variable::name, ast_websocket_protocol::name, ast_variable::next, NULL, OBJ_KEY, one_protocol(), ast_websocket_server::protocols, ast_tcptls_session_instance::remote_address, SCOPED_MODULE_USE, ast_module_info::self, session, ast_websocket_protocol::session_attempted, session_destroy_fn(), ast_websocket_protocol::session_established, ast_tcptls_session_instance::stream, strsep(), ast_variable::value, version, websocket_bad_request(), websocket_combine_key(), and WEBSOCKET_GUID.

Referenced by ari_handle_websocket(), and incoming_ws_http_callback().

◆ ast_websocket_wait_for_input()

int AST_OPTIONAL_API_NAME() ast_websocket_wait_for_input ( struct ast_websocket session,
int  timeout 
)

Wait for the WebSocket session to be ready to be read.

Since
16.8.0
17.2.0
Parameters
sessionPointer to the WebSocket session
timeoutthe number of milliseconds to wait
Return values
-1if error occurred
0if the timeout expired
1if the WebSocket session is ready for reading

Definition at line 667 of file res_http_websocket.c.

668{
669 return session->closing ? -1 : ast_iostream_wait_for_input(session->stream, timeout);
670}
int ast_iostream_wait_for_input(struct ast_iostream *stream, int timeout)
Wait for input on the iostream's file descriptor.
Definition iostream.c:90

References ast_iostream_wait_for_input(), session, and ast_websocket::timeout.

Referenced by speech_test_server_cb(), websocket_cb(), websocket_echo_callback(), and websocket_read().

◆ ast_websocket_write()

int AST_OPTIONAL_API_NAME() ast_websocket_write ( struct ast_websocket session,
enum ast_websocket_opcode  opcode,
char *  payload,
uint64_t  payload_size 
)

Construct and transmit a WebSocket frame.

Parameters
sessionPointer to the WebSocket session
opcodeWebSocket operation code to place in the frame
payloadOptional pointer to a payload to add to the frame
payload_sizeLength of the payload (0 if no payload)
Return values
0if successfully written
-1if error occurred

Construct and transmit a WebSocket frame.

Definition at line 563 of file res_http_websocket.c.

565{
566 size_t header_size = 2; /* The minimum size of a websocket frame is 2 bytes */
567 char *frame;
568 uint64_t length;
569 uint64_t frame_size;
570 SCOPE_ENTER(4, "%s: Opcode: %s Length: %"PRIu64"\n",
571 WS_SESSION_REMOTE(session), websocket_opcode2str(opcode), payload_size);
572
573 if (payload_size < 126) {
574 length = payload_size;
575 } else if (payload_size < (1 << 16)) {
576 length = 126;
577 /* We need an additional 2 bytes to store the extended length */
578 header_size += 2;
579 } else {
580 length = 127;
581 /* We need an additional 8 bytes to store the really really extended length */
582 header_size += 8;
583 }
584
585 if (session->client) {
586 /* Additional 4 bytes for the client masking key */
587 header_size += 4;
588 }
589
590 frame_size = header_size + payload_size;
591
592 frame = ast_alloca(frame_size + 1);
593 memset(frame, 0, frame_size + 1);
594
595 frame[0] = opcode | 0x80;
596 frame[1] = length;
597
598 /* Use the additional available bytes to store the length */
599 if (length == 126) {
600 put_unaligned_uint16(&frame[2], htons(payload_size));
601 } else if (length == 127) {
602 put_unaligned_uint64(&frame[2], htonll(payload_size));
603 }
604
605 memcpy(&frame[header_size], payload, payload_size);
606
607 websocket_mask_payload(session, frame, &frame[header_size], payload_size);
608
610 if (session->closing) {
612 SCOPE_EXIT_RTN_VALUE(-1, "%s: Websocket already closing\n", WS_SESSION_REMOTE(session));
613 }
614
616 if (ast_iostream_write(session->stream, frame, frame_size) != frame_size) {
618 /* 1011 - server terminating connection due to not being able to fulfill the request */
619 ast_trace(-1, "%s: Closing WS with 1011 because we can't fulfill a write request\n",
621 websocket_close(session, 1011, 1);
622 SCOPE_EXIT_RTN_VALUE(-1, "%s: Closed WS with 1011 because we couldn't fulfill a write request\n",
624 }
625
628
629 SCOPE_EXIT_RTN_VALUE(0, "%s: Wrote opcode: %s length: %"PRIu64"\n",
630 WS_SESSION_REMOTE(session), websocket_opcode2str(opcode), payload_size);
631}
uint64_t htonll(uint64_t host64)
Definition strcompat.c:391
#define ast_alloca(size)
call __builtin_alloca to ensure we get gcc builtin semantics
Definition astmm.h:288
ssize_t ast_iostream_write(struct ast_iostream *stream, const void *buffer, size_t count)
Write data to an iostream.
Definition iostream.c:390
void ast_iostream_set_timeout_sequence(struct ast_iostream *stream, struct timeval start, int timeout)
Set the iostream I/O sequence timeout timer.
Definition iostream.c:145
void ast_iostream_set_timeout_disable(struct ast_iostream *stream)
Disable the iostream timeout timer.
Definition iostream.c:119
static void websocket_mask_payload(struct ast_websocket *session, char *frame, char *payload, uint64_t payload_size)
Perform payload masking for client sessions.
struct timeval ast_tvnow(void)
Returns current timeval. Meant to replace calls to gettimeofday().
Definition time.h:159
static void put_unaligned_uint16(void *p, unsigned short datum)
Definition unaligned.h:65
static void put_unaligned_uint64(void *p, uint64_t datum)
Definition unaligned.h:51

References ao2_lock, ao2_unlock, ast_alloca, ast_iostream_set_timeout_disable(), ast_iostream_set_timeout_sequence(), ast_iostream_write(), ast_trace, ast_tvnow(), frame_size, htonll(), ast_websocket::opcode, ast_websocket::payload, put_unaligned_uint16(), put_unaligned_uint64(), SCOPE_ENTER, SCOPE_EXIT_RTN_VALUE, session, websocket_close(), websocket_mask_payload(), websocket_opcode2str(), and WS_SESSION_REMOTE.

Referenced by ast_websocket_read(), ast_websocket_write_string(), ping_scheduler_callback(), speech_test_server_cb(), webchan_write(), websocket_echo_callback(), websocket_write(), and ws_send_msg().

◆ ast_websocket_write_string()

int AST_OPTIONAL_API_NAME() ast_websocket_write_string ( struct ast_websocket ws,
const char *  buf 
)

Construct and transmit a WebSocket frame containing string data.

Parameters
wspointer to the websocket
bufstring data to write to socket
Return values
0if successfully written
-1if error occurred

Definition at line 2093 of file res_http_websocket.c.

2095{
2096 uint64_t len = strlen(buf);
2097
2098 ast_debug(3, "Writing websocket string of length %" PRIu64 "\n", len);
2099
2100 /* We do not pass strlen(buf) to ast_websocket_write() directly because the
2101 * size_t returned by strlen() may not require the same storage size
2102 * as the uint64_t that ast_websocket_write() uses. This normally
2103 * would not cause a problem, but since ast_websocket_write() uses
2104 * the optional API, this function call goes through a series of macros
2105 * that may cause a 32-bit to 64-bit conversion to go awry.
2106 */
2108 (char *)buf, len);
2109}
static int len(struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t buflen)

References ast_debug, AST_WEBSOCKET_OPCODE_TEXT, ast_websocket_write(), buf, and len().

Referenced by AST_TEST_DEFINE(), dequeue_frame(), session_write(), and speech_test_server_handle_request().