aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_http_common.c
blob: 5dd3413e1ebe9df9c1e2d166f43c954856312aa5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
/*
     This file is part of GNUnet
     (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Christian Grothoff (and other contributing authors)

     GNUnet is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published
     by the Free Software Foundation; either version 3, or (at your
     option) any later version.

     GNUnet is distributed in the hope that it will be useful, but
     WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     General Public License for more details.

     You should have received a copy of the GNU General Public License
     along with GNUnet; see the file COPYING.  If not, write to the
     Free Software Foundation, Inc., 59 Temple Place - Suite 330,
     Boston, MA 02111-1307, USA.
*/

/**
 * @file transport/plugin_transport_http_common.c
 * @brief functionality shared by http client and server transport service plugin
 * @author Matthias Wachs
 */

#include "platform.h"
#include "gnunet_common.h"
#include "gnunet_transport_plugin.h"

/**
 * Convert the transports address to a nice, human-readable
 * format.
 *
 * @param cls closure
 * @param type name of the transport that generated the address
 * @param addr one of the addresses of the host, NULL for the last address
 *        the specific address format depends on the transport
 * @param addrlen length of the address
 * @param numeric should (IP) addresses be displayed in numeric form?
 * @param timeout after how long should we give up?
 * @param asc function to call on each string
 * @param asc_cls closure for asc
 */
void
http_common_plugin_address_pretty_printer (void *cls, const char *type,
                                        const void *addr, size_t addrlen,
                                        int numeric,
                                        struct GNUNET_TIME_Relative timeout,
                                        GNUNET_TRANSPORT_AddressStringCallback
                                        asc, void *asc_cls)
{
  const char *saddr = (const char *) addr;

  if ( (NULL == saddr) ||
       (0 >= addrlen) ||
       ('\0' != saddr[addrlen-1]) )
  {
      asc (asc_cls, NULL);
      return;
  }
  asc (asc_cls, saddr);
  asc (asc_cls, NULL);
}


/**
 * Function called for a quick conversion of the binary address to
 * a numeric address.  Note that the caller must not free the
 * address and that the next call to this function is allowed
 * to override the address again.
 *
 * @param cls closure
 * @param addr binary address
 * @param addrlen length of the address
 * @return string representing the same address
 */
const char *
http_common_plugin_address_to_string (void *cls, const void *addr, size_t addrlen)
{
  const char *saddr = (const char *) addr;
  if (NULL == saddr)
      return NULL;
  if (0 >= addrlen)
    return NULL;
  if (saddr[addrlen-1] != '\0')
    return NULL;
  return saddr;
}

/**
 * Function called to convert a string address to
 * a binary address.
 *
 * @param cls closure ('struct Plugin*')
 * @param addr string address
 * @param addrlen length of the address
 * @param buf location to store the buffer
 *        If the function returns GNUNET_SYSERR, its contents are undefined.
 * @param added length of created address
 * @return GNUNET_OK on success, GNUNET_SYSERR on failure
 */
int
http_common_plugin_string_to_address (void *cls,
                        const char *addr,
                        uint16_t addrlen,
                        void **buf,
                        size_t *added)
{
  if (NULL == addr)
      return GNUNET_SYSERR;
  if (0 >= addrlen)
    return GNUNET_SYSERR;
  if (addr[addrlen-1] != '\0')
    return GNUNET_SYSERR;

  (*buf) = strdup (addr);
  (*added) = strlen (addr) + 1;
  return GNUNET_OK;
}

/**
 * Create a HTTP address from a socketaddr
 *
 * @param protocol protocol
 * @param addr sockaddr * address
 * @param addrlen length of the address
 * @return the string
 */
char *
http_common_address_from_socket (const char *protocol, const struct sockaddr *addr, socklen_t addrlen)
{
  char *res;
  GNUNET_asprintf(&res, "%s://%s", protocol, GNUNET_a2s (addr, addrlen));
  return res;
}

/**
 * Create a socketaddr from a HTTP address
 *
 * @param addr sockaddr * address
 * @param addrlen length of the address
 * @param res the result:
 * GNUNET_SYSERR, invalid input,
 * GNUNET_YES: could convert to ip,
 * GNUNET_NO: valid input but could not convert to ip (hostname?)
 * @return the string
 */
struct sockaddr *
http_common_socket_from_address (const void *addr, size_t addrlen, int *res)
{
  struct sockaddr_storage *s;
  char *addrs;
  char *addrs_org;
  char *addrs_end;
  (*res) = GNUNET_SYSERR;

  if (NULL == addr)
    {
      GNUNET_break (0);
      return NULL;
    }
  if (0 >= addrlen)
    {
      GNUNET_break (0);
      return NULL;
    }
  if (((char *) addr)[addrlen-1] != '\0')
    {
      GNUNET_break (0);
      return NULL;
    }

  addrs_org = strdup ((char *) addr);
  addrs = strstr (addrs_org , "://");
  if (NULL == addrs)
  {
    GNUNET_break (0);
    GNUNET_free (addrs_org);
    return NULL;
  }

  if (strlen (addrs) < 3)
  {
    GNUNET_break (0);
    GNUNET_free (addrs_org);
    return NULL;
  }

  addrs += 3;

  addrs_end = strchr (addrs, '/');
  if (NULL != addrs_end)
    addrs[strlen (addrs) - strlen(addrs_end)] = '\0';

  s = GNUNET_malloc (sizeof (struct sockaddr_storage));
  if (GNUNET_SYSERR == GNUNET_STRINGS_to_address_ip (addrs, strlen(addrs), s))
  {
    /* could be a hostname */
    GNUNET_free (s);
    GNUNET_free (addrs_org);
    (*res) = GNUNET_NO;
    return NULL;
  }
  else
  {
    if ((AF_INET != s->ss_family) && (AF_INET6 != s->ss_family))
    {
      GNUNET_break (0);
      GNUNET_free (s);
      GNUNET_free (addrs_org);
      (*res) = GNUNET_SYSERR;
      return NULL;
    }
  }
  (*res) = GNUNET_YES;
  GNUNET_free (addrs_org);
  return (struct sockaddr *) s;
}

/**
 * Get the length of an address
 *
 * @param addr address
 * @return the size
 */
size_t
http_common_address_get_size (const void *addr)
{
 return strlen (addr) + 1;
}

/**
 * Compare addr1 to addr2
 *
 * @param addr1 address1
 * @param addrlen1 address 1 length
 * @param addr2 address2
 * @param addrlen2 address 2 length
 * @return GNUNET_YES if equal, GNUNET_NO if not, GNUNET_SYSERR on error
 */
int
http_common_cmp_addresses (const void *addr1, size_t addrlen1, const void *addr2, size_t addrlen2)
{
  const char *a1 = (const char *) addr1;
  const char *a2 = (const char *) addr2;

  if (NULL == a1)
      return GNUNET_SYSERR;
  if (0 >= addrlen1)
    return GNUNET_SYSERR;
  if (a1[addrlen1-1] != '\0')
    return GNUNET_SYSERR;

  if (NULL == a2)
      return GNUNET_SYSERR;
  if (0 >= addrlen2)
    return GNUNET_SYSERR;
  if (a2[addrlen2-1] != '\0')
    return GNUNET_SYSERR;

  if (addrlen1 != addrlen2)
    return GNUNET_NO;

  if (0 == strcmp (addr1, addr2))
    return GNUNET_YES;
  return GNUNET_NO;
}



/* end of plugin_transport_http_common.c */