1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
// OpenVPN -- An application to securely tunnel IP networks
// over a single port, with support for SSL/TLS-based
// session authentication and key exchange,
// packet encryption, packet authentication, and
// packet compression.
//
// Copyright (C) 2012-2022 OpenVPN Inc.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License Version 3
// as published by the Free Software Foundation.
//
// This program 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 Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program in the COPYING file.
// If not, see <http://www.gnu.org/licenses/>.
#pragma once
#include <string>
#include <vector>
#include <atomic>
#include <openvpn/common/exception.hpp>
#include <openvpn/common/file.hpp>
#include <openvpn/common/string.hpp>
#include <openvpn/common/base64.hpp>
#include <openvpn/common/splitlines.hpp>
#include <openvpn/common/strneq.hpp>
#include <openvpn/common/unicode.hpp>
#include <openvpn/common/userpass.hpp>
#include <openvpn/common/platform.hpp>
#include <openvpn/common/writeprivate.hpp>
#include <openvpn/http/header.hpp>
namespace openvpn {
namespace WS {
struct Creds
{
OPENVPN_EXCEPTION(web_creds_error);
static Creds load_from_header(const HTTP::HeaderList &headlist,
const bool password_required,
const bool throw_on_error)
{
Creds ret;
try
{
// Authorization: Basic Zm9vOmJhcg==
for (auto &h : headlist)
{
if (string::strcasecmp(h.name, "authorization") == 0
&& h.value.length() >= 7
&& string::strcasecmp(h.value.substr(0, 6), "basic ") == 0)
{
const std::string creds = base64->decode(h.value.substr(6));
const auto cv = string::split(creds, ':', 1);
if (cv.size() != 2)
throw Exception("error splitting credentials");
if (!Unicode::is_valid_utf8(cv[0]))
throw Exception("username not UTF-8");
if (!Unicode::is_valid_utf8(cv[1]))
throw Exception("password not UTF-8");
if (cv[0].empty())
throw Exception("username empty");
if (password_required && cv[1].empty())
throw Exception("password empty");
ret.username = cv[0];
ret.password = cv[1];
break;
}
}
}
catch (const std::exception &e)
{
if (throw_on_error)
throw web_creds_error(e.what());
}
return ret;
}
static Creds load_from_file(const std::string &fn,
const bool password_required,
const bool throw_on_error)
{
Creds ret;
try
{
const std::string content = read_text_utf8(fn);
SplitLines sl(content, 1024);
std::string u, p;
if (sl.next(u) != SplitLines::S_OKAY)
throw Exception(fn + " : username missing");
if (sl.next(p) != SplitLines::S_OKAY)
throw Exception(fn + " : password missing");
if (u.empty())
throw Exception(fn + " : username empty");
if (password_required && p.empty())
throw Exception(fn + " : password empty");
ret.username = std::move(u);
ret.password = std::move(p);
}
catch (const std::exception &e)
{
if (throw_on_error)
throw web_creds_error(e.what());
}
return ret;
}
static Creds load_from_options(const OptionList &opt,
const std::string &opt_name,
const unsigned int flags)
{
Creds ret;
UserPass::parse(opt, opt_name, flags, ret.username, ret.password);
return ret;
}
bool defined() const
{
return !username.empty();
}
bool defined_full() const
{
return !username.empty() && !password.empty();
}
void save_to_file(const std::string &fn) const
{
write_private(fn, username + '\n' + password + '\n');
}
bool operator==(const Creds &rhs) const
{
return !operator!=(rhs);
}
bool operator!=(const Creds &rhs) const
{
bool neq = crypto::str_neq(username, rhs.username);
atomic_thread_fence(std::memory_order_acq_rel);
neq |= crypto::str_neq(password, rhs.password);
atomic_thread_fence(std::memory_order_acq_rel);
return neq;
}
bool password_eq(const Creds &rhs) const
{
bool neq = crypto::str_neq(password, rhs.password);
atomic_thread_fence(std::memory_order_acq_rel);
return !neq;
}
std::string to_string() const
{
return username + '/' + password;
}
std::string username;
std::string password;
};
} // namespace WS
} // namespace openvpn
|