This file is indexed.

/usr/include/freeradius/stats.h is in libfreeradius-dev 3.0.12+dfsg-5+deb9u1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
#ifndef FR_STATS_H
#define FR_STATS_H

/*
 * stats.h	Structures and functions for statistics.
 *
 * Version:	$Id: e76e7e92f655cc0825a5262b3f5dfdb15524c988 $
 *
 *   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
 *
 * Copyright 2005,2006,2007,2008  The FreeRADIUS server project
 */

RCSIDH(stats_h, "$Id: e76e7e92f655cc0825a5262b3f5dfdb15524c988 $")

#ifdef __cplusplus
extern "C" {
#endif

#ifdef WITH_STATS_64BIT
typedef uint64_t fr_uint_t;
#else
typedef uint32_t fr_uint_t;
#endif

#ifdef WITH_STATS
typedef struct fr_stats_t {
	fr_uint_t	total_requests;
	fr_uint_t	total_invalid_requests;
	fr_uint_t	total_dup_requests;
	fr_uint_t	total_responses;
	fr_uint_t	total_access_accepts;
	fr_uint_t	total_access_rejects;
	fr_uint_t	total_access_challenges;
	fr_uint_t	total_malformed_requests;
	fr_uint_t	total_bad_authenticators;
	fr_uint_t	total_packets_dropped;
	fr_uint_t	total_no_records;
	fr_uint_t	total_unknown_types;
	fr_uint_t	total_timeouts;
	time_t		last_packet;
	fr_uint_t	elapsed[8];
} fr_stats_t;

typedef struct fr_stats_ema_t {
	uint32_t	window;

	uint32_t	f1, f10;
	uint32_t	ema1, ema10;
} fr_stats_ema_t;

extern fr_stats_t	radius_auth_stats;
#ifdef WITH_ACCOUNTING
extern fr_stats_t	radius_acct_stats;
#endif
#ifdef WITH_COA
extern fr_stats_t	radius_coa_stats;
extern fr_stats_t	radius_dsc_stats;
#endif
#ifdef WITH_PROXY
extern fr_stats_t	proxy_auth_stats;
#ifdef WITH_ACCOUNTING
extern fr_stats_t	proxy_acct_stats;
#endif
#ifdef WITH_COA
extern fr_stats_t	proxy_coa_stats;
extern fr_stats_t	proxy_dsc_stats;
#endif
#endif

void radius_stats_init(int flag);
void request_stats_final(REQUEST *request);
void request_stats_reply(REQUEST *request);
void radius_stats_ema(fr_stats_ema_t *ema,
		      struct timeval *start, struct timeval *end);

#define FR_STATS_INC(_x, _y) radius_ ## _x ## _stats._y++;if (listener) listener->stats._y++;if (client) client->_x._y++;
#define FR_STATS_TYPE_INC(_x) _x++

#else  /* WITH_STATS */
#define request_stats_init(_x)
#define request_stats_final(_x)

#define FR_STATS_INC(_x, _y)
#define FR_STATS_TYPE_INC(_x)

#endif

#ifdef __cplusplus
}
#endif

#endif /* FR_STATS_H */