switching transport tests to new MQ-based transport API
[oweals/gnunet.git] / src / hello / gnunet-hello.c
1 /*
2      This file is part of GNUnet
3      Copyright (C) 2012 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20 /**
21  * @file hello/gnunet-hello.c
22  * @brief change HELLO files to never expire
23  * @author Christian Grothoff
24  */
25 #include "platform.h"
26 #include "gnunet_protocols.h"
27 #include "gnunet_hello_lib.h"
28
29 /**
30  * Closure for #add_to_buf().
31  */
32 struct AddContext
33 {
34   /**
35    * Where to add.
36    */
37   char *buf;
38
39   /**
40    * Maximum number of bytes left
41    */
42   size_t max;
43
44   /**
45    * Number of bytes added so far.
46    */
47   size_t ret;
48 };
49
50 static int address_count;
51
52
53 /**
54  * Add the given address with infinit expiration to the buffer.
55  *
56  * @param cls closure
57  * @param address address to add
58  * @param expiration old expiration
59  * @return #GNUNET_OK keep iterating
60  */
61 static int
62 add_to_buf (void *cls,
63             const struct GNUNET_HELLO_Address *address,
64             struct GNUNET_TIME_Absolute expiration)
65 {
66   struct AddContext *ac = cls;
67   size_t ret;
68
69   ret = GNUNET_HELLO_add_address (address,
70                                   GNUNET_TIME_UNIT_FOREVER_ABS,
71                                   ac->buf,
72                                   ac->max);
73   ac->buf += ret;
74   ac->max -= ret;
75   ac->ret += ret;
76   address_count ++;
77   return GNUNET_OK;
78 }
79
80
81 /**
82  * Add addresses from the address list to the HELLO.
83  *
84  * @param cls the HELLO with the addresses to add
85  * @param max maximum space available
86  * @param buf where to add the addresses
87  * @return number of bytes added, 0 to terminate
88  */
89 static ssize_t
90 add_from_hello (void *cls,
91                 size_t max,
92                 void *buf)
93 {
94   struct GNUNET_HELLO_Message **orig = cls;
95   struct AddContext ac;
96
97   if (NULL == *orig)
98     return GNUNET_SYSERR; /* already done */
99   ac.buf = buf;
100   ac.max = max;
101   ac.ret = 0;
102   GNUNET_assert (NULL ==
103                  GNUNET_HELLO_iterate_addresses (*orig,
104                                                  GNUNET_NO, &add_to_buf,
105                                                  &ac));
106   *orig = NULL;
107   return ac.ret;
108 }
109
110
111 int
112 main (int argc, char *argv[])
113 {
114   struct GNUNET_DISK_FileHandle *fh;
115   struct GNUNET_HELLO_Message *orig;
116   struct GNUNET_HELLO_Message *result;
117   struct GNUNET_PeerIdentity pid;
118   uint64_t fsize;
119   address_count = 0;
120
121   GNUNET_log_setup ("gnunet-hello", "INFO", NULL);
122   if (argc != 2)
123   {
124     FPRINTF (stderr,
125              "%s",
126              _("Call with name of HELLO file to modify.\n"));
127     return 1;
128   }
129   if (GNUNET_OK != GNUNET_DISK_file_size (argv[1], &fsize, GNUNET_YES, GNUNET_YES))
130   {
131     FPRINTF (stderr,
132              _("Error accessing file `%s': %s\n"),
133              argv[1],
134              STRERROR (errno));
135     return 1;
136   }
137   if (fsize > 65536)
138   {
139     FPRINTF (stderr,
140              _("File `%s' is too big to be a HELLO\n"),
141              argv[1]);
142     return 1;
143   }
144   if (fsize < sizeof (struct GNUNET_MessageHeader))
145   {
146     FPRINTF (stderr,
147              _("File `%s' is too small to be a HELLO\n"),
148              argv[1]);
149     return 1;
150   }
151   fh = GNUNET_DISK_file_open (argv[1],
152                               GNUNET_DISK_OPEN_READ,
153                               GNUNET_DISK_PERM_USER_READ);
154   if (NULL == fh)
155   {
156     FPRINTF (stderr,
157              _("Error opening file `%s': %s\n"),
158              argv[1],
159              STRERROR (errno));
160     return 1;
161   }
162   {
163     char buf[fsize] GNUNET_ALIGN;
164
165     GNUNET_assert (fsize ==
166                    GNUNET_DISK_file_read (fh, buf, fsize));
167     GNUNET_assert (GNUNET_OK == GNUNET_DISK_file_close (fh));
168     orig = (struct GNUNET_HELLO_Message *) buf;
169     if ( (fsize < GNUNET_HELLO_size (orig)) ||
170          (GNUNET_OK != GNUNET_HELLO_get_id (orig,
171                                             &pid)) )
172     {
173       FPRINTF (stderr,
174                _("Did not find well-formed HELLO in file `%s'\n"),
175                argv[1]);
176       return 1;
177     }
178     {
179       char *pids;
180
181       pids = GNUNET_CRYPTO_eddsa_public_key_to_string (&pid.public_key);
182       fprintf (stdout,
183                "Processing HELLO for peer `%s'\n",
184                pids);
185       GNUNET_free (pids);
186     }
187     result = GNUNET_HELLO_create (&pid.public_key,
188                                   &add_from_hello,
189                                   &orig,
190                                   GNUNET_HELLO_is_friend_only (orig));
191     GNUNET_assert (NULL != result);
192      fh = GNUNET_DISK_file_open (argv[1],
193                                  GNUNET_DISK_OPEN_WRITE | GNUNET_DISK_OPEN_TRUNCATE,
194                                  GNUNET_DISK_PERM_USER_READ | GNUNET_DISK_PERM_USER_WRITE);
195      if (NULL == fh)
196      {
197        FPRINTF (stderr,
198                 _("Error opening file `%s': %s\n"),
199                 argv[1],
200                 STRERROR (errno));
201        GNUNET_free (result);
202        return 1;
203      }
204      fsize = GNUNET_HELLO_size (result);
205      if (fsize != GNUNET_DISK_file_write (fh,
206                                           result,
207                                           fsize))
208      {
209        FPRINTF (stderr,
210                 _("Error writing HELLO to file `%s': %s\n"),
211                 argv[1],
212                 STRERROR (errno));
213        (void) GNUNET_DISK_file_close (fh);
214        return 1;
215      }
216     GNUNET_assert (GNUNET_OK == GNUNET_DISK_file_close (fh));
217   }
218   FPRINTF (stderr,
219            _("Modified %u addresses, wrote %u bytes\n"),
220            address_count,
221            (unsigned int) fsize);
222   return 0;
223 }
224
225 /* end of gnunet-hello.c */