简体   繁体   English

在C中创建特定范围内的IP地址列表

[英]Creating list of ip addresses over a specific range in C

I am writing a tool to scan all the nodes on a network but I have ran in to a problem. 我正在编写一种工具来扫描网络上的所有节点,但是遇到了问题。 I'm writing the tool in C but I'm new to the language so I'm not sure how the iterate through the address range. 我正在用C编写工具,但是我是该语言的新手,所以我不确定如何遍历地址范围。

The user will give the argument 192.168.*.* and it will create every IP address in that range, eg 192.168.1.1, 192.168.1.2, 192.168.1.3 and then eventually 192.168.2.1, 192.168.2.2, 192.168.2.3 etc. 用户将给出参数192.168。*。*,它将创建该范围内的每个IP地址,例如192.168.1.1、192.168.1.2、192.168.1.3,然后最终是192.168.2.1、192.168.2.2、192.168.2.3等。

My previous code was: 我以前的代码是:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

void scanner(int s) 
{
    char addr[20];

    for (int i = 0; i < 255; ++i) 
    {
        sprintf(addr, "192.168.%d.%d", s, i);
        printf("%s\n", addr);
    }
 }

int main() 
{

    for (int i = 0; i < 255; ++i) 
    {
        scanner(i);
    }

    return 0;
}

But I don't know how to run this from the user input. 但是我不知道如何从用户输入中运行它。

You can take the inputs from the user using the scanf function. 您可以使用scanf函数从用户处获取输入。 I have updated your code to use the same - 我已更新您的代码以使用相同的代码-

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int addr_byte_0;
int addr_byte_1;

void scanner(int s) 
{
    char addr[200];
    int i;
    for (i = 0; i < 255; ++i) 
    {
        sprintf(addr, "%d.%d.%d.%d", addr_byte_0, addr_byte_1, s, i);
        printf("%s\n", addr);
    }
 }

int main() 
{
    int i;
    //printf("Enter the first byte of the address: ");
    scanf ("%d", &addr_byte_0);
    //printf("Enter the second byte of the address: ");
    scanf ("%d", &addr_byte_1);
    for (i = 0; i < 255; ++i) 
    {
        scanner(i);
    }

    return 0;
}

Also, as per C standards you cannot declare a variable inside the for loop. 同样,根据C标准,您不能在for循环内声明变量。 Hence I have moved the declaration out of the for loop. 因此,我将声明移出了for循环。 Hope this helps! 希望这可以帮助!

Inspired by (eg python-) generators, my solution doesn't perform dynamic memory allocation and and has constant memory consumption. 受(例如python-)生成器的启发,我的解决方案不执行动态内存分配,并且具有恒定的内存消耗。 I don't like that I currently rely on a do while loop. 我不喜欢我目前依靠do while循环。 Also the explicit check for ig->num_wildcards == 0 is ugly. 显式检查ig->num_wildcards == 0也很丑陋。 Anyways: 无论如何:

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#define IP_OCTETS 4
#define MAX_UCHAR 255

typedef struct {
    int wildcard_pos[IP_OCTETS];
    int num_wildcards;
    int counter[IP_OCTETS];
    int octet[IP_OCTETS];
} ip_generator;

char* mystrsep(char** stringp, const char* delim)
{
    char* start = *stringp;
    char* p;

    p = (start != NULL) ? strpbrk(start, delim) : NULL;

    if (p == NULL)
    {
        *stringp = NULL;
    }
    else
    {
        *p = '\0';
        *stringp = p + 1;
    }

    return start;
}

void init_ip_gen(ip_generator *ig, char* ip_mask)
{
    char *token, *string;
    char* ip_mask_ptr = ip_mask;
    const char delimiters[] = ".";
    int i = 0;

    while ((token = mystrsep(&ip_mask_ptr, delimiters)) != NULL)
    {
        ig->wildcard_pos[i] = -1;
        if (strcmp(token, "*") == 0)
        {
            ig->wildcard_pos[ig->num_wildcards] = i;
            ig->counter[ig->num_wildcards] = 1;
            ig->num_wildcards++;
        }
        else
        {
            ig->octet[i] = atoi(token);
        }
        i++;
    }
}

int ig_next(ip_generator *ig)
{
    int i;
    int carry = 1;

    if (ig->num_wildcards == 0)
    {
        return 0;
    }

    for (i = ig->num_wildcards - 1; i >= 0; i--)
    {
        if (carry == 1)
        {
            if (ig->counter[i] == MAX_UCHAR)
            {
                ig->counter[i] = 1;
            }
            else
            {
                ig->counter[i]++;
                carry = 0;
            }
        }
        if (carry == 0)
        {
            break;
        }
        if (i == 0 && carry == 1)
        {
            return 0;
        }
    }

    return 1;
}

void generate_ip(ip_generator *ig, char *ip)
{
    int i;
    int j = 0;

    int oct[IP_OCTETS];

    for (i = 0; i < IP_OCTETS; i++)
    {
        if (i == ig->wildcard_pos[j])
        {
            oct[i] = ig->counter[j];
            j++;
        }
        else
        {
            oct[i] = ig->octet[i];
        }
    }

    sprintf(ip, "%d.%d.%d.%d", oct[0], oct[1], oct[2], oct[3]);
}

int main()
{
    char ip_mask[] = "192.*.10.*";
    //char ip_mask[] = "192.1.10.123";

    ip_generator ig;
    memset(&ig, 0, sizeof(ig));
    init_ip_gen(&ig, ip_mask);

    char ip[32];
    memset(ip, 0, sizeof(ip));

    do
    {
        generate_ip(&ig, ip);
        printf("%s\n", ip);
    } while (ig_next(&ig));

    return 0;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM