]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/ask-password-api.h
man: tweak cryptsetup credentials docs a bit
[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 */
e390c34d 17 ASK_PASSWORD_HIDE_EMOJI = 1 << 8, /* hide the lock and key emoji */
e287086b
LP
18} AskPasswordFlags;
19
d08fd4c3
LP
20/* Encapsulates the mostly static fields of a password query */
21typedef struct AskPasswordRequest {
22 const char *message; /* The human readable password prompt when asking interactively */
23 const char *keyring; /* kernel keyring key name (key of "user" type) */
24 const char *icon; /* freedesktop icon spec name */
25 const char *id; /* some identifier used for this prompt for the "ask-password" protocol */
26 const char *credential; /* $CREDENTIALS_DIRECTORY credential name */
27} AskPasswordRequest;
28
29int ask_password_tty(int tty_fd, const AskPasswordRequest *req, usec_t until, AskPasswordFlags flags, const char *flag_file, char ***ret);
30int ask_password_plymouth(const AskPasswordRequest *req, usec_t until, AskPasswordFlags flags, const char *flag_file, char ***ret);
31int ask_password_agent(const AskPasswordRequest *req, usec_t until, AskPasswordFlags flag, char ***ret);
32int ask_password_auto(const AskPasswordRequest *req, usec_t until, AskPasswordFlags flag, char ***ret);