mirror of
https://github.com/nmap/nmap.git
synced 2025-12-06 04:31:29 +00:00
Rearrange declarations to put all addrset functions in nbase.h, hide struct addrset internals.
This commit is contained in:
@@ -24,7 +24,7 @@ MAKEDEPEND = @MAKEDEPEND@
|
|||||||
|
|
||||||
TARGET = libnbase.a
|
TARGET = libnbase.a
|
||||||
|
|
||||||
DEPS = getopt.h nbase.h nbase_winconfig.h nbase_config.h nbase_ipv6.h nbase_winunix.h nbase_crc32ct.h nbase_addrset.h
|
DEPS = getopt.h nbase.h nbase_winconfig.h nbase_config.h nbase_ipv6.h nbase_winunix.h nbase_crc32ct.h
|
||||||
OBJS = @LIBOBJS@
|
OBJS = @LIBOBJS@
|
||||||
|
|
||||||
all: $(TARGET)
|
all: $(TARGET)
|
||||||
|
|||||||
@@ -561,22 +561,12 @@ char *executable_path(const char *argv0);
|
|||||||
|
|
||||||
/* addrset management functions and definitions */
|
/* addrset management functions and definitions */
|
||||||
/* A set of addresses. Used to match against allow/deny lists. */
|
/* A set of addresses. Used to match against allow/deny lists. */
|
||||||
struct addrset_elem;
|
struct addrset;
|
||||||
/* A radix tree (trie) used to match quickly against allow/deny lists. */
|
|
||||||
struct trie_node;
|
|
||||||
|
|
||||||
/* A set of addresses. Used to match against allow/deny lists. */
|
|
||||||
struct addrset {
|
|
||||||
/* Linked list of struct addset_elem. */
|
|
||||||
struct addrset_elem *head;
|
|
||||||
/* Radix tree for faster matching of certain cases */
|
|
||||||
struct trie_node *trie;
|
|
||||||
};
|
|
||||||
|
|
||||||
void nbase_set_log(void (*log_user_func)(const char *, ...),void (*log_debug_func)(const char *, ...));
|
void nbase_set_log(void (*log_user_func)(const char *, ...),void (*log_debug_func)(const char *, ...));
|
||||||
extern void addrset_init(struct addrset *set);
|
struct addrset *addrset_new();
|
||||||
extern void addrset_free(struct addrset *set);
|
extern void addrset_free(struct addrset *set);
|
||||||
extern void addrset_elem_print(FILE *fp, const struct addrset_elem *elem);
|
extern void addrset_print(FILE *fp, const struct addrset *set);
|
||||||
extern int addrset_add_spec(struct addrset *set, const char *spec, int af, int dns);
|
extern int addrset_add_spec(struct addrset *set, const char *spec, int af, int dns);
|
||||||
extern int addrset_add_file(struct addrset *set, FILE *fd, int af, int dns);
|
extern int addrset_add_file(struct addrset *set, FILE *fd, int af, int dns);
|
||||||
extern int addrset_contains(const struct addrset *set, const struct sockaddr *sa);
|
extern int addrset_contains(const struct addrset *set, const struct sockaddr *sa);
|
||||||
|
|||||||
@@ -120,7 +120,6 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="getopt.h" />
|
<ClInclude Include="getopt.h" />
|
||||||
<ClInclude Include="nbase.h" />
|
<ClInclude Include="nbase.h" />
|
||||||
<ClInclude Include="nbase_addrset.h" />
|
|
||||||
<ClInclude Include="nbase_ipv6.h" />
|
<ClInclude Include="nbase_ipv6.h" />
|
||||||
<ClInclude Include="nbase_winconfig.h" />
|
<ClInclude Include="nbase_winconfig.h" />
|
||||||
<ClInclude Include="nbase_winunix.h" />
|
<ClInclude Include="nbase_winunix.h" />
|
||||||
|
|||||||
@@ -131,8 +131,10 @@
|
|||||||
program after making any big changes. Also, please add tests for any new
|
program after making any big changes. Also, please add tests for any new
|
||||||
features. */
|
features. */
|
||||||
|
|
||||||
|
#include <limits.h> /* CHAR_BIT */
|
||||||
|
#include <errno.h>
|
||||||
|
|
||||||
#include "nbase.h"
|
#include "nbase.h"
|
||||||
#include "nbase_addrset.h"
|
|
||||||
|
|
||||||
/* A fancy logging system to allow this file to take advantage of different logging
|
/* A fancy logging system to allow this file to take advantage of different logging
|
||||||
systems used by various programs */
|
systems used by various programs */
|
||||||
@@ -170,12 +172,38 @@ struct trie_node {
|
|||||||
struct trie_node *next_bit_zero;
|
struct trie_node *next_bit_zero;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* We use bit vectors to represent what values are allowed in an IPv4 octet.
|
||||||
|
Each vector is built up of an array of bitvector_t (any convenient integer
|
||||||
|
type). */
|
||||||
|
typedef unsigned long bitvector_t;
|
||||||
|
/* A 256-element bit vector, representing legal values for one octet. */
|
||||||
|
typedef bitvector_t octet_bitvector[(256 - 1) / (sizeof(unsigned long) * CHAR_BIT) + 1];
|
||||||
|
|
||||||
|
/* A chain of tests for set inclusion. If one test is passed, the address is in
|
||||||
|
the set. */
|
||||||
|
struct addrset_elem {
|
||||||
|
struct {
|
||||||
|
/* A bit vector for each address octet. */
|
||||||
|
octet_bitvector bits[4];
|
||||||
|
} ipv4;
|
||||||
|
struct addrset_elem *next;
|
||||||
|
};
|
||||||
|
|
||||||
|
/* A set of addresses. Used to match against allow/deny lists. */
|
||||||
|
struct addrset {
|
||||||
|
/* Linked list of struct addset_elem. */
|
||||||
|
struct addrset_elem *head;
|
||||||
|
/* Radix tree for faster matching of certain cases */
|
||||||
|
struct trie_node *trie;
|
||||||
|
};
|
||||||
|
|
||||||
/* Special node pointer to represent "all possible addresses"
|
/* Special node pointer to represent "all possible addresses"
|
||||||
* This will be used to represent netmask specifications. */
|
* This will be used to represent netmask specifications. */
|
||||||
static struct trie_node *TRIE_NODE_TRUE = NULL;
|
static struct trie_node *TRIE_NODE_TRUE = NULL;
|
||||||
|
|
||||||
void addrset_init(struct addrset *set)
|
struct addrset *addrset_new()
|
||||||
{
|
{
|
||||||
|
struct addrset *set = (struct addrset *) safe_zalloc(sizeof(struct addrset));
|
||||||
set->head = NULL;
|
set->head = NULL;
|
||||||
/* We could simply allocate one byte to get a unique address, but this
|
/* We could simply allocate one byte to get a unique address, but this
|
||||||
* feels safer and is not too large. */
|
* feels safer and is not too large. */
|
||||||
@@ -185,6 +213,7 @@ void addrset_init(struct addrset *set)
|
|||||||
|
|
||||||
/* Allocate the first node of the IPv4 trie */
|
/* Allocate the first node of the IPv4 trie */
|
||||||
set->trie = (struct trie_node *) safe_zalloc(sizeof(struct trie_node));
|
set->trie = (struct trie_node *) safe_zalloc(sizeof(struct trie_node));
|
||||||
|
return set;
|
||||||
}
|
}
|
||||||
|
|
||||||
void trie_free(struct trie_node *curr)
|
void trie_free(struct trie_node *curr)
|
||||||
@@ -222,6 +251,7 @@ void addrset_free(struct addrset *set)
|
|||||||
}
|
}
|
||||||
|
|
||||||
trie_free(set->trie);
|
trie_free(set->trie);
|
||||||
|
free(set);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -546,7 +576,7 @@ int trie_match (const struct trie_node *this, const struct sockaddr *sa)
|
|||||||
|
|
||||||
/* A debugging function to print out the contents of an addrset_elem. For IPv4
|
/* A debugging function to print out the contents of an addrset_elem. For IPv4
|
||||||
this is the four bit vectors. For IPv6 it is the address and netmask. */
|
this is the four bit vectors. For IPv6 it is the address and netmask. */
|
||||||
void addrset_elem_print(FILE *fp, const struct addrset_elem *elem)
|
static void addrset_elem_print(FILE *fp, const struct addrset_elem *elem)
|
||||||
{
|
{
|
||||||
const size_t num_bitvector = sizeof(octet_bitvector) / sizeof(bitvector_t);
|
const size_t num_bitvector = sizeof(octet_bitvector) / sizeof(bitvector_t);
|
||||||
int i;
|
int i;
|
||||||
@@ -559,6 +589,14 @@ void addrset_elem_print(FILE *fp, const struct addrset_elem *elem)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void addrset_print(FILE *fp, const struct addrset *set)
|
||||||
|
{
|
||||||
|
const struct addrset_elem *elem;
|
||||||
|
for (elem = set->head; elem != NULL; elem = elem->next) {
|
||||||
|
addrset_elem_print(fp, elem);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* This is a wrapper around getaddrinfo that automatically handles hints for
|
/* This is a wrapper around getaddrinfo that automatically handles hints for
|
||||||
IPv4/IPv6, TCP/UDP, and whether name resolution is allowed. */
|
IPv4/IPv6, TCP/UDP, and whether name resolution is allowed. */
|
||||||
static int resolve_name(const char *name, struct addrinfo **result, int af, int use_dns)
|
static int resolve_name(const char *name, struct addrinfo **result, int af, int use_dns)
|
||||||
|
|||||||
@@ -1,153 +0,0 @@
|
|||||||
/***************************************************************************
|
|
||||||
* nbase_addrset.h *
|
|
||||||
***********************IMPORTANT NMAP LICENSE TERMS************************
|
|
||||||
* *
|
|
||||||
* The Nmap Security Scanner is (C) 1996-2018 Insecure.Com LLC ("The Nmap *
|
|
||||||
* Project"). Nmap is also a registered trademark of the Nmap Project. *
|
|
||||||
* This program is free software; you may redistribute and/or modify it *
|
|
||||||
* under the terms of the GNU General Public License as published by the *
|
|
||||||
* Free Software Foundation; Version 2 ("GPL"), BUT ONLY WITH ALL OF THE *
|
|
||||||
* CLARIFICATIONS AND EXCEPTIONS DESCRIBED HEREIN. This guarantees your *
|
|
||||||
* right to use, modify, and redistribute this software under certain *
|
|
||||||
* conditions. If you wish to embed Nmap technology into proprietary *
|
|
||||||
* software, we sell alternative licenses (contact sales@nmap.com). *
|
|
||||||
* Dozens of software vendors already license Nmap technology such as *
|
|
||||||
* host discovery, port scanning, OS detection, version detection, and *
|
|
||||||
* the Nmap Scripting Engine. *
|
|
||||||
* *
|
|
||||||
* Note that the GPL places important restrictions on "derivative works", *
|
|
||||||
* yet it does not provide a detailed definition of that term. To avoid *
|
|
||||||
* misunderstandings, we interpret that term as broadly as copyright law *
|
|
||||||
* allows. For example, we consider an application to constitute a *
|
|
||||||
* derivative work for the purpose of this license if it does any of the *
|
|
||||||
* following with any software or content covered by this license *
|
|
||||||
* ("Covered Software"): *
|
|
||||||
* *
|
|
||||||
* o Integrates source code from Covered Software. *
|
|
||||||
* *
|
|
||||||
* o Reads or includes copyrighted data files, such as Nmap's nmap-os-db *
|
|
||||||
* or nmap-service-probes. *
|
|
||||||
* *
|
|
||||||
* o Is designed specifically to execute Covered Software and parse the *
|
|
||||||
* results (as opposed to typical shell or execution-menu apps, which will *
|
|
||||||
* execute anything you tell them to). *
|
|
||||||
* *
|
|
||||||
* o Includes Covered Software in a proprietary executable installer. The *
|
|
||||||
* installers produced by InstallShield are an example of this. Including *
|
|
||||||
* Nmap with other software in compressed or archival form does not *
|
|
||||||
* trigger this provision, provided appropriate open source decompression *
|
|
||||||
* or de-archiving software is widely available for no charge. For the *
|
|
||||||
* purposes of this license, an installer is considered to include Covered *
|
|
||||||
* Software even if it actually retrieves a copy of Covered Software from *
|
|
||||||
* another source during runtime (such as by downloading it from the *
|
|
||||||
* Internet). *
|
|
||||||
* *
|
|
||||||
* o Links (statically or dynamically) to a library which does any of the *
|
|
||||||
* above. *
|
|
||||||
* *
|
|
||||||
* o Executes a helper program, module, or script to do any of the above. *
|
|
||||||
* *
|
|
||||||
* This list is not exclusive, but is meant to clarify our interpretation *
|
|
||||||
* of derived works with some common examples. Other people may interpret *
|
|
||||||
* the plain GPL differently, so we consider this a special exception to *
|
|
||||||
* the GPL that we apply to Covered Software. Works which meet any of *
|
|
||||||
* these conditions must conform to all of the terms of this license, *
|
|
||||||
* particularly including the GPL Section 3 requirements of providing *
|
|
||||||
* source code and allowing free redistribution of the work as a whole. *
|
|
||||||
* *
|
|
||||||
* As another special exception to the GPL terms, the Nmap Project grants *
|
|
||||||
* permission to link the code of this program with any version of the *
|
|
||||||
* OpenSSL library which is distributed under a license identical to that *
|
|
||||||
* listed in the included docs/licenses/OpenSSL.txt file, and distribute *
|
|
||||||
* linked combinations including the two. *
|
|
||||||
* *
|
|
||||||
* The Nmap Project has permission to redistribute Npcap, a packet *
|
|
||||||
* capturing driver and library for the Microsoft Windows platform. *
|
|
||||||
* Npcap is a separate work with it's own license rather than this Nmap *
|
|
||||||
* license. Since the Npcap license does not permit redistribution *
|
|
||||||
* without special permission, our Nmap Windows binary packages which *
|
|
||||||
* contain Npcap may not be redistributed without special permission. *
|
|
||||||
* *
|
|
||||||
* Any redistribution of Covered Software, including any derived works, *
|
|
||||||
* must obey and carry forward all of the terms of this license, including *
|
|
||||||
* obeying all GPL rules and restrictions. For example, source code of *
|
|
||||||
* the whole work must be provided and free redistribution must be *
|
|
||||||
* allowed. All GPL references to "this License", are to be treated as *
|
|
||||||
* including the terms and conditions of this license text as well. *
|
|
||||||
* *
|
|
||||||
* Because this license imposes special exceptions to the GPL, Covered *
|
|
||||||
* Work may not be combined (even as part of a larger work) with plain GPL *
|
|
||||||
* software. The terms, conditions, and exceptions of this license must *
|
|
||||||
* be included as well. This license is incompatible with some other open *
|
|
||||||
* source licenses as well. In some cases we can relicense portions of *
|
|
||||||
* Nmap or grant special permissions to use it in other open source *
|
|
||||||
* software. Please contact fyodor@nmap.org with any such requests. *
|
|
||||||
* Similarly, we don't incorporate incompatible open source software into *
|
|
||||||
* Covered Software without special permission from the copyright holders. *
|
|
||||||
* *
|
|
||||||
* If you have any questions about the licensing restrictions on using *
|
|
||||||
* Nmap in other works, we are happy to help. As mentioned above, we also *
|
|
||||||
* offer an alternative license to integrate Nmap into proprietary *
|
|
||||||
* applications and appliances. These contracts have been sold to dozens *
|
|
||||||
* of software vendors, and generally include a perpetual license as well *
|
|
||||||
* as providing support and updates. They also fund the continued *
|
|
||||||
* development of Nmap. Please email sales@nmap.com for further *
|
|
||||||
* information. *
|
|
||||||
* *
|
|
||||||
* If you have received a written license agreement or contract for *
|
|
||||||
* Covered Software stating terms other than these, you may choose to use *
|
|
||||||
* and redistribute Covered Software under those terms instead of these. *
|
|
||||||
* *
|
|
||||||
* Source is provided to this software because we believe users have a *
|
|
||||||
* right to know exactly what a program is going to do before they run it. *
|
|
||||||
* This also allows you to audit the software for security holes. *
|
|
||||||
* *
|
|
||||||
* Source code also allows you to port Nmap to new platforms, fix bugs, *
|
|
||||||
* and add new features. You are highly encouraged to send your changes *
|
|
||||||
* to the dev@nmap.org mailing list for possible incorporation into the *
|
|
||||||
* main distribution. By sending these changes to Fyodor or one of the *
|
|
||||||
* Insecure.Org development mailing lists, or checking them into the Nmap *
|
|
||||||
* source code repository, it is understood (unless you specify *
|
|
||||||
* otherwise) that you are offering the Nmap Project the unlimited, *
|
|
||||||
* non-exclusive right to reuse, modify, and relicense the code. Nmap *
|
|
||||||
* will always be available Open Source, but this is important because *
|
|
||||||
* the inability to relicense code has caused devastating problems for *
|
|
||||||
* other Free Software projects (such as KDE and NASM). We also *
|
|
||||||
* occasionally relicense the code to third parties as discussed above. *
|
|
||||||
* If you wish to specify special license conditions of your *
|
|
||||||
* contributions, just say so when you send them. *
|
|
||||||
* *
|
|
||||||
* This program 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 Nmap *
|
|
||||||
* license file for more details (it's in a COPYING file included with *
|
|
||||||
* Nmap, and also available from https://svn.nmap.org/nmap/COPYING) *
|
|
||||||
* *
|
|
||||||
***************************************************************************/
|
|
||||||
|
|
||||||
/* $Id$ */
|
|
||||||
|
|
||||||
#ifndef _NBASE_ADDRSET_H
|
|
||||||
#define _NBASE_ADDRSET_H
|
|
||||||
|
|
||||||
//#define HAVE_IPV6 1
|
|
||||||
#include <limits.h> /* CHAR_BIT */
|
|
||||||
|
|
||||||
/* We use bit vectors to represent what values are allowed in an IPv4 octet.
|
|
||||||
Each vector is built up of an array of bitvector_t (any convenient integer
|
|
||||||
type). */
|
|
||||||
typedef unsigned long bitvector_t;
|
|
||||||
/* A 256-element bit vector, representing legal values for one octet. */
|
|
||||||
typedef bitvector_t octet_bitvector[(256 - 1) / (sizeof(unsigned long) * CHAR_BIT) + 1];
|
|
||||||
|
|
||||||
/* A chain of tests for set inclusion. If one test is passed, the address is in
|
|
||||||
the set. */
|
|
||||||
struct addrset_elem {
|
|
||||||
struct {
|
|
||||||
/* A bit vector for each address octet. */
|
|
||||||
octet_bitvector bits[4];
|
|
||||||
} ipv4;
|
|
||||||
struct addrset_elem *next;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
||||||
@@ -188,8 +188,8 @@ void options_init(void)
|
|||||||
o.crlf = 0;
|
o.crlf = 0;
|
||||||
o.allow = 0;
|
o.allow = 0;
|
||||||
o.deny = 0;
|
o.deny = 0;
|
||||||
addrset_init(&o.allowset);
|
o.allowset = addrset_new();
|
||||||
addrset_init(&o.denyset);
|
o.denyset = addrset_new();
|
||||||
o.httpserver = 0;
|
o.httpserver = 0;
|
||||||
|
|
||||||
o.nsock_engine = 0;
|
o.nsock_engine = 0;
|
||||||
|
|||||||
@@ -189,8 +189,8 @@ struct options {
|
|||||||
/* Were any hosts specifically allowed? If so, deny all others. */
|
/* Were any hosts specifically allowed? If so, deny all others. */
|
||||||
int allow;
|
int allow;
|
||||||
int deny;
|
int deny;
|
||||||
struct addrset allowset;
|
struct addrset *allowset;
|
||||||
struct addrset denyset;
|
struct addrset *denyset;
|
||||||
int httpserver;
|
int httpserver;
|
||||||
int nsock_engine;
|
int nsock_engine;
|
||||||
/* Output messages useful for testing to stderr? */
|
/* Output messages useful for testing to stderr? */
|
||||||
|
|||||||
@@ -802,9 +802,9 @@ int main(int argc, char *argv[])
|
|||||||
bye("Could not resolve source address \"%s\": %s.", source, gai_strerror(rc));
|
bye("Could not resolve source address \"%s\": %s.", source, gai_strerror(rc));
|
||||||
}
|
}
|
||||||
|
|
||||||
host_list_to_set(&o.allowset, allow_host_list);
|
host_list_to_set(o.allowset, allow_host_list);
|
||||||
host_list_free(allow_host_list);
|
host_list_free(allow_host_list);
|
||||||
host_list_to_set(&o.denyset, deny_host_list);
|
host_list_to_set(o.denyset, deny_host_list);
|
||||||
host_list_free(deny_host_list);
|
host_list_free(deny_host_list);
|
||||||
|
|
||||||
if (optind == argc) {
|
if (optind == argc) {
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ static int resolve_name(const char *name, struct addrinfo **result)
|
|||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
struct addrset set;
|
struct addrset *set;
|
||||||
char line[1024];
|
char line[1024];
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
@@ -59,12 +59,12 @@ int main(int argc, char *argv[])
|
|||||||
win_init();
|
win_init();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
addrset_init(&set);
|
set = addrset_new();
|
||||||
|
|
||||||
options_init();
|
options_init();
|
||||||
|
|
||||||
for (i = 1; i < argc; i++) {
|
for (i = 1; i < argc; i++) {
|
||||||
if (!addrset_add_spec(&set, argv[i], o.af, !o.nodns)) {
|
if (!addrset_add_spec(set, argv[i], o.af, !o.nodns)) {
|
||||||
fprintf(stderr, "Error adding spec \"%s\".\n", argv[i]);
|
fprintf(stderr, "Error adding spec \"%s\".\n", argv[i]);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
@@ -91,14 +91,14 @@ int main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Check just the first address returned. */
|
/* Check just the first address returned. */
|
||||||
if (addrset_contains(&set, addrs->ai_addr))
|
if (addrset_contains(set, addrs->ai_addr))
|
||||||
printf("%s\n", hostname);
|
printf("%s\n", hostname);
|
||||||
|
|
||||||
freeaddrinfo(addrs);
|
freeaddrinfo(addrs);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
addrset_free(&set);
|
addrset_free(set);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -581,9 +581,9 @@ int allow_access(const union sockaddr_u *su)
|
|||||||
{
|
{
|
||||||
/* A host not in the allow set is denied, but only if the --allow or
|
/* A host not in the allow set is denied, but only if the --allow or
|
||||||
--allowfile option was given. */
|
--allowfile option was given. */
|
||||||
if (o.allow && !addrset_contains(&o.allowset, &su->sockaddr))
|
if (o.allow && !addrset_contains(o.allowset, &su->sockaddr))
|
||||||
return 0;
|
return 0;
|
||||||
if (addrset_contains(&o.denyset, &su->sockaddr))
|
if (addrset_contains(o.denyset, &su->sockaddr))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
|
|||||||
14
nmap.cc
14
nmap.cc
@@ -1769,7 +1769,7 @@ int nmap_main(int argc, char *argv[]) {
|
|||||||
struct hostent *target = NULL;
|
struct hostent *target = NULL;
|
||||||
time_t timep;
|
time_t timep;
|
||||||
char mytime[128];
|
char mytime[128];
|
||||||
struct addrset exclude_group;
|
struct addrset *exclude_group;
|
||||||
#ifndef NOLUA
|
#ifndef NOLUA
|
||||||
/* Only NSE scripts can add targets */
|
/* Only NSE scripts can add targets */
|
||||||
NewTargets *new_targets = NULL;
|
NewTargets *new_targets = NULL;
|
||||||
@@ -1969,19 +1969,19 @@ int nmap_main(int argc, char *argv[]) {
|
|||||||
shortfry(ports.prots, ports.prot_count);
|
shortfry(ports.prots, ports.prot_count);
|
||||||
}
|
}
|
||||||
|
|
||||||
addrset_init(&exclude_group);
|
exclude_group = addrset_new();
|
||||||
|
|
||||||
/* lets load our exclude list */
|
/* lets load our exclude list */
|
||||||
if (o.excludefd != NULL) {
|
if (o.excludefd != NULL) {
|
||||||
load_exclude_file(&exclude_group, o.excludefd);
|
load_exclude_file(exclude_group, o.excludefd);
|
||||||
fclose(o.excludefd);
|
fclose(o.excludefd);
|
||||||
}
|
}
|
||||||
if (o.exclude_spec != NULL) {
|
if (o.exclude_spec != NULL) {
|
||||||
load_exclude_string(&exclude_group, o.exclude_spec);
|
load_exclude_string(exclude_group, o.exclude_spec);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (o.debugging > 3)
|
if (o.debugging > 3)
|
||||||
dumpExclude(&exclude_group);
|
dumpExclude(exclude_group);
|
||||||
|
|
||||||
#ifndef NOLUA
|
#ifndef NOLUA
|
||||||
if (o.scriptupdatedb) {
|
if (o.scriptupdatedb) {
|
||||||
@@ -2014,7 +2014,7 @@ int nmap_main(int argc, char *argv[]) {
|
|||||||
|
|
||||||
while (Targets.size() < ideal_scan_group_sz) {
|
while (Targets.size() < ideal_scan_group_sz) {
|
||||||
o.current_scantype = HOST_DISCOVERY;
|
o.current_scantype = HOST_DISCOVERY;
|
||||||
currenths = nexthost(&hstate, &exclude_group, &ports, o.pingtype);
|
currenths = nexthost(&hstate, exclude_group, &ports, o.pingtype);
|
||||||
if (!currenths)
|
if (!currenths)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@@ -2261,7 +2261,7 @@ int nmap_main(int argc, char *argv[]) {
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
addrset_free(&exclude_group);
|
addrset_free(exclude_group);
|
||||||
|
|
||||||
if (o.inputfd != NULL)
|
if (o.inputfd != NULL)
|
||||||
fclose(o.inputfd);
|
fclose(o.inputfd);
|
||||||
|
|||||||
@@ -132,7 +132,7 @@
|
|||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
|
|
||||||
#include "nbase/nbase_addrset.h"
|
#include <nbase.h>
|
||||||
#include "targets.h"
|
#include "targets.h"
|
||||||
#include "timing.h"
|
#include "timing.h"
|
||||||
#include "tcpip.h"
|
#include "tcpip.h"
|
||||||
@@ -260,11 +260,7 @@ int load_exclude_string(struct addrset *excludelist, const char *s) {
|
|||||||
/* A debug routine to dump some information to stdout. Invoked if debugging is
|
/* A debug routine to dump some information to stdout. Invoked if debugging is
|
||||||
set to 4 or higher. */
|
set to 4 or higher. */
|
||||||
int dumpExclude(struct addrset *exclude_group) {
|
int dumpExclude(struct addrset *exclude_group) {
|
||||||
const struct addrset_elem *elem;
|
addrset_print(stdout, exclude_group);
|
||||||
|
|
||||||
for (elem = exclude_group->head; elem != NULL; elem = elem->next)
|
|
||||||
addrset_elem_print(stdout, elem);
|
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user