123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341 |
- /*
- * Wslay - The WebSocket Library
- *
- * Copyright (c) 2011, 2012 Tatsuhiro Tsujikawa
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sublicense, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- */
- #include "wslay_frame.h"
- #include <stddef.h>
- #include <string.h>
- #include <assert.h>
- #include "wslay_net.h"
- #define wslay_min(A, B) (((A) < (B)) ? (A) : (B))
- int wslay_frame_context_init(wslay_frame_context_ptr *ctx,
- const struct wslay_frame_callbacks *callbacks,
- void *user_data)
- {
- *ctx = (wslay_frame_context_ptr)malloc(sizeof(struct wslay_frame_context));
- if(*ctx == NULL) {
- return -1;
- }
- memset(*ctx, 0, sizeof(struct wslay_frame_context));
- (*ctx)->istate = RECV_HEADER1;
- (*ctx)->ireqread = 2;
- (*ctx)->ostate = PREP_HEADER;
- (*ctx)->user_data = user_data;
- (*ctx)->ibufmark = (*ctx)->ibuflimit = (*ctx)->ibuf;
- (*ctx)->callbacks = *callbacks;
- return 0;
- }
- void wslay_frame_context_free(wslay_frame_context_ptr ctx)
- {
- free(ctx);
- }
- ssize_t wslay_frame_send(wslay_frame_context_ptr ctx,
- struct wslay_frame_iocb *iocb)
- {
- if(iocb->data_length > iocb->payload_length) {
- return WSLAY_ERR_INVALID_ARGUMENT;
- }
- if(ctx->ostate == PREP_HEADER) {
- uint8_t *hdptr = ctx->oheader;
- memset(ctx->oheader, 0, sizeof(ctx->oheader));
- *hdptr |= (iocb->fin << 7) & 0x80u;
- *hdptr |= (iocb->rsv << 4) & 0x70u;
- *hdptr |= iocb->opcode & 0xfu;
- ++hdptr;
- *hdptr |= (iocb->mask << 7) & 0x80u;
- if(wslay_is_ctrl_frame(iocb->opcode) && iocb->payload_length > 125) {
- return WSLAY_ERR_INVALID_ARGUMENT;
- }
- if(iocb->payload_length < 126) {
- *hdptr |= iocb->payload_length;
- ++hdptr;
- } else if(iocb->payload_length < (1 << 16)) {
- uint16_t len = htons(iocb->payload_length);
- *hdptr |= 126;
- ++hdptr;
- memcpy(hdptr, &len, 2);
- hdptr += 2;
- } else if(iocb->payload_length < (1ull << 63)) {
- uint64_t len = hton64(iocb->payload_length);
- *hdptr |= 127;
- ++hdptr;
- memcpy(hdptr, &len, 8);
- hdptr += 8;
- } else {
- /* Too large payload length */
- return WSLAY_ERR_INVALID_ARGUMENT;
- }
- if(iocb->mask) {
- if(ctx->callbacks.genmask_callback(ctx->omaskkey, 4,
- ctx->user_data) != 0) {
- return WSLAY_ERR_INVALID_CALLBACK;
- } else {
- ctx->omask = 1;
- memcpy(hdptr, ctx->omaskkey, 4);
- hdptr += 4;
- }
- }
- ctx->ostate = SEND_HEADER;
- ctx->oheadermark = ctx->oheader;
- ctx->oheaderlimit = hdptr;
- ctx->opayloadlen = iocb->payload_length;
- ctx->opayloadoff = 0;
- }
- if(ctx->ostate == SEND_HEADER) {
- ptrdiff_t len = ctx->oheaderlimit-ctx->oheadermark;
- ssize_t r;
- int flags = 0;
- if(iocb->data_length > 0) {
- flags |= WSLAY_MSG_MORE;
- };
- r = ctx->callbacks.send_callback(ctx->oheadermark, len, flags,
- ctx->user_data);
- if(r > 0) {
- if(r > len) {
- return WSLAY_ERR_INVALID_CALLBACK;
- } else {
- ctx->oheadermark += r;
- if(ctx->oheadermark == ctx->oheaderlimit) {
- ctx->ostate = SEND_PAYLOAD;
- } else {
- return WSLAY_ERR_WANT_WRITE;
- }
- }
- } else {
- return WSLAY_ERR_WANT_WRITE;
- }
- }
- if(ctx->ostate == SEND_PAYLOAD) {
- size_t totallen = 0;
- if(iocb->data_length > 0) {
- if(ctx->omask) {
- uint8_t temp[4096];
- const uint8_t *datamark = iocb->data,
- *datalimit = iocb->data+iocb->data_length;
- while(datamark < datalimit) {
- size_t datalen = datalimit - datamark;
- const uint8_t *writelimit = datamark+
- wslay_min(sizeof(temp), datalen);
- size_t writelen = writelimit-datamark;
- ssize_t r;
- size_t i;
- for(i = 0; i < writelen; ++i) {
- temp[i] = datamark[i]^ctx->omaskkey[(ctx->opayloadoff+i)%4];
- }
- r = ctx->callbacks.send_callback(temp, writelen, 0, ctx->user_data);
- if(r > 0) {
- if((size_t)r > writelen) {
- return WSLAY_ERR_INVALID_CALLBACK;
- } else {
- datamark += r;
- ctx->opayloadoff += r;
- totallen += r;
- }
- } else {
- if(totallen > 0) {
- break;
- } else {
- return WSLAY_ERR_WANT_WRITE;
- }
- }
- }
- } else {
- ssize_t r;
- r = ctx->callbacks.send_callback(iocb->data, iocb->data_length, 0,
- ctx->user_data);
- if(r > 0) {
- if((size_t)r > iocb->data_length) {
- return WSLAY_ERR_INVALID_CALLBACK;
- } else {
- ctx->opayloadoff += r;
- totallen = r;
- }
- } else {
- return WSLAY_ERR_WANT_WRITE;
- }
- }
- }
- if(ctx->opayloadoff == ctx->opayloadlen) {
- ctx->ostate = PREP_HEADER;
- }
- return totallen;
- }
- return WSLAY_ERR_INVALID_ARGUMENT;
- }
- static void wslay_shift_ibuf(wslay_frame_context_ptr ctx)
- {
- ptrdiff_t len = ctx->ibuflimit-ctx->ibufmark;
- memmove(ctx->ibuf, ctx->ibufmark, len);
- ctx->ibuflimit = ctx->ibuf+len;
- ctx->ibufmark = ctx->ibuf;
- }
- static ssize_t wslay_recv(wslay_frame_context_ptr ctx)
- {
- ssize_t r;
- if(ctx->ibufmark != ctx->ibuf) {
- wslay_shift_ibuf(ctx);
- }
- r = ctx->callbacks.recv_callback
- (ctx->ibuflimit, ctx->ibuf+sizeof(ctx->ibuf)-ctx->ibuflimit,
- 0, ctx->user_data);
- if(r > 0) {
- ctx->ibuflimit += r;
- } else {
- r = WSLAY_ERR_WANT_READ;
- }
- return r;
- }
- #define WSLAY_AVAIL_IBUF(ctx) ((size_t)(ctx->ibuflimit - ctx->ibufmark))
- ssize_t wslay_frame_recv(wslay_frame_context_ptr ctx,
- struct wslay_frame_iocb *iocb)
- {
- ssize_t r;
- if(ctx->istate == RECV_HEADER1) {
- uint8_t fin, opcode, rsv, payloadlen;
- if(WSLAY_AVAIL_IBUF(ctx) < ctx->ireqread) {
- if((r = wslay_recv(ctx)) <= 0) {
- return r;
- }
- }
- if(WSLAY_AVAIL_IBUF(ctx) < ctx->ireqread) {
- return WSLAY_ERR_WANT_READ;
- }
- fin = (ctx->ibufmark[0] >> 7) & 1;
- rsv = (ctx->ibufmark[0] >> 4) & 7;
- opcode = ctx->ibufmark[0] & 0xfu;
- ctx->iom.opcode = opcode;
- ctx->iom.fin = fin;
- ctx->iom.rsv = rsv;
- ++ctx->ibufmark;
- ctx->imask = (ctx->ibufmark[0] >> 7) & 1;
- payloadlen = ctx->ibufmark[0] & 0x7fu;
- ++ctx->ibufmark;
- if(wslay_is_ctrl_frame(opcode) && (payloadlen > 125 || !fin)) {
- return WSLAY_ERR_PROTO;
- }
- if(payloadlen == 126) {
- ctx->istate = RECV_EXT_PAYLOADLEN;
- ctx->ireqread = 2;
- } else if(payloadlen == 127) {
- ctx->istate = RECV_EXT_PAYLOADLEN;
- ctx->ireqread = 8;
- } else {
- ctx->ipayloadlen = payloadlen;
- ctx->ipayloadoff = 0;
- if(ctx->imask) {
- ctx->istate = RECV_MASKKEY;
- ctx->ireqread = 4;
- } else {
- ctx->istate = RECV_PAYLOAD;
- }
- }
- }
- if(ctx->istate == RECV_EXT_PAYLOADLEN) {
- if(WSLAY_AVAIL_IBUF(ctx) < ctx->ireqread) {
- if((r = wslay_recv(ctx)) <= 0) {
- return r;
- }
- if(WSLAY_AVAIL_IBUF(ctx) < ctx->ireqread) {
- return WSLAY_ERR_WANT_READ;
- }
- }
- ctx->ipayloadlen = 0;
- ctx->ipayloadoff = 0;
- memcpy((uint8_t*)&ctx->ipayloadlen+(8-ctx->ireqread),
- ctx->ibufmark, ctx->ireqread);
- ctx->ipayloadlen = ntoh64(ctx->ipayloadlen);
- ctx->ibufmark += ctx->ireqread;
- if(ctx->ireqread == 8) {
- if(ctx->ipayloadlen < (1 << 16) ||
- ctx->ipayloadlen & (1ull << 63)) {
- return WSLAY_ERR_PROTO;
- }
- } else if(ctx->ipayloadlen < 126) {
- return WSLAY_ERR_PROTO;
- }
- if(ctx->imask) {
- ctx->istate = RECV_MASKKEY;
- ctx->ireqread = 4;
- } else {
- ctx->istate = RECV_PAYLOAD;
- }
- }
- if(ctx->istate == RECV_MASKKEY) {
- if(WSLAY_AVAIL_IBUF(ctx) < ctx->ireqread) {
- if((r = wslay_recv(ctx)) <= 0) {
- return r;
- }
- if(WSLAY_AVAIL_IBUF(ctx) < ctx->ireqread) {
- return WSLAY_ERR_WANT_READ;
- }
- }
- memcpy(ctx->imaskkey, ctx->ibufmark, 4);
- ctx->ibufmark += 4;
- ctx->istate = RECV_PAYLOAD;
- }
- if(ctx->istate == RECV_PAYLOAD) {
- uint8_t *readlimit, *readmark;
- uint64_t rempayloadlen = ctx->ipayloadlen-ctx->ipayloadoff;
- if(WSLAY_AVAIL_IBUF(ctx) == 0 && rempayloadlen > 0) {
- if((r = wslay_recv(ctx)) <= 0) {
- return r;
- }
- }
- readmark = ctx->ibufmark;
- readlimit = WSLAY_AVAIL_IBUF(ctx) < rempayloadlen ?
- ctx->ibuflimit : ctx->ibufmark+rempayloadlen;
- if(ctx->imask) {
- for(; ctx->ibufmark != readlimit;
- ++ctx->ibufmark, ++ctx->ipayloadoff) {
- ctx->ibufmark[0] ^= ctx->imaskkey[ctx->ipayloadoff % 4];
- }
- } else {
- ctx->ibufmark = readlimit;
- ctx->ipayloadoff += readlimit-readmark;
- }
- iocb->fin = ctx->iom.fin;
- iocb->rsv = ctx->iom.rsv;
- iocb->opcode = ctx->iom.opcode;
- iocb->payload_length = ctx->ipayloadlen;
- iocb->mask = ctx->imask;
- iocb->data = readmark;
- iocb->data_length = ctx->ibufmark-readmark;
- if(ctx->ipayloadlen == ctx->ipayloadoff) {
- ctx->istate = RECV_HEADER1;
- ctx->ireqread = 2;
- }
- return iocb->data_length;
- }
- return WSLAY_ERR_INVALID_ARGUMENT;
- }
|