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_instance_st
*a
= (memcached_server_instance_st
*)p1
;
15 memcached_server_instance_st
*b
= (memcached_server_instance_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 memcached_server_instance_st
*instance
;
33 qsort(memcached_server_list(ptr
), memcached_server_count(ptr
), sizeof(memcached_server_instance_st
), compare_servers
);
34 instance
= memcached_server_instance_fetch(ptr
, 0);
35 instance
->number_of_hosts
= memcached_server_count(ptr
);
40 memcached_return_t
run_distribution(memcached_st
*ptr
)
42 if (ptr
->flags
.use_sort_hosts
)
45 switch (ptr
->distribution
)
47 case MEMCACHED_DISTRIBUTION_CONSISTENT
:
48 case MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA
:
49 case MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA_SPY
:
50 return update_continuum(ptr
);
51 case MEMCACHED_DISTRIBUTION_MODULA
:
53 case MEMCACHED_DISTRIBUTION_RANDOM
:
54 srandom((uint32_t) time(NULL
));
56 case MEMCACHED_DISTRIBUTION_CONSISTENT_MAX
:
58 WATCHPOINT_ASSERT(0); /* We have added a distribution without extending the logic */
61 ptr
->last_disconnected_server
= NULL
;
63 return MEMCACHED_SUCCESS
;
66 static uint32_t ketama_server_hash(const char *key
, unsigned int key_length
, int alignment
)
68 unsigned char results
[16];
70 md5_signature((unsigned char*)key
, key_length
, results
);
71 return ((uint32_t) (results
[3 + alignment
* 4] & 0xFF) << 24)
72 | ((uint32_t) (results
[2 + alignment
* 4] & 0xFF) << 16)
73 | ((uint32_t) (results
[1 + alignment
* 4] & 0xFF) << 8)
74 | (results
[0 + alignment
* 4] & 0xFF);
77 static int continuum_item_cmp(const void *t1
, const void *t2
)
79 memcached_continuum_item_st
*ct1
= (memcached_continuum_item_st
*)t1
;
80 memcached_continuum_item_st
*ct2
= (memcached_continuum_item_st
*)t2
;
82 /* Why 153? Hmmm... */
83 WATCHPOINT_ASSERT(ct1
->value
!= 153);
84 if (ct1
->value
== ct2
->value
)
86 else if (ct1
->value
> ct2
->value
)
92 static memcached_return_t
update_continuum(memcached_st
*ptr
)
95 uint32_t continuum_index
= 0;
97 memcached_server_instance_st
*list
;
98 uint32_t pointer_index
;
99 uint32_t pointer_counter
= 0;
100 uint32_t pointer_per_server
= MEMCACHED_POINTS_PER_SERVER
;
101 uint32_t pointer_per_hash
= 1;
102 uint64_t total_weight
= 0;
103 uint64_t is_ketama_weighted
= 0;
104 uint64_t is_auto_ejecting
= 0;
105 uint32_t points_per_server
= 0;
106 uint32_t live_servers
= 0;
109 if (gettimeofday(&now
, NULL
) != 0)
111 ptr
->cached_errno
= errno
;
112 return MEMCACHED_ERRNO
;
115 list
= memcached_server_list(ptr
);
117 /* count live servers (those without a retry delay set) */
118 is_auto_ejecting
= memcached_behavior_get(ptr
, MEMCACHED_BEHAVIOR_AUTO_EJECT_HOSTS
);
119 if (is_auto_ejecting
)
122 ptr
->next_distribution_rebuild
= 0;
123 for (host_index
= 0; host_index
< memcached_server_count(ptr
); ++host_index
)
125 if (list
[host_index
].next_retry
<= now
.tv_sec
)
129 if (ptr
->next_distribution_rebuild
== 0 || list
[host_index
].next_retry
< ptr
->next_distribution_rebuild
)
130 ptr
->next_distribution_rebuild
= list
[host_index
].next_retry
;
136 live_servers
= memcached_server_count(ptr
);
139 is_ketama_weighted
= memcached_behavior_get(ptr
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
);
140 points_per_server
= (uint32_t) (is_ketama_weighted
? MEMCACHED_POINTS_PER_SERVER_KETAMA
: MEMCACHED_POINTS_PER_SERVER
);
142 if (live_servers
== 0)
143 return MEMCACHED_SUCCESS
;
145 if (live_servers
> ptr
->continuum_count
)
147 memcached_continuum_item_st
*new_ptr
;
149 new_ptr
= libmemcached_realloc(ptr
, ptr
->continuum
,
150 sizeof(memcached_continuum_item_st
) * (live_servers
+ MEMCACHED_CONTINUUM_ADDITION
) * points_per_server
);
153 return MEMCACHED_MEMORY_ALLOCATION_FAILURE
;
155 ptr
->continuum
= new_ptr
;
156 ptr
->continuum_count
= live_servers
+ MEMCACHED_CONTINUUM_ADDITION
;
159 if (is_ketama_weighted
)
161 for (host_index
= 0; host_index
< memcached_server_count(ptr
); ++host_index
)
163 if (list
[host_index
].weight
== 0)
165 list
[host_index
].weight
= 1;
167 if (!is_auto_ejecting
|| list
[host_index
].next_retry
<= now
.tv_sec
)
168 total_weight
+= list
[host_index
].weight
;
172 for (host_index
= 0; host_index
< memcached_server_count(ptr
); ++host_index
)
174 if (is_auto_ejecting
&& list
[host_index
].next_retry
> now
.tv_sec
)
177 if (is_ketama_weighted
)
179 float pct
= (float)list
[host_index
].weight
/ (float)total_weight
;
180 pointer_per_server
= (uint32_t) ((floorf((float) (pct
* MEMCACHED_POINTS_PER_SERVER_KETAMA
/ 4 * (float)live_servers
+ 0.0000000001))) * 4);
183 printf("ketama_weighted:%s|%d|%llu|%u\n",
184 list
[host_index
].hostname
,
185 list
[host_index
].port
,
186 (unsigned long long)list
[host_index
].weight
,
192 if (ptr
->distribution
== MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA_SPY
)
194 for (pointer_index
= 0;
195 pointer_index
< pointer_per_server
/ pointer_per_hash
;
198 char sort_host
[MEMCACHED_MAX_HOST_SORT_LENGTH
]= "";
199 size_t sort_host_length
;
201 // Spymemcached ketema key format is: hostname/ip:port-index
202 // If hostname is not available then: /ip:port-index
203 sort_host_length
= (size_t) snprintf(sort_host
, MEMCACHED_MAX_HOST_SORT_LENGTH
,
205 list
[host_index
].hostname
,
206 (uint32_t)list
[host_index
].port
,
209 printf("update_continuum: key is %s\n", sort_host
);
212 WATCHPOINT_ASSERT(sort_host_length
);
214 if (is_ketama_weighted
)
217 for (i
= 0; i
< pointer_per_hash
; i
++)
219 value
= ketama_server_hash(sort_host
, (uint32_t) sort_host_length
, (int) i
);
220 ptr
->continuum
[continuum_index
].index
= host_index
;
221 ptr
->continuum
[continuum_index
++].value
= value
;
226 value
= memcached_generate_hash_value(sort_host
, sort_host_length
, ptr
->distribution_hash
);
227 ptr
->continuum
[continuum_index
].index
= host_index
;
228 ptr
->continuum
[continuum_index
++].value
= value
;
234 for (pointer_index
= 1;
235 pointer_index
<= pointer_per_server
/ pointer_per_hash
;
238 char sort_host
[MEMCACHED_MAX_HOST_SORT_LENGTH
]= "";
239 size_t sort_host_length
;
241 if (list
[host_index
].port
== MEMCACHED_DEFAULT_PORT
)
243 sort_host_length
= (size_t) snprintf(sort_host
, MEMCACHED_MAX_HOST_SORT_LENGTH
,
245 list
[host_index
].hostname
,
250 sort_host_length
= (size_t) snprintf(sort_host
, MEMCACHED_MAX_HOST_SORT_LENGTH
,
252 list
[host_index
].hostname
,
253 (uint32_t)list
[host_index
].port
,
257 WATCHPOINT_ASSERT(sort_host_length
);
259 if (is_ketama_weighted
)
262 for (i
= 0; i
< pointer_per_hash
; i
++)
264 value
= ketama_server_hash(sort_host
, (uint32_t) sort_host_length
, (int) i
);
265 ptr
->continuum
[continuum_index
].index
= host_index
;
266 ptr
->continuum
[continuum_index
++].value
= value
;
271 value
= memcached_generate_hash_value(sort_host
, sort_host_length
, ptr
->distribution_hash
);
272 ptr
->continuum
[continuum_index
].index
= host_index
;
273 ptr
->continuum
[continuum_index
++].value
= value
;
278 pointer_counter
+= pointer_per_server
;
281 WATCHPOINT_ASSERT(ptr
);
282 WATCHPOINT_ASSERT(ptr
->continuum
);
283 WATCHPOINT_ASSERT(memcached_server_count(ptr
) * MEMCACHED_POINTS_PER_SERVER
<= MEMCACHED_CONTINUUM_SIZE
);
284 ptr
->continuum_points_counter
= pointer_counter
;
285 qsort(ptr
->continuum
, ptr
->continuum_points_counter
, sizeof(memcached_continuum_item_st
), continuum_item_cmp
);
288 for (pointer_index
= 0; memcached_server_count(ptr
) && pointer_index
< ((live_servers
* MEMCACHED_POINTS_PER_SERVER
) - 1); pointer_index
++)
290 WATCHPOINT_ASSERT(ptr
->continuum
[pointer_index
].value
<= ptr
->continuum
[pointer_index
+ 1].value
);
294 return MEMCACHED_SUCCESS
;
298 memcached_return_t
memcached_server_push(memcached_st
*ptr
, memcached_server_st
*list
)
301 memcached_server_st
*new_host_list
;
304 return MEMCACHED_SUCCESS
;
306 count
= memcached_servers_count(list
);
307 new_host_list
= libmemcached_realloc(ptr
, memcached_server_list(ptr
),
308 sizeof(memcached_server_instance_st
) * (count
+ memcached_server_count(ptr
)));
311 return MEMCACHED_MEMORY_ALLOCATION_FAILURE
;
313 memcached_server_list_set(ptr
, new_host_list
);
315 for (uint32_t x
= 0; x
< count
; x
++)
317 memcached_server_instance_st
*instance
;
319 if ((ptr
->flags
.use_udp
&& list
[x
].type
!= MEMCACHED_CONNECTION_UDP
)
320 || ((list
[x
].type
== MEMCACHED_CONNECTION_UDP
)
321 && ! (ptr
->flags
.use_udp
)) )
322 return MEMCACHED_INVALID_HOST_PROTOCOL
;
324 WATCHPOINT_ASSERT(list
[x
].hostname
[0] != 0);
326 instance
= memcached_server_instance_fetch(ptr
, memcached_server_count(ptr
));
328 /* TODO check return type */
329 (void)memcached_server_create_with(ptr
, instance
, list
[x
].hostname
,
330 list
[x
].port
, list
[x
].weight
, list
[x
].type
);
331 ptr
->number_of_hosts
++;
334 // Provides backwards compatibility with server list.
336 memcached_server_instance_st
*instance
;
337 instance
= memcached_server_instance_fetch(ptr
, 0);
338 instance
->number_of_hosts
= memcached_server_count(ptr
);
341 return run_distribution(ptr
);
344 memcached_return_t
memcached_server_add_unix_socket(memcached_st
*ptr
,
345 const char *filename
)
347 return memcached_server_add_unix_socket_with_weight(ptr
, filename
, 0);
350 memcached_return_t
memcached_server_add_unix_socket_with_weight(memcached_st
*ptr
,
351 const char *filename
,
355 return MEMCACHED_FAILURE
;
357 return server_add(ptr
, filename
, 0, weight
, MEMCACHED_CONNECTION_UNIX_SOCKET
);
360 memcached_return_t
memcached_server_add_udp(memcached_st
*ptr
,
361 const char *hostname
,
364 return memcached_server_add_udp_with_weight(ptr
, hostname
, port
, 0);
367 memcached_return_t
memcached_server_add_udp_with_weight(memcached_st
*ptr
,
368 const char *hostname
,
373 port
= MEMCACHED_DEFAULT_PORT
;
376 hostname
= "localhost";
378 return server_add(ptr
, hostname
, port
, weight
, MEMCACHED_CONNECTION_UDP
);
381 memcached_return_t
memcached_server_add(memcached_st
*ptr
,
382 const char *hostname
,
385 return memcached_server_add_with_weight(ptr
, hostname
, port
, 0);
388 memcached_return_t
memcached_server_add_with_weight(memcached_st
*ptr
,
389 const char *hostname
,
394 port
= MEMCACHED_DEFAULT_PORT
;
397 hostname
= "localhost";
399 return server_add(ptr
, hostname
, port
, weight
, MEMCACHED_CONNECTION_TCP
);
402 static memcached_return_t
server_add(memcached_st
*ptr
, const char *hostname
,
405 memcached_connection_t type
)
407 memcached_server_instance_st
*new_host_list
;
408 memcached_server_instance_st
*instance
;
410 if ( (ptr
->flags
.use_udp
&& type
!= MEMCACHED_CONNECTION_UDP
)
411 || ( (type
== MEMCACHED_CONNECTION_UDP
) && (! ptr
->flags
.use_udp
) ) )
412 return MEMCACHED_INVALID_HOST_PROTOCOL
;
414 new_host_list
= libmemcached_realloc(ptr
, memcached_server_list(ptr
),
415 sizeof(memcached_server_instance_st
) * (ptr
->number_of_hosts
+ 1));
417 if (new_host_list
== NULL
)
418 return MEMCACHED_MEMORY_ALLOCATION_FAILURE
;
420 memcached_server_list_set(ptr
, new_host_list
);
422 /* TODO: Check return type */
423 instance
= memcached_server_instance_fetch(ptr
, memcached_server_count(ptr
));
424 (void)memcached_server_create_with(ptr
, instance
, hostname
, port
, weight
, type
);
425 ptr
->number_of_hosts
++;
427 instance
= memcached_server_instance_fetch(ptr
, 0);
428 memcached_servers_set_count(instance
, memcached_server_count(ptr
));
430 return run_distribution(ptr
);
434 @todo allow lists to query themselves even if they lack a root
436 memcached_return_t
memcached_server_remove(memcached_server_st
*st_ptr
)
438 uint32_t x
, host_index
;
439 memcached_st
*root
= (memcached_st
*)st_ptr
->root
;
440 memcached_server_st
*list
;
443 return MEMCACHED_FAILURE
;
445 list
= memcached_server_list(root
);
447 for (x
= 0, host_index
= 0; x
< memcached_server_count(root
); x
++)
449 if (strncmp(list
[x
].hostname
, st_ptr
->hostname
, MEMCACHED_MAX_HOST_LENGTH
) != 0 || list
[x
].port
!= st_ptr
->port
)
452 memcpy(list
+host_index
, list
+x
, sizeof(memcached_server_st
));
456 root
->number_of_hosts
= host_index
;
458 if (st_ptr
->address_info
)
460 freeaddrinfo(st_ptr
->address_info
);
461 st_ptr
->address_info
= NULL
;
463 run_distribution(root
);
465 return MEMCACHED_SUCCESS
;
468 memcached_server_st
*memcached_server_list_append(memcached_server_st
*ptr
,
469 const char *hostname
, in_port_t port
,
470 memcached_return_t
*error
)
472 return memcached_server_list_append_with_weight(ptr
, hostname
, port
, 0, error
);
475 memcached_server_st
*memcached_server_list_append_with_weight(memcached_server_st
*ptr
,
476 const char *hostname
, in_port_t port
,
478 memcached_return_t
*error
)
481 memcached_server_instance_st
*new_host_list
;
483 if (hostname
== NULL
|| error
== NULL
)
487 port
= MEMCACHED_DEFAULT_PORT
;
489 /* Increment count for hosts */
493 count
+= memcached_servers_count(ptr
);
496 new_host_list
= (memcached_server_instance_st
*)realloc(ptr
, sizeof(memcached_server_instance_st
) * count
);
499 *error
= MEMCACHED_MEMORY_ALLOCATION_FAILURE
;
503 /* TODO: Check return type */
504 memcached_server_create_with(NULL
, &new_host_list
[count
-1], hostname
, port
, weight
, MEMCACHED_CONNECTION_TCP
);
506 /* Backwards compatibility hack */
507 memcached_servers_set_count(new_host_list
, count
);
509 *error
= MEMCACHED_SUCCESS
;
510 return new_host_list
;