4 /* Protoypes (static) */
5 static memcached_return_t
server_add(memcached_st
*ptr
, const char *hostname
,
8 memcached_connection_t type
);
9 static memcached_return_t
update_continuum(memcached_st
*ptr
);
11 static int compare_servers(const void *p1
, const void *p2
)
14 memcached_server_st
*a
= (memcached_server_st
*)p1
;
15 memcached_server_st
*b
= (memcached_server_st
*)p2
;
17 return_value
= strcmp(a
->hostname
, b
->hostname
);
19 if (return_value
== 0)
21 return_value
= (int) (a
->port
- b
->port
);
27 static void sort_hosts(memcached_st
*ptr
)
29 if (memcached_server_count(ptr
))
31 qsort(ptr
->hosts
, memcached_server_count(ptr
), sizeof(memcached_server_st
), compare_servers
);
32 ptr
->hosts
[0].number_of_hosts
= memcached_server_count(ptr
);
37 memcached_return_t
run_distribution(memcached_st
*ptr
)
39 if (ptr
->flags
.use_sort_hosts
)
42 switch (ptr
->distribution
)
44 case MEMCACHED_DISTRIBUTION_CONSISTENT
:
45 case MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA
:
46 case MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA_SPY
:
47 return update_continuum(ptr
);
48 case MEMCACHED_DISTRIBUTION_MODULA
:
50 case MEMCACHED_DISTRIBUTION_RANDOM
:
51 srandom((uint32_t) time(NULL
));
53 case MEMCACHED_DISTRIBUTION_CONSISTENT_MAX
:
55 WATCHPOINT_ASSERT(0); /* We have added a distribution without extending the logic */
58 ptr
->last_disconnected_server
= NULL
;
60 return MEMCACHED_SUCCESS
;
63 static uint32_t ketama_server_hash(const char *key
, unsigned int key_length
, int alignment
)
65 unsigned char results
[16];
67 md5_signature((unsigned char*)key
, key_length
, results
);
68 return ((uint32_t) (results
[3 + alignment
* 4] & 0xFF) << 24)
69 | ((uint32_t) (results
[2 + alignment
* 4] & 0xFF) << 16)
70 | ((uint32_t) (results
[1 + alignment
* 4] & 0xFF) << 8)
71 | (results
[0 + alignment
* 4] & 0xFF);
74 static int continuum_item_cmp(const void *t1
, const void *t2
)
76 memcached_continuum_item_st
*ct1
= (memcached_continuum_item_st
*)t1
;
77 memcached_continuum_item_st
*ct2
= (memcached_continuum_item_st
*)t2
;
79 /* Why 153? Hmmm... */
80 WATCHPOINT_ASSERT(ct1
->value
!= 153);
81 if (ct1
->value
== ct2
->value
)
83 else if (ct1
->value
> ct2
->value
)
89 static memcached_return_t
update_continuum(memcached_st
*ptr
)
92 uint32_t continuum_index
= 0;
94 memcached_server_st
*list
;
95 uint32_t pointer_index
;
96 uint32_t pointer_counter
= 0;
97 uint32_t pointer_per_server
= MEMCACHED_POINTS_PER_SERVER
;
98 uint32_t pointer_per_hash
= 1;
99 uint64_t total_weight
= 0;
100 uint64_t is_ketama_weighted
= 0;
101 uint64_t is_auto_ejecting
= 0;
102 uint32_t points_per_server
= 0;
103 uint32_t live_servers
= 0;
106 if (gettimeofday(&now
, NULL
) != 0)
108 ptr
->cached_errno
= errno
;
109 return MEMCACHED_ERRNO
;
114 /* count live servers (those without a retry delay set) */
115 is_auto_ejecting
= memcached_behavior_get(ptr
, MEMCACHED_BEHAVIOR_AUTO_EJECT_HOSTS
);
116 if (is_auto_ejecting
)
119 ptr
->next_distribution_rebuild
= 0;
120 for (host_index
= 0; host_index
< memcached_server_count(ptr
); ++host_index
)
122 if (list
[host_index
].next_retry
<= now
.tv_sec
)
126 if (ptr
->next_distribution_rebuild
== 0 || list
[host_index
].next_retry
< ptr
->next_distribution_rebuild
)
127 ptr
->next_distribution_rebuild
= list
[host_index
].next_retry
;
133 live_servers
= memcached_server_count(ptr
);
136 is_ketama_weighted
= memcached_behavior_get(ptr
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
);
137 points_per_server
= (uint32_t) (is_ketama_weighted
? MEMCACHED_POINTS_PER_SERVER_KETAMA
: MEMCACHED_POINTS_PER_SERVER
);
139 if (live_servers
== 0)
140 return MEMCACHED_SUCCESS
;
142 if (live_servers
> ptr
->continuum_count
)
144 memcached_continuum_item_st
*new_ptr
;
146 new_ptr
= ptr
->call_realloc(ptr
, ptr
->continuum
,
147 sizeof(memcached_continuum_item_st
) * (live_servers
+ MEMCACHED_CONTINUUM_ADDITION
) * points_per_server
);
150 return MEMCACHED_MEMORY_ALLOCATION_FAILURE
;
152 ptr
->continuum
= new_ptr
;
153 ptr
->continuum_count
= live_servers
+ MEMCACHED_CONTINUUM_ADDITION
;
156 if (is_ketama_weighted
)
158 for (host_index
= 0; host_index
< memcached_server_count(ptr
); ++host_index
)
160 if (list
[host_index
].weight
== 0)
162 list
[host_index
].weight
= 1;
164 if (!is_auto_ejecting
|| list
[host_index
].next_retry
<= now
.tv_sec
)
165 total_weight
+= list
[host_index
].weight
;
169 for (host_index
= 0; host_index
< memcached_server_count(ptr
); ++host_index
)
171 if (is_auto_ejecting
&& list
[host_index
].next_retry
> now
.tv_sec
)
174 if (is_ketama_weighted
)
176 float pct
= (float)list
[host_index
].weight
/ (float)total_weight
;
177 pointer_per_server
= (uint32_t) ((floorf((float) (pct
* MEMCACHED_POINTS_PER_SERVER_KETAMA
/ 4 * (float)live_servers
+ 0.0000000001))) * 4);
180 printf("ketama_weighted:%s|%d|%llu|%u\n",
181 list
[host_index
].hostname
,
182 list
[host_index
].port
,
183 (unsigned long long)list
[host_index
].weight
,
189 if (ptr
->distribution
== MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA_SPY
)
191 for (pointer_index
= 0;
192 pointer_index
< pointer_per_server
/ pointer_per_hash
;
195 char sort_host
[MEMCACHED_MAX_HOST_SORT_LENGTH
]= "";
196 size_t sort_host_length
;
198 // Spymemcached ketema key format is: hostname/ip:port-index
199 // If hostname is not available then: /ip:port-index
200 sort_host_length
= (size_t) snprintf(sort_host
, MEMCACHED_MAX_HOST_SORT_LENGTH
,
202 list
[host_index
].hostname
,
203 (uint32_t)list
[host_index
].port
,
206 printf("update_continuum: key is %s\n", sort_host
);
209 WATCHPOINT_ASSERT(sort_host_length
);
211 if (is_ketama_weighted
)
214 for (i
= 0; i
< pointer_per_hash
; i
++)
216 value
= ketama_server_hash(sort_host
, (uint32_t) sort_host_length
, (int) i
);
217 ptr
->continuum
[continuum_index
].index
= host_index
;
218 ptr
->continuum
[continuum_index
++].value
= value
;
223 value
= memcached_generate_hash_value(sort_host
, sort_host_length
, ptr
->distribution_hash
);
224 ptr
->continuum
[continuum_index
].index
= host_index
;
225 ptr
->continuum
[continuum_index
++].value
= value
;
231 for (pointer_index
= 1;
232 pointer_index
<= pointer_per_server
/ pointer_per_hash
;
235 char sort_host
[MEMCACHED_MAX_HOST_SORT_LENGTH
]= "";
236 size_t sort_host_length
;
238 if (list
[host_index
].port
== MEMCACHED_DEFAULT_PORT
)
240 sort_host_length
= (size_t) snprintf(sort_host
, MEMCACHED_MAX_HOST_SORT_LENGTH
,
242 list
[host_index
].hostname
,
247 sort_host_length
= (size_t) snprintf(sort_host
, MEMCACHED_MAX_HOST_SORT_LENGTH
,
249 list
[host_index
].hostname
,
250 (uint32_t)list
[host_index
].port
,
254 WATCHPOINT_ASSERT(sort_host_length
);
256 if (is_ketama_weighted
)
259 for (i
= 0; i
< pointer_per_hash
; i
++)
261 value
= ketama_server_hash(sort_host
, (uint32_t) sort_host_length
, (int) i
);
262 ptr
->continuum
[continuum_index
].index
= host_index
;
263 ptr
->continuum
[continuum_index
++].value
= value
;
268 value
= memcached_generate_hash_value(sort_host
, sort_host_length
, ptr
->distribution_hash
);
269 ptr
->continuum
[continuum_index
].index
= host_index
;
270 ptr
->continuum
[continuum_index
++].value
= value
;
275 pointer_counter
+= pointer_per_server
;
278 WATCHPOINT_ASSERT(ptr
);
279 WATCHPOINT_ASSERT(ptr
->continuum
);
280 WATCHPOINT_ASSERT(memcached_server_count(ptr
) * MEMCACHED_POINTS_PER_SERVER
<= MEMCACHED_CONTINUUM_SIZE
);
281 ptr
->continuum_points_counter
= pointer_counter
;
282 qsort(ptr
->continuum
, ptr
->continuum_points_counter
, sizeof(memcached_continuum_item_st
), continuum_item_cmp
);
285 for (pointer_index
= 0; memcached_server_count(ptr
) && pointer_index
< ((live_servers
* MEMCACHED_POINTS_PER_SERVER
) - 1); pointer_index
++)
287 WATCHPOINT_ASSERT(ptr
->continuum
[pointer_index
].value
<= ptr
->continuum
[pointer_index
+ 1].value
);
291 return MEMCACHED_SUCCESS
;
295 memcached_return_t
memcached_server_push(memcached_st
*ptr
, memcached_server_st
*list
)
299 memcached_server_st
*new_host_list
;
302 return MEMCACHED_SUCCESS
;
304 count
= memcached_servers_count(list
);
305 new_host_list
= ptr
->call_realloc(ptr
, ptr
->hosts
,
306 sizeof(memcached_server_st
) * (count
+ memcached_server_count(ptr
)));
309 return MEMCACHED_MEMORY_ALLOCATION_FAILURE
;
311 ptr
->hosts
= new_host_list
;
313 for (x
= 0; x
< count
; x
++)
315 if ((ptr
->flags
.use_udp
&& list
[x
].type
!= MEMCACHED_CONNECTION_UDP
)
316 || ((list
[x
].type
== MEMCACHED_CONNECTION_UDP
)
317 && ! (ptr
->flags
.use_udp
)) )
318 return MEMCACHED_INVALID_HOST_PROTOCOL
;
320 WATCHPOINT_ASSERT(list
[x
].hostname
[0] != 0);
321 memcached_server_create(ptr
, &ptr
->hosts
[memcached_server_count(ptr
)]);
322 /* TODO check return type */
323 (void)memcached_server_create_with(ptr
, &ptr
->hosts
[memcached_server_count(ptr
)], list
[x
].hostname
,
324 list
[x
].port
, list
[x
].weight
, list
[x
].type
);
325 ptr
->number_of_hosts
++;
327 ptr
->hosts
[0].number_of_hosts
= memcached_server_count(ptr
);
329 return run_distribution(ptr
);
332 memcached_return_t
memcached_server_add_unix_socket(memcached_st
*ptr
,
333 const char *filename
)
335 return memcached_server_add_unix_socket_with_weight(ptr
, filename
, 0);
338 memcached_return_t
memcached_server_add_unix_socket_with_weight(memcached_st
*ptr
,
339 const char *filename
,
343 return MEMCACHED_FAILURE
;
345 return server_add(ptr
, filename
, 0, weight
, MEMCACHED_CONNECTION_UNIX_SOCKET
);
348 memcached_return_t
memcached_server_add_udp(memcached_st
*ptr
,
349 const char *hostname
,
352 return memcached_server_add_udp_with_weight(ptr
, hostname
, port
, 0);
355 memcached_return_t
memcached_server_add_udp_with_weight(memcached_st
*ptr
,
356 const char *hostname
,
361 port
= MEMCACHED_DEFAULT_PORT
;
364 hostname
= "localhost";
366 return server_add(ptr
, hostname
, port
, weight
, MEMCACHED_CONNECTION_UDP
);
369 memcached_return_t
memcached_server_add(memcached_st
*ptr
,
370 const char *hostname
,
373 return memcached_server_add_with_weight(ptr
, hostname
, port
, 0);
376 memcached_return_t
memcached_server_add_with_weight(memcached_st
*ptr
,
377 const char *hostname
,
382 port
= MEMCACHED_DEFAULT_PORT
;
385 hostname
= "localhost";
387 return server_add(ptr
, hostname
, port
, weight
, MEMCACHED_CONNECTION_TCP
);
390 static memcached_return_t
server_add(memcached_st
*ptr
, const char *hostname
,
393 memcached_connection_t type
)
395 memcached_server_st
*new_host_list
;
397 if ( (ptr
->flags
.use_udp
&& type
!= MEMCACHED_CONNECTION_UDP
)
398 || ( (type
== MEMCACHED_CONNECTION_UDP
) && (! ptr
->flags
.use_udp
) ) )
399 return MEMCACHED_INVALID_HOST_PROTOCOL
;
401 new_host_list
= ptr
->call_realloc(ptr
, ptr
->hosts
,
402 sizeof(memcached_server_st
) * (ptr
->number_of_hosts
+ 1));
404 if (new_host_list
== NULL
)
405 return MEMCACHED_MEMORY_ALLOCATION_FAILURE
;
407 ptr
->hosts
= new_host_list
;
409 /* TODO: Check return type */
410 (void)memcached_server_create_with(ptr
, &ptr
->hosts
[memcached_server_count(ptr
)], hostname
, port
, weight
, type
);
411 ptr
->number_of_hosts
++;
413 memcached_servers_set_count(&ptr
->hosts
[0], memcached_server_count(ptr
));
415 return run_distribution(ptr
);
418 memcached_return_t
memcached_server_remove(memcached_server_st
*st_ptr
)
420 uint32_t x
, host_index
;
421 memcached_st
*ptr
= st_ptr
->root
;
422 memcached_server_st
*list
= ptr
->hosts
;
424 for (x
= 0, host_index
= 0; x
< memcached_server_count(ptr
); x
++)
426 if (strncmp(list
[x
].hostname
, st_ptr
->hostname
, MEMCACHED_MAX_HOST_LENGTH
) != 0 || list
[x
].port
!= st_ptr
->port
)
429 memcpy(list
+host_index
, list
+x
, sizeof(memcached_server_st
));
433 ptr
->number_of_hosts
= host_index
;
435 if (st_ptr
->address_info
)
437 freeaddrinfo(st_ptr
->address_info
);
438 st_ptr
->address_info
= NULL
;
440 run_distribution(ptr
);
442 return MEMCACHED_SUCCESS
;
445 memcached_server_st
*memcached_server_list_append(memcached_server_st
*ptr
,
446 const char *hostname
, in_port_t port
,
447 memcached_return_t
*error
)
449 return memcached_server_list_append_with_weight(ptr
, hostname
, port
, 0, error
);
452 memcached_server_st
*memcached_server_list_append_with_weight(memcached_server_st
*ptr
,
453 const char *hostname
, in_port_t port
,
455 memcached_return_t
*error
)
458 memcached_server_st
*new_host_list
;
460 if (hostname
== NULL
|| error
== NULL
)
464 port
= MEMCACHED_DEFAULT_PORT
;
466 /* Increment count for hosts */
470 count
+= memcached_servers_count(ptr
);
473 new_host_list
= (memcached_server_st
*)realloc(ptr
, sizeof(memcached_server_st
) * count
);
476 *error
= MEMCACHED_MEMORY_ALLOCATION_FAILURE
;
480 /* TODO: Check return type */
481 memcached_server_create_with(NULL
, &new_host_list
[count
-1], hostname
, port
, weight
, MEMCACHED_CONNECTION_TCP
);
483 /* Backwards compatibility hack */
484 memcached_servers_set_count(new_host_list
, count
);
486 *error
= MEMCACHED_SUCCESS
;
487 return new_host_list
;