The FreeRADIUS server $Id: f3670dba8951ca10eb4948feb3dc3db9423a334f $
Loading...
Searching...
No Matches
proto_control_unix.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: d877815580abc745303d5f62f22f1a887f2fccf9 $
19 * @file proto_control_unix.c
20 * @brief Control handler for Unix sockets.
21 *
22 * @copyright 2018 The FreeRADIUS server project.
23 * @copyright 2018 Alan DeKok (aland@deployingradius.com)
24 */
25#include <freeradius-devel/server/main_config.h>
26
27#include <freeradius-devel/io/application.h>
28#include <freeradius-devel/io/listen.h>
29#include <freeradius-devel/io/schedule.h>
30#include <freeradius-devel/util/perm.h>
31#include <freeradius-devel/util/trie.h>
32#include <freeradius-devel/util/file.h>
33
34#include <netdb.h>
35
36#include "proto_control.h"
37
38#include <freeradius-devel/bio/fd.h>
39
40#ifdef HAVE_SYS_STAT_H
41#endif
42
43#include <libgen.h>
44
45typedef struct {
46 char const *name; //!< socket name
47
48 int sockfd;
49
51
52 fr_stats_t stats; //!< statistics for this socket
53
54 fr_io_address_t *connection; //!< for connected sockets.
55
56
57 fr_io_data_read_t read; //!< function to process data *after* reading
58 FILE *stdout_fp;
59 FILE *stderr_fp;
60
62 FILE *misc;
63 fr_cmd_info_t *info; //!< for running commands
64
65 fr_client_t radclient; //!< for faking out clients
67
68typedef struct {
69 CONF_SECTION *cs; //!< our configuration
70
71 char const *filename; //!< filename of control socket
72 char const *uid_name; //!< name of UID to require
73 char const *gid_name; //!< name of GID to require
74 uid_t uid; //!< UID value
75 gid_t gid; //!< GID value
76
77 uint32_t recv_buff; //!< How big the kernel's receive buffer should be.
78
79 uint32_t max_packet_size; //!< for message ring buffer.
80
81 char const *mode_name;
83
84 bool recv_buff_is_set; //!< Whether we were provided with a receive
85 //!< buffer value.
86 char const *peer_uid_name; //!< name of UID to require
87 char const *peer_gid_name; //!< name of GID to require
88 uid_t peer_uid; //!< UID value
89 gid_t peer_gid; //!< GID value
90
92
94 { FR_CONF_OFFSET("uid", proto_control_unix_t, peer_uid_name) },
95 { FR_CONF_OFFSET("gid", proto_control_unix_t, peer_gid_name) },
96
98};
99
102 .dflt = "${run_dir}/radiusd.sock" },
103 { FR_CONF_OFFSET("uid", proto_control_unix_t, uid_name) },
104 { FR_CONF_OFFSET("gid", proto_control_unix_t, gid_name) },
105 { FR_CONF_OFFSET("mode", proto_control_unix_t, mode_name) },
106
107 { FR_CONF_OFFSET_IS_SET("recv_buff", FR_TYPE_UINT32, 0, proto_control_unix_t, recv_buff) },
108
109 { FR_CONF_OFFSET("max_packet_size", proto_control_unix_t, max_packet_size), .dflt = "4096" } ,
110
111 { FR_CONF_POINTER("peercred", 0, CONF_FLAG_SUBSECTION, NULL), .subcs = (void const *) peercred_config },
112
114};
115
116#define FR_READ (1)
117#define FR_WRITE (2)
118
120 { L("read-only"), FR_READ },
121 { L("read-write"), FR_READ | FR_WRITE },
122 { L("ro"), FR_READ },
123 { L("rw"), FR_READ | FR_WRITE }
124};
126
127#undef INT
128#define INT size_t
129#define SINT ssize_t
130
131static SINT write_stdout(void *instance, char const *buffer, INT buffer_size)
132{
133 proto_control_unix_thread_t *thread = talloc_get_type_abort(instance, proto_control_unix_thread_t);
134
135 return fr_conduit_write(thread->sockfd, FR_CONDUIT_STDOUT, buffer, buffer_size);
136}
137
138static SINT write_stderr(void *instance, char const *buffer, INT buffer_size)
139{
140 proto_control_unix_thread_t *thread = talloc_get_type_abort(instance, proto_control_unix_thread_t)
141;
142 return fr_conduit_write(thread->sockfd, FR_CONDUIT_STDERR, buffer, buffer_size);
143}
144
145static SINT write_misc(void *instance, char const *buffer, INT buffer_size)
146{
147 proto_control_unix_thread_t *thread = talloc_get_type_abort(instance, proto_control_unix_thread_t);
148
149 return fr_conduit_write(thread->sockfd, thread->misc_conduit, buffer, buffer_size);
150}
151
152
153/*
154 * Run a command.
155 */
156static ssize_t mod_read_command(fr_listen_t *li, UNUSED void **packet_ctx, UNUSED fr_time_t *recv_time_p, uint8_t *buffer, UNUSED size_t buffer_len, UNUSED size_t *leftover)
157{
159 proto_control_unix_thread_t *thread = talloc_get_type_abort(li->thread_instance, proto_control_unix_thread_t);
161 uint32_t status;
162 uint8_t *cmd = buffer + sizeof(*hdr);
163 int rcode;
164 char string[1024];
165
166 hdr->length = ntohl(hdr->length);
167 if (hdr->length >= sizeof(string)) goto fail;
168
169 /*
170 * If the write gives us nothing, send an empty SUCCESS back.
171 */
172 if (!hdr->length) {
173 status = FR_CONDUIT_SUCCESS;
174 goto done;
175 }
176
177 /*
178 * fr_command_run() expects a zero-terminated string...
179 */
180 memcpy(string, cmd, hdr->length);
181 string[hdr->length] = '\0';
182
183 /*
184 * Content is the string we need help for.
185 */
186 if (htons(hdr->conduit) == FR_CONDUIT_HELP) {
187 fr_radmin_help(thread->stdout_fp, string);
188 // @todo - have in-band signalling saying that the help is done?
189 // we want to be able to say that *this* help is done.
190 // the best way to do that is to have a token, and every command
191 // from the other end sends a token, and we echo it back here...
192 // Or, since we currently can't do streaming commands, it's OK?
193 // Or, we assume that origin 0 is for interactive commands,
194 // and that the other origins are for streaming output...
195 status = FR_CONDUIT_SUCCESS;
196 goto done;
197 }
198
199 if (htons(hdr->conduit) == FR_CONDUIT_COMPLETE) {
200 uint16_t start;
201
202 if (hdr->length < 2) goto fail;
203
204 start = (string[0] << 8) | string[1];
205
207
208 fr_radmin_complete(thread->misc, string + 2, start);
210 status = FR_CONDUIT_SUCCESS;
211 goto done;
212 }
213
214 if (htons(hdr->conduit) != FR_CONDUIT_STDIN) {
215 DEBUG("ERROR: Ignoring data which is from wrong input");
216 return 0;
217 }
218
219 DEBUG("radmin-remote> %.*s", (int) hdr->length, cmd);
220
221 rcode = fr_radmin_run(thread->info, thread->stdout_fp, thread->stderr_fp, string, inst->read_only);
222 if (rcode < 0) {
223fail:
224 status = FR_CONDUIT_FAIL;
225
226 } else if (rcode == 0) {
227 /*
228 * The other end should keep track of it's
229 * context, and send us full lines.
230 */
231 (void) fr_command_clear(0, thread->info);
232 status = FR_CONDUIT_PARTIAL;
233 } else {
234 status = FR_CONDUIT_SUCCESS;
235 }
236
237done:
238 status = htonl(status);
239 (void) fr_conduit_write(thread->sockfd, FR_CONDUIT_CMD_STATUS, &status, sizeof(status));
240
241 return 0;
242}
243
244/*
245 * Process an initial connection request.
246 */
247static ssize_t mod_read_init(fr_listen_t *li, UNUSED void **packet_ctx, UNUSED fr_time_t *recv_time_p, uint8_t *buffer, size_t buffer_len, UNUSED size_t *leftover)
248{
249 proto_control_unix_thread_t *thread = talloc_get_type_abort(li->thread_instance, proto_control_unix_thread_t);
251 uint32_t magic;
252
253 if (htons(hdr->conduit) != FR_CONDUIT_INIT_ACK) {
254 DEBUG("ERROR: Connection is missing initial ACK packet.");
255 return -1;
256 }
257
258 if (buffer_len < sizeof(*hdr)) {
259 DEBUG("ERROR: Initial ACK is malformed");
260 return -1;
261 }
262
263 if (htonl(hdr->length) != 8) {
264 DEBUG("ERROR: Initial ACK has wrong length (%lu).", (size_t) htonl(hdr->length));
265 return -1;
266 }
267
268 memcpy(&magic, buffer + sizeof(*hdr), sizeof(magic));
269 magic = htonl(magic);
270 if (magic != FR_CONDUIT_MAGIC) {
271 DEBUG("ERROR: Connection from incompatible version of radmin.");
272 return -1;
273 }
274
275 /*
276 * Next 4 bytes are zero, we ignore them.
277 */
278 if (write(thread->sockfd, buffer, buffer_len) < (ssize_t) buffer_len) {
279 DEBUG("ERROR: Blocking write to socket... oops");
280 return -1;
281 }
282
283 thread->read = mod_read_command;
284
285 return 0;
286}
287
288static ssize_t mod_read(fr_listen_t *li, void **packet_ctx, fr_time_t *recv_time_p, uint8_t *buffer, size_t buffer_len, size_t *leftover)
289{
290 proto_control_unix_thread_t *thread = talloc_get_type_abort(li->thread_instance, proto_control_unix_thread_t);
291 ssize_t data_size;
292
293 fr_conduit_type_t conduit;
294 bool want_more;
295
296 /*
297 * Read data into the buffer.
298 */
299 data_size = fr_conduit_read_async(thread->sockfd, &conduit, buffer, buffer_len, leftover, &want_more);
300 if (data_size < 0) {
301 DEBUG2("proto_control_unix got read error %zd: %s", data_size, fr_syserror(errno));
302 return data_size;
303 }
304
305 /*
306 * Note that we return ERROR for all bad packets, as
307 * there's no point in reading packets from a TCP
308 * connection which isn't sending us properly formatted
309 * packets.
310 */
311
312 /*
313 * Not enough for a full packet, ask the caller to read more.
314 */
315 if (want_more) {
316 return 0;
317 }
318
319 // @todo - maybe convert timestamp?
320 *recv_time_p = fr_time();
321 *leftover = 0;
322
323 /*
324 * Print out what we received.
325 */
326 DEBUG3("proto_control_unix - Received command packet length %d on %s",
327 (int) data_size, thread->name);
328
329 /*
330 * Run the state machine to process the rest of the packet.
331 */
332 return thread->read(li, packet_ctx, recv_time_p, buffer, (size_t) data_size, leftover);
333}
334
335
336static ssize_t mod_write(fr_listen_t *li, UNUSED void *packet_ctx, UNUSED fr_time_t request_time,
337 uint8_t *buffer, size_t buffer_len, size_t written)
338{
339 proto_control_unix_thread_t *thread = talloc_get_type_abort(li->thread_instance, proto_control_unix_thread_t);
340 ssize_t data_size;
341
342 /*
343 * @todo - share a stats interface with the parent? or
344 * put the stats in the listener, so that proto_control
345 * can update them, too.. <sigh>
346 */
347 thread->stats.total_responses++;
348
349 /*
350 * Only write replies if they're RADIUS packets.
351 * sometimes we want to NOT send a reply...
352 */
353 data_size = write(thread->sockfd, buffer + written, buffer_len - written);
354
355 /*
356 * This socket is dead. That's an error...
357 */
358 if (data_size <= 0) return data_size;
359
360#ifdef __COVERITY__
361 /*
362 * data_size and written have type size_t, so
363 * their sum can at least in theory exceed SSIZE_MAX.
364 * We add this check to placate Coverity.
365 *
366 * When Coverity examines this function it doesn't have
367 * the caller context to see that it's honoring needed
368 * preconditions (buffer_len <=SSIZE_MAX, and the loop
369 * schema needed to use this function).
370 */
371 if (data_size + written > SSIZE_MAX) return -1;
372#endif
373
374 return data_size + written;
375}
376
377
379{
380 proto_control_unix_thread_t *thread = talloc_get_type_abort(li->thread_instance, proto_control_unix_thread_t);
381
382 thread->connection = connection;
383
384 // @todo - set name to path + peer ID of other end?
385
386 return 0;
387}
388
389static void mod_network_get(int *ipproto, bool *dynamic_clients, fr_trie_t const **trie, UNUSED void *instance)
390{
391 *ipproto = IPPROTO_TCP;
392 *dynamic_clients = false;
393 *trie = NULL;
394}
395
396/** Open a UNIX listener for control sockets
397 *
398 */
399static int mod_open(fr_listen_t *li)
400{
402 proto_control_unix_thread_t *thread = talloc_get_type_abort(li->thread_instance, proto_control_unix_thread_t);
403
404 CONF_ITEM *ci;
405 CONF_SECTION *server_cs;
406
407 fr_bio_fd_info_t const *info;
409
410 fr_assert(!thread->connection);
411
412 cfg = (fr_bio_fd_config_t) {
414 .socket_type = SOCK_STREAM,
415 .path = inst->filename,
416 .uid = inst->uid,
417 .gid = inst->gid,
418 .perm = 0600,
419 .async = true,
420 };
421
422 thread->fd_bio = fr_bio_fd_alloc(thread, &cfg, 0);
423 if (!thread->fd_bio) {
424 cf_log_err(li->cs, "Failed opening UNIX path %s - %s", inst->filename, fr_strerror());
425 return -1;
426 }
427
428 info = fr_bio_fd_info(thread->fd_bio);
429 fr_assert(info != NULL);
430
431 li->fd = thread->sockfd = info->socket.fd;
432
433 ci = cf_parent(inst->cs); /* listen { ... } */
434 fr_assert(ci != NULL);
435 ci = cf_parent(ci);
436 fr_assert(ci != NULL);
437
438 server_cs = cf_item_to_section(ci);
439
440 thread->name = talloc_typed_asprintf(thread, "control_unix from filename %s", inst->filename);
441
442 /*
443 * Set up the fake client
444 */
445 thread->radclient.longname = inst->filename;
446 thread->radclient.ipaddr.af = AF_INET;
447 thread->radclient.src_ipaddr.af = AF_INET;
448
449 thread->radclient.server_cs = server_cs;
450 fr_assert(thread->radclient.server_cs != NULL);
452
453 return 0;
454}
455
456#if !defined(HAVE_GETPEEREID) && defined(SO_PEERCRED)
457static int getpeereid(int s, uid_t *euid, gid_t *egid)
458{
459 struct ucred cr;
460 socklen_t cl = sizeof(cr);
461
462 if (getsockopt(s, SOL_SOCKET, SO_PEERCRED, &cr, &cl) < 0) {
463 return -1;
464 }
465
466 *euid = cr.uid;
467 *egid = cr.gid;
468 return 0;
469}
470
471/* we now have getpeereid() in this file */
472#define HAVE_GETPEEREID (1)
473
474#endif /* HAVE_GETPEEREID */
475
477{
478 if (thread->stdout_fp) fclose(thread->stdout_fp);
479 if (thread->stderr_fp) fclose(thread->stderr_fp);
480 if (thread->misc) fclose(thread->misc);
481
482 return 0;
483}
484
485/** Set the file descriptor for this socket.
486 *
487 */
488static int mod_fd_set(fr_listen_t *li, int fd)
489{
491 proto_control_unix_thread_t *thread = talloc_get_type_abort(li->thread_instance, proto_control_unix_thread_t);
492
494
495#ifdef HAVE_GETPEEREID
496 /*
497 * Perform user authentication.
498 *
499 * @todo - this really belongs in the accept() callback,
500 * so that we don't create an entirely new listener and
501 * then close it.
502 */
503 if (inst->peer_uid || inst->peer_gid) {
504 uid_t uid;
505 gid_t gid;
506
507 if (getpeereid(fd, &uid, &gid) < 0) {
508 ERROR("Failed getting peer credentials for %s: %s",
509 inst->filename, fr_syserror(errno));
510 return -1;
511 }
512
513 /*
514 * Only do UID checking if the caller is
515 * non-root. The superuser can do anything, so
516 * we might as well let them do anything.
517 */
518 if (uid != 0) do {
519 /*
520 * Allow entry if UID or GID matches.
521 */
522 if (inst->peer_uid_name && (inst->peer_uid == uid)) break;
523 if (inst->peer_gid_name && (inst->peer_gid == gid)) break;
524
525 if (inst->peer_uid_name && (inst->peer_uid != uid)) {
526 ERROR("Unauthorized connection to %s from uid %ld",
527 inst->filename, (long int) uid);
528 return -1;
529 }
530
531 if (inst->peer_gid_name && (inst->peer_gid != gid)) {
532 ERROR("Unauthorized connection to %s from gid %ld",
533 inst->filename, (long int) gid);
534 return -1;
535 }
536
537 } while (0);
538
539 thread->name = talloc_typed_asprintf(thread, "proto unix filename %s from peer UID %u GID %u",
540 inst->filename,
541 (unsigned int) uid, (unsigned int) gid);
542 } else
543#endif
544
545
546 thread->name = talloc_typed_asprintf(thread, "proto unix filename %s", inst->filename);
547
548 thread->sockfd = fd;
549 thread->read = mod_read_init;
550
551 /*
552 * These must be set separately as they have different prototypes.
553 */
554 io.read = NULL;
555 io.seek = NULL;
556 io.close = NULL;
557 io.write = write_stdout;
558
559 thread->stdout_fp = fopencookie(thread, "w", io);
560 if (!thread->stdout_fp) {
561 fr_strerror_printf("Failed to open stdout cookie: %s", fr_syserror(errno));
562 return -1;
563 }
564
565 io.write = write_stderr;
566 thread->stderr_fp = fopencookie(thread, "w", io);
567 if (!thread->stderr_fp) {
568 fr_strerror_printf("Failed to open stderr cookie: %s", fr_syserror(errno));
569 return -1;
570 }
571
572 io.write = write_misc;
573 thread->misc = fopencookie(thread, "w", io);
574 if (!thread->misc) {
575 fr_strerror_printf("Failed to open misc cookie: %s", fr_syserror(errno));
576 return -1;
577 }
578
579 talloc_set_destructor(thread, _close_cookies);
580
581 /*
582 * @todo - if we move to a binary protocol, then we
583 * should change this to a small (i.e. 1K) buffer. The
584 * data should be sent over to the remote side as quickly
585 * as possible.
586 */
587 (void) setvbuf(thread->stdout_fp, NULL, _IOLBF, 0);
588 (void) setvbuf(thread->stderr_fp, NULL, _IOLBF, 0);
589 (void) setvbuf(thread->misc, NULL, _IOLBF, 0);
590
591 thread->info = talloc_zero(thread, fr_cmd_info_t);
592 fr_command_info_init(thread, thread->info);
593
594 return 0;
595}
596
597static char const *mod_name(fr_listen_t *li)
598{
599 proto_control_unix_thread_t *thread = talloc_get_type_abort(li->thread_instance, proto_control_unix_thread_t);
600
601 return thread->name;
602}
603
604
605static int mod_instantiate(module_inst_ctx_t const *mctx)
606{
607 proto_control_unix_t *inst = talloc_get_type_abort(mctx->mi->data, proto_control_unix_t);
608 CONF_SECTION *conf = mctx->mi->conf;
609
610 inst->cs = conf;
611
612 if (inst->recv_buff_is_set) {
613 FR_INTEGER_BOUND_CHECK("recv_buff", inst->recv_buff, >=, 32);
614 FR_INTEGER_BOUND_CHECK("recv_buff", inst->recv_buff, <=, INT_MAX);
615 }
616
617 if (inst->uid_name) {
618 struct passwd *pwd;
619
620 if (fr_perm_getpwnam(conf, &pwd, inst->uid_name) < 0) {
621 PERROR("Failed getting uid for %s", inst->uid_name);
622 return -1;
623 }
624 inst->uid = pwd->pw_uid;
625 talloc_free(pwd);
626
627 } else if (main_config->server_uid) {
628 inst->uid = main_config->server_uid;
629
630 } else {
631 inst->uid = getuid();
632 }
633
634 if (inst->gid_name) {
635 if (fr_perm_gid_from_str(conf, &inst->gid, inst->gid_name) < 0) {
636 PERROR("Failed getting gid for %s", inst->gid_name);
637 return -1;
638 }
639
640 } else if (main_config->server_gid) {
641 inst->gid = main_config->server_gid;
642
643 } else {
644 inst->gid = getgid();
645 }
646
647 /*
648 * And for peer creds
649 */
650 if (inst->peer_uid_name) {
651 struct passwd *pwd;
652
653 if (fr_perm_getpwnam(conf, &pwd, inst->peer_uid_name) < 0) {
654 PERROR("Failed getting peer uid for %s", inst->peer_uid_name);
655 return -1;
656 }
657 inst->peer_uid = pwd->pw_uid;
658 talloc_free(pwd);
659 }
660
661 if (inst->peer_gid_name) {
662 if (fr_perm_gid_from_str(conf, &inst->peer_gid, inst->peer_gid_name) < 0) {
663 PERROR("Failed getting peer gid for %s", inst->peer_gid_name);
664 return -1;
665 }
666 }
667
668 if (!inst->mode_name) {
669 inst->read_only = true;
670 } else {
671 int mode;
672
673 mode = fr_table_value_by_str(mode_names, inst->mode_name, 0);
674 if (!mode) {
675 ERROR("Invalid mode name \"%s\"",
676 inst->mode_name);
677 return -1;
678 }
679
680 if ((mode & FR_WRITE) == 0) {
681 inst->read_only = true;
682 } else {
683 inst->read_only = false;
684 }
685 }
686
687 FR_INTEGER_BOUND_CHECK("max_packet_size", inst->max_packet_size, >=, 20);
688 FR_INTEGER_BOUND_CHECK("max_packet_size", inst->max_packet_size, <=, 65536);
689
690 return 0;
691}
692
694{
695 proto_control_unix_thread_t *thread = talloc_get_type_abort(li->thread_instance, proto_control_unix_thread_t);
696
697 return &thread->radclient;
698}
699
702 .common = {
703 .magic = MODULE_MAGIC_INIT,
704 .name = "control_unix",
706 .inst_size = sizeof(proto_control_unix_t),
707 .thread_inst_size = sizeof(proto_control_unix_thread_t),
708 .instantiate = mod_instantiate
709 },
710 .default_message_size = 4096,
711
712 .open = mod_open,
713 .read = mod_read,
714 .write = mod_write,
715 .fd_set = mod_fd_set,
716 .connection_set = mod_connection_set,
717 .network_get = mod_network_get,
718 .client_find = mod_client_find,
719 .get_name = mod_name,
720};
static int const char char buffer[256]
Definition acutest.h:576
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
int fr_radmin_run(fr_cmd_info_t *info, FILE *fp, FILE *fp_err, char *str, bool read_only)
Run a command from an input string.
Definition radmin.c:1184
void fr_radmin_complete(FILE *fp, const char *text, int start)
Definition radmin.c:1220
void fr_radmin_help(FILE *fp, char const *text)
Definition radmin.c:1215
#define L(_str)
Helper for initialising arrays of string literals.
Definition build.h:228
#define UNUSED
Definition build.h:384
#define NUM_ELEMENTS(_t)
Definition build.h:406
#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
#define FR_CONF_OFFSET_FLAGS(_name, _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:268
@ CONF_FLAG_REQUIRED
Error out if no matching CONF_PAIR is found, and no dflt value is set.
Definition cf_parse.h:429
@ CONF_FLAG_SUBSECTION
Instead of putting the information into a configuration structure, the configuration file routines MA...
Definition cf_parse.h:423
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
char const * cf_section_name2(CONF_SECTION const *cs)
Return the second identifier of a CONF_SECTION.
Definition cf_util.c:1362
CONF_SECTION * cf_item_to_section(CONF_ITEM const *ci)
Cast a CONF_ITEM to a CONF_SECTION.
Definition cf_util.c:695
#define cf_log_err(_cf, _fmt,...)
Definition cf_util.h:345
#define cf_parent(_cf)
Definition cf_util.h:118
int fr_command_clear(int new_argc, fr_cmd_info_t *info)
Clear out any value boxes etc.
Definition command.c:2377
void fr_command_info_init(TALLOC_CTX *ctx, fr_cmd_info_t *info)
Initialize an fr_cmd_info_t structure.
Definition command.c:2405
ssize_t fr_conduit_write(int fd, fr_conduit_type_t conduit, void const *out, size_t outlen)
Definition conduit.c:227
ssize_t fr_conduit_read_async(int fd, fr_conduit_type_t *pconduit, void *out, size_t outlen, size_t *leftover, bool *want_more)
Definition conduit.c:74
#define FR_CONDUIT_MAGIC
Definition conduit.h:32
uint16_t conduit
Definition conduit.h:77
@ FR_CONDUIT_FAIL
Definition conduit.h:54
@ FR_CONDUIT_PARTIAL
Definition conduit.h:55
@ FR_CONDUIT_SUCCESS
Definition conduit.h:56
uint32_t length
Definition conduit.h:78
fr_conduit_type_t
Definition conduit.h:34
@ FR_CONDUIT_STDOUT
Definition conduit.h:36
@ FR_CONDUIT_HELP
Definition conduit.h:43
@ FR_CONDUIT_STDIN
Definition conduit.h:35
@ FR_CONDUIT_STDERR
Definition conduit.h:37
@ FR_CONDUIT_CMD_STATUS
Definition conduit.h:38
@ FR_CONDUIT_INIT_ACK
Definition conduit.h:39
@ FR_CONDUIT_COMPLETE
Definition conduit.h:44
#define ERROR(fmt,...)
Definition dhcpclient.c:40
#define DEBUG(fmt,...)
Definition dhcpclient.c:38
#define MODULE_MAGIC_INIT
Stop people using different module/library/server versions together.
Definition dl_module.h:63
fr_bio_t * fr_bio_fd_alloc(TALLOC_CTX *ctx, fr_bio_fd_config_t const *cfg, size_t offset)
Allocate a FD bio.
Definition fd.c:971
fr_bio_fd_info_t const * fr_bio_fd_info(fr_bio_t *bio)
Returns a pointer to the bio-specific information.
Definition fd.c:1295
@ FR_BIO_FD_LISTEN
returns new fd in buffer on fr_bio_read() or fr_bio_fd_accept()
Definition fd.h:64
fr_bio_fd_type_t type
accept, connected, unconnected, etc.
Definition fd.h:76
Configuration for sockets.
Definition fd.h:75
Run-time status of the socket.
Definition fd.h:126
FILE * fopencookie(void *cookie, const char *mode, cookie_io_functions_t io_funcs)
Definition fopencookie.c:99
cookie_close_function_t close
Definition fopencookie.h:55
cookie_seek_function_t seek
Definition fopencookie.h:54
cookie_read_function_t read
Definition fopencookie.h:52
cookie_write_function_t write
Definition fopencookie.h:53
talloc_free(hp)
int af
Address family.
Definition inet.h:64
IPv4/6 prefix.
ssize_t(* fr_io_data_read_t)(fr_listen_t *li, void **packet_ctx, fr_time_t *recv_time, uint8_t *buffer, size_t buffer_len, size_t *leftover)
Read from a socket.
Definition base.h:176
char const * server
Name of the virtual server client is associated with.
Definition client.h:127
fr_ipaddr_t ipaddr
IPv4/IPv6 address of the host.
Definition client.h:83
fr_ipaddr_t src_ipaddr
IPv4/IPv6 address to send responses from (family must match ipaddr).
Definition client.h:84
char const * longname
Client identifier.
Definition client.h:87
CONF_SECTION * server_cs
Virtual server that the client is associated with.
Definition client.h:128
Describes a host allowed to send packets to the server.
Definition client.h:80
#define PERROR(_fmt,...)
Definition log.h:233
#define DEBUG3(_fmt,...)
Definition log.h:271
uint64_t total_responses
Definition stats.h:38
#define fr_time()
Definition event.c:60
CONF_SECTION * cs
of this listener
Definition listen.h:41
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
main_config_t const * main_config
Main server configuration.
Definition main_config.c:56
unsigned short uint16_t
@ FR_TYPE_UINT32
32 Bit unsigned integer.
unsigned int uint32_t
long int ssize_t
unsigned char uint8_t
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
int fr_perm_getpwnam(TALLOC_CTX *ctx, struct passwd **out, char const *name)
Resolve a username to a passwd entry.
Definition perm.c:268
int fr_perm_gid_from_str(TALLOC_CTX *ctx, gid_t *out, char const *name)
Resolve a group name to a GID.
Definition perm.c:475
fr_client_t radclient
for faking out clients
char const * name
socket name
static void mod_network_get(int *ipproto, bool *dynamic_clients, fr_trie_t const **trie, UNUSED void *instance)
static ssize_t mod_read(fr_listen_t *li, void **packet_ctx, fr_time_t *recv_time_p, uint8_t *buffer, size_t buffer_len, size_t *leftover)
static const conf_parser_t peercred_config[]
char const * filename
filename of control socket
static int _close_cookies(proto_control_unix_thread_t *thread)
char const * gid_name
name of GID to require
bool recv_buff_is_set
Whether we were provided with a receive buffer value.
fr_cmd_info_t * info
for running commands
fr_io_data_read_t read
function to process data after reading
uint32_t recv_buff
How big the kernel's receive buffer should be.
fr_io_address_t * connection
for connected sockets.
fr_app_io_t proto_control_unix
static int mod_open(fr_listen_t *li)
Open a UNIX listener for control sockets.
static SINT write_stdout(void *instance, char const *buffer, INT buffer_size)
char const * peer_uid_name
name of UID to require
CONF_SECTION * cs
our configuration
char const * peer_gid_name
name of GID to require
static ssize_t mod_read_init(fr_listen_t *li, UNUSED void **packet_ctx, UNUSED fr_time_t *recv_time_p, uint8_t *buffer, size_t buffer_len, UNUSED size_t *leftover)
#define FR_WRITE
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)
#define FR_READ
static SINT write_misc(void *instance, char const *buffer, INT buffer_size)
#define SINT
static int mod_connection_set(fr_listen_t *li, fr_io_address_t *connection)
static SINT write_stderr(void *instance, char const *buffer, INT buffer_size)
static int mod_fd_set(fr_listen_t *li, int fd)
Set the file descriptor for this socket.
fr_stats_t stats
statistics for this socket
static char const * mod_name(fr_listen_t *li)
uint32_t max_packet_size
for message ring buffer.
static int mod_instantiate(module_inst_ctx_t const *mctx)
static size_t mode_names_len
static ssize_t mod_read_command(fr_listen_t *li, UNUSED void **packet_ctx, UNUSED fr_time_t *recv_time_p, uint8_t *buffer, UNUSED size_t buffer_len, UNUSED size_t *leftover)
static fr_table_num_sorted_t mode_names[]
static const conf_parser_t unix_listen_config[]
char const * uid_name
name of UID to require
static fr_client_t * mod_client_find(fr_listen_t *li, UNUSED fr_ipaddr_t const *ipaddr, UNUSED int ipproto)
#define INT
#define fr_assert(_expr)
Definition rad_assert.h:37
static int ipproto
#define DEBUG2(fmt,...)
static bool done
Definition radclient.c:80
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
conf_parser_t const * config
How to convert a CONF_SECTION to a module instance.
Definition module.h:206
eap_aka_sim_process_conf_t * inst
char const * fr_syserror(int num)
Guaranteed to be thread-safe version of strerror.
Definition syserror.c:243
#define fr_table_value_by_str(_table, _name, _def)
Convert a string to a value using a sorted or ordered table.
Definition table.h:685
An element in a lexicographically sorted array of name to num mappings.
Definition table.h:49
char * talloc_typed_asprintf(TALLOC_CTX *ctx, char const *fmt,...)
Call talloc vasprintf, setting the type on the new chunk correctly.
Definition talloc.c:546
#define talloc_get_type_abort_const
Definition talloc.h:117
Definition testlib.h:54
"server local" time.
Definition time.h:69
char const * fr_strerror(void)
Get the last library error.
Definition strerror.c:558
#define fr_strerror_printf(_fmt,...)
Log to thread local error buffer.
Definition strerror.h:64