aboutsummaryrefslogtreecommitdiff
path: root/src/credential/gnunet-credential.c
blob: 94a4b3899877be61c1ecc31ad290d7841c611269 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
/*
     This file is part of GNUnet.
     Copyright (C) 2012-2013 GNUnet e.V.

     GNUnet is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published
     by the Free Software Foundation; either version 3, or (at your
     option) any later version.

     GNUnet is distributed in the hope that it will be useful, but
     WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     General Public License for more details.

     You should have received a copy of the GNU General Public License
     along with GNUnet; see the file COPYING.  If not, write to the
     Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
     Boston, MA 02110-1301, USA.
*/
/**
 * @file gnunet-credential.c
 * @brief command line tool to access command line Credential service
 * @author Adnan Husain
 */
#include "platform.h"
#include <gnunet_util_lib.h>
#include <gnunet_identity_service.h>
#include <gnunet_credential_service.h>

/**
 * Configuration we are using.
 */
static const struct GNUNET_CONFIGURATION_Handle *cfg;

/**
 * Handle to Credential service.
 */
static struct GNUNET_CREDENTIAL_Handle *credential;

/**
 * Desired timeout for the lookup (default is no timeout).
 */
static struct GNUNET_TIME_Relative timeout;

/**
 * Credential to lookup. (-u option)
 */
static char *lookup_credential;

/**
 * Handle to verify request
 */
static struct GNUNET_CREDENTIAL_VerifyRequest *verify_request;

/**
 * Lookup an ego with the identity service.
 */
static struct GNUNET_IDENTITY_EgoLookup *el;

/**
 * Handle for identity service.
 */
static struct GNUNET_IDENTITY_Handle *identity;

/**
 * Active operation on identity service.
 */
static struct GNUNET_IDENTITY_Operation *id_op;

/**
 * Task scheduled to handle timeout.
 */
static struct GNUNET_SCHEDULER_Task *tt;

/**
 * Subject pubkey string
 */
static char *subject_key;

/**
 * Subject pubkey string
 */
static char *issuer_key;

/*
 * Credential flags
 */
static int credential_flags;



/**
 * Identity of the zone to use for the lookup (-z option)
 */
static char *zone_ego_name;


/**
 * Task run on shutdown.  Cleans up everything.
 *
 * @param cls unused
 */
static void
do_shutdown (void *cls)
{
  if (NULL != el)
  {
    GNUNET_IDENTITY_ego_lookup_cancel (el);
    el = NULL;
  }
  if (NULL != id_op)
  {
    GNUNET_IDENTITY_cancel (id_op);
    id_op = NULL;
  }
  if (NULL != verify_request)
  {
    GNUNET_CREDENTIAL_verify_cancel (verify_request);
    verify_request = NULL;
  }
  if (NULL != identity)
  {
    GNUNET_IDENTITY_disconnect (identity);
    identity = NULL;
  }
  if (NULL != credential)
  {
    GNUNET_CREDENTIAL_disconnect (credential);
    credential = NULL;
  }
  if (NULL != tt)
  {
    GNUNET_SCHEDULER_cancel (tt);
    tt = NULL;
  }
}


/**
 * Task run on timeout. Triggers shutdown.
 *
 * @param cls unused
 */
static void
do_timeout (void *cls)
{
  tt = NULL;
  GNUNET_SCHEDULER_shutdown ();
}


/**
 * Function called with the result of a Credential lookup.
 *
 * @param cls the 'const char *' name that was resolved
 * @param cd_count number of records returned
 * @param cd array of @a cd_count records with the results
 */
static void
handle_verify_result (void *cls,
				struct GNUNET_IDENTITY_Ego *issuer,
              	uint16_t issuer_len,
				const struct GNUNET_CREDENTIAL_RecordData *data)
{
  

  verify_request = NULL;
  if (0 == issuer_len)
    printf ("No results.\n");
  else
  	printf ("%u\n",
    	  issuer_len);

  
  GNUNET_SCHEDULER_shutdown ();
}




/**
 * Perform the actual resolution, with the subject pkey and
 * the issuer public key
 *
 * @param pkey public key to use for the zone, can be NULL
 * @param shorten_key private key used for shortening, can be NULL
 */
static void
lookup_credentials (struct GNUNET_IDENTITY_Ego *ego)
{
  
  struct GNUNET_CRYPTO_EcdsaPublicKey subject_pkey;
  struct GNUNET_CRYPTO_EcdsaPublicKey issuer_pkey;

  if (NULL != subject_key && NULL != issuer_key && NULL != lookup_credential)
  {
    if (GNUNET_OK !=
        GNUNET_CRYPTO_ecdsa_public_key_from_string (subject_key,
                                                    strlen (subject_key),
                                                    &subject_pkey))
    {
      fprintf (stderr,
               _("Subject public key `%s' is not well-formed\n"),
               subject_key);
      GNUNET_SCHEDULER_shutdown ();
      return;
    }

    if (GNUNET_OK !=
        GNUNET_CRYPTO_ecdsa_public_key_from_string (issuer_key,
                                                    strlen (issuer_key),
                                                    &issuer_pkey))
    {
      fprintf (stderr,
               _("Authority public key `%s' is not well-formed\n"),
               issuer_key);
      GNUNET_SCHEDULER_shutdown ();
      return;
    }
    
  verify_request = GNUNET_CREDENTIAL_verify(credential,
                    "",
                    lookup_credential,
                    &subject_pkey,
                    &issuer_pkey,
                    credential_flags,
                    &handle_verify_result,
                    NULL);
   return;
  }
  else
  {
    fprintf (stderr,
       _("Please specify name to lookup, subject key and issuer key!\n"));
    GNUNET_SCHEDULER_shutdown ();
    return;
  }
}


/**
 * Method called to with the ego we are to use for the lookup,
 * when the ego is the one for the default master zone.
 *
 * @param cls closure (NULL, unused)
 * @param ego ego handle, NULL if not found
 * @param ctx context for application to store data for this ego
 *                 (during the lifetime of this process, initially NULL)
 * @param name name assigned by the user for this ego,
 *                   NULL if the user just deleted the ego and it
 *                   must thus no longer be used
 */
static void
identity_master_cb (void *cls,
		    struct GNUNET_IDENTITY_Ego *ego,
		    void **ctx,
		    const char *name)
{
  
  id_op = NULL;
  if (NULL == ego)
  {
    fprintf (stderr,
	     _("Ego for `gns-master' not found, cannot perform lookup.  Did you run gnunet-gns-import.sh?\n"));
    GNUNET_SCHEDULER_shutdown ();
    return;
  }

  lookup_credentials(ego);

  
}


/**
 * Main function that will be run.
 *
 * @param cls closure
 * @param args remaining command-line arguments
 * @param cfgfile name of the configuration file used (for saving, can be NULL!)
 * @param c configuration
 */
static void
run (void *cls,
     char *const *args,
     const char *cfgfile,
     const struct GNUNET_CONFIGURATION_Handle *c)
{
  
  cfg = c;
  credential = GNUNET_CREDENTIAL_connect (cfg);
  identity = GNUNET_IDENTITY_connect (cfg, NULL, NULL);

 

  
  if (NULL == credential)
  {
    fprintf (stderr,
	     _("Failed to connect to CREDENTIAL\n"));
    return;
  }
  if (NULL == identity)
  {
    fprintf (stderr,
	     _("Failed to connect to IDENTITY\n"));
    return;
  }
  tt = GNUNET_SCHEDULER_add_delayed (timeout,
				     &do_timeout, NULL);
  GNUNET_SCHEDULER_add_shutdown (&do_shutdown, NULL);
  

  
	GNUNET_break (NULL == id_op);
	id_op = GNUNET_IDENTITY_get (identity,
			 "gns-master",//# TODO: Create credential-master
			 &identity_master_cb,
			 cls);
	GNUNET_assert (NULL != id_op);


 

}


/**
 * The main function for gnunet-gns.
 *
 * @param argc number of arguments from the command line
 * @param argv command line arguments
 * @return 0 ok, 1 on error
 */
int
main (int argc, char *const *argv)
{
  static const struct GNUNET_GETOPT_CommandLineOption options[] = {
    {'u', "lookup", "CREDENTIAL",
      gettext_noop ("Lookup a record for the given credential"), 1,
      &GNUNET_GETOPT_set_string, &lookup_credential},
   /** { 'T', "timeout", "DELAY",
      gettext_noop ("Specify timeout for the lookup"), 1,
      &GNUNET_GETOPT_set_relative_time, &timeout },
    {'t', "type", "TYPE",
      gettext_noop ("Specify the type of the record to lookup"), 1,
    &GNUNET_GETOPT_set_string, &lookup_type},**/
    {'z', "zone", "NAME",
    gettext_noop ("Specify the name of the ego of the zone to lookup the record in"), 1,
    &GNUNET_GETOPT_set_string, &zone_ego_name},
    {'s', "subject", "PKEY",
      gettext_noop ("Specify the public key of the subject to lookup the credential for"), 1,
      &GNUNET_GETOPT_set_string, &subject_key},
    {'i', "issuer", "PKEY",
      gettext_noop ("Specify the public key of the authority to verify the credential against"), 1,
      &GNUNET_GETOPT_set_string, &issuer_key},
    GNUNET_GETOPT_OPTION_END
  };
  int ret;

  timeout = GNUNET_TIME_UNIT_FOREVER_REL;
  if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
    return 2;

  GNUNET_log_setup ("gnunet-credential", "WARNING", NULL);
  ret =
      (GNUNET_OK ==
       GNUNET_PROGRAM_run (argc, argv, "gnunet-credential",
                           _("GNUnet credential resolver tool"),
			   options,
                           &run, NULL)) ? 0 : 1;
  GNUNET_free ((void*) argv);
  return ret;
}

/* end of gnunet-credential.c */