blob: 7241117aa86ac34db1ccfbc1d4a83645ad56f674 (
plain)
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
#ifndef PAM_RADIUS_H
#define PAM_RADIUS_H
#include "config.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/resource.h>
#include <sys/param.h>
#include <sys/socket.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <ctype.h>
#include <stdlib.h>
#include <syslog.h>
#include <stdarg.h>
#include <utmp.h>
#include <time.h>
#include <netinet/in.h>
#include <netdb.h>
#include <fcntl.h>
#if defined(HAVE_SECURITY_PAM_APPL_H)
# include <security/pam_appl.h>
#elif defined(HAVE_PAM_PAM_APPL_H)
# include <pam/pam_appl.h>
#endif
#if defined(HAVE_SECURITY_PAM_MODULES_H)
# include <security/pam_modules.h>
#elif defined(HAVE_PAM_PAM_APPL_H)
# include <pam/pam_modules.h>
#else
# error security/pam_modules.h or pam/pam_modules.h required
#endif
#include "radius.h"
#include "md5.h"
/*************************************************************************
* Additional RADIUS definitions
*************************************************************************/
/* Per-attribute structure */
typedef struct attribute_t {
unsigned char attribute;
unsigned char length;
unsigned char data[1];
} attribute_t;
typedef struct radius_server_t {
struct radius_server_t *next;
struct in_addr ip;
uint16_t port;
char *hostname;
char *secret;
int timeout;
int accounting;
} radius_server_t;
typedef struct radius_conf_t {
radius_server_t *server;
int retries;
int localifdown;
char *client_id;
int accounting_bug;
int sockfd;
int debug;
} radius_conf_t;
/*************************************************************************
* Platform specific defines
*************************************************************************/
#ifdef sun
#define PAM_EXTERN extern
/*
* On older versions of Solaris, you may have to change this to:
* #define CONST
*/
#define CONST const
#else
#define CONST const
#endif
/*************************************************************************
* Useful macros and defines
*************************************************************************/
#define _pam_forget(X) if (X) {memset(X, 0, strlen(X));free(X);X = NULL;}
#ifndef _pam_drop
#define _pam_drop(X) if (X) {free(X);X = NULL;}
#endif
#define PAM_DEBUG_ARG 1
#define PAM_SKIP_PASSWD 2
#define PAM_USE_FIRST_PASS 4
#define PAM_TRY_FIRST_PASS 8
#define PAM_RUSER_ARG 16
/* Module defines */
#ifndef BUFFER_SIZE
#define BUFFER_SIZE 1024
#endif /* BUFFER_SIZE */
#define MAXPWNAM 253 /* maximum user name length. Server dependent,
* this is the default value
*/
#define MAXPASS 128 /* max password length. Again, depends on server
* compiled in. This is the default.
*/
#ifndef CONF_FILE /* the configuration file holding the server secret */
#define CONF_FILE "/etc/raddb/server"
#endif /* CONF_FILE */
#ifndef FALSE
#define FALSE 0
#undef TRUE
#define TRUE !FALSE
#endif
#endif /* PAM_RADIUS_H */
|