aboutsummaryrefslogtreecommitdiffstats
path: root/agent/gpg-agent.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2025-01-08 16:10:07 +0000
committerWerner Koch <[email protected]>2025-01-08 16:17:42 +0000
commita019a0fcd8dfb9d1eae5bc991fdd54b7cf55641e (patch)
tree6b211dc7805f07b519782e8884d00c598c478c96 /agent/gpg-agent.c
parentUpdate README and copyright years. (diff)
downloadgnupg-a019a0fcd8dfb9d1eae5bc991fdd54b7cf55641e.tar.gz
gnupg-a019a0fcd8dfb9d1eae5bc991fdd54b7cf55641e.zip
Stronger deprecate the --supervised option.
* agent/gpg-agent.c (opts): Rename option supervised. * dirmngr/dirmngr.c (opts): Ditto. -- The --supervised way to start gpg-agent has been deprecated for 2.5 years and will probably entirely removed with version 2.6.0. To allow its use until its removal the systemd service description need to be adjusted to use this option. The reason for the deprecation are conflicts with the way systemd starts gpg-agent and gpg expects how gpg-agent is started. In particular gpg expects that the gpg-agent matching its own version is started. Further the systemd way is not portable to other platforms and long term experience on Windows has show that the standard way of starting gpg-agent is less error prone. Note to those who want to re-introduse this option: Pretty please do not use socket names conflicting with our standard socket names. For example use /run/user/1000/foo-gnupg/S.gpg-agent.
Diffstat (limited to 'agent/gpg-agent.c')
-rw-r--r--agent/gpg-agent.c21
1 files changed, 12 insertions, 9 deletions
diff --git a/agent/gpg-agent.c b/agent/gpg-agent.c
index 5b1f155fe..758824144 100644
--- a/agent/gpg-agent.c
+++ b/agent/gpg-agent.c
@@ -169,7 +169,7 @@ static gpgrt_opt_t opts[] = {
ARGPARSE_s_n (oDaemon, "daemon", N_("run in daemon mode (background)")),
ARGPARSE_s_n (oServer, "server", N_("run in server mode (foreground)")),
#ifndef HAVE_W32_SYSTEM
- ARGPARSE_s_n (oSupervised, "supervised", "@"),
+ ARGPARSE_s_n (oSupervised, "deprecated-supervised", "@"),
#endif
ARGPARSE_s_n (oNoDetach, "no-detach", N_("do not detach from the console")),
ARGPARSE_s_n (oSh, "sh", N_("sh-style command output")),
@@ -714,10 +714,10 @@ map_supervised_sockets (gnupg_fd_t *r_fd,
envvar = getenv ("LISTEN_PID");
if (!envvar)
log_error ("no LISTEN_PID environment variable found in "
- "--supervised mode (ignoring)\n");
+ "--deprecated-supervised mode (ignoring)\n");
else if (strtoul (envvar, NULL, 10) != (unsigned long)getpid ())
log_error ("environment variable LISTEN_PID (%lu) does not match"
- " our pid (%lu) in --supervised mode (ignoring)\n",
+ " our pid (%lu) in --deprecated-supervised mode (ignoring)\n",
(unsigned long)strtoul (envvar, NULL, 10),
(unsigned long)getpid ());
@@ -747,21 +747,23 @@ map_supervised_sockets (gnupg_fd_t *r_fd,
fd_count = atoi (envvar);
else if (fdnames)
{
- log_error ("no LISTEN_FDS environment variable found in --supervised"
+ log_error ("no LISTEN_FDS environment variable found in"
+ " --deprecated-supervised"
" mode (relying on LISTEN_FDNAMES instead)\n");
fd_count = nfdnames;
}
else
{
log_error ("no LISTEN_FDS or LISTEN_FDNAMES environment variables "
- "found in --supervised mode"
+ "found in --deprecated-supervised mode"
" (assuming 1 active descriptor)\n");
fd_count = 1;
}
if (fd_count < 1)
{
- log_error ("--supervised mode expects at least one file descriptor"
+ log_error ("--deprecated-supervised mode expects at least"
+ " one file descriptor"
" (was told %d, carrying on as though it were 1)\n",
fd_count);
fd_count = 1;
@@ -774,11 +776,12 @@ map_supervised_sockets (gnupg_fd_t *r_fd,
if (fd_count != 1)
log_error ("no LISTEN_FDNAMES and LISTEN_FDS (%d) != 1"
- " in --supervised mode."
+ " in --deprecated-supervised mode."
" (ignoring all sockets but the first one)\n",
fd_count);
if (fstat (3, &statbuf) == -1 && errno ==EBADF)
- log_fatal ("file descriptor 3 must be valid in --supervised mode"
+ log_fatal ("file descriptor 3 must be valid in"
+ " --depreacted-supervised mode"
" if LISTEN_FDNAMES is not set\n");
*r_fd = 3;
socket_name = gnupg_get_socket_name (3);
@@ -786,7 +789,7 @@ map_supervised_sockets (gnupg_fd_t *r_fd,
else if (fd_count != nfdnames)
{
log_fatal ("number of items in LISTEN_FDNAMES (%d) does not match "
- "LISTEN_FDS (%d) in --supervised mode\n",
+ "LISTEN_FDS (%d) in --deprecated-supervised mode\n",
nfdnames, fd_count);
}
else