123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269 |
- /***************************************************************************
- * _ _ ____ _
- * Project ___| | | | _ \| |
- * / __| | | | |_) | |
- * | (__| |_| | _ <| |___
- * \___|\___/|_| \_\_____|
- *
- * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
- *
- * This software is licensed as described in the file COPYING, which
- * you should have received as part of this distribution. The terms
- * are also available at https://curl.se/docs/copyright.html.
- *
- * You may opt to use, copy, modify, merge, publish, distribute and/or sell
- * copies of the Software, and permit persons to whom the Software is
- * furnished to do so, under the terms of the COPYING file.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- * SPDX-License-Identifier: curl
- *
- ***************************************************************************/
- #include "curl_setup.h"
- #include <curl/curl.h>
- #if defined(USE_WEBSOCKETS) && !defined(CURL_DISABLE_HTTP)
- #include "urldata.h"
- #include "bufq.h"
- #include "dynbuf.h"
- #include "rand.h"
- #include "curl_base64.h"
- #include "connect.h"
- #include "sendf.h"
- #include "multiif.h"
- #include "ws.h"
- #include "easyif.h"
- #include "transfer.h"
- #include "nonblock.h"
- /* The last 3 #include files should be in this order */
- #include "curl_printf.h"
- #include "curl_memory.h"
- #include "memdebug.h"
- #define WSBIT_FIN 0x80
- #define WSBIT_OPCODE_CONT 0
- #define WSBIT_OPCODE_TEXT (1)
- #define WSBIT_OPCODE_BIN (2)
- #define WSBIT_OPCODE_CLOSE (8)
- #define WSBIT_OPCODE_PING (9)
- #define WSBIT_OPCODE_PONG (0xa)
- #define WSBIT_OPCODE_MASK (0xf)
- #define WSBIT_MASK 0x80
- /* buffer dimensioning */
- #define WS_CHUNK_SIZE 65535
- #define WS_CHUNK_COUNT 2
- struct ws_frame_meta {
- char proto_opcode;
- int flags;
- const char *name;
- };
- static struct ws_frame_meta WS_FRAMES[] = {
- { WSBIT_OPCODE_CONT, CURLWS_CONT, "CONT" },
- { WSBIT_OPCODE_TEXT, CURLWS_TEXT, "TEXT" },
- { WSBIT_OPCODE_BIN, CURLWS_BINARY, "BIN" },
- { WSBIT_OPCODE_CLOSE, CURLWS_CLOSE, "CLOSE" },
- { WSBIT_OPCODE_PING, CURLWS_PING, "PING" },
- { WSBIT_OPCODE_PONG, CURLWS_PONG, "PONG" },
- };
- static const char *ws_frame_name_of_op(unsigned char proto_opcode)
- {
- unsigned char opcode = proto_opcode & WSBIT_OPCODE_MASK;
- size_t i;
- for(i = 0; i < sizeof(WS_FRAMES)/sizeof(WS_FRAMES[0]); ++i) {
- if(WS_FRAMES[i].proto_opcode == opcode)
- return WS_FRAMES[i].name;
- }
- return "???";
- }
- static int ws_frame_op2flags(unsigned char proto_opcode)
- {
- unsigned char opcode = proto_opcode & WSBIT_OPCODE_MASK;
- size_t i;
- for(i = 0; i < sizeof(WS_FRAMES)/sizeof(WS_FRAMES[0]); ++i) {
- if(WS_FRAMES[i].proto_opcode == opcode)
- return WS_FRAMES[i].flags;
- }
- return 0;
- }
- static unsigned char ws_frame_flags2op(int flags)
- {
- size_t i;
- for(i = 0; i < sizeof(WS_FRAMES)/sizeof(WS_FRAMES[0]); ++i) {
- if(WS_FRAMES[i].flags & flags)
- return WS_FRAMES[i].proto_opcode;
- }
- return 0;
- }
- static void ws_dec_info(struct ws_decoder *dec, struct Curl_easy *data,
- const char *msg)
- {
- switch(dec->head_len) {
- case 0:
- break;
- case 1:
- CURL_TRC_WRITE(data, "websocket, decoded %s [%s%s]", msg,
- ws_frame_name_of_op(dec->head[0]),
- (dec->head[0] & WSBIT_FIN)? "" : " NON-FINAL");
- break;
- default:
- if(dec->head_len < dec->head_total) {
- CURL_TRC_WRITE(data, "websocket, decoded %s [%s%s](%d/%d)", msg,
- ws_frame_name_of_op(dec->head[0]),
- (dec->head[0] & WSBIT_FIN)? "" : " NON-FINAL",
- dec->head_len, dec->head_total);
- }
- else {
- CURL_TRC_WRITE(data, "websocket, decoded %s [%s%s payload=%"
- CURL_FORMAT_CURL_OFF_T "/%" CURL_FORMAT_CURL_OFF_T "]",
- msg, ws_frame_name_of_op(dec->head[0]),
- (dec->head[0] & WSBIT_FIN)? "" : " NON-FINAL",
- dec->payload_offset, dec->payload_len);
- }
- break;
- }
- }
- typedef ssize_t ws_write_payload(const unsigned char *buf, size_t buflen,
- int frame_age, int frame_flags,
- curl_off_t payload_offset,
- curl_off_t payload_len,
- void *userp,
- CURLcode *err);
- static void ws_dec_reset(struct ws_decoder *dec)
- {
- dec->frame_age = 0;
- dec->frame_flags = 0;
- dec->payload_offset = 0;
- dec->payload_len = 0;
- dec->head_len = dec->head_total = 0;
- dec->state = WS_DEC_INIT;
- }
- static void ws_dec_init(struct ws_decoder *dec)
- {
- ws_dec_reset(dec);
- }
- static CURLcode ws_dec_read_head(struct ws_decoder *dec,
- struct Curl_easy *data,
- struct bufq *inraw)
- {
- const unsigned char *inbuf;
- size_t inlen;
- while(Curl_bufq_peek(inraw, &inbuf, &inlen)) {
- if(dec->head_len == 0) {
- dec->head[0] = *inbuf;
- Curl_bufq_skip(inraw, 1);
- dec->frame_flags = ws_frame_op2flags(dec->head[0]);
- if(!dec->frame_flags) {
- failf(data, "WS: unknown opcode: %x", dec->head[0]);
- ws_dec_reset(dec);
- return CURLE_RECV_ERROR;
- }
- dec->head_len = 1;
- /* ws_dec_info(dec, data, "seeing opcode"); */
- continue;
- }
- else if(dec->head_len == 1) {
- dec->head[1] = *inbuf;
- Curl_bufq_skip(inraw, 1);
- dec->head_len = 2;
- if(dec->head[1] & WSBIT_MASK) {
- /* A client MUST close a connection if it detects a masked frame. */
- failf(data, "WS: masked input frame");
- ws_dec_reset(dec);
- return CURLE_RECV_ERROR;
- }
- /* How long is the frame head? */
- if(dec->head[1] == 126) {
- dec->head_total = 4;
- continue;
- }
- else if(dec->head[1] == 127) {
- dec->head_total = 10;
- continue;
- }
- else {
- dec->head_total = 2;
- }
- }
- if(dec->head_len < dec->head_total) {
- dec->head[dec->head_len] = *inbuf;
- Curl_bufq_skip(inraw, 1);
- ++dec->head_len;
- if(dec->head_len < dec->head_total) {
- /* ws_dec_info(dec, data, "decoding head"); */
- continue;
- }
- }
- /* got the complete frame head */
- DEBUGASSERT(dec->head_len == dec->head_total);
- switch(dec->head_total) {
- case 2:
- dec->payload_len = dec->head[1];
- break;
- case 4:
- dec->payload_len = (dec->head[2] << 8) | dec->head[3];
- break;
- case 10:
- if(dec->head[2] > 127) {
- failf(data, "WS: frame length longer than 64 signed not supported");
- return CURLE_RECV_ERROR;
- }
- dec->payload_len = ((curl_off_t)dec->head[2] << 56) |
- (curl_off_t)dec->head[3] << 48 |
- (curl_off_t)dec->head[4] << 40 |
- (curl_off_t)dec->head[5] << 32 |
- (curl_off_t)dec->head[6] << 24 |
- (curl_off_t)dec->head[7] << 16 |
- (curl_off_t)dec->head[8] << 8 |
- dec->head[9];
- break;
- default:
- /* this should never happen */
- DEBUGASSERT(0);
- failf(data, "WS: unexpected frame header length");
- return CURLE_RECV_ERROR;
- }
- dec->frame_age = 0;
- dec->payload_offset = 0;
- ws_dec_info(dec, data, "decoded");
- return CURLE_OK;
- }
- return CURLE_AGAIN;
- }
- static CURLcode ws_dec_pass_payload(struct ws_decoder *dec,
- struct Curl_easy *data,
- struct bufq *inraw,
- ws_write_payload *write_payload,
- void *write_ctx)
- {
- const unsigned char *inbuf;
- size_t inlen;
- ssize_t nwritten;
- CURLcode result;
- curl_off_t remain = dec->payload_len - dec->payload_offset;
- (void)data;
- while(remain && Curl_bufq_peek(inraw, &inbuf, &inlen)) {
- if((curl_off_t)inlen > remain)
- inlen = (size_t)remain;
- nwritten = write_payload(inbuf, inlen, dec->frame_age, dec->frame_flags,
- dec->payload_offset, dec->payload_len,
- write_ctx, &result);
- if(nwritten < 0)
- return result;
- Curl_bufq_skip(inraw, (size_t)nwritten);
- dec->payload_offset += (curl_off_t)nwritten;
- remain = dec->payload_len - dec->payload_offset;
- CURL_TRC_WRITE(data, "websocket, passed %zd bytes payload, %"
- CURL_FORMAT_CURL_OFF_T " remain", nwritten, remain);
- }
- return remain? CURLE_AGAIN : CURLE_OK;
- }
- static CURLcode ws_dec_pass(struct ws_decoder *dec,
- struct Curl_easy *data,
- struct bufq *inraw,
- ws_write_payload *write_payload,
- void *write_ctx)
- {
- CURLcode result;
- if(Curl_bufq_is_empty(inraw))
- return CURLE_AGAIN;
- switch(dec->state) {
- case WS_DEC_INIT:
- ws_dec_reset(dec);
- dec->state = WS_DEC_HEAD;
- FALLTHROUGH();
- case WS_DEC_HEAD:
- result = ws_dec_read_head(dec, data, inraw);
- if(result) {
- if(result != CURLE_AGAIN) {
- infof(data, "WS: decode error %d", (int)result);
- break; /* real error */
- }
- /* incomplete ws frame head */
- DEBUGASSERT(Curl_bufq_is_empty(inraw));
- break;
- }
- /* head parsing done */
- dec->state = WS_DEC_PAYLOAD;
- if(dec->payload_len == 0) {
- ssize_t nwritten;
- const unsigned char tmp = '\0';
- /* special case of a 0 length frame, need to write once */
- nwritten = write_payload(&tmp, 0, dec->frame_age, dec->frame_flags,
- 0, 0, write_ctx, &result);
- if(nwritten < 0)
- return result;
- dec->state = WS_DEC_INIT;
- break;
- }
- FALLTHROUGH();
- case WS_DEC_PAYLOAD:
- result = ws_dec_pass_payload(dec, data, inraw, write_payload, write_ctx);
- ws_dec_info(dec, data, "passing");
- if(result)
- return result;
- /* paylod parsing done */
- dec->state = WS_DEC_INIT;
- break;
- default:
- /* we covered all enums above, but some code analyzers are whimps */
- result = CURLE_FAILED_INIT;
- }
- return result;
- }
- static void update_meta(struct websocket *ws,
- int frame_age, int frame_flags,
- curl_off_t payload_offset,
- curl_off_t payload_len,
- size_t cur_len)
- {
- ws->frame.age = frame_age;
- ws->frame.flags = frame_flags;
- ws->frame.offset = payload_offset;
- ws->frame.len = cur_len;
- ws->frame.bytesleft = (payload_len - payload_offset - cur_len);
- }
- /* WebSockets decoding client writer */
- struct ws_cw_ctx {
- struct Curl_cwriter super;
- struct bufq buf;
- };
- static CURLcode ws_cw_init(struct Curl_easy *data,
- struct Curl_cwriter *writer)
- {
- struct ws_cw_ctx *ctx = writer->ctx;
- (void)data;
- Curl_bufq_init2(&ctx->buf, WS_CHUNK_SIZE, 1, BUFQ_OPT_SOFT_LIMIT);
- return CURLE_OK;
- }
- static void ws_cw_close(struct Curl_easy *data, struct Curl_cwriter *writer)
- {
- struct ws_cw_ctx *ctx = writer->ctx;
- (void) data;
- Curl_bufq_free(&ctx->buf);
- }
- struct ws_cw_dec_ctx {
- struct Curl_easy *data;
- struct websocket *ws;
- struct Curl_cwriter *next_writer;
- int cw_type;
- };
- static ssize_t ws_cw_dec_next(const unsigned char *buf, size_t buflen,
- int frame_age, int frame_flags,
- curl_off_t payload_offset,
- curl_off_t payload_len,
- void *user_data,
- CURLcode *err)
- {
- struct ws_cw_dec_ctx *ctx = user_data;
- struct Curl_easy *data = ctx->data;
- struct websocket *ws = ctx->ws;
- curl_off_t remain = (payload_len - (payload_offset + buflen));
- (void)frame_age;
- if((frame_flags & CURLWS_PING) && !remain) {
- /* auto-respond to PINGs, only works for single-frame payloads atm */
- size_t bytes;
- infof(data, "WS: auto-respond to PING with a PONG");
- /* send back the exact same content as a PONG */
- *err = curl_ws_send(data, buf, buflen, &bytes, 0, CURLWS_PONG);
- if(*err)
- return -1;
- }
- else if(buflen || !remain) {
- /* forward the decoded frame to the next client writer. */
- update_meta(ws, frame_age, frame_flags, payload_offset,
- payload_len, buflen);
- *err = Curl_cwriter_write(data, ctx->next_writer, ctx->cw_type,
- (const char *)buf, buflen);
- if(*err)
- return -1;
- }
- *err = CURLE_OK;
- return (ssize_t)buflen;
- }
- static CURLcode ws_cw_write(struct Curl_easy *data,
- struct Curl_cwriter *writer, int type,
- const char *buf, size_t nbytes)
- {
- struct ws_cw_ctx *ctx = writer->ctx;
- struct websocket *ws;
- CURLcode result;
- if(!(type & CLIENTWRITE_BODY) || data->set.ws_raw_mode)
- return Curl_cwriter_write(data, writer->next, type, buf, nbytes);
- ws = data->conn->proto.ws;
- if(!ws) {
- failf(data, "WS: not a websocket transfer");
- return CURLE_FAILED_INIT;
- }
- if(nbytes) {
- ssize_t nwritten;
- nwritten = Curl_bufq_write(&ctx->buf, (const unsigned char *)buf,
- nbytes, &result);
- if(nwritten < 0) {
- infof(data, "WS: error adding data to buffer %d", result);
- return result;
- }
- }
- while(!Curl_bufq_is_empty(&ctx->buf)) {
- struct ws_cw_dec_ctx pass_ctx;
- pass_ctx.data = data;
- pass_ctx.ws = ws;
- pass_ctx.next_writer = writer->next;
- pass_ctx.cw_type = type;
- result = ws_dec_pass(&ws->dec, data, &ctx->buf,
- ws_cw_dec_next, &pass_ctx);
- if(result == CURLE_AGAIN) {
- /* insufficient amount of data, keep it for later.
- * we pretend to have written all since we have a copy */
- CURL_TRC_WRITE(data, "websocket, buffered incomplete frame head");
- return CURLE_OK;
- }
- else if(result) {
- infof(data, "WS: decode error %d", (int)result);
- return result;
- }
- }
- if((type & CLIENTWRITE_EOS) && !Curl_bufq_is_empty(&ctx->buf)) {
- infof(data, "WS: decode ending with %zd frame bytes remaining",
- Curl_bufq_len(&ctx->buf));
- return CURLE_RECV_ERROR;
- }
- return CURLE_OK;
- }
- /* WebSocket payload decoding client writer. */
- static const struct Curl_cwtype ws_cw_decode = {
- "ws-decode",
- NULL,
- ws_cw_init,
- ws_cw_write,
- ws_cw_close,
- sizeof(struct ws_cw_ctx)
- };
- static void ws_enc_info(struct ws_encoder *enc, struct Curl_easy *data,
- const char *msg)
- {
- infof(data, "WS-ENC: %s [%s%s%s payload=%" CURL_FORMAT_CURL_OFF_T
- "/%" CURL_FORMAT_CURL_OFF_T "]",
- msg, ws_frame_name_of_op(enc->firstbyte),
- (enc->firstbyte & WSBIT_OPCODE_MASK) == WSBIT_OPCODE_CONT ?
- " CONT" : "",
- (enc->firstbyte & WSBIT_FIN)? "" : " NON-FIN",
- enc->payload_len - enc->payload_remain, enc->payload_len);
- }
- static void ws_enc_reset(struct ws_encoder *enc)
- {
- enc->payload_remain = 0;
- enc->xori = 0;
- enc->contfragment = FALSE;
- }
- static void ws_enc_init(struct ws_encoder *enc)
- {
- ws_enc_reset(enc);
- }
- /***
- RFC 6455 Section 5.2
- 0 1 2 3
- 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
- +-+-+-+-+-------+-+-------------+-------------------------------+
- |F|R|R|R| opcode|M| Payload len | Extended payload length |
- |I|S|S|S| (4) |A| (7) | (16/64) |
- |N|V|V|V| |S| | (if payload len==126/127) |
- | |1|2|3| |K| | |
- +-+-+-+-+-------+-+-------------+ - - - - - - - - - - - - - - - +
- | Extended payload length continued, if payload len == 127 |
- + - - - - - - - - - - - - - - - +-------------------------------+
- | |Masking-key, if MASK set to 1 |
- +-------------------------------+-------------------------------+
- | Masking-key (continued) | Payload Data |
- +-------------------------------- - - - - - - - - - - - - - - - +
- : Payload Data continued ... :
- + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
- | Payload Data continued ... |
- +---------------------------------------------------------------+
- */
- static ssize_t ws_enc_write_head(struct Curl_easy *data,
- struct ws_encoder *enc,
- unsigned int flags,
- curl_off_t payload_len,
- struct bufq *out,
- CURLcode *err)
- {
- unsigned char firstbyte = 0;
- unsigned char opcode;
- unsigned char head[14];
- size_t hlen;
- ssize_t n;
- if(payload_len < 0) {
- failf(data, "WS: starting new frame with negative payload length %"
- CURL_FORMAT_CURL_OFF_T, payload_len);
- *err = CURLE_SEND_ERROR;
- return -1;
- }
- if(enc->payload_remain > 0) {
- /* trying to write a new frame before the previous one is finished */
- failf(data, "WS: starting new frame with %zd bytes from last one"
- "remaining to be sent", (ssize_t)enc->payload_remain);
- *err = CURLE_SEND_ERROR;
- return -1;
- }
- opcode = ws_frame_flags2op(flags);
- if(!opcode) {
- failf(data, "WS: provided flags not recognized '%x'", flags);
- *err = CURLE_SEND_ERROR;
- return -1;
- }
- if(!(flags & CURLWS_CONT)) {
- if(!enc->contfragment)
- /* not marked as continuing, this is the final fragment */
- firstbyte |= WSBIT_FIN | opcode;
- else
- /* marked as continuing, this is the final fragment; set CONT
- opcode and FIN bit */
- firstbyte |= WSBIT_FIN | WSBIT_OPCODE_CONT;
- enc->contfragment = FALSE;
- }
- else if(enc->contfragment) {
- /* the previous fragment was not a final one and this isn't either, keep a
- CONT opcode and no FIN bit */
- firstbyte |= WSBIT_OPCODE_CONT;
- }
- else {
- firstbyte = opcode;
- enc->contfragment = TRUE;
- }
- head[0] = enc->firstbyte = firstbyte;
- if(payload_len > 65535) {
- head[1] = 127 | WSBIT_MASK;
- head[2] = (unsigned char)((payload_len >> 56) & 0xff);
- head[3] = (unsigned char)((payload_len >> 48) & 0xff);
- head[4] = (unsigned char)((payload_len >> 40) & 0xff);
- head[5] = (unsigned char)((payload_len >> 32) & 0xff);
- head[6] = (unsigned char)((payload_len >> 24) & 0xff);
- head[7] = (unsigned char)((payload_len >> 16) & 0xff);
- head[8] = (unsigned char)((payload_len >> 8) & 0xff);
- head[9] = (unsigned char)(payload_len & 0xff);
- hlen = 10;
- }
- else if(payload_len >= 126) {
- head[1] = 126 | WSBIT_MASK;
- head[2] = (unsigned char)((payload_len >> 8) & 0xff);
- head[3] = (unsigned char)(payload_len & 0xff);
- hlen = 4;
- }
- else {
- head[1] = (unsigned char)payload_len | WSBIT_MASK;
- hlen = 2;
- }
- enc->payload_remain = enc->payload_len = payload_len;
- ws_enc_info(enc, data, "sending");
- /* add 4 bytes mask */
- memcpy(&head[hlen], &enc->mask, 4);
- hlen += 4;
- /* reset for payload to come */
- enc->xori = 0;
- n = Curl_bufq_write(out, head, hlen, err);
- if(n < 0)
- return -1;
- if((size_t)n != hlen) {
- /* We use a bufq with SOFT_LIMIT, writing should always succeed */
- DEBUGASSERT(0);
- *err = CURLE_SEND_ERROR;
- return -1;
- }
- return n;
- }
- static ssize_t ws_enc_write_payload(struct ws_encoder *enc,
- struct Curl_easy *data,
- const unsigned char *buf, size_t buflen,
- struct bufq *out, CURLcode *err)
- {
- ssize_t n;
- size_t i, len;
- if(Curl_bufq_is_full(out)) {
- *err = CURLE_AGAIN;
- return -1;
- }
- /* not the most performant way to do this */
- len = buflen;
- if((curl_off_t)len > enc->payload_remain)
- len = (size_t)enc->payload_remain;
- for(i = 0; i < len; ++i) {
- unsigned char c = buf[i] ^ enc->mask[enc->xori];
- n = Curl_bufq_write(out, &c, 1, err);
- if(n < 0) {
- if((*err != CURLE_AGAIN) || !i)
- return -1;
- break;
- }
- enc->xori++;
- enc->xori &= 3;
- }
- enc->payload_remain -= (curl_off_t)i;
- ws_enc_info(enc, data, "buffered");
- return (ssize_t)i;
- }
- struct wsfield {
- const char *name;
- const char *val;
- };
- CURLcode Curl_ws_request(struct Curl_easy *data, REQTYPE *req)
- {
- unsigned int i;
- CURLcode result = CURLE_OK;
- unsigned char rand[16];
- char *randstr;
- size_t randlen;
- char keyval[40];
- struct SingleRequest *k = &data->req;
- struct wsfield heads[]= {
- {
- /* The request MUST contain an |Upgrade| header field whose value
- MUST include the "websocket" keyword. */
- "Upgrade:", "websocket"
- },
- {
- /* The request MUST contain a |Connection| header field whose value
- MUST include the "Upgrade" token. */
- "Connection:", "Upgrade",
- },
- {
- /* The request MUST include a header field with the name
- |Sec-WebSocket-Version|. The value of this header field MUST be
- 13. */
- "Sec-WebSocket-Version:", "13",
- },
- {
- /* The request MUST include a header field with the name
- |Sec-WebSocket-Key|. The value of this header field MUST be a nonce
- consisting of a randomly selected 16-byte value that has been
- base64-encoded (see Section 4 of [RFC4648]). The nonce MUST be
- selected randomly for each connection. */
- "Sec-WebSocket-Key:", NULL,
- }
- };
- heads[3].val = &keyval[0];
- /* 16 bytes random */
- result = Curl_rand(data, (unsigned char *)rand, sizeof(rand));
- if(result)
- return result;
- result = Curl_base64_encode((char *)rand, sizeof(rand), &randstr, &randlen);
- if(result)
- return result;
- DEBUGASSERT(randlen < sizeof(keyval));
- if(randlen >= sizeof(keyval))
- return CURLE_FAILED_INIT;
- strcpy(keyval, randstr);
- free(randstr);
- for(i = 0; !result && (i < sizeof(heads)/sizeof(heads[0])); i++) {
- if(!Curl_checkheaders(data, STRCONST(heads[i].name))) {
- #ifdef USE_HYPER
- char field[128];
- msnprintf(field, sizeof(field), "%s %s", heads[i].name,
- heads[i].val);
- result = Curl_hyper_header(data, req, field);
- #else
- (void)data;
- result = Curl_dyn_addf(req, "%s %s\r\n", heads[i].name,
- heads[i].val);
- #endif
- }
- }
- k->upgr101 = UPGR101_WS;
- return result;
- }
- /*
- * 'nread' is number of bytes of websocket data already in the buffer at
- * 'mem'.
- */
- CURLcode Curl_ws_accept(struct Curl_easy *data,
- const char *mem, size_t nread)
- {
- struct SingleRequest *k = &data->req;
- struct websocket *ws;
- struct Curl_cwriter *ws_dec_writer;
- CURLcode result;
- DEBUGASSERT(data->conn);
- ws = data->conn->proto.ws;
- if(!ws) {
- size_t chunk_size = WS_CHUNK_SIZE;
- ws = calloc(1, sizeof(*ws));
- if(!ws)
- return CURLE_OUT_OF_MEMORY;
- data->conn->proto.ws = ws;
- #ifdef DEBUGBUILD
- {
- char *p = getenv("CURL_WS_CHUNK_SIZE");
- if(p) {
- long l = strtol(p, NULL, 10);
- if(l > 0 && l <= (1*1024*1024)) {
- chunk_size = (size_t)l;
- }
- }
- }
- #endif
- DEBUGF(infof(data, "WS, using chunk size %zu", chunk_size));
- Curl_bufq_init2(&ws->recvbuf, chunk_size, WS_CHUNK_COUNT,
- BUFQ_OPT_SOFT_LIMIT);
- Curl_bufq_init2(&ws->sendbuf, chunk_size, WS_CHUNK_COUNT,
- BUFQ_OPT_SOFT_LIMIT);
- ws_dec_init(&ws->dec);
- ws_enc_init(&ws->enc);
- }
- else {
- Curl_bufq_reset(&ws->recvbuf);
- ws_dec_reset(&ws->dec);
- ws_enc_reset(&ws->enc);
- }
- /* Verify the Sec-WebSocket-Accept response.
- The sent value is the base64 encoded version of a SHA-1 hash done on the
- |Sec-WebSocket-Key| header field concatenated with
- the string "258EAFA5-E914-47DA-95CA-C5AB0DC85B11".
- */
- /* If the response includes a |Sec-WebSocket-Extensions| header field and
- this header field indicates the use of an extension that was not present
- in the client's handshake (the server has indicated an extension not
- requested by the client), the client MUST Fail the WebSocket Connection.
- */
- /* If the response includes a |Sec-WebSocket-Protocol| header field
- and this header field indicates the use of a subprotocol that was
- not present in the client's handshake (the server has indicated a
- subprotocol not requested by the client), the client MUST Fail
- the WebSocket Connection. */
- /* 4 bytes random */
- result = Curl_rand(data, (unsigned char *)&ws->enc.mask,
- sizeof(ws->enc.mask));
- if(result)
- return result;
- infof(data, "Received 101, switch to WebSocket; mask %02x%02x%02x%02x",
- ws->enc.mask[0], ws->enc.mask[1], ws->enc.mask[2], ws->enc.mask[3]);
- /* Install our client writer that decodes WS frames payload */
- result = Curl_cwriter_create(&ws_dec_writer, data, &ws_cw_decode,
- CURL_CW_CONTENT_DECODE);
- if(result)
- return result;
- result = Curl_cwriter_add(data, ws_dec_writer);
- if(result) {
- Curl_cwriter_free(data, ws_dec_writer);
- return result;
- }
- if(data->set.connect_only) {
- ssize_t nwritten;
- /* In CONNECT_ONLY setup, the payloads from `mem` need to be received
- * when using `curl_ws_recv` later on after this transfer is already
- * marked as DONE. */
- nwritten = Curl_bufq_write(&ws->recvbuf, (const unsigned char *)mem,
- nread, &result);
- if(nwritten < 0)
- return result;
- infof(data, "%zu bytes websocket payload", nread);
- }
- else { /* !connect_only */
- /* And pass any additional data to the writers */
- if(nread) {
- result = Curl_client_write(data, CLIENTWRITE_BODY, (char *)mem, nread);
- }
- }
- k->upgr101 = UPGR101_RECEIVED;
- return result;
- }
- struct ws_collect {
- struct Curl_easy *data;
- unsigned char *buffer;
- size_t buflen;
- size_t bufidx;
- int frame_age;
- int frame_flags;
- curl_off_t payload_offset;
- curl_off_t payload_len;
- bool written;
- };
- static ssize_t ws_client_collect(const unsigned char *buf, size_t buflen,
- int frame_age, int frame_flags,
- curl_off_t payload_offset,
- curl_off_t payload_len,
- void *userp,
- CURLcode *err)
- {
- struct ws_collect *ctx = userp;
- size_t nwritten;
- curl_off_t remain = (payload_len - (payload_offset + buflen));
- if(!ctx->bufidx) {
- /* first write */
- ctx->frame_age = frame_age;
- ctx->frame_flags = frame_flags;
- ctx->payload_offset = payload_offset;
- ctx->payload_len = payload_len;
- }
- if((frame_flags & CURLWS_PING) && !remain) {
- /* auto-respond to PINGs, only works for single-frame payloads atm */
- size_t bytes;
- infof(ctx->data, "WS: auto-respond to PING with a PONG");
- /* send back the exact same content as a PONG */
- *err = curl_ws_send(ctx->data, buf, buflen, &bytes, 0, CURLWS_PONG);
- if(*err)
- return -1;
- nwritten = bytes;
- }
- else {
- ctx->written = TRUE;
- DEBUGASSERT(ctx->buflen >= ctx->bufidx);
- nwritten = CURLMIN(buflen, ctx->buflen - ctx->bufidx);
- if(!nwritten) {
- if(!buflen) { /* 0 length write, we accept that */
- *err = CURLE_OK;
- return 0;
- }
- *err = CURLE_AGAIN; /* no more space */
- return -1;
- }
- *err = CURLE_OK;
- memcpy(ctx->buffer + ctx->bufidx, buf, nwritten);
- ctx->bufidx += nwritten;
- }
- return nwritten;
- }
- static ssize_t nw_in_recv(void *reader_ctx,
- unsigned char *buf, size_t buflen,
- CURLcode *err)
- {
- struct Curl_easy *data = reader_ctx;
- size_t nread;
- *err = curl_easy_recv(data, buf, buflen, &nread);
- if(*err)
- return -1;
- return (ssize_t)nread;
- }
- CURL_EXTERN CURLcode curl_ws_recv(struct Curl_easy *data, void *buffer,
- size_t buflen, size_t *nread,
- const struct curl_ws_frame **metap)
- {
- struct connectdata *conn = data->conn;
- struct websocket *ws;
- bool done = FALSE; /* not filled passed buffer yet */
- struct ws_collect ctx;
- CURLcode result;
- if(!conn) {
- /* Unhappy hack with lifetimes of transfers and connection */
- if(!data->set.connect_only) {
- failf(data, "CONNECT_ONLY is required");
- return CURLE_UNSUPPORTED_PROTOCOL;
- }
- Curl_getconnectinfo(data, &conn);
- if(!conn) {
- failf(data, "connection not found");
- return CURLE_BAD_FUNCTION_ARGUMENT;
- }
- }
- ws = conn->proto.ws;
- if(!ws) {
- failf(data, "connection is not setup for websocket");
- return CURLE_BAD_FUNCTION_ARGUMENT;
- }
- *nread = 0;
- *metap = NULL;
- memset(&ctx, 0, sizeof(ctx));
- ctx.data = data;
- ctx.buffer = buffer;
- ctx.buflen = buflen;
- while(!done) {
- /* receive more when our buffer is empty */
- if(Curl_bufq_is_empty(&ws->recvbuf)) {
- ssize_t n = Curl_bufq_slurp(&ws->recvbuf, nw_in_recv, data, &result);
- if(n < 0) {
- return result;
- }
- else if(n == 0) {
- /* connection closed */
- infof(data, "connection expectedly closed?");
- return CURLE_GOT_NOTHING;
- }
- DEBUGF(infof(data, "curl_ws_recv, added %zu bytes from network",
- Curl_bufq_len(&ws->recvbuf)));
- }
- result = ws_dec_pass(&ws->dec, data, &ws->recvbuf,
- ws_client_collect, &ctx);
- if(result == CURLE_AGAIN) {
- if(!ctx.written) {
- ws_dec_info(&ws->dec, data, "need more input");
- continue; /* nothing written, try more input */
- }
- done = TRUE;
- break;
- }
- else if(result) {
- return result;
- }
- else if(ctx.written) {
- /* The decoded frame is passed back to our caller.
- * There are frames like PING were we auto-respond to and
- * that we do not return. For these `ctx.written` is not set. */
- done = TRUE;
- break;
- }
- }
- /* update frame information to be passed back */
- update_meta(ws, ctx.frame_age, ctx.frame_flags, ctx.payload_offset,
- ctx.payload_len, ctx.bufidx);
- *metap = &ws->frame;
- *nread = ws->frame.len;
- /* infof(data, "curl_ws_recv(len=%zu) -> %zu bytes (frame at %"
- CURL_FORMAT_CURL_OFF_T ", %" CURL_FORMAT_CURL_OFF_T " left)",
- buflen, *nread, ws->frame.offset, ws->frame.bytesleft); */
- return CURLE_OK;
- }
- static CURLcode ws_flush(struct Curl_easy *data, struct websocket *ws,
- bool complete)
- {
- if(!Curl_bufq_is_empty(&ws->sendbuf)) {
- CURLcode result;
- const unsigned char *out;
- size_t outlen, n;
- while(Curl_bufq_peek(&ws->sendbuf, &out, &outlen)) {
- if(data->set.connect_only)
- result = Curl_senddata(data, out, outlen, &n);
- else {
- result = Curl_xfer_send(data, out, outlen, &n);
- if(!result && !n && outlen)
- result = CURLE_AGAIN;
- }
- if(result) {
- if(result == CURLE_AGAIN) {
- if(!complete) {
- infof(data, "WS: flush EAGAIN, %zu bytes remain in buffer",
- Curl_bufq_len(&ws->sendbuf));
- return result;
- }
- /* TODO: the current design does not allow for buffered writes.
- * We need to flush the buffer now. There is no ws_flush() later */
- n = 0;
- continue;
- }
- else if(result) {
- failf(data, "WS: flush, write error %d", result);
- return result;
- }
- }
- else {
- infof(data, "WS: flushed %zu bytes", n);
- Curl_bufq_skip(&ws->sendbuf, n);
- }
- }
- }
- return CURLE_OK;
- }
- CURL_EXTERN CURLcode curl_ws_send(CURL *data, const void *buffer,
- size_t buflen, size_t *sent,
- curl_off_t fragsize,
- unsigned int flags)
- {
- struct websocket *ws;
- ssize_t n;
- size_t nwritten, space;
- CURLcode result;
- *sent = 0;
- if(!data->conn && data->set.connect_only) {
- result = Curl_connect_only_attach(data);
- if(result)
- return result;
- }
- if(!data->conn) {
- failf(data, "No associated connection");
- return CURLE_SEND_ERROR;
- }
- if(!data->conn->proto.ws) {
- failf(data, "Not a websocket transfer");
- return CURLE_SEND_ERROR;
- }
- ws = data->conn->proto.ws;
- if(data->set.ws_raw_mode) {
- if(fragsize || flags) {
- DEBUGF(infof(data, "ws_send: "
- "fragsize and flags cannot be non-zero in raw mode"));
- return CURLE_BAD_FUNCTION_ARGUMENT;
- }
- if(!buflen)
- /* nothing to do */
- return CURLE_OK;
- /* raw mode sends exactly what was requested, and this is from within
- the write callback */
- if(Curl_is_in_callback(data)) {
- result = Curl_xfer_send(data, buffer, buflen, &nwritten);
- }
- else
- result = Curl_senddata(data, buffer, buflen, &nwritten);
- infof(data, "WS: wanted to send %zu bytes, sent %zu bytes",
- buflen, nwritten);
- *sent = nwritten;
- return result;
- }
- /* Not RAW mode, buf we do the frame encoding */
- result = ws_flush(data, ws, FALSE);
- if(result)
- return result;
- /* TODO: the current design does not allow partial writes, afaict.
- * It is not clear how the application is supposed to react. */
- space = Curl_bufq_space(&ws->sendbuf);
- DEBUGF(infof(data, "curl_ws_send(len=%zu), sendbuf len=%zu space %zu",
- buflen, Curl_bufq_len(&ws->sendbuf), space));
- if(space < 14)
- return CURLE_AGAIN;
- if(flags & CURLWS_OFFSET) {
- if(fragsize) {
- /* a frame series 'fragsize' bytes big, this is the first */
- n = ws_enc_write_head(data, &ws->enc, flags, fragsize,
- &ws->sendbuf, &result);
- if(n < 0)
- return result;
- }
- else {
- if((curl_off_t)buflen > ws->enc.payload_remain) {
- infof(data, "WS: unaligned frame size (sending %zu instead of %"
- CURL_FORMAT_CURL_OFF_T ")",
- buflen, ws->enc.payload_remain);
- }
- }
- }
- else if(!ws->enc.payload_remain) {
- n = ws_enc_write_head(data, &ws->enc, flags, (curl_off_t)buflen,
- &ws->sendbuf, &result);
- if(n < 0)
- return result;
- }
- n = ws_enc_write_payload(&ws->enc, data,
- buffer, buflen, &ws->sendbuf, &result);
- if(n < 0)
- return result;
- *sent = (size_t)n;
- return ws_flush(data, ws, TRUE);
- }
- static void ws_free(struct connectdata *conn)
- {
- if(conn && conn->proto.ws) {
- Curl_bufq_free(&conn->proto.ws->recvbuf);
- Curl_bufq_free(&conn->proto.ws->sendbuf);
- Curl_safefree(conn->proto.ws);
- }
- }
- static CURLcode ws_setup_conn(struct Curl_easy *data,
- struct connectdata *conn)
- {
- /* websockets is 1.1 only (for now) */
- data->state.httpwant = CURL_HTTP_VERSION_1_1;
- return Curl_http_setup_conn(data, conn);
- }
- static CURLcode ws_disconnect(struct Curl_easy *data,
- struct connectdata *conn,
- bool dead_connection)
- {
- (void)data;
- (void)dead_connection;
- ws_free(conn);
- return CURLE_OK;
- }
- CURL_EXTERN const struct curl_ws_frame *curl_ws_meta(struct Curl_easy *data)
- {
- /* we only return something for websocket, called from within the callback
- when not using raw mode */
- if(GOOD_EASY_HANDLE(data) && Curl_is_in_callback(data) && data->conn &&
- data->conn->proto.ws && !data->set.ws_raw_mode)
- return &data->conn->proto.ws->frame;
- return NULL;
- }
- const struct Curl_handler Curl_handler_ws = {
- "WS", /* scheme */
- ws_setup_conn, /* setup_connection */
- Curl_http, /* do_it */
- Curl_http_done, /* done */
- ZERO_NULL, /* do_more */
- Curl_http_connect, /* connect_it */
- ZERO_NULL, /* connecting */
- ZERO_NULL, /* doing */
- ZERO_NULL, /* proto_getsock */
- Curl_http_getsock_do, /* doing_getsock */
- ZERO_NULL, /* domore_getsock */
- ZERO_NULL, /* perform_getsock */
- ws_disconnect, /* disconnect */
- Curl_http_write_resp, /* write_resp */
- Curl_http_write_resp_hd, /* write_resp_hd */
- ZERO_NULL, /* connection_check */
- ZERO_NULL, /* attach connection */
- PORT_HTTP, /* defport */
- CURLPROTO_WS, /* protocol */
- CURLPROTO_HTTP, /* family */
- PROTOPT_CREDSPERREQUEST | /* flags */
- PROTOPT_USERPWDCTRL
- };
- #ifdef USE_SSL
- const struct Curl_handler Curl_handler_wss = {
- "WSS", /* scheme */
- ws_setup_conn, /* setup_connection */
- Curl_http, /* do_it */
- Curl_http_done, /* done */
- ZERO_NULL, /* do_more */
- Curl_http_connect, /* connect_it */
- NULL, /* connecting */
- ZERO_NULL, /* doing */
- NULL, /* proto_getsock */
- Curl_http_getsock_do, /* doing_getsock */
- ZERO_NULL, /* domore_getsock */
- ZERO_NULL, /* perform_getsock */
- ws_disconnect, /* disconnect */
- Curl_http_write_resp, /* write_resp */
- Curl_http_write_resp_hd, /* write_resp_hd */
- ZERO_NULL, /* connection_check */
- ZERO_NULL, /* attach connection */
- PORT_HTTPS, /* defport */
- CURLPROTO_WSS, /* protocol */
- CURLPROTO_HTTP, /* family */
- PROTOPT_SSL | PROTOPT_CREDSPERREQUEST | /* flags */
- PROTOPT_USERPWDCTRL
- };
- #endif
- #else
- CURL_EXTERN CURLcode curl_ws_recv(CURL *curl, void *buffer, size_t buflen,
- size_t *nread,
- const struct curl_ws_frame **metap)
- {
- (void)curl;
- (void)buffer;
- (void)buflen;
- (void)nread;
- (void)metap;
- return CURLE_NOT_BUILT_IN;
- }
- CURL_EXTERN CURLcode curl_ws_send(CURL *curl, const void *buffer,
- size_t buflen, size_t *sent,
- curl_off_t fragsize,
- unsigned int flags)
- {
- (void)curl;
- (void)buffer;
- (void)buflen;
- (void)sent;
- (void)fragsize;
- (void)flags;
- return CURLE_NOT_BUILT_IN;
- }
- CURL_EXTERN const struct curl_ws_frame *curl_ws_meta(struct Curl_easy *data)
- {
- (void)data;
- return NULL;
- }
- #endif /* USE_WEBSOCKETS */
|