123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316 |
- /*
- * Copyright (c) 2020, Peter Elliott <pelliott@ualberta.ca>
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright notice, this
- * list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- #include <AK/Base64.h>
- #include <AK/Random.h>
- #include <LibCore/Account.h>
- #include <LibCore/File.h>
- #include <grp.h>
- #include <pwd.h>
- #include <stdio.h>
- #include <string.h>
- #include <unistd.h>
- namespace Core {
- static String get_salt()
- {
- char random_data[12];
- AK::fill_with_random(random_data, sizeof(random_data));
- StringBuilder builder;
- builder.append("$5$");
- builder.append(encode_base64(ReadonlyBytes(random_data, sizeof(random_data))));
- return builder.build();
- }
- static Vector<gid_t> get_gids(const StringView& username)
- {
- Vector<gid_t> extra_gids;
- for (auto* group = getgrent(); group; group = getgrent()) {
- for (size_t i = 0; group->gr_mem[i]; ++i) {
- if (username == group->gr_mem[i]) {
- extra_gids.append(group->gr_gid);
- break;
- }
- }
- }
- endgrent();
- return extra_gids;
- }
- Result<Account, String> Account::from_passwd(const passwd& pwd, Core::Account::OpenPasswdFile open_passwd_file, Core::Account::OpenShadowFile open_shadow_file)
- {
- RefPtr<Core::File> passwd_file;
- if (open_passwd_file != Core::Account::OpenPasswdFile::No) {
- auto open_mode = open_passwd_file == Core::Account::OpenPasswdFile::ReadOnly
- ? Core::File::OpenMode::ReadOnly
- : Core::File::OpenMode::ReadWrite;
- auto file_or_error = Core::File::open("/etc/passwd", open_mode);
- if (file_or_error.is_error())
- return file_or_error.error();
- passwd_file = file_or_error.value();
- }
- RefPtr<Core::File> shadow_file;
- if (open_shadow_file != Core::Account::OpenShadowFile::No) {
- auto open_mode = open_shadow_file == Core::Account::OpenShadowFile::ReadOnly
- ? Core::File::OpenMode::ReadOnly
- : Core::File::OpenMode::ReadWrite;
- auto file_or_error = Core::File::open("/etc/shadow", open_mode);
- if (file_or_error.is_error())
- return file_or_error.error();
- shadow_file = file_or_error.value();
- }
- Account account(pwd, get_gids(pwd.pw_name), move(passwd_file), move(shadow_file));
- endpwent();
- return account;
- }
- Result<Account, String> Account::from_name(const char* username, Core::Account::OpenPasswdFile open_passwd_file, Core::Account::OpenShadowFile open_shadow_file)
- {
- struct passwd* pwd = nullptr;
- errno = 0;
- pwd = getpwnam(username);
- if (!pwd) {
- if (errno == 0)
- return String("No such user");
- return String(strerror(errno));
- }
- return from_passwd(*pwd, open_passwd_file, open_shadow_file);
- }
- Result<Account, String> Account::from_uid(uid_t uid, Core::Account::OpenPasswdFile open_passwd_file, Core::Account::OpenShadowFile open_shadow_file)
- {
- struct passwd* pwd = nullptr;
- errno = 0;
- pwd = getpwuid(uid);
- if (!pwd) {
- if (errno == 0)
- return String("No such user");
- return String(strerror(errno));
- }
- return from_passwd(*pwd, open_passwd_file, open_shadow_file);
- }
- bool Account::authenticate(const char* password) const
- {
- // An empty passwd field indicates that no password is required to log in.
- if (m_password_hash.is_empty())
- return true;
- // FIXME: Use crypt_r if it can be built in lagom.
- char* hash = crypt(password, m_password_hash.characters());
- return hash != nullptr && strcmp(hash, m_password_hash.characters()) == 0;
- }
- bool Account::login() const
- {
- if (setgroups(m_extra_gids.size(), m_extra_gids.data()) < 0)
- return false;
- if (setgid(m_gid) < 0)
- return false;
- if (setuid(m_uid) < 0)
- return false;
- return true;
- }
- void Account::set_password(const char* password)
- {
- m_password_hash = crypt(password, get_salt().characters());
- }
- void Account::set_password_enabled(bool enabled)
- {
- if (enabled && m_password_hash != "" && m_password_hash[0] == '!') {
- m_password_hash = m_password_hash.substring(1, m_password_hash.length() - 1);
- } else if (!enabled && (m_password_hash == "" || m_password_hash[0] != '!')) {
- StringBuilder builder;
- builder.append('!');
- builder.append(m_password_hash);
- m_password_hash = builder.build();
- }
- }
- void Account::delete_password()
- {
- m_password_hash = "";
- }
- Account::Account(const passwd& pwd, Vector<gid_t> extra_gids, RefPtr<Core::File> passwd_file, RefPtr<Core::File> shadow_file)
- : m_passwd_file(move(passwd_file))
- , m_shadow_file(move(shadow_file))
- , m_username(pwd.pw_name)
- , m_uid(pwd.pw_uid)
- , m_gid(pwd.pw_gid)
- , m_gecos(pwd.pw_gecos)
- , m_home_directory(pwd.pw_dir)
- , m_shell(pwd.pw_shell)
- , m_extra_gids(extra_gids)
- {
- if (m_shadow_file) {
- load_shadow_file();
- }
- }
- String Account::generate_passwd_file() const
- {
- StringBuilder builder;
- setpwent();
- struct passwd* p;
- errno = 0;
- while ((p = getpwent())) {
- if (p->pw_uid == m_uid) {
- builder.appendff("{}:!:{}:{}:{}:{}:{}\n",
- m_username,
- m_uid, m_gid,
- m_gecos,
- m_home_directory,
- m_shell);
- } else {
- builder.appendff("{}:!:{}:{}:{}:{}:{}\n",
- p->pw_name, p->pw_uid,
- p->pw_gid, p->pw_gecos, p->pw_dir,
- p->pw_shell);
- }
- }
- endpwent();
- if (errno) {
- dbgln("errno was non-zero after generating new passwd file.");
- return {};
- }
- return builder.to_string();
- }
- void Account::load_shadow_file()
- {
- ASSERT(m_shadow_file);
- ASSERT(m_shadow_file->is_open());
- if (!m_shadow_file->seek(0)) {
- ASSERT_NOT_REACHED();
- }
- Vector<ShadowEntry> entries;
- for (;;) {
- auto line = m_shadow_file->read_line();
- if (line.is_null())
- break;
- auto parts = line.split(':');
- if (parts.size() != 2) {
- dbgln("Malformed shadow entry, ignoring.");
- continue;
- }
- const auto& username = parts[0];
- const auto& password_hash = parts[1];
- entries.append({ username, password_hash });
- if (username == m_username) {
- m_password_hash = password_hash;
- }
- }
- m_shadow_entries = move(entries);
- }
- String Account::generate_shadow_file() const
- {
- StringBuilder builder;
- bool updated_entry_in_place = false;
- for (auto& entry : m_shadow_entries) {
- if (entry.username == m_username) {
- updated_entry_in_place = true;
- builder.appendff("{}:{}\n", m_username, m_password_hash);
- } else {
- builder.appendff("{}:{}\n", entry.username, entry.password_hash);
- }
- }
- if (!updated_entry_in_place)
- builder.appendff("{}:{}\n", m_username, m_password_hash);
- return builder.to_string();
- }
- bool Account::sync()
- {
- ASSERT(m_passwd_file);
- ASSERT(m_passwd_file->mode() == Core::File::OpenMode::ReadWrite);
- ASSERT(m_shadow_file);
- ASSERT(m_shadow_file->mode() == Core::File::OpenMode::ReadWrite);
- // FIXME: Maybe reorganize this to create temporary files and finish it completely before renaming them to /etc/{passwd,shadow}
- // If truncation succeeds but write fails, we'll have an empty file :(
- auto new_passwd_file = generate_passwd_file();
- auto new_shadow_file = generate_shadow_file();
- if (new_passwd_file.is_null() || new_shadow_file.is_null()) {
- ASSERT_NOT_REACHED();
- }
- if (!m_passwd_file->seek(0) || !m_shadow_file->seek(0)) {
- ASSERT_NOT_REACHED();
- }
- if (!m_passwd_file->truncate(0)) {
- dbgln("Truncating passwd file failed.");
- return false;
- }
- if (!m_passwd_file->write(new_passwd_file)) {
- // FIXME: Improve Core::File::write() error reporting.
- dbgln("Writing to passwd file failed.");
- return false;
- }
- if (!m_shadow_file->truncate(0)) {
- dbgln("Truncating shadow file failed.");
- return false;
- }
- if (!m_shadow_file->write(new_shadow_file)) {
- // FIXME: Improve Core::File::write() error reporting.
- dbgln("Writing to shadow file failed.");
- return false;
- }
- return true;
- // FIXME: Sync extra groups.
- }
- }
|