The FreeRADIUS server  $Id: 15bac2a4c627c01d1aa2047687b3418955ac7f00 $
Data Structures | Typedefs | Functions
client.h File Reference

API to add client definitions to the server, both on startup and at runtime. More...

#include <freeradius-devel/util/time.h>
#include <freeradius-devel/server/request.h>
#include <freeradius-devel/server/socket.h>
#include <freeradius-devel/server/stats.h>
#include <freeradius-devel/util/inet.h>
+ Include dependency graph for client.h:

Go to the source code of this file.

Data Structures

struct  fr_client_s
 Describes a host allowed to send packets to the server. More...
 

Typedefs

typedef int(* client_value_cb_t) (char **out, CONF_PAIR const *cp, void *data)
 Callback for retrieving values when building client sections. More...
 
typedef struct fr_client_list_s fr_client_list_t
 
typedef struct fr_client_s fr_client_t
 

Functions

bool client_add (fr_client_list_t *clients, fr_client_t *client)
 Add a client to a fr_client_list_t. More...
 
fr_client_tclient_afrom_cs (TALLOC_CTX *ctx, CONF_SECTION *cs, CONF_SECTION *server_cs, size_t extra)
 Allocate a new client from a config section. More...
 
fr_client_tclient_afrom_request (TALLOC_CTX *ctx, request_t *request)
 Create a new client, consuming all attributes in the control list of the request. More...
 
void client_delete (fr_client_list_t *clients, fr_client_t *client)
 
fr_client_tclient_find (fr_client_list_t const *clients, fr_ipaddr_t const *ipaddr, int proto)
 
fr_client_tclient_findbynumber (fr_client_list_t const *clients, int number)
 
void client_free (fr_client_t *client)
 Free a client. More...
 
fr_client_tclient_from_request (request_t *request)
 Search up a list of requests trying to locate one which has a client. More...
 
void client_list_free (void)
 
fr_client_list_tclient_list_init (CONF_SECTION *cs)
 Return a new client list. More...
 
fr_client_list_tclient_list_parse_section (CONF_SECTION *section, int proto, bool tls_required)
 
int client_map_section (CONF_SECTION *out, CONF_SECTION const *map, client_value_cb_t func, void *data)
 Create a client CONF_SECTION using a mapping section to map values from a result set to client attributes. More...
 
fr_client_tclient_read (char const *filename, CONF_SECTION *server_cs, bool check_dns)
 Read a single client from a file. More...
 

Detailed Description

API to add client definitions to the server, both on startup and at runtime.

Id
e07ed4bd8df39839b4811b97fef620cc2e3a8b0a
Author
Arran Cudbard-Bell (a.cud.nosp@m.bard.nosp@m.b@fre.nosp@m.erad.nosp@m.ius.o.nosp@m.rg)

Definition in file client.h.


Data Structure Documentation

◆ fr_client_s

struct fr_client_s

Describes a host allowed to send packets to the server.

Definition at line 77 of file client.h.

+ Collaboration diagram for fr_client_s:
Data Fields
fr_stats_t acct Accounting stats.
bool active for dynamic clients
fr_stats_t auth Authentication stats.
CONF_SECTION * cs CONF_SECTION that was parsed to generate the client.
bool dedup_authenticator more RADIUS stuff
bool dynamic Whether the client was dynamically defined.
fr_ipaddr_t ipaddr IPv4/IPv6 address of the host.
fr_socket_limit_t limit Connections per client (TCP clients only).
char const * longname Client identifier.
bool message_authenticator Require RADIUS message authenticator in requests.
char const * nas_type Type of client (arbitrary).
fr_rb_node_t node Entry in the client tree.
int number Unique client number.
int proto Protocol number.
fr_time_delta_t response_window How long the client has to respond.
char const * secret Secret PSK.
char const * server Name of the virtual server client is associated with.
CONF_SECTION * server_cs Virtual server that the client is associated with.
char const * shortname Client nickname.
fr_ipaddr_t src_ipaddr IPv4/IPv6 address to send responses from (family must match ipaddr).
bool use_connected do we use connected sockets for this client

Typedef Documentation

◆ client_value_cb_t

typedef int(* client_value_cb_t) (char **out, CONF_PAIR const *cp, void *data)

Callback for retrieving values when building client sections.

Example:

int _client_value_cb(char **out, CONF_PAIR const *cp, void *data)
{
my_result *result = data;
char *value;
value = get_attribute_from_result(result, cf_pair_value(cp));
if (!value) {
*out = NULL;
return 0;
}
*out = talloc_strdup(value);
free_attribute(value);
if (!*out) return -1;
return 0;
}
Configuration AVP similar to a fr_pair_t.
Definition: cf_priv.h:70
char const * cf_pair_value(CONF_PAIR const *pair)
Return the value of a CONF_PAIR.
Definition: cf_util.c:1511
Test enumeration values.
Definition: dict_test.h:92
static fr_slen_t data
Definition: value.h:1259
static size_t char ** out
Definition: value.h:984
Parameters
[out]outWhere to write a pointer to the talloced value buffer.
[in]cpThe value of the CONF_PAIR specifies the attribute name to retrieve from the result.
[in]dataPointer to the result struct to copy values from.
Returns
  • 0 on success.
  • -1 on failure.

Definition at line 66 of file client.h.

◆ fr_client_list_t

Definition at line 1 of file client.h.

◆ fr_client_t

typedef struct fr_client_s fr_client_t

Definition at line 1 of file client.h.

Function Documentation

◆ client_add()

bool client_add ( fr_client_list_t clients,
fr_client_t client 
)

Add a client to a fr_client_list_t.

Parameters
clientslist to add client to, may be NULL if global client list is being used.
clientto add.
Returns
  • true on success.
  • false on failure.

Definition at line 184 of file client.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ client_afrom_cs()

fr_client_t* client_afrom_cs ( TALLOC_CTX *  ctx,
CONF_SECTION cs,
CONF_SECTION server_cs,
size_t  extra 
)

Allocate a new client from a config section.

Parameters
ctxto allocate new clients in.
csto process as a client.
server_csThe virtual server that this client belongs to.
extra0 allocate sizeof(fr_client_t) bytes >sizeof(client_t) number of bytes to allocate
Returns
new fr_client_t struct.

Definition at line 697 of file client.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ client_afrom_request()

fr_client_t* client_afrom_request ( TALLOC_CTX *  ctx,
request_t request 
)

Create a new client, consuming all attributes in the control list of the request.

Parameters
ctxthe talloc context
requestcontaining the client attributes.
Returns
  • New client on success.
  • NULL on error.

Definition at line 915 of file client.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ client_delete()

void client_delete ( fr_client_list_t clients,
fr_client_t client 
)

Definition at line 339 of file client.c.

+ Here is the call graph for this function:

◆ client_find()

fr_client_t* client_find ( fr_client_list_t const *  clients,
fr_ipaddr_t const *  ipaddr,
int  proto 
)

Definition at line 375 of file client.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ client_findbynumber()

fr_client_t* client_findbynumber ( fr_client_list_t const *  clients,
int  number 
)

◆ client_free()

void client_free ( fr_client_t client)

Free a client.

It's up to the caller to ensure that it's deleted from any fr_client_list_t.

Definition at line 95 of file client.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ client_from_request()

fr_client_t* client_from_request ( request_t request)

Search up a list of requests trying to locate one which has a client.

Definition at line 1092 of file client.c.

+ Here is the caller graph for this function:

◆ client_list_free()

void client_list_free ( void  )

Definition at line 86 of file client.c.

+ Here is the caller graph for this function:

◆ client_list_init()

fr_client_list_t* client_list_init ( CONF_SECTION cs)

Return a new client list.

Note
The container won't contain any clients.
Returns
  • New client list on success.
  • NULL on error (OOM).

Definition at line 110 of file client.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ client_list_parse_section()

fr_client_list_t* client_list_parse_section ( CONF_SECTION section,
int  proto,
bool  tls_required 
)

◆ client_map_section()

int client_map_section ( CONF_SECTION out,
CONF_SECTION const *  map,
client_value_cb_t  func,
void *  data 
)

Create a client CONF_SECTION using a mapping section to map values from a result set to client attributes.

If we hit a CONF_SECTION we recurse and process its CONF_PAIRS too.

Note
Caller should free CONF_SECTION passed in as out, on error. Contents of that section will be in an undefined state.
Parameters
[in,out]outSection to perform mapping on. Either the root of the client config, or a parent section (when this function is called recursively). Should be alloced with cf_section_alloc, or if there's a separate template section, the result of calling cf_section_dup on that section.
[in]mapsection.
[in]functo call to retrieve CONF_PAIR values. Must return a talloced buffer containing the value.
[in]datato pass to func, usually a result pointer.
Returns
  • 0 on success.
  • -1 on failure.

Definition at line 615 of file client.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ client_read()

fr_client_t* client_read ( char const *  filename,
CONF_SECTION server_cs,
bool  check_dns 
)

Read a single client from a file.

This function supports asynchronous runtime loading of clients.

Parameters
[in]filenameTo read clients from.
[in]server_csof virtual server clients should be added to.
[in]check_dnsCheck reverse lookup of IP address matches filename.
Returns
  • The new client on success.
  • NULL on failure.

Definition at line 1040 of file client.c.

+ Here is the call graph for this function: