-misc stream hxing
[oweals/gnunet.git] / src / peerinfo-tool / gnunet-peerinfo.c
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2003, 2004, 2006, 2009, 2010 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 peerinfo-tool/gnunet-peerinfo.c
23  * @brief Print information about other known peers.
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_crypto_lib.h"
28 #include "gnunet_configuration_lib.h"
29 #include "gnunet_getopt_lib.h"
30 #include "gnunet_peerinfo_service.h"
31 #include "gnunet_transport_service.h"
32 #include "gnunet_program_lib.h"
33
34 static int no_resolve;
35
36 static int be_quiet;
37
38 static int get_self;
39
40 static struct GNUNET_PEERINFO_Handle *peerinfo;
41
42 static const struct GNUNET_CONFIGURATION_Handle *cfg;
43
44 struct PrintContext
45 {
46   struct GNUNET_PeerIdentity peer;
47   char **address_list;
48   unsigned int num_addresses;
49   uint32_t off;
50 };
51
52
53 static void
54 dump_pc (struct PrintContext *pc)
55 {
56   struct GNUNET_CRYPTO_HashAsciiEncoded enc;
57   unsigned int i;
58
59   GNUNET_CRYPTO_hash_to_enc (&pc->peer.hashPubKey, &enc);
60   printf (_("Peer `%s'\n"), (const char *) &enc);
61   for (i = 0; i < pc->num_addresses; i++)
62   {
63     printf ("\t%s\n", pc->address_list[i]);
64     GNUNET_free (pc->address_list[i]);
65   }
66   printf ("\n");
67   GNUNET_array_grow (pc->address_list, pc->num_addresses, 0);
68   GNUNET_free (pc);
69 }
70
71
72 /**
73  * Function to call with a human-readable format of an address
74  *
75  * @param cls closure
76  * @param address NULL on error, otherwise 0-terminated printable UTF-8 string
77  */
78 static void
79 process_resolved_address (void *cls, const char *address)
80 {
81   struct PrintContext *pc = cls;
82
83   if (address == NULL)
84   {
85     pc->off--;
86     if (pc->off == 0)
87       dump_pc (pc);
88     return;
89   }
90   GNUNET_array_append (pc->address_list, pc->num_addresses,
91                        GNUNET_strdup (address));
92 }
93
94
95 /**
96  * Iterator callback to go over all addresses.
97  *
98  * @param cls closure
99  * @param address the address
100  * @param expiration expiration time
101  * @return GNUNET_OK to keep the address and continue
102  */
103 static int
104 count_address (void *cls, const struct GNUNET_HELLO_Address *address,
105                struct GNUNET_TIME_Absolute expiration)
106 {
107   struct PrintContext *pc = cls;
108
109   pc->off++;
110   return GNUNET_OK;
111 }
112
113
114 /**
115  * Iterator callback to go over all addresses.
116  *
117  * @param cls closure
118  * @param address the address
119  * @param expiration expiration time
120  * @return GNUNET_OK to keep the address and continue
121  */
122 static int
123 print_address (void *cls, const struct GNUNET_HELLO_Address *address,
124                struct GNUNET_TIME_Absolute expiration)
125 {
126   struct PrintContext *pc = cls;
127
128   GNUNET_TRANSPORT_address_to_string (cfg, address, no_resolve,
129                                       GNUNET_TIME_relative_multiply
130                                       (GNUNET_TIME_UNIT_SECONDS, 10),
131                                       &process_resolved_address, pc);
132   return GNUNET_OK;
133 }
134
135
136 /**
137  * Print information about the peer.
138  * Currently prints the GNUNET_PeerIdentity and the IP.
139  * Could of course do more (e.g. resolve via DNS).
140  */
141 static void
142 print_peer_info (void *cls, const struct GNUNET_PeerIdentity *peer,
143                  const struct GNUNET_HELLO_Message *hello, const char *err_msg)
144 {
145   struct GNUNET_CRYPTO_HashAsciiEncoded enc;
146   struct PrintContext *pc;
147
148   if (peer == NULL)
149   {
150     if (err_msg != NULL)
151       FPRINTF (stderr, "%s",  _("Error in communication with PEERINFO service\n"));
152     GNUNET_PEERINFO_disconnect (peerinfo);
153     return;
154   }
155   if ((be_quiet) || (NULL == hello))
156   {
157     GNUNET_CRYPTO_hash_to_enc (&peer->hashPubKey, &enc);
158     printf ("%s\n", (const char *) &enc);
159     return;
160   }
161   pc = GNUNET_malloc (sizeof (struct PrintContext));
162   pc->peer = *peer;
163   GNUNET_HELLO_iterate_addresses (hello, GNUNET_NO, &count_address, pc);
164   if (0 == pc->off)
165   {
166     dump_pc (pc);
167     return;
168   }
169   GNUNET_HELLO_iterate_addresses (hello, GNUNET_NO, &print_address, pc);
170 }
171
172
173 /**
174  * Main function that will be run by the scheduler.
175  *
176  * @param cls closure
177  * @param args remaining command-line arguments
178  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
179  * @param c configuration
180  */
181 static void
182 run (void *cls, char *const *args, const char *cfgfile,
183      const struct GNUNET_CONFIGURATION_Handle *c)
184 {
185   struct GNUNET_CRYPTO_RsaPrivateKey *priv;
186   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pub;
187   struct GNUNET_PeerIdentity pid;
188   struct GNUNET_CRYPTO_HashAsciiEncoded enc;
189   char *fn;
190
191   cfg = c;
192   if (args[0] != NULL)
193   {
194     FPRINTF (stderr, _("Invalid command line argument `%s'\n"), args[0]);
195     return;
196   }
197   if (get_self != GNUNET_YES)
198   {
199     peerinfo = GNUNET_PEERINFO_connect (cfg);
200     if (peerinfo == NULL)
201     {
202       FPRINTF (stderr, "%s",  _("Could not access PEERINFO service.  Exiting.\n"));
203       return;
204     }
205     GNUNET_PEERINFO_iterate (peerinfo, NULL,
206                              GNUNET_TIME_relative_multiply
207                              (GNUNET_TIME_UNIT_SECONDS, 5), &print_peer_info,
208                              NULL);
209   }
210   else
211   {
212     if (GNUNET_OK !=
213         GNUNET_CONFIGURATION_get_value_filename (cfg, "GNUNETD", "HOSTKEY",
214                                                  &fn))
215     {
216       FPRINTF (stderr, _("Could not find option `%s:%s' in configuration.\n"),
217                "GNUNETD", "HOSTKEYFILE");
218       return;
219     }
220     priv = GNUNET_CRYPTO_rsa_key_create_from_file (fn);
221     if (priv == NULL)
222     {
223       FPRINTF (stderr, _("Loading hostkey from `%s' failed.\n"), fn);
224       GNUNET_free (fn);
225       return;
226     }
227     GNUNET_free (fn);
228     GNUNET_CRYPTO_rsa_key_get_public (priv, &pub);
229     GNUNET_CRYPTO_rsa_key_free (priv);
230     GNUNET_CRYPTO_hash (&pub, sizeof (pub), &pid.hashPubKey);
231     GNUNET_CRYPTO_hash_to_enc (&pid.hashPubKey, &enc);
232     if (be_quiet)
233       printf ("%s\n", (char *) &enc);
234     else
235       printf (_("I am peer `%s'.\n"), (const char *) &enc);
236   }
237 }
238
239
240 /**
241  * The main function to obtain peer information.
242  *
243  * @param argc number of arguments from the command line
244  * @param argv command line arguments
245  * @return 0 ok, 1 on error
246  */
247 int
248 main (int argc, char *const *argv)
249 {
250   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
251     {'n', "numeric", NULL,
252      gettext_noop ("don't resolve host names"),
253      0, &GNUNET_GETOPT_set_one, &no_resolve},
254     {'q', "quiet", NULL,
255      gettext_noop ("output only the identity strings"),
256      0, &GNUNET_GETOPT_set_one, &be_quiet},
257     {'s', "self", NULL,
258      gettext_noop ("output our own identity only"),
259      0, &GNUNET_GETOPT_set_one, &get_self},
260     GNUNET_GETOPT_OPTION_END
261   };
262   return (GNUNET_OK ==
263           GNUNET_PROGRAM_run (argc, argv, "gnunet-peerinfo",
264                               gettext_noop ("Print information about peers."),
265                               options, &run, NULL)) ? 0 : 1;
266 }
267
268 /* end of gnunet-peerinfo.c */