2022-02-07 06:35:29 +05:30
|
|
|
// Copyright 2014-2020 Nicholas J. Kain <njkain at gmail dot com>
|
|
|
|
// SPDX-License-Identifier: MIT
|
2014-03-13 01:54:02 +05:30
|
|
|
#ifndef NJK_NDHC_NDHC_H_
|
|
|
|
#define NJK_NDHC_NDHC_H_
|
|
|
|
|
2014-03-13 02:35:43 +05:30
|
|
|
#include <stdint.h>
|
2015-02-18 16:01:13 +05:30
|
|
|
#include <stdbool.h>
|
2014-03-31 02:32:48 +05:30
|
|
|
#include <limits.h>
|
2014-03-13 02:35:43 +05:30
|
|
|
#include <net/if.h>
|
2014-03-31 02:32:48 +05:30
|
|
|
#include "nk/random.h"
|
2014-03-13 02:35:43 +05:30
|
|
|
|
2020-10-19 12:37:23 +05:30
|
|
|
enum arp_state {
|
|
|
|
ARP_QUERY = 0,
|
|
|
|
ARP_FOUND,
|
|
|
|
ARP_FAILED,
|
|
|
|
};
|
|
|
|
|
2020-10-27 23:44:18 +05:30
|
|
|
enum fprint_state {
|
|
|
|
FPRINT_NONE = 0,
|
|
|
|
FPRINT_INPROGRESS,
|
|
|
|
FPRINT_DONE,
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:35:43 +05:30
|
|
|
struct client_state_t {
|
2017-08-24 12:06:31 +05:30
|
|
|
struct nk_random_state rnd_state;
|
2015-05-28 09:10:28 +05:30
|
|
|
long long leaseStartTime, renewTime, rebindTime;
|
2015-05-27 22:41:23 +05:30
|
|
|
long long dhcp_wake_ts;
|
2014-03-17 12:25:47 +05:30
|
|
|
int ifDeconfig; // Set if the interface has already been deconfigured.
|
2020-10-20 15:24:00 +05:30
|
|
|
int listenFd, arpFd, nlFd, rfkillFd;
|
2020-10-19 13:55:15 +05:30
|
|
|
int server_arp_sent, router_arp_sent;
|
2018-02-09 13:09:46 +05:30
|
|
|
uint32_t nlPortId;
|
2020-10-19 16:33:03 +05:30
|
|
|
unsigned int num_dhcp_requests, num_dhcp_renews;
|
2015-02-13 09:58:54 +05:30
|
|
|
uint32_t clientAddr, serverAddr, srcAddr, routerAddr;
|
2015-05-27 22:41:23 +05:30
|
|
|
uint32_t lease, xid;
|
2014-03-13 02:35:43 +05:30
|
|
|
uint8_t routerArp[6], serverArp[6];
|
2020-10-19 13:55:15 +05:30
|
|
|
enum arp_state server_arp_state, router_arp_state;
|
2020-10-27 23:44:18 +05:30
|
|
|
enum fprint_state fp_state;
|
2020-10-19 15:35:47 +05:30
|
|
|
bool using_dhcp_bpf, arp_is_defense, check_fingerprint, program_init,
|
2021-04-25 14:56:19 +05:30
|
|
|
sent_renew_or_rebind, carrier_up;
|
2020-10-27 23:44:18 +05:30
|
|
|
bool sent_gw_query, sent_first_announce, sent_second_announce;
|
2014-03-13 02:35:43 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
struct client_config_t {
|
|
|
|
char interface[IFNAMSIZ]; // The name of the interface to use
|
|
|
|
char clientid[64]; // Optional client id to use
|
|
|
|
char hostname[64]; // Optional hostname to use
|
|
|
|
char vendor[64]; // Vendor identification that will be sent
|
2017-01-19 15:50:29 +05:30
|
|
|
uint8_t arp[6]; // Our arp address
|
|
|
|
uint32_t rfkillIdx; // Index of the corresponding rfkill device
|
2014-03-19 10:43:11 +05:30
|
|
|
int metric; // Metric for the default route
|
2014-03-13 02:35:43 +05:30
|
|
|
int ifindex; // Index number of the interface to use
|
2022-02-13 03:01:39 +05:30
|
|
|
int s6_notify_fd; // File descriptor for s6 notify mechanism
|
2017-01-19 15:50:29 +05:30
|
|
|
uint8_t clientid_len; // Length of the clientid
|
|
|
|
bool abort_if_no_lease; // Abort if no lease
|
|
|
|
bool enable_rfkill; // Listen for rfkill events
|
2022-02-13 03:01:39 +05:30
|
|
|
bool enable_s6_notify; // Perform s6 startup notification
|
2014-03-13 02:35:43 +05:30
|
|
|
};
|
|
|
|
|
2020-10-20 13:53:55 +05:30
|
|
|
enum {
|
|
|
|
SIGNAL_NONE = 0,
|
|
|
|
SIGNAL_EXIT,
|
|
|
|
SIGNAL_RENEW,
|
|
|
|
SIGNAL_RELEASE
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:35:43 +05:30
|
|
|
extern struct client_config_t client_config;
|
2014-03-13 01:54:02 +05:30
|
|
|
|
2014-04-07 13:14:02 +05:30
|
|
|
extern int ifchSock[2];
|
2014-04-16 08:49:24 +05:30
|
|
|
extern int ifchStream[2];
|
2014-04-05 14:55:56 +05:30
|
|
|
extern int sockdSock[2];
|
2014-04-16 08:49:24 +05:30
|
|
|
extern int sockdStream[2];
|
2022-02-24 11:22:26 +05:30
|
|
|
extern int scriptdSock[2];
|
|
|
|
extern int scriptdStream[2];
|
2014-03-31 02:32:48 +05:30
|
|
|
extern char state_dir[PATH_MAX];
|
|
|
|
extern char chroot_dir[PATH_MAX];
|
|
|
|
extern char resolv_conf_d[PATH_MAX];
|
2022-02-24 11:22:26 +05:30
|
|
|
extern char script_file[PATH_MAX];
|
2014-04-15 00:36:31 +05:30
|
|
|
extern uid_t ndhc_uid;
|
|
|
|
extern gid_t ndhc_gid;
|
2014-03-13 01:54:02 +05:30
|
|
|
|
2020-10-20 13:53:55 +05:30
|
|
|
int signals_flagged(void);
|
2021-04-25 14:56:19 +05:30
|
|
|
bool carrier_isup(void);
|
2022-01-12 09:05:19 +05:30
|
|
|
void set_client_addr(const char *v);
|
2014-04-15 00:36:31 +05:30
|
|
|
void show_usage(void);
|
2020-10-20 13:53:55 +05:30
|
|
|
void signal_exit(int status);
|
2022-01-12 09:05:19 +05:30
|
|
|
int get_clientid_string(const char *str, size_t slen);
|
2014-04-15 00:36:31 +05:30
|
|
|
void print_version(void);
|
2014-03-13 02:21:10 +05:30
|
|
|
|
2022-02-07 06:35:29 +05:30
|
|
|
#endif
|
|
|
|
|