indent
[oweals/gnunet.git] / src / ats / gnunet-service-ats_performance.c
1 /*
2      This file is part of GNUnet.
3      (C) 2011 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file ats/gnunet-service-ats_performance.c
23  * @brief ats service, interaction with 'performance' API
24  * @author Matthias Wachs
25  * @author Christian Grothoff
26  */
27 #include "platform.h"
28 #include "gnunet-service-ats.h"
29 #include "gnunet-service-ats_addresses.h"
30 #include "gnunet-service-ats_performance.h"
31 #include "gnunet-service-ats_reservations.h"
32 #include "ats.h"
33
34 /**
35  * We keep clients that are interested in performance in a linked list.
36  */
37 struct PerformanceClient
38 {
39   /**
40    * Next in doubly-linked list.
41    */
42   struct PerformanceClient *next;
43
44   /**
45    * Previous in doubly-linked list.
46    */
47   struct PerformanceClient *prev;
48
49   /**
50    * Actual handle to the client.
51    */
52   struct GNUNET_SERVER_Client *client;
53
54   /**
55    * Options for the client.
56    */
57   enum StartFlag flag;
58
59 };
60
61
62 /**
63  * We keep clients that are interested in performance in a linked list.
64  */
65 struct AddressIteration
66 {
67   /**
68    * Actual handle to the client.
69    */
70   struct PerformanceClient *pc;
71
72   int all;
73
74   uint32_t id;
75
76   unsigned int msg_type;
77 };
78
79 /**
80  * Address handle
81  */
82 static struct GAS_Addresses_Handle *GSA_addresses;
83
84 /**
85  * Head of linked list of all clients to this service.
86  */
87 static struct PerformanceClient *pc_head;
88
89 /**
90  * Tail of linked list of all clients to this service.
91  */
92 static struct PerformanceClient *pc_tail;
93
94 /**
95  * Context for sending messages to performance clients.
96  */
97 static struct GNUNET_SERVER_NotificationContext *nc;
98
99
100 /**
101  * Find the performance client associated with the given handle.
102  *
103  * @param client server handle
104  * @return internal handle
105  */
106 static struct PerformanceClient *
107 find_client (struct GNUNET_SERVER_Client *client)
108 {
109   struct PerformanceClient *pc;
110
111   for (pc = pc_head; pc != NULL; pc = pc->next)
112     if (pc->client == client)
113       return pc;
114   return NULL;
115 }
116
117 /**
118  * Unregister a client (which may have been a performance client,
119  * but this is not assured).
120  *
121  * @param client handle of the (now dead) client
122  */
123 void
124 GAS_performance_remove_client (struct GNUNET_SERVER_Client *client)
125 {
126   struct PerformanceClient *pc;
127
128   pc = find_client (client);
129   if (NULL == pc)
130     return;
131   GNUNET_CONTAINER_DLL_remove (pc_head, pc_tail, pc);
132   GNUNET_free (pc);
133 }
134
135 /**
136  * Transmit the given performance information to all performance
137  * clients.
138  *
139  * @param pc performance client to send to
140  * @param peer peer for which this is an address suggestion
141  * @param plugin_name 0-termintated string specifying the transport plugin
142  * @param plugin_addr binary address for the plugin to use
143  * @param plugin_addr_len number of bytes in plugin_addr
144  * @param active is this address active
145  * @param atsi performance data for the address
146  * @param atsi_count number of performance records in 'ats'
147  * @param bandwidth_out assigned outbound bandwidth
148  * @param bandwidth_in assigned inbound bandwidth
149  */
150 void
151 GAS_performance_notify_client (struct PerformanceClient *pc,
152                                const struct GNUNET_PeerIdentity *peer,
153                                const char *plugin_name,
154                                const void *plugin_addr, size_t plugin_addr_len,
155                                const int active,
156                                const struct GNUNET_ATS_Information *atsi,
157                                uint32_t atsi_count,
158                                struct GNUNET_BANDWIDTH_Value32NBO
159                                bandwidth_out,
160                                struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in)
161 {
162
163   struct PeerInformationMessage *msg;
164   size_t plugin_name_length = strlen (plugin_name) + 1;
165   size_t msize =
166       sizeof (struct PeerInformationMessage) +
167       atsi_count * sizeof (struct GNUNET_ATS_Information) + plugin_addr_len +
168       plugin_name_length;
169   char buf[msize] GNUNET_ALIGN;
170   struct GNUNET_ATS_Information *atsp;
171   char *addrp;
172
173   GNUNET_assert (NULL != pc);
174   if (NULL == find_client (pc->client))
175     return; /* Client disconnected */
176
177   GNUNET_assert (msize < GNUNET_SERVER_MAX_MESSAGE_SIZE);
178   GNUNET_assert (atsi_count <
179                  GNUNET_SERVER_MAX_MESSAGE_SIZE /
180                  sizeof (struct GNUNET_ATS_Information));
181   msg = (struct PeerInformationMessage *) buf;
182   msg->header.size = htons (msize);
183   msg->header.type = htons (GNUNET_MESSAGE_TYPE_ATS_PEER_INFORMATION);
184   msg->id = htonl (0);
185   msg->ats_count = htonl (atsi_count);
186   msg->peer = *peer;
187   msg->address_length = htons (plugin_addr_len);
188   msg->address_active = ntohl (active);
189   msg->plugin_name_length = htons (plugin_name_length);
190   msg->bandwidth_out = bandwidth_out;
191   msg->bandwidth_in = bandwidth_in;
192   atsp = (struct GNUNET_ATS_Information *) &msg[1];
193   memcpy (atsp, atsi, sizeof (struct GNUNET_ATS_Information) * atsi_count);
194   addrp = (char *) &atsp[atsi_count];
195   memcpy (addrp, plugin_addr, plugin_addr_len);
196   strcpy (&addrp[plugin_addr_len], plugin_name);
197   GNUNET_SERVER_notification_context_unicast (nc, pc->client, &msg->header,
198                                               GNUNET_YES);
199 }
200
201
202 /**
203  * Transmit the given performance information to all performance
204  * clients.
205  *
206  * @param peer peer for which this is an address suggestion
207  * @param plugin_name 0-termintated string specifying the transport plugin
208  * @param plugin_addr binary address for the plugin to use
209  * @param plugin_addr_len number of bytes in plugin_addr
210  * @param active is this address active
211  * @param atsi performance data for the address
212  * @param atsi_count number of performance records in 'ats'
213  * @param bandwidth_out assigned outbound bandwidth
214  * @param bandwidth_in assigned inbound bandwidth
215  */
216 void
217 GAS_performance_notify_all_clients (const struct GNUNET_PeerIdentity *peer,
218                                 const char *plugin_name,
219                                 const void *plugin_addr, size_t plugin_addr_len,
220                                 const int active,
221                                 const struct GNUNET_ATS_Information *atsi,
222                                 uint32_t atsi_count,
223                                 struct GNUNET_BANDWIDTH_Value32NBO
224                                 bandwidth_out,
225                                 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in)
226 {
227   struct PerformanceClient *pc;
228   for (pc = pc_head; pc != NULL; pc = pc->next)
229     if (pc->flag == START_FLAG_PERFORMANCE_WITH_PIC)
230     {
231         GAS_performance_notify_client (pc,
232                                        peer,
233                                        plugin_name, plugin_addr, plugin_addr_len,
234                                        active,
235                                        atsi, atsi_count,
236                                        bandwidth_out, bandwidth_in);
237     }
238   GNUNET_STATISTICS_update (GSA_stats,
239                             "# performance updates given to clients", 1,
240                             GNUNET_NO);
241 }
242
243
244 static void
245 peerinfo_it (void *cls,
246              const struct GNUNET_PeerIdentity *id,
247              const char *plugin_name,
248              const void *plugin_addr, size_t plugin_addr_len,
249              const int active,
250              const struct GNUNET_ATS_Information *atsi,
251              uint32_t atsi_count,
252              struct GNUNET_BANDWIDTH_Value32NBO
253              bandwidth_out,
254              struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in)
255 {
256   struct PerformanceClient *pc = cls;
257   GNUNET_assert (NULL != pc);
258   if (NULL == id)
259     return;
260
261   if (GNUNET_NO == active)
262     return;
263
264   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
265               "Callback for peer `%s' plugin `%s' BW out %llu, BW in %llu \n",
266               GNUNET_i2s (id),
267               plugin_name,
268               ntohl (bandwidth_out.value__),
269               ntohl (bandwidth_in.value__));
270   GAS_performance_notify_client(pc,
271                                 id,
272                                 plugin_name,
273                                 plugin_addr,
274                                 plugin_addr_len,
275                                 active,
276                                 atsi, atsi_count,
277                                 bandwidth_out, bandwidth_in);
278 }
279
280
281 /**
282  * Iterator for GAS_performance_add_client
283  *
284  * @param cls the client requesting information
285  * @param id result
286  */
287 static void
288 peer_it (void *cls,
289          const struct GNUNET_PeerIdentity *id)
290 {
291   struct PerformanceClient *pc = cls;
292   if (NULL != id)
293   {
294     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Callback for peer `%s'\n", GNUNET_i2s (id));
295     GAS_addresses_get_peer_info (GSA_addresses, id, &peerinfo_it, pc);
296   }
297 }
298
299 /**
300  * Register a new performance client.
301  *
302  * @param client handle of the new client
303  * @param flag flag specifying the type of the client
304  */
305 void
306 GAS_performance_add_client (struct GNUNET_SERVER_Client *client,
307                             enum StartFlag flag)
308 {
309   struct PerformanceClient *pc;
310   GNUNET_break (NULL == find_client (client));
311
312   pc = GNUNET_malloc (sizeof (struct PerformanceClient));
313   pc->client = client;
314   pc->flag = flag;
315   GNUNET_SERVER_notification_context_add (nc, client);
316   GNUNET_CONTAINER_DLL_insert (pc_head, pc_tail, pc);
317
318   /* Send information about clients */
319   GAS_addresses_iterate_peers (GSA_addresses, &peer_it, pc);
320 }
321
322
323 static void transmit_req_addr (struct AddressIteration *ai,
324     const struct GNUNET_PeerIdentity *id,
325     const char *plugin_name,
326     const void *plugin_addr, size_t plugin_addr_len,
327     const int active,
328     const struct GNUNET_ATS_Information *atsi,
329     uint32_t atsi_count,
330     struct GNUNET_BANDWIDTH_Value32NBO
331     bandwidth_out,
332     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in)
333
334 {
335   struct GNUNET_ATS_Information *atsp;
336   struct PeerInformationMessage *msg;
337   char *addrp;
338   size_t plugin_name_length;
339   size_t msize;
340
341   if (NULL != plugin_name)
342     plugin_name_length = strlen (plugin_name) + 1;
343   else
344     plugin_name_length = 0;
345   msize = sizeof (struct PeerInformationMessage) +
346           atsi_count * sizeof (struct GNUNET_ATS_Information) +
347           plugin_addr_len + plugin_name_length;
348   char buf[msize] GNUNET_ALIGN;
349
350   GNUNET_assert (msize < GNUNET_SERVER_MAX_MESSAGE_SIZE);
351   GNUNET_assert (atsi_count <
352                  GNUNET_SERVER_MAX_MESSAGE_SIZE /
353                  sizeof (struct GNUNET_ATS_Information));
354   msg = (struct PeerInformationMessage *) buf;
355   msg->header.size = htons (msize);
356   msg->header.type = htons (GNUNET_MESSAGE_TYPE_ATS_ADDRESSLIST_RESPONSE);
357   msg->ats_count = htonl (atsi_count);
358   msg->id = htonl (ai->id);
359   if (NULL != id)
360     msg->peer = *id;
361   else
362     memset (&msg->peer, '\0', sizeof (struct GNUNET_PeerIdentity));
363   msg->address_length = htons (plugin_addr_len);
364   msg->address_active = ntohl (active);
365   msg->plugin_name_length = htons (plugin_name_length);
366   msg->bandwidth_out = bandwidth_out;
367   msg->bandwidth_in = bandwidth_in;
368   atsp = (struct GNUNET_ATS_Information *) &msg[1];
369   memcpy (atsp, atsi, sizeof (struct GNUNET_ATS_Information) * atsi_count);
370   addrp = (char *) &atsp[atsi_count];
371   if (NULL != plugin_addr)
372     memcpy (addrp, plugin_addr, plugin_addr_len);
373   if (NULL != plugin_name)
374     strcpy (&addrp[plugin_addr_len], plugin_name);
375   GNUNET_SERVER_notification_context_unicast (nc, ai->pc->client, &msg->header,
376                                               GNUNET_NO);
377 }
378
379 static void
380 req_addr_peerinfo_it (void *cls,
381              const struct GNUNET_PeerIdentity *id,
382              const char *plugin_name,
383              const void *plugin_addr, size_t plugin_addr_len,
384              const int active,
385              const struct GNUNET_ATS_Information *atsi,
386              uint32_t atsi_count,
387              struct GNUNET_BANDWIDTH_Value32NBO
388              bandwidth_out,
389              struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in)
390 {
391   struct AddressIteration *ai = cls;
392
393   GNUNET_assert (NULL != ai);
394   GNUNET_assert (NULL != ai->pc);
395   if (NULL == find_client (ai->pc->client))
396     return; /* Client disconnected */
397
398   if ((NULL == id) && (NULL == plugin_name) && (NULL == plugin_addr))
399   {
400       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
401                   "Address iteration done\n");
402       return;
403   }
404   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
405               "Callback for  %s peer `%s' plugin `%s' BW out %u, BW in %u \n",
406               (active == GNUNET_YES) ? "ACTIVE" : "INACTIVE",
407               GNUNET_i2s (id),
408               plugin_name,
409               (unsigned int) ntohl (bandwidth_out.value__),
410               (unsigned int) ntohl (bandwidth_in.value__));
411
412   /* Transmit result */
413   if ((GNUNET_YES == ai->all) || (GNUNET_YES == active))
414   {
415       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
416                   "Sending result for  %s peer `%s' plugin `%s' BW out %u, BW in %u \n",
417                   (active == GNUNET_YES) ? "ACTIVE" : "INACTIVE",
418                   GNUNET_i2s (id),
419                   plugin_name,
420                   (unsigned int) ntohl (bandwidth_out.value__),
421                   (unsigned int) ntohl (bandwidth_in.value__));
422     transmit_req_addr (cls,
423         id,
424         plugin_name,
425         plugin_addr, plugin_addr_len,
426         active,
427         atsi,
428         atsi_count,
429         bandwidth_out, bandwidth_in);
430   }
431 }
432
433
434 /**
435  * Iterator for GAS_handle_request_address_list
436  *
437  * @param cls the client requesting information
438  * @param id result
439  */
440 static void
441 req_addr_peer_it (void *cls,
442          const struct GNUNET_PeerIdentity *id)
443 {
444   struct AddressIteration *ai = cls;
445   if (NULL != id)
446   {
447     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Callback for peer `%s'\n", GNUNET_i2s (id));
448     GAS_addresses_get_peer_info (GSA_addresses, id, &req_addr_peerinfo_it, ai);
449   }
450   else
451   {
452       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer iteration done\n");
453   }
454 }
455
456
457 /**
458  * Handle 'address list request' messages from clients.
459  *
460  * @param cls unused, NULL
461  * @param client client that sent the request
462  * @param message the request message
463  */
464 void
465 GAS_handle_request_address_list (void *cls, struct GNUNET_SERVER_Client *client,
466                                  const struct GNUNET_MessageHeader *message)
467 {
468   struct PerformanceClient *pc;
469   struct AddressIteration ai;
470   struct AddressListRequestMessage * alrm = (struct AddressListRequestMessage *) message;
471   struct GNUNET_PeerIdentity allzeros;
472   struct GNUNET_BANDWIDTH_Value32NBO bandwidth_zero;
473
474   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' message\n",
475               "ADDRESSLIST_REQUEST");
476
477   if (NULL == (pc = find_client(client)))
478   {
479       GNUNET_break (0);
480       return;
481   }
482
483   ai.all = ntohl (alrm->all);
484   ai.id = ntohl (alrm->id);
485   ai.pc = pc;
486
487   memset (&allzeros, '\0', sizeof (struct GNUNET_PeerIdentity));
488   bandwidth_zero.value__ = htonl (0);
489   if (0 == memcmp (&alrm->peer, &allzeros, sizeof (struct GNUNET_PeerIdentity)))
490   {
491       /* Return addresses for all peers */
492       GAS_addresses_iterate_peers (GSA_addresses, &req_addr_peer_it, &ai);
493       transmit_req_addr (&ai, NULL, NULL, NULL, 0, GNUNET_NO, NULL, 0, bandwidth_zero, bandwidth_zero);
494   }
495   else
496   {
497       /* Return addresses for a specific peer */
498       GAS_addresses_get_peer_info (GSA_addresses, &alrm->peer, &req_addr_peerinfo_it, &ai);
499       transmit_req_addr (&ai, NULL, NULL, NULL, 0, GNUNET_NO, NULL, 0, bandwidth_zero, bandwidth_zero);
500   }
501   GNUNET_SERVER_receive_done (client, GNUNET_OK);
502 }
503
504
505 void
506 GAS_handle_performance_update (struct GNUNET_PeerIdentity *peer,
507                                                                                                                          const char *plugin_name,
508                                                                                                                          const void *plugin_addr,
509                                                                                                                          size_t plugin_addr_len,
510                                                                                                                          const int active,
511                                                                                                                          struct GNUNET_ATS_Information *ats,
512                                                                                                                          uint32_t ats_count,
513                                                                                                                          struct GNUNET_BANDWIDTH_Value32NBO
514                                                                                                                          bandwidth_out,
515                                                                                                                          struct GNUNET_BANDWIDTH_Value32NBO
516                                                                                                                          bandwidth_in)
517 {
518 /* Notify here */
519         GAS_performance_notify_all_clients (peer,
520                                                                                                                                                         plugin_name,
521                                                                                                                                                         plugin_addr, plugin_addr_len,
522                                                                                                                                                         active,
523                                                                                                                                                         ats, ats_count,
524                                                                                                                                                         bandwidth_out, bandwidth_in);
525
526 #if 0
527         struct PerformanceClient *cur;
528         struct PerformanceMonitorClient *curm;
529         struct MonitorResponseMessage *mrm;
530         size_t msglen;
531
532         msglen = sizeof (struct MonitorResponseMessage) +
533                                          ats_count * sizeof (struct GNUNET_ATS_Information);
534         mrm = GNUNET_malloc (msglen);
535
536         mrm->header.type = htons (GNUNET_MESSAGE_TYPE_ATS_MONITOR_RESPONSE);
537         mrm->header.size = htons (msglen);
538         mrm->ats_count = htonl (ats_count);
539         mrm->peer = *peer;
540         memcpy (&mrm[1], ats, ats_count * sizeof (struct GNUNET_ATS_Information));
541
542         for (cur = pc_head; NULL != cur; cur = cur->next)
543                 for (curm = cur->pm_head; NULL != curm; curm = curm->next)
544                 {
545                                 /* Notify client about update */
546                                 mrm->id = htonl (curm->id);
547                           GNUNET_SERVER_notification_context_unicast (nc,
548                                         cur->client,
549                                         (struct GNUNET_MessageHeader *) mrm,
550                                         GNUNET_YES);
551                 }
552         GNUNET_free (mrm);
553 #endif
554 }
555
556
557 /**
558  * Handle 'reservation request' messages from clients.
559  *
560  * @param cls unused, NULL
561  * @param client client that sent the request
562  * @param message the request message
563  */
564 void
565 GAS_handle_reservation_request (void *cls, struct GNUNET_SERVER_Client *client,
566                                 const struct GNUNET_MessageHeader *message)
567 {
568   const struct ReservationRequestMessage *msg =
569       (const struct ReservationRequestMessage *) message;
570   struct ReservationResultMessage result;
571   int32_t amount;
572   struct GNUNET_TIME_Relative res_delay;
573
574   if (NULL == find_client (client))
575   {
576     /* missing start message! */
577     GNUNET_break (0);
578     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
579     return;
580   }
581   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' message\n",
582               "RESERVATION_REQUEST");
583   amount = (int32_t) ntohl (msg->amount);
584   res_delay = GAS_reservations_reserve (&msg->peer, amount);
585   if (res_delay.rel_value_us > 0)
586     amount = 0;
587   result.header.size = htons (sizeof (struct ReservationResultMessage));
588   result.header.type = htons (GNUNET_MESSAGE_TYPE_ATS_RESERVATION_RESULT);
589   result.amount = htonl (amount);
590   result.peer = msg->peer;
591   result.res_delay = GNUNET_TIME_relative_hton (res_delay);
592   GNUNET_STATISTICS_update (GSA_stats, "# reservation requests processed", 1,
593                             GNUNET_NO);
594   GNUNET_SERVER_notification_context_unicast (nc, client, &result.header,
595                                               GNUNET_NO);
596   GNUNET_SERVER_receive_done (client, GNUNET_OK);
597 }
598
599
600 /**
601  * Handle 'preference change' messages from clients.
602  *
603  * @param cls unused, NULL
604  * @param client client that sent the request
605  * @param message the request message
606  */
607 void
608 GAS_handle_preference_change (void *cls,
609                               struct GNUNET_SERVER_Client *client,
610                               const struct GNUNET_MessageHeader *message)
611 {
612   const struct ChangePreferenceMessage *msg;
613   const struct PreferenceInformation *pi;
614   uint16_t msize;
615   uint32_t nump;
616   uint32_t i;
617
618   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' message\n",
619               "PREFERENCE_CHANGE");
620   msize = ntohs (message->size);
621   if (msize < sizeof (struct ChangePreferenceMessage))
622   {
623     GNUNET_break (0);
624     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
625     return;
626   }
627   msg = (const struct ChangePreferenceMessage *) message;
628   nump = ntohl (msg->num_preferences);
629   if (msize !=
630       sizeof (struct ChangePreferenceMessage) +
631       nump * sizeof (struct PreferenceInformation))
632   {
633     GNUNET_break (0);
634     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
635     return;
636   }
637   GNUNET_STATISTICS_update (GSA_stats, "# preference change requests processed",
638                             1, GNUNET_NO);
639   pi = (const struct PreferenceInformation *) &msg[1];
640   for (i = 0; i < nump; i++)
641     GAS_addresses_change_preference (GSA_addresses,
642                                      client,
643                                      &msg->peer,
644                                      (enum GNUNET_ATS_PreferenceKind)
645                                      ntohl (pi[i].preference_kind),
646                                      pi[i].preference_value);
647   GNUNET_SERVER_receive_done (client, GNUNET_OK);
648 }
649
650
651 /**
652  * Handle 'preference feedback' messages from clients.
653  *
654  * @param cls unused, NULL
655  * @param client client that sent the request
656  * @param message the request message
657  */
658 void
659 GAS_handle_preference_feedback (void *cls,
660                               struct GNUNET_SERVER_Client *client,
661                               const struct GNUNET_MessageHeader *message)
662 {
663   const struct FeedbackPreferenceMessage *msg;
664   const struct PreferenceInformation *pi;
665   uint16_t msize;
666   uint32_t nump;
667   uint32_t i;
668
669   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' message\n",
670               "PREFERENCE_FEEDBACK");
671   msize = ntohs (message->size);
672   if (msize < sizeof (struct FeedbackPreferenceMessage))
673   {
674     GNUNET_break (0);
675     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
676     return;
677   }
678   msg = (const struct FeedbackPreferenceMessage *) message;
679   nump = ntohl (msg->num_feedback);
680   if (msize !=
681       sizeof (struct FeedbackPreferenceMessage) +
682       nump * sizeof (struct PreferenceInformation))
683   {
684     GNUNET_break (0);
685     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
686     return;
687   }
688   GNUNET_STATISTICS_update (GSA_stats, "# preference feedbacks requests processed",
689                             1, GNUNET_NO);
690   pi = (const struct PreferenceInformation *) &msg[1];
691   for (i = 0; i < nump; i++)
692     GAS_addresses_preference_feedback (GSA_addresses,
693                                      client,
694                                      &msg->peer,
695                                      GNUNET_TIME_relative_ntoh(msg->scope),
696                                      (enum GNUNET_ATS_PreferenceKind)
697                                      ntohl (pi[i].preference_kind),
698                                      pi[i].preference_value);
699   GNUNET_SERVER_receive_done (client, GNUNET_OK);
700 }
701
702
703
704 /**
705  * Initialize performance subsystem.
706  *
707  * @param server handle to our server
708  * @param addresses the address handle to use
709  */
710 void
711 GAS_performance_init (struct GNUNET_SERVER_Handle *server,
712                       struct GAS_Addresses_Handle *addresses)
713 {
714   GSA_addresses = addresses;
715   nc = GNUNET_SERVER_notification_context_create (server, 128);
716 }
717
718
719 /**
720  * Shutdown performance subsystem.
721  */
722 void
723 GAS_performance_done ()
724 {
725   GNUNET_SERVER_notification_context_destroy (nc);
726   nc = NULL;
727 }
728
729 /* end of gnunet-service-ats_performance.c */