The FreeRADIUS server $Id: f3670dba8951ca10eb4948feb3dc3db9423a334f $
Loading...
Searching...
No Matches
proto_tacacs_tcp.c
Go to the documentation of this file.
1/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
15 */
16
17/**
18 * $Id: 54e3d94021690bcffb59a049687e02965d86ec2a $
19 * @file proto_tacacs_tcp.c
20 * @brief TACACS+ handler for TCP.
21 * @author Jorge Pereira <jpereira@freeradius.org>
22 *
23 * @copyright 2020 The FreeRADIUS server project.
24 * @copyright 2020 Network RADIUS SAS (legal@networkradius.com)
25 */
26
27#include <netdb.h>
28#include <freeradius-devel/util/trie.h>
29#include <freeradius-devel/io/application.h>
30#include <freeradius-devel/io/listen.h>
31#include <freeradius-devel/io/schedule.h>
32#include "proto_tacacs.h"
33
35
36#define TACACS_MAX_ATTRIBUTES 256
37
38typedef struct {
39 char const *name; //!< socket name
40 int sockfd;
41
42 fr_io_address_t *connection; //!< for connected sockets.
43
44 fr_stats_t stats; //!< statistics for this socket
46
47typedef struct {
48 CONF_SECTION *cs; //!< our configuration
49
50 fr_ipaddr_t ipaddr; //!< IP address to listen on.
51
52 char const *interface; //!< Interface to bind to.
53 char const *port_name; //!< Name of the port for getservent().
54
55 uint32_t recv_buff; //!< How big the kernel's receive buffer should be.
56
57 uint32_t max_packet_size; //!< for message ring buffer.
58 uint32_t max_attributes; //!< Limit maximum decodable attributes.
59
60 uint16_t port; //!< Port to listen on.
61
62 bool recv_buff_is_set; //!< Whether we were provided with a recv_buff
63 bool dynamic_clients; //!< whether we have dynamic clients
64
65 fr_client_list_t *clients; //!< local clients
66
67 fr_trie_t *trie; //!< for parsed networks
68 fr_ipaddr_t *allow; //!< allowed networks for dynamic clients
69 fr_ipaddr_t *deny; //!< denied networks for dynamic clients
70
71 bool read_hexdump; //!< Do we debug hexdump read packets.
72 bool write_hexdump; //!< Do we debug hexdump write packets.
74
81
86
87 { FR_CONF_OFFSET("interface", proto_tacacs_tcp_t, interface) },
88 { FR_CONF_OFFSET("port_name", proto_tacacs_tcp_t, port_name) },
89
90 { FR_CONF_OFFSET("port", proto_tacacs_tcp_t, port), .dflt = "49" },
91 { FR_CONF_OFFSET_IS_SET("recv_buff", FR_TYPE_UINT32, 0, proto_tacacs_tcp_t, recv_buff) },
92
93 { FR_CONF_OFFSET("dynamic_clients", proto_tacacs_tcp_t, dynamic_clients) } ,
94 { FR_CONF_POINTER("networks", 0, CONF_FLAG_SUBSECTION, NULL), .subcs = (void const *) networks_config },
95
96 { FR_CONF_OFFSET("max_packet_size", proto_tacacs_tcp_t, max_packet_size), .dflt = "4096" } ,
97 { FR_CONF_OFFSET("max_attributes", proto_tacacs_tcp_t, max_attributes), .dflt = STRINGIFY(TACACS_MAX_ATTRIBUTES) } ,
98
99 { FR_CONF_OFFSET("read_hexdump", proto_tacacs_tcp_t, read_hexdump) },
100 { FR_CONF_OFFSET("write_hexdump", proto_tacacs_tcp_t, write_hexdump) },
101
103};
104
105static const char *packet_name[] = {
106 [FR_TAC_PLUS_AUTHEN] = "Authentication",
107 [FR_TAC_PLUS_AUTHOR] = "Authorization",
108 [FR_TAC_PLUS_ACCT] = "Accounting",
109};
110
111/** Read TACACS data from a TCP connection
112 *
113 * @param[in] li representing a client connection.
114 * @param[in] packet_ctx UNUSED.
115 * @param[out] recv_time_p When we read the packet.
116 * For some protocols we get this for free (but not here).
117 * @param[out] buffer to read into.
118 * @param[in] buffer_len Maximum length of the buffer.
119 * @param[in,out] leftover If the previous read didn't yield a complete packet
120 * we will have written how many bytes we read in leftover
121 * and returned 0. On the next call, we use the
122 * value of leftover to offset the position we start
123 * writing into the buffer.
124 * *leftover must be subtracted from buffer_len when
125 * calculating free space in the buffer.
126 * @return
127 * - >0 when a packet was read successfully.
128 * - 0 when we read a partial packet.
129 * - <0 on error (socket should be closed).
130 */
131static ssize_t mod_read(fr_listen_t *li, UNUSED void **packet_ctx, fr_time_t *recv_time_p,
132 uint8_t *buffer, size_t buffer_len, size_t *leftover)
133{
134 proto_tacacs_tcp_thread_t *thread = talloc_get_type_abort(li->thread_instance, proto_tacacs_tcp_thread_t);
135 ssize_t data_size, packet_len;
136 size_t in_buffer;
137
138 /*
139 * We may have read multiple packets in the previous read. In which case the buffer may already
140 * have packets remaining. In that case, we can return packets directly from the buffer, and
141 * skip the read().
142 */
143 if (*leftover >= FR_HEADER_LENGTH) {
144 packet_len = fr_tacacs_length(buffer, *leftover);
145 if (packet_len < 0) goto invalid;
146
147 if (packet_len <= ((ssize_t) *leftover)) {
148 data_size = 0;
149 goto have_packet;
150 }
151
152 /*
153 * Else we don't have a full packet, try to read more data from the network.
154 */
155 }
156
157 /*
158 * Read data into the buffer.
159 */
160 data_size = read(thread->sockfd, buffer + (*leftover), buffer_len - (*leftover));
161 if (data_size < 0) {
162 switch (errno) {
163#if defined(EWOULDBLOCK) && (EWOULDBLOCK != EAGAIN)
164 case EWOULDBLOCK:
165#endif
166 case EAGAIN:
167 /*
168 * We didn't read any data leave the buffers alone.
169 *
170 * i.e. if we had a partial packet in the buffer and we didn't read any data,
171 * then the partial packet is still left in the buffer.
172 */
173 return 0;
174
175 default:
176 break;
177 }
178
179 ERROR("proto_tacacs_tcp got read error (%zd) - %s", data_size, fr_syserror(errno));
180 return data_size;
181 }
182
183 /*
184 * Note that we return ERROR for all bad packets, as
185 * there's no point in reading TACACS+ packets from a TCP
186 * connection which isn't sending us TACACS+ packets.
187 */
188
189 /*
190 * TCP read of zero means the socket is dead.
191 */
192 if (!data_size) {
193 DEBUG2("proto_tacacs_tcp - other side closed the socket.");
194 return -1;
195 }
196
197have_packet:
198 /*
199 * Represents all the data we've read since we last
200 * decoded a complete packet.
201 */
202 in_buffer = *leftover + data_size;
203
204 /*
205 * Figure out how big the complete TACACS packet should be.
206 * If we don't have enough data it'll likely come
207 * through in the next fragment.
208 */
209 packet_len = fr_tacacs_length(buffer, in_buffer);
210 if (packet_len < 0) {
211 invalid:
212 PERROR("Invalid TACACS packet");
213 return -1; /* Malformed, close the socket */
214 }
215
216 /*
217 * We don't have a complete TACACS+ packet. Tell the
218 * caller that we need to read more, but record
219 * how much we read in leftover.
220 */
221 if (in_buffer < (size_t) packet_len) {
222 *leftover = in_buffer;
223 DEBUG3("proto_tacacs_tcp - Received packet fragment of %zu bytes (%zu bytes now pending)",
224 packet_len, *leftover);
225 return 0;
226 }
227
228 /*
229 * We've read at least one packet. Tell the caller that
230 * there's more data available, and return only one packet.
231 */
232 *leftover = in_buffer - packet_len;
233
234 *recv_time_p = fr_time();
235 thread->stats.total_requests++;
236
237 /*
238 * proto_tacacs sets the priority
239 */
240
241 /*
242 * Print out what we received.
243 */
244 FR_PROTO_HEX_DUMP(buffer, packet_len, "tacacs_tcp_recv");
245
246 if (DEBUG_ENABLED2) {
247 char bogus_type[4];
248 char const *type;
249
250 if (buffer[1] && buffer[1] <= FR_TAC_PLUS_ACCT) type = packet_name[buffer[1]];
251 else {
252 snprintf(bogus_type, sizeof(bogus_type), "%d", buffer[1]);
253 type = bogus_type;
254 }
255 DEBUG2("proto_tacacs_tcp - Received %s seq_no %d length %zd %s",
256 type, buffer[2],
257 packet_len, thread->name);
258 }
259
260 return packet_len;
261}
262
263static ssize_t mod_write(fr_listen_t *li, UNUSED void *packet_ctx, UNUSED fr_time_t request_time,
264 uint8_t *buffer, size_t buffer_len, size_t written)
265{
266 proto_tacacs_tcp_thread_t *thread = talloc_get_type_abort(li->thread_instance, proto_tacacs_tcp_thread_t);
267 ssize_t data_size;
268
269 /*
270 * We only write TACACS packets.
271 *
272 * @todo - if buffer_len ==1, it means "do not respond".
273 * Which should be suppressed somewhere. Maybe here...
274 */
275 fr_assert(buffer_len >= sizeof(fr_tacacs_packet_hdr_t));
276 fr_assert(written < buffer_len);
277 fr_assert(buffer_len < (1 << 20)); /* shut up coverity */
278
279 /*
280 * @todo - share a stats interface with the parent? or
281 * put the stats in the listener, so that proto_tacacs
282 * can update them, too.. <sigh>
283 */
284 if (written == 0) {
285 thread->stats.total_responses++;
286 }
287
288 /*
289 * Only write replies if they're TACACS+ packets.
290 * sometimes we want to NOT send a reply...
291 */
292 data_size = write(thread->sockfd, buffer + written, buffer_len - written);
293 if (data_size <= 0) return data_size;
294
295 fr_assert((size_t) data_size <= buffer_len); /* shut up coverity */
296
297 /*
298 * If we're supposed to close the socket, then go do that.
299 */
300 if ((data_size + written) == buffer_len) {
301 fr_tacacs_packet_t const *pkt = (fr_tacacs_packet_t const *) buffer;
302
303 switch (pkt->hdr.type) {
305 if (pkt->authen_reply.status == FR_TAC_PLUS_AUTHEN_STATUS_ERROR) goto close_it;
306 break;
307
309 if (pkt->author_reply.status == FR_TAC_PLUS_AUTHOR_STATUS_ERROR) {
310 close_it:
311 ERROR("tacacs %s - Closing connection due to unrecoverable server error response",
312 thread->name);
313 errno = ECONNRESET;
314 return -1;
315 }
316 break;
317
318 case FR_TAC_PLUS_ACCT:
319 if (pkt->acct_reply.status == FR_TAC_PLUS_ACCT_STATUS_ERROR) goto close_it;
320 break;
321
322 default:
323 break;
324 }
325 }
326
327 /*
328 * Return the packet we wrote, plus any bytes previously
329 * left over from previous packets.
330 */
331 /* coverity[return_overflow] */
332 return data_size + written;
333}
334
336{
337 proto_tacacs_tcp_thread_t *thread = talloc_get_type_abort(li->thread_instance, proto_tacacs_tcp_thread_t);
338
339 thread->connection = connection;
340
341 return 0;
342}
343
344static void mod_network_get(int *ipproto, bool *dynamic_clients, fr_trie_t const **trie, void *instance)
345{
346 proto_tacacs_tcp_t *inst = talloc_get_type_abort(instance, proto_tacacs_tcp_t);
347
348 *ipproto = IPPROTO_TCP;
349 *dynamic_clients = inst->dynamic_clients;
350 *trie = inst->trie;
351}
352
353/** Open a TCP listener for TACACS+
354 *
355 */
356static int mod_open(fr_listen_t *li)
357{
359 proto_tacacs_tcp_thread_t *thread = talloc_get_type_abort(li->thread_instance, proto_tacacs_tcp_thread_t);
360
361 int sockfd;
362 fr_ipaddr_t ipaddr = inst->ipaddr;
363 uint16_t port = inst->port;
364
365 fr_assert(!thread->connection);
366
367 li->fd = sockfd = fr_socket_server_tcp(&inst->ipaddr, &port, inst->port_name, true);
368 if (sockfd < 0) {
369 cf_log_err(li->cs, "Failed opening TCP socket - %s", fr_strerror());
370 error:
371 return -1;
372 }
373
374 (void) fr_nonblock(sockfd);
375
376 if (fr_socket_bind(sockfd, inst->interface, &ipaddr, &port) < 0) {
377 close(sockfd);
378 cf_log_err(li->cs, "Failed binding to socket - %s", fr_strerror());
379 cf_log_err(li->cs, DOC_ROOT_REF(troubleshooting/network/bind));
380 goto error;
381 }
382
383 if (listen(sockfd, 8) < 0) {
384 close(sockfd);
385 cf_log_err(li->cs, "Failed listening on socket - %s", fr_syserror(errno));
386 goto error;
387 }
388
389 thread->sockfd = sockfd;
390
391 fr_assert((cf_parent(inst->cs) != NULL) && (cf_parent(cf_parent(inst->cs)) != NULL)); /* listen { ... } */
392
394 NULL, 0,
395 &inst->ipaddr, inst->port,
396 inst->interface);
397
398 return 0;
399}
400
401
402/** Set the file descriptor for this socket.
403 */
404static int mod_fd_set(fr_listen_t *li, int fd)
405{
407 proto_tacacs_tcp_thread_t *thread = talloc_get_type_abort(li->thread_instance, proto_tacacs_tcp_thread_t);
408
409 thread->sockfd = fd;
410
412 &thread->connection->socket.inet.src_ipaddr, thread->connection->socket.inet.src_port,
413 &inst->ipaddr, inst->port,
414 inst->interface);
415
416 return 0;
417}
418
419static char const *mod_name(fr_listen_t *li)
420{
421 proto_tacacs_tcp_thread_t *thread = talloc_get_type_abort(li->thread_instance, proto_tacacs_tcp_thread_t);
422
423 return thread->name;
424}
425
426static void mod_hexdump_set(fr_listen_t *li, void *data)
427{
428 proto_tacacs_tcp_t *inst = talloc_get_type_abort(data, proto_tacacs_tcp_t);
429 li->read_hexdump = inst->read_hexdump;
430 li->write_hexdump = inst->write_hexdump;
431}
432
433static int mod_instantiate(module_inst_ctx_t const *mctx)
434{
435 proto_tacacs_tcp_t *inst = talloc_get_type_abort(mctx->mi->data, proto_tacacs_tcp_t);
436 CONF_SECTION *conf = mctx->mi->conf;
437 size_t num;
438 CONF_ITEM *ci;
439 CONF_SECTION *server_cs;
440
441 inst->cs = conf;
442
443 /*
444 * Complain if no "ipaddr" is set.
445 */
446 if (inst->ipaddr.af == AF_UNSPEC) {
447 cf_log_err(conf, "No 'ipaddr' was specified in the 'tcp' section");
448 return -1;
449 }
450
451 if (inst->recv_buff_is_set) {
452 FR_INTEGER_BOUND_CHECK("recv_buff", inst->recv_buff, >=, 32);
453 FR_INTEGER_BOUND_CHECK("recv_buff", inst->recv_buff, <=, INT_MAX);
454 }
455
456 FR_INTEGER_BOUND_CHECK("max_packet_size", inst->max_packet_size, >=, 20);
457 FR_INTEGER_BOUND_CHECK("max_packet_size", inst->max_packet_size, <=, 65536);
458
459 if (!inst->port) {
460 struct servent *s;
461
462 if (!inst->port_name) {
463 cf_log_err(conf, "No 'port' was specified in the 'tcp' section");
464 return -1;
465 }
466
467 s = getservbyname(inst->port_name, "tcp");
468 if (!s) {
469 cf_log_err(conf, "Unknown value for 'port_name = %s", inst->port_name);
470 return -1;
471 }
472
473 inst->port = ntohs(s->s_port);
474 }
475
476 /*
477 * Parse and create the trie for dynamic clients, even if
478 * there's no dynamic clients.
479 */
480 num = talloc_array_length(inst->allow);
481 if (!num) {
482 if (inst->dynamic_clients) {
483 cf_log_err(conf, "The 'allow' subsection MUST contain at least one 'network' entry when 'dynamic_clients = true'.");
484 return -1;
485 }
486 } else {
487 inst->trie = fr_master_io_network(inst, inst->ipaddr.af, inst->allow, inst->deny);
488 if (!inst->trie) {
489 cf_log_perr(conf, "Failed creating list of networks");
490 return -1;
491 }
492 }
493
494 ci = cf_section_to_item(mctx->mi->parent->conf); /* listen { ... } */
495 fr_assert(ci != NULL);
496 ci = cf_parent(ci);
497 fr_assert(ci != NULL);
498
499 server_cs = cf_item_to_section(ci);
500
501 /*
502 * Look up local clients, if they exist.
503 *
504 * @todo - ensure that we only parse clients which are
505 * for IPPROTO_TCP, and require a "secret".
506 */
507 if (cf_section_find_next(server_cs, NULL, "client", CF_IDENT_ANY)) {
508 inst->clients = client_list_parse_section(server_cs, IPPROTO_TCP, false);
509 if (!inst->clients) {
510 cf_log_err(conf, "Failed creating local clients");
511 return -1;
512 }
513 }
514
515 return 0;
516}
517
519{
521
522 /*
523 * Prefer local clients.
524 */
525 if (inst->clients) {
526 fr_client_t *client;
527
528 client = client_find(inst->clients, ipaddr, ipproto);
529 if (client) return client;
530 }
531
532 return client_find(NULL, ipaddr, ipproto);
533}
534
536 .common = {
537 .magic = MODULE_MAGIC_INIT,
538 .name = "tacacs_tcp",
540 .inst_size = sizeof(proto_tacacs_tcp_t),
541 .thread_inst_size = sizeof(proto_tacacs_tcp_thread_t),
542 .instantiate = mod_instantiate,
543 },
544 .default_message_size = 4096,
545 .track_duplicates = false,
546
547 .open = mod_open,
548 .read = mod_read,
549 .write = mod_write,
550 .fd_set = mod_fd_set,
551 .connection_set = mod_connection_set,
552 .network_get = mod_network_get,
553 .client_find = mod_client_find,
554 .get_name = mod_name,
555 .hexdump_set = mod_hexdump_set,
556};
static int const char char buffer[256]
Definition acutest.h:576
char const * fr_app_io_socket_name(TALLOC_CTX *ctx, fr_app_io_t const *app_io, fr_ipaddr_t const *src_ipaddr, int src_port, fr_ipaddr_t const *dst_ipaddr, int dst_port, char const *interface)
Definition app_io.c:32
module_t common
Common fields to all loadable modules.
Definition app_io.h:34
Public structure describing an I/O path for a protocol.
Definition app_io.h:33
#define STRINGIFY(x)
Definition build.h:216
#define UNUSED
Definition build.h:384
#define CONF_PARSER_TERMINATOR
Definition cf_parse.h:669
#define FR_INTEGER_BOUND_CHECK(_name, _var, _op, _bound)
Definition cf_parse.h:529
#define FR_CONF_OFFSET(_name, _struct, _field)
conf_parser_t which parses a single CONF_PAIR, writing the result to a field in a struct
Definition cf_parse.h:280
#define FR_CONF_POINTER(_name, _type, _flags, _res_p)
conf_parser_t which parses a single CONF_PAIR producing a single global result
Definition cf_parse.h:334
#define FR_CONF_OFFSET_IS_SET(_name, _type, _flags, _struct, _field)
conf_parser_t which parses a single CONF_PAIR, writing the result to a field in a struct,...
Definition cf_parse.h:294
@ CONF_FLAG_MULTI
CONF_PAIR can have multiple copies.
Definition cf_parse.h:446
@ CONF_FLAG_SUBSECTION
Instead of putting the information into a configuration structure, the configuration file routines MA...
Definition cf_parse.h:423
#define FR_CONF_OFFSET_TYPE_FLAGS(_name, _type, _flags, _struct, _field)
conf_parser_t which parses a single CONF_PAIR, writing the result to a field in a struct
Definition cf_parse.h:238
Defines a CONF_PAIR to C data type mapping.
Definition cf_parse.h:606
Common header for all CONF_* types.
Definition cf_priv.h:54
A section grouping multiple CONF_PAIR.
Definition cf_priv.h:106
CONF_ITEM * cf_section_to_item(CONF_SECTION const *cs)
Cast a CONF_SECTION to a CONF_ITEM.
Definition cf_util.c:749
CONF_SECTION * cf_item_to_section(CONF_ITEM const *ci)
Cast a CONF_ITEM to a CONF_SECTION.
Definition cf_util.c:695
CONF_SECTION * cf_section_find_next(CONF_SECTION const *cs, CONF_SECTION const *prev, char const *name1, char const *name2)
Return the next matching section.
Definition cf_util.c:1225
#define cf_log_err(_cf, _fmt,...)
Definition cf_util.h:345
#define cf_parent(_cf)
Definition cf_util.h:118
#define cf_log_perr(_cf, _fmt,...)
Definition cf_util.h:352
#define CF_IDENT_ANY
Definition cf_util.h:80
#define ERROR(fmt,...)
Definition dhcpclient.c:40
static int sockfd
Definition dhcpclient.c:55
#define MODULE_MAGIC_INIT
Stop people using different module/library/server versions together.
Definition dl_module.h:63
IPv4/6 prefix.
fr_socket_t socket
src/dst ip and port.
Definition base.h:336
Describes a host allowed to send packets to the server.
Definition client.h:80
#define PERROR(_fmt,...)
Definition log.h:233
#define DEBUG_ENABLED2
True if global debug level 1-2 messages are enabled.
Definition log.h:263
#define DEBUG3(_fmt,...)
Definition log.h:271
uint64_t total_responses
Definition stats.h:38
uint64_t total_requests
Definition stats.h:35
#define fr_time()
Definition event.c:60
bool read_hexdump
Do we debug hexdump packets as they're read.
Definition listen.h:53
CONF_SECTION * cs
of this listener
Definition listen.h:41
bool write_hexdump
Do we debug hexdump packets as they're written.
Definition listen.h:54
void const * app_io_instance
I/O path configuration context.
Definition listen.h:33
void * thread_instance
thread / socket context
Definition listen.h:34
int fd
file descriptor for this socket - set by open
Definition listen.h:28
fr_trie_t * fr_master_io_network(TALLOC_CTX *ctx, int af, fr_ipaddr_t *allow, fr_ipaddr_t *deny)
Create a trie from arrays of allow / deny IP addresses.
Definition master.c:3210
unsigned short uint16_t
@ FR_TYPE_IPV4_ADDR
32 Bit IPv4 Address.
@ FR_TYPE_COMBO_IP_PREFIX
IPv4 or IPv6 address prefix depending on length.
@ FR_TYPE_UINT32
32 Bit unsigned integer.
@ FR_TYPE_IPV6_ADDR
128 Bit IPv6 Address.
@ FR_TYPE_COMBO_IP_ADDR
IPv4 or IPv6 address depending on length.
unsigned int uint32_t
long int ssize_t
unsigned char uint8_t
int fr_nonblock(UNUSED int fd)
Definition misc.c:293
module_instance_t * mi
Instance of the module being instantiated.
Definition module_ctx.h:51
Temporary structure to hold arguments for instantiation calls.
Definition module_ctx.h:50
fr_trie_t * trie
for parsed networks
fr_ipaddr_t * deny
denied networks for dynamic clients
CONF_SECTION * cs
our configuration
#define TACACS_MAX_ATTRIBUTES
bool dynamic_clients
whether we have dynamic clients
bool read_hexdump
Do we debug hexdump read packets.
bool recv_buff_is_set
Whether we were provided with a recv_buff.
static void mod_hexdump_set(fr_listen_t *li, void *data)
static const char * packet_name[]
fr_ipaddr_t ipaddr
IP address to listen on.
fr_client_list_t * clients
local clients
char const * interface
Interface to bind to.
static fr_client_t * mod_client_find(fr_listen_t *li, fr_ipaddr_t const *ipaddr, int ipproto)
static int mod_open(fr_listen_t *li)
Open a TCP listener for TACACS+.
bool write_hexdump
Do we debug hexdump write packets.
static void mod_network_get(int *ipproto, bool *dynamic_clients, fr_trie_t const **trie, void *instance)
fr_io_address_t * connection
for connected sockets.
static const conf_parser_t networks_config[]
uint32_t max_attributes
Limit maximum decodable attributes.
uint32_t max_packet_size
for message ring buffer.
static ssize_t mod_read(fr_listen_t *li, UNUSED void **packet_ctx, fr_time_t *recv_time_p, uint8_t *buffer, size_t buffer_len, size_t *leftover)
Read TACACS data from a TCP connection.
fr_app_io_t proto_tacacs_tcp
fr_stats_t stats
statistics for this socket
fr_ipaddr_t * allow
allowed networks for dynamic clients
static ssize_t mod_write(fr_listen_t *li, UNUSED void *packet_ctx, UNUSED fr_time_t request_time, uint8_t *buffer, size_t buffer_len, size_t written)
char const * port_name
Name of the port for getservent().
static int mod_connection_set(fr_listen_t *li, fr_io_address_t *connection)
char const * name
socket name
uint16_t port
Port to listen on.
static int mod_fd_set(fr_listen_t *li, int fd)
Set the file descriptor for this socket.
uint32_t recv_buff
How big the kernel's receive buffer should be.
static char const * mod_name(fr_listen_t *li)
static int mod_instantiate(module_inst_ctx_t const *mctx)
static const conf_parser_t tcp_listen_config[]
ssize_t fr_tacacs_length(uint8_t const *buffer, size_t buffer_len)
Definition base.c:210
#define fr_assert(_expr)
Definition rad_assert.h:37
static int ipproto
#define DEBUG2(fmt,...)
static rs_t * conf
Definition radsniff.c:52
CONF_SECTION * conf
Module's instance configuration.
Definition module.h:351
void * data
Module's instance data.
Definition module.h:293
module_instance_t const * parent
Parent module's instance (if any).
Definition module.h:359
conf_parser_t const * config
How to convert a CONF_SECTION to a module instance.
Definition module.h:206
PUBLIC int snprintf(char *string, size_t length, char *format, va_alist)
Definition snprintf.c:689
int fr_socket_server_tcp(fr_ipaddr_t const *src_ipaddr, uint16_t *src_port, char const *port_name, bool async)
Open an IPv4/IPv6 TCP socket.
Definition socket.c:945
int fr_socket_bind(int sockfd, char const *ifname, fr_ipaddr_t *src_ipaddr, uint16_t *src_port)
Bind a UDP/TCP v4/v6 socket to a given ipaddr src port, and interface.
Definition socket.c:200
fr_client_t * client_find(fr_client_list_t const *clients, fr_ipaddr_t const *ipaddr, int proto)
Definition client.c:370
fr_client_list_t * client_list_parse_section(CONF_SECTION *section, int proto, TLS_UNUSED bool tls_required)
Definition client.c:475
Group of clients.
Definition client.c:50
eap_aka_sim_process_conf_t * inst
fr_aka_sim_id_type_t type
char const * fr_syserror(int num)
Guaranteed to be thread-safe version of strerror.
Definition syserror.c:243
#define FR_HEADER_LENGTH
Definition tacacs.h:26
@ FR_TAC_PLUS_AUTHOR_STATUS_ERROR
Definition tacacs.h:214
@ FR_TAC_PLUS_ACCT
Definition tacacs.h:67
@ FR_TAC_PLUS_AUTHEN
Definition tacacs.h:65
@ FR_TAC_PLUS_AUTHOR
Definition tacacs.h:66
fr_tacacs_packet_hdr_t hdr
Definition tacacs.h:277
fr_tacacs_type_t type
Definition tacacs.h:97
@ FR_TAC_PLUS_ACCT_STATUS_ERROR
Definition tacacs.h:256
@ FR_TAC_PLUS_AUTHEN_STATUS_ERROR
Definition tacacs.h:157
#define talloc_get_type_abort_const
Definition talloc.h:117
"server local" time.
Definition time.h:69
#define FR_PROTO_HEX_DUMP(_data, _data_len, _fmt,...)
Definition proto.h:42
char const * fr_strerror(void)
Get the last library error.
Definition strerror.c:558
#define DOC_ROOT_REF(_x)
Definition version.h:90
static fr_slen_t data
Definition value.h:1340