The FreeRADIUS server $Id: 15bac2a4c627c01d1aa2047687b3418955ac7f00 $
Loading...
Searching...
No Matches
client_udp.c
Go to the documentation of this file.
1/*
2 * This library is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU Lesser General Public
4 * License as published by the Free Software Foundation; either
5 * version 2.1 of the License, or (at your option) any later version.
6 *
7 * This library 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 GNU
10 * Lesser General Public License for more details.
11 *
12 * You should have received a copy of the GNU Lesser General Public
13 * License along with this library; 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: 659a29aec2b1efc996f8d9aab0b00e9f6dc604af $
19 *
20 * @file protocols/radius/client_udp.c
21 * @brief Functions to support RADIUS bio handlers for client udp sockets
22 *
23 * @copyright 2024 Network RADIUS SAS (legal@networkradius.com)
24 */
25RCSID("$Id: 659a29aec2b1efc996f8d9aab0b00e9f6dc604af $")
26
27#include <freeradius-devel/bio/packet.h>
28#include <freeradius-devel/radius/client_udp.h>
29#include <freeradius-devel/radius/client_priv.h>
30
31/** Allocate an ID, and write one packet.
32 *
33 */
35{
36 fr_radius_client_fd_bio_t *my = talloc_get_type_abort(bio, fr_radius_client_fd_bio_t);
37
38 if (!packet->data) return fr_radius_client_fd_bio_write(my, pctx, packet, list);
39
40 return fr_bio_write(my->common.bio, &packet->socket, packet->data, packet->data_len);
41}
42
43/** Allocate a RADIUS bio for writing client packets
44 *
45 * It also verifies that the packets we receive are valid for RADIUS.
46 */
48{
50
51 my = fr_radius_client_fd_bio_alloc(ctx, 2 * 4096, cfg, fd_cfg);
52 if (!my) return NULL;
53
54 if (fr_bio_mem_set_verify(my->mem, fr_radius_bio_verify_datagram, &my->cfg.verify, true) < 0) {
56 return NULL;
57 }
58
59 my->common.read = fr_radius_client_fd_bio_read;
60 my->common.write = fr_radius_client_udp_bio_write;
61
62 return (fr_bio_packet_t *) my;
63}
static ssize_t fr_bio_write(fr_bio_t *bio, void *packet_ctx, void const *buffer, size_t size)
Write raw data to a bio.
Definition base.h:184
#define RCSID(id)
Definition build.h:487
static int fr_radius_client_udp_bio_write(fr_bio_packet_t *bio, void *pctx, fr_packet_t *packet, fr_pair_list_t *list)
Allocate an ID, and write one packet.
Definition client_udp.c:34
fr_bio_packet_t * fr_radius_client_udp_bio_alloc(TALLOC_CTX *ctx, fr_radius_client_config_t *cfg, fr_bio_fd_config_t const *fd_cfg)
Allocate a RADIUS bio for writing client packets.
Definition client_udp.c:47
Configuration for sockets.
Definition fd.h:80
void fr_bio_shutdown & my
Definition fd_errno.h:70
talloc_free(hp)
int fr_bio_mem_set_verify(fr_bio_t *bio, fr_bio_verify_t verify, void *verify_ctx, bool datagram)
Set the verification function for memory bios.
Definition mem.c:906
fr_bio_verify_action_t fr_radius_bio_verify_datagram(UNUSED fr_bio_t *bio, void *verify_ctx, UNUSED void *packet_ctx, const void *data, size_t *size)
And verify a datagram packet.
Definition bio.c:70
int fr_radius_client_fd_bio_read(fr_bio_packet_t *bio, void **pctx_p, fr_packet_t **packet_p, UNUSED TALLOC_CTX *out_ctx, fr_pair_list_t *out)
Definition client.c:576
int fr_radius_client_fd_bio_write(fr_radius_client_fd_bio_t *my, void *pctx, fr_packet_t *packet, fr_pair_list_t *list)
Definition client.c:176
fr_radius_client_fd_bio_t * fr_radius_client_fd_bio_alloc(TALLOC_CTX *ctx, size_t read_size, fr_radius_client_config_t *cfg, fr_bio_fd_config_t const *fd_cfg)
Definition client.c:64
fr_socket_t socket
This packet was received on.
Definition packet.h:57
uint8_t * data
Packet data (body).
Definition packet.h:63
size_t data_len
Length of packet data.
Definition packet.h:64