mirror of
https://libwebsockets.org/repo/libwebsockets
synced 2024-11-24 01:39:33 +00:00
c9731c5f17
This is a huge patch that should be a global NOP. For unix type platforms it enables -Wconversion to issue warnings (-> error) for all automatic casts that seem less than ideal but are normally concealed by the toolchain. This is things like passing an int to a size_t argument. Once enabled, I went through all args on my default build (which build most things) and tried to make the removed default cast explicit. With that approach it neither change nor bloat the code, since it compiles to whatever it was doing before, just with the casts made explicit... in a few cases I changed some length args from int to size_t but largely left the causes alone. From now on, new code that is relying on less than ideal casting will complain and nudge me to improve it by warnings.
215 lines
4.8 KiB
C
215 lines
4.8 KiB
C
/*
|
|
* libwebsockets - small server side websockets and web server implementation
|
|
*
|
|
* Copyright (C) 2010 - 2019 Andy Green <andy@warmcat.com>
|
|
*
|
|
* 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 "private-lib-core.h"
|
|
|
|
/*
|
|
* RFC7233 examples
|
|
*
|
|
* o The first 500 bytes (byte offsets 0-499, inclusive):
|
|
*
|
|
* bytes=0-499
|
|
*
|
|
* o The second 500 bytes (byte offsets 500-999, inclusive):
|
|
*
|
|
* bytes=500-999
|
|
*
|
|
* o The final 500 bytes (byte offsets 9500-9999, inclusive):
|
|
*
|
|
* bytes=-500
|
|
*
|
|
* Or:
|
|
*
|
|
* bytes=9500-
|
|
*
|
|
* o The first and last bytes only (bytes 0 and 9999):
|
|
*
|
|
* bytes=0-0,-1
|
|
*
|
|
* o Other valid (but not canonical) specifications of the second 500
|
|
* bytes (byte offsets 500-999, inclusive):
|
|
*
|
|
* bytes=500-600,601-999
|
|
* bytes=500-700,601-999
|
|
*/
|
|
|
|
/*
|
|
* returns 1 if the range struct represents a usable range
|
|
* if no ranges header, you get one of these for the whole
|
|
* file. Otherwise you get one for each valid range in the
|
|
* header.
|
|
*
|
|
* returns 0 if no further valid range forthcoming; rp->state
|
|
* may be LWSRS_SYNTAX or LWSRS_COMPLETED
|
|
*/
|
|
|
|
int
|
|
lws_ranges_next(struct lws_range_parsing *rp)
|
|
{
|
|
static const char * const beq = "bytes=";
|
|
|
|
while (1) {
|
|
|
|
char c = rp->buf[rp->pos];
|
|
|
|
switch (rp->state) {
|
|
case LWSRS_SYNTAX:
|
|
case LWSRS_COMPLETED:
|
|
return 0;
|
|
|
|
case LWSRS_NO_ACTIVE_RANGE:
|
|
rp->state = LWSRS_COMPLETED;
|
|
return 0;
|
|
|
|
case LWSRS_BYTES_EQ: // looking for "bytes="
|
|
if (c != beq[rp->pos]) {
|
|
rp->state = LWSRS_SYNTAX;
|
|
return -1;
|
|
}
|
|
if (rp->pos == 5)
|
|
rp->state = LWSRS_FIRST;
|
|
break;
|
|
|
|
case LWSRS_FIRST:
|
|
rp->start = 0;
|
|
rp->end = 0;
|
|
rp->start_valid = 0;
|
|
rp->end_valid = 0;
|
|
|
|
rp->state = LWSRS_STARTING;
|
|
|
|
// fallthru
|
|
|
|
case LWSRS_STARTING:
|
|
if (c == '-') {
|
|
rp->state = LWSRS_ENDING;
|
|
break;
|
|
}
|
|
|
|
if (!(c >= '0' && c <= '9')) {
|
|
rp->state = LWSRS_SYNTAX;
|
|
return 0;
|
|
}
|
|
rp->start = (unsigned long long)(((unsigned long long)rp->start * 10) + (unsigned long long)(c - '0'));
|
|
rp->start_valid = 1;
|
|
break;
|
|
|
|
case LWSRS_ENDING:
|
|
if (c == ',' || c == '\0') {
|
|
rp->state = LWSRS_FIRST;
|
|
if (c == ',')
|
|
rp->pos++;
|
|
|
|
/*
|
|
* By the end of this, start and end are
|
|
* always valid if the range still is
|
|
*/
|
|
|
|
if (!rp->start_valid) { /* eg, -500 */
|
|
if (rp->end > rp->extent)
|
|
rp->end = rp->extent;
|
|
|
|
rp->start = rp->extent - rp->end;
|
|
rp->end = rp->extent - 1;
|
|
} else
|
|
if (!rp->end_valid)
|
|
rp->end = rp->extent - 1;
|
|
|
|
rp->did_try = 1;
|
|
|
|
/* end must be >= start or ignore it */
|
|
if (rp->end < rp->start) {
|
|
if (c == ',')
|
|
break;
|
|
rp->state = LWSRS_COMPLETED;
|
|
return 0;
|
|
}
|
|
|
|
return 1; /* issue range */
|
|
}
|
|
|
|
if (!(c >= '0' && c <= '9')) {
|
|
rp->state = LWSRS_SYNTAX;
|
|
return 0;
|
|
}
|
|
rp->end = (unsigned long long)(((unsigned long long)rp->end * 10) + (unsigned long long)(c - '0'));
|
|
rp->end_valid = 1;
|
|
break;
|
|
}
|
|
|
|
rp->pos++;
|
|
}
|
|
}
|
|
|
|
void
|
|
lws_ranges_reset(struct lws_range_parsing *rp)
|
|
{
|
|
rp->pos = 0;
|
|
rp->ctr = 0;
|
|
rp->start = 0;
|
|
rp->end = 0;
|
|
rp->start_valid = 0;
|
|
rp->end_valid = 0;
|
|
rp->state = LWSRS_BYTES_EQ;
|
|
}
|
|
|
|
/*
|
|
* returns count of valid ranges
|
|
*/
|
|
int
|
|
lws_ranges_init(struct lws *wsi, struct lws_range_parsing *rp,
|
|
unsigned long long extent)
|
|
{
|
|
rp->agg = 0;
|
|
rp->send_ctr = 0;
|
|
rp->inside = 0;
|
|
rp->count_ranges = 0;
|
|
rp->did_try = 0;
|
|
lws_ranges_reset(rp);
|
|
rp->state = LWSRS_COMPLETED;
|
|
|
|
rp->extent = extent;
|
|
|
|
if (lws_hdr_copy(wsi, (char *)rp->buf, sizeof(rp->buf),
|
|
WSI_TOKEN_HTTP_RANGE) <= 0)
|
|
return 0;
|
|
|
|
rp->state = LWSRS_BYTES_EQ;
|
|
|
|
while (lws_ranges_next(rp)) {
|
|
rp->count_ranges++;
|
|
rp->agg += rp->end - rp->start + 1;
|
|
}
|
|
|
|
lwsl_debug("%s: count %d\n", __func__, rp->count_ranges);
|
|
lws_ranges_reset(rp);
|
|
|
|
if (rp->did_try && !rp->count_ranges)
|
|
return -1; /* "not satisfiable */
|
|
|
|
lws_ranges_next(rp);
|
|
|
|
return rp->count_ranges;
|
|
}
|