-bringing copyright tags up to FSF standard
[oweals/gnunet.git] / src / gns / nss / nss_gns_query.c
1 /*
2      This file is part of GNUnet.
3      Copyright (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 #include <string.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include "nss_gns_query.h"
24 #include <arpa/inet.h>
25 #include <sys/types.h>
26 #include <sys/socket.h>
27 #include <netinet/in.h>
28
29
30 /**
31  * Wrapper function that uses gnunet-gns cli tool to resolve
32  * an IPv4/6 address.
33  *
34  * @param af address family
35  * @param name the name to resolve
36  * @param u the userdata (result struct)
37  * @return -1 on error else 0
38  */
39 int
40 gns_resolve_name (int af,
41                   const char *name,
42                   struct userdata *u)
43 {
44   FILE *p;
45   char *cmd;
46   char line[128];
47
48   if (AF_INET6 == af)
49   {
50     if (-1 == asprintf (&cmd,
51                         "%s -t AAAA -u %s\n",
52                         "gnunet-gns -r", name))
53       return -1;
54   }
55   else
56   {
57     if (-1 == asprintf (&cmd,
58                         "%s %s\n",
59                         "gnunet-gns -r -u", name))
60       return -1;
61   }
62   if (NULL == (p = popen (cmd, "r")))
63   {
64     free (cmd);
65     return -1;
66   }
67   while (NULL != fgets (line, sizeof(line), p))
68   {
69     if (u->count >= MAX_ENTRIES)
70       break;
71     if (line[strlen(line)-1] == '\n')
72     {
73       line[strlen(line)-1] = '\0';
74       if (AF_INET == af)
75       {
76         if (inet_pton(af, line, &(u->data.ipv4[u->count])))
77         {
78           u->count++;
79           u->data_len += sizeof(ipv4_address_t);
80         }
81         else
82         {
83           pclose (p);
84           free (cmd);
85           return -1;
86         }
87       }
88       else if (AF_INET6 == af)
89       {
90         if (inet_pton(af, line, &(u->data.ipv6[u->count])))
91         {
92           u->count++;
93           u->data_len += sizeof(ipv6_address_t);
94         }
95         else
96         {
97           pclose (p);
98           free (cmd);
99           return -1;
100         }
101       }
102     }
103   }
104   pclose (p);
105   free (cmd);
106   return 0;
107 }
108 /* end of nss_gns_query.c */