blob: 25dd5c45f03f9d25bb38ed7f1e33405ae1517600 [file] [edit]
/* SPDX-License-Identifier: BSD-2-Clause */
/*
* Copyright (c) 2015 - 2018 Intel Corporation
* All rights reserved.
*/
#ifndef UTIL_IO_H
#define UTIL_IO_H
#ifdef _WIN32
#include <BaseTsd.h>
#include <winsock2.h>
#include <ws2tcpip.h>
typedef SSIZE_T ssize_t;
#define _HOST_NAME_MAX MAX_COMPUTERNAME_LENGTH
#else
#include <arpa/inet.h>
#include <errno.h>
#include <sys/socket.h>
#include <sys/un.h>
#define _HOST_NAME_MAX _POSIX_HOST_NAME_MAX
#define SOCKET int
#define INVALID_SOCKET -1
#define SOCKET_ERROR -1
#endif
#include "tss2_tpm2_types.h"
#ifdef _WIN32
#define TEMP_RETRY(dest, exp) \
{ int __ret; \
do { \
__ret = exp; \
} while (__ret == SOCKET_ERROR && WSAGetLastError() == WSAEINTR); \
dest = __ret; }
#elif defined (__FreeBSD__)
#define TEMP_RETRY(dest, exp) \
{ int __ret; \
do { \
__ret = exp; \
} while ((__ret == SOCKET_ERROR) && (errno == EINTR || errno == EAGAIN)); \
dest =__ret; }
#else
#define TEMP_RETRY(dest, exp) \
{ int __ret; \
do { \
__ret = exp; \
} while (__ret == SOCKET_ERROR && errno == EINTR); \
dest =__ret; }
#endif
#ifdef __cplusplus
extern "C" {
#endif
/*
* Read 'size' bytes from file descriptor 'fd' into buffer 'buf'. Additionally
* this function will retry calls to the 'read' function when temporary errors
* are detected. This is currently limited to interrupted system calls and
* short reads.
*/
ssize_t
read_all (
SOCKET fd,
uint8_t *data,
size_t size);
/*
* Write 'size' bytes from 'buf' to file descriptor 'fd'. Additionally this
* function will retry calls to the 'write' function when recoverable errors
* are detected. This is currently limited to interrupted system calls and
* short writes.
*/
ssize_t
write_all (
SOCKET fd,
const uint8_t *buf,
size_t size);
/*
* Connect to the given target using TCP. 'control' is to distinguish the data
* socket from the control socket. For TCP, the data socket and control socket
* are assumed to be on the same host and consecutive port numbers, so 'port'
* is incremented by 1 if 'control' is non-zero.
*/
TSS2_RC
socket_connect (
const char *hostname,
uint16_t port,
int control,
SOCKET *socket);
/*
* Connect to the given target using unix domain sockets. (Not available on
* "_WIN32".) If 'control' is non-zero, ".ctrl" is appended to 'path'.
*/
TSS2_RC
socket_connect_unix (
const char *path,
int control,
SOCKET *socket);
TSS2_RC
socket_close (
SOCKET *socket);
TSS2_RC
socket_set_nonblock (
SOCKET sock);
ssize_t
socket_recv_buf (
SOCKET sock,
uint8_t *data,
size_t size);
TSS2_RC
socket_xmit_buf (
SOCKET sock,
const void *buf,
size_t size);
TSS2_RC
socket_poll (
SOCKET sock,
int timeout);
#ifdef __cplusplus
}
#endif
#endif /* UTIL_IO_H */