-fixes, interceptor now speaks zkey
[oweals/gnunet.git] / src / gns / gnunet-gns.c
1 /*
2      This file is part of GNUnet.
3      (C) 2012 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  * @file gnunet-gns.c
22  * @brief command line tool to access distributed GNS
23  * @author Christian Grothoff
24  *
25  * TODO:
26  * - everything
27  */
28 #include "platform.h"
29 #include <gnunet_util_lib.h>
30 #include <gnunet_dnsparser_lib.h>
31 #include <gnunet_namestore_service.h>
32 #include <gnunet_gns_service.h>
33
34 /**
35  * Handle to GNS service.
36  */
37 static struct GNUNET_GNS_Handle *gns;
38
39 /**
40  * GNS name to shorten. (-s option)
41  */
42 static char *shorten_name;
43
44 /**
45  * GNS name to lookup. (-u option)
46  */
47 static char *lookup_name;
48
49
50 /**
51  * record type to look up (-t option)
52  */
53 static char *lookup_type;
54
55 /**
56  * name to look up authority for (-a option)
57  */
58 static char *auth_name;
59
60 static enum GNUNET_GNS_RecordType rtype;
61
62 /**
63  * Task run on shutdown.  Cleans up everything.
64  *
65  * @param cls unused
66  * @param tc scheduler context
67  */
68 static void
69 do_shutdown (void *cls,
70              const struct GNUNET_SCHEDULER_TaskContext *tc)
71 {
72   if (NULL != gns)
73   {
74     GNUNET_GNS_disconnect (gns);
75     gns = NULL;
76   }
77 }
78
79
80 static void
81 process_shorten_result(void* cls, const char* nshort)
82 {
83   printf("%s shortened to %s\n", (char*) cls, nshort);
84   GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
85 }
86
87 static void
88 process_lookup_result(void* cls, uint32_t rd_count,
89                       const struct GNUNET_NAMESTORE_RecordData *rd)
90 {
91   int i;
92   char* addr;
93   char* name = (char*) cls;
94
95   if (rd_count == 0)
96     printf("No results.\n");
97
98   for (i=0; i<rd_count; i++)
99   {
100     if (rd[i].record_type != rtype)
101       continue;
102     if (rd[i].record_type == GNUNET_GNS_RECORD_TYPE_A)
103     {
104       addr = inet_ntoa(*((struct in_addr*)rd[i].data));
105       printf("Got A record for %s: %s\n", name, addr);
106     }
107     if (rd[i].record_type == GNUNET_GNS_RECORD_MX)
108     {
109       printf("Got MX record for %s: %s\n", name, (char*)rd[i].data);
110     }
111
112     //FIXME others? maybe to string method for records?
113   }
114
115   GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
116 }
117
118 static void
119 process_auth_result(void* cls, const char* auth)
120 {
121   printf ("%s\n", auth);
122   GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
123 }
124
125 /**
126  * Main function that will be run.
127  *
128  * @param cls closure
129  * @param args remaining command-line arguments
130  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
131  * @param cfg configuration
132  */
133 static void
134 run (void *cls, char *const *args, const char *cfgfile,
135      const struct GNUNET_CONFIGURATION_Handle *cfg)
136 {
137   gns = GNUNET_GNS_connect (cfg);
138   rtype = GNUNET_GNS_RECORD_TYPE_A;
139
140   if (NULL == gns)
141   {
142     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
143                 _("Failed to connect to GNS\n"));
144     return;
145   }
146   
147   if (shorten_name != NULL)
148   {
149     /** shorten name */
150     GNUNET_GNS_shorten(gns, shorten_name, &process_shorten_result,
151                        shorten_name);
152   }
153
154   if (lookup_name != NULL)
155   {
156     GNUNET_GNS_lookup(gns, lookup_name, rtype,
157                       &process_lookup_result, lookup_name);
158   }
159
160   if (auth_name != NULL)
161   {
162     GNUNET_GNS_get_authority(gns, auth_name, &process_auth_result, auth_name);
163   }
164   
165   // FIXME: do work here...
166   //GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
167 }
168
169
170 /**
171  * The main function for gnunet-gns.
172  *
173  * @param argc number of arguments from the command line
174  * @param argv command line arguments
175  * @return 0 ok, 1 on error
176  */
177 int
178 main (int argc, char *const *argv)
179 {
180   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
181     {'s', "shorten", NULL,
182      gettext_noop ("try to shorten a given GNS name"), 1,
183      &GNUNET_GETOPT_set_string, &shorten_name},
184     {'u', "lookup", NULL,
185       gettext_noop ("Lookup a record using GNS (NOT IMPLEMENTED)"), 1,
186       &GNUNET_GETOPT_set_string, &lookup_name},
187     {'a', "authority", NULL,
188       gettext_noop ("Get the authority of a particular name"), 1,
189       &GNUNET_GETOPT_set_string, &auth_name},
190     {'t', "type", NULL,
191       gettext_noop ("Specify the type of the record lookup"), 1,
192       &GNUNET_GETOPT_set_string, &lookup_type},
193     GNUNET_GETOPT_OPTION_END
194   };
195
196   int ret;
197
198   GNUNET_log_setup ("gnunet-gns", "WARNING", NULL);
199   ret =
200       (GNUNET_OK ==
201        GNUNET_PROGRAM_run (argc, argv, "gnunet-gns",
202                            _("GNUnet GNS access tool"), 
203                            options,
204                            &run, NULL)) ? 0 : 1;
205
206   return ret;
207 }
208
209 /* end of gnunet-gns.c */