From: Vladislav Shpilevoy <v.shpilevoy@tarantool.org> To: tarantool-patches@freelists.org Cc: kostja@tarantool.org Subject: [tarantool-patches] [PATCH 1/6] swim: factor out MP_BIN decoding from swim_decode_uuid Date: Fri, 12 Apr 2019 01:22:25 +0300 [thread overview] Message-ID: <74e22eed2a53e8aa89a0bafafd5d70d2c19aa49e.1555021137.git.v.shpilevoy@tarantool.org> (raw) In-Reply-To: <cover.1555021137.git.v.shpilevoy@tarantool.org> In-Reply-To: <cover.1555021137.git.v.shpilevoy@tarantool.org> The new function is swim_decode_bin(), and is going to be used to safely decode payloads - arbitrary binary data disseminated alongside with all the other SWIM member attributes. Part of #3234 --- src/lib/swim/swim_proto.c | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/src/lib/swim/swim_proto.c b/src/lib/swim/swim_proto.c index fa02b61c4..700eff431 100644 --- a/src/lib/swim/swim_proto.c +++ b/src/lib/swim/swim_proto.c @@ -120,9 +120,9 @@ swim_decode_port(struct sockaddr_in *address, const char **pos, const char *end, return 0; } -int -swim_decode_uuid(struct tt_uuid *uuid, const char **pos, const char *end, - const char *prefix, const char *param_name) +static inline int +swim_decode_bin(const char **bin, uint32_t *size, const char **pos, + const char *end, const char *prefix, const char *param_name) { if (mp_typeof(**pos) != MP_BIN || *pos == end || mp_check_binl(*pos, end) > 0) { @@ -130,12 +130,27 @@ swim_decode_uuid(struct tt_uuid *uuid, const char **pos, const char *end, param_name); return -1; } - if (mp_decode_binl(pos) != UUID_LEN || *pos + UUID_LEN > end) { + *bin = mp_decode_bin(pos, size); + if (*pos > end) { + diag_set(SwimError, "%s %s is invalid", prefix, param_name); + return -1; + } + return 0; +} + +int +swim_decode_uuid(struct tt_uuid *uuid, const char **pos, const char *end, + const char *prefix, const char *param_name) +{ + uint32_t size; + const char *bin; + if (swim_decode_bin(&bin, &size, pos, end, prefix, param_name) != 0) + return -1; + if (size != UUID_LEN) { diag_set(SwimError, "%s %s is invalid", prefix, param_name); return -1; } - memcpy(uuid, *pos, UUID_LEN); - *pos += UUID_LEN; + memcpy(uuid, bin, UUID_LEN); return 0; } -- 2.17.2 (Apple Git-113)
next prev parent reply other threads:[~2019-04-11 22:22 UTC|newest] Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-04-11 22:22 [tarantool-patches] [PATCH 0/6] swim payload Vladislav Shpilevoy 2019-04-11 22:22 ` Vladislav Shpilevoy [this message] 2019-04-11 23:09 ` [tarantool-patches] Re: [PATCH 1/6] swim: factor out MP_BIN decoding from swim_decode_uuid Konstantin Osipov 2019-04-12 19:23 ` Vladislav Shpilevoy 2019-04-11 22:22 ` [tarantool-patches] [PATCH 2/6] swim: replace event_bin and member_bin with the passport Vladislav Shpilevoy 2019-04-11 23:10 ` [tarantool-patches] " Konstantin Osipov 2019-04-12 19:23 ` Vladislav Shpilevoy 2019-04-11 22:22 ` [tarantool-patches] [PATCH 3/6] swim: factor out 'update' part of swim_member_upsert() Vladislav Shpilevoy 2019-04-11 23:11 ` [tarantool-patches] " Konstantin Osipov 2019-04-12 19:23 ` Vladislav Shpilevoy 2019-04-11 22:22 ` [tarantool-patches] [PATCH 4/6] test: generalize SWIM fake descriptor filters Vladislav Shpilevoy 2019-04-11 23:11 ` [tarantool-patches] " Konstantin Osipov 2019-04-12 19:23 ` Vladislav Shpilevoy 2019-04-11 22:22 ` [tarantool-patches] [PATCH 5/6] test: introduce new SWIM packet filter by component names Vladislav Shpilevoy 2019-04-11 23:11 ` [tarantool-patches] " Konstantin Osipov 2019-04-12 19:23 ` Vladislav Shpilevoy 2019-04-11 22:22 ` [tarantool-patches] [PATCH 6/6] swim: introduce payload Vladislav Shpilevoy 2019-04-18 15:12 ` [tarantool-patches] " Konstantin Osipov 2019-04-18 17:43 ` Vladislav Shpilevoy 2019-04-18 18:03 ` Konstantin Osipov 2019-04-18 20:40 ` Vladislav Shpilevoy 2019-04-18 17:43 ` [tarantool-patches] [PATCH 5.5/6] swim: rename TTL to TTD Vladislav Shpilevoy 2019-04-18 17:48 ` [tarantool-patches] " Konstantin Osipov 2019-04-18 20:40 ` Vladislav Shpilevoy 2019-04-18 18:16 ` [tarantool-patches] [PATCH 7/6] swim: drop incarnation_inc parameter from update() routines Vladislav Shpilevoy 2019-04-18 18:20 ` [tarantool-patches] " Konstantin Osipov 2019-04-18 20:40 ` Vladislav Shpilevoy
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=74e22eed2a53e8aa89a0bafafd5d70d2c19aa49e.1555021137.git.v.shpilevoy@tarantool.org \ --to=v.shpilevoy@tarantool.org \ --cc=kostja@tarantool.org \ --cc=tarantool-patches@freelists.org \ --subject='Re: [tarantool-patches] [PATCH 1/6] swim: factor out MP_BIN decoding from swim_decode_uuid' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox