Greenbone Vulnerability Management Libraries  11.0.0
hosts.c
Go to the documentation of this file.
1 /* Copyright (C) 2013-2019 Greenbone Networks GmbH
2  *
3  * SPDX-License-Identifier: GPL-2.0-or-later
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
19 
30 #include "hosts.h"
31 
32 #include "networking.h" /* for ipv4_as_ipv6, addr6_as_str, gvm_resolve */
33 
34 #include <arpa/inet.h> /* for inet_pton, inet_ntop */
35 #include <assert.h> /* for assert */
36 #include <ctype.h> /* for isdigit */
37 #include <malloc.h>
38 #include <netdb.h> /* for getnameinfo, NI_NAMEREQD */
39 #include <stdint.h> /* for uint8_t, uint32_t */
40 #include <stdio.h> /* for sscanf, perror */
41 #include <stdlib.h> /* for strtol, atoi */
42 #include <string.h> /* for strchr, memcpy, memcmp, bzero, strcasecmp */
43 #include <sys/socket.h> /* for AF_INET, AF_INET6, sockaddr */
44 
45 #undef G_LOG_DOMAIN
46 
49 #define G_LOG_DOMAIN "base hosts"
50 
51 /* Static variables */
52 
54  [HOST_TYPE_NAME] = "Hostname",
55  [HOST_TYPE_IPV4] = "IPv4",
56  [HOST_TYPE_IPV6] = "IPv6",
57  [HOST_TYPE_CIDR_BLOCK] = "IPv4 CIDR block",
58  [HOST_TYPE_RANGE_SHORT] = "IPv4 short range",
59  [HOST_TYPE_RANGE_LONG] = "IPv4 long range"};
60 
61 /* Function definitions */
62 
71 static int
72 is_ipv4_address (const char *str)
73 {
74  struct sockaddr_in sa;
75 
76  return inet_pton (AF_INET, str, &(sa.sin_addr)) == 1;
77 }
78 
87 static int
88 is_ipv6_address (const char *str)
89 {
90  struct sockaddr_in6 sa6;
91 
92  return inet_pton (AF_INET6, str, &(sa6.sin6_addr)) == 1;
93 }
94 
103 static int
104 is_cidr_block (const char *str)
105 {
106  long block;
107  char *addr_str, *block_str, *p;
108 
109  addr_str = g_strdup (str);
110  block_str = strchr (addr_str, '/');
111  if (block_str == NULL)
112  {
113  g_free (addr_str);
114  return 0;
115  }
116 
117  /* Separate the address from the block value. */
118  *block_str = '\0';
119  block_str++;
120 
121  if (!is_ipv4_address (addr_str) || !isdigit (*block_str))
122  {
123  g_free (addr_str);
124  return 0;
125  }
126 
127  p = NULL;
128  block = strtol (block_str, &p, 10);
129  g_free (addr_str);
130 
131  if (*p || block <= 0 || block > 30)
132  return 0;
133 
134  return 1;
135 }
136 
146 static int
147 cidr_get_block (const char *str, unsigned int *block)
148 {
149  if (str == NULL || block == NULL)
150  return -1;
151 
152  if (sscanf (str, "%*[0-9.]/%2u", block) != 1)
153  return -1;
154 
155  return 0;
156 }
157 
167 static int
168 cidr_get_ip (const char *str, struct in_addr *addr)
169 {
170  gchar *addr_str, *tmp;
171 
172  if (str == NULL || addr == NULL)
173  return -1;
174 
175  addr_str = g_strdup (str);
176  tmp = strchr (addr_str, '/');
177  if (tmp == NULL)
178  {
179  g_free (addr_str);
180  return -1;
181  }
182  *tmp = '\0';
183 
184  if (inet_pton (AF_INET, addr_str, addr) != 1)
185  return -1;
186 
187  g_free (addr_str);
188  return 0;
189 }
190 
207 static int
208 cidr_block_ips (const char *str, struct in_addr *first, struct in_addr *last)
209 {
210  unsigned int block;
211 
212  if (str == NULL || first == NULL || last == NULL)
213  return -1;
214 
215  /* Get IP and block values. */
216  if (cidr_get_block (str, &block) == -1)
217  return -1;
218  if (cidr_get_ip (str, first) == -1)
219  return -1;
220 
221  /* First IP: And with mask and increment. */
222  first->s_addr &= htonl (0xffffffff ^ ((1 << (32 - block)) - 1));
223  first->s_addr = htonl (ntohl (first->s_addr) + 1);
224 
225  /* Last IP: First IP + Number of usable hosts - 1. */
226  last->s_addr = htonl (ntohl (first->s_addr) + (1 << (32 - block)) - 3);
227  return 0;
228 }
229 
238 static int
239 is_long_range_network (const char *str)
240 {
241  char *first_str, *second_str;
242  int ret;
243 
244  first_str = g_strdup (str);
245  second_str = strchr (first_str, '-');
246  if (second_str == NULL)
247  {
248  g_free (first_str);
249  return 0;
250  }
251 
252  /* Separate the addresses. */
253  *second_str = '\0';
254  second_str++;
255 
256  ret = is_ipv4_address (first_str) && is_ipv4_address (second_str);
257  g_free (first_str);
258 
259  return ret;
260 }
261 
273 static int
274 long_range_network_ips (const char *str, struct in_addr *first,
275  struct in_addr *last)
276 {
277  char *first_str, *last_str;
278 
279  if (str == NULL || first == NULL || last == NULL)
280  return -1;
281 
282  first_str = g_strdup (str);
283  last_str = strchr (first_str, '-');
284  if (last_str == NULL)
285  {
286  g_free (first_str);
287  return -1;
288  }
289 
290  /* Separate the two IPs. */
291  *last_str = '\0';
292  last_str++;
293 
294  if (inet_pton (AF_INET, first_str, first) != 1
295  || inet_pton (AF_INET, last_str, last) != 1)
296  {
297  g_free (first_str);
298  return -1;
299  }
300 
301  g_free (first_str);
302  return 0;
303 }
304 
313 static int
314 is_short_range_network (const char *str)
315 {
316  long end;
317  char *ip_str, *end_str, *p;
318 
319  ip_str = g_strdup (str);
320  end_str = strchr (ip_str, '-');
321  if (end_str == NULL)
322  {
323  g_free (ip_str);
324  return 0;
325  }
326 
327  /* Separate the addresses. */
328  *end_str = '\0';
329  end_str++;
330 
331  if (!is_ipv4_address (ip_str) || !isdigit (*end_str))
332  {
333  g_free (ip_str);
334  return 0;
335  }
336 
337  p = NULL;
338  end = strtol (end_str, &p, 10);
339  g_free (ip_str);
340 
341  if (*p || end < 0 || end > 255)
342  return 0;
343 
344  return 1;
345 }
346 
358 static int
359 short_range_network_ips (const char *str, struct in_addr *first,
360  struct in_addr *last)
361 {
362  char *first_str, *last_str;
363  int end;
364 
365  if (str == NULL || first == NULL || last == NULL)
366  return -1;
367 
368  first_str = g_strdup (str);
369  last_str = strchr (first_str, '-');
370  if (last_str == NULL)
371  {
372  g_free (first_str);
373  return -1;
374  }
375 
376  /* Separate the two IPs. */
377  *last_str = '\0';
378  last_str++;
379  end = atoi (last_str);
380 
381  /* Get the first IP */
382  if (inet_pton (AF_INET, first_str, first) != 1)
383  {
384  g_free (first_str);
385  return -1;
386  }
387 
388  /* Get the last IP */
389  last->s_addr = htonl ((ntohl (first->s_addr) & 0xffffff00) + end);
390 
391  g_free (first_str);
392  return 0;
393 }
394 
404 static int
405 is_hostname (const char *str)
406 {
407  const char *h = str;
408 
409  while (*h && (isalnum (*h) || strchr ("-_.", *h)))
410  h++;
411 
412  /* Valid string if no other chars, and length is 255 at most. */
413  if (*h == '\0' && h - str < 256)
414  return 1;
415 
416  return 0;
417 }
418 
427 static int
428 is_cidr6_block (const char *str)
429 {
430  long block;
431  char *addr6_str, *block_str, *p;
432 
433  addr6_str = g_strdup (str);
434  block_str = strchr (addr6_str, '/');
435  if (block_str == NULL)
436  {
437  g_free (addr6_str);
438  return 0;
439  }
440 
441  /* Separate the address from the block value. */
442  *block_str = '\0';
443  block_str++;
444 
445  if (!is_ipv6_address (addr6_str) || !isdigit (*block_str))
446  {
447  g_free (addr6_str);
448  return 0;
449  }
450 
451  p = NULL;
452  block = strtol (block_str, &p, 10);
453  g_free (addr6_str);
454 
455  if (*p || block <= 0 || block > 128)
456  return 0;
457 
458  return 1;
459 }
460 
470 static int
471 cidr6_get_block (const char *str, unsigned int *block)
472 {
473  if (str == NULL || block == NULL)
474  return -1;
475 
476  if (sscanf (str, "%*[0-9a-fA-F.:]/%3u", block) != 1)
477  return -1;
478 
479  return 0;
480 }
481 
491 static int
492 cidr6_get_ip (const char *str, struct in6_addr *addr6)
493 {
494  gchar *addr6_str, *tmp;
495 
496  if (str == NULL || addr6 == NULL)
497  return -1;
498 
499  addr6_str = g_strdup (str);
500  tmp = strchr (addr6_str, '/');
501  if (tmp == NULL)
502  {
503  g_free (addr6_str);
504  return -1;
505  }
506  *tmp = '\0';
507 
508  if (inet_pton (AF_INET6, addr6_str, addr6) != 1)
509  return -1;
510 
511  g_free (addr6_str);
512  return 0;
513 }
514 
526 static int
527 cidr6_block_ips (const char *str, struct in6_addr *first, struct in6_addr *last)
528 {
529  unsigned int block;
530  int i, j;
531 
532  if (str == NULL || first == NULL || last == NULL)
533  return -1;
534 
535  /* Get IP and block values. */
536  if (cidr6_get_block (str, &block) == -1)
537  return -1;
538  if (cidr6_get_ip (str, first) == -1)
539  return -1;
540  memcpy (&last->s6_addr, &first->s6_addr, 16);
541 
542  /* /128 => Specified address is the first and last one. */
543  if (block == 128)
544  return 0;
545 
546  /* First IP: And with mask and increment to skip network address. */
547  j = 15;
548  for (i = (128 - block) / 8; i > 0; i--)
549  {
550  first->s6_addr[j] = 0;
551  j--;
552  }
553  first->s6_addr[j] &= 0xff ^ ((1 << ((128 - block) % 8)) - 1);
554 
555  /* Last IP: Broadcast address - 1. */
556  j = 15;
557  for (i = (128 - block) / 8; i > 0; i--)
558  {
559  last->s6_addr[j] = 0xff;
560  j--;
561  }
562  last->s6_addr[j] |= (1 << ((128 - block) % 8)) - 1;
563 
564  /* /127 => Only two addresses. Don't skip network / broadcast addresses.*/
565  if (block == 127)
566  return 0;
567 
568  /* Increment first IP. */
569  for (i = 15; i >= 0; --i)
570  if (first->s6_addr[i] < 255)
571  {
572  first->s6_addr[i]++;
573  break;
574  }
575  else
576  first->s6_addr[i] = 0;
577  /* Decrement last IP. */
578  for (i = 15; i >= 0; --i)
579  if (last->s6_addr[i] > 0)
580  {
581  last->s6_addr[i]--;
582  break;
583  }
584  else
585  last->s6_addr[i] = 0xff;
586 
587  return 0;
588 }
589 
598 static int
599 is_long_range6_network (const char *str)
600 {
601  char *first_str, *second_str;
602  int ret;
603 
604  first_str = g_strdup (str);
605  second_str = strchr (first_str, '-');
606  if (second_str == NULL)
607  {
608  g_free (first_str);
609  return 0;
610  }
611 
612  /* Separate the addresses. */
613  *second_str = '\0';
614  second_str++;
615 
616  ret = is_ipv6_address (first_str) && is_ipv6_address (second_str);
617  g_free (first_str);
618 
619  return ret;
620 }
621 
633 static int
634 long_range6_network_ips (const char *str, struct in6_addr *first,
635  struct in6_addr *last)
636 {
637  char *first_str, *last_str;
638 
639  if (str == NULL || first == NULL || last == NULL)
640  return -1;
641 
642  first_str = g_strdup (str);
643  last_str = strchr (first_str, '-');
644  if (last_str == NULL)
645  {
646  g_free (first_str);
647  return -1;
648  }
649 
650  /* Separate the two IPs. */
651  *last_str = '\0';
652  last_str++;
653 
654  if (inet_pton (AF_INET6, first_str, first) != 1
655  || inet_pton (AF_INET6, last_str, last) != 1)
656  {
657  g_free (first_str);
658  return -1;
659  }
660 
661  g_free (first_str);
662  return 0;
663 }
664 
673 static int
674 is_short_range6_network (const char *str)
675 {
676  char *ip_str, *end_str, *p;
677 
678  ip_str = g_strdup (str);
679  end_str = strchr (ip_str, '-');
680  if (end_str == NULL)
681  {
682  g_free (ip_str);
683  return 0;
684  }
685 
686  /* Separate the addresses. */
687  *end_str = '\0';
688  end_str++;
689 
690  if (!is_ipv6_address (ip_str) || *end_str == '\0')
691  {
692  g_free (ip_str);
693  return 0;
694  }
695 
696  p = end_str;
697  /* Check that the 2nd part is at most 4 hexadecimal characters. */
698  while (isxdigit (*p) && p++)
699  ;
700  if (*p || p - end_str > 4)
701  {
702  g_free (ip_str);
703  return 0;
704  }
705 
706  g_free (ip_str);
707  return 1;
708 }
709 
721 static int
722 short_range6_network_ips (const char *str, struct in6_addr *first,
723  struct in6_addr *last)
724 {
725  char *first_str, *last_str;
726  long int end;
727 
728  if (str == NULL || first == NULL || last == NULL)
729  return -1;
730 
731  first_str = g_strdup (str);
732  last_str = strchr (first_str, '-');
733  if (last_str == NULL)
734  {
735  g_free (first_str);
736  return -1;
737  }
738 
739  /* Separate the first IP. */
740  *last_str = '\0';
741  last_str++;
742 
743  if (inet_pton (AF_INET6, first_str, first) != 1)
744  {
745  g_free (first_str);
746  return -1;
747  }
748 
749  /* Calculate the last IP. */
750  memcpy (last, first, sizeof (*last));
751  end = strtol (last_str, NULL, 16);
752  memcpy (&last->s6_addr[15], &end, 1);
753  memcpy (&last->s6_addr[14], ((char *) &end) + 1, 1);
754 
755  g_free (first_str);
756  return 0;
757 }
758 
767 int
768 gvm_get_host_type (const gchar *str_stripped)
769 {
770  /*
771  * We have a single element with no leading or trailing
772  * white spaces. This element could represent different host
773  * definitions: single IPs, host names, CIDR-expressed blocks,
774  * range-expressed networks, IPv6 addresses.
775  */
776 
777  /* Null or empty string. */
778  if (str_stripped == NULL || *str_stripped == '\0')
779  return -1;
780 
781  /* Check for regular single IPv4 address. */
782  if (is_ipv4_address (str_stripped))
783  return HOST_TYPE_IPV4;
784 
785  /* Check for regular single IPv6 address. */
786  if (is_ipv6_address (str_stripped))
787  return HOST_TYPE_IPV6;
788 
789  /* Check for regular IPv4 CIDR-expressed block like "192.168.12.0/24" */
790  if (is_cidr_block (str_stripped))
791  return HOST_TYPE_CIDR_BLOCK;
792 
793  /* Check for short range-expressed networks "192.168.12.5-40" */
794  if (is_short_range_network (str_stripped))
795  return HOST_TYPE_RANGE_SHORT;
796 
797  /* Check for long range-expressed networks "192.168.1.0-192.168.3.44" */
798  if (is_long_range_network (str_stripped))
799  return HOST_TYPE_RANGE_LONG;
800 
801  /* Check for regular IPv6 CIDR-expressed block like "2620:0:2d0:200::7/120" */
802  if (is_cidr6_block (str_stripped))
803  return HOST_TYPE_CIDR6_BLOCK;
804 
805  /* Check for short range-expressed networks "::1-ef12" */
806  if (is_short_range6_network (str_stripped))
807  return HOST_TYPE_RANGE6_SHORT;
808 
809  /* Check for long IPv6 range-expressed networks like "::1:20:7-::1:25:3" */
810  if (is_long_range6_network (str_stripped))
811  return HOST_TYPE_RANGE6_LONG;
812 
813  /* Check for hostname. */
814  if (is_hostname (str_stripped))
815  return HOST_TYPE_NAME;
816 
817  return -1;
818 }
819 
828 gvm_vhost_t *
829 gvm_vhost_new (char *value, char *source)
830 {
831  gvm_vhost_t *vhost;
832 
833  vhost = g_malloc0 (sizeof (gvm_vhost_t));
834  vhost->value = value;
835  vhost->source = source;
836 
837  return vhost;
838 }
839 
845 static void
846 gvm_vhost_free (gpointer vhost)
847 {
848  if (vhost)
849  {
850  g_free (((gvm_vhost_t *) vhost)->value);
851  g_free (((gvm_vhost_t *) vhost)->source);
852  }
853  g_free (vhost);
854 }
855 
861 static gvm_host_t *
863 {
864  gvm_host_t *host;
865 
866  host = g_malloc0 (sizeof (gvm_host_t));
867 
868  return host;
869 }
870 
876 static void
877 gvm_host_free (gpointer host)
878 {
879  gvm_host_t *h = host;
880  if (h == NULL)
881  return;
882 
883  /* If host of type hostname, free the name buffer, first. */
884  if (h->type == HOST_TYPE_NAME)
885  g_free (h->name);
886 
887  g_slist_free_full (h->vhosts, gvm_vhost_free);
888  g_free (h);
889 }
890 
897 static void
899 {
900  if (hosts->count == hosts->max_size)
901  {
902  hosts->max_size *= 4;
903  hosts->hosts =
904  g_realloc_n (hosts->hosts, hosts->max_size, sizeof (*hosts->hosts));
905  }
906  hosts->hosts[hosts->count] = host;
907  hosts->count++;
908 }
909 
917 static gvm_hosts_t *
918 gvm_hosts_init (const char *hosts_str)
919 {
920  gvm_hosts_t *hosts;
921 
922  hosts = g_malloc0 (sizeof (gvm_hosts_t));
923  hosts->max_size = 1024;
924  hosts->hosts = g_malloc0_n (hosts->max_size, sizeof (gvm_host_t *));
925  hosts->orig_str = g_strdup (hosts_str);
926  return hosts;
927 }
928 
935 static void
937 {
938  size_t i;
939  if (!hosts)
940  return;
941 
942  for (i = 0; i < hosts->max_size; i++)
943  {
944  if (!hosts->hosts[i])
945  {
946  size_t j;
947 
948  /* Fill the gap with the closest host entry, in order to keep the
949  * sequential ordering. */
950  for (j = i + 1; j < hosts->max_size; j++)
951  {
952  if (hosts->hosts[j])
953  {
954  hosts->hosts[i] = hosts->hosts[j];
955  hosts->hosts[j] = NULL;
956  break;
957  }
958  }
959  /* No more entries left, ie. the empty space between count and
960  * max_size. */
961  if (!hosts->hosts[i])
962  return;
963  }
964  }
965 }
966 
973 static void
975 {
979  GHashTable *name_table;
980  size_t i, duplicates = 0;
981 
982  if (hosts == NULL)
983  return;
984  name_table = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
985 
986  for (i = 0; i < hosts->count; i++)
987  {
988  gchar *name;
989 
990  if ((name = gvm_host_value_str (hosts->hosts[i])))
991  {
992  gvm_host_t *host, *removed = hosts->hosts[i];
993 
994  host = g_hash_table_lookup (name_table, name);
995  if (host)
996  {
997  /* Remove duplicate host. Add its vhosts to the original host. */
998  host->vhosts = g_slist_concat (host->vhosts, removed->vhosts);
999  removed->vhosts = NULL;
1000  gvm_host_free (removed);
1001  hosts->hosts[i] = NULL;
1002  duplicates++;
1003  g_free (name);
1004  }
1005  else
1006  g_hash_table_insert (name_table, name, hosts->hosts[i]);
1007  }
1008  }
1009 
1010  if (duplicates)
1011  gvm_hosts_fill_gaps (hosts);
1012  g_hash_table_destroy (name_table);
1013  hosts->count -= duplicates;
1014  hosts->removed += duplicates;
1015  hosts->current = 0;
1016  malloc_trim (0);
1017 }
1018 
1030 gvm_hosts_t *
1031 gvm_hosts_new_with_max (const gchar *hosts_str, unsigned int max_hosts)
1032 {
1033  gvm_hosts_t *hosts;
1034  gchar **host_element, **split;
1035  gchar *str;
1036 
1037  if (hosts_str == NULL)
1038  return NULL;
1039 
1040  /* Normalize separator: Transform newlines into commas. */
1041  hosts = gvm_hosts_init (hosts_str);
1042  str = hosts->orig_str;
1043  while (*str)
1044  {
1045  if (*str == '\n')
1046  *str = ',';
1047  str++;
1048  }
1049 
1050  /* Split comma-separated list into single host-specifications */
1051  split = g_strsplit (hosts->orig_str, ",", 0);
1052 
1053  /* first element of the split list */
1054  host_element = split;
1055  while (*host_element)
1056  {
1057  int host_type;
1058  gchar *stripped = g_strstrip (*host_element);
1059 
1060  if (stripped == NULL || *stripped == '\0')
1061  {
1062  host_element++;
1063  continue;
1064  }
1065 
1066  /* IPv4, hostname, IPv6, collection (short/long range, cidr block) etc,. ?
1067  */
1068  /* -1 if error. */
1069  host_type = gvm_get_host_type (stripped);
1070 
1071  switch (host_type)
1072  {
1073  case HOST_TYPE_NAME:
1074  case HOST_TYPE_IPV4:
1075  case HOST_TYPE_IPV6:
1076  {
1077  /* New host. */
1078  gvm_host_t *host = gvm_host_new ();
1079  host->type = host_type;
1080  if (host_type == HOST_TYPE_NAME)
1081  host->name = g_ascii_strdown (stripped, -1);
1082  else if (host_type == HOST_TYPE_IPV4)
1083  {
1084  if (inet_pton (AF_INET, stripped, &host->addr) != 1)
1085  break;
1086  }
1087  else if (host_type == HOST_TYPE_IPV6)
1088  {
1089  if (inet_pton (AF_INET6, stripped, &host->addr6) != 1)
1090  break;
1091  }
1092  gvm_hosts_add (hosts, host);
1093  break;
1094  }
1095  case HOST_TYPE_CIDR_BLOCK:
1096  case HOST_TYPE_RANGE_SHORT:
1097  case HOST_TYPE_RANGE_LONG:
1098  {
1099  struct in_addr first, last;
1100  uint32_t current;
1101  int (*ips_func) (const char *, struct in_addr *, struct in_addr *);
1102 
1104  ips_func = cidr_block_ips;
1105  else if (host_type == HOST_TYPE_RANGE_SHORT)
1106  ips_func = short_range_network_ips;
1107  else
1108  ips_func = long_range_network_ips;
1109 
1110  if (ips_func (stripped, &first, &last) == -1)
1111  break;
1112 
1113  /* Make sure that first actually comes before last */
1114  if (ntohl (first.s_addr) > ntohl (last.s_addr))
1115  break;
1116 
1117  /* Add addresses from first to last as single hosts. */
1118  current = first.s_addr;
1119  while (ntohl (current) <= ntohl (last.s_addr))
1120  {
1121  gvm_host_t *host;
1122  if (max_hosts > 0 && hosts->count > max_hosts)
1123  {
1124  g_strfreev (split);
1125  gvm_hosts_free (hosts);
1126  return NULL;
1127  }
1128  host = gvm_host_new ();
1129  host->type = HOST_TYPE_IPV4;
1130  host->addr.s_addr = current;
1131  gvm_hosts_add (hosts, host);
1132  /* Next IP address. */
1133  current = htonl (ntohl (current) + 1);
1134  }
1135  break;
1136  }
1137  case HOST_TYPE_CIDR6_BLOCK:
1138  case HOST_TYPE_RANGE6_LONG:
1140  {
1141  struct in6_addr first, last;
1142  unsigned char current[16];
1143  int (*ips_func) (const char *, struct in6_addr *,
1144  struct in6_addr *);
1145 
1147  ips_func = cidr6_block_ips;
1148  else if (host_type == HOST_TYPE_RANGE6_SHORT)
1149  ips_func = short_range6_network_ips;
1150  else
1151  ips_func = long_range6_network_ips;
1152 
1153  if (ips_func (stripped, &first, &last) == -1)
1154  break;
1155 
1156  /* Make sure the first comes before the last. */
1157  if (memcmp (&first.s6_addr, &last.s6_addr, 16) > 0)
1158  break;
1159 
1160  /* Add addresses from first to last as single hosts. */
1161  memcpy (current, &first.s6_addr, 16);
1162  while (memcmp (current, &last.s6_addr, 16) <= 0)
1163  {
1164  int i;
1165  gvm_host_t *host;
1166 
1167  if (max_hosts > 0 && hosts->count > max_hosts)
1168  {
1169  g_strfreev (split);
1170  gvm_hosts_free (hosts);
1171  return NULL;
1172  }
1173  host = gvm_host_new ();
1174  host->type = HOST_TYPE_IPV6;
1175  memcpy (host->addr6.s6_addr, current, 16);
1176  gvm_hosts_add (hosts, host);
1177  /* Next IPv6 address. */
1178  for (i = 15; i >= 0; --i)
1179  if (current[i] < 255)
1180  {
1181  current[i]++;
1182  break;
1183  }
1184  else
1185  current[i] = 0;
1186  }
1187  break;
1188  }
1189  case -1:
1190  default:
1191  /* Invalid host string. */
1192  g_strfreev (split);
1193  gvm_hosts_free (hosts);
1194  return NULL;
1195  }
1196  host_element++; /* move on to next element of split list */
1197  if (max_hosts > 0 && hosts->count > max_hosts)
1198  {
1199  g_strfreev (split);
1200  gvm_hosts_free (hosts);
1201  return NULL;
1202  }
1203  }
1204 
1205  /* No need to check for duplicates when a hosts string contains a
1206  * single (IP/Hostname/Range/Subnetwork) entry. */
1207  if (g_strv_length (split) > 1)
1208  gvm_hosts_deduplicate (hosts);
1209 
1210  g_strfreev (split);
1211  malloc_trim (0);
1212  return hosts;
1213 }
1214 
1225 gvm_hosts_t *
1226 gvm_hosts_new (const gchar *hosts_str)
1227 {
1228  return gvm_hosts_new_with_max (hosts_str, 0);
1229 }
1230 
1239 gvm_host_t *
1241 {
1242  if (!hosts || hosts->current == hosts->count)
1243  return NULL;
1244 
1245  return hosts->hosts[hosts->current++];
1246 }
1247 
1254 void
1256 {
1257  size_t i;
1258 
1259  if (hosts == NULL)
1260  return;
1261 
1262  if (hosts->orig_str)
1263  g_free (hosts->orig_str);
1264  for (i = 0; i < hosts->count; i++)
1265  gvm_host_free (hosts->hosts[i]);
1266  g_free (hosts->hosts);
1267  g_free (hosts);
1268 }
1269 
1277 void
1279 {
1280  size_t i = 0;
1281  GRand *rand;
1282 
1283  if (hosts == NULL)
1284  return;
1285 
1286  /* Shuffle the array. */
1287  rand = g_rand_new ();
1288  for (i = 0; i < hosts->count; i++)
1289  {
1290  void *tmp;
1291  int j = g_rand_int_range (rand, 0, hosts->count);
1292 
1293  tmp = hosts->hosts[i];
1294  hosts->hosts[i] = hosts->hosts[j];
1295  hosts->hosts[j] = tmp;
1296  }
1297 
1298  hosts->current = 0;
1299  g_rand_free (rand);
1300 }
1301 
1309 void
1311 {
1312  size_t i, j;
1313  if (hosts == NULL)
1314  return;
1315 
1316  for (i = 0, j = hosts->count - 1; i < j; i++, j--)
1317  {
1318  gvm_host_t *tmp = hosts->hosts[i];
1319  hosts->hosts[i] = hosts->hosts[j];
1320  hosts->hosts[j] = tmp;
1321  }
1322  hosts->current = 0;
1323 }
1324 
1335 GSList *
1337 {
1338  size_t i, new_entries = 0, resolved = 0;
1339  GSList *unresolved = NULL;
1340 
1341  for (i = 0; i < hosts->count; i++)
1342  {
1343  GSList *list, *tmp;
1344  gvm_host_t *host = hosts->hosts[i];
1345 
1346  if (host->type != HOST_TYPE_NAME)
1347  continue;
1348 
1349  list = tmp = gvm_resolve_list (host->name);
1350  while (tmp)
1351  {
1352  /* Create a new host for each IP address. */
1353  gvm_host_t *new;
1354  struct in6_addr *ip6 = tmp->data;
1355  gvm_vhost_t *vhost;
1356 
1357  new = gvm_host_new ();
1358  if (ip6->s6_addr32[0] != 0 || ip6->s6_addr32[1] != 0
1359  || ip6->s6_addr32[2] != htonl (0xffff))
1360  {
1361  new->type = HOST_TYPE_IPV6;
1362  memcpy (&new->addr6, ip6, sizeof (new->addr6));
1363  }
1364  else
1365  {
1366  new->type = HOST_TYPE_IPV4;
1367  memcpy (&new->addr6, &ip6->s6_addr32[3], sizeof (new->addr));
1368  }
1369  vhost =
1370  gvm_vhost_new (g_strdup (host->name), g_strdup ("Forward-DNS"));
1371  new->vhosts = g_slist_prepend (new->vhosts, vhost);
1372  gvm_hosts_add (hosts, new);
1373  tmp = tmp->next;
1374  new_entries = 1;
1375  }
1376  /* Remove hostname from list, as it was either replaced by IPs, or
1377  * is unresolvable. */
1378  hosts->hosts[i] = NULL;
1379  resolved++;
1380  if (!list)
1381  unresolved = g_slist_prepend (unresolved, g_strdup (host->name));
1382  gvm_host_free (host);
1383  g_slist_free_full (list, g_free);
1384  }
1385  if (resolved)
1386  gvm_hosts_fill_gaps (hosts);
1387  hosts->count -= resolved;
1388  hosts->removed += resolved;
1389  if (new_entries)
1390  gvm_hosts_deduplicate (hosts);
1391  hosts->current = 0;
1392  return unresolved;
1393 }
1394 
1403 int
1404 gvm_vhosts_exclude (gvm_host_t *host, const char *excluded_str)
1405 {
1406  GSList *vhost;
1407  char **excluded;
1408  int ret = 0;
1409 
1410  if (!host || !excluded_str)
1411  return ret;
1412 
1413  vhost = host->vhosts;
1414  excluded = g_strsplit (excluded_str, ",", 0);
1415  if (!excluded || !*excluded)
1416  {
1417  g_strfreev (excluded);
1418  return ret;
1419  }
1420  while (vhost)
1421  {
1422  char **tmp = excluded;
1423  char *value = ((gvm_vhost_t *) vhost->data)->value;
1424 
1425  while (*tmp)
1426  {
1427  if (!strcasecmp (value, g_strstrip (*tmp)))
1428  {
1429  gvm_vhost_free (vhost->data);
1430  host->vhosts = vhost = g_slist_delete_link (host->vhosts, vhost);
1431  ret++;
1432  break;
1433  }
1434  tmp++;
1435  if (!*tmp)
1436  {
1437  vhost = vhost->next;
1438  break;
1439  }
1440  }
1441  }
1442  g_strfreev (excluded);
1443 
1444  return ret;
1445 }
1446 
1458 int
1459 gvm_hosts_exclude_with_max (gvm_hosts_t *hosts, const char *excluded_str,
1460  unsigned int max_hosts)
1461 {
1465  gvm_hosts_t *excluded_hosts;
1466  GHashTable *name_table;
1467  size_t excluded = 0, i;
1468 
1469  if (hosts == NULL || excluded_str == NULL)
1470  return -1;
1471 
1472  excluded_hosts = gvm_hosts_new_with_max (excluded_str, max_hosts);
1473  if (excluded_hosts == NULL)
1474  return -1;
1475 
1476  if (gvm_hosts_count (excluded_hosts) == 0)
1477  {
1478  gvm_hosts_free (excluded_hosts);
1479  return 0;
1480  }
1481 
1482  /* Hash host values from excluded hosts list. */
1483  name_table = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
1484  for (i = 0; i < excluded_hosts->count; i++)
1485  {
1486  gchar *name;
1487 
1488  if ((name = gvm_host_value_str (excluded_hosts->hosts[i])))
1489  g_hash_table_insert (name_table, name, hosts);
1490  }
1491 
1492  /* Check for hosts values in hash table. */
1493  for (i = 0; i < hosts->count; i++)
1494  {
1495  gchar *name;
1496 
1497  if ((name = gvm_host_value_str (hosts->hosts[i])))
1498  {
1499  if (g_hash_table_lookup (name_table, name))
1500  {
1501  gvm_host_free (hosts->hosts[i]);
1502  hosts->hosts[i] = NULL;
1503  excluded++;
1504  g_free (name);
1505  continue;
1506  }
1507  g_free (name);
1508  }
1509  }
1510 
1511  /* Cleanup. */
1512  if (excluded)
1513  gvm_hosts_fill_gaps (hosts);
1514  hosts->count -= excluded;
1515  hosts->removed += excluded;
1516  hosts->current = 0;
1517  g_hash_table_destroy (name_table);
1518  gvm_hosts_free (excluded_hosts);
1519  return excluded;
1520 }
1521 
1532 int
1533 gvm_hosts_exclude (gvm_hosts_t *hosts, const char *excluded_str)
1534 {
1535  return gvm_hosts_exclude_with_max (hosts, excluded_str, 0);
1536 }
1537 
1545 char *
1547 {
1548  int retry = 2;
1549  gchar hostname[NI_MAXHOST];
1550  void *addr;
1551  size_t addrlen;
1552  struct sockaddr_in sa;
1553  struct sockaddr_in6 sa6;
1554 
1555  if (!host)
1556  return NULL;
1557 
1558  if (host->type == HOST_TYPE_IPV4)
1559  {
1560  addr = &sa;
1561  addrlen = sizeof (sa);
1562  memset (addr, '\0', addrlen);
1563  sa.sin_addr = host->addr;
1564  sa.sin_family = AF_INET;
1565  }
1566  else if (host->type == HOST_TYPE_IPV6)
1567  {
1568  addr = &sa6;
1569  addrlen = sizeof (sa6);
1570  memset (&sa6, '\0', addrlen);
1571  memcpy (&sa6.sin6_addr, &host->addr6, 16);
1572  sa6.sin6_family = AF_INET6;
1573  }
1574  else
1575  return NULL;
1576 
1577  while (retry--)
1578  {
1579  int ret = getnameinfo (addr, addrlen, hostname, sizeof (hostname), NULL,
1580  0, NI_NAMEREQD);
1581  if (!ret)
1582  return g_ascii_strdown (hostname, -1);
1583  if (ret != EAI_AGAIN)
1584  break;
1585  }
1586  return NULL;
1587 }
1588 
1597 static int
1598 host_name_verify (gvm_host_t *host, const char *value)
1599 {
1600  GSList *list, *tmp;
1601  char *host_str;
1602  int ret = -1;
1603 
1604  assert (host);
1605  assert (value);
1606  host_str = gvm_host_value_str (host);
1607  list = tmp = gvm_resolve_list (value);
1608  while (tmp)
1609  {
1610  char buffer[INET6_ADDRSTRLEN];
1611  addr6_to_str (tmp->data, buffer);
1612  if (!strcasecmp (host_str, buffer))
1613  {
1614  ret = 0;
1615  break;
1616  }
1617  tmp = tmp->next;
1618  }
1619  g_free (host_str);
1620  g_slist_free_full (list, g_free);
1621  return ret;
1622 }
1623 
1629 void
1631 {
1632  GSList *vhosts;
1633  gvm_vhost_t *vhost;
1634  char *value;
1635 
1636  if (!host || host->type == HOST_TYPE_NAME)
1637  return;
1638 
1639  value = gvm_host_reverse_lookup (host);
1640  if (!value)
1641  return;
1642  if (host_name_verify (host, value))
1643  {
1644  g_free (value);
1645  return;
1646  }
1647  /* Don't add vhost, if already in the list. */
1648  vhosts = host->vhosts;
1649  while (vhosts)
1650  {
1651  if (!strcasecmp (((gvm_vhost_t *) vhosts->data)->value, value))
1652  {
1653  g_free (value);
1654  return;
1655  }
1656  vhosts = vhosts->next;
1657  }
1658  vhost = gvm_vhost_new (value, g_strdup ("Reverse-DNS"));
1659  host->vhosts = g_slist_prepend (host->vhosts, vhost);
1660 }
1661 
1671 int
1673 {
1674  size_t i, count = 0;
1675 
1676  if (hosts == NULL)
1677  return -1;
1678 
1679  for (i = 0; i < hosts->count; i++)
1680  {
1681  gchar *name = gvm_host_reverse_lookup (hosts->hosts[i]);
1682 
1683  if (name == NULL)
1684  {
1685  gvm_host_free (hosts->hosts[i]);
1686  hosts->hosts[i] = NULL;
1687  count++;
1688  }
1689  else
1690  g_free (name);
1691  }
1692 
1693  if (count)
1694  gvm_hosts_fill_gaps (hosts);
1695  hosts->count -= count;
1696  hosts->removed += count;
1697  hosts->current = 0;
1698  return count;
1699 }
1700 
1710 int
1712 {
1716  size_t i, count = 0;
1717  GHashTable *name_table;
1718 
1719  if (hosts == NULL)
1720  return -1;
1721 
1722  name_table = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
1723  for (i = 0; i < hosts->count; i++)
1724  {
1725  gchar *name;
1726 
1727  if ((name = gvm_host_reverse_lookup (hosts->hosts[i])))
1728  {
1729  if (g_hash_table_lookup (name_table, name))
1730  {
1731  gvm_host_free (hosts->hosts[i]);
1732  hosts->hosts[i] = NULL;
1733  count++;
1734  g_free (name);
1735  }
1736  else
1737  {
1738  /* Insert in the hash table. Value not important. */
1739  g_hash_table_insert (name_table, name, hosts);
1740  }
1741  }
1742  }
1743 
1744  if (count)
1745  gvm_hosts_fill_gaps (hosts);
1746  g_hash_table_destroy (name_table);
1747  hosts->removed += count;
1748  hosts->count -= count;
1749  hosts->current = 0;
1750  return count;
1751 }
1752 
1760 unsigned int
1762 {
1763  return hosts ? hosts->count : 0;
1764 }
1765 
1774 unsigned int
1776 {
1777  return hosts ? hosts->removed : 0;
1778 }
1779 
1792 int
1793 gvm_host_in_hosts (const gvm_host_t *host, const struct in6_addr *addr,
1794  const gvm_hosts_t *hosts)
1795 {
1796  char *host_str;
1797  size_t i;
1798 
1799  if (host == NULL || hosts == NULL)
1800  return 0;
1801 
1802  host_str = gvm_host_value_str (host);
1803 
1804  for (i = 0; i < hosts->count; i++)
1805  {
1806  gvm_host_t *current_host = hosts->hosts[i];
1807  char *tmp = gvm_host_value_str (current_host);
1808 
1809  if (strcasecmp (host_str, tmp) == 0)
1810  {
1811  g_free (host_str);
1812  g_free (tmp);
1813  return 1;
1814  }
1815  g_free (tmp);
1816 
1817  /* Hostnames in hosts list shouldn't be resolved. */
1818  if (addr && gvm_host_type (current_host) != HOST_TYPE_NAME)
1819  {
1820  struct in6_addr tmpaddr;
1821  gvm_host_get_addr6 (current_host, &tmpaddr);
1822 
1823  if (memcmp (addr->s6_addr, &tmpaddr.s6_addr, 16) == 0)
1824  {
1825  g_free (host_str);
1826  return 1;
1827  }
1828  }
1829  }
1830 
1831  g_free (host_str);
1832  return 0;
1833 }
1834 
1842 enum host_type
1844 {
1845  assert (host);
1846  return host->type;
1847 }
1848 
1857 gchar *
1859 {
1860  if (host == NULL)
1861  return NULL;
1862 
1863  return host_type_str[host->type];
1864 }
1865 
1873 gchar *
1875 {
1876  if (host == NULL)
1877  return NULL;
1878 
1879  switch (host->type)
1880  {
1881  case HOST_TYPE_NAME:
1882  return g_strdup (host->name);
1883  break;
1884  case HOST_TYPE_IPV4:
1885  case HOST_TYPE_IPV6:
1886  /* Handle both cases using inet_ntop(). */
1887  {
1888  int family, size;
1889  gchar *str;
1890  const void *srcaddr;
1891 
1892  if (host->type == HOST_TYPE_IPV4)
1893  {
1894  family = AF_INET;
1895  size = INET_ADDRSTRLEN;
1896  srcaddr = &host->addr;
1897  }
1898  else
1899  {
1900  family = AF_INET6;
1901  size = INET6_ADDRSTRLEN;
1902  srcaddr = &host->addr6;
1903  }
1904 
1905  str = g_malloc0 (size);
1906  if (inet_ntop (family, srcaddr, str, size) == NULL)
1907  {
1908  perror ("inet_ntop");
1909  g_free (str);
1910  return NULL;
1911  }
1912  return str;
1913  }
1914  default:
1915  return g_strdup ("Erroneous host type: Should be Hostname/IPv4/IPv6.");
1916  }
1917 }
1918 
1930 int
1931 gvm_host_resolve (const gvm_host_t *host, void *dst, int family)
1932 {
1933  if (host == NULL || dst == NULL || host->type != HOST_TYPE_NAME)
1934  return -1;
1935 
1936  return gvm_resolve (host->name, dst, family);
1937 }
1938 
1951 int
1952 gvm_host_get_addr6 (const gvm_host_t *host, struct in6_addr *ip6)
1953 {
1954  if (host == NULL || ip6 == NULL)
1955  return -1;
1956 
1957  switch (gvm_host_type (host))
1958  {
1959  case HOST_TYPE_IPV6:
1960  memcpy (ip6, &host->addr6, sizeof (struct in6_addr));
1961  return 0;
1962 
1963  case HOST_TYPE_IPV4:
1964  ipv4_as_ipv6 (&host->addr, ip6);
1965  return 0;
1966 
1967  case HOST_TYPE_NAME:
1968  {
1969  struct in_addr ip4;
1970 
1971  /* Fail if IPv4 and IPv6 both don't resolve. */
1972  if (gvm_host_resolve (host, &ip4, AF_INET) == 0)
1973  ipv4_as_ipv6 (&ip4, ip6);
1974  else if (gvm_host_resolve (host, ip6, AF_INET6) == -1)
1975  return -1;
1976  return 0;
1977  }
1978 
1979  default:
1980  return -1;
1981  }
1982 }
gvm_host_value_str
gchar * gvm_host_value_str(const gvm_host_t *host)
Gets a host's value in printable format.
Definition: hosts.c:1874
long_range6_network_ips
static int long_range6_network_ips(const char *str, struct in6_addr *first, struct in6_addr *last)
Gets the first and last IPv6 addresses from a long range-expressed network. eg. "::1:200:7-::1:205:50...
Definition: hosts.c:634
gvm_hosts_reverse_lookup_only
int gvm_hosts_reverse_lookup_only(gvm_hosts_t *hosts)
Removes hosts that don't reverse-lookup from the hosts collection. Not to be used while iterating ove...
Definition: hosts.c:1672
gvm_host::name
gchar * name
Definition: hosts.h:67
addr6_to_str
void addr6_to_str(const struct in6_addr *addr6, char *str)
Stringifies an IP address.
Definition: networking.c:260
networking.h
GVM Networking related API.
cidr6_block_ips
static int cidr6_block_ips(const char *str, struct in6_addr *first, struct in6_addr *last)
Gets the first and last usable IPv4 addresses from a CIDR-expressed block. eg. "192....
Definition: hosts.c:527
gvm_hosts_reverse_lookup_unify
int gvm_hosts_reverse_lookup_unify(gvm_hosts_t *hosts)
Removes hosts duplicates that reverse-lookup to the same value. Not to be used while iterating over t...
Definition: hosts.c:1711
long_range_network_ips
static int long_range_network_ips(const char *str, struct in_addr *first, struct in_addr *last)
Gets the first and last IPv4 addresses from a long range-expressed network. eg. "192....
Definition: hosts.c:274
is_short_range_network
static int is_short_range_network(const char *str)
Checks if a buffer points to a valid short range-expressed network. "192.168.11.1-50" is valid,...
Definition: hosts.c:314
is_hostname
static int is_hostname(const char *str)
Checks if a buffer points to a valid hostname. Valid characters include: Alphanumerics,...
Definition: hosts.c:405
gvm_hosts::count
size_t count
Definition: hosts.h:96
gvm_hosts::removed
size_t removed
Definition: hosts.h:97
gvm_hosts_free
void gvm_hosts_free(gvm_hosts_t *hosts)
Frees memory occupied by an gvm_hosts_t structure.
Definition: hosts.c:1255
gvm_resolve_list
GSList * gvm_resolve_list(const char *name)
Returns a list of addresses that a hostname resolves to.
Definition: networking.c:338
is_long_range_network
static int is_long_range_network(const char *str)
Checks if a buffer points to a valid long range-expressed network. "192.168.12.1-192....
Definition: hosts.c:239
gvm_hosts_init
static gvm_hosts_t * gvm_hosts_init(const char *hosts_str)
Creates a hosts collection from a hosts string.
Definition: hosts.c:918
is_cidr6_block
static int is_cidr6_block(const char *str)
Checks if a buffer points to an IPv6 CIDR-expressed block. "2620:0:2d0:200::7/120" is valid,...
Definition: hosts.c:428
ipv4_as_ipv6
void ipv4_as_ipv6(const struct in_addr *ip4, struct in6_addr *ip6)
Maps an IPv4 address as an IPv6 address. eg. 192.168.10.20 would map to ::ffff:192....
Definition: networking.c:242
HOST_TYPE_IPV6
@ HOST_TYPE_IPV6
Definition: hosts.h:43
gvm_host_type_str
gchar * gvm_host_type_str(const gvm_host_t *host)
Gets a host's type in printable format.
Definition: hosts.c:1858
gvm_host_free
static void gvm_host_free(gpointer host)
Frees the memory occupied by an gvm_host_t object.
Definition: hosts.c:877
short_range6_network_ips
static int short_range6_network_ips(const char *str, struct in6_addr *first, struct in6_addr *last)
Gets the first and last IPv6 addresses from a short range-expressed network. eg. "\::ffee:1:1001-1005...
Definition: hosts.c:722
gvm_hosts::max_size
size_t max_size
Definition: hosts.h:94
gvm_hosts_count
unsigned int gvm_hosts_count(const gvm_hosts_t *hosts)
Gets the count of single hosts objects in a hosts collection.
Definition: hosts.c:1761
is_long_range6_network
static int is_long_range6_network(const char *str)
Checks if a buffer points to a valid long IPv6 range-expressed network. "::fee5-::1:530" is valid.
Definition: hosts.c:599
HOST_TYPE_RANGE_SHORT
@ HOST_TYPE_RANGE_SHORT
Definition: hosts.h:41
gvm_hosts_new_with_max
gvm_hosts_t * gvm_hosts_new_with_max(const gchar *hosts_str, unsigned int max_hosts)
Creates a new gvm_hosts_t structure and the associated hosts objects from the provided hosts_str.
Definition: hosts.c:1031
gvm_host::type
enum host_type type
Definition: hosts.h:71
gvm_resolve
int gvm_resolve(const char *name, void *dst, int family)
Resolves a hostname to an IPv4 or IPv6 address.
Definition: networking.c:388
gvm_host_get_addr6
int gvm_host_get_addr6(const gvm_host_t *host, struct in6_addr *ip6)
Gives a host object's value as an IPv6 address. If the host type is hostname, it resolves the IPv4 ad...
Definition: hosts.c:1952
gvm_vhost
The structure for a single vhost object.
Definition: hosts.h:78
HOST_TYPE_IPV4
@ HOST_TYPE_IPV4
Definition: hosts.h:39
cidr6_get_ip
static int cidr6_get_ip(const char *str, struct in6_addr *addr6)
Gets the IPv4 value from a CIDR-expressed block. eg. For "192.168.1.10/24" it is "192....
Definition: hosts.c:492
gvm_hosts_add
static void gvm_hosts_add(gvm_hosts_t *hosts, gvm_host_t *host)
Inserts a host object at the end of a hosts collection.
Definition: hosts.c:898
gvm_hosts::hosts
gvm_host_t ** hosts
Definition: hosts.h:93
gvm_get_host_type
int gvm_get_host_type(const gchar *str_stripped)
Determines the host type in a buffer.
Definition: hosts.c:768
gvm_host
The structure for a single host object.
Definition: hosts.h:63
HOST_TYPE_CIDR6_BLOCK
@ HOST_TYPE_CIDR6_BLOCK
Definition: hosts.h:44
gvm_hosts_exclude
int gvm_hosts_exclude(gvm_hosts_t *hosts, const char *excluded_str)
Excludes a set of hosts provided as a string from a hosts collection. Not to be used while iterating ...
Definition: hosts.c:1533
gvm_hosts::current
size_t current
Definition: hosts.h:95
cidr_block_ips
static int cidr_block_ips(const char *str, struct in_addr *first, struct in_addr *last)
Gets the first and last usable IPv4 addresses from a CIDR-expressed block. eg. "192....
Definition: hosts.c:208
gvm_hosts_new
gvm_hosts_t * gvm_hosts_new(const gchar *hosts_str)
Creates a new gvm_hosts_t structure and the associated hosts objects from the provided hosts_str.
Definition: hosts.c:1226
gvm_vhosts_exclude
int gvm_vhosts_exclude(gvm_host_t *host, const char *excluded_str)
Exclude a list of vhosts from a host's vhosts list.
Definition: hosts.c:1404
gvm_vhost::value
char * value
Definition: hosts.h:80
HOST_TYPE_RANGE_LONG
@ HOST_TYPE_RANGE_LONG
Definition: hosts.h:42
gvm_host::addr
struct in_addr addr
Definition: hosts.h:68
HOST_TYPE_RANGE6_LONG
@ HOST_TYPE_RANGE6_LONG
Definition: hosts.h:45
gvm_host_type
enum host_type gvm_host_type(const gvm_host_t *host)
Gets a host object's type.
Definition: hosts.c:1843
gvm_host_in_hosts
int gvm_host_in_hosts(const gvm_host_t *host, const struct in6_addr *addr, const gvm_hosts_t *hosts)
Returns whether a host has an equal host in a hosts collection. eg. 192.168.10.1 has an equal in list...
Definition: hosts.c:1793
is_cidr_block
static int is_cidr_block(const char *str)
Checks if a buffer points to an IPv4 CIDR-expressed block. "192.168.12.3/24" is valid,...
Definition: hosts.c:104
gvm_hosts_exclude_with_max
int gvm_hosts_exclude_with_max(gvm_hosts_t *hosts, const char *excluded_str, unsigned int max_hosts)
Excludes a set of hosts provided as a string from a hosts collection. Not to be used while iterating ...
Definition: hosts.c:1459
is_ipv4_address
static int is_ipv4_address(const char *str)
Checks if a buffer points to a valid IPv4 address. "192.168.11.1" is valid, "192.168....
Definition: hosts.c:72
gvm_host_new
static gvm_host_t * gvm_host_new()
Creates a new gvm_host_t object.
Definition: hosts.c:862
cidr_get_ip
static int cidr_get_ip(const char *str, struct in_addr *addr)
Gets the IPv4 value from a CIDR-expressed block. eg. For "192.168.1.10/24" it is "192....
Definition: hosts.c:168
gvm_host_reverse_lookup
char * gvm_host_reverse_lookup(gvm_host_t *host)
Checks for a host object reverse dns lookup existence.
Definition: hosts.c:1546
gvm_vhost::source
char * source
Definition: hosts.h:81
gvm_hosts_next
gvm_host_t * gvm_hosts_next(gvm_hosts_t *hosts)
Gets the next gvm_host_t from a gvm_hosts_t structure. The state of iteration is kept internally with...
Definition: hosts.c:1240
HOST_TYPE_MAX
@ HOST_TYPE_MAX
Definition: hosts.h:47
is_short_range6_network
static int is_short_range6_network(const char *str)
Checks if a buffer points to a valid short IPv6 range-expressed network. "::200:ff:1-fee5" is valid.
Definition: hosts.c:674
gvm_vhost_free
static void gvm_vhost_free(gpointer vhost)
Frees the memory occupied by an gvm_vhost_t object.
Definition: hosts.c:846
gvm_hosts_shuffle
void gvm_hosts_shuffle(gvm_hosts_t *hosts)
Randomizes the order of the hosts objects in the collection. Not to be used while iterating over the ...
Definition: hosts.c:1278
gvm_hosts::orig_str
gchar * orig_str
Definition: hosts.h:92
host_name_verify
static int host_name_verify(gvm_host_t *host, const char *value)
Verifies that hostname value resolves to a host's IP.
Definition: hosts.c:1598
host_type
host_type
Definition: hosts.h:36
host_type_str
gchar * host_type_str[HOST_TYPE_MAX]
Definition: hosts.c:53
cidr_get_block
static int cidr_get_block(const char *str, unsigned int *block)
Gets the network block value from a CIDR-expressed block string. For "192.168.1.1/24" it is 24.
Definition: hosts.c:147
gvm_host::addr6
struct in6_addr addr6
Definition: hosts.h:69
gvm_hosts_reverse
void gvm_hosts_reverse(gvm_hosts_t *hosts)
Reverses the order of the hosts objects in the collection. Not to be used while iterating over the si...
Definition: hosts.c:1310
gvm_vhost_new
gvm_vhost_t * gvm_vhost_new(char *value, char *source)
Creates a new gvm_vhost_t object.
Definition: hosts.c:829
HOST_TYPE_CIDR_BLOCK
@ HOST_TYPE_CIDR_BLOCK
Definition: hosts.h:40
gvm_hosts_resolve
GSList * gvm_hosts_resolve(gvm_hosts_t *hosts)
Resolves host objects of type name in a hosts collection, replacing hostnames with IPv4 values....
Definition: hosts.c:1336
gvm_hosts_fill_gaps
static void gvm_hosts_fill_gaps(gvm_hosts_t *hosts)
Fill the gaps in the array of a hosts collection, which are caused by the removal of host entries.
Definition: hosts.c:936
short_range_network_ips
static int short_range_network_ips(const char *str, struct in_addr *first, struct in_addr *last)
Gets the first and last IPv4 addresses from a short range-expressed network. "192....
Definition: hosts.c:359
cidr6_get_block
static int cidr6_get_block(const char *str, unsigned int *block)
Gets the network block value from a CIDR-expressed block string. For "192.168.1.1/24" it is 24.
Definition: hosts.c:471
HOST_TYPE_RANGE6_SHORT
@ HOST_TYPE_RANGE6_SHORT
Definition: hosts.h:46
gvm_hosts_deduplicate
static void gvm_hosts_deduplicate(gvm_hosts_t *hosts)
Removes duplicate hosts values from an gvm_hosts_t structure. Also resets the iterator current positi...
Definition: hosts.c:974
gvm_host_add_reverse_lookup
void gvm_host_add_reverse_lookup(gvm_host_t *host)
Add a host's reverse-lookup name to the vhosts list.
Definition: hosts.c:1630
is_ipv6_address
static int is_ipv6_address(const char *str)
Checks if a buffer points to a valid IPv6 address. "0:0:0:0:0:0:0:1", "::1" and "::FFFF:192....
Definition: hosts.c:88
HOST_TYPE_NAME
@ HOST_TYPE_NAME
Definition: hosts.h:38
gvm_host_resolve
int gvm_host_resolve(const gvm_host_t *host, void *dst, int family)
Resolves a host object's name to an IPv4 or IPv6 address. Host object should be of type HOST_TYPE_NAM...
Definition: hosts.c:1931
gvm_hosts_removed
unsigned int gvm_hosts_removed(const gvm_hosts_t *hosts)
Gets the count of single values in hosts string that were removed (duplicates / excluded....
Definition: hosts.c:1775
gvm_host::vhosts
GSList * vhosts
Definition: hosts.h:72
gvm_hosts
The structure for Hosts collection.
Definition: hosts.h:90
hosts.h
Protos and data structures for Hosts collections and single hosts objects.