]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/ask-password-api.h
ask-password: when querying for a password, try to read from credential store first
[thirdparty/systemd.git] / src / shared / ask-password-api.h
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
c2f1db8f 2#pragma once
7f4e0805 3
3f6fd1ba
LP
4#include <stdbool.h>
5
6#include "time-util.h"
7f4e0805 7
e287086b 8typedef enum AskPasswordFlags {
8806bb4b
LP
9 ASK_PASSWORD_ACCEPT_CACHED = 1 << 0, /* read from kernel keyring */
10 ASK_PASSWORD_PUSH_CACHE = 1 << 1, /* write to kernel keyring after getting password from elsewhere */
ef31828d
LP
11 ASK_PASSWORD_ECHO = 1 << 2, /* show the password literally while reading, instead of "*" */
12 ASK_PASSWORD_SILENT = 1 << 3, /* do no show any password at all while reading */
8806bb4b
LP
13 ASK_PASSWORD_NO_TTY = 1 << 4, /* never ask for password on tty */
14 ASK_PASSWORD_NO_AGENT = 1 << 5, /* never ask for password via agent */
ef31828d 15 ASK_PASSWORD_CONSOLE_COLOR = 1 << 6, /* Use color if /dev/console points to a console that supports color */
8806bb4b 16 ASK_PASSWORD_NO_CREDENTIAL = 1 << 7, /* never use $CREDENTIALS_DIRECTORY data */
e287086b
LP
17} AskPasswordFlags;
18
8806bb4b 19int ask_password_tty(int tty_fd, const char *message, const char *key_name, usec_t until, AskPasswordFlags flags, const char *flag_file, char ***ret);
6b2faba7 20int ask_password_plymouth(const char *message, usec_t until, AskPasswordFlags flags, const char *flag_file, char ***ret);
8806bb4b
LP
21int ask_password_agent(const char *message, const char *icon, const char *id, const char *key_name, usec_t until, AskPasswordFlags flag, char ***ret);
22int ask_password_auto(const char *message, const char *icon, const char *id, const char *key_name, const char *credential_name, usec_t until, AskPasswordFlags flag, char ***ret);