From: Vladislav Shpilevoy <v.shpilevoy@tarantool.org> To: tarantool-patches@freelists.org Cc: kostja@tarantool.org Subject: [tarantool-patches] [PATCH 2/5] swim: introduce member reference API Date: Wed, 1 May 2019 01:31:24 +0300 [thread overview] Message-ID: <93b1da3130537b7182f0326e9ede8202a1319906.1556663421.git.v.shpilevoy@tarantool.org> (raw) In-Reply-To: <cover.1556663421.git.v.shpilevoy@tarantool.org> Struct swim_member pointer is used to learn member's status, payload, incarnation etc. To obtain a pointer, a one should either lookup the member by UUID, or obtain from iterators API. The former is long, the latter is useless when a point lookup is needed. On the other hand, it was not safe to keep struct swim_member pointer for a long time, because it could be deleted at any moment. This patch allows to reference a member and be sure that it will not be deleted until dereferenced explicitly. The member still can be dropped from the member table, but its memory will be valid. To detect that a member is dropped, its status is set to MEMBER_ORPHAN. Part of #3234 --- src/lib/swim/swim.c | 33 ++++++++++++++++++++++++++++----- src/lib/swim/swim.h | 20 +++++++++++++++++--- src/lib/swim/swim_constants.h | 5 +++++ src/lib/swim/swim_proto.c | 2 +- test/unit/swim.c | 13 ++++++++++++- test/unit/swim.result | 3 ++- 6 files changed, 65 insertions(+), 11 deletions(-) diff --git a/src/lib/swim/swim.c b/src/lib/swim/swim.c index dfee16493..941214289 100644 --- a/src/lib/swim/swim.c +++ b/src/lib/swim/swim.c @@ -243,6 +243,12 @@ struct swim_member { * Position in a queue of members in the current round. */ struct rlist in_round_queue; + /** + * Reference counter. Used by public API to prevent the + * member deletion after it is obtained by UUID or from an + * iterator. + */ + int refs; /** * * Dissemination component @@ -638,11 +644,28 @@ swim_ping_task_complete(struct swim_task *task, swim_wait_ack(swim, m, false); } +void +swim_member_ref(struct swim_member *member) +{ + ++member->refs; +} + +void +swim_member_unref(struct swim_member *member) +{ + assert(member->refs > 0); + if (--member->refs == 0) { + free(member->payload); + free(member); + } +} + /** Free member's resources. */ static inline void swim_member_delete(struct swim_member *member) { assert(rlist_empty(&member->in_round_queue)); + member->status = MEMBER_ORPHAN; /* Failure detection component. */ assert(heap_node_is_stray(&member->in_wait_ack_heap)); @@ -651,9 +674,8 @@ swim_member_delete(struct swim_member *member) /* Dissemination component. */ assert(rlist_empty(&member->in_dissemination_queue)); - free(member->payload); - free(member); + swim_member_unref(member); } /** Create a new member. It is not registered anywhere here. */ @@ -667,6 +689,7 @@ swim_member_new(const struct sockaddr_in *addr, const struct tt_uuid *uuid, diag_set(OutOfMemory, sizeof(*member), "calloc", "member"); return NULL; } + member->refs = 1; member->status = status; member->addr = *addr; member->uuid = *uuid; @@ -1969,14 +1992,14 @@ swim_quit(struct swim *swim) swim_quit_step_complete(task, &swim->scheduler, 0); } -const struct swim_member * +struct swim_member * swim_self(struct swim *swim) { assert(swim_is_configured(swim)); return swim->self; } -const struct swim_member * +struct swim_member * swim_member_by_uuid(struct swim *swim, const struct tt_uuid *uuid) { assert(swim_is_configured(swim)); @@ -1997,7 +2020,7 @@ swim_iterator_open(struct swim *swim) return (struct swim_iterator *) swim; } -const struct swim_member * +struct swim_member * swim_iterator_next(struct swim_iterator *iterator) { struct swim *swim = (struct swim *) iterator; diff --git a/src/lib/swim/swim.h b/src/lib/swim/swim.h index 653e45be7..2584081fb 100644 --- a/src/lib/swim/swim.h +++ b/src/lib/swim/swim.h @@ -186,7 +186,7 @@ void swim_quit(struct swim *swim); /** Get a SWIM member, describing this instance. */ -const struct swim_member * +struct swim_member * swim_self(struct swim *swim); /** @@ -194,7 +194,7 @@ swim_self(struct swim *swim); * @retval NULL Not found. * @retval not NULL A member. */ -const struct swim_member * +struct swim_member * swim_member_by_uuid(struct swim *swim, const struct tt_uuid *uuid); /** Member's current status. */ @@ -216,7 +216,7 @@ swim_iterator_open(struct swim *swim); * @retval NULL EOF. * @retval not NULL A valid member. */ -const struct swim_member * +struct swim_member * swim_iterator_next(struct swim_iterator *iterator); /** Close an iterator. */ @@ -239,6 +239,20 @@ swim_member_incarnation(const struct swim_member *member); const char * swim_member_payload(const struct swim_member *member, uint16_t *size); +/** + * Reference a member. The member memory will be valid until unref + * is called. + */ +void +swim_member_ref(struct swim_member *member); + +/** + * Dereference a member. After that it may be deleted and can't be + * accessed anymore. + */ +void +swim_member_unref(struct swim_member *member); + #if defined(__cplusplus) } #endif diff --git a/src/lib/swim/swim_constants.h b/src/lib/swim/swim_constants.h index 4f8404ce3..fb44abe2a 100644 --- a/src/lib/swim/swim_constants.h +++ b/src/lib/swim/swim_constants.h @@ -50,6 +50,11 @@ enum swim_member_status { MEMBER_DEAD, /** The member has voluntary left the cluster. */ MEMBER_LEFT, + /** + * The member was dropped from the cluster: either by the + * failure detection, or explicitly. + */ + MEMBER_ORPHAN, swim_member_status_MAX, }; diff --git a/src/lib/swim/swim_proto.c b/src/lib/swim/swim_proto.c index 938631e49..50cd84f94 100644 --- a/src/lib/swim/swim_proto.c +++ b/src/lib/swim/swim_proto.c @@ -226,7 +226,7 @@ swim_decode_member_key(enum swim_member_key key, const char **pos, if (swim_decode_uint(pos, end, &tmp, prefix, "member status") != 0) return -1; - if (tmp >= swim_member_status_MAX) { + if (tmp >= swim_member_status_MAX || tmp == MEMBER_ORPHAN) { diag_set(SwimError, "%s unknown member status", prefix); return -1; } diff --git a/test/unit/swim.c b/test/unit/swim.c index 5aaae089d..65d428ed8 100644 --- a/test/unit/swim.c +++ b/test/unit/swim.c @@ -176,7 +176,7 @@ swim_test_cfg(void) static void swim_test_add_remove(void) { - swim_start_test(13); + swim_start_test(14); struct swim_cluster *cluster = swim_cluster_new(2); swim_cluster_add_link(cluster, 0, 1); @@ -232,6 +232,17 @@ swim_test_add_remove(void) swim_cluster_unblock_io(cluster, 0); is(swim_cluster_wait_fullmesh(cluster, 1), 0, "back in fullmesh after a member removal in the middle of a step"); + /* + * Check that member removal does not delete a member, + * only unrefs. + */ + const struct tt_uuid *s1_uuid = swim_member_uuid(swim_self(s1)); + struct swim_member *s1_view = swim_member_by_uuid(s2, s1_uuid); + swim_member_ref(s1_view); + swim_remove_member(s2, s1_uuid); + is(swim_member_status(s1_view), MEMBER_ORPHAN, "if a referenced "\ + "member is dropped, its status becomes 'orphan'"); + swim_member_unref(s1_view); swim_cluster_delete(cluster); diff --git a/test/unit/swim.result b/test/unit/swim.result index 6e439541a..d24042164 100644 --- a/test/unit/swim.result +++ b/test/unit/swim.result @@ -47,7 +47,7 @@ ok 3 - subtests ok 4 - subtests *** swim_test_cfg: done *** *** swim_test_add_remove *** - 1..13 + 1..14 ok 1 - can not add an existing member ok 2 - diag says 'already exists' ok 3 - can not add a invalid uri @@ -61,6 +61,7 @@ ok 4 - subtests ok 11 - after removal the cluster is not in fullmesh ok 12 - but it is back in 1 step ok 13 - back in fullmesh after a member removal in the middle of a step + ok 14 - if a referenced member is dropped, its status becomes 'orphan' ok 5 - subtests *** swim_test_add_remove: done *** *** swim_test_basic_failure_detection *** -- 2.20.1 (Apple Git-117)
next prev parent reply other threads:[~2019-04-30 22:31 UTC|newest] Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-04-30 22:31 [tarantool-patches] [PATCH 0/5] swim lua preparation Vladislav Shpilevoy 2019-04-30 22:31 ` [tarantool-patches] [PATCH 1/5] swim: do not use ev_timer_start Vladislav Shpilevoy 2019-05-01 5:09 ` [tarantool-patches] " Konstantin Osipov 2019-04-30 22:31 ` Vladislav Shpilevoy [this message] 2019-05-01 5:15 ` [tarantool-patches] Re: [PATCH 2/5] swim: introduce member reference API Konstantin Osipov 2019-05-02 15:10 ` Vladislav Shpilevoy 2019-05-02 15:46 ` Konstantin Osipov 2019-05-02 17:32 ` Vladislav Shpilevoy 2019-04-30 22:31 ` [tarantool-patches] [PATCH 3/5] sio: return 'no host' flag from sio_uri_to_addr() Vladislav Shpilevoy 2019-05-01 5:18 ` [tarantool-patches] " Konstantin Osipov 2019-04-30 22:31 ` [tarantool-patches] [PATCH 4/5] swim: allow to omit host in URI Vladislav Shpilevoy 2019-05-01 5:20 ` [tarantool-patches] " Konstantin Osipov 2019-05-02 15:10 ` Vladislav Shpilevoy 2019-04-30 22:31 ` [tarantool-patches] [PATCH 5/5] swim: explicitly stop old ev_io input/output on rebind Vladislav Shpilevoy 2019-05-01 5:21 ` [tarantool-patches] " Konstantin Osipov 2019-05-02 17:32 ` [tarantool-patches] Re: [PATCH 0/5] swim lua preparation 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=93b1da3130537b7182f0326e9ede8202a1319906.1556663421.git.v.shpilevoy@tarantool.org \ --to=v.shpilevoy@tarantool.org \ --cc=kostja@tarantool.org \ --cc=tarantool-patches@freelists.org \ --subject='Re: [tarantool-patches] [PATCH 2/5] swim: introduce member reference API' \ /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