summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCore/GetPassword.cpp
blob: 74b3b5dd296666debd27fb3d56eba088140fc2a9 (plain)
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
/*
 * Copyright (c) 2020, Peter Elliott <pelliott@serenityos.org>
 * Copyright (c) 2021, Emanuele Torre <torreemanuele6@gmail.com>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <LibCore/GetPassword.h>
#include <LibCore/System.h>
#include <stdio.h>
#include <stdlib.h>
#include <termios.h>
#include <unistd.h>

namespace Core {

ErrorOr<SecretString> get_password(StringView prompt)
{
    TRY(Core::System::write(STDOUT_FILENO, prompt.bytes()));

    auto original = TRY(Core::System::tcgetattr(STDIN_FILENO));

    termios no_echo = original;
    no_echo.c_lflag &= ~ECHO;
    TRY(Core::System::tcsetattr(STDIN_FILENO, TCSAFLUSH, no_echo));

    char* password = nullptr;
    size_t n = 0;

    auto line_length = getline(&password, &n, stdin);
    auto saved_errno = errno;

    tcsetattr(STDIN_FILENO, TCSAFLUSH, &original);
    putchar('\n');

    if (line_length < 0)
        return Error::from_errno(saved_errno);

    VERIFY(line_length != 0);

    // Remove trailing '\n' read by getline().
    password[line_length - 1] = '\0';

    return SecretString::take_ownership(password, line_length);
}
}