From: Kirill Shcherbatov <kshcherbatov@tarantool.org> To: tarantool-patches@freelists.org Cc: vdavydov.dev@gmail.com, Kirill Shcherbatov <kshcherbatov@tarantool.org> Subject: [PATCH v1 1/1] xlog: fix out of static memory on metadata load Date: Wed, 15 Aug 2018 15:32:02 +0300 [thread overview] Message-ID: <217089583da1d608c61d1c4a106fee07d43332f9.1534336273.git.kshcherbatov@tarantool.org> (raw) This problem triggered asan checks on start tarantool with existent xlog. We don't have to touch even static non-initialized memory. --- Branch: http://github.com/tarantool/tarantool/tree/kshch/vinyl-xlog-out-of-static-memory src/box/xlog.c | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/src/box/xlog.c b/src/box/xlog.c index 5ed11fc..797f153 100644 --- a/src/box/xlog.c +++ b/src/box/xlog.c @@ -261,8 +261,11 @@ xlog_meta_parse(struct xlog_meta *meta, const char **data, assert(val <= val_end); pos = eol + 1; - if (memcmp(key, INSTANCE_UUID_KEY, key_end - key) == 0 || - memcmp(key, INSTANCE_UUID_KEY_V12, key_end - key) == 0) { + size_t len = key_end - key; + if ((len == strlen(INSTANCE_UUID_KEY) && + memcmp(key, INSTANCE_UUID_KEY, len) == 0) || + (len == strlen(INSTANCE_UUID_KEY_V12) && + memcmp(key, INSTANCE_UUID_KEY_V12, key_end - key) == 0)) { /* * Instance: <uuid> */ @@ -277,19 +280,22 @@ xlog_meta_parse(struct xlog_meta *meta, const char **data, diag_set(XlogError, "can't parse instance UUID"); return -1; } - } else if (memcmp(key, VCLOCK_KEY, key_end - key) == 0){ + } else if (len == strlen(VCLOCK_KEY) && + memcmp(key, VCLOCK_KEY, len) == 0) { /* * VClock: <vclock> */ if (parse_vclock(val, val_end, &meta->vclock) != 0) return -1; - } else if (memcmp(key, PREV_VCLOCK_KEY, key_end - key) == 0) { + } else if (len == strlen(PREV_VCLOCK_KEY) && + memcmp(key, PREV_VCLOCK_KEY, len) == 0) { /* * PrevVClock: <vclock> */ if (parse_vclock(val, val_end, &meta->prev_vclock) != 0) return -1; - } else if (memcmp(key, VERSION_KEY, key_end - key) == 0) { + } else if (len == strlen(VERSION_KEY) && + memcmp(key, VERSION_KEY, len) == 0) { /* Ignore Version: for now */ } else { /* -- 2.7.4
next reply other threads:[~2018-08-15 12:32 UTC|newest] Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top 2018-08-15 12:32 Kirill Shcherbatov [this message] 2018-08-17 10:14 ` Vladimir Davydov 2018-08-17 12:39 ` [tarantool-patches] " Kirill Shcherbatov 2018-08-17 12:46 ` Vladimir Davydov 2018-08-17 14:46 ` Kirill Shcherbatov 2018-08-17 15:20 ` Vladimir Davydov
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=217089583da1d608c61d1c4a106fee07d43332f9.1534336273.git.kshcherbatov@tarantool.org \ --to=kshcherbatov@tarantool.org \ --cc=tarantool-patches@freelists.org \ --cc=vdavydov.dev@gmail.com \ --subject='Re: [PATCH v1 1/1] xlog: fix out of static memory on metadata load' \ /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