NetGuard/app/src/main/jni/netguard/session.c

396 lines
15 KiB
C
Raw Normal View History

2016-02-09 12:39:49 +00:00
/*
This file is part of NetGuard.
NetGuard is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
NetGuard is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
2016-12-29 08:27:58 +00:00
Copyright 2015-2017 by Marcel Bokhorst (M66B)
2016-02-09 12:39:49 +00:00
*/
#include "netguard.h"
extern JavaVM *jvm;
2016-06-24 15:44:54 +00:00
extern int pipefds[2];
2016-02-09 12:39:49 +00:00
extern pthread_t thread_id;
extern pthread_mutex_t lock;
2016-06-24 13:21:04 +00:00
struct ng_session *ng_session = NULL;
void init(const struct arguments *args) {
ng_session = NULL;
}
void clear() {
struct ng_session *s = ng_session;
while (s != NULL) {
if (s->socket >= 0 && close(s->socket))
log_android(ANDROID_LOG_ERROR, "close %d error %d: %s",
s->socket, errno, strerror(errno));
if (s->protocol == IPPROTO_TCP)
clear_tcp_data(&s->tcp);
struct ng_session *p = s;
s = s->next;
free(p);
}
ng_session = NULL;
}
2016-02-09 12:39:49 +00:00
void *handle_events(void *a) {
struct arguments *args = (struct arguments *) a;
log_android(ANDROID_LOG_WARN, "Start events tun=%d thread %x", args->tun, thread_id);
// Attach to Java
JNIEnv *env;
jint rs = (*jvm)->AttachCurrentThread(jvm, &env, NULL);
if (rs != JNI_OK) {
log_android(ANDROID_LOG_ERROR, "AttachCurrentThread failed");
return NULL;
}
args->env = env;
2017-08-12 11:49:02 +00:00
// Get max number of sessions
int maxsessions = SESSION_MAX;
struct rlimit rlim;
if (getrlimit(RLIMIT_NOFILE, &rlim))
log_android(ANDROID_LOG_WARN, "getrlimit error %d: %s", errno, strerror(errno));
2017-08-12 11:49:02 +00:00
else {
maxsessions = (int) (rlim.rlim_cur * SESSION_LIMIT / 100);
if (maxsessions > SESSION_MAX)
maxsessions = SESSION_MAX;
log_android(ANDROID_LOG_WARN, "getrlimit soft %d hard %d max sessions %d",
rlim.rlim_cur, rlim.rlim_max, maxsessions);
2017-08-12 11:49:02 +00:00
}
2016-02-09 12:39:49 +00:00
// Terminate existing sessions not allowed anymore
check_allowed(args);
2016-06-24 15:44:54 +00:00
int stopping = 0;
2016-02-09 12:39:49 +00:00
2016-06-25 09:03:42 +00:00
// Open epoll file
2016-06-24 15:48:22 +00:00
int epoll_fd = epoll_create(1);
2016-06-24 13:21:04 +00:00
if (epoll_fd < 0) {
log_android(ANDROID_LOG_ERROR, "epoll create error %d: %s", errno, strerror(errno));
report_exit(args, "epoll create error %d: %s", errno, strerror(errno));
stopping = 1;
}
2016-06-24 15:44:54 +00:00
// Monitor stop events
struct epoll_event ev_pipe;
memset(&ev_pipe, 0, sizeof(struct epoll_event));
2016-06-25 09:03:42 +00:00
ev_pipe.events = EPOLLIN | EPOLLERR;
2016-06-24 15:44:54 +00:00
ev_pipe.data.ptr = &ev_pipe;
if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, pipefds[0], &ev_pipe)) {
log_android(ANDROID_LOG_ERROR, "epoll add pipe error %d: %s", errno, strerror(errno));
report_exit(args, "epoll add pipe error %d: %s", errno, strerror(errno));
stopping = 1;
}
2016-06-24 13:21:04 +00:00
// Monitor tun events
struct epoll_event ev_tun;
memset(&ev_tun, 0, sizeof(struct epoll_event));
ev_tun.events = EPOLLIN | EPOLLERR;
ev_tun.data.ptr = NULL;
if (epoll_ctl(epoll_fd, EPOLL_CTL_ADD, args->tun, &ev_tun)) {
log_android(ANDROID_LOG_ERROR, "epoll add tun error %d: %s", errno, strerror(errno));
report_exit(args, "epoll add tun error %d: %s", errno, strerror(errno));
stopping = 1;
}
2016-02-09 12:39:49 +00:00
// Loop
2016-06-26 07:20:19 +00:00
long long last_check = 0;
2016-02-09 12:39:49 +00:00
while (!stopping) {
log_android(ANDROID_LOG_DEBUG, "Loop thread %x", thread_id);
2016-06-26 07:20:19 +00:00
int recheck = 0;
int timeout = EPOLL_TIMEOUT;
2016-06-24 14:28:50 +00:00
// Count sessions
2016-06-24 13:48:03 +00:00
int isessions = 0;
int usessions = 0;
int tsessions = 0;
struct ng_session *s = ng_session;
while (s != NULL) {
if (s->protocol == IPPROTO_ICMP || s->protocol == IPPROTO_ICMPV6) {
if (!s->icmp.stop)
isessions++;
2017-07-21 04:23:34 +00:00
} else if (s->protocol == IPPROTO_UDP) {
2016-06-24 13:48:03 +00:00
if (s->udp.state == UDP_ACTIVE)
usessions++;
2017-07-21 04:23:34 +00:00
} else if (s->protocol == IPPROTO_TCP) {
2016-06-24 13:48:03 +00:00
if (s->tcp.state != TCP_CLOSING && s->tcp.state != TCP_CLOSE)
tsessions++;
2016-06-26 07:20:19 +00:00
if (s->socket >= 0)
recheck = recheck | monitor_tcp_session(args, s, epoll_fd);
2016-06-24 13:48:03 +00:00
}
s = s->next;
}
int sessions = isessions + usessions + tsessions;
2016-02-09 18:55:28 +00:00
// Check sessions
2016-06-26 07:20:19 +00:00
long long ms = get_ms();
if (ms - last_check > EPOLL_MIN_CHECK) {
last_check = ms;
time_t now = time(NULL);
struct ng_session *sl = NULL;
s = ng_session;
while (s != NULL) {
int del = 0;
if (s->protocol == IPPROTO_ICMP || s->protocol == IPPROTO_ICMPV6) {
del = check_icmp_session(args, s, sessions, maxsessions);
if (!s->icmp.stop && !del) {
int stimeout = s->icmp.time +
get_icmp_timeout(&s->icmp, sessions, maxsessions) - now + 1;
if (stimeout > 0 && stimeout < timeout)
timeout = stimeout;
}
2017-07-21 04:23:34 +00:00
} else if (s->protocol == IPPROTO_UDP) {
2016-06-26 07:20:19 +00:00
del = check_udp_session(args, s, sessions, maxsessions);
if (s->udp.state == UDP_ACTIVE && !del) {
int stimeout = s->udp.time +
get_udp_timeout(&s->udp, sessions, maxsessions) - now + 1;
if (stimeout > 0 && stimeout < timeout)
timeout = stimeout;
}
2017-07-21 04:23:34 +00:00
} else if (s->protocol == IPPROTO_TCP) {
2016-06-26 07:20:19 +00:00
del = check_tcp_session(args, s, sessions, maxsessions);
if (s->tcp.state != TCP_CLOSING && s->tcp.state != TCP_CLOSE && !del) {
int stimeout = s->tcp.time +
get_tcp_timeout(&s->tcp, sessions, maxsessions) - now + 1;
if (stimeout > 0 && stimeout < timeout)
timeout = stimeout;
}
2016-06-24 16:33:44 +00:00
}
2016-06-24 14:12:05 +00:00
2016-06-26 07:20:19 +00:00
if (del) {
if (sl == NULL)
ng_session = s->next;
else
sl->next = s->next;
struct ng_session *c = s;
s = s->next;
if (c->protocol == IPPROTO_TCP)
clear_tcp_data(&c->tcp);
free(c);
2017-07-21 04:23:34 +00:00
} else {
2016-06-26 07:20:19 +00:00
sl = s;
s = s->next;
}
2016-06-24 14:12:05 +00:00
}
2017-07-21 04:23:34 +00:00
} else {
2016-06-26 07:20:19 +00:00
recheck = 1;
log_android(ANDROID_LOG_DEBUG, "Skipped session checks");
}
2016-06-25 09:03:42 +00:00
log_android(ANDROID_LOG_DEBUG,
"sessions ICMP %d UDP %d TCP %d max %d/%d timeout %d recheck %d",
isessions, usessions, tsessions, sessions, maxsessions, timeout, recheck);
2016-06-24 13:21:04 +00:00
// Poll
2016-06-25 07:12:54 +00:00
struct epoll_event ev[EPOLL_EVENTS];
2016-06-26 07:20:19 +00:00
int ready = epoll_wait(epoll_fd, ev, EPOLL_EVENTS,
recheck ? EPOLL_MIN_CHECK : timeout * 1000);
2016-02-09 12:39:49 +00:00
if (ready < 0) {
if (errno == EINTR) {
2016-06-24 15:44:54 +00:00
log_android(ANDROID_LOG_DEBUG,
"epoll interrupted tun %d thread %x", args->tun, thread_id);
continue;
2017-07-21 04:23:34 +00:00
} else {
2016-02-09 12:39:49 +00:00
log_android(ANDROID_LOG_ERROR,
2016-06-24 13:21:04 +00:00
"epoll tun %d thread %x error %d: %s",
2016-02-09 12:39:49 +00:00
args->tun, thread_id, errno, strerror(errno));
2016-06-24 13:21:04 +00:00
report_exit(args, "epoll tun %d thread %x error %d: %s",
2016-02-09 12:39:49 +00:00
args->tun, thread_id, errno, strerror(errno));
break;
}
}
if (ready == 0)
2016-06-24 13:21:04 +00:00
log_android(ANDROID_LOG_DEBUG, "epoll timeout");
2016-02-09 12:39:49 +00:00
else {
if (pthread_mutex_lock(&lock))
log_android(ANDROID_LOG_ERROR, "pthread_mutex_lock failed");
int error = 0;
2016-06-24 16:33:44 +00:00
2016-06-25 07:12:54 +00:00
for (int i = 0; i < ready; i++) {
if (ev[i].data.ptr == &ev_pipe) {
2016-06-25 09:03:42 +00:00
// Check pipe
2016-06-25 07:12:54 +00:00
stopping = 1;
uint8_t buffer[1];
if (read(pipefds[0], buffer, 1) < 0)
log_android(ANDROID_LOG_WARN, "Read pipe error %d: %s",
errno, strerror(errno));
else
log_android(ANDROID_LOG_WARN, "Read pipe");
break;
2017-07-21 04:23:34 +00:00
} else if (ev[i].data.ptr == NULL) {
2016-06-25 09:03:42 +00:00
// Check upstream
2016-06-25 07:12:54 +00:00
log_android(ANDROID_LOG_DEBUG, "epoll ready %d/%d in %d out %d err %d hup %d",
i, ready,
(ev[i].events & EPOLLIN) != 0,
(ev[i].events & EPOLLOUT) != 0,
(ev[i].events & EPOLLERR) != 0,
(ev[i].events & EPOLLHUP) != 0);
2016-06-25 07:28:34 +00:00
while (!error && is_readable(args->tun))
if (check_tun(args, &ev[i], epoll_fd, sessions, maxsessions) < 0)
error = 1;
2016-06-25 07:12:54 +00:00
2017-07-21 04:23:34 +00:00
} else {
2016-06-25 09:03:42 +00:00
// Check downstream
2016-06-25 07:12:54 +00:00
log_android(ANDROID_LOG_DEBUG,
"epoll ready %d/%d in %d out %d err %d hup %d prot %d sock %d",
i, ready,
(ev[i].events & EPOLLIN) != 0,
(ev[i].events & EPOLLOUT) != 0,
(ev[i].events & EPOLLERR) != 0,
(ev[i].events & EPOLLHUP) != 0,
((struct ng_session *) ev[i].data.ptr)->protocol,
((struct ng_session *) ev[i].data.ptr)->socket);
struct ng_session *session = (struct ng_session *) ev[i].data.ptr;
2016-06-25 12:20:17 +00:00
if (session->protocol == IPPROTO_ICMP ||
session->protocol == IPPROTO_ICMPV6)
check_icmp_socket(args, &ev[i]);
else if (session->protocol == IPPROTO_UDP) {
while (!(ev[i].events & EPOLLERR) && (ev[i].events & EPOLLIN) &&
is_readable(session->socket))
2016-06-25 07:53:48 +00:00
check_udp_socket(args, &ev[i]);
2017-07-21 04:23:34 +00:00
} else if (session->protocol == IPPROTO_TCP)
2016-06-25 12:20:17 +00:00
check_tcp_socket(args, &ev[i], epoll_fd);
2016-06-25 07:12:54 +00:00
}
2016-06-24 15:44:54 +00:00
2016-06-25 07:12:54 +00:00
if (error)
break;
2016-02-09 12:39:49 +00:00
}
if (pthread_mutex_unlock(&lock))
log_android(ANDROID_LOG_ERROR, "pthread_mutex_unlock failed");
if (error)
break;
}
}
2016-06-25 09:03:42 +00:00
// Close epoll file
2016-06-24 13:21:04 +00:00
if (epoll_fd >= 0 && close(epoll_fd))
log_android(ANDROID_LOG_ERROR,
"epoll close error %d: %s", errno, strerror(errno));
2016-02-09 12:39:49 +00:00
(*env)->DeleteGlobalRef(env, args->instance);
// Detach from Java
rs = (*jvm)->DetachCurrentThread(jvm);
if (rs != JNI_OK)
log_android(ANDROID_LOG_ERROR, "DetachCurrentThread failed");
// Cleanup
free(args);
log_android(ANDROID_LOG_WARN, "Stopped events tun=%d thread %x", args->tun, thread_id);
thread_id = 0;
return NULL;
}
void check_allowed(const struct arguments *args) {
char source[INET6_ADDRSTRLEN + 1];
char dest[INET6_ADDRSTRLEN + 1];
2016-06-24 13:21:04 +00:00
struct ng_session *l = NULL;
struct ng_session *s = ng_session;
while (s != NULL) {
if (s->protocol == IPPROTO_ICMP || s->protocol == IPPROTO_ICMPV6) {
if (!s->icmp.stop) {
if (s->icmp.version == 4) {
inet_ntop(AF_INET, &s->icmp.saddr.ip4, source, sizeof(source));
inet_ntop(AF_INET, &s->icmp.daddr.ip4, dest, sizeof(dest));
2017-07-21 04:23:34 +00:00
} else {
2016-06-24 13:21:04 +00:00
inet_ntop(AF_INET6, &s->icmp.saddr.ip6, source, sizeof(source));
inet_ntop(AF_INET6, &s->icmp.daddr.ip6, dest, sizeof(dest));
}
2016-02-09 12:39:49 +00:00
2016-06-24 13:21:04 +00:00
jobject objPacket = create_packet(
args, s->icmp.version, IPPROTO_ICMP, "",
source, 0, dest, 0, "", s->icmp.uid, 0);
if (is_address_allowed(args, objPacket) == NULL) {
s->icmp.stop = 1;
log_android(ANDROID_LOG_WARN, "ICMP terminate %d uid %d",
s->socket, s->icmp.uid);
}
2016-02-09 12:39:49 +00:00
}
2017-07-21 04:23:34 +00:00
} else if (s->protocol == IPPROTO_UDP) {
2016-06-24 13:21:04 +00:00
if (s->udp.state == UDP_ACTIVE) {
if (s->udp.version == 4) {
inet_ntop(AF_INET, &s->udp.saddr.ip4, source, sizeof(source));
inet_ntop(AF_INET, &s->udp.daddr.ip4, dest, sizeof(dest));
2017-07-21 04:23:34 +00:00
} else {
2016-06-24 13:21:04 +00:00
inet_ntop(AF_INET6, &s->udp.saddr.ip6, source, sizeof(source));
inet_ntop(AF_INET6, &s->udp.daddr.ip6, dest, sizeof(dest));
}
jobject objPacket = create_packet(
args, s->udp.version, IPPROTO_UDP, "",
source, ntohs(s->udp.source), dest, ntohs(s->udp.dest), "", s->udp.uid, 0);
if (is_address_allowed(args, objPacket) == NULL) {
s->udp.state = UDP_FINISHING;
log_android(ANDROID_LOG_WARN, "UDP terminate session socket %d uid %d",
s->socket, s->udp.uid);
}
2017-07-21 04:23:34 +00:00
} else if (s->udp.state == UDP_BLOCKED) {
2016-06-24 13:21:04 +00:00
log_android(ANDROID_LOG_WARN, "UDP remove blocked session uid %d", s->udp.uid);
if (l == NULL)
ng_session = s->next;
else
l->next = s->next;
struct ng_session *c = s;
s = s->next;
free(c);
continue;
2016-02-09 12:39:49 +00:00
}
2017-07-21 04:23:34 +00:00
} else if (s->protocol == IPPROTO_TCP) {
2016-06-24 13:21:04 +00:00
if (s->tcp.state != TCP_CLOSING && s->tcp.state != TCP_CLOSE) {
if (s->tcp.version == 4) {
inet_ntop(AF_INET, &s->tcp.saddr.ip4, source, sizeof(source));
inet_ntop(AF_INET, &s->tcp.daddr.ip4, dest, sizeof(dest));
2017-07-21 04:23:34 +00:00
} else {
2016-06-24 13:21:04 +00:00
inet_ntop(AF_INET6, &s->tcp.saddr.ip6, source, sizeof(source));
inet_ntop(AF_INET6, &s->tcp.daddr.ip6, dest, sizeof(dest));
}
2016-02-09 12:39:49 +00:00
2016-06-24 13:21:04 +00:00
jobject objPacket = create_packet(
args, s->tcp.version, IPPROTO_TCP, "",
source, ntohs(s->tcp.source), dest, ntohs(s->tcp.dest), "", s->tcp.uid, 0);
if (is_address_allowed(args, objPacket) == NULL) {
write_rst(args, &s->tcp);
log_android(ANDROID_LOG_WARN, "TCP terminate socket %d uid %d",
s->socket, s->tcp.uid);
}
2016-02-09 12:39:49 +00:00
}
}
2016-06-24 13:21:04 +00:00
l = s;
s = s->next;
2016-02-09 12:39:49 +00:00
}
}