Welcome! Log In Create A New Profile

Advanced

[nginx] Upstream hash: consistency across little/big endianness.

Sergey Kandaurov
May 18, 2015 09:08AM
details: http://hg.nginx.org/nginx/rev/bf8b6534db3a
branches:
changeset: 6148:bf8b6534db3a
user: Sergey Kandaurov <pluknet@nginx.com>
date: Mon May 18 16:05:44 2015 +0300
description:
Upstream hash: consistency across little/big endianness.

diffstat:

src/http/modules/ngx_http_upstream_hash_module.c | 19 +++++++++++++++----
src/stream/ngx_stream_upstream_hash_module.c | 19 +++++++++++++++----
2 files changed, 30 insertions(+), 8 deletions(-)

diffs (106 lines):

diff -r 74b6ef56ea56 -r bf8b6534db3a src/http/modules/ngx_http_upstream_hash_module.c
--- a/src/http/modules/ngx_http_upstream_hash_module.c Sat May 16 01:32:27 2015 +0300
+++ b/src/http/modules/ngx_http_upstream_hash_module.c Mon May 18 16:05:44 2015 +0300
@@ -277,13 +277,17 @@ ngx_http_upstream_init_chash(ngx_conf_t
{
u_char *host, *port, c;
size_t host_len, port_len, size;
- uint32_t hash, base_hash, prev_hash;
+ uint32_t hash, base_hash;
ngx_str_t *server;
ngx_uint_t npoints, i, j;
ngx_http_upstream_rr_peer_t *peer;
ngx_http_upstream_rr_peers_t *peers;
ngx_http_upstream_chash_points_t *points;
ngx_http_upstream_hash_srv_conf_t *hcf;
+ union {
+ uint32_t value;
+ u_char byte[4];
+ } prev_hash;

if (ngx_http_upstream_init_round_robin(cf, us) != NGX_OK) {
return NGX_ERROR;
@@ -350,20 +354,27 @@ ngx_http_upstream_init_chash(ngx_conf_t
ngx_crc32_update(&base_hash, (u_char *) "", 1);
ngx_crc32_update(&base_hash, port, port_len);

- prev_hash = 0;
+ prev_hash.value = 0;
npoints = peer->weight * 160;

for (j = 0; j < npoints; j++) {
hash = base_hash;

- ngx_crc32_update(&hash, (u_char *) &prev_hash, sizeof(uint32_t));
+ ngx_crc32_update(&hash, prev_hash.byte, 4);
ngx_crc32_final(hash);

points->point[points->number].hash = hash;
points->point[points->number].server = server;
points->number++;

- prev_hash = hash;
+#if (NGX_HAVE_LITTLE_ENDIAN)
+ prev_hash.value = hash;
+#else
+ prev_hash.byte[0] = (u_char) (hash & 0xff);
+ prev_hash.byte[1] = (u_char) ((hash >> 8) & 0xff);
+ prev_hash.byte[2] = (u_char) ((hash >> 16) & 0xff);
+ prev_hash.byte[3] = (u_char) ((hash >> 24) & 0xff);
+#endif
}
}

diff -r 74b6ef56ea56 -r bf8b6534db3a src/stream/ngx_stream_upstream_hash_module.c
--- a/src/stream/ngx_stream_upstream_hash_module.c Sat May 16 01:32:27 2015 +0300
+++ b/src/stream/ngx_stream_upstream_hash_module.c Mon May 18 16:05:44 2015 +0300
@@ -271,13 +271,17 @@ ngx_stream_upstream_init_chash(ngx_conf_
{
u_char *host, *port, c;
size_t host_len, port_len, size;
- uint32_t hash, base_hash, prev_hash;
+ uint32_t hash, base_hash;
ngx_str_t *server;
ngx_uint_t npoints, i, j;
ngx_stream_upstream_rr_peer_t *peer;
ngx_stream_upstream_rr_peers_t *peers;
ngx_stream_upstream_chash_points_t *points;
ngx_stream_upstream_hash_srv_conf_t *hcf;
+ union {
+ uint32_t value;
+ u_char byte[4];
+ } prev_hash;

if (ngx_stream_upstream_init_round_robin(cf, us) != NGX_OK) {
return NGX_ERROR;
@@ -344,20 +348,27 @@ ngx_stream_upstream_init_chash(ngx_conf_
ngx_crc32_update(&base_hash, (u_char *) "", 1);
ngx_crc32_update(&base_hash, port, port_len);

- prev_hash = 0;
+ prev_hash.value = 0;
npoints = peer->weight * 160;

for (j = 0; j < npoints; j++) {
hash = base_hash;

- ngx_crc32_update(&hash, (u_char *) &prev_hash, sizeof(uint32_t));
+ ngx_crc32_update(&hash, prev_hash.byte, 4);
ngx_crc32_final(hash);

points->point[points->number].hash = hash;
points->point[points->number].server = server;
points->number++;

- prev_hash = hash;
+#if (NGX_HAVE_LITTLE_ENDIAN)
+ prev_hash.value = hash;
+#else
+ prev_hash.byte[0] = (u_char) (hash & 0xff);
+ prev_hash.byte[1] = (u_char) ((hash >> 8) & 0xff);
+ prev_hash.byte[2] = (u_char) ((hash >> 16) & 0xff);
+ prev_hash.byte[3] = (u_char) ((hash >> 24) & 0xff);
+#endif
}
}


_______________________________________________
nginx-devel mailing list
nginx-devel@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx-devel
Subject Author Views Posted

[nginx] Upstream hash: consistency across little/big endianness.

Sergey Kandaurov 624 May 18, 2015 09:08AM



Sorry, you do not have permission to post/reply in this forum.

Online Users

Guests: 264
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready