udhcp 소스 분석 (5) - DHCP 클 라 이언 트 의 중요 한 데이터 구조 와 초기 화 설정

데이터 구조
서버 와 유사 하 며 클 라 이언 트 도 전체적인 데이터 구 조 를 유지 하고 있 습 니 다 clientconfig, 모든 DHCP 서비스 에 사용 합 니 다.
struct client_config_t client_config = {
    /* Default options. */
    abort_if_no_lease: 0,
    foreground: 0,
    quit_after_lease: 0,
    background_if_no_lease: 0,
    interface: "eth0",
    pidfile: NULL,
    script: DEFAULT_SCRIPT,
    clientid: NULL,
    hostname: NULL,
    ifindex: 0,
    arp: "\0\0\0\0\0\0",        /* appease gcc-3.0 */
};

이 구 조 는 dhcpc. h 에서 정의 되 고 dhcpc. c 에서 기본 값 을 설정 합 니 다.
struct client_config_t client_config = {
    /* Default options. */
    abort_if_no_lease: 0,
    foreground: 0,
    quit_after_lease: 0,
    background_if_no_lease: 0,
    interface: "eth0",
    pidfile: NULL,
    script: DEFAULT_SCRIPT,
    clientid: NULL,
    hostname: NULL,
    ifindex: 0,
    arp: "\0\0\0\0\0\0",        /* appease gcc-3.0 */
};

기타 전역 변수
나머지 필요 한 중요 한 전역 변 수 는 모두 간단 한 데이터 구조 로 제시 되 고 복잡 한 구 조 를 전문 적 으로 설계 하지 않 았 다.
static int state;
static unsigned long requested_ip; /* = 0,   IP */
static unsigned long server_addr;       //     
static unsigned long timeout;       //          
static int packet_num; /* = 0 */        //                
static int fd;                  //  socket   fd
static int signal_pipe[2];          //    signal   pipe fd

udhcpc_main 초기 화 및 설정
dhcpc 의 초기 화 는 dhcpd 와 유사 하지만 많은 조작 을 간소화 하고 들 어 오 는 매개 변수 에 대한 분석 과 처 리 를 추가 합 니 다.
arg 옵션 분석
시작 할 때 전달 하 는 arg 옵션 에 대한 분석 은 이 옵션 을 통 해 DHCP 는 전달 매개 변수 q, 즉 quit 를 설정 하 는 등 다양한 모드 로 실행 할 수 있 습 니 다.after_lease = 1, 클 라 이언 트 는 lease 를 성공 적 으로 획득 한 후에 종료 합 니 다.
enum {
        OPT_c = 1 << 0,
        OPT_C = 1 << 1,
        OPT_V = 1 << 2,
        OPT_f = 1 << 3,
        OPT_b = 1 << 4,
        OPT_H = 1 << 5,
        OPT_h = 1 << 6,
        OPT_F = 1 << 7,
        OPT_i = 1 << 8,
        OPT_n = 1 << 9,
        OPT_p = 1 << 10,
        OPT_q = 1 << 11,
        OPT_R = 1 << 12,
        OPT_r = 1 << 13,
        OPT_s = 1 << 14,
        OPT_T = 1 << 15,
        OPT_t = 1 << 16,
        OPT_v = 1 << 17,
        OPT_S = 1 << 18,
    };
#if ENABLE_GETOPT_LONG
    static const char udhcpc_longopts[] ALIGN1 =
        "clientid\0"      Required_argument "c"
        "clientid-none\0" No_argument       "C"
        "vendorclass\0"   Required_argument "V"
        "foreground\0"    No_argument       "f"
        "background\0"    No_argument       "b"
        "hostname\0"      Required_argument "H"
        "hostname\0"      Required_argument "h"
        "fqdn\0"          Required_argument "F"
        "interface\0"     Required_argument "i"
        "now\0"           No_argument       "n"
        "pidfile\0"       Required_argument "p"
        "quit\0"          No_argument       "q"
        "release\0"       No_argument       "R"
        "request\0"       Required_argument "r"
        "script\0"        Required_argument "s"
        "timeout\0"       Required_argument "T"
        "version\0"       No_argument       "v"
        "retries\0"       Required_argument "t"
        "syslog\0"        No_argument       "S"
        ;
#endif
    /* Default options. */
    client_config.interface = "eth0";
    client_config.script = DEFAULT_SCRIPT;
    client_config.retries = 3;
    client_config.timeout = 3;

    /* Parse command line */
    opt_complementary = "c--C:C--c" // mutually exclusive
                        ":hH:Hh"; // -h and -H are the same
#if ENABLE_GETOPT_LONG
    applet_long_options = udhcpc_longopts;
#endif
    opt = getopt32(argv, "c:CV:fbH:h:F:i:np:qRr:s:T:t:vS",
        &str_c, &str_V, &str_h, &str_h, &str_F,
        &client_config.interface, &client_config.pidfile, &str_r,
        &client_config.script, &str_T, &str_t
        );

    if (opt & OPT_c)
        client_config.clientid = alloc_dhcp_option(DHCP_CLIENT_ID, str_c, 0);
    //if (opt & OPT_C)
    if (opt & OPT_V)
        client_config.vendorclass = alloc_dhcp_option(DHCP_VENDOR, str_V, 0);
    if (opt & OPT_f)
        client_config.foreground = 1;
    if (opt & OPT_b)
        client_config.background_if_no_lease = 1;
    if (opt & OPT_h)
        client_config.hostname = alloc_dhcp_option(DHCP_HOST_NAME, str_h, 0);
    if (opt & OPT_F) {
        client_config.fqdn = alloc_dhcp_option(DHCP_FQDN, str_F, 3);
        /* Flags: 0000NEOS
        S: 1 => Client requests Server to update A RR in DNS as well as PTR
        O: 1 => Server indicates to client that DNS has been updated regardless
        E: 1 => Name data is DNS format, i.e. <4>host<6>domain<4>com<0> not "host.domain.com"
        N: 1 => Client requests Server to not update DNS
        */
        client_config.fqdn[OPT_DATA + 0] = 0x1;
        /* client_config.fqdn[OPT_DATA + 1] = 0; - redundant */
        /* client_config.fqdn[OPT_DATA + 2] = 0; - redundant */
    }
    // if (opt & OPT_i) client_config.interface = ...
    if (opt & OPT_n)
        client_config.abort_if_no_lease = 1;
    // if (opt & OPT_p) client_config.pidfile = ...
    if (opt & OPT_q)
        client_config.quit_after_lease = 1;
    if (opt & OPT_R)
        client_config.release_on_quit = 1;
    if (opt & OPT_r)
        requested_ip = inet_addr(str_r);
    // if (opt & OPT_s) client_config.script = ...
    if (opt & OPT_T)
        client_config.timeout = xatoi_u(str_T);
    if (opt & OPT_t)
        client_config.retries = xatoi_u(str_t);
    if (opt & OPT_v) {
        printf("version %s
"
, BB_VER); return 0; } if (opt & OPT_S) { openlog(applet_name, LOG_PID, LOG_LOCAL0); logmode |= LOGMODE_SYSLOG; }

인터페이스 정보 읽 기 및 신호 처리 장치 설정
이 단 계 는 서버 와 기본적으로 일치 합 니 다. 여기 서 다 르 게 clientid 초기 화 및 runscript.
    if (read_interface(client_config.interface, &client_config.ifindex,
               NULL, client_config.arp))
        return 1;

    /* Make sure fd 0,1,2 are open */
    bb_sanitize_stdio();
    /* Equivalent of doing a fflush after every 
*/
setlinebuf(stdout); /* Create pidfile */ write_pidfile(client_config.pidfile); /* if (!..) bb_perror_msg("cannot create pidfile %s", pidfile); */ /* Goes to stdout and possibly syslog */ bb_info_msg("%s (v%s) started", applet_name, BB_VER); /* if not set, and not suppressed, setup the default client ID */ if (!client_config.clientid && !(opt & OPT_C)) { client_config.clientid = alloc_dhcp_option(DHCP_CLIENT_ID, "", 7); client_config.clientid[OPT_DATA] = 1; memcpy(client_config.clientid + OPT_DATA+1, client_config.arp, 6); } if (!client_config.vendorclass) client_config.vendorclass = alloc_dhcp_option(DHCP_VENDOR, "udhcp "BB_VER, 0); /* setup the signal pipe */ udhcp_sp_setup(); state = INIT_SELECTING; udhcp_run_script(NULL, "deconfig"); change_mode(LISTEN_RAW); tv.tv_sec = 0; goto jump_in;

좋은 웹페이지 즐겨찾기