added hostkey generation functionality
[oweals/gnunet.git] / src / testing / gnunet-testing.c
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2004, 2005, 2006, 2007, 2009 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 template/gnunet-testing.c
23  * @brief tool to use testing functionality from cmd line
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_getopt_lib.h"
28 #include "gnunet_program_lib.h"
29 #include "gnunet_testing_lib.h"
30
31 #define HOSTKEYFILESIZE 914
32
33 /**
34  * Final status code.
35  */
36 static int ret;
37
38 static unsigned int create_hostkey;
39
40 static unsigned int create_cfg;
41
42 static int create_no;
43
44 static char * create_cfg_template;
45
46
47 static int
48 create_unique_cfgs (const char * template, const unsigned int no)
49 {
50   int fail = GNUNET_NO;
51
52   uint16_t port = 20000;
53   uint32_t upnum = 1;
54   uint32_t fdnum = 1;
55
56   if (GNUNET_NO == GNUNET_DISK_file_test(template))
57   {
58     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Configuration template `%s': file not found\n", create_cfg_template);
59     return 1;
60   }
61
62   int cur = 0;
63   char * cur_file;
64   char *service_home = NULL;
65   char *cur_service_home = NULL;
66
67   struct GNUNET_CONFIGURATION_Handle *cfg_new = NULL;
68   struct GNUNET_CONFIGURATION_Handle *cfg_tmpl = GNUNET_CONFIGURATION_create();
69
70
71
72   if (GNUNET_OK != GNUNET_CONFIGURATION_load(cfg_tmpl, create_cfg_template))
73   {
74     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not load template `%s'\n", create_cfg_template);
75     GNUNET_CONFIGURATION_destroy(cfg_tmpl);
76
77     return 1;
78   }
79
80   if (GNUNET_SYSERR == GNUNET_CONFIGURATION_get_value_string(cfg_tmpl, "PATHS", "SERVICEHOME", &service_home))
81   {
82     GNUNET_asprintf(&service_home, "%s", "/tmp/testing");
83   }
84   else
85   {
86     int s = strlen (service_home);
87     if (service_home[s-1] == DIR_SEPARATOR)
88       service_home[s-1] = '\0';
89   }
90
91   while (cur < no)
92   {
93     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Creating configuration no. %u \n", cur);
94     GNUNET_asprintf (&cur_file,"%04u-%s",cur, create_cfg_template);
95
96
97     GNUNET_asprintf (&cur_service_home, "%s-%04u%c",service_home, cur, DIR_SEPARATOR);
98     GNUNET_CONFIGURATION_set_value_string (cfg_tmpl,"PATHS","SERVICEHOME", cur_service_home);
99     GNUNET_CONFIGURATION_set_value_string (cfg_tmpl,"PATHS","DEFAULTCONFIG", cur_file);
100     GNUNET_free (cur_service_home);
101
102     cfg_new = GNUNET_TESTING_create_cfg(cfg_tmpl, cur, &port, &upnum, NULL, &fdnum);
103
104     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Writing configuration no. %u to file `%s' \n", cur, cur_file);
105     if (GNUNET_OK != GNUNET_CONFIGURATION_write(cfg_new, cur_file))
106     {
107       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to write configuration no. %u \n", cur);
108       fail = GNUNET_YES;
109     }
110
111     GNUNET_CONFIGURATION_destroy (cfg_new);
112     GNUNET_free (cur_file);
113     if (fail == GNUNET_YES)
114       break;
115     cur ++;
116   }
117
118   GNUNET_CONFIGURATION_destroy(cfg_tmpl);
119   GNUNET_free (service_home);
120   if (fail == GNUNET_NO)
121     return 0;
122   else
123     return 1;
124 }
125
126 static int
127 create_hostkeys (const unsigned int no)
128 {
129   struct GNUNET_DISK_FileHandle *fd;
130   int cur = 0;
131   uint64_t fs;
132   uint64_t total_hostkeys;
133   char *hostkey_data;
134   char *hostkeyfile;
135
136   /* prepare hostkeys */
137   const char *hostkeys_file = "../../contrib/testing_hostkeys.dat";
138
139   if (GNUNET_YES != GNUNET_DISK_file_test (hostkeys_file))
140   {
141     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Could not read hostkeys file!\n"));
142   }
143   else
144   {
145     /* Check hostkey file size, read entire thing into memory */
146     fd = GNUNET_DISK_file_open (hostkeys_file, GNUNET_DISK_OPEN_READ,
147                                 GNUNET_DISK_PERM_NONE);
148     if (NULL == fd)
149     {
150       GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, "open", hostkeys_file);
151       return 1;
152     }
153
154     if (GNUNET_YES != GNUNET_DISK_file_size (hostkeys_file, &fs, GNUNET_YES))
155       fs = 0;
156
157     if (0 != (fs % HOSTKEYFILESIZE))
158     {
159       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
160                   "File size %llu seems incorrect for hostkeys...\n", fs);
161     }
162     else
163     {
164       total_hostkeys = fs / HOSTKEYFILESIZE;
165       hostkey_data = GNUNET_malloc_large (fs);
166       GNUNET_assert (fs == GNUNET_DISK_file_read (fd, hostkey_data, fs));
167       GNUNET_log  (GNUNET_ERROR_TYPE_DEBUG,
168                        "Read %llu hostkeys from file\n", total_hostkeys);
169     }
170     GNUNET_assert (GNUNET_OK == GNUNET_DISK_file_close (fd));
171   }
172
173   while (cur < no)
174   {
175     GNUNET_asprintf (&hostkeyfile, "%04u-hostkey",cur);
176     GNUNET_assert (GNUNET_OK ==
177                    GNUNET_DISK_directory_create_for_file (hostkeyfile));
178     fd = GNUNET_DISK_file_open (hostkeyfile,
179                                 GNUNET_DISK_OPEN_READWRITE |
180                                 GNUNET_DISK_OPEN_CREATE,
181                                 GNUNET_DISK_PERM_USER_READ |
182                                 GNUNET_DISK_PERM_USER_WRITE);
183     GNUNET_assert (fd != NULL);
184     GNUNET_assert (HOSTKEYFILESIZE ==
185                    GNUNET_DISK_file_write (fd, &hostkey_data[cur * HOSTKEYFILESIZE], HOSTKEYFILESIZE));
186     GNUNET_assert (GNUNET_OK == GNUNET_DISK_file_close (fd));
187     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "transport-testing",
188                      "Wrote hostkey to file: `%s' \n", hostkeyfile);
189     GNUNET_free (hostkeyfile);
190     cur ++;
191   }
192
193   GNUNET_free (hostkey_data);
194
195   return 0;
196 }
197
198 /**
199  * Main function that will be run by the scheduler.
200  *
201  * @param cls closure
202  * @param args remaining command-line arguments
203  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
204  * @param cfg configuration
205  */
206 static void
207 run (void *cls, char *const *args, const char *cfgfile,
208      const struct GNUNET_CONFIGURATION_Handle *cfg)
209 {
210   /* main code here */
211   if ((create_cfg == GNUNET_YES) &&
212       (create_no > 0) &&
213       (create_cfg_template != NULL))
214   {
215     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Creating %u configuration files based on template `%s'\n", create_no, create_cfg_template);
216     ret = create_unique_cfgs (create_cfg_template, create_no);
217   }
218   else if ((create_hostkey == GNUNET_YES) && (create_no > 0))
219   {
220     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Creating %u hostkeys \n", create_no);
221     ret = create_hostkeys (create_no);
222   }
223   else
224   {
225     ret = 1;
226   }
227   GNUNET_free_non_null (create_cfg_template);
228 }
229
230
231 /**
232  * The main function.
233  *
234  * @param argc number of arguments from the command line
235  * @param argv command line arguments
236  * @return 0 ok, 1 on error
237  */
238 int
239 main (int argc, char *const *argv)
240 {
241   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
242     {'C', "cfg", NULL, gettext_noop ("create unique configuration files"),
243      GNUNET_NO, &GNUNET_GETOPT_set_one, &create_cfg},
244     {'k', "key", NULL, gettext_noop ("create hostkey files from pre-computed hostkey list"),
245      GNUNET_NO, &GNUNET_GETOPT_set_one, &create_hostkey},
246     {'n', "number", NULL, gettext_noop ("number of unique configuration files or hostkeys to create"),
247      GNUNET_YES, &GNUNET_GETOPT_set_uint, &create_no},
248     {'t', "template", NULL, gettext_noop ("configuration template"),
249      GNUNET_YES, &GNUNET_GETOPT_set_string, &create_cfg_template},
250     GNUNET_GETOPT_OPTION_END
251   };
252   return (GNUNET_OK ==
253           GNUNET_PROGRAM_run (argc, argv, "gnunet-testing",
254                               gettext_noop ("Command line tool to access the testing library"), options, &run,
255                               NULL)) ? ret : 1;
256 }
257
258 /* end of gnunet-testing.c */