Allow the native W32 version to properly work with sockets.
This commit is contained in:
parent
75116f9dab
commit
dbcce0df8f
@ -1,3 +1,7 @@
|
|||||||
|
2010-01-22 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
|
* autogen.sh (--build-w32): Add --with-libassuan-prefix.
|
||||||
|
|
||||||
2010-01-11 Marcus Brinkmann <marcus@g10code.de>
|
2010-01-11 Marcus Brinkmann <marcus@g10code.de>
|
||||||
|
|
||||||
Release 1.3.0.
|
Release 1.3.0.
|
||||||
|
@ -81,6 +81,7 @@ if test "$1" = "--build-w32"; then
|
|||||||
./configure --enable-maintainer-mode --prefix=${w32root} \
|
./configure --enable-maintainer-mode --prefix=${w32root} \
|
||||||
--host=i586-mingw32msvc --build=${build} \
|
--host=i586-mingw32msvc --build=${build} \
|
||||||
--with-gpg-error-prefix=${w32root} \
|
--with-gpg-error-prefix=${w32root} \
|
||||||
|
--with-libassuan-prefix=${w32root} \
|
||||||
--enable-shared --enable-static --enable-w32-glib \
|
--enable-shared --enable-static --enable-w32-glib \
|
||||||
PKG_CONFIG_LIBDIR="$w32root/lib/pkgconfig"
|
PKG_CONFIG_LIBDIR="$w32root/lib/pkgconfig"
|
||||||
|
|
||||||
@ -162,3 +163,4 @@ $AUTOCONF${FORCE}
|
|||||||
echo "You may now run:
|
echo "You may now run:
|
||||||
./configure --enable-maintainer-mode && make
|
./configure --enable-maintainer-mode && make
|
||||||
"
|
"
|
||||||
|
|
||||||
|
@ -3746,7 +3746,7 @@ useful in a server application (where passphrases are not required
|
|||||||
anyway).
|
anyway).
|
||||||
|
|
||||||
Note that old @code{gpg} engines (before version 2.0.15) do not support
|
Note that old @code{gpg} engines (before version 2.0.15) do not support
|
||||||
this comamnd and will silently ignore it.
|
this command and will silently ignore it.
|
||||||
@end deftypefun
|
@end deftypefun
|
||||||
|
|
||||||
@deftypefun gpgme_error_t gpgme_op_passwd_start @
|
@deftypefun gpgme_error_t gpgme_op_passwd_start @
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
2010-01-25 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
|
* w32-io.c (_gpgme_io_connect): Fix return code check to make it work.
|
||||||
|
|
||||||
|
* version.c (do_subsystem_inits): Remove superfluous second
|
||||||
|
WSAStartup.
|
||||||
|
|
||||||
|
2010-01-22 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
|
* w32-io.c (writer): Try to use send first.
|
||||||
|
(reader): Try to use recv first.
|
||||||
|
|
||||||
2010-01-08 Werner Koch <wk@g10code.com>
|
2010-01-08 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
* engine-gpg.c (gpg_passwd): New.
|
* engine-gpg.c (gpg_passwd): New.
|
||||||
|
@ -65,6 +65,7 @@ do_subsystem_inits (void)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
#ifdef HAVE_W32_SYSTEM
|
#ifdef HAVE_W32_SYSTEM
|
||||||
|
/* We need to make sure that the sockets are initialized. */
|
||||||
{
|
{
|
||||||
WSADATA wsadat;
|
WSADATA wsadat;
|
||||||
|
|
||||||
@ -75,14 +76,6 @@ do_subsystem_inits (void)
|
|||||||
_gpgme_sema_subsystem_init ();
|
_gpgme_sema_subsystem_init ();
|
||||||
_gpgme_debug_subsystem_init ();
|
_gpgme_debug_subsystem_init ();
|
||||||
_gpgme_io_subsystem_init ();
|
_gpgme_io_subsystem_init ();
|
||||||
#if defined(HAVE_W32_SYSTEM) && defined(HAVE_ASSUAN_H)
|
|
||||||
/* We need to make sure that the sockets are initialized. */
|
|
||||||
{
|
|
||||||
WSADATA wsadat;
|
|
||||||
|
|
||||||
WSAStartup (0x202, &wsadat);
|
|
||||||
}
|
|
||||||
#endif /*HAVE_W32_SYSTEM && HAVE_ASSUAN_H*/
|
|
||||||
|
|
||||||
done = 1;
|
done = 1;
|
||||||
}
|
}
|
||||||
|
59
src/w32-io.c
59
src/w32-io.c
@ -49,6 +49,7 @@
|
|||||||
#define handle_to_fd(a) ((int)(a))
|
#define handle_to_fd(a) ((int)(a))
|
||||||
#define pid_to_handle(a) ((HANDLE)(a))
|
#define pid_to_handle(a) ((HANDLE)(a))
|
||||||
#define handle_to_pid(a) ((int)(a))
|
#define handle_to_pid(a) ((int)(a))
|
||||||
|
#define handle_to_socket(a) ((unsigned int)(a))
|
||||||
|
|
||||||
#define READBUF_SIZE 4096
|
#define READBUF_SIZE 4096
|
||||||
#define WRITEBUF_SIZE 4096
|
#define WRITEBUF_SIZE 4096
|
||||||
@ -180,6 +181,7 @@ reader (void *arg)
|
|||||||
struct reader_context_s *ctx = arg;
|
struct reader_context_s *ctx = arg;
|
||||||
int nbytes;
|
int nbytes;
|
||||||
DWORD nread;
|
DWORD nread;
|
||||||
|
int try_recv = 1;
|
||||||
TRACE_BEG1 (DEBUG_SYSIO, "gpgme:reader", ctx->file_hd,
|
TRACE_BEG1 (DEBUG_SYSIO, "gpgme:reader", ctx->file_hd,
|
||||||
"thread=%p", ctx->thread_hd);
|
"thread=%p", ctx->thread_hd);
|
||||||
|
|
||||||
@ -211,6 +213,36 @@ reader (void *arg)
|
|||||||
UNLOCK (ctx->mutex);
|
UNLOCK (ctx->mutex);
|
||||||
|
|
||||||
TRACE_LOG1 ("reading %d bytes", nbytes);
|
TRACE_LOG1 ("reading %d bytes", nbytes);
|
||||||
|
|
||||||
|
if (try_recv)
|
||||||
|
{
|
||||||
|
int n;
|
||||||
|
|
||||||
|
n = recv (handle_to_socket (ctx->file_hd),
|
||||||
|
ctx->buffer + ctx->writepos, nbytes, 0);
|
||||||
|
if (n < 0 && WSAGetLastError () == WSAENOTSOCK)
|
||||||
|
try_recv = 0;
|
||||||
|
else if (n < 0)
|
||||||
|
{
|
||||||
|
ctx->error_code = (int) WSAGetLastError ();
|
||||||
|
if (ctx->error_code == ERROR_BROKEN_PIPE)
|
||||||
|
{
|
||||||
|
ctx->eof = 1;
|
||||||
|
TRACE_LOG ("got EOF (broken connection)");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ctx->error = 1;
|
||||||
|
TRACE_LOG1 ("recv error: ec=%d", ctx->error_code);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
nread = n;
|
||||||
|
|
||||||
|
}
|
||||||
|
if (!try_recv)
|
||||||
|
{
|
||||||
if (!ReadFile (ctx->file_hd,
|
if (!ReadFile (ctx->file_hd,
|
||||||
ctx->buffer + ctx->writepos, nbytes, &nread, NULL))
|
ctx->buffer + ctx->writepos, nbytes, &nread, NULL))
|
||||||
{
|
{
|
||||||
@ -227,6 +259,7 @@ reader (void *arg)
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if (!nread)
|
if (!nread)
|
||||||
{
|
{
|
||||||
ctx->eof = 1;
|
ctx->eof = 1;
|
||||||
@ -507,6 +540,7 @@ writer (void *arg)
|
|||||||
{
|
{
|
||||||
struct writer_context_s *ctx = arg;
|
struct writer_context_s *ctx = arg;
|
||||||
DWORD nwritten;
|
DWORD nwritten;
|
||||||
|
int try_send = 1;
|
||||||
TRACE_BEG1 (DEBUG_SYSIO, "gpgme:writer", ctx->file_hd,
|
TRACE_BEG1 (DEBUG_SYSIO, "gpgme:writer", ctx->file_hd,
|
||||||
"thread=%p", ctx->thread_hd);
|
"thread=%p", ctx->thread_hd);
|
||||||
|
|
||||||
@ -541,6 +575,28 @@ writer (void *arg)
|
|||||||
/* Note that CTX->nbytes is not zero at this point, because
|
/* Note that CTX->nbytes is not zero at this point, because
|
||||||
_gpgme_io_write always writes at least 1 byte before waking
|
_gpgme_io_write always writes at least 1 byte before waking
|
||||||
us up, unless CTX->stop_me is true, which we catch above. */
|
us up, unless CTX->stop_me is true, which we catch above. */
|
||||||
|
if (try_send)
|
||||||
|
{
|
||||||
|
/* We need to try send first because a socket handle can't
|
||||||
|
be used with WriteFile. */
|
||||||
|
int n;
|
||||||
|
|
||||||
|
n = send (handle_to_socket (ctx->file_hd),
|
||||||
|
ctx->buffer, ctx->nbytes, 0);
|
||||||
|
if (n < 0 && WSAGetLastError () == WSAENOTSOCK)
|
||||||
|
try_send = 0;
|
||||||
|
else if (n < 0)
|
||||||
|
{
|
||||||
|
ctx->error_code = (int) WSAGetLastError ();
|
||||||
|
ctx->error = 1;
|
||||||
|
TRACE_LOG1 ("send error: ec=%d", ctx->error_code);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
nwritten = n;
|
||||||
|
}
|
||||||
|
if (!try_send)
|
||||||
|
{
|
||||||
if (!WriteFile (ctx->file_hd, ctx->buffer,
|
if (!WriteFile (ctx->file_hd, ctx->buffer,
|
||||||
ctx->nbytes, &nwritten, NULL))
|
ctx->nbytes, &nwritten, NULL))
|
||||||
{
|
{
|
||||||
@ -549,6 +605,7 @@ writer (void *arg)
|
|||||||
TRACE_LOG1 ("write error: ec=%d", ctx->error_code);
|
TRACE_LOG1 ("write error: ec=%d", ctx->error_code);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
TRACE_LOG1 ("wrote %d bytes", (int) nwritten);
|
TRACE_LOG1 ("wrote %d bytes", (int) nwritten);
|
||||||
|
|
||||||
LOCK (ctx->mutex);
|
LOCK (ctx->mutex);
|
||||||
@ -1563,7 +1620,7 @@ _gpgme_io_connect (int fd, struct sockaddr *addr, int addrlen)
|
|||||||
"addr=%p, addrlen=%i", addr, addrlen);
|
"addr=%p, addrlen=%i", addr, addrlen);
|
||||||
|
|
||||||
res = connect (fd, addr, addrlen);
|
res = connect (fd, addr, addrlen);
|
||||||
if (!res)
|
if (res)
|
||||||
{
|
{
|
||||||
errno = wsa2errno (WSAGetLastError ());
|
errno = wsa2errno (WSAGetLastError ());
|
||||||
return TRACE_SYSRES (-1);
|
return TRACE_SYSRES (-1);
|
||||||
|
Loading…
Reference in New Issue
Block a user