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
|
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef _RADCLIENT_H
#define _RADCLIENT_H
/**
* $Id$
*
* @file radclient.h
* @brief Structures for the radclient utility.
*
* @copyright 2014 The FreeRADIUS server project
*/
#include <freeradius-devel/libradius.h>
#ifdef __cplusplus
extern "C" {
#endif
/*
* Logging macros
*/
#undef DEBUG
#define DEBUG(fmt, ...) if (do_output && (fr_debug_lvl > 0)) fprintf(fr_log_fp, fmt "\n", ## __VA_ARGS__)
#undef DEBUG2
#define DEBUG2(fmt, ...) if (do_output && (fr_debug_lvl > 1)) fprintf(fr_log_fp, fmt "\n", ## __VA_ARGS__)
#define ERROR(fmt, ...) if (do_output) fr_perror("radclient: " fmt, ## __VA_ARGS__)
#define RDEBUG_ENABLED() (do_output && (fr_debug_lvl > 0))
#define RDEBUG_ENABLED2() (do_output && (fr_debug_lvl > 1))
#define REDEBUG(fmt, ...) if (do_output) fr_perror("(%" PRIu64 ") " fmt , request->num, ## __VA_ARGS__)
#define RDEBUG(fmt, ...) if (do_output && (fr_debug_lvl > 0)) fprintf(fr_log_fp, "(%" PRIu64 ") " fmt "\n", request->num, ## __VA_ARGS__)
#define RDEBUG2(fmt, ...) if (do_output && (fr_debug_lvl > 1)) fprintf(fr_log_fp, "(%" PRIu64 ") " fmt "\n", request->num, ## __VA_ARGS__)
typedef struct rc_stats {
uint64_t accepted; //!< Requests to which we received a accept
uint64_t rejected; //!< Requests to which we received a reject
uint64_t lost; //!< Requests to which we received no response
uint64_t passed; //!< Requests which passed a filter
uint64_t failed; //!< Requests which failed a fitler
} rc_stats_t;
typedef struct rc_file_pair {
char const *packets; //!< The file containing the request packet
char const *filters; //!< The file containing the definition of the
//!< packet we want to match.
} rc_file_pair_t;
typedef struct rc_request rc_request_t;
struct rc_request {
uint64_t num; //!< The number (within the file) of the request were reading.
rc_request_t *prev;
rc_request_t *next;
rc_file_pair_t *files; //!< Request and response file names.
VALUE_PAIR *password; //!< Cleartext-Password
time_t timestamp;
RADIUS_PACKET *packet; //!< The outgoing request.
RADIUS_PACKET *reply; //!< The incoming response.
VALUE_PAIR *filter; //!< If the reply passes the filter, then the request passes.
PW_CODE filter_code; //!< Expected code of the response packet.
int resend;
int tries;
bool done; //!< Whether the request is complete.
char const *name; //!< Test name (as specified in the request).
};
#ifdef __cplusplus
}
#endif
#endif /* _RADCLIENT_H */
|