2007-06-14 19:05:07 +02:00
|
|
|
/* init.c - Various initializations
|
|
|
|
* Copyright (C) 2007 Free Software Foundation, Inc.
|
|
|
|
*
|
|
|
|
* This file is part of GnuPG.
|
|
|
|
*
|
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-07-04 21:49:40 +02:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2007-06-14 19:05:07 +02:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GnuPG is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2007-07-04 21:49:40 +02:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2007-06-14 19:05:07 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#ifdef WITHOUT_GNU_PTH /* Give the Makefile a chance to build without Pth. */
|
|
|
|
#undef HAVE_PTH
|
|
|
|
#undef USE_GNU_PTH
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_W32_SYSTEM
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
2011-02-04 12:57:53 +01:00
|
|
|
#ifdef HAVE_PTH
|
2007-06-14 19:05:07 +02:00
|
|
|
#include <pth.h>
|
|
|
|
#endif
|
2010-04-14 16:39:16 +02:00
|
|
|
#ifdef HAVE_W32CE_SYSTEM
|
|
|
|
# include <assuan.h> /* For _assuan_w32ce_finish_pipe. */
|
|
|
|
#endif
|
2007-06-14 19:05:07 +02:00
|
|
|
|
|
|
|
#include "util.h"
|
|
|
|
|
2010-04-14 16:39:16 +02:00
|
|
|
|
2010-03-22 13:46:05 +01:00
|
|
|
#ifdef HAVE_W32CE_SYSTEM
|
|
|
|
static void parse_std_file_handles (int *argcp, char ***argvp);
|
2010-03-29 14:57:11 +02:00
|
|
|
static void
|
|
|
|
sleep_on_exit (void)
|
|
|
|
{
|
|
|
|
/* The sshd on CE swallows some of the command output. Sleeping a
|
|
|
|
while usually helps. */
|
|
|
|
Sleep (400);
|
|
|
|
}
|
2010-03-22 13:46:05 +01:00
|
|
|
#endif /*HAVE_W32CE_SYSTEM*/
|
|
|
|
|
2007-06-14 19:05:07 +02:00
|
|
|
|
2010-05-30 14:06:38 +02:00
|
|
|
/* If STRING is not NULL write string to es_stdout or es_stderr. MODE
|
|
|
|
must be 1 or 2. If STRING is NULL flush the respective stream. */
|
|
|
|
static int
|
|
|
|
writestring_via_estream (int mode, const char *string)
|
|
|
|
{
|
|
|
|
if (mode == 1 || mode == 2)
|
|
|
|
{
|
|
|
|
if (string)
|
|
|
|
return es_fputs (string, mode == 1? es_stdout : es_stderr);
|
|
|
|
else
|
|
|
|
return es_fflush (mode == 1? es_stdout : es_stderr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-06-14 19:05:07 +02:00
|
|
|
/* This function is to be used early at program startup to make sure
|
2007-07-04 21:49:40 +02:00
|
|
|
that some subsystems are initialized. This is in particular
|
2007-06-14 19:05:07 +02:00
|
|
|
important for W32 to initialize the sockets so that our socket
|
|
|
|
emulation code used directly as well as in libassuan may be used.
|
|
|
|
It should best be called before any I/O is done so that setup
|
2010-03-22 13:46:05 +01:00
|
|
|
required for logging is ready. ARGCP and ARGVP are the addresses
|
|
|
|
of the parameters given to main. This function may modify them.
|
|
|
|
|
|
|
|
CAUTION: This might be called while running suid(root). */
|
2007-06-14 19:05:07 +02:00
|
|
|
void
|
2010-03-22 13:46:05 +01:00
|
|
|
init_common_subsystems (int *argcp, char ***argvp)
|
2007-06-14 19:05:07 +02:00
|
|
|
{
|
|
|
|
/* Try to auto set the character set. */
|
2011-02-04 12:57:53 +01:00
|
|
|
set_native_charset (NULL);
|
2007-06-14 19:05:07 +02:00
|
|
|
|
|
|
|
#ifdef HAVE_W32_SYSTEM
|
2007-07-04 21:49:40 +02:00
|
|
|
/* For W32 we need to initialize the socket layer. This is because
|
2007-06-14 19:05:07 +02:00
|
|
|
we use recv and send in libassuan as well as at some other
|
|
|
|
places. If we are building with PTH we let pth_init do it. We
|
|
|
|
can't do much on error so we ignore them. An error would anyway
|
|
|
|
later pop up if one of the socket functions is used. */
|
|
|
|
# ifdef HAVE_PTH
|
|
|
|
pth_init ();
|
|
|
|
# else
|
2010-04-26 13:53:14 +02:00
|
|
|
{
|
|
|
|
WSADATA wsadat;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
2010-04-26 13:53:14 +02:00
|
|
|
WSAStartup (0x202, &wsadat);
|
|
|
|
}
|
2007-06-14 19:05:07 +02:00
|
|
|
# endif /*!HAVE_PTH*/
|
|
|
|
#endif
|
2011-02-04 12:57:53 +01:00
|
|
|
|
2010-04-26 13:53:14 +02:00
|
|
|
#ifdef HAVE_W32CE_SYSTEM
|
|
|
|
/* Register the sleep exit function before the estream init so that
|
|
|
|
the sleep will be called after the estream registered atexit
|
|
|
|
function which flushes the left open estream streams and in
|
|
|
|
particular es_stdout. */
|
|
|
|
atexit (sleep_on_exit);
|
|
|
|
#endif
|
2007-06-14 19:05:07 +02:00
|
|
|
|
|
|
|
/* Initialize the Estream library. */
|
|
|
|
es_init ();
|
2010-03-22 13:46:05 +01:00
|
|
|
|
|
|
|
/* Special hack for Windows CE: We extract some options from arg
|
|
|
|
to setup the standard handles. */
|
|
|
|
#ifdef HAVE_W32CE_SYSTEM
|
|
|
|
parse_std_file_handles (argcp, argvp);
|
|
|
|
#else
|
|
|
|
(void)argcp;
|
|
|
|
(void)argvp;
|
|
|
|
#endif
|
2010-05-30 14:06:38 +02:00
|
|
|
|
2010-08-23 21:26:05 +02:00
|
|
|
/* Access the standard estreams as early as possible. If we don't
|
|
|
|
do this the original stdio streams may have been closed when
|
|
|
|
_es_get_std_stream is first use and in turn it would connect to
|
|
|
|
the bit bucket. */
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i=0; i < 3; i++)
|
|
|
|
(void)_es_get_std_stream (i);
|
|
|
|
}
|
|
|
|
|
2010-05-30 14:06:38 +02:00
|
|
|
/* --version et al shall use estream as well. */
|
|
|
|
argparse_register_outfnc (writestring_via_estream);
|
2007-06-14 19:05:07 +02:00
|
|
|
}
|
|
|
|
|
2010-03-22 13:46:05 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* WindowsCE uses a very strange way of handling the standard streams.
|
|
|
|
There is a function SetStdioPath to associate a standard stream
|
|
|
|
with a file or a device but what we really want is to use pipes as
|
|
|
|
standard streams. Despite that we implement pipes using a device,
|
|
|
|
we would have some limitations on the number of open pipes due to
|
|
|
|
the 3 character limit of device file name. Thus we don't take this
|
|
|
|
path. Another option would be to install a file system driver with
|
|
|
|
support for pipes; this would allow us to get rid of the device
|
|
|
|
name length limitation. However, with GnuPG we can get away be
|
|
|
|
redefining the standard streams and passing the handles to be used
|
|
|
|
on the command line. This has also the advantage that it makes
|
|
|
|
creating a process much easier and does not require the
|
|
|
|
SetStdioPath set and restore game. The caller needs to pass the
|
|
|
|
rendezvous ids using up to three options:
|
|
|
|
|
2010-03-24 13:15:30 +01:00
|
|
|
-&S0=<rvid> -&S1=<rvid> -&S2=<rvid>
|
2010-03-22 13:46:05 +01:00
|
|
|
|
|
|
|
They are all optional but they must be the first arguments on the
|
|
|
|
command line. Parsing stops as soon as an invalid option is found.
|
|
|
|
These rendezvous ids are then used to finish the pipe creation.*/
|
|
|
|
#ifdef HAVE_W32CE_SYSTEM
|
|
|
|
static void
|
|
|
|
parse_std_file_handles (int *argcp, char ***argvp)
|
|
|
|
{
|
|
|
|
int argc = *argcp;
|
|
|
|
char **argv = *argvp;
|
|
|
|
const char *s;
|
|
|
|
assuan_fd_t fd;
|
|
|
|
int i;
|
|
|
|
int fixup = 0;
|
|
|
|
|
|
|
|
if (!argc)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (argc--, argv++; argc; argc--, argv++)
|
|
|
|
{
|
|
|
|
s = *argv;
|
|
|
|
if (*s == '-' && s[1] == '&' && s[2] == 'S'
|
|
|
|
&& (s[3] == '0' || s[3] == '1' || s[3] == '2')
|
2011-02-04 12:57:53 +01:00
|
|
|
&& s[4] == '='
|
2010-03-22 13:46:05 +01:00
|
|
|
&& (strchr ("-01234567890", s[5]) || !strcmp (s+5, "null")))
|
|
|
|
{
|
|
|
|
if (s[5] == 'n')
|
|
|
|
fd = ASSUAN_INVALID_FD;
|
|
|
|
else
|
|
|
|
fd = _assuan_w32ce_finish_pipe (atoi (s+5), s[3] != '0');
|
|
|
|
_es_set_std_fd (s[3] - '0', (int)fd);
|
|
|
|
fixup++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fixup)
|
|
|
|
{
|
|
|
|
argc = *argcp;
|
|
|
|
argc -= fixup;
|
|
|
|
*argcp = argc;
|
|
|
|
|
|
|
|
argv = *argvp;
|
|
|
|
for (i=1; i < argc; i++)
|
|
|
|
argv[i] = argv[i + fixup];
|
|
|
|
for (; i < argc + fixup; i++)
|
|
|
|
argv[i] = NULL;
|
|
|
|
}
|
|
|
|
|
2011-02-04 12:57:53 +01:00
|
|
|
|
2010-03-22 13:46:05 +01:00
|
|
|
}
|
|
|
|
#endif /*HAVE_W32CE_SYSTEM*/
|