summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Android.bp14
-rw-r--r--clatd.c2
-rw-r--r--clatd_microbenchmark.c2
-rw-r--r--tun.c10
-rw-r--r--tun.h2
5 files changed, 23 insertions, 7 deletions
diff --git a/Android.bp b/Android.bp
index e0eeb2e..98b4010 100644
--- a/Android.bp
+++ b/Android.bp
@@ -54,6 +54,20 @@ cc_binary {
"liblog",
"libnetutils",
],
+
+ // Only enable clang-tidy for the daemon, not the tests, because enabling it for the
+ // tests substantially increases build/compile cycle times and doesn't really provide a
+ // security benefit.
+ tidy: true,
+ tidy_checks: [
+ "-*",
+ "cert-*",
+ "clang-analyzer-security*",
+ "android-*",
+ ],
+ tidy_flags: [
+ "-warnings-as-errors=clang-analyzer-security*,cert-*,android-*",
+ ],
}
// The configuration file.
diff --git a/clatd.c b/clatd.c
index 06ca799..d68dc05 100644
--- a/clatd.c
+++ b/clatd.c
@@ -381,7 +381,7 @@ void configure_interface(const char *uplink_interface, const char *plat_prefix,
logmsg(ANDROID_LOG_WARN, "ipv4mtu now set to = %d", Global_Clatd_Config.ipv4mtu);
}
- error = tun_alloc(tunnel->device4, tunnel->fd4);
+ error = tun_alloc(tunnel->device4, tunnel->fd4, sizeof(tunnel->device4));
if (error < 0) {
logmsg(ANDROID_LOG_FATAL, "tun_alloc/4 failed: %s", strerror(errno));
exit(1);
diff --git a/clatd_microbenchmark.c b/clatd_microbenchmark.c
index 91b0996..15a0376 100644
--- a/clatd_microbenchmark.c
+++ b/clatd_microbenchmark.c
@@ -67,7 +67,7 @@ int setup_tun() {
if (fd == -1) die("tun_open");
char dev[IFNAMSIZ] = DEVICENAME;
- int ret = tun_alloc(dev, fd);
+ int ret = tun_alloc(dev, fd, sizeof(dev));
if (ret == -1) die("tun_alloc");
struct ifreq ifr = {
.ifr_name = DEVICENAME,
diff --git a/tun.c b/tun.c
index 406fc2f..7ecbf2c 100644
--- a/tun.c
+++ b/tun.c
@@ -32,9 +32,9 @@
int tun_open() {
int fd;
- fd = open("/dev/tun", O_RDWR);
+ fd = open("/dev/tun", O_RDWR | O_CLOEXEC);
if (fd < 0) {
- fd = open("/dev/net/tun", O_RDWR);
+ fd = open("/dev/net/tun", O_RDWR | O_CLOEXEC);
}
return fd;
@@ -43,8 +43,10 @@ int tun_open() {
/* function: tun_alloc
* creates a tun interface and names it
* dev - the name for the new tun device
+ * fd - an open fd to the tun device node
+ * len - the length of the buffer pointed to by dev
*/
-int tun_alloc(char *dev, int fd) {
+int tun_alloc(char *dev, int fd, size_t len) {
struct ifreq ifr;
int err;
@@ -60,7 +62,7 @@ int tun_alloc(char *dev, int fd) {
close(fd);
return err;
}
- strcpy(dev, ifr.ifr_name);
+ strlcpy(dev, ifr.ifr_name, len);
return 0;
}
diff --git a/tun.h b/tun.h
index f0449b9..95650fa 100644
--- a/tun.h
+++ b/tun.h
@@ -30,7 +30,7 @@ struct tun_data {
};
int tun_open();
-int tun_alloc(char *dev, int fd);
+int tun_alloc(char *dev, int fd, size_t len);
int send_tun(int fd, clat_packet out, int iov_len);
int set_nonblocking(int fd);