gpt4 book ai didi

c++ - 将 IP 与主机/网络地址列表进行比较

转载 作者:太空狗 更新时间:2023-10-29 21:05:38 26 4
gpt4 key购买 nike

我申请了,但我是 C++ 的新手。在我们的组织中,我们收到以下格式的每日黑名单(更大,因为这只是一个片段):

172.44.12.0

198.168.1.5

10.10.0.0

192.168.78.6

192.168.22.22

111.111.0.0

222.222.0.0

12.12.12.12

当我在代码编译后运行程序时,我收到:

1

1

1

1

1

1

1

1

我在 Linux/Unix 环境中使用 C++。

到目前为止,我只是把它吐出来以确保我的格式正确。请善待,我确信这被认为是草率的编程,我是菜鸟。

文件的名称是 blacklist.txt,其中包含目前上面列出的 IP。我只使用 cout 来确保我的变量定义正确。

#include <iostream>
#include <vector>
#include <fstream>
#include <string>
#include <netinet/in.h>
#include <stdint.h>
#include <arpa/inet.h>

using namespace std;

bool is_match(std::string &hay_stack, std::string &srcip) {
in_addr_t _ip = inet_addr(hay_stack.c_str());
in_addr_t _IP = inet_addr(srcip.c_str());
_ip = ntohl(_ip);
_IP = ntohl(_IP);
uint32_t mask=(_ip & 0x00ffffff == 0) ? 0xff000000 :
(_ip & 0x0000ffff == 0 ? 0xffff0000 : 0);
return ( (_ip & mask) == (_IP & mask) );
}

int main()
{
vector<std::string> lines;
lines.reserve(5000); //Assuming that the file to read can have max 5K lines

string fileName("blacklist.txt");

ifstream file;
file.open(fileName.c_str());

if(!file.is_open())
{
cerr<<"Error opening file : "<<fileName.c_str()<<endl;
return -1;
}

//Read the lines and store it in the vector
string line;
while(getline(file,line))
{
lines.push_back(line);
}

file.close();


//Dump all the lines in output
for(unsigned int i = 0; i < lines.size(); i++)
{
string h = lines[i];
string mi = "10.10.10.10";
cout<<is_match(h,mi)<<endl;
}

return 0;
}

我期望输出为 10.10.10.10 10.10.0.0(以及此处的某种子网掩码)

任何帮助都很棒。

最佳答案

IPv4] 1由 4 个字节组成,因此它可以(并且通常)表示为 unsigned int或者更确切地说是 Uint32(32 位长数字/4 字节),例如:

decimal:     172.16.254.1
hexadecimal: ac 10 fe 01
binary: 10101100 0001000 11111110 00000001

/XX形式的子网掩码指定掩码中从头开始的多少位(二进制位),例如:

/24: 11111111 11111111 11111111 00000000  > 0xffffff00
/16: 11111111 11111111 00000000 00000000 > 0xffff0000

现在您将使用 binary AND (在 C/C++ 中用 & 表示)在 IP & Mask 上,这将为您提供以下输出:

IP:      172.16.254.1  | 0xac10fe01 | 10101100 0001000 11111110 00000001 &
Mask: 255.255.255.0 | 0xffffff00 | 11111111 1111111 11111111 00000000 =
Result: 172.16.254.0 | 0xac10fe00 | 10101100 0001000 11111110 00000000

您现在可以将其与表示为 Uint32 的子网进行比较,首先您将生成掩码:

uint32 get_mask( const int mask_length = 24){ // for /24 mask notation
if( mask_length > 31){
return 0xffffffff;
}
return (1 << (mask_length + 1)) - 1;
// << 25 will shift 1 to 25th place, -1 will than generate 24 ones in row
// this wouldn't work with 32 because you would shift 1 outside 32b int
}

然后只需简单地使用&==:

if( (ip&get_mask(24)) == subnet){
// if( (ip&0xffffff00) == subnet){
// if( (ip&get_mask(subnet.mask.length)) == subnet){
// match
}

请注意 x86 架构使用 little-endian因此,当直接检查内存/字节时,您会看到“相反顺序”的字节。

关于c++ - 将 IP 与主机/网络地址列表进行比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9487106/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com