5ba430a7627112c36318714bdaedfeb3eddc9c86
[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   struct GNUNET_SERVER_Client *session_client;
38                    
39   uint32_t session_id;
40
41   uint32_t ats_count;
42
43   void * addr;
44
45   char * plugin;
46
47   struct GNUNET_TRANSPORT_ATS_Information * ats;
48 };
49
50
51 static struct GNUNET_CONTAINER_MultiHashMap * addresses;
52
53
54 struct CompareAddressContext
55 {
56   struct ATS_Address * search;
57   struct ATS_Address * result;
58 };
59
60
61 static int 
62 compare_address_it (void *cls,
63                     const GNUNET_HashCode * key,
64                     void *value)
65 {
66   struct CompareAddressContext * cac = cls;
67   struct ATS_Address * aa = (struct ATS_Address *) value;
68   if (0 == strcmp(aa->plugin, cac->search->plugin))
69   {
70     if ((aa->addr_len == cac->search->addr_len) &&
71         (0 == memcmp (aa->addr, cac->search->addr, aa->addr_len)))
72       cac->result = aa;
73     return GNUNET_NO;
74   }
75   return GNUNET_YES;
76 }
77
78
79 void
80 GAS_address_update (const struct GNUNET_PeerIdentity *peer,
81                     const char *plugin_name,
82                     const void *plugin_addr, size_t plugin_addr_len,
83                     struct GNUNET_SERVER_Client *session_client,
84                     uint32_t session_id,
85                     const struct GNUNET_TRANSPORT_ATS_Information *atsi,
86                     uint32_t atsi_count)
87 {
88   struct ATS_Address * aa;
89
90   /* FIXME: should test first if address already exists! */
91   aa = GNUNET_malloc (sizeof (struct ATS_Address) +
92                       atsi_count * sizeof (struct GNUNET_TRANSPORT_ATS_Information) +
93                       plugin_addr_len);
94   aa->peer = *peer;
95   aa->addr_len = plugin_addr_len;
96   aa->ats_count = atsi_count;
97   aa->ats = (struct GNUNET_TRANSPORT_ATS_Information *) &aa[1];  
98   memcpy (&aa->ats, atsi, atsi_count * sizeof (struct GNUNET_TRANSPORT_ATS_Information));
99   memcpy (aa->addr, plugin_addr, plugin_addr_len);
100   aa->plugin = GNUNET_strdup (plugin_name);
101   aa->session_client = session_client;
102   aa->session_id = session_id;
103
104   GNUNET_assert (GNUNET_OK == 
105                  GNUNET_CONTAINER_multihashmap_put(addresses, 
106                                                    &peer->hashPubKey, 
107                                                    aa, 
108                                                    GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE));
109 }
110
111
112 void
113 GAS_address_destroyed (const struct GNUNET_PeerIdentity *peer,
114                        const char *plugin_name,
115                        const void *plugin_addr, size_t plugin_addr_len,
116                        struct GNUNET_SERVER_Client *session_client,
117                        uint32_t session_id)
118 {
119 #if 0
120   struct ATS_Address * aa;
121
122   aa = find_address (peer, plugin_name, plugin_addr, plugin_addr_len, 
123                      session_client, session_id);
124   GNUNET_break (GNUNET_YES ==
125                 GNUNET_CONTAINER_multihashmap_remove(addresses, &peer->hashPubKey, aa));
126   GNUNET_free (aa);
127 #endif
128 }
129
130
131 void
132 GAS_addresses_request_address (const struct GNUNET_PeerIdentity *peer)
133 {
134 }
135
136
137 /**
138  * Initialize address subsystem.
139  */
140 void
141 GAS_addresses_init ()
142 {
143   addresses = GNUNET_CONTAINER_multihashmap_create(128);
144 }
145
146
147 /**
148  * Free memory of address.
149  *
150  * @param cls NULL
151  * @param key peer identity (unused)
152  * @param value the 'struct ATS_Address' to free
153  * @return GNUNET_OK (continue to iterate)
154  */
155 static int 
156 free_address_it (void *cls,
157                  const GNUNET_HashCode * key,
158                  void *value)
159 {
160   struct ATS_Address * aa = cls;
161   GNUNET_free (aa);
162   return GNUNET_OK;
163 }
164
165
166
167 /**
168  * Shutdown address subsystem.
169  */
170 void
171 GAS_addresses_done ()
172 {
173   GNUNET_CONTAINER_multihashmap_iterate (addresses, &free_address_it, NULL);
174   GNUNET_CONTAINER_multihashmap_destroy (addresses);
175 }
176
177
178 /* end of gnunet-service-ats_addresses.c */