f5de8973a0d86ffe84e923e177ff4a8820defa05
[oweals/gnunet.git] / src / ats / gnunet-service-ats_addresses.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_addresses.c
23  * @brief ats service address management
24  * @author Matthias Wachs
25  * @author Christian Grothoff
26  */
27 #include "platform.h"
28 #include "gnunet-service-ats_addresses.h"
29
30
31 struct ATS_Address
32 {
33   struct GNUNET_PeerIdentity peer;
34
35   size_t addr_len;
36
37   uint32_t session_id;
38
39   uint32_t ats_count;
40
41   void * addr;
42
43   char * plugin;
44
45   struct GNUNET_TRANSPORT_ATS_Information * ats;
46 };
47
48
49 static struct GNUNET_CONTAINER_MultiHashMap * addresses;
50
51
52 struct CompareAddressContext
53 {
54   struct ATS_Address * search;
55   struct ATS_Address * result;
56 };
57
58
59 static int 
60 compare_address_it (void *cls,
61                     const GNUNET_HashCode * key,
62                     void *value)
63 {
64   struct CompareAddressContext * cac = cls;
65   struct ATS_Address * aa = (struct ATS_Address *) value;
66   if (0 == strcmp(aa->plugin, cac->search->plugin))
67   {
68     if ((aa->addr_len == cac->search->addr_len) &&
69         (0 == memcmp (aa->addr, cac->search->addr, aa->addr_len)))
70       cac->result = aa;
71     return GNUNET_NO;
72   }
73   return GNUNET_YES;
74 }
75
76
77 static int 
78 free_address_it (void *cls,
79                  const GNUNET_HashCode * key,
80                  void *value)
81 {
82   struct ATS_Address * aa = cls;
83   GNUNET_free (aa);
84   return GNUNET_OK;
85 }
86
87
88 void
89 GAS_address_update (const struct GNUNET_PeerIdentity *peer,
90                     const char *plugin_name,
91                     const void *plugin_addr, size_t plugin_addr_len,
92                     struct GNUNET_SERVER_Client *session_client,
93                     uint32_t session_id,
94                     const struct GNUNET_TRANSPORT_ATS_Information *atsi,
95                     uint32_t atsi_count)
96 {
97   struct ATS_Address * aa;
98
99   /* FIXME: should test first if address already exists! */
100   aa = GNUNET_malloc (sizeof (struct ATS_Address) +
101                       atsi_count * sizeof (struct GNUNET_TRANSPORT_ATS_Information) +
102                       plugin_addr_len);
103   aa->peer = *peer;
104   aa->addr_len = plugin_addr_len;
105   aa->ats_count = atsi_count;
106   aa->ats = (struct GNUNET_TRANSPORT_ATS_Information *) &aa[1];  
107   memcpy (&aa->ats, atsi, atsi_count * sizeof (struct GNUNET_TRANSPORT_ATS_Information));
108   memcpy (aa->addr, plugin_addr, plugin_addr_len);
109   aa->plugin = GNUNET_strdup (plugin_name);
110   aa->session_id = session_id;
111
112   GNUNET_assert (GNUNET_OK == 
113                  GNUNET_CONTAINER_multihashmap_put(addresses, 
114                                                    &peer->hashPubKey, 
115                                                    aa, 
116                                                    GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE));
117 }
118
119
120 void
121 GAS_address_destroyed (const struct GNUNET_PeerIdentity *peer,
122                        const char *plugin_name,
123                        const void *plugin_addr, size_t plugin_addr_len,
124                        struct GNUNET_SERVER_Client *session_client,
125                        uint32_t session_id)
126 {
127 #if 0
128   struct ATS_Address * aa;
129
130   aa = find_address (peer, plugin_name, plugin_addr, plugin_addr_len, 
131                      session_client, session_id);
132   GNUNET_break (GNUNET_YES ==
133                 GNUNET_CONTAINER_multihashmap_remove(addresses, &peer->hashPubKey, aa));
134   GNUNET_free (aa);
135 #endif
136 }
137
138
139 void
140 GAS_addresses_request_address (const struct GNUNET_PeerIdentity *peer)
141 {
142 }
143
144
145 /**
146  */
147 void
148 GAS_addresses_done ()
149 {
150   GNUNET_CONTAINER_multihashmap_iterate (addresses, &free_address_it, NULL);
151   GNUNET_CONTAINER_multihashmap_destroy (addresses);
152 }
153
154
155 /**
156  */
157 void
158 GAS_addresses_init ()
159 {
160   addresses = GNUNET_CONTAINER_multihashmap_create(128);
161 }
162
163 /* end of gnunet-service-ats_addresses.c */