mirror of
https://gitlab.com/openconnect/ocserv.git
synced 2026-02-10 16:57:00 +08:00
79 lines
2.5 KiB
C
79 lines
2.5 KiB
C
/*
|
|
* Copyright (C) 2013 Nikos Mavrogiannopoulos
|
|
*
|
|
* Author: Nikos Mavrogiannopoulos
|
|
*
|
|
* This file is part of ocserv.
|
|
*
|
|
* The GnuTLS 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.
|
|
*
|
|
* This library 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 <http://www.gnu.org/licenses/>
|
|
*/
|
|
#ifndef COMMON_H
|
|
# define COMMON_H
|
|
|
|
#include <sys/socket.h>
|
|
#include <ipc.pb-c.h>
|
|
#include <talloc.h>
|
|
|
|
void _talloc_free2(void *ctx, void *ptr);
|
|
void *_talloc_size2(void *ctx, size_t size);
|
|
|
|
#define PROTOBUF_ALLOCATOR(name, pool) \
|
|
ProtobufCAllocator name = {.alloc = _talloc_size2, .free = _talloc_free2, .allocator_data = pool}
|
|
|
|
ssize_t force_write(int sockfd, const void *buf, size_t len);
|
|
ssize_t force_read(int sockfd, void *buf, size_t len);
|
|
ssize_t force_read_timeout(int sockfd, void *buf, size_t len, unsigned sec);
|
|
int ip_cmp(const struct sockaddr_storage *s1, const struct sockaddr_storage *s2, size_t n);
|
|
char* ipv6_prefix_to_mask(void *pool, unsigned prefix);
|
|
|
|
typedef size_t (*pack_func)(const void*, uint8_t *);
|
|
typedef size_t (*pack_size_func)(const void*);
|
|
|
|
typedef void* (*unpack_func)(ProtobufCAllocator *allocator,
|
|
size_t len,
|
|
const uint8_t *data);
|
|
|
|
int send_msg(void *pool, int fd, uint8_t cmd,
|
|
const void* msg, pack_size_func get_size, pack_func pack);
|
|
|
|
int send_socket_msg(void *pool, int fd, uint8_t cmd,
|
|
int socketfd,
|
|
const void* msg, pack_size_func get_size, pack_func pack);
|
|
|
|
int recv_msg(void *pool, int fd, uint8_t cmd,
|
|
void** msg, unpack_func);
|
|
|
|
int recv_socket_msg(void *pool, int fd, uint8_t cmd,
|
|
int *socketfd, void** msg, unpack_func);
|
|
|
|
const char* cmd_request_to_str(unsigned cmd);
|
|
|
|
inline static
|
|
void safe_memset(void *data, int c, size_t size)
|
|
{
|
|
volatile unsigned volatile_zero = 0;
|
|
volatile char *vdata = (volatile char*)data;
|
|
|
|
/* This is based on a nice trick for safe memset,
|
|
* sent by David Jacobson in the openssl-dev mailing list.
|
|
*/
|
|
|
|
do {
|
|
memset(data, c, size);
|
|
} while(vdata[volatile_zero] != c);
|
|
}
|
|
|
|
#endif
|
|
|