-check if /dev/net/tun exists and skip test otherwise
[oweals/gnunet.git] / src / core / gnunet-core-list-connections.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 core/gnunet-core-list-connections.c
23  * @brief Print information about other known _connected_ peers.
24  * @author Nathan Evans
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_core_service.h"
33 #include "gnunet_program_lib.h"
34
35 #define VERBOSE 0
36 static int no_resolve;
37
38 #if VERBOSE
39 static unsigned int peer_count;
40 #endif
41
42 static const struct GNUNET_CONFIGURATION_Handle *cfg;
43
44 struct AddressStringList
45 {
46   /**
47    * Pointer to previous element.
48    */
49   struct AddressStringList *prev;
50
51   /**
52    * Pointer to next element.
53    */
54   struct AddressStringList *next;
55
56   /**
57    * Address as string.
58    */
59   char *address_string;
60 };
61
62 struct PrintContext
63 {
64   struct GNUNET_PeerIdentity peer;
65   struct AddressStringList *address_list_head;
66   struct AddressStringList *address_list_tail;
67 };
68
69
70 static void
71 dump_pc (struct PrintContext *pc)
72 {
73   struct GNUNET_CRYPTO_HashAsciiEncoded enc;
74   struct AddressStringList *address;
75
76   GNUNET_CRYPTO_hash_to_enc (&pc->peer.hashPubKey, &enc);
77   printf (_("Peer `%s'\n"), (const char *) &enc);
78   while (NULL != (address = pc->address_list_head))
79   {
80     printf ("\t%s\n", address->address_string);
81     GNUNET_free (address->address_string);
82     GNUNET_CONTAINER_DLL_remove (pc->address_list_head, pc->address_list_tail,
83                                  address);
84     GNUNET_free (address);
85   }
86
87   printf ("\n");
88
89   GNUNET_free (pc);
90 }
91
92
93 /**
94  * Function to call with a human-readable format of an address
95  *
96  * @param cls closure
97  * @param peer peer this update is about
98  * @param address NULL on error, otherwise 0-terminated printable UTF-8 string
99  */
100 static void
101 process_resolved_address (void *cls, const struct GNUNET_PeerIdentity *peer,
102                           const struct GNUNET_HELLO_Address *address)
103 {
104   struct PrintContext *pc = cls;
105
106 //  struct AddressStringList *new_address;
107
108   if (address == NULL)
109   {
110     dump_pc (pc);
111     return;
112   }
113
114   /* This does exactly the same as gnunet-transport -i ! */
115   /*
116    * new_address = GNUNET_malloc (sizeof (struct AddressStringList));
117    * #if VERBOSE
118    * FPRINTF (stderr, "Received address %s\n", address);
119    * #endif
120    *
121    * new_address->address_string = GNUNET_strdup ("FIXME");
122    * GNUNET_CONTAINER_DLL_insert (pc->address_list_head, pc->address_list_tail,
123    * new_address);
124    */
125 }
126
127
128 /**
129  * Callback for retrieving a list of connected peers.
130  */
131 static void
132 connected_peer_callback (void *cls, const struct GNUNET_PeerIdentity *peer,
133                          const struct GNUNET_ATS_Information *atsi,
134                          unsigned int atsi_count)
135 {
136   struct PrintContext *pc;
137
138   if (peer != NULL)             /* Not yet finished */
139   {
140 #if VERBOSE
141     FPRINTF (stderr, "Learned about peer %s\n", GNUNET_i2s (peer));
142     peer_count++;
143 #endif
144     pc = GNUNET_malloc (sizeof (struct PrintContext));
145     pc->peer = *peer;
146     GNUNET_TRANSPORT_peer_get_active_addresses (cfg, peer, GNUNET_YES,
147                                                 GNUNET_TIME_UNIT_MINUTES,
148                                                 &process_resolved_address, pc);
149   }
150 #if VERBOSE
151   else
152   {
153     FPRINTF (stderr, "Counted %u total connected peers.\n", peer_count);
154   }
155 #endif
156 }
157
158
159 /**
160  * Main function that will be run by the scheduler.
161  *
162  * @param cls closure
163  * @param args remaining command-line arguments
164  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
165  * @param c configuration
166  */
167 static void
168 run (void *cls, char *const *args, const char *cfgfile,
169      const struct GNUNET_CONFIGURATION_Handle *c)
170 {
171
172   cfg = c;
173   if (args[0] != NULL)
174   {
175     FPRINTF (stderr, _("Invalid command line argument `%s'\n"), args[0]);
176     return;
177   }
178
179   GNUNET_CORE_iterate_peers (cfg, &connected_peer_callback, NULL);
180
181 }
182
183
184 /**
185  * The main function to obtain peer information.
186  *
187  * @param argc number of arguments from the command line
188  * @param argv command line arguments
189  * @return 0 ok, 1 on error
190  */
191 int
192 main (int argc, char *const *argv)
193 {
194   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
195     {'n', "numeric", NULL,
196      gettext_noop ("don't resolve host names"),
197      0, &GNUNET_GETOPT_set_one, &no_resolve},
198     GNUNET_GETOPT_OPTION_END
199   };
200   return (GNUNET_OK ==
201           GNUNET_PROGRAM_run (argc, argv, "gnunet-list-connections",
202                               gettext_noop
203                               ("Print information about connected peers."),
204                               options, &run, NULL)) ? 0 : 1;
205 }
206
207 /* end of gnunet-core-list-connections.c */