summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/app-framework/app-native-shared/restful_utils.c
blob: 03e86a6991b03d421d8e419bd8cc1ed96ef4a8a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
/*
 * Copyright (C) 2019 Intel Corporation.  All rights reserved.
 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 */

#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <stdio.h>

#include "bi-inc/shared_utils.h"

/* Serialization of request and response message
 *
 * Choices:
 * We considered a few options:
 * 1. coap
 * 2. flatbuffer
 * 3. cbor
 * 4. attr-containers of our own
 * 5. customized serialization for request/response
 *
 * Now we choose the #5 mainly because we need to quickly get the URL for
 * dispatching and sometimes we want to change the URL in the original packet.
 * the request format: fixed part: version: (1 byte), code (1 byte), fmt(2
 * byte), mid (4 bytes), sender_id(4 bytes),  url_len(2 bytes),
 * payload_len(4bytes) dynamic part: url (bytes in url_len), payload
 *
 * response format:
 * fixed part: (1 byte), code (1 byte), fmt(2 byte), mid (4 bytes), sender_id(4
 * bytes),   payload_len(4bytes) dynamic part: payload
 */
#define REQUES_PACKET_VER 1
#define REQUEST_PACKET_FIX_PART_LEN 18
#define REQUEST_PACKET_URL_OFFSET REQUEST_PACKET_FIX_PART_LEN
#define REQUEST_PACKET_URL_LEN \
    *((uint16 *)((char *)buffer + 12)) /* to ensure little endian */
#define REQUEST_PACKET_PAYLOAD_LEN \
    *((uint32 *)((char *)buffer + 14)) /* to ensure little endian */
#define REQUEST_PACKET_URL(buffer) ((char *)buffer + REQUEST_PACKET_URL_OFFSET)
#define REQUEST_PACKET_PAYLOAD(buffer)          \
    ((char *)buffer + REQUEST_PACKET_URL_OFFSET \
     + REQUEST_PACKET_URL_LEN(buffer))

#define RESPONSE_PACKET_FIX_PART_LEN 16

char *
pack_request(request_t *request, int *size)
{
    int url_len = strlen(request->url) + 1;
    int len = REQUEST_PACKET_FIX_PART_LEN + url_len + request->payload_len;
    uint16 u16;
    uint32 u32;
    char *packet;

    if ((packet = (char *)WA_MALLOC(len)) == NULL)
        return NULL;

    /* TODO: ensure little endian for words and dwords */
    *packet = REQUES_PACKET_VER;
    *((uint8 *)(packet + 1)) = request->action;

    u16 = htons(request->fmt);
    memcpy(packet + 2, &u16, 2);

    u32 = htonl(request->mid);
    memcpy(packet + 4, &u32, 4);

    u32 = htonl(request->sender);
    memcpy(packet + 8, &u32, 4);

    u16 = htons(url_len);
    memcpy(packet + 12, &u16, 2);

    u32 = htonl(request->payload_len);
    memcpy(packet + 14, &u32, 4);

    strcpy(packet + REQUEST_PACKET_URL_OFFSET, request->url);
    memcpy(packet + REQUEST_PACKET_URL_OFFSET + url_len, request->payload,
           request->payload_len);

    *size = len;
    return packet;
}

void
free_req_resp_packet(char *packet)
{
    WA_FREE(packet);
}

request_t *
unpack_request(char *packet, int size, request_t *request)
{
    uint16 url_len, u16;
    uint32 payload_len, u32;

    if (*packet != REQUES_PACKET_VER) {
        return NULL;
    }
    if (size < REQUEST_PACKET_FIX_PART_LEN) {
        return NULL;
    }

    memcpy(&u16, packet + 12, 2);
    url_len = ntohs(u16);

    memcpy(&u32, packet + 14, 4);
    payload_len = ntohl(u32);

    if (size != (REQUEST_PACKET_FIX_PART_LEN + url_len + payload_len)) {
        return NULL;
    }

    if (*(packet + REQUEST_PACKET_FIX_PART_LEN + url_len - 1) != 0) {
        return NULL;
    }

    request->action = *((uint8 *)(packet + 1));

    memcpy(&u16, packet + 2, 2);
    request->fmt = ntohs(u16);

    memcpy(&u32, packet + 4, 4);
    request->mid = ntohl(u32);

    memcpy(&u32, packet + 8, 4);
    request->sender = ntohl(u32);

    request->payload_len = payload_len;
    request->url = REQUEST_PACKET_URL(packet);

    if (payload_len > 0)
        request->payload = packet + REQUEST_PACKET_URL_OFFSET + url_len;
    else
        request->payload = NULL;

    return request;
}

char *
pack_response(response_t *response, int *size)
{
    int len = RESPONSE_PACKET_FIX_PART_LEN + response->payload_len;
    uint16 u16;
    uint32 u32;
    char *packet;

    if ((packet = (char *)WA_MALLOC(len)) == NULL)
        return NULL;

    /* TODO: ensure little endian for words and dwords */
    *packet = REQUES_PACKET_VER;
    *((uint8 *)(packet + 1)) = response->status;

    u16 = htons(response->fmt);
    memcpy(packet + 2, &u16, 2);

    u32 = htonl(response->mid);
    memcpy(packet + 4, &u32, 4);

    u32 = htonl(response->reciever);
    memcpy(packet + 8, &u32, 4);

    u32 = htonl(response->payload_len);
    memcpy(packet + 12, &u32, 4);

    memcpy(packet + RESPONSE_PACKET_FIX_PART_LEN, response->payload,
           response->payload_len);

    *size = len;
    return packet;
}

response_t *
unpack_response(char *packet, int size, response_t *response)
{
    uint16 u16;
    uint32 payload_len, u32;

    if (*packet != REQUES_PACKET_VER)
        return NULL;

    if (size < RESPONSE_PACKET_FIX_PART_LEN)
        return NULL;

    memcpy(&u32, packet + 12, 4);
    payload_len = ntohl(u32);
    if (size != (RESPONSE_PACKET_FIX_PART_LEN + payload_len))
        return NULL;

    response->status = *((uint8 *)(packet + 1));

    memcpy(&u16, packet + 2, 2);
    response->fmt = ntohs(u16);

    memcpy(&u32, packet + 4, 4);
    response->mid = ntohl(u32);

    memcpy(&u32, packet + 8, 4);
    response->reciever = ntohl(u32);

    response->payload_len = payload_len;
    if (payload_len > 0)
        response->payload = packet + RESPONSE_PACKET_FIX_PART_LEN;
    else
        response->payload = NULL;

    return response;
}

request_t *
clone_request(request_t *request)
{
    /* deep clone */
    request_t *req = (request_t *)WA_MALLOC(sizeof(request_t));
    if (req == NULL)
        return NULL;

    memset(req, 0, sizeof(*req));
    req->action = request->action;
    req->fmt = request->fmt;
    req->url = wa_strdup(request->url);
    req->sender = request->sender;
    req->mid = request->mid;

    if (req->url == NULL)
        goto fail;

    req->payload_len = request->payload_len;

    if (request->payload_len) {
        req->payload = (char *)WA_MALLOC(request->payload_len);
        if (!req->payload)
            goto fail;
        memcpy(req->payload, request->payload, request->payload_len);
    }
    else {
        /* when payload_len is 0, the payload may be used for
           carrying some handle or integer */
        req->payload = request->payload;
    }

    return req;

fail:
    request_cleaner(req);
    return NULL;
}

void
request_cleaner(request_t *request)
{
    if (request->url != NULL)
        WA_FREE(request->url);
    if (request->payload != NULL && request->payload_len > 0)
        WA_FREE(request->payload);

    WA_FREE(request);
}

void
response_cleaner(response_t *response)
{
    if (response->payload != NULL && response->payload_len > 0)
        WA_FREE(response->payload);

    WA_FREE(response);
}

response_t *
clone_response(response_t *response)
{
    response_t *clone = (response_t *)WA_MALLOC(sizeof(response_t));

    if (clone == NULL)
        return NULL;

    memset(clone, 0, sizeof(*clone));
    clone->fmt = response->fmt;
    clone->mid = response->mid;
    clone->status = response->status;
    clone->reciever = response->reciever;
    clone->payload_len = response->payload_len;
    if (clone->payload_len) {
        clone->payload = (char *)WA_MALLOC(response->payload_len);
        if (!clone->payload)
            goto fail;
        memcpy(clone->payload, response->payload, response->payload_len);
    }
    else {
        /* when payload_len is 0, the payload may be used for
           carrying some handle or integer */
        clone->payload = response->payload;
    }
    return clone;

fail:
    response_cleaner(clone);
    return NULL;
}

response_t *
set_response(response_t *response, int status, int fmt, const char *payload,
             int payload_len)
{
    response->payload = (void *)payload;
    response->payload_len = payload_len;
    response->status = status;
    response->fmt = fmt;
    return response;
}

response_t *
make_response_for_request(request_t *request, response_t *response)
{
    response->mid = request->mid;
    response->reciever = request->sender;

    return response;
}

static unsigned int mid = 0;

request_t *
init_request(request_t *request, char *url, int action, int fmt, void *payload,
             int payload_len)
{
    request->url = url;
    request->action = action;
    request->fmt = fmt;
    request->payload = payload;
    request->payload_len = payload_len;
    request->mid = ++mid;

    return request;
}

/*
 check if the "url" is starting with "leading_str"
 return: 0 - not match; >0 - the offset of matched url, include any "/" at the
 end notes:
 1. it ensures the leading_str "/abc" can pass "/abc/cde" and "/abc/, but fail
 "/ab" and "/abcd". leading_str "/abc/" can pass "/abc"
 2. it omit the '/' at the first char
 3. it ensure the leading_str "/abc" can pass "/abc?cde
 */

int
check_url_start(const char *url, int url_len, const char *leading_str)
{
    int offset = 0;
    if (*leading_str == '/')
        leading_str++;
    if (url_len > 0 && *url == '/') {
        url_len--;
        url++;
        offset++;
    }

    int len = strlen(leading_str);
    if (len == 0)
        return 0;

    /* ensure leading_str not end with "/" */
    if (leading_str[len - 1] == '/') {
        len--;
        if (len == 0)
            return 0;
    }

    /* equal length */
    if (url_len == len) {
        if (memcmp(url, leading_str, url_len) == 0) {
            return (offset + len);
        }
        else {
            return 0;
        }
    }

    if (url_len < len)
        return 0;
    else if (memcmp(url, leading_str, len) != 0)
        return 0;
    else if (url[len] != '/' && url[len] != '?')
        return 0;
    else
        return (offset + len + 1);
}

// * @pattern:
// * sample 1: /abcd, match /abcd only
// * sample 2: /abcd/ match match "/abcd" and "/abcd/*"
// * sample 3: /abcd*, match any url started with "/abcd"
// * sample 4: /abcd/*, exclude "/abcd"

bool
match_url(char *pattern, char *matched)
{
    if (*pattern == '/')
        pattern++;
    if (*matched == '/')
        matched++;

    int matched_len = strlen(matched);
    if (matched_len == 0)
        return false;

    if (matched[matched_len - 1] == '/') {
        matched_len--;
        if (matched_len == 0)
            return false;
    }

    int len = strlen(pattern);
    if (len == 0)
        return false;

    if (pattern[len - 1] == '/') {
        len--;
        if (strncmp(pattern, matched, len) != 0)
            return false;

        if (len == matched_len)
            return true;

        if (matched_len > len && matched[len] == '/')
            return true;

        return false;
    }
    else if (pattern[len - 1] == '*') {
        if (pattern[len - 2] == '/') {
            if (strncmp(pattern, matched, len - 1) == 0)
                return true;
            else
                return false;
        }
        else {
            return (strncmp(pattern, matched, len - 1) == 0);
        }
    }
    else {
        return (strcmp(pattern, matched) == 0);
    }
}

/*
 * get the value of the key from following format buffer:
 *  key1=value1;key2=value2;key3=value3
 */
char *
find_key_value(char *buffer, int buffer_len, char *key, char *value,
               int value_len, char delimiter)
{
    char *p = buffer;
    int remaining = buffer_len;
    int key_len = strlen(key);

    while (*p != 0 && remaining > 0) {
        while (*p == ' ' || *p == delimiter) {
            p++;
            remaining--;
        }

        if (remaining <= key_len)
            return NULL;

        /* find the key */
        if (0 == strncmp(p, key, key_len) && p[key_len] == '=') {
            p += (key_len + 1);
            remaining -= (key_len + 1);
            char *v = value;
            memset(value, 0, value_len);
            value_len--; /* ensure last char is 0 */
            while (*p != delimiter && remaining > 0 && value_len > 0) {
                *v++ = *p++;
                remaining--;
                value_len--;
            }
            return value;
        }

        /* goto next key */
        while (*p != delimiter && remaining > 0) {
            p++;
            remaining--;
        }
    }

    return NULL;
}