/usr/include/zorp/sockaddr.h is in libzorpll-6.0-10-dev 6.0.10.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 | /***************************************************************************
*
* This file is covered by a dual licence. You can choose whether you
* want to use it according to the terms of the GNU GPL version 2, or
* under the terms of Zorp Professional Firewall System EULA located
* on the Zorp installation CD.
*
***************************************************************************/
#ifndef ZORP_SOCKADDR_H_INCLUDED
#define ZORP_SOCKADDR_H_INCLUDED
#include <zorp/zorplib.h>
#include <sys/types.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <errno.h>
#include <sys/types.h>
#ifdef G_OS_WIN32
# include <winsock2.h>
# include <ws2tcpip.h>
#else
# include <sys/socket.h>
# include <sys/un.h>
# include <netinet/in.h>
# include <arpa/inet.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
#define MAX_SOCKADDR_STRING 128
/* sockaddr public interface */
#define ZSA_LOCAL 0x0001 /**< within host */
typedef struct _ZSockAddrFuncs ZSockAddrFuncs;
/**
* A class that encapsulates an (IPv4, IPv6 or Unix domain socket) address.
*
* Internally a struct sockaddr (from libc) is used.
**/
typedef struct _ZSockAddr
{
ZRefCount refcnt;
guint32 flags;
ZSockAddrFuncs *sa_funcs;
int salen;
struct sockaddr sa;
} ZSockAddr;
/**
* ZSockAddr virtual method table type.
**/
struct _ZSockAddrFuncs
{
GIOStatus (*sa_bind_prepare) (int sock, ZSockAddr *self, guint32 sock_flags);
GIOStatus (*sa_bind) (int sock, ZSockAddr *self, guint32 sock_flags);
ZSockAddr *(*sa_clone) (ZSockAddr *self, gboolean wildcard_clone);
gchar *(*sa_format) (ZSockAddr *self, /* format to text form */
gchar *text,
gulong n);
void (*freefn) (ZSockAddr *self);
gboolean (*sa_equal) (ZSockAddr *self, ZSockAddr *other);
};
/*
* Map an address family to the related protocol family, currently it is
* a no-op as values for address and protocol families currently match,
* at least on Linux.
*
* @param[in] af address family (one of AF_* constants)
*/
static inline gint
z_map_pf(gint af)
{
return af;
}
/* generic ZSockAddr */
gchar *z_sockaddr_format(ZSockAddr *self, gchar *text, gulong n);
gboolean z_sockaddr_equal(ZSockAddr *self, ZSockAddr *b);
ZSockAddr *z_sockaddr_ref(ZSockAddr *self);
void z_sockaddr_unref(ZSockAddr *self);
ZSockAddr *z_sockaddr_new(struct sockaddr *sa, gsize salen);
static inline const struct sockaddr *
z_sockaddr_get_sa(ZSockAddr *self)
{
return &self->sa;
}
/* AF_INET sockaddr */
gboolean z_sockaddr_inet_check(ZSockAddr *s);
static inline const struct sockaddr_in *
z_sockaddr_inet_get_sa(ZSockAddr *s)
{
g_assert(z_sockaddr_inet_check(s));
return (struct sockaddr_in *) z_sockaddr_get_sa(s);
}
gboolean z_sockaddr_inet6_check(ZSockAddr *s);
static inline const struct sockaddr_in6 *
z_sockaddr_inet6_get_sa(ZSockAddr *s)
{
g_assert(z_sockaddr_inet6_check(s));
return (struct sockaddr_in6 *) z_sockaddr_get_sa(s);
}
/**
* This ZSockAddrInet specific function returns the address part of the
* address.
*
* @param[in] s ZSockAddrInet instance
**/
static inline struct in_addr
z_sockaddr_inet_get_address(ZSockAddr *s)
{
g_assert(z_sockaddr_inet_check(s));
return z_sockaddr_inet_get_sa(s)->sin_addr;
}
/**
* This ZSockAddrInet6 specific function returns the address part of the
* address.
*
* @param[in] s ZSockAddrInet6 instance
**/
static inline struct in6_addr
z_sockaddr_inet6_get_address(ZSockAddr *s)
{
g_assert(z_sockaddr_inet6_check(s));
return z_sockaddr_inet6_get_sa(s)->sin6_addr;
}
/**
* This ZSockAddrInet specific function sets the address part of the
* address.
*
* @param[in] s ZSockAddrInet instance
* @param[in] addr new address
*
**/
static inline void
z_sockaddr_inet_set_address(ZSockAddr *s, struct in_addr addr)
{
g_assert(z_sockaddr_inet_check(s));
((struct sockaddr_in *) &s->sa)->sin_addr = addr;
}
/**
* This ZSockAddrInet specific function returns the port part of the
* address.
*
* @param[in] s ZSockAddrInet instance
*
* @returns the port in host byte order
**/
static inline guint16
z_sockaddr_inet_get_port(ZSockAddr *s)
{
g_assert(z_sockaddr_inet_check(s));
return ntohs(z_sockaddr_inet_get_sa(s)->sin_port);
}
/**
* This ZSockAddrInet specific function sets the port part of the
* address.
*
* @param[in] s ZSockAddrInet instance
* @param[in] port new port in host byte order
**/
static inline void
z_sockaddr_inet_set_port(ZSockAddr *s, guint16 port)
{
g_assert(z_sockaddr_inet_check(s));
((struct sockaddr_in *) &s->sa)->sin_port = htons(port);
}
/**
* This ZSockAddrInet6 specific function returns the port part of the
* address.
*
* @param[in] s ZSockAddrInet6 instance
*
* @returns the port in host byte order
**/
static inline guint16
z_sockaddr_inet6_get_port(ZSockAddr *s)
{
g_assert(z_sockaddr_inet6_check(s));
return ntohs(z_sockaddr_inet6_get_sa(s)->sin6_port);
}
/**
* This ZSockAddrInet6 specific function sets the port part of the
* address.
*
* @param[in] s ZSockAddrInet6 instance
* @param[in] port new port in host byte order
**/
static inline void
z_sockaddr_inet6_set_port(ZSockAddr *s, guint16 port)
{
g_assert(z_sockaddr_inet6_check(s));
((struct sockaddr_in6 *) &s->sa)->sin6_port = htons(port);
}
ZSockAddr *z_sockaddr_inet_new(const gchar *ip, guint16 port);
ZSockAddr *z_sockaddr_inet_new2(struct sockaddr_in *sinaddr);
ZSockAddr *z_sockaddr_inet_new_hostname(const gchar *hostname, guint16 port);
ZSockAddr *z_sockaddr_inet_range_new(const gchar *ip, guint16 min_port, guint16 max_port);
ZSockAddr *z_sockaddr_inet_range_new_inaddr(struct in_addr addr, guint16 min_port, guint16 max_port);
ZSockAddr *z_sockaddr_inet_range_new_random(const gchar *ip, guint16 min_port, guint16 max_port);
ZSockAddr *z_sockaddr_inet_range_new_inaddr_random(struct in_addr addr, guint16 min_port, guint16 max_port);
/* AF_INET6 */
ZSockAddr *z_sockaddr_inet6_new(gchar *ip, guint16 port);
ZSockAddr *z_sockaddr_inet6_new2(struct sockaddr_in6 *sin6);
#ifndef G_OS_WIN32
gboolean z_sockaddr_unix_check(ZSockAddr *s);
static inline const gchar *
z_sockaddr_unix_get_path(ZSockAddr *s)
{
z_sockaddr_unix_check(s);
return ((struct sockaddr_un *) &s->sa)->sun_path;
}
ZSockAddr *z_sockaddr_unix_new(const gchar *name);
ZSockAddr *z_sockaddr_unix_new2(struct sockaddr_un *s_un, int sunlen);
#endif
static inline ZSockAddr *
z_sockaddr_clone(ZSockAddr *addr, gboolean wildcard_clone)
{
return addr->sa_funcs->sa_clone(addr, wildcard_clone);
}
gchar *z_inet_ntoa(gchar *buf, size_t bufsize, struct in_addr a);
gboolean z_inet_aton(const gchar *buf, struct in_addr *a);
#ifdef __cplusplus
}
#endif
#endif
|