Pedro Monreal Gonzalez
0b19f2992d
- GnuPG 2.3.1: * The new configuration file common.conf is now used to enable the use of the key database daemon with "use-keyboxd". Using this option in gpg.conf and gpgsm.conf is supported for a transitional period. See doc/example/common.conf for more. * gpg: Force version 5 key creation for ed448 and cv448 algorithms. * gpg: By default do not use the self-sigs-only option when importing from an LDAP keyserver. * gpg: Lookup a missing public key of the active card via LDAP. * gpgsm: New command --show-certs. * scd: Fix CCID driver for SCM SPR332/SPR532. * scd: Further improvements for PKCS#15 cards. * New configure option --with-tss to allow the selection of the TSS library. - Rebase patches: * gnupg-add_legacy_FIPS_mode_option.patch * gnupg-allow-import-of-previously-known-keys-even-without-UIDs.patch * gnupg-dont-fail-with-seahorse-agent.patch * gnupg-set_umask_before_open_outfile.patch - GnuPG 2.3.0: * A new experimental key database daemon is provided. To enable it put "use-keyboxd" into gpg.conf and gpgsm.conf. Keys are stored in a SQLite database and make key lookup much faster. * New tool gpg-card as a flexible frontend for all types of supported smartcards. * New option --chuid for gpg, gpgsm, gpgconf, gpg-card, and gpg-connect-agent. * The gpg-wks-client tool is now installed under bin; a wrapper for its old location at libexec is also installed. OBS-URL: https://build.opensuse.org/request/show/899451 OBS-URL: https://build.opensuse.org/package/show/Base:System/gpg2?expand=0&rev=267
44 lines
1.3 KiB
Diff
44 lines
1.3 KiB
Diff
Index: gnupg-2.3.0/g10/plaintext.c
|
|
===================================================================
|
|
--- gnupg-2.3.0.orig/g10/plaintext.c
|
|
+++ gnupg-2.3.0/g10/plaintext.c
|
|
@@ -24,6 +24,7 @@
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <sys/types.h>
|
|
+#include <sys/stat.h>
|
|
#ifdef HAVE_DOSISH_SYSTEM
|
|
# include <fcntl.h> /* for setmode() */
|
|
#endif
|
|
@@ -38,6 +39,9 @@
|
|
#include "../common/status.h"
|
|
#include "../common/i18n.h"
|
|
|
|
+/* define safe permissions for creating plaintext files */
|
|
+#define GPG_SAFE_PERMS (S_IRUSR | S_IWUSR)
|
|
+#define GPG_SAFE_UMASK (0777 & ~GPG_SAFE_PERMS)
|
|
|
|
/* Get the output filename. On success, the actual filename that is
|
|
used is set in *FNAMEP and a filepointer is returned in *FP.
|
|
@@ -161,11 +165,15 @@ get_output_file (const byte *embedded_na
|
|
log_error (_("error creating '%s': %s\n"), fname, gpg_strerror (err));
|
|
goto leave;
|
|
}
|
|
- else if (!(fp = es_fopen (fname, "wb")))
|
|
- {
|
|
- err = gpg_error_from_syserror ();
|
|
- log_error (_("error creating '%s': %s\n"), fname, gpg_strerror (err));
|
|
- goto leave;
|
|
+ else {
|
|
+ mode_t saved_umask = umask(GPG_SAFE_UMASK);
|
|
+ if( !(fp = es_fopen(fname,"wb")) ) {
|
|
+ err = gpg_error_from_syserror ();
|
|
+ log_error(_("error creating `%s': %s\n"), fname, strerror(errno) );
|
|
+ umask(saved_umask);
|
|
+ goto leave;
|
|
+ }
|
|
+ umask(saved_umask);
|
|
}
|
|
|
|
leave:
|