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 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
|
/* Copyright (c) 2007-2009, UNINETT AS
* Copyright (c) 2010-2012,2016, NORDUnet A/S
* Copyright (c) 2023, SWITCH */
/* See LICENSE for licensing information. */
#ifndef _RADSECPROXY_H
#define _RADSECPROXY_H
#include "gconfig.h"
#include "hostport.h"
#include "list.h"
#include "radmsg.h"
#include "rewrite.h"
#include <netinet/in.h>
#include <pthread.h>
#include <regex.h>
#include <stdint.h>
#include <sys/time.h>
#include <openssl/asn1.h>
#define DEBUG_LEVEL 2
#define CONFIG_MAIN SYSCONFDIR "/radsecproxy.conf"
/* MAX_REQUESTS must be 256 due to Radius' 8 bit ID field */
#define MAX_REQUESTS 256
#define MAX_LOSTRQS 16
#define REQUEST_RETRY_INTERVAL 5
#define REQUEST_RETRY_COUNT 2
#define DUPLICATE_INTERVAL REQUEST_RETRY_INTERVAL *REQUEST_RETRY_COUNT
#define MAX_CERT_DEPTH 5
#define STATUS_SERVER_PERIOD 25
#define IDLE_TIMEOUT 300
#define PSK_MIN_LENGTH 16
#define RSP_SECRET_LEN_WARN 10
/* Older OpenSSL API had a 256 byte limit; keep this limit to maximize compatibility*/
#define PSK_ID_MAX_LENGTH 256
#define RSP_TLS_REKEY_INTERVAL 3600
/* Target value for stack size.
* Some platforms might define higher minimums in PTHREAD_STACK_MIN. */
#define THREAD_STACK_SIZE 32768
/* For systems that only support RFC 2292 Socket API, but not RFC 3542
* like Cygwin */
#ifndef IPV6_RECVPKTINFO
#define IPV6_RECVPKTINFO IPV6_PKTINFO
#endif
/* 27262 is vendor DANTE Ltd. */
#define DEFAULT_TTL_ATTR "27262:1"
#define DEFAULT_FTICKS_PREFIX "F-TICKS/eduroam/1.0"
#define RAD_UDP 0
#define RAD_TLS 1
#define RAD_TCP 2
#define RAD_DTLS 3
#define RAD_PROTOCOUNT 4
enum rsp_fticks_reporting_type {
RSP_FTICKS_REPORTING_NONE = 0, /* Default. */
RSP_FTICKS_REPORTING_BASIC,
RSP_FTICKS_REPORTING_FULL
};
enum rsp_mac_type {
RSP_MAC_STATIC = 0,
RSP_MAC_ORIGINAL,
RSP_MAC_VENDOR_HASHED,
RSP_MAC_VENDOR_KEY_HASHED, /* Default. */
RSP_MAC_FULLY_HASHED,
RSP_MAC_FULLY_KEY_HASHED
};
enum rsp_server_state {
RSP_SERVER_STATE_STARTUP = 0, /* default */
RSP_SERVER_STATE_BLOCKING_STARTUP,
RSP_SERVER_STATE_CONNECTED,
RSP_SERVER_STATE_RECONNECTING,
RSP_SERVER_STATE_FAILING
};
enum rsp_statsrv {
RSP_STATSRV_OFF = 0,
RSP_STATSRV_ON,
RSP_STATSRV_MINIMAL,
RSP_STATSRV_AUTO
};
struct options {
char *pidfile;
char *logdestination;
char *ftickssyslogfacility;
char *fticksprefix;
char *ttlattr;
uint32_t ttlattrtype[2];
uint8_t addttl;
uint8_t loglevel;
uint8_t logtid;
uint8_t logfullusername;
uint8_t loopprevention;
enum rsp_mac_type log_mac;
uint8_t *log_key;
enum rsp_fticks_reporting_type fticks_reporting;
enum rsp_mac_type fticks_mac;
uint8_t *fticks_key;
uint8_t ipv4only;
uint8_t ipv6only;
uint8_t sni;
uint8_t verifyeap;
};
struct commonprotoopts {
char **listenargs;
char **sourcearg;
};
struct request {
struct timeval created;
uint32_t refcount;
pthread_mutex_t refmutex;
uint8_t *buf, *replybuf;
int buflen, replybuflen;
struct radmsg *msg;
struct client *from;
struct server *to;
char *origusername;
uint8_t rqid;
uint8_t rqauth[16];
uint8_t newid;
int udpsock; /* only for UDP */
};
/* requests that our client will send */
struct rqout {
pthread_mutex_t *lock;
struct request *rq;
uint8_t tries;
struct timeval expiry;
};
struct gqueue {
struct list *entries;
pthread_mutex_t mutex;
pthread_cond_t cond;
};
struct clsrvconf {
uint8_t shallow;
struct clsrvconf *parent;
char *name;
uint8_t type; /* RAD_UDP/RAD_TLS/RAD_TCP */
const struct protodefs *pdef;
char **hostsrc;
char *servername;
int hostaf;
char *portsrc;
struct list *hostports;
char **source;
uint8_t *secret;
int secret_len;
char *tls;
char *pskid;
uint8_t *pskkey;
int pskkeylen;
struct list *matchcertattrs;
char **confmatchcertattrs;
char *confrewritein;
char *confrewriteout;
char *confrewriteusername;
struct modattr *rewriteusername;
char *dynamiclookupcommand;
enum rsp_statsrv statusserver;
uint8_t retryinterval;
uint8_t retrycount;
uint8_t dupinterval;
uint8_t certnamecheck;
uint8_t addttl;
uint8_t keepalive;
uint8_t loopprevention;
uint8_t blockingstartup;
struct rewrite *rewritein;
struct rewrite *rewriteout;
pthread_mutex_t *lock; /* only used for updating clients so far */
struct tls *tlsconf;
struct list *clients;
struct server *servers;
char *fticks_viscountry;
char *fticks_visinst;
uint8_t sni;
char *sniservername;
long dtlsmtu;
uint8_t reqmsgauth;
uint8_t reqmsgauthproxy;
};
#include "tlscommon.h"
struct client {
struct clsrvconf *conf;
int sock;
SSL *ssl;
pthread_mutex_t lock;
struct request *rqs[MAX_REQUESTS];
struct gqueue *replyq;
struct sockaddr *addr;
time_t expiry; /* for udp */
struct timeval tlsnewkey;
};
struct server {
struct clsrvconf *conf;
int sock;
SSL *ssl;
pthread_mutex_t lock;
pthread_t clientth;
uint8_t clientrdgone;
struct timeval connecttime;
struct timeval lastreply;
struct timeval tlsnewkey;
enum rsp_server_state state;
uint8_t lostrqs;
char *dynamiclookuparg;
int nextid;
struct timeval lastrcv;
struct rqout *requests;
uint8_t newrq;
uint8_t conreset;
pthread_mutex_t newrq_mutex;
pthread_cond_t newrq_cond;
};
struct realm {
char *name;
char *message;
uint8_t accresp;
uint8_t acclog;
regex_t regex;
uint32_t refcount;
pthread_mutex_t refmutex;
pthread_mutex_t mutex;
struct realm *parent;
struct list *subrealms;
struct list *srvconfs;
struct list *accsrvconfs;
};
struct protodefs {
char *name;
char *secretdefault;
int socktype;
char *portdefault;
uint8_t retrycountdefault;
uint8_t retrycountmax;
uint8_t retryintervaldefault;
uint8_t retryintervalmax;
uint8_t duplicateintervaldefault;
void (*setprotoopts)(struct commonprotoopts *);
char **(*getlistenerargs)(void);
void *(*listener)(void *);
int (*connecter)(struct server *, int, int);
void *(*clientconnreader)(void *);
int (*clientradput)(struct server *, unsigned char *, int);
void (*addclient)(struct client *);
void (*addserverextra)(struct clsrvconf *);
void (*setsrcres)(void);
void (*initextra)(void);
};
struct clsrvconf *find_clconf(uint8_t type, struct sockaddr *addr, struct list_node **cur, struct hostportres **hp);
struct clsrvconf *find_srvconf(uint8_t type, struct sockaddr *addr, struct list_node **cur);
struct list *find_all_clconf(uint8_t type, struct sockaddr *addr, struct list_node *cur, struct hostportres **hp);
struct clsrvconf *find_clconf_type(uint8_t type, struct list_node **cur);
struct client *addclient(struct clsrvconf *conf, uint8_t lock);
void removelockedclient(struct client *client);
void removeclient(struct client *client);
struct gqueue *newqueue(void);
struct request *newrequest(void);
void freerq(struct request *rq);
int radsrv(struct request *rq);
int timeouth(struct server *server);
int closeh(struct server *server);
int replyh(struct server *server, uint8_t *buf, int buflen);
struct addrinfo *resolve_hostport_addrinfo(uint8_t type, char *hostport);
uint8_t *radattr2ascii(struct tlv *attr); /* TODO: mv this to radmsg? */
extern pthread_attr_t pthread_attr;
#endif /* _RADSECPROXY_H */
/* Local Variables: */
/* c-file-style: "stroustrup" */
/* End: */
|