Compare commits
8 Commits
v0.0.37-mu
...
v0.0.30
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6f36424d12 | ||
|
|
fa9301da16 | ||
|
|
c154a00358 | ||
|
|
4246b510d2 | ||
|
|
c71db48ae1 | ||
|
|
e3cce8aeb9 | ||
|
|
ad0d205ff3 | ||
|
|
030087cb27 |
3
.gitmodules
vendored
3
.gitmodules
vendored
@@ -1,3 +0,0 @@
|
|||||||
[submodule "mud"]
|
|
||||||
path = mud
|
|
||||||
url = https://github.com/angt/mud.git
|
|
||||||
@@ -20,11 +20,6 @@ glorytun_SOURCES = \
|
|||||||
src/state.c \
|
src/state.c \
|
||||||
src/state.h
|
src/state.h
|
||||||
|
|
||||||
glorytun_CFLAGS += -I$(srcdir)/mud
|
|
||||||
glorytun_SOURCES += \
|
|
||||||
mud/mud.h \
|
|
||||||
mud/mud.c
|
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
LICENSE \
|
LICENSE \
|
||||||
README.md \
|
README.md \
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# π₁(Glorytun)=ℤ²
|
# π₁(Glorytun)=ℤ²
|
||||||
|
|
||||||
Small, Simple and Stupid VPN over [mud](https://github.com/angt/mud).
|
Small, Simple and Stupid TCP VPN.
|
||||||
|
|
||||||
#### Work In Progress
|
#### Work In Progress
|
||||||
|
|
||||||
@@ -8,12 +8,11 @@ This code will probably format your harddisk!
|
|||||||
|
|
||||||
#### Build and Install
|
#### Build and Install
|
||||||
|
|
||||||
Glorytun depends on [libsodium](https://github.com/jedisct1/libsodium) version >= 1.0.4
|
Glorytun depends on [libsodium](https://github.com/jedisct1/libsodium) version >= 1.0.4.
|
||||||
and needs an AES-NI capable CPU.
|
|
||||||
|
|
||||||
To build and install the latest version:
|
To build and install the latest version:
|
||||||
|
|
||||||
$ git clone https://github.com/angt/glorytun --recursive --branch mud
|
$ git clone https://github.com/angt/glorytun
|
||||||
$ cd glorytun
|
$ cd glorytun
|
||||||
$ ./autogen.sh
|
$ ./autogen.sh
|
||||||
$ ./configure
|
$ ./configure
|
||||||
|
|||||||
1
mud
1
mud
Submodule mud deleted from 3b86683636
1289
src/main.c
1289
src/main.c
File diff suppressed because it is too large
Load Diff
41
src/state.c
41
src/state.c
@@ -7,16 +7,14 @@
|
|||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
|
||||||
static int state_fd = -1;
|
int state_create (const char *filename)
|
||||||
|
|
||||||
int state_init (const char *filename)
|
|
||||||
{
|
{
|
||||||
if (str_empty(filename))
|
if (str_empty(filename))
|
||||||
return 0;
|
return -1;
|
||||||
|
|
||||||
state_fd = open(filename, O_WRONLY);
|
int fd = open(filename, O_WRONLY);
|
||||||
|
|
||||||
if (state_fd==-1) {
|
if (fd==-1) {
|
||||||
if (errno!=EINTR)
|
if (errno!=EINTR)
|
||||||
perror("open");
|
perror("open");
|
||||||
return -1;
|
return -1;
|
||||||
@@ -24,38 +22,41 @@ int state_init (const char *filename)
|
|||||||
|
|
||||||
struct stat st = {0};
|
struct stat st = {0};
|
||||||
|
|
||||||
if (fstat(state_fd, &st)==-1) {
|
if (fstat(fd, &st)==-1) {
|
||||||
perror("fstat");
|
perror("fstat");
|
||||||
close(state_fd);
|
close(fd);
|
||||||
state_fd = -1;
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!S_ISFIFO(st.st_mode)) {
|
if (!S_ISFIFO(st.st_mode)) {
|
||||||
gt_log("`%s' is not a fifo\n", filename);
|
gt_log("`%s' is not a fifo\n", filename);
|
||||||
close(state_fd);
|
close(fd);
|
||||||
state_fd = -1;
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return fd;
|
||||||
}
|
}
|
||||||
|
|
||||||
void state (const char *state, const char *info)
|
void state_send (int fd, const char *state, const char *info)
|
||||||
{
|
{
|
||||||
if (str_empty(state))
|
if (str_empty(state))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if (fd==-1) {
|
||||||
|
gt_print("%s %s\n", state, info);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const char *strs[] = { state, " ", info, "\n" };
|
const char *strs[] = { state, " ", info, "\n" };
|
||||||
char *str = str_cat(strs, COUNT(strs));
|
char *str = str_cat(strs, COUNT(strs));
|
||||||
|
|
||||||
if (!str)
|
if (!str) {
|
||||||
|
perror("str_cat");
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (state_fd==-1) {
|
|
||||||
gt_print("%s", str);
|
|
||||||
} else {
|
|
||||||
if (write(state_fd, str, str_len(str))==-1 && errno!=EINTR)
|
|
||||||
perror("write");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (write(fd, str, str_len(str))==-1 && errno!=EINTR)
|
||||||
|
perror("write");
|
||||||
|
|
||||||
|
free(str);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
int state_init (const char *);
|
int state_create (const char *);
|
||||||
void state (const char *, const char *);
|
void state_send (int, const char *, const char *);
|
||||||
|
|||||||
Reference in New Issue
Block a user