Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

impl no_auth #664

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
27 changes: 13 additions & 14 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
FROM alpine:3.11

COPY . trojan
RUN apk add --no-cache --virtual .build-deps \
FROM alpine:3.15 AS builder
COPY . /trojan
RUN apk add --no-cache \
boost-dev \
build-base \
cmake \
boost-dev \
openssl-dev \
mariadb-connector-c-dev \
&& (cd trojan && cmake . && make -j $(nproc) && strip -s trojan \
&& mv trojan /usr/local/bin) \
&& rm -rf trojan \
&& apk del .build-deps \
&& apk add --no-cache --virtual .trojan-rundeps \
libstdc++ \
boost-system \
openssl-dev \
&& (cd /trojan && cmake . && make -j $(nproc) && strip -s trojan)

FROM alpine:3.15
RUN apk add --no-cache \
boost-program_options \
boost-system \
libstdc++ \
mariadb-connector-c
COPY --from=builder /trojan/trojan /usr/local/bin/trojan

WORKDIR /config
CMD ["trojan", "config.json"]
ENTRYPOINT ["/usr/local/bin/trojan", "/config/config.json"]
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ stages:
steps:
- bash: |
set -euo pipefail
curl -LO https://slproweb.com/download/Win64OpenSSL-1_1_1h.exe
powershell ".\\Win64OpenSSL-1_1_1h.exe /silent /sp- /suppressmsgboxes /DIR='C:\\Program Files\\OpenSSL-Win64'"
curl -LO https://slproweb.com/download/Win64OpenSSL-1_1_1o.exe
powershell ".\\Win64OpenSSL-1_1_1o.exe /silent /sp- /suppressmsgboxes /DIR='C:\\Program Files\\OpenSSL-Win64'"
cmake -DBoost_INCLUDE_DIR="${BOOST_ROOT_1_72_0}/include" -DBoost_USE_STATIC_LIBS=ON -DOPENSSL_ROOT_DIR='C:/Program Files/OpenSSL-Win64' -DOPENSSL_USE_STATIC_LIBS=ON -DENABLE_MYSQL=OFF .
cmake --build . --config Release
- publish: $(System.DefaultWorkingDirectory)/Release/trojan.exe
Expand Down
4 changes: 4 additions & 0 deletions src/core/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -165,3 +165,7 @@ string Config::SHA224(const string &message) {
EVP_MD_CTX_free(ctx);
return string(mdString);
}

bool Config::no_auth() const {
return !mysql.enabled && password.empty();
}
1 change: 1 addition & 0 deletions src/core/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ class Config {
void populate(const std::string &JSON);
bool sip003();
static std::string SHA224(const std::string &message);
bool no_auth() const;
private:
void populate(const boost::property_tree::ptree &tree);
};
Expand Down
3 changes: 3 additions & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,9 @@ int main(int argc, const char *argv[]) {
} else {
config.load(config_file);
}
if (config.no_auth()){
Log::log_with_date_time("no authentication method", Log::WARN);
}
Service service(config, test);
if (test) {
Log::log("The config file looks good.", Log::OFF);
Expand Down
5 changes: 4 additions & 1 deletion src/session/clientsession.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,10 @@ void ClientSession::in_recv(const string &data) {
destroy();
return;
}
out_write_buf = config.password.cbegin()->first + "\r\n" + data[1] + data.substr(3) + "\r\n";
out_write_buf = string().append(config.password.cbegin()->first)
.append("\r\n").append(1, data[1])
.append(data.substr(3))
.append("\r\n");
TrojanRequest req;
if (req.parse(out_write_buf) == -1) {
Log::log_with_endpoint(in_endpoint, "unsupported command", Log::ERROR);
Expand Down
46 changes: 34 additions & 12 deletions src/session/serversession.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,14 @@ void ServerSession::in_async_read() {
auto self = shared_from_this();
in_socket.async_read_some(boost::asio::buffer(in_read_buf, MAX_LENGTH), [this, self](const boost::system::error_code error, size_t length) {
if (error) {
if ((boost::asio::error::eof == error) ||
(boost::asio::error::connection_reset == error) ||
(boost::asio::error::operation_aborted == error))
{
Log::log_with_endpoint(in_endpoint, "remote server actively closed the connection", Log::INFO);
status = ACTIVE_DISCONNECT;
}

destroy();
return;
}
Expand Down Expand Up @@ -137,19 +145,27 @@ void ServerSession::in_recv(const string &data) {
TrojanRequest req;
bool valid = req.parse(data) != -1;
if (valid) {
auto password_iterator = config.password.find(req.password);
if (password_iterator == config.password.end()) {
valid = false;
if (auth && auth->auth(req.password)) {
valid = true;
auth_password = req.password;
Log::log_with_endpoint(in_endpoint, "authenticated by authenticator (" + req.password.substr(0, 7) + ')', Log::INFO);
if (config.no_auth()) {
Log::log_with_endpoint(in_endpoint, "authentication is disabled", Log::INFO);
}else{
auto password_iterator = config.password.find(req.password);
if (password_iterator == config.password.end()) {
valid = false;
if (auth && auth->auth(req.password)) {
valid = true;
auth_password = req.password;
Log::log_with_endpoint(in_endpoint,
"authenticated by authenticator (" + req.password.substr(0, 7) + ')',
Log::INFO);
}
} else {
Log::log_with_endpoint(in_endpoint, "authenticated as " + password_iterator->second, Log::INFO);
}
if (!valid) {
Log::log_with_endpoint(in_endpoint,
"valid trojan request structure but possibly incorrect password (" +
req.password + ')', Log::WARN);
}
} else {
Log::log_with_endpoint(in_endpoint, "authenticated as " + password_iterator->second, Log::INFO);
}
if (!valid) {
Log::log_with_endpoint(in_endpoint, "valid trojan request structure but possibly incorrect password (" + req.password + ')', Log::WARN);
}
}
string query_addr = valid ? req.address.address : config.remote_addr;
Expand Down Expand Up @@ -330,6 +346,7 @@ void ServerSession::destroy() {
if (status == DESTROY) {
return;
}
auto previous_status = status;
status = DESTROY;
Log::log_with_endpoint(in_endpoint, "disconnected, " + to_string(recv_len) + " bytes received, " + to_string(sent_len) + " bytes sent, lasted for " + to_string(time(nullptr) - start_time) + " seconds", Log::INFO);
if (auth && !auth_password.empty()) {
Expand All @@ -347,6 +364,11 @@ void ServerSession::destroy() {
udp_socket.cancel(ec);
udp_socket.close(ec);
}
if (previous_status == ACTIVE_DISCONNECT) {
in_socket.next_layer().cancel(ec);
in_socket.next_layer().shutdown(tcp::socket::shutdown_both, ec);
in_socket.next_layer().close(ec);
}
if (in_socket.next_layer().is_open()) {
auto self = shared_from_this();
auto ssl_shutdown_cb = [this, self](const boost::system::error_code error) {
Expand Down
3 changes: 2 additions & 1 deletion src/session/serversession.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ class ServerSession : public Session {
HANDSHAKE,
FORWARD,
UDP_FORWARD,
DESTROY
DESTROY,
ACTIVE_DISCONNECT
} status;
boost::asio::ssl::stream<boost::asio::ip::tcp::socket>in_socket;
boost::asio::ip::tcp::socket out_socket;
Expand Down