mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
w32: Support Unicode also for config files etc.
* common/sysutils.c (gnupg_fopen) [W32]: Use _wfopen if needed. Use new function in most places where fopen is used. -- The config files in 2.2 are still read using fopen - we need to change this to allow Unicode directory names. There is also one case where files are written using the old fopen. The new option parser in 2.3 does not have this problem but at some places fopen is also still used. GnuPG-bug-id: 5098 Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
9188a3c6b7
commit
163e4ff195
@ -1154,7 +1154,7 @@ main (int argc, char **argv )
|
||||
if (configname)
|
||||
{
|
||||
configlineno = 0;
|
||||
configfp = fopen (configname, "r");
|
||||
configfp = gnupg_fopen (configname, "r");
|
||||
if (!configfp)
|
||||
{
|
||||
if (default_config)
|
||||
@ -2026,7 +2026,7 @@ reread_configuration (void)
|
||||
if (!config_filename)
|
||||
return; /* No config file. */
|
||||
|
||||
fp = fopen (config_filename, "r");
|
||||
fp = gnupg_fopen (config_filename, "r");
|
||||
if (!fp)
|
||||
{
|
||||
log_info (_("option file '%s': %s\n"),
|
||||
|
@ -275,7 +275,7 @@ read_file (const char *fname, size_t *r_length)
|
||||
{
|
||||
struct stat st;
|
||||
|
||||
fp = fopen (fname, "rb");
|
||||
fp = gnupg_fopen (fname, "rb");
|
||||
if (!fp)
|
||||
{
|
||||
log_error ("can't open '%s': %s\n", fname, strerror (errno));
|
||||
|
@ -1219,6 +1219,55 @@ gnupg_stat (const char *name, struct stat *statbuf)
|
||||
#endif /*HAVE_STAT*/
|
||||
|
||||
|
||||
/* Wrapper around fopen for the cases where we have not yet switched
|
||||
* to es_fopen. Note that for convenience the prototype is in util.h */
|
||||
FILE *
|
||||
gnupg_fopen (const char *fname, const char *mode)
|
||||
{
|
||||
#ifdef HAVE_W32_SYSTEM
|
||||
if (any8bitchar (fname))
|
||||
{
|
||||
wchar_t *wfname;
|
||||
const wchar_t *wmode;
|
||||
wchar_t *wmodebuf = NULL;
|
||||
FILE *ret;
|
||||
|
||||
wfname = utf8_to_wchar (fname);
|
||||
if (!wfname)
|
||||
return NULL;
|
||||
if (!strcmp (mode, "r"))
|
||||
wmode = L"r";
|
||||
else if (!strcmp (mode, "rb"))
|
||||
wmode = L"rb";
|
||||
else if (!strcmp (mode, "w"))
|
||||
wmode = L"w";
|
||||
else if (!strcmp (mode, "wb"))
|
||||
wmode = L"wb";
|
||||
else
|
||||
{
|
||||
wmodebuf = utf8_to_wchar (mode);
|
||||
if (!wmodebuf)
|
||||
{
|
||||
xfree (wfname);
|
||||
return NULL;
|
||||
}
|
||||
wmode = wmodebuf;
|
||||
}
|
||||
ret = _wfopen (wfname, wmode);
|
||||
xfree (wfname);
|
||||
xfree (wmodebuf);
|
||||
return ret;
|
||||
}
|
||||
else
|
||||
return fopen (fname, mode);
|
||||
|
||||
#else /*Unix*/
|
||||
return fopen (fname, mode);
|
||||
#endif /*Unix*/
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* A wrapper around open to handle Unicode file names under Windows. */
|
||||
int
|
||||
gnupg_open (const char *name, int flags, unsigned int mode)
|
||||
|
@ -142,7 +142,6 @@ ssize_t read_line (FILE *fp,
|
||||
char **addr_of_buffer, size_t *length_of_buffer,
|
||||
size_t *max_length);
|
||||
|
||||
|
||||
/*-- b64enc.c and b64dec.c --*/
|
||||
struct b64state
|
||||
{
|
||||
@ -287,6 +286,9 @@ char *gnupg_get_help_string (const char *key, int only_current_locale);
|
||||
/*-- localename.c --*/
|
||||
const char *gnupg_messages_locale_name (void);
|
||||
|
||||
/*-- sysutils.c --*/
|
||||
FILE *gnupg_fopen (const char *fname, const char *mode);
|
||||
|
||||
/*-- miscellaneous.c --*/
|
||||
|
||||
/* This function is called at startup to tell libgcrypt to use our own
|
||||
|
@ -468,7 +468,7 @@ read_pem_certificate (const char *fname, unsigned char **rbuf, size_t *rbuflen)
|
||||
|
||||
init_asctobin ();
|
||||
|
||||
fp = fname? fopen (fname, "r") : stdin;
|
||||
fp = fname? gnupg_fopen (fname, "r") : stdin;
|
||||
if (!fp)
|
||||
return gpg_error_from_errno (errno);
|
||||
|
||||
@ -629,7 +629,7 @@ read_certificate (const char *fname, unsigned char **rbuf, size_t *rbuflen)
|
||||
return 0;
|
||||
}
|
||||
|
||||
fp = fname? fopen (fname, "rb") : stdin;
|
||||
fp = fname? gnupg_fopen (fname, "rb") : stdin;
|
||||
if (!fp)
|
||||
return gpg_error_from_errno (errno);
|
||||
|
||||
|
@ -947,7 +947,7 @@ main (int argc, char **argv)
|
||||
if (configname)
|
||||
{
|
||||
configlineno = 0;
|
||||
configfp = fopen (configname, "r");
|
||||
configfp = gnupg_fopen (configname, "r");
|
||||
if (!configfp)
|
||||
{
|
||||
if (default_config)
|
||||
@ -1840,7 +1840,7 @@ reread_configuration (void)
|
||||
if (!opt.config_filename)
|
||||
return; /* No config file. */
|
||||
|
||||
fp = fopen (opt.config_filename, "r");
|
||||
fp = gnupg_fopen (opt.config_filename, "r");
|
||||
if (!fp)
|
||||
{
|
||||
log_error (_("option file '%s': %s\n"),
|
||||
|
@ -539,7 +539,7 @@ exec_write(struct exec_info **info,const char *program,
|
||||
gpg_err_set_errno (EPERM);
|
||||
}
|
||||
else
|
||||
(*info)->tochild=fopen((*info)->tempfile_in,binary?"wb":"w");
|
||||
(*info)->tochild = gnupg_fopen ((*info)->tempfile_in,binary?"wb":"w");
|
||||
if((*info)->tochild==NULL)
|
||||
{
|
||||
ret = gpg_error_from_syserror ();
|
||||
|
@ -2536,7 +2536,7 @@ main (int argc, char **argv)
|
||||
}
|
||||
|
||||
configlineno = 0;
|
||||
configfp = fopen( configname, "r" );
|
||||
configfp = gnupg_fopen( configname, "r" );
|
||||
if (configfp && is_secured_file (fileno (configfp)))
|
||||
{
|
||||
fclose (configfp);
|
||||
|
@ -504,7 +504,7 @@ rt_from_file (const char *filename, int *r_found, int *r_openpgp)
|
||||
KeydbResourceType rt = KEYDB_RESOURCE_TYPE_NONE;
|
||||
|
||||
*r_found = *r_openpgp = 0;
|
||||
fp = fopen (filename, "rb");
|
||||
fp = gnupg_fopen (filename, "rb");
|
||||
if (fp)
|
||||
{
|
||||
*r_found = 1;
|
||||
|
@ -185,7 +185,7 @@ get_output_file (const byte *embedded_name, int embedded_namelen,
|
||||
want to port it again to riscos we should do most of the suff
|
||||
in estream. FIXME: Consider to remove all riscos special
|
||||
cases. */
|
||||
fp = fopen (fname, "wb");
|
||||
fp = gnupg_fopen (fname, "wb");
|
||||
if (!fp)
|
||||
{
|
||||
log_error (_("error creating '%s': %s\n"), fname, gpg_strerror (err));
|
||||
|
@ -325,7 +325,7 @@ main ( int argc, char **argv)
|
||||
if (configname)
|
||||
{
|
||||
configlineno = 0;
|
||||
configfp = fopen (configname, "r");
|
||||
configfp = gnupg_fopen (configname, "r");
|
||||
if (!configfp)
|
||||
{
|
||||
if (default_config)
|
||||
|
@ -454,7 +454,7 @@ main ( int argc, char **argv)
|
||||
if (configname)
|
||||
{
|
||||
configlineno = 0;
|
||||
configfp = fopen (configname, "r");
|
||||
configfp = gnupg_fopen (configname, "r");
|
||||
if (!configfp)
|
||||
{
|
||||
if (default_config)
|
||||
|
@ -272,7 +272,7 @@ read_file (const char *fname, size_t *r_length)
|
||||
{
|
||||
struct stat st;
|
||||
|
||||
fp = fopen (fname, "rb");
|
||||
fp = gnupg_fopen (fname, "rb");
|
||||
if (!fp)
|
||||
{
|
||||
log_error ("can't open '%s': %s\n", fname, strerror (errno));
|
||||
|
@ -524,7 +524,7 @@ main (int argc, char **argv )
|
||||
if (configname)
|
||||
{
|
||||
configlineno = 0;
|
||||
configfp = fopen (configname, "r");
|
||||
configfp = gnupg_fopen (configname, "r");
|
||||
if (!configfp)
|
||||
{
|
||||
if (default_config)
|
||||
|
@ -1037,7 +1037,7 @@ main ( int argc, char **argv)
|
||||
next_pass:
|
||||
if (configname) {
|
||||
configlineno = 0;
|
||||
configfp = fopen (configname, "r");
|
||||
configfp = gnupg_fopen (configname, "r");
|
||||
if (!configfp)
|
||||
{
|
||||
if (default_config)
|
||||
|
@ -2565,7 +2565,7 @@ main (int argc, char **argv)
|
||||
gcry_control (GCRYCTL_DISABLE_SECMEM, NULL);
|
||||
gcry_control (GCRYCTL_INITIALIZATION_FINISHED, NULL);
|
||||
|
||||
fp = fopen (argv[1], "rb");
|
||||
fp = gnupg_fopen (argv[1], "rb");
|
||||
if (!fp)
|
||||
{
|
||||
fprintf (stderr, "can't open '%s': %s\n", argv[1], strerror (errno));
|
||||
|
@ -1967,7 +1967,7 @@ handle_inquire (assuan_context_t ctx, char *line)
|
||||
}
|
||||
else
|
||||
{
|
||||
fp = fopen (d->file, "rb");
|
||||
fp = gnupg_fopen (d->file, "rb");
|
||||
if (!fp)
|
||||
log_error ("error opening '%s': %s\n", d->file, strerror (errno));
|
||||
else if (opt.verbose)
|
||||
|
@ -796,7 +796,7 @@ main (int argc, char **argv)
|
||||
|
||||
if (argc && strcmp (*argv, "-"))
|
||||
{
|
||||
FILE *fp = fopen (*argv, "rb");
|
||||
FILE *fp = gnupg_fopen (*argv, "rb");
|
||||
if (!fp)
|
||||
die ("can't open '%s': %s", *argv, strerror (errno));
|
||||
parse_message (fp);
|
||||
|
@ -552,7 +552,7 @@ write_part (FILE *fpin, unsigned long pktlen,
|
||||
{
|
||||
if (opt_verbose)
|
||||
log_info ("writing '%s'\n", outname);
|
||||
fpout = fopen (outname, "wb");
|
||||
fpout = gnupg_fopen (outname, "wb");
|
||||
if (!fpout)
|
||||
{
|
||||
log_error ("error creating '%s': %s\n", outname, strerror(errno));
|
||||
@ -873,7 +873,7 @@ split_packets (const char *fname)
|
||||
fp = stdin;
|
||||
fname = "-";
|
||||
}
|
||||
else if ( !(fp = fopen (fname,"rb")) )
|
||||
else if ( !(fp = gnupg_fopen (fname,"rb")) )
|
||||
{
|
||||
log_error ("can't open '%s': %s\n", fname, strerror (errno));
|
||||
return;
|
||||
|
@ -363,7 +363,7 @@ confucius_copy_file (char *infile, char *outfile, int plain)
|
||||
}
|
||||
else
|
||||
{
|
||||
in = fopen (infile, "rb");
|
||||
in = gnupg_fopen (infile, "rb");
|
||||
if (!in)
|
||||
{
|
||||
log_error (_("could not open %s for writing: %s\n"),
|
||||
@ -380,7 +380,7 @@ confucius_copy_file (char *infile, char *outfile, int plain)
|
||||
}
|
||||
else
|
||||
{
|
||||
out = fopen (outfile, "wb");
|
||||
out = gnupg_fopen (outfile, "wb");
|
||||
if (!out)
|
||||
{
|
||||
log_error (_("could not open %s for writing: %s\n"),
|
||||
@ -936,7 +936,7 @@ main (int argc, char **argv)
|
||||
if (configname)
|
||||
{
|
||||
configlineno = 0;
|
||||
configfp = fopen (configname, "r");
|
||||
configfp = gnupg_fopen (configname, "r");
|
||||
if (!configfp)
|
||||
{
|
||||
if (!default_config)
|
||||
|
Loading…
x
Reference in New Issue
Block a user