diff options
| author | Alex Elder <elder@inktank.com> | 2012-05-16 16:16:38 -0400 |
|---|---|---|
| committer | Alex Elder <elder@dreamhost.com> | 2012-05-17 09:18:12 -0400 |
| commit | b1c6b9803f5491e94041e6da96bc9dec3870e792 (patch) | |
| tree | 55cde98a6667f811a7529adf02c24e683ba80cdc | |
| parent | 5a0f8fdd8a0ebe320952a388331dc043d7e14ced (diff) | |
ceph: messenger: rework prepare_connect_authorizer()
Change prepare_connect_authorizer() so it returns without dropping
the connection mutex if the connection has no get_authorizer method.
Use the symbolic CEPH_AUTH_UNKNOWN instead of 0 when assigning
authorization protocols.
Signed-off-by: Alex Elder <elder@inktank.com>
Reviewed-by: Sage Weil <sage@inktank.com>
| -rw-r--r-- | net/ceph/messenger.c | 28 |
1 files changed, 19 insertions, 9 deletions
diff --git a/net/ceph/messenger.c b/net/ceph/messenger.c index 8e76936a8c13..09409a3d9500 100644 --- a/net/ceph/messenger.c +++ b/net/ceph/messenger.c | |||
| @@ -656,19 +656,29 @@ static void prepare_write_keepalive(struct ceph_connection *con) | |||
| 656 | static int prepare_connect_authorizer(struct ceph_connection *con) | 656 | static int prepare_connect_authorizer(struct ceph_connection *con) |
| 657 | { | 657 | { |
| 658 | void *auth_buf; | 658 | void *auth_buf; |
| 659 | int auth_len = 0; | 659 | int auth_len; |
| 660 | int auth_protocol = 0; | 660 | int auth_protocol; |
| 661 | |||
| 662 | if (!con->ops->get_authorizer) { | ||
| 663 | con->out_connect.authorizer_protocol = CEPH_AUTH_UNKNOWN; | ||
| 664 | con->out_connect.authorizer_len = 0; | ||
| 665 | |||
| 666 | return 0; | ||
| 667 | } | ||
| 668 | |||
| 669 | /* Can't hold the mutex while getting authorizer */ | ||
| 661 | 670 | ||
| 662 | mutex_unlock(&con->mutex); | 671 | mutex_unlock(&con->mutex); |
| 663 | if (con->ops->get_authorizer) | 672 | |
| 664 | con->ops->get_authorizer(con, &auth_buf, &auth_len, | 673 | auth_buf = NULL; |
| 665 | &auth_protocol, &con->auth_reply_buf, | 674 | auth_len = 0; |
| 666 | &con->auth_reply_buf_len, | 675 | auth_protocol = CEPH_AUTH_UNKNOWN; |
| 667 | con->auth_retry); | 676 | con->ops->get_authorizer(con, &auth_buf, &auth_len, &auth_protocol, |
| 677 | &con->auth_reply_buf, &con->auth_reply_buf_len, | ||
| 678 | con->auth_retry); | ||
| 668 | mutex_lock(&con->mutex); | 679 | mutex_lock(&con->mutex); |
| 669 | 680 | ||
| 670 | if (test_bit(CLOSED, &con->state) || | 681 | if (test_bit(CLOSED, &con->state) || test_bit(OPENING, &con->state)) |
| 671 | test_bit(OPENING, &con->state)) | ||
| 672 | return -EAGAIN; | 682 | return -EAGAIN; |
| 673 | 683 | ||
| 674 | con->out_connect.authorizer_protocol = cpu_to_le32(auth_protocol); | 684 | con->out_connect.authorizer_protocol = cpu_to_le32(auth_protocol); |
