- unique constraint
[oweals/gnunet.git] / src / testbed / generate-underlay-topology.c
1 /*
2       This file is part of GNUnet
3       (C) 2008--2014 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 testbed/generate-underlay-topology.c
23  * @brief Program to generate a database file containing given underlay topology
24  * @author Sree Harsha Totakura <sreeharsha@totakura.in> 
25  */
26
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_testbed_service.h"
30 #include "testbed_api_topology.h"
31 #include "sqlite3.h"
32
33 #define LOG(type, ...)                          \
34   GNUNET_log (type, __VA_ARGS__)
35
36
37 #define LOG_ERROR(...)                          \
38   LOG (GNUNET_ERROR_TYPE_ERROR, __VA_ARGS__)
39
40 /**
41  * Log an error message at log-level 'level' that indicates
42  * a failure of the command 'cmd' on file 'filename'
43  * with the message given by strerror(errno).
44  */
45 #define LOG_SQLITE(db, msg, level, cmd)                                 \
46   do {                                                                  \
47     GNUNET_log_from (level, "sqlite", _("`%s' failed at %s:%d with error: %s\n"), \
48                      cmd, __FILE__,__LINE__, sqlite3_errmsg(db));  \
49     if (msg != NULL)                                                    \
50       GNUNET_asprintf(msg, _("`%s' failed at %s:%u with error: %s"), cmd, \
51                       __FILE__, __LINE__, sqlite3_errmsg(db));     \
52   } while(0)
53
54
55 /**
56  * Handle to the sqlite3 database
57  */
58 static struct sqlite3 *db;
59
60 /**
61  * Prepared statement for inserting link values into db
62  */
63 struct sqlite3_stmt *stmt_insert;
64
65 /**
66  * The topology to generate
67  */
68 enum GNUNET_TESTBED_TopologyOption topology;
69
70 /**
71  * The number of peers to include in the topology
72  */
73 static int num_peers;
74
75 /**
76  * program result
77  */
78 static int exit_result;
79
80
81 /**
82  * Functions of this type are called to process underlay link
83  *
84  * @param cls closure
85  * @param A offset of first peer
86  * @param B offset of second peer
87  * @param bandwidth the bandwidth of the link in bytes per second
88  * @param latency the latency of link in milliseconds
89  * @param loss the percentage of messages dropped on the link
90  * @return GNUNET_OK to continue processing; GNUNET_SYSERR to abort
91  */
92 static int
93 link_processor (void *cls,
94                 unsigned int A,
95                 unsigned int B,
96                 unsigned int bandwidth,
97                 unsigned int latency,
98                 unsigned int loss)
99 {
100   if ( (SQLITE_OK != sqlite3_bind_int (stmt_insert, 1, A)) ||
101        (SQLITE_OK != sqlite3_bind_int (stmt_insert, 2, B)) ||
102        (SQLITE_OK != sqlite3_bind_int (stmt_insert, 3, bandwidth)) ||
103        (SQLITE_OK != sqlite3_bind_int (stmt_insert, 4, latency)) ||
104        (SQLITE_OK != sqlite3_bind_int (stmt_insert, 5, loss)) )
105   {
106     LOG_SQLITE (db, NULL, GNUNET_ERROR_TYPE_ERROR, "sqlite3_bind_int");
107     return GNUNET_SYSERR;
108   }
109   if (SQLITE_DONE != sqlite3_step (stmt_insert))
110   {
111     LOG_SQLITE (db, NULL, GNUNET_ERROR_TYPE_ERROR, "sqlite3_step");
112     return GNUNET_SYSERR;
113   }
114   FPRINTF (stdout, "%u -> %u\n", A, B);
115   GNUNET_break (SQLITE_OK == sqlite3_reset (stmt_insert));
116   //GNUNET_break (SQLITE_OK == sqlite3_clear_bindings (stmt_insert));
117   return GNUNET_OK;
118 }
119
120
121 /**
122  * Open the database file, creating a new database if not existing and setup the
123  * whitelist table
124  *
125  * @param dbfile the database filename
126  * @return GNUNET_OK upon success; GNUNET_SYSERR upon failure (error message has
127  * to be printed)
128  */
129 static int
130 setup_db (const char *dbfile)
131 {
132   const char *query_create =
133       "CREATE TABLE whitelist ("
134       "id INTEGER,"
135       "oid INTEGER,"
136       "bandwidth INTEGER DEFAULT NULL,"
137       "latency INTEGER DEFAULT NULL,"
138       "loss INTEGER DEFAULT NULL,"
139       " UNIQUE ("
140       "  id,"
141       "  oid"
142       " ) ON CONFLICT IGNORE"
143       ");";
144   const char *query_insert =
145       "INSERT INTO whitelist("
146       " id,"
147       " oid,"
148       " bandwidth,"
149       " latency,"
150       " loss"
151       ") VALUES ("
152       " ?1,"
153       " ?2,"
154       " ?3,"
155       " ?4," 
156       " ?5);";
157   int ret;
158   
159   ret = GNUNET_SYSERR;
160   if (SQLITE_OK != sqlite3_open (dbfile, &db))
161   {
162     LOG_SQLITE (db, NULL, GNUNET_ERROR_TYPE_ERROR, "sqlite3_open");
163     goto err_ret;
164   }
165   if (0 != sqlite3_exec (db, query_create, NULL, NULL, NULL))
166   {
167     LOG_SQLITE (db, NULL, GNUNET_ERROR_TYPE_ERROR, "sqlite3_exec");
168     FPRINTF (stderr, "Perhaps the database `%s' already exits.\n", dbfile);
169     goto err_ret;
170   }
171   GNUNET_break (0 == sqlite3_exec (db, "PRAGMA synchronous = 0;", NULL, NULL, NULL));
172   if (SQLITE_OK != sqlite3_prepare_v2 (db, query_insert, -1,
173                                        &stmt_insert, NULL))
174   {
175     LOG_SQLITE (db, NULL, GNUNET_ERROR_TYPE_ERROR, "sqlite3_prepare_v2");
176     goto err_ret;
177   }
178   ret = GNUNET_OK;
179
180  err_ret:
181   return ret;
182 }
183
184
185 /**
186  * Main run function.
187  *
188  * @param cls NULL
189  * @param args arguments passed to GNUNET_PROGRAM_run
190  * @param cfgfile the path to configuration file
191  * @param cfg the configuration file handle
192  */
193 static void
194 run (void *cls, char *const *args, const char *cfgfile,
195      const struct GNUNET_CONFIGURATION_Handle *config)
196 {
197   const char *dbfile;
198   const char *topology_string;
199   unsigned int arg_uint1;
200   unsigned int arg_uint2;
201   const char *arg_str1;
202   const char *value;
203   unsigned int argc;
204
205   argc = 0;
206   if (NULL == args)
207   {
208     LOG_ERROR (_("Need atleast 2 arguments\n"));
209     return;
210   }
211   if (NULL == (dbfile = args[argc++]))
212   {
213     LOG_ERROR (_("Database filename missing\n"));
214     return;
215   }
216   if (GNUNET_OK != setup_db (dbfile))
217     return;
218   if (NULL == (topology_string = args[argc++]))
219   {
220     LOG_ERROR (_("Topology string missing\n"));
221     return;
222   }
223   if (GNUNET_YES != GNUNET_TESTBED_topology_get_ (&topology, topology_string))
224   {
225     LOG_ERROR (_("Invalid topology: %s\n"), topology_string);
226     return;
227   }
228   /* parse for first TOPOOPT.  This can either be arg_uint1 or arg_str1 */
229   switch (topology)
230   {
231   case GNUNET_TESTBED_TOPOLOGY_ERDOS_RENYI:
232   case GNUNET_TESTBED_TOPOLOGY_SMALL_WORLD_RING:
233   case GNUNET_TESTBED_TOPOLOGY_SMALL_WORLD:
234   case GNUNET_TESTBED_TOPOLOGY_SCALE_FREE:
235     if (NULL == (value = args[argc++]))
236     {
237       LOG_ERROR (_("An argument is missing for given topology `%s'\n"),
238                  topology_string);
239       return;
240     }
241     if (-1 == SSCANF (value, "%u", &arg_uint1))
242     {
243       LOG_ERROR (_("Invalid argument `%s' given as topology argument\n"),
244                  value);
245       return;
246     }
247     break;
248   case GNUNET_TESTBED_TOPOLOGY_FROM_FILE:
249     if (NULL == (arg_str1 = args[argc++]))
250     {
251       LOG_ERROR (_("Filename argument missing for topology `%s'\n"),
252                  topology_string);
253       return;
254     }
255     break;
256   default:
257     GNUNET_assert (0);
258   }
259   /* parse for second TOPOOPT.  Only required for SCALE_FREE topology */
260   switch (topology)
261   {
262   case GNUNET_TESTBED_TOPOLOGY_SCALE_FREE:
263     if (NULL == (value = args[argc++]))
264     {
265       LOG_ERROR (_("Second argument for topology `%s' is missing\n"),
266                  topology_string);
267       return;
268     }
269     if (-1 == SSCANF (value, "%u", &arg_uint2))
270     {
271       LOG_ERROR (_("Invalid argument `%s'; expecting unsigned int\n"), value);
272       return;
273     }
274     break;
275   default:
276     break;
277   }
278   /* contruct topologies */
279   switch (topology)
280   {
281   case GNUNET_TESTBED_TOPOLOGY_LINE:
282   case GNUNET_TESTBED_TOPOLOGY_RING:
283   case GNUNET_TESTBED_TOPOLOGY_CLIQUE:
284   case GNUNET_TESTBED_TOPOLOGY_2D_TORUS:
285     GNUNET_TESTBED_underlay_construct_ (num_peers, link_processor, NULL,
286                                         topology);
287     break;
288   case GNUNET_TESTBED_TOPOLOGY_ERDOS_RENYI:
289   case GNUNET_TESTBED_TOPOLOGY_SMALL_WORLD_RING:
290   case GNUNET_TESTBED_TOPOLOGY_SMALL_WORLD:
291     GNUNET_TESTBED_underlay_construct_ (num_peers, link_processor, NULL,
292                                         topology,
293                                         arg_uint1);
294     break;
295   case GNUNET_TESTBED_TOPOLOGY_FROM_FILE:
296     GNUNET_TESTBED_underlay_construct_ (num_peers, link_processor, NULL,
297                                         topology,
298                                         arg_str1);
299     break;
300   case GNUNET_TESTBED_TOPOLOGY_SCALE_FREE:
301     GNUNET_TESTBED_underlay_construct_ (num_peers, link_processor, NULL,
302                                         topology,
303                                         arg_uint1,
304                                         arg_uint2);
305     break;
306   default:
307     GNUNET_assert (0);
308   }
309 }
310
311
312 /**
313  * Main
314  */
315 int
316 main (int argc, char *const argv[])
317 {
318   struct GNUNET_GETOPT_CommandLineOption option[] = {
319     {'p', "num-peers", "COUNT",
320      gettext_noop ("create COUNT number of peers"),
321      GNUNET_YES, &GNUNET_GETOPT_set_uint, &num_peers},
322     GNUNET_GETOPT_OPTION_END
323   };
324   int ret;
325   
326   exit_result = GNUNET_SYSERR;
327   ret =
328       GNUNET_PROGRAM_run (argc, argv, "gnunet-underlay-topology",
329                           _("Generates SQLite3 database representing a given underlay topology.\n"
330                             "Usage: gnunet-underlay-topology [OPTIONS] db-filename TOPO [TOPOOPTS]\n"
331                             "The following options are available for TOPO followed by TOPOOPTS if applicable:\n"
332                             "\t LINE\n"
333                             "\t RING\n"
334                             "\t RANDOM <num_rnd_links>\n"
335                             "\t SMALL_WORLD <num_rnd_links>\n"
336                             "\t SMALL_WORLD_RING <num_rnd_links>\n"
337                             "\t CLIQUE\n"
338                             "\t 2D_TORUS\n"
339                             "\t SCALE_FREE <cap> <m>\n"
340                             "\t FROM_FILE <filename>\n"
341                             "TOPOOPTS:\n"
342                             "\t num_rnd_links: The number of random links\n"
343                             "\t cap: the maximum number of links a node can have\n"
344                             "\t m: the number of links a node should have while joining the network\n"
345                             "\t filename: the path of the file which contains topology information\n"
346                             "NOTE: the format of the above file is descibed here: https://www.gnunet.org/content/topology-file-format\n"),
347                           option, &run, NULL);
348   if (NULL != stmt_insert)
349     sqlite3_finalize (stmt_insert);
350   if (NULL != db)
351     sqlite3_close (db);
352   if ((GNUNET_OK != ret) || (GNUNET_OK != exit_result))
353     return 1;
354   return 0;
355 }