grapes / src / PeerSampler / cyclon.c @ 169c8925
History | View | Annotate | Download (6.88 KB)
1 |
/*
|
---|---|
2 |
* Copyright (c) 2010 Luca Abeni
|
3 |
*
|
4 |
* This is free software; see lgpl-2.1.txt
|
5 |
*/
|
6 |
|
7 |
#include <sys/time.h> |
8 |
#include <time.h> |
9 |
#include <stdlib.h> |
10 |
#include <stdint.h> |
11 |
#include <stdio.h> |
12 |
#include <stdbool.h> |
13 |
#include <string.h> |
14 |
|
15 |
#include "net_helper.h" |
16 |
#include "peersampler_iface.h" |
17 |
#include "../Cache/topocache.h" |
18 |
#include "../Cache/cyclon_proto.h" |
19 |
#include "../Cache/proto.h" |
20 |
#include "config.h" |
21 |
#include "grapes_msg_types.h" |
22 |
|
23 |
#define DEFAULT_CACHE_SIZE 10 |
24 |
|
25 |
struct peersampler_context{
|
26 |
uint64_t currtime; |
27 |
int cache_size;
|
28 |
int sent_entries;
|
29 |
struct peer_cache *local_cache;
|
30 |
bool bootstrap;
|
31 |
int bootstrap_period;
|
32 |
int period;
|
33 |
|
34 |
struct peer_cache *flying_cache;
|
35 |
struct nodeID *dst;
|
36 |
|
37 |
struct cyclon_proto_context *pc;
|
38 |
const struct nodeID **r; |
39 |
}; |
40 |
|
41 |
|
42 |
static uint64_t gettime(void) |
43 |
{ |
44 |
struct timeval tv;
|
45 |
|
46 |
gettimeofday(&tv, NULL);
|
47 |
|
48 |
return tv.tv_usec + tv.tv_sec * 1000000ull; |
49 |
} |
50 |
|
51 |
static struct peersampler_context* cyclon_context_init(void) |
52 |
{ |
53 |
struct peersampler_context* con;
|
54 |
con = (struct peersampler_context*) calloc(1,sizeof(struct peersampler_context)); |
55 |
|
56 |
//Initialize context with default values
|
57 |
con->bootstrap = true;
|
58 |
con->bootstrap_period = 2000000;
|
59 |
con->period = 10000000;
|
60 |
con->currtime = gettime(); |
61 |
|
62 |
return con;
|
63 |
} |
64 |
|
65 |
static int time_to_send(struct peersampler_context* con) |
66 |
{ |
67 |
int p = con->bootstrap ? con->bootstrap_period : con->period;
|
68 |
if (gettime() - con->currtime > p) {
|
69 |
con->currtime += p; |
70 |
|
71 |
return 1; |
72 |
} |
73 |
|
74 |
return 0; |
75 |
} |
76 |
|
77 |
static void cache_add_cache(struct peer_cache *dst, const struct peer_cache *add) |
78 |
{ |
79 |
int i, meta_size;
|
80 |
const uint8_t *meta;
|
81 |
|
82 |
meta = get_metadata(add, &meta_size); |
83 |
for (i = 0; nodeid(add, i); i++) { |
84 |
cache_add(dst, nodeid(add, i), meta + (meta_size * i), meta_size); |
85 |
} |
86 |
} |
87 |
|
88 |
|
89 |
/*
|
90 |
* Public Functions!
|
91 |
*/
|
92 |
static struct peersampler_context* cyclon_init(struct nodeID *myID, const void *metadata, int metadata_size, const char *config) |
93 |
{ |
94 |
struct tag *cfg_tags;
|
95 |
struct peersampler_context *con;
|
96 |
int res;
|
97 |
|
98 |
con = cyclon_context_init(); |
99 |
if (!con) return NULL; |
100 |
|
101 |
cfg_tags = config_parse(config); |
102 |
res = config_value_int(cfg_tags, "cache_size", &(con->cache_size));
|
103 |
if (!res) {
|
104 |
con->cache_size = DEFAULT_CACHE_SIZE; |
105 |
} |
106 |
res = config_value_int(cfg_tags, "sent_entries", &(con->sent_entries));
|
107 |
if (!res) {
|
108 |
con->sent_entries = con->cache_size / 2;
|
109 |
} |
110 |
free(cfg_tags); |
111 |
|
112 |
con->local_cache = cache_init(con->cache_size, metadata_size, 0);
|
113 |
if (con->local_cache == NULL) { |
114 |
free(con); |
115 |
return NULL; |
116 |
} |
117 |
|
118 |
con->pc = cyclon_proto_init(myID, metadata, metadata_size); |
119 |
if (!con->pc){
|
120 |
free(con->local_cache); |
121 |
free(con); |
122 |
return NULL; |
123 |
} |
124 |
|
125 |
return con;
|
126 |
} |
127 |
|
128 |
static int cyclon_add_neighbour(struct peersampler_context *context, struct nodeID *neighbour, const void *metadata, int metadata_size) |
129 |
{ |
130 |
if (!context->flying_cache) {
|
131 |
context->flying_cache = rand_cache(context->local_cache, context->sent_entries - 1);
|
132 |
} |
133 |
if (cache_add(context->local_cache, neighbour, metadata, metadata_size) < 0) { |
134 |
return -1; |
135 |
} |
136 |
|
137 |
return cyclon_query(context->pc, context->flying_cache, neighbour);
|
138 |
} |
139 |
|
140 |
static int cyclon_parse_data(struct peersampler_context *context, const uint8_t *buff, int len) |
141 |
{ |
142 |
cache_check(context->local_cache); |
143 |
if (len) {
|
144 |
const struct topo_header *h = (const struct topo_header *)buff; |
145 |
struct peer_cache *remote_cache;
|
146 |
struct peer_cache *sent_cache = NULL; |
147 |
|
148 |
if (h->protocol != MSG_TYPE_TOPOLOGY) {
|
149 |
fprintf(stderr, "Peer Sampler: Wrong protocol!\n");
|
150 |
|
151 |
return -1; |
152 |
} |
153 |
|
154 |
context->bootstrap = false;
|
155 |
|
156 |
remote_cache = entries_undump(buff + sizeof(struct topo_header), len - sizeof(struct topo_header)); |
157 |
if (h->type == CYCLON_QUERY) {
|
158 |
sent_cache = rand_cache(context->local_cache, context->sent_entries); |
159 |
cyclon_reply(context->pc, remote_cache, sent_cache); |
160 |
context->dst = NULL;
|
161 |
} |
162 |
cache_check(context->local_cache); |
163 |
cache_add_cache(context->local_cache, remote_cache); |
164 |
cache_free(remote_cache); |
165 |
if (sent_cache) {
|
166 |
cache_add_cache(context->local_cache, sent_cache); |
167 |
cache_free(sent_cache); |
168 |
} else {
|
169 |
if (context->flying_cache) {
|
170 |
cache_add_cache(context->local_cache, context->flying_cache); |
171 |
cache_free(context->flying_cache); |
172 |
context->flying_cache = NULL;
|
173 |
} |
174 |
} |
175 |
} |
176 |
|
177 |
if (time_to_send(context)) {
|
178 |
if (context->flying_cache) {
|
179 |
cache_add_cache(context->local_cache, context->flying_cache); |
180 |
cache_free(context->flying_cache); |
181 |
context->flying_cache = NULL;
|
182 |
} |
183 |
cache_update(context->local_cache); |
184 |
context->dst = last_peer(context->local_cache); |
185 |
if (context->dst == NULL) { |
186 |
return 0; |
187 |
} |
188 |
context->dst = nodeid_dup(context->dst); |
189 |
cache_del(context->local_cache, context->dst); |
190 |
context->flying_cache = rand_cache(context->local_cache, context->sent_entries - 1);
|
191 |
cyclon_query(context->pc, context->flying_cache, context->dst); |
192 |
} |
193 |
cache_check(context->local_cache); |
194 |
|
195 |
return 0; |
196 |
} |
197 |
|
198 |
static const struct nodeID **cyclon_get_neighbourhood(struct peersampler_context *context, int *n) |
199 |
{ |
200 |
context->r = realloc(context->r, context->cache_size * sizeof(struct nodeID *)); |
201 |
if (context->r == NULL) { |
202 |
return NULL; |
203 |
} |
204 |
|
205 |
for (*n = 0; nodeid(context->local_cache, *n) && (*n < context->cache_size); (*n)++) { |
206 |
context->r[*n] = nodeid(context->local_cache, *n); |
207 |
//fprintf(stderr, "Checking table[%d]\n", *n);
|
208 |
} |
209 |
if (context->flying_cache) {
|
210 |
int i;
|
211 |
|
212 |
for (i = 0; nodeid(context->flying_cache, i) && (*n < context->cache_size); (*n)++, i++) { |
213 |
context->r[*n] = nodeid(context->flying_cache, i); |
214 |
} |
215 |
} |
216 |
if (context->dst && (*n < context->cache_size)) {
|
217 |
context->r[*n] = context->dst; |
218 |
(*n)++; |
219 |
} |
220 |
|
221 |
return context->r;
|
222 |
} |
223 |
|
224 |
static const void *cyclon_get_metadata(struct peersampler_context *context, int *metadata_size) |
225 |
{ |
226 |
return get_metadata(context->local_cache, metadata_size);
|
227 |
} |
228 |
|
229 |
static int cyclon_grow_neighbourhood(struct peersampler_context *context, int n) |
230 |
{ |
231 |
context->cache_size += n; |
232 |
|
233 |
return context->cache_size;
|
234 |
} |
235 |
|
236 |
static int cyclon_shrink_neighbourhood(struct peersampler_context *context, int n) |
237 |
{ |
238 |
if (context->cache_size < n) {
|
239 |
return -1; |
240 |
} |
241 |
context->cache_size -= n; |
242 |
|
243 |
return context->cache_size;
|
244 |
} |
245 |
|
246 |
static int cyclon_remove_neighbour(struct peersampler_context *context, const struct nodeID *neighbour) |
247 |
{ |
248 |
return cache_del(context->local_cache, neighbour);
|
249 |
} |
250 |
|
251 |
static int cyclon_change_metadata(struct peersampler_context *context, const void *metadata, int metadata_size) |
252 |
{ |
253 |
return cyclon_proto_change_metadata(context->pc, metadata, metadata_size);
|
254 |
} |
255 |
|
256 |
struct peersampler_iface cyclon = {
|
257 |
.init = cyclon_init, |
258 |
.change_metadata = cyclon_change_metadata, |
259 |
.add_neighbour = cyclon_add_neighbour, |
260 |
.parse_data = cyclon_parse_data, |
261 |
.get_neighbourhood = cyclon_get_neighbourhood, |
262 |
.get_metadata = cyclon_get_metadata, |
263 |
.grow_neighbourhood = cyclon_grow_neighbourhood, |
264 |
.shrink_neighbourhood = cyclon_shrink_neighbourhood, |
265 |
.remove_neighbour = cyclon_remove_neighbour, |
266 |
}; |