Greenbone Vulnerability Management Libraries  22.8.0
hosts.h
Go to the documentation of this file.
1 /* SPDX-FileCopyrightText: 2013-2023 Greenbone AG
2  *
3  * SPDX-License-Identifier: GPL-2.0-or-later
4  */
5 
14 #ifndef _GVM_HOSTS_H
15 #define _GVM_HOSTS_H
16 
20 #define FEATURE_HOSTS_ALLOWED_ONLY 1
21 
26 #define FEATURE_REVERSE_LOOKUP_EXCLUDED 1
27 
28 #include <glib.h> /* for gchar, GList */
29 #include <netinet/in.h> /* for in6_addr, in_addr */
30 
31 /* Static values */
32 
34 {
35  HOST_TYPE_NAME = 0, /* Hostname eg. foo */
36  HOST_TYPE_IPV4, /* eg. 192.168.1.1 */
37  HOST_TYPE_CIDR_BLOCK, /* eg. 192.168.15.0/24 */
38  HOST_TYPE_RANGE_SHORT, /* eg. 192.168.15.10-20 */
39  HOST_TYPE_RANGE_LONG, /* eg. 192.168.15.10-192.168.18.3 */
40  HOST_TYPE_IPV6, /* eg. ::1 */
41  HOST_TYPE_CIDR6_BLOCK, /* eg. ::ffee/120 */
42  HOST_TYPE_RANGE6_LONG, /* eg. ::1:200:7-::1:205:500 */
43  HOST_TYPE_RANGE6_SHORT, /* eg. ::1-fe10 */
44  HOST_TYPE_MAX /* Boundary checking. */
45 };
46 
47 /* Typedefs */
48 typedef struct gvm_host gvm_host_t;
49 typedef struct gvm_vhost gvm_vhost_t;
50 typedef struct gvm_hosts gvm_hosts_t;
51 
52 /* Data structures. */
53 
60 struct gvm_host
61 {
62  union
63  {
64  gchar *name;
65  struct in_addr addr;
66  struct in6_addr addr6;
67  };
68  enum host_type type;
69  GSList *vhosts;
70 };
71 
75 struct gvm_vhost
76 {
77  char *value;
78  char *source;
79 };
80 
87 struct gvm_hosts
88 {
89  gchar *orig_str;
91  size_t max_size;
92  size_t current;
93  size_t count;
94  size_t removed;
95  size_t duplicated;
96 };
97 
98 /* Function prototypes. */
99 
100 /* gvm_hosts_t related */
101 
102 gvm_hosts_t *
103 gvm_hosts_new (const gchar *);
104 
105 gvm_hosts_t *
106 gvm_hosts_new_with_max (const gchar *, unsigned int);
107 
108 gvm_host_t *
110 
111 void
113 
114 void
116 
117 void
119 
120 void
122 
123 void
125 
126 GSList *
128 
129 int
130 gvm_hosts_exclude (gvm_hosts_t *, const char *);
131 
132 int
133 gvm_vhosts_exclude (gvm_host_t *, const char *);
134 
135 int
136 gvm_hosts_exclude_with_max (gvm_hosts_t *, const char *, unsigned int);
137 
138 GSList *
139 gvm_hosts_allowed_only (gvm_hosts_t *, const char *, const char *);
140 
141 char *
143 
144 int
146 
147 int
149 
150 gvm_hosts_t *
152 
153 gvm_hosts_t *
155 
156 unsigned int
157 gvm_hosts_count (const gvm_hosts_t *);
158 
159 unsigned int
161 
162 unsigned int
164 
165 /* gvm_host_t related */
166 
167 gvm_host_t *
168 gvm_host_from_str (const gchar *hosts_str);
169 
170 int
171 gvm_host_in_hosts (const gvm_host_t *, const struct in6_addr *,
172  const gvm_hosts_t *);
173 
174 gvm_host_t *
175 gvm_host_find_in_hosts (const gvm_host_t *, const struct in6_addr *,
176  const gvm_hosts_t *);
177 
178 gchar *
179 gvm_host_type_str (const gvm_host_t *);
180 
181 enum host_type
182 gvm_host_type (const gvm_host_t *);
183 
184 gchar *
186 
187 int
188 gvm_host_resolve (const gvm_host_t *, void *, int);
189 
190 int
191 gvm_host_get_addr6 (const gvm_host_t *, struct in6_addr *);
192 
193 void
195 
196 void gvm_host_free (gpointer);
197 
198 gpointer gvm_duplicate_vhost (gconstpointer, gpointer);
199 
200 gvm_host_t *
202 
203 /* Miscellaneous functions */
204 
205 gvm_vhost_t *
206 gvm_vhost_new (char *, char *);
207 
208 int
209 gvm_get_host_type (const gchar *);
210 
211 #endif /* not _GVM_HOSTS_H */
gvm_host::name
gchar * name
Definition: hosts.h:64
gvm_hosts_duplicated
unsigned int gvm_hosts_duplicated(const gvm_hosts_t *)
Gets the count of single values in hosts string that were duplicated and therefore removed from the l...
Definition: hosts.c:2111
gvm_hosts_reverse_lookup_unify_excluded
gvm_hosts_t * gvm_hosts_reverse_lookup_unify_excluded(gvm_hosts_t *)
Removes hosts duplicates that reverse-lookup to the same value. Not to be used while iterating over t...
Definition: hosts.c:2007
gvm_hosts::count
size_t count
Definition: hosts.h:93
gvm_host_resolve
int gvm_host_resolve(const gvm_host_t *, void *, int)
Resolves a host object's name to an IPv4 or IPv6 address. Host object should be of type HOST_TYPE_NAM...
Definition: hosts.c:2324
gvm_hosts_new
gvm_hosts_t * gvm_hosts_new(const gchar *)
Creates a new gvm_hosts_t structure and the associated hosts objects from the provided hosts_str.
Definition: hosts.c:1296
gvm_hosts::removed
size_t removed
Definition: hosts.h:94
gvm_host_type
enum host_type gvm_host_type(const gvm_host_t *)
Gets a host object's type.
Definition: hosts.c:2236
gvm_hosts_reverse_lookup_only
int gvm_hosts_reverse_lookup_only(gvm_hosts_t *)
Removes hosts that don't reverse-lookup from the hosts collection. Not to be used while iterating ove...
Definition: hosts.c:1982
gvm_host_value_str
gchar * gvm_host_value_str(const gvm_host_t *)
Gets a host's value in printable format.
Definition: hosts.c:2267
HOST_TYPE_IPV6
@ HOST_TYPE_IPV6
Definition: hosts.h:40
gvm_duplicate_vhost
gpointer gvm_duplicate_vhost(gconstpointer, gpointer)
Creates a deep copy of a gvm_vhost_t object.
Definition: hosts.c:906
gvm_host_from_str
gvm_host_t * gvm_host_from_str(const gchar *hosts_str)
Creates a new gvm_host_t from a host string.
Definition: hosts.c:1765
gvm_hosts::duplicated
size_t duplicated
Definition: hosts.h:95
gvm_host_free
void gvm_host_free(gpointer)
Frees the memory occupied by an gvm_host_t object.
Definition: hosts.c:941
gvm_hosts::max_size
size_t max_size
Definition: hosts.h:91
gvm_vhost_new
gvm_vhost_t * gvm_vhost_new(char *, char *)
Creates a new gvm_vhost_t object.
Definition: hosts.c:871
HOST_TYPE_RANGE_SHORT
@ HOST_TYPE_RANGE_SHORT
Definition: hosts.h:38
gvm_hosts_next
gvm_host_t * gvm_hosts_next(gvm_hosts_t *)
Gets the next gvm_host_t from a gvm_hosts_t structure. The state of iteration is kept internally with...
Definition: hosts.c:1310
gvm_host::type
enum host_type type
Definition: hosts.h:68
gvm_hosts_exclude
int gvm_hosts_exclude(gvm_hosts_t *, const char *)
Excludes a set of hosts provided as a string from a hosts collection. Not to be used while iterating ...
Definition: hosts.c:1749
gvm_vhost
The structure for a single vhost object.
Definition: hosts.h:76
HOST_TYPE_IPV4
@ HOST_TYPE_IPV4
Definition: hosts.h:36
gvm_hosts_shuffle
void gvm_hosts_shuffle(gvm_hosts_t *)
Randomizes the order of the hosts objects in the collection. Not to be used while iterating over the ...
Definition: hosts.c:1382
gvm_hosts::hosts
gvm_host_t ** hosts
Definition: hosts.h:90
gvm_host_type_str
gchar * gvm_host_type_str(const gvm_host_t *)
Gets a host's type in printable format.
Definition: hosts.c:2251
gvm_host
The structure for a single host object.
Definition: hosts.h:61
HOST_TYPE_CIDR6_BLOCK
@ HOST_TYPE_CIDR6_BLOCK
Definition: hosts.h:41
gvm_hosts_count
unsigned int gvm_hosts_count(const gvm_hosts_t *)
Gets the count of single hosts objects in a hosts collection.
Definition: hosts.c:2083
gvm_hosts::current
size_t current
Definition: hosts.h:92
gvm_vhost::value
char * value
Definition: hosts.h:77
HOST_TYPE_RANGE_LONG
@ HOST_TYPE_RANGE_LONG
Definition: hosts.h:39
gvm_host_get_addr6
int gvm_host_get_addr6(const gvm_host_t *, struct in6_addr *)
Gives a host object's value as an IPv6 address. If the host type is hostname, it resolves the IPv4 ad...
Definition: hosts.c:2345
gvm_host::addr
struct in_addr addr
Definition: hosts.h:65
gvm_host_add_reverse_lookup
void gvm_host_add_reverse_lookup(gvm_host_t *)
Add a host's reverse-lookup name to the vhosts list.
Definition: hosts.c:1899
HOST_TYPE_RANGE6_LONG
@ HOST_TYPE_RANGE6_LONG
Definition: hosts.h:42
gvm_hosts_free
void gvm_hosts_free(gvm_hosts_t *)
Frees memory occupied by an gvm_hosts_t structure.
Definition: hosts.c:1358
gvm_get_host_type
int gvm_get_host_type(const gchar *)
Determines the host type in a buffer.
Definition: hosts.c:810
gvm_vhost::source
char * source
Definition: hosts.h:78
gvm_host_reverse_lookup
char * gvm_host_reverse_lookup(gvm_host_t *)
Checks for a host object reverse dns lookup existence.
Definition: hosts.c:1814
HOST_TYPE_MAX
@ HOST_TYPE_MAX
Definition: hosts.h:44
gvm_hosts_move_current_host_to_end
void gvm_hosts_move_current_host_to_end(gvm_hosts_t *)
Move the current gvm_host_t from a gvm_hosts_t structure to the end of the hosts list.
Definition: hosts.c:1328
gvm_duplicate_host
gvm_host_t * gvm_duplicate_host(gvm_host_t *)
Creates a deep copy of a host. gvm_host_free has to be called on it.
Definition: hosts.c:2176
gvm_hosts::orig_str
gchar * orig_str
Definition: hosts.h:89
host_type
host_type
Definition: hosts.h:34
gvm_host_in_hosts
int gvm_host_in_hosts(const gvm_host_t *, const struct in6_addr *, const gvm_hosts_t *)
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:2219
gvm_hosts_reverse_lookup_only_excluded
gvm_hosts_t * gvm_hosts_reverse_lookup_only_excluded(gvm_hosts_t *)
Removes hosts that don't reverse-lookup from the hosts collection. Not to be used while iterating ove...
Definition: hosts.c:1941
gvm_host::addr6
struct in6_addr addr6
Definition: hosts.h:66
HOST_TYPE_CIDR_BLOCK
@ HOST_TYPE_CIDR_BLOCK
Definition: hosts.h:37
gvm_hosts_resolve
GSList * gvm_hosts_resolve(gvm_hosts_t *)
Resolves host objects of type name in a hosts collection, replacing hostnames with IPv4 values....
Definition: hosts.c:1440
gvm_hosts_allowed_only
GSList * gvm_hosts_allowed_only(gvm_hosts_t *, const char *, const char *)
Returns a list of hosts after a host authorization check.
Definition: hosts.c:1639
HOST_TYPE_RANGE6_SHORT
@ HOST_TYPE_RANGE6_SHORT
Definition: hosts.h:43
gvm_hosts_reverse
void gvm_hosts_reverse(gvm_hosts_t *)
Reverses the order of the hosts objects in the collection. Not to be used while iterating over the si...
Definition: hosts.c:1414
gvm_hosts_reverse_lookup_unify
int gvm_hosts_reverse_lookup_unify(gvm_hosts_t *)
Removes hosts duplicates that reverse-lookup to the same value. Not to be used while iterating over t...
Definition: hosts.c:2062
gvm_hosts_exclude_with_max
int gvm_hosts_exclude_with_max(gvm_hosts_t *, const char *, unsigned int)
Excludes a set of hosts provided as a string from a hosts collection. Not to be used while iterating ...
Definition: hosts.c:1563
gvm_hosts_add
void gvm_hosts_add(gvm_hosts_t *, gvm_host_t *)
Inserts a host object at the end of a hosts collection.
Definition: hosts.c:962
gvm_hosts_removed
unsigned int gvm_hosts_removed(const gvm_hosts_t *)
Gets the count of single values in hosts string that were removed (duplicates / excluded....
Definition: hosts.c:2097
HOST_TYPE_NAME
@ HOST_TYPE_NAME
Definition: hosts.h:35
gvm_hosts_new_with_max
gvm_hosts_t * gvm_hosts_new_with_max(const gchar *, unsigned int)
Creates a new gvm_hosts_t structure and the associated hosts objects from the provided hosts_str.
Definition: hosts.c:1099
gvm_host::vhosts
GSList * vhosts
Definition: hosts.h:69
gvm_hosts
The structure for Hosts collection.
Definition: hosts.h:88
gvm_host_find_in_hosts
gvm_host_t * gvm_host_find_in_hosts(const gvm_host_t *, const struct in6_addr *, const gvm_hosts_t *)
Find the gvm_host_t from a gvm_hosts_t structure.
Definition: hosts.c:2127
gvm_vhosts_exclude
int gvm_vhosts_exclude(gvm_host_t *, const char *)
Exclude a list of vhosts from a host's vhosts list.
Definition: hosts.c:1508