2016-01-18 11:19:40 +00:00
|
|
|
#include <jni.h>
|
|
|
|
|
2016-01-17 16:41:54 +00:00
|
|
|
#define TAG "NetGuard.JNI"
|
2016-01-18 19:57:49 +00:00
|
|
|
#define MAX_PKTSIZE 32768
|
|
|
|
#define MAX_DATASIZE4 (MAX_PKTSIZE-60-60) // IP/TCP header
|
|
|
|
#define SELECT_TIMEOUT 10 // seconds
|
2016-01-20 13:11:04 +00:00
|
|
|
#define UDP_TIMEOUT 300 // seconds
|
|
|
|
#define UDP_TTL 64
|
2016-01-18 19:57:49 +00:00
|
|
|
#define TCP_INIT_TIMEOUT 30 // seconds ~net.inet.tcp.keepinit
|
|
|
|
#define TCP_IDLE_TIMEOUT 300 // seconds ~net.inet.tcp.keepidle
|
|
|
|
#define TCP_CLOSE_TIMEOUT 30
|
|
|
|
#define TCP_TTL 64
|
|
|
|
#define TCP_WINDOW 32768
|
2016-01-20 09:27:18 +00:00
|
|
|
#define UID_DELAY 1 // milliseconds
|
|
|
|
#define UID_DELAYTRY 10 // milliseconds
|
2016-01-18 19:57:49 +00:00
|
|
|
#define UID_MAXTRY 3
|
|
|
|
#define MAX_PCAP 80
|
2016-01-17 16:41:54 +00:00
|
|
|
|
|
|
|
struct arguments {
|
2016-01-18 11:19:40 +00:00
|
|
|
JNIEnv *env;
|
2016-01-17 16:41:54 +00:00
|
|
|
jobject instance;
|
|
|
|
int tun;
|
2016-01-19 19:58:51 +00:00
|
|
|
jint count;
|
|
|
|
jint *uid;
|
|
|
|
jboolean log;
|
|
|
|
jboolean filter;
|
2016-01-17 16:41:54 +00:00
|
|
|
};
|
|
|
|
|
2016-01-20 13:11:04 +00:00
|
|
|
struct udp_session {
|
|
|
|
// TODO UDPv6
|
|
|
|
time_t time;
|
|
|
|
jint uid;
|
2016-01-20 15:52:38 +00:00
|
|
|
int version;
|
2016-01-20 13:11:04 +00:00
|
|
|
int32_t saddr; // network notation
|
|
|
|
__be16 source; // network notation
|
|
|
|
int32_t daddr; // network notation
|
|
|
|
__be16 dest; // network notation
|
|
|
|
jint socket;
|
|
|
|
struct udp_session *next;
|
|
|
|
};
|
|
|
|
|
2016-01-20 11:35:51 +00:00
|
|
|
struct tcp_session {
|
2016-01-18 19:57:49 +00:00
|
|
|
// TODO TCPv6
|
2016-01-17 16:41:54 +00:00
|
|
|
time_t time;
|
2016-01-19 19:58:51 +00:00
|
|
|
jint uid;
|
2016-01-20 15:52:38 +00:00
|
|
|
int version;
|
2016-01-17 16:41:54 +00:00
|
|
|
uint32_t remote_seq; // confirmed bytes received, host notation
|
|
|
|
uint32_t local_seq; // confirmed bytes sent, host notation
|
|
|
|
uint32_t remote_start;
|
|
|
|
uint32_t local_start;
|
|
|
|
int32_t saddr; // network notation
|
|
|
|
__be16 source; // network notation
|
|
|
|
int32_t daddr; // network notation
|
|
|
|
__be16 dest; // network notation
|
|
|
|
uint8_t state;
|
|
|
|
jint socket;
|
|
|
|
uint32_t lport; // host notation
|
2016-01-20 11:35:51 +00:00
|
|
|
struct tcp_session *next;
|
2016-01-17 16:41:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// https://wiki.wireshark.org/Development/LibpcapFileFormat
|
|
|
|
|
|
|
|
typedef unsigned short guint16_t;
|
|
|
|
typedef unsigned int guint32_t;
|
|
|
|
typedef signed int gint32_t;
|
|
|
|
|
|
|
|
typedef struct pcap_hdr_s {
|
|
|
|
guint32_t magic_number;
|
|
|
|
guint16_t version_major;
|
|
|
|
guint16_t version_minor;
|
|
|
|
gint32_t thiszone;
|
|
|
|
guint32_t sigfigs;
|
|
|
|
guint32_t snaplen;
|
|
|
|
guint32_t network;
|
|
|
|
} pcap_hdr_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct pcaprec_hdr_s {
|
|
|
|
guint32_t ts_sec;
|
|
|
|
guint32_t ts_usec;
|
|
|
|
guint32_t incl_len;
|
|
|
|
guint32_t orig_len;
|
|
|
|
} pcaprec_hdr_t;
|
|
|
|
|
|
|
|
#define LINKTYPE_RAW 101
|
|
|
|
|
2016-01-20 08:24:34 +00:00
|
|
|
void clear_sessions();
|
|
|
|
|
2016-01-18 18:37:52 +00:00
|
|
|
void handle_signal(int sig, siginfo_t *info, void *context);
|
2016-01-18 14:29:01 +00:00
|
|
|
|
|
|
|
void handle_events(void *a);
|
2016-01-18 11:19:40 +00:00
|
|
|
|
2016-01-20 13:11:04 +00:00
|
|
|
int get_selects(const struct arguments *args, fd_set *rfds, fd_set *wfds, fd_set *efds);
|
2016-01-20 08:24:34 +00:00
|
|
|
|
2016-01-20 13:11:04 +00:00
|
|
|
int check_tun(const struct arguments *args, fd_set *rfds, fd_set *wfds, fd_set *efds);
|
2016-01-18 11:19:40 +00:00
|
|
|
|
2016-01-20 13:11:04 +00:00
|
|
|
void check_udp_sockets(const struct arguments *args, fd_set *rfds, fd_set *wfds, fd_set *efds);
|
2016-01-18 14:29:01 +00:00
|
|
|
|
2016-01-20 13:11:04 +00:00
|
|
|
void check_tcp_sockets(const struct arguments *args, fd_set *rfds, fd_set *wfds, fd_set *efds);
|
2016-01-18 14:29:01 +00:00
|
|
|
|
2016-01-20 13:11:04 +00:00
|
|
|
void handle_ip(const struct arguments *args, const uint8_t *buffer, const uint16_t length);
|
2016-01-20 08:24:34 +00:00
|
|
|
|
2016-01-20 13:11:04 +00:00
|
|
|
jboolean handle_udp(const struct arguments *args, const uint8_t *buffer, uint16_t length, int uid);
|
2016-01-18 14:29:01 +00:00
|
|
|
|
2016-01-19 19:58:51 +00:00
|
|
|
jboolean handle_tcp(const struct arguments *args, const uint8_t *buffer, uint16_t length, int uid);
|
2016-01-18 14:29:01 +00:00
|
|
|
|
2016-01-20 11:35:51 +00:00
|
|
|
int open_tcp(const struct tcp_session *cur, const struct arguments *args);
|
2016-01-18 14:29:01 +00:00
|
|
|
|
|
|
|
int get_local_port(const int sock);
|
2016-01-17 16:41:54 +00:00
|
|
|
|
2016-01-18 18:37:52 +00:00
|
|
|
ssize_t send_socket(int sock, uint8_t *buffer, uint16_t len);
|
|
|
|
|
2016-01-20 15:52:38 +00:00
|
|
|
int write_syn_ack(const struct arguments *args, struct tcp_session *cur, int tun);
|
2016-01-17 16:41:54 +00:00
|
|
|
|
2016-01-20 15:52:38 +00:00
|
|
|
int write_ack(const struct arguments *args, struct tcp_session *cur, int bytes, int tun);
|
2016-01-17 16:41:54 +00:00
|
|
|
|
2016-01-20 15:52:38 +00:00
|
|
|
int write_data(const struct arguments *args, struct tcp_session *cur,
|
|
|
|
const uint8_t *buffer, uint16_t length, int tun);
|
2016-01-17 16:41:54 +00:00
|
|
|
|
2016-01-20 15:52:38 +00:00
|
|
|
int write_fin(const struct arguments *args, struct tcp_session *cur, int tun);
|
2016-01-17 16:41:54 +00:00
|
|
|
|
2016-01-20 15:52:38 +00:00
|
|
|
void write_rst(const struct arguments *args, struct tcp_session *cur, int tun);
|
2016-01-17 16:41:54 +00:00
|
|
|
|
2016-01-20 15:52:38 +00:00
|
|
|
int write_udp(const struct arguments *args, const struct udp_session *cur,
|
|
|
|
uint8_t *data, uint16_t datalen, int tun);
|
2016-01-20 13:11:04 +00:00
|
|
|
|
2016-01-20 15:52:38 +00:00
|
|
|
int write_tcp(const struct arguments *args, const struct tcp_session *cur,
|
2016-01-18 14:29:01 +00:00
|
|
|
uint8_t *data, uint16_t datalen, uint16_t confirm,
|
2016-01-20 09:07:09 +00:00
|
|
|
int syn, int ack, int fin, int rst, int tun);
|
2016-01-17 16:41:54 +00:00
|
|
|
|
2016-01-19 08:49:47 +00:00
|
|
|
jint get_uid(const int protocol, const int version,
|
|
|
|
const void *saddr, const uint16_t sport, int dump);
|
2016-01-17 16:41:54 +00:00
|
|
|
|
2016-01-18 18:37:52 +00:00
|
|
|
uint16_t calc_checksum(uint8_t *buffer, uint16_t length);
|
|
|
|
|
|
|
|
void log_android(int prio, const char *fmt, ...);
|
2016-01-17 16:41:54 +00:00
|
|
|
|
2016-01-20 15:52:38 +00:00
|
|
|
void log_packet(const struct arguments *args,
|
|
|
|
jlong time,
|
|
|
|
jint version,
|
|
|
|
const char *dest,
|
|
|
|
jint protocol,
|
|
|
|
jint dport,
|
|
|
|
const char *flags,
|
|
|
|
jint uid,
|
|
|
|
jboolean allowed);
|
2016-01-18 18:37:52 +00:00
|
|
|
|
|
|
|
void write_pcap(const void *ptr, size_t len);
|
2016-01-17 16:41:54 +00:00
|
|
|
|
2016-01-18 20:37:51 +00:00
|
|
|
void write_pcap_hdr();
|
|
|
|
|
|
|
|
void write_pcap_rec(const uint8_t *buffer, uint16_t len);
|
|
|
|
|
2016-01-17 16:41:54 +00:00
|
|
|
const char *strstate(const int state);
|
|
|
|
|
2016-01-18 14:29:01 +00:00
|
|
|
char *hex(const u_int8_t *data, const u_int16_t len);
|