2003-08-20 20:20:46 +00:00
|
|
|
/* ath.c - Thread-safeness library.
|
2018-11-16 12:27:33 +00:00
|
|
|
* Copyright (C) 2002, 2003, 2004 g10 Code GmbH
|
|
|
|
*
|
|
|
|
* This file is part of GPGME.
|
|
|
|
*
|
|
|
|
* GPGME is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU Lesser General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2.1 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GPGME 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this program; if not, see <https://gnu.org/licenses/>.
|
|
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
*/
|
2002-06-02 19:19:25 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2003-08-20 20:20:46 +00:00
|
|
|
#include <assert.h>
|
2010-11-02 16:27:46 +00:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
2021-11-25 02:13:17 +00:00
|
|
|
#ifdef HAVE_POLL_H
|
|
|
|
# include <poll.h>
|
2002-09-20 10:44:22 +00:00
|
|
|
#else
|
2021-11-25 02:13:17 +00:00
|
|
|
# ifdef HAVE_SYS_SELECT_H
|
|
|
|
# include <sys/select.h>
|
|
|
|
# else
|
|
|
|
# ifdef HAVE_SYS_TIME_H
|
|
|
|
# include <sys/time.h>
|
|
|
|
# endif
|
2010-11-02 16:27:46 +00:00
|
|
|
# endif
|
2002-09-20 10:44:22 +00:00
|
|
|
#endif
|
2010-11-03 09:56:27 +00:00
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
|
|
# include <sys/types.h>
|
|
|
|
#endif
|
2005-09-13 14:17:04 +00:00
|
|
|
#ifndef HAVE_W32_SYSTEM
|
2002-06-02 19:19:25 +00:00
|
|
|
#include <sys/wait.h>
|
2005-09-13 14:17:04 +00:00
|
|
|
#endif
|
2002-06-02 19:19:25 +00:00
|
|
|
|
Make definition of off_t robust against misbehaving w32 toolchains.
* configure.ac (NEED__FILE_OFFSET_BITS): Change to define gpgme_off_t
and gpgme_ssize_t.
(API__OFF_T, API__SSIZE_T): New ac_subst.
* src/gpgme.h.in: Replace all ssize_t and off_t by ac_subst macros.
* src/assuan-support.c, src/ath-pthread.c, src/ath.c, src/ath.h
* src/data-compat.c, src/data-fd.c, src/data-mem.c, src/data-stream.c
* src/data-user.c, src/data.c, src/data.h, src/engine-gpgsm.c
* src/engine-uiserver.c, src/gpgme-tool.c, src/gpgme.c: Replace off_t
by gpgme_off_t and sszie_t by gpgme_ssize_t.
* src/ath-pthread.c, src/ath.h: Include gpgme.h.
--
For a detailed description, see the gpgme.texi diff.
2013-04-25 11:00:16 +00:00
|
|
|
#include "gpgme.h"
|
|
|
|
|
2010-11-02 16:27:46 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
typedef int pid_t;
|
|
|
|
#endif
|
|
|
|
|
2002-06-02 19:19:25 +00:00
|
|
|
#include "ath.h"
|
|
|
|
|
|
|
|
|
2009-11-04 18:13:44 +00:00
|
|
|
#ifdef HAVE_W32_SYSTEM
|
|
|
|
#include <windows.h>
|
|
|
|
uintptr_t
|
|
|
|
ath_self (void)
|
|
|
|
{
|
2009-12-08 04:07:57 +00:00
|
|
|
return (uintptr_t) GetCurrentThreadId ();
|
2009-11-04 18:13:44 +00:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
# ifdef __linux
|
|
|
|
#include <sys/syscall.h>
|
|
|
|
uintptr_t
|
|
|
|
ath_self (void)
|
|
|
|
{
|
|
|
|
/* Just to catch users who don't use gpgme-pthread. */
|
2012-03-12 15:37:26 +00:00
|
|
|
return (uintptr_t) syscall (__NR_gettid);
|
2009-11-04 18:13:44 +00:00
|
|
|
}
|
|
|
|
# else
|
|
|
|
uintptr_t
|
|
|
|
ath_self (void)
|
|
|
|
{
|
|
|
|
return (uintptr_t) getpid ();
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
Make definition of off_t robust against misbehaving w32 toolchains.
* configure.ac (NEED__FILE_OFFSET_BITS): Change to define gpgme_off_t
and gpgme_ssize_t.
(API__OFF_T, API__SSIZE_T): New ac_subst.
* src/gpgme.h.in: Replace all ssize_t and off_t by ac_subst macros.
* src/assuan-support.c, src/ath-pthread.c, src/ath.c, src/ath.h
* src/data-compat.c, src/data-fd.c, src/data-mem.c, src/data-stream.c
* src/data-user.c, src/data.c, src/data.h, src/engine-gpgsm.c
* src/engine-uiserver.c, src/gpgme-tool.c, src/gpgme.c: Replace off_t
by gpgme_off_t and sszie_t by gpgme_ssize_t.
* src/ath-pthread.c, src/ath.h: Include gpgme.h.
--
For a detailed description, see the gpgme.texi diff.
2013-04-25 11:00:16 +00:00
|
|
|
gpgme_ssize_t
|
2002-06-02 19:19:25 +00:00
|
|
|
ath_read (int fd, void *buf, size_t nbytes)
|
|
|
|
{
|
2003-08-20 20:20:46 +00:00
|
|
|
return read (fd, buf, nbytes);
|
2002-06-02 19:19:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
Make definition of off_t robust against misbehaving w32 toolchains.
* configure.ac (NEED__FILE_OFFSET_BITS): Change to define gpgme_off_t
and gpgme_ssize_t.
(API__OFF_T, API__SSIZE_T): New ac_subst.
* src/gpgme.h.in: Replace all ssize_t and off_t by ac_subst macros.
* src/assuan-support.c, src/ath-pthread.c, src/ath.c, src/ath.h
* src/data-compat.c, src/data-fd.c, src/data-mem.c, src/data-stream.c
* src/data-user.c, src/data.c, src/data.h, src/engine-gpgsm.c
* src/engine-uiserver.c, src/gpgme-tool.c, src/gpgme.c: Replace off_t
by gpgme_off_t and sszie_t by gpgme_ssize_t.
* src/ath-pthread.c, src/ath.h: Include gpgme.h.
--
For a detailed description, see the gpgme.texi diff.
2013-04-25 11:00:16 +00:00
|
|
|
gpgme_ssize_t
|
2002-06-02 19:19:25 +00:00
|
|
|
ath_write (int fd, const void *buf, size_t nbytes)
|
|
|
|
{
|
2003-08-20 20:20:46 +00:00
|
|
|
return write (fd, buf, nbytes);
|
2002-06-02 19:19:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-11-25 02:13:17 +00:00
|
|
|
#if !defined(HAVE_POLL_H)
|
Make definition of off_t robust against misbehaving w32 toolchains.
* configure.ac (NEED__FILE_OFFSET_BITS): Change to define gpgme_off_t
and gpgme_ssize_t.
(API__OFF_T, API__SSIZE_T): New ac_subst.
* src/gpgme.h.in: Replace all ssize_t and off_t by ac_subst macros.
* src/assuan-support.c, src/ath-pthread.c, src/ath.c, src/ath.h
* src/data-compat.c, src/data-fd.c, src/data-mem.c, src/data-stream.c
* src/data-user.c, src/data.c, src/data.h, src/engine-gpgsm.c
* src/engine-uiserver.c, src/gpgme-tool.c, src/gpgme.c: Replace off_t
by gpgme_off_t and sszie_t by gpgme_ssize_t.
* src/ath-pthread.c, src/ath.h: Include gpgme.h.
--
For a detailed description, see the gpgme.texi diff.
2013-04-25 11:00:16 +00:00
|
|
|
gpgme_ssize_t
|
2002-06-02 19:19:25 +00:00
|
|
|
ath_select (int nfd, fd_set *rset, fd_set *wset, fd_set *eset,
|
|
|
|
struct timeval *timeout)
|
|
|
|
{
|
2005-09-13 14:17:04 +00:00
|
|
|
#ifdef HAVE_W32_SYSTEM
|
|
|
|
return -1; /* Not supported. */
|
|
|
|
#else
|
2003-08-20 20:20:46 +00:00
|
|
|
return select (nfd, rset, wset, eset, timeout);
|
2005-09-13 14:17:04 +00:00
|
|
|
#endif
|
2002-06-02 19:19:25 +00:00
|
|
|
}
|
2021-11-25 02:13:17 +00:00
|
|
|
#endif
|
2012-09-25 13:29:49 +00:00
|
|
|
|
Make definition of off_t robust against misbehaving w32 toolchains.
* configure.ac (NEED__FILE_OFFSET_BITS): Change to define gpgme_off_t
and gpgme_ssize_t.
(API__OFF_T, API__SSIZE_T): New ac_subst.
* src/gpgme.h.in: Replace all ssize_t and off_t by ac_subst macros.
* src/assuan-support.c, src/ath-pthread.c, src/ath.c, src/ath.h
* src/data-compat.c, src/data-fd.c, src/data-mem.c, src/data-stream.c
* src/data-user.c, src/data.c, src/data.h, src/engine-gpgsm.c
* src/engine-uiserver.c, src/gpgme-tool.c, src/gpgme.c: Replace off_t
by gpgme_off_t and sszie_t by gpgme_ssize_t.
* src/ath-pthread.c, src/ath.h: Include gpgme.h.
--
For a detailed description, see the gpgme.texi diff.
2013-04-25 11:00:16 +00:00
|
|
|
gpgme_ssize_t
|
2002-06-02 19:19:25 +00:00
|
|
|
ath_waitpid (pid_t pid, int *status, int options)
|
|
|
|
{
|
2005-09-13 14:17:04 +00:00
|
|
|
#ifdef HAVE_W32_SYSTEM
|
|
|
|
return -1; /* Not supported. */
|
|
|
|
#else
|
2003-08-20 20:20:46 +00:00
|
|
|
return waitpid (pid, status, options);
|
2005-09-13 14:17:04 +00:00
|
|
|
#endif
|
2003-08-20 20:20:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
ath_accept (int s, struct sockaddr *addr, socklen_t *length_ptr)
|
|
|
|
{
|
2005-09-13 14:17:04 +00:00
|
|
|
#ifdef HAVE_W32_SYSTEM
|
|
|
|
return -1; /* Not supported. */
|
|
|
|
#else
|
2003-08-20 20:20:46 +00:00
|
|
|
return accept (s, addr, length_ptr);
|
2005-09-13 14:17:04 +00:00
|
|
|
#endif
|
2003-08-20 20:20:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2003-10-06 14:06:31 +00:00
|
|
|
ath_connect (int s, const struct sockaddr *addr, socklen_t length)
|
2003-08-20 20:20:46 +00:00
|
|
|
{
|
2005-09-13 14:17:04 +00:00
|
|
|
#ifdef HAVE_W32_SYSTEM
|
|
|
|
return -1; /* Not supported. */
|
|
|
|
#else
|
2003-08-20 20:20:46 +00:00
|
|
|
return connect (s, addr, length);
|
2005-09-13 14:17:04 +00:00
|
|
|
#endif
|
2003-08-20 20:20:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
ath_sendmsg (int s, const struct msghdr *msg, int flags)
|
|
|
|
{
|
2005-09-13 14:17:04 +00:00
|
|
|
#ifdef HAVE_W32_SYSTEM
|
|
|
|
return -1; /* Not supported. */
|
|
|
|
#else
|
2003-08-20 20:20:46 +00:00
|
|
|
return sendmsg (s, msg, flags);
|
2005-09-13 14:17:04 +00:00
|
|
|
#endif
|
2003-08-20 20:20:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
ath_recvmsg (int s, struct msghdr *msg, int flags)
|
|
|
|
{
|
2005-09-13 14:17:04 +00:00
|
|
|
#ifdef HAVE_W32_SYSTEM
|
|
|
|
return -1; /* Not supported. */
|
|
|
|
#else
|
2003-08-20 20:20:46 +00:00
|
|
|
return recvmsg (s, msg, flags);
|
2005-09-13 14:17:04 +00:00
|
|
|
#endif
|
2002-06-02 19:19:25 +00:00
|
|
|
}
|