Add mods-available/enabled
[freeradius.git] / redhat / freeradius.spec
1 Summary: High-performance and highly configurable free RADIUS server
2 Name: freeradius
3 Version: 2.2.0
4 Release: 1%{?dist}
5 License: GPLv2+ and LGPLv2+
6 Group: System Environment/Daemons
7 URL: http://www.freeradius.org/
8
9 Source0: ftp://ftp.freeradius.org/pub/radius/freeradius-server-%{version}.tar.bz2
10 Source100: freeradius-radiusd-init
11 Source102: freeradius-logrotate
12 Source103: freeradius-pam-conf
13
14 Patch1: freeradius-cert-config.patch
15
16 Obsoletes: freeradius-devel
17 Obsoletes: freeradius-libs
18
19 %define docdir %{_docdir}/freeradius-%{version}
20 %define initddir %{?_initddir:%{_initddir}}%{!?_initddir:%{_initrddir}}
21
22 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
23
24 BuildRequires: autoconf
25 BuildRequires: gdbm-devel
26 BuildRequires: libtool
27 BuildRequires: libtool-ltdl-devel
28 BuildRequires: openssl-devel
29 BuildRequires: pam-devel
30 BuildRequires: zlib-devel
31 BuildRequires: net-snmp-devel
32 BuildRequires: net-snmp-utils
33 BuildRequires: readline-devel
34 BuildRequires: libpcap-devel
35
36 Requires(pre): shadow-utils glibc-common
37 Requires(post): /sbin/chkconfig
38 Requires(preun): /sbin/chkconfig
39
40 %description
41 The FreeRADIUS Server Project is a high performance and highly configurable
42 GPL'd free RADIUS server. The server is similar in some respects to
43 Livingston's 2.0 server.  While FreeRADIUS started as a variant of the
44 Cistron RADIUS server, they don't share a lot in common any more. It now has
45 many more features than Cistron or Livingston, and is much more configurable.
46
47 FreeRADIUS is an Internet authentication daemon, which implements the RADIUS
48 protocol, as defined in RFC 2865 (and others). It allows Network Access
49 Servers (NAS boxes) to perform authentication for dial-up users. There are
50 also RADIUS clients available for Web servers, firewalls, Unix logins, and
51 more.  Using RADIUS allows authentication and authorization for a network to
52 be centralized, and minimizes the amount of re-configuration which has to be
53 done when adding or deleting new users.
54
55 %package utils
56 Group: System Environment/Daemons
57 Summary: FreeRADIUS utilities
58 Requires: %{name} = %{version}-%{release}
59 Requires: libpcap >= 0.9.4
60
61 %description utils
62 The FreeRADIUS server has a number of features found in other servers,
63 and additional features not found in any other server. Rather than
64 doing a feature by feature comparison, we will simply list the features
65 of the server, and let you decide if they satisfy your needs.
66
67 Support for RFC and VSA Attributes Additional server configuration
68 attributes Selecting a particular configuration Authentication methods
69
70 %package ldap
71 Summary: LDAP support for freeradius
72 Group: System Environment/Daemons
73 Requires: %{name} = %{version}-%{release}
74 BuildRequires: openldap-devel
75
76 %description ldap
77 This plugin provides the LDAP support for the FreeRADIUS server project.
78
79 %package krb5
80 Summary: Kerberos 5 support for freeradius
81 Group: System Environment/Daemons
82 Requires: %{name} = %{version}-%{release}
83 BuildRequires: krb5-devel
84
85 %description krb5
86 This plugin provides the Kerberos 5 support for the FreeRADIUS server project.
87
88 %package perl
89 Summary: Perl support for freeradius
90 Group: System Environment/Daemons
91 Requires: %{name} = %{version}-%{release}
92 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
93 %{?fedora:BuildRequires: perl-devel}
94 %if 0%{?rhel} <= 5
95 BuildRequires: perl
96 %endif
97 %if 0%{?rhel} >= 6
98 BuildRequires: perl-devel
99 %endif
100 BuildRequires: perl(ExtUtils::Embed)
101
102 %description perl
103 This plugin provides the Perl support for the FreeRADIUS server project.
104
105 %package python
106 Summary: Python support for freeradius
107 Group: System Environment/Daemons
108 Requires: %{name} = %{version}-%{release}
109 BuildRequires: python-devel
110
111 %description python
112 This plugin provides the Python support for the FreeRADIUS server project.
113
114 %package mysql
115 Summary: MySQL support for freeradius
116 Group: System Environment/Daemons
117 Requires: %{name} = %{version}-%{release}
118 BuildRequires: mysql-devel
119
120 %description mysql
121 This plugin provides the MySQL support for the FreeRADIUS server project.
122
123 %package postgresql
124 Summary: Postgresql support for freeradius
125 Group: System Environment/Daemons
126 Requires: %{name} = %{version}-%{release}
127 BuildRequires: postgresql-devel
128
129 %description postgresql
130 This plugin provides the postgresql support for the FreeRADIUS server project.
131
132 %package unixODBC
133 Summary: Unix ODBC support for freeradius
134 Group: System Environment/Daemons
135 Requires: %{name} = %{version}-%{release}
136 BuildRequires: unixODBC-devel
137
138 %description unixODBC
139 This plugin provides the unixODBC support for the FreeRADIUS server project.
140
141
142 %prep
143 %setup -q -n freeradius-server-%{version}
144 %patch1 -p1 -b .cert-config
145 # Some source files mistakenly have execute permissions set
146 find $RPM_BUILD_DIR/freeradius-server-%{version} \( -name '*.c' -o -name '*.h' \) -a -perm /0111 -exec chmod a-x {} +
147
148 %build
149 %ifarch s390 s390x
150 export CFLAGS="$RPM_OPT_FLAGS -fPIC"
151 %else
152 export CFLAGS="$RPM_OPT_FLAGS -fpic"
153 %endif
154
155 %configure \
156         --libdir=%{_libdir}/freeradius \
157         --with-system-libtool \
158         --disable-ltdl-install \
159         --with-gnu-ld \
160         --with-threads \
161         --with-thread-pool \
162         --with-docdir=%{docdir} \
163         --with-rlm-sql_postgresql-include-dir=/usr/include/pgsql \
164         --with-rlm-sql-postgresql-lib-dir=%{_libdir} \
165         --with-rlm-sql_mysql-include-dir=/usr/include/mysql \
166         --with-mysql-lib-dir=%{_libdir}/mysql \
167         --with-unixodbc-lib-dir=%{_libdir} \
168         --with-rlm-dbm-lib-dir=%{_libdir} \
169         --with-rlm-krb5-include-dir=/usr/kerberos/include \
170         --with-modules="rlm_wimax" \
171         --without-rlm_eap_ikev2 \
172         --without-rlm_sql_iodbc \
173         --without-rlm_sql_firebird \
174         --without-rlm_sql_db2 \
175         --without-rlm_sql_oracle
176
177 %if "%{_lib}" == "lib64"
178 perl -pi -e 's:sys_lib_search_path_spec=.*:sys_lib_search_path_spec="/lib64 /usr/lib64 /usr/local/lib64":' libtool
179 %endif
180
181 make
182
183 %install
184 rm -rf $RPM_BUILD_ROOT
185 mkdir -p $RPM_BUILD_ROOT/var/run/radiusd
186 mkdir -p $RPM_BUILD_ROOT/var/lib/radiusd
187 # fix for bad libtool bug - can not rebuild dependent libs and bins
188 #FIXME export LD_LIBRARY_PATH=$RPM_BUILD_ROOT/%{_libdir}
189 make install R=$RPM_BUILD_ROOT
190 # modify default configuration
191 RADDB=$RPM_BUILD_ROOT%{_sysconfdir}/raddb
192 perl -i -pe 's/^#user =.*$/user = radiusd/'   $RADDB/radiusd.conf
193 perl -i -pe 's/^#group =.*$/group = radiusd/' $RADDB/radiusd.conf
194 # logs
195 mkdir -p $RPM_BUILD_ROOT/var/log/radius/radacct
196 touch $RPM_BUILD_ROOT/var/log/radius/{radutmp,radius.log}
197
198 install -D -m 755 %{SOURCE100} $RPM_BUILD_ROOT/%{initddir}/radiusd
199 install -D -m 644 %{SOURCE102} $RPM_BUILD_ROOT/%{_sysconfdir}/logrotate.d/radiusd
200 install -D -m 644 %{SOURCE103} $RPM_BUILD_ROOT/%{_sysconfdir}/pam.d/radiusd
201
202 # remove unneeded stuff
203 rm -rf doc/00-OLD
204 rm -f $RPM_BUILD_ROOT/usr/sbin/rc.radiusd
205 rm -rf $RPM_BUILD_ROOT/%{_libdir}/freeradius/*.a
206 rm -rf $RPM_BUILD_ROOT/%{_libdir}/freeradius/*.la
207 rm -rf $RPM_BUILD_ROOT/%{_sysconfdir}/raddb/sql/mssql
208 rm -rf $RPM_BUILD_ROOT/%{_sysconfdir}/raddb/sql/oracle
209 rm -rf $RPM_BUILD_ROOT/%{_datadir}/dialup_admin/sql/oracle
210 rm -rf $RPM_BUILD_ROOT/%{_datadir}/dialup_admin/lib/sql/oracle
211 rm -rf $RPM_BUILD_ROOT/%{_datadir}/dialup_admin/lib/sql/drivers/oracle
212
213 # remove header files, we don't ship a devel package and the 
214 # headers have multilib conflicts
215 rm -rf $RPM_BUILD_ROOT/%{_includedir}
216
217 # remove unsupported config files
218 rm -f $RPM_BUILD_ROOT/%{_sysconfdir}/raddb/experimental.conf
219
220 # install doc files omitted by standard install
221 for f in COPYRIGHT CREDITS INSTALL README; do
222     cp $f $RPM_BUILD_ROOT/%{docdir}
223 done
224 cp LICENSE $RPM_BUILD_ROOT/%{docdir}/LICENSE.gpl
225 cp src/lib/LICENSE $RPM_BUILD_ROOT/%{docdir}/LICENSE.lgpl
226 cp src/LICENSE.openssl $RPM_BUILD_ROOT/%{docdir}/LICENSE.openssl
227
228 # add Red Hat specific documentation
229 cat >> $RPM_BUILD_ROOT/%{docdir}/REDHAT << EOF
230
231 Red Hat, RHEL, Fedora, and CentOS specific information can be found on the
232 FreeRADIUS Wiki in the Red Hat FAQ.
233
234 http://wiki.freeradius.org/Red_Hat_FAQ
235
236 Please reference that document.
237
238 EOF
239
240 %clean
241 rm -rf $RPM_BUILD_ROOT
242
243
244
245 # Make sure our user/group is present prior to any package or subpackage installation
246 %pre
247 getent group  radiusd >/dev/null || /usr/sbin/groupadd -r -g 95 radiusd
248 getent passwd radiusd >/dev/null || /usr/sbin/useradd  -r -g radiusd -u 95 -c "radiusd user" -s /sbin/nologin radiusd > /dev/null 2>&1
249 exit 0
250
251 %post
252 if [ $1 = 1 ]; then
253   /sbin/chkconfig --add radiusd
254   if [ ! -e /etc/raddb/certs/server.pem ]; then
255     /sbin/runuser -g radiusd -c 'umask 007; /etc/raddb/certs/bootstrap' > /dev/null 2>&1 || :
256   fi
257 fi
258
259 %preun
260 if [ $1 = 0 ]; then
261   /sbin/service radiusd stop > /dev/null 2>&1
262   /sbin/chkconfig --del radiusd
263 fi
264
265
266 %postun
267 if [ $1 -ge 1 ]; then
268   /sbin/service radiusd condrestart >/dev/null 2>&1 || :
269 fi
270
271
272 %files
273 %defattr(-,root,root)
274 %doc %{docdir}/
275 %config(noreplace) %{_sysconfdir}/pam.d/radiusd
276 %config(noreplace) %{_sysconfdir}/logrotate.d/radiusd
277 %{initddir}/radiusd
278 %dir %attr(755,radiusd,radiusd) /var/lib/radiusd
279 # configs
280 %dir %attr(755,root,radiusd) /etc/raddb
281 %defattr(-,root,radiusd)
282 %attr(644,root,radiusd) %config(noreplace) /etc/raddb/dictionary
283 %config(noreplace) /etc/raddb/acct_users
284 %config(noreplace) /etc/raddb/attrs
285 %config(noreplace) /etc/raddb/attrs.access_challenge
286 %config(noreplace) /etc/raddb/attrs.access_reject
287 %config(noreplace) /etc/raddb/attrs.accounting_response
288 %config(noreplace) /etc/raddb/attrs.pre-proxy
289 %attr(640,root,radiusd) %config(noreplace) /etc/raddb/clients.conf
290 %config(noreplace) /etc/raddb/hints
291 %config(noreplace) /etc/raddb/huntgroups
292 %attr(640,root,radiusd) %config(noreplace) /etc/raddb/preproxy_users
293 %attr(640,root,radiusd) %config(noreplace) /etc/raddb/proxy.conf
294 %attr(640,root,radiusd) %config(noreplace) /etc/raddb/radiusd.conf
295 %dir %attr(750,root,radiusd) /etc/raddb/sql
296 #%attr(640,root,radiusd) %config(noreplace) /etc/raddb/sql/oracle/*
297 %attr(640,root,radiusd) %config(noreplace) /etc/raddb/users
298 %dir %attr(770,root,radiusd) /etc/raddb/certs
299 %config(noreplace) /etc/raddb/certs/Makefile
300 %config(noreplace) /etc/raddb/certs/README
301 %config(noreplace) /etc/raddb/certs/xpextensions
302 %attr(640,root,radiusd) %config(noreplace) /etc/raddb/certs/*.cnf
303 %attr(750,root,radiusd) /etc/raddb/certs/bootstrap
304 %dir %attr(750,root,radiusd) /etc/raddb/sites-available
305 %attr(640,root,radiusd) %config(noreplace) /etc/raddb/sites-available/*
306 %dir %attr(750,root,radiusd) /etc/raddb/sites-enabled
307 %attr(640,root,radiusd) %config(noreplace) /etc/raddb/sites-enabled/*
308 %config(noreplace) %attr(640,root,radiusd) /etc/raddb/example.pl
309 %attr(640,root,radiusd) %config(noreplace) /etc/raddb/policy.conf
310 %config(noreplace) /etc/raddb/policy.txt
311 %attr(640,root,radiusd) %config(noreplace) /etc/raddb/templates.conf
312 %dir %attr(750,root,radiusd) /etc/raddb/modules
313 %dir %attr(750,root,radiusd) /etc/raddb/mods-available
314 %attr(640,root,radiusd) %config(noreplace) /etc/raddb/mods-available/*
315 %dir %attr(750,root,radiusd) /etc/raddb/mods-enabled
316 %attr(640,root,radiusd) %config(noreplace) /etc/raddb/mods-enabled/*
317 %attr(640,root,radiusd) %config(noreplace) /etc/raddb/modules/*
318 %dir %attr(755,radiusd,radiusd) /var/run/radiusd/
319 # binaries
320 %defattr(-,root,root)
321 /usr/sbin/checkrad
322 /usr/sbin/raddebug
323 /usr/sbin/radiusd
324 /usr/sbin/radwatch
325 /usr/sbin/radmin
326 # man-pages
327 %doc %{_mandir}/man5/acct_users.5.gz
328 %doc %{_mandir}/man5/clients.conf.5.gz
329 %doc %{_mandir}/man5/dictionary.5.gz
330 %doc %{_mandir}/man5/radiusd.conf.5.gz
331 %doc %{_mandir}/man5/radrelay.conf.5.gz
332 %doc %{_mandir}/man5/rlm_acct_unique.5.gz
333 %doc %{_mandir}/man5/rlm_always.5.gz
334 %doc %{_mandir}/man5/rlm_attr_filter.5.gz
335 %doc %{_mandir}/man5/rlm_attr_rewrite.5.gz
336 %doc %{_mandir}/man5/rlm_chap.5.gz
337 %doc %{_mandir}/man5/rlm_counter.5.gz
338 %doc %{_mandir}/man5/rlm_detail.5.gz
339 %doc %{_mandir}/man5/rlm_digest.5.gz
340 %doc %{_mandir}/man5/rlm_expr.5.gz
341 %doc %{_mandir}/man5/rlm_files.5.gz
342 %doc %{_mandir}/man5/rlm_mschap.5.gz
343 %doc %{_mandir}/man5/rlm_pap.5.gz
344 %doc %{_mandir}/man5/rlm_passwd.5.gz
345 %doc %{_mandir}/man5/rlm_policy.5.gz
346 %doc %{_mandir}/man5/rlm_realm.5.gz
347 %doc %{_mandir}/man5/rlm_sql.5.gz
348 %doc %{_mandir}/man5/rlm_sql_log.5.gz
349 %doc %{_mandir}/man5/rlm_unix.5.gz
350 %doc %{_mandir}/man5/unlang.5.gz
351 %doc %{_mandir}/man5/users.5.gz
352 %doc %{_mandir}/man8/raddebug.8.gz
353 %doc %{_mandir}/man8/radiusd.8.gz
354 %doc %{_mandir}/man8/radmin.8.gz
355 %doc %{_mandir}/man8/radrelay.8.gz
356 %doc %{_mandir}/man8/radwatch.8.gz
357 # dictionaries
358 %dir %attr(755,root,root) /usr/share/freeradius
359 /usr/share/freeradius/*
360 # logs
361 %dir %attr(700,radiusd,radiusd) /var/log/radius/
362 %dir %attr(700,radiusd,radiusd) /var/log/radius/radacct/
363 %ghost %attr(644,radiusd,radiusd) /var/log/radius/radutmp
364 %ghost %attr(600,radiusd,radiusd) /var/log/radius/radius.log
365 # RADIUS shared libs
366 %attr(755,root,root) %{_libdir}/freeradius/lib*.so*
367 # RADIUS Loadable Modules
368 %dir %attr(755,root,root) %{_libdir}/freeradius
369 #%attr(755,root,root) %{_libdir}/freeradius/rlm_*.so*
370 #%{_libdir}/freeradius/rlm_acctlog*.so
371 %{_libdir}/freeradius/rlm_acct_unique.so
372 %{_libdir}/freeradius/rlm_acct_unique-%{version}.so
373 %{_libdir}/freeradius/rlm_acctlog.so
374 %{_libdir}/freeradius/rlm_acctlog-%{version}.so
375 %{_libdir}/freeradius/rlm_always.so
376 %{_libdir}/freeradius/rlm_always-%{version}.so
377 %{_libdir}/freeradius/rlm_attr_filter.so
378 %{_libdir}/freeradius/rlm_attr_filter-%{version}.so
379 %{_libdir}/freeradius/rlm_attr_rewrite.so
380 %{_libdir}/freeradius/rlm_attr_rewrite-%{version}.so
381 %{_libdir}/freeradius/rlm_chap.so
382 %{_libdir}/freeradius/rlm_chap-%{version}.so
383 %{_libdir}/freeradius/rlm_checkval.so
384 %{_libdir}/freeradius/rlm_checkval-%{version}.so
385 %{_libdir}/freeradius/rlm_copy_packet.so
386 %{_libdir}/freeradius/rlm_copy_packet-%{version}.so
387 %{_libdir}/freeradius/rlm_counter.so
388 %{_libdir}/freeradius/rlm_counter-%{version}.so
389 %{_libdir}/freeradius/rlm_dbm.so
390 %{_libdir}/freeradius/rlm_dbm-%{version}.so
391 %{_libdir}/freeradius/rlm_detail.so
392 %{_libdir}/freeradius/rlm_detail-%{version}.so
393 %{_libdir}/freeradius/rlm_digest.so
394 %{_libdir}/freeradius/rlm_digest-%{version}.so
395 %{_libdir}/freeradius/rlm_dynamic_clients.so
396 %{_libdir}/freeradius/rlm_dynamic_clients-%{version}.so
397 %{_libdir}/freeradius/rlm_eap.so
398 %{_libdir}/freeradius/rlm_eap-%{version}.so
399 %{_libdir}/freeradius/rlm_eap_gtc.so
400 %{_libdir}/freeradius/rlm_eap_gtc-%{version}.so
401 %{_libdir}/freeradius/rlm_eap_leap.so
402 %{_libdir}/freeradius/rlm_eap_leap-%{version}.so
403 %{_libdir}/freeradius/rlm_eap_md5.so
404 %{_libdir}/freeradius/rlm_eap_md5-%{version}.so
405 %{_libdir}/freeradius/rlm_eap_mschapv2.so
406 %{_libdir}/freeradius/rlm_eap_mschapv2-%{version}.so
407 %{_libdir}/freeradius/rlm_eap_peap.so
408 %{_libdir}/freeradius/rlm_eap_peap-%{version}.so
409 %{_libdir}/freeradius/rlm_eap_sim.so
410 %{_libdir}/freeradius/rlm_eap_sim-%{version}.so
411 %{_libdir}/freeradius/rlm_eap_tls.so
412 %{_libdir}/freeradius/rlm_eap_tls-%{version}.so
413 %{_libdir}/freeradius/rlm_eap_ttls.so
414 %{_libdir}/freeradius/rlm_eap_ttls-%{version}.so
415 %{_libdir}/freeradius/rlm_exec.so
416 %{_libdir}/freeradius/rlm_exec-%{version}.so
417 %{_libdir}/freeradius/rlm_expiration.so
418 %{_libdir}/freeradius/rlm_expiration-%{version}.so
419 %{_libdir}/freeradius/rlm_expr.so
420 %{_libdir}/freeradius/rlm_expr-%{version}.so
421 %{_libdir}/freeradius/rlm_fastusers.so
422 %{_libdir}/freeradius/rlm_fastusers-%{version}.so
423 %{_libdir}/freeradius/rlm_files.so
424 %{_libdir}/freeradius/rlm_files-%{version}.so
425 %{_libdir}/freeradius/rlm_ippool.so
426 %{_libdir}/freeradius/rlm_ippool-%{version}.so
427 %{_libdir}/freeradius/rlm_linelog.so
428 %{_libdir}/freeradius/rlm_linelog-%{version}.so
429 %{_libdir}/freeradius/rlm_logintime.so
430 %{_libdir}/freeradius/rlm_logintime-%{version}.so
431 %{_libdir}/freeradius/rlm_mschap.so
432 %{_libdir}/freeradius/rlm_mschap-%{version}.so
433 %{_libdir}/freeradius/rlm_otp.so
434 %{_libdir}/freeradius/rlm_otp-%{version}.so
435 %{_libdir}/freeradius/rlm_pam.so
436 %{_libdir}/freeradius/rlm_pam-%{version}.so
437 %{_libdir}/freeradius/rlm_pap.so
438 %{_libdir}/freeradius/rlm_pap-%{version}.so
439 %{_libdir}/freeradius/rlm_passwd.so
440 %{_libdir}/freeradius/rlm_passwd-%{version}.so
441 %{_libdir}/freeradius/rlm_policy.so
442 %{_libdir}/freeradius/rlm_policy-%{version}.so
443 %{_libdir}/freeradius/rlm_preprocess.so
444 %{_libdir}/freeradius/rlm_preprocess-%{version}.so
445 %{_libdir}/freeradius/rlm_radutmp.so
446 %{_libdir}/freeradius/rlm_radutmp-%{version}.so
447 %{_libdir}/freeradius/rlm_realm.so
448 %{_libdir}/freeradius/rlm_realm-%{version}.so
449 %{_libdir}/freeradius/rlm_replicate.so
450 %{_libdir}/freeradius/rlm_replicate-%{version}.so
451 %{_libdir}/freeradius/rlm_soh.so
452 %{_libdir}/freeradius/rlm_soh-%{version}.so
453 %{_libdir}/freeradius/rlm_sql.so
454 %{_libdir}/freeradius/rlm_sql-%{version}.so
455 %{_libdir}/freeradius/rlm_sql_log.so
456 %{_libdir}/freeradius/rlm_sql_log-%{version}.so
457 %{_libdir}/freeradius/rlm_sqlcounter.so
458 %{_libdir}/freeradius/rlm_sqlcounter-%{version}.so
459 %{_libdir}/freeradius/rlm_sqlippool.so
460 %{_libdir}/freeradius/rlm_sqlippool-%{version}.so
461 %{_libdir}/freeradius/rlm_unix.so
462 %{_libdir}/freeradius/rlm_unix-%{version}.so
463 %{_libdir}/freeradius/rlm_wimax.so
464 %{_libdir}/freeradius/rlm_wimax-%{version}.so
465
466 %files utils
467 %defattr(-,root,root)
468 /usr/bin/*
469 # man-pages
470 %doc %{_mandir}/man1/radclient.1.gz
471 %doc %{_mandir}/man1/radeapclient.1.gz
472 %doc %{_mandir}/man1/radlast.1.gz
473 %doc %{_mandir}/man1/radtest.1.gz
474 %doc %{_mandir}/man1/radwho.1.gz
475 %doc %{_mandir}/man1/radzap.1.gz
476 %doc %{_mandir}/man8/radsqlrelay.8.gz
477 %doc %{_mandir}/man8/rlm_ippool_tool.8.gz
478
479 %files krb5
480 %defattr(-,root,root)
481 %{_libdir}/freeradius/rlm_krb5.so
482 %{_libdir}/freeradius/rlm_krb5-%{version}.so
483 %attr(640,root,radiusd) %config(noreplace) /etc/raddb/modules/krb5
484
485 %files perl
486 %defattr(-,root,root)
487 %{_libdir}/freeradius/rlm_perl.so
488 %{_libdir}/freeradius/rlm_perl-%{version}.so
489
490 %files python
491 %defattr(-,root,root)
492 %{_libdir}/freeradius/rlm_python.so
493 %{_libdir}/freeradius/rlm_python-%{version}.so
494
495 %files mysql
496 %defattr(-,root,root)
497 %dir %attr(750,root,radiusd) /etc/raddb/sql/mysql
498 %attr(640,root,radiusd) %config(noreplace) /etc/raddb/sql/mysql/*
499 %dir %attr(750,root,radiusd) /etc/raddb/sql/ndb
500 %attr(640,root,radiusd) %config(noreplace) /etc/raddb/sql/ndb/*
501 %{_libdir}/freeradius/rlm_sql_mysql.so
502 %{_libdir}/freeradius/rlm_sql_mysql-%{version}.so
503
504 %files postgresql
505 %defattr(-,root,root)
506 %dir %attr(750,root,radiusd) /etc/raddb/sql/postgresql
507 %attr(640,root,radiusd) %config(noreplace) /etc/raddb/sql/postgresql/*
508 %{_libdir}/freeradius/rlm_sql_postgresql.so
509 %{_libdir}/freeradius/rlm_sql_postgresql-%{version}.so
510
511 %files ldap
512 %defattr(-,root,root)
513 %attr(640,root,radiusd) %config(noreplace) /etc/raddb/ldap.attrmap
514 %{_libdir}/freeradius/rlm_ldap.so
515 %{_libdir}/freeradius/rlm_ldap-%{version}.so
516 %attr(640,root,radiusd) %config(noreplace) /etc/raddb/modules/ldap
517
518 %files unixODBC
519 %defattr(-,root,root)
520 %{_libdir}/freeradius/rlm_sql_unixodbc.so
521 %{_libdir}/freeradius/rlm_sql_unixodbc-%{version}.so
522
523 %changelog
524 * Wed Sep 22 2010 John Dennis <jdennis@redhat.com> - 2.1.10-1
525 - upgrade to latest upstream release
526   Feature improvements
527   * Install the "radcrypt" program.
528   * Enable radclient to send requests containing MS-CHAPv1
529     Send packets with: MS-CHAP-Password = "password".  It will
530     be automatically converted to the correct MS-CHAP attributes.
531   * Added "-t" command-line option to radtest.  You can use "-t pap",
532    "-t chap", "-t mschap", or "-t eap-md5".  The default is "-t pap"
533   * Make the "inner-tunnel" virtual server listen on 127.0.0.1:18120
534     This change and the previous one makes PEAP testing much easier.
535   * Added more documentation and examples for the "passwd" module.
536   * Added dictionaries for RFC 5607 and RFC 5904.
537   * Added note in proxy.conf that we recommend setting
538     "require_message_authenticator = yes" for all home servers.
539   * Added example of second "files" configuration, with documentation.
540     This shows how and where to use two instances of a module.
541   * Updated radsniff to have it write pcap files, too.  See '-w'.
542   * Print out large WARNING message if we send an Access-Challenge
543     for EAP, and receive no follow-up messages from the client.
544   * Added Cached-Session-Policy for EAP session resumption.  See
545     raddb/eap.conf.
546   * Added support for TLS-Cert-* attributes. For details, see
547     raddb/sites-available/default, "post-auth" section.
548   * Added sample raddb/modules/{opendirectory,dynamic_clients}
549   * Updated Cisco and Huawei, HP, Redback, and ERX dictionaries.
550   * Added RFCs 5607, 5904, and 5997.
551   * For EAP-TLS, client certificates can now be validated using an
552     external command.  See eap.conf, "validate" subsection of "tls".
553   * Made rlm_pap aware of {nthash} prefix, for compatibility with
554     legacy RADIUS systems.
555   * Add Module-Failure-Message for mschap module (ntlm_auth)
556   * made rlm_sql_sqlite database configurable.  Use "filename"
557     in sql{} section.
558   * Added %{tolower: ...string ... }, which returns the lowercase
559     version of the string.
560
561   Bug fixes
562   * Fix endless loop when there are multiple sub-options for
563     DHCP option 82.
564   * More debug output when sending / receiving DHCP packets.
565   * EAP-MSCHAPv2 should return the MPPE keys when used outside
566     of a TLS tunnel.  This is needed for IKE.
567   * Added SSL "no ticket" option to prevent SSL from creating sessions
568     without IDs.  We need the IDs, so this option should be set.
569   * Fix proxying of packets from inside a TTLS/PEAP tunnel.
570     Closes bug #25.
571   * Allow IPv6 address attributes to be created from domain names
572     Closes bug #82.
573   * Set the string length to the correct value when parsing double
574     quotes.  Closes bug #88.
575   * No longer look users up in /etc/passwd in the default configuration.
576     This can be reverted by enabling "unix" in the "authorize" section.
577   * More #ifdef's to enable building on systems without certain
578     features.
579   * Fixed SQL-Group comparison to register only if the group
580     query is defined.
581   * Fixed SQL-Group comparison to register <instance>-SQL-Group,
582     just like rlm_ldap.  This lets you have multiple SQL group checks.
583   * Fix scanning of octal numbers in "unlang".  Closes bug #89.
584   * Be less aggressive about freeing "stuck" requests.  Closes bug #35.
585   * Fix example in "originate-coa" to refer to the correct packet.
586   * Change default timeout for dynamic clients to 1 hour, not 1 day.
587   * Allow passwd module to map IP addresses, too.
588   * Allow passwd module to be used for CoA packets
589   * Put boot filename into DHCP header when DHCP-Boot-Filename
590     is specified.
591   * raddb/certs/Makefile no longer has certs depend on index.txt and
592      serial.  Closes bug #64.
593   * Ignore NULL errorcode in PostgreSQL client.  Closes bug #39
594   * Made Exec-Program and Exec-Program-Wait work in accounting
595     section again.  See sites-available/default.
596   * Fix long-standing memory leak in esoteric conditions.  Found
597     by Jerry Nichols.
598   * Added "Password-With-Header == userPassword" to raddb/ldap.attrmap
599     This will automatically convert more passwords.
600   * Updated rlm_pap to decode Password-With-Header, if it was base64
601     encoded, and to treat the contents as potentially binary data.
602   * Fix Novell eDir code to use the right function parameters.
603     Closes bug #86.
604   * Allow spaces to be escaped when executing external programs.
605     Closes bug #93.
606   * Be less restrictive about checking permissions on control socket.
607     If we're root, allow connecting to a non-root socket.
608   * Remove control socket on normal server exit.  If the server isn't
609     running, the control socket should not exist.
610   * Use MS-CHAP-User-Name as Name field from EAP-MSCHAPv2 for MS-CHAP
611     calculations.  It *MAY* be different (upper / lower case) from
612     the User-Name attribute.  Closes bug #17.
613   * If the EAP-TLS methods have problems, more SSL errors are now
614     available in the Module-Failure-Message attribute.
615   * Update Oracle configure scripts.  Closes bug #57.
616   * Added text to DESC fields of doc/examples/openldap.schema
617   * Updated more documentation to use "Restructured Text" format.
618     Thanks to James Lockie.
619   * Fixed typos in raddb/sql/mssql/dialup.conf.  Closes bug #11.
620   * Return error for potential proxy loops when using "-XC"
621   * Produce better error messages when slow databases block
622     the server.
623   * Added notes on DHCP broadcast packets for FreeBSD.
624   * Fixed crash when parsing some date strings.  Closes bug #98
625   * Improperly formatted Attributes are now printed as "Attr-##".
626     If they are not correct, they should not use the dictionary name.
627   * Fix rlm_digest to be check the format of the Digest attributes,
628     and return "noop" rather than "fail" if they're not right.
629   * Enable "digest" in raddb/sites-available/default.  This change
630     enables digest authentication to work "out of the box".
631   * Be less aggressive about marking home servers as zombie.
632     If they are responding to some packets, they are still alive.
633   * Added Packet-Transmit-Counter, to track detail file retransmits.
634     Closes bug #13.
635   * Added configure check for lt_dladvise_init().  If it exists, then
636     using it solves some issues related to libraries loading libraries.
637   * Added indexes to the MySQL IP Pool schema.
638   * Print WARNING message if too many attributes are put into a packet.
639   * Include dhcp test client (not built by default)
640   * Added checks for LDAP constraint violation.  Closes bug #18.
641   * Change default raddebug timeout to 60 seconds.
642   * Made error / warning messages more consistent.
643   * Correct back-slash handling in variable expansion.  Closes bug #46.
644     You SHOULD check your configuration for backslash expansion!
645   * Fix typo in "configure" script (--enable-libltdl-install)
646   * Use local libltdl in more situations.  This helps to avoid
647     compile issues complaining about lt__PROGRAM__LTX_preloaded_symbols.
648   * Fix hang on startup when multiple home servers were defined
649     with "src_ipaddr" field.
650   * Fix 32/64 bit issue in rlm_ldap.  Closes bug #105.
651   * If the first "listen" section uses 127.0.0.1, don't use that
652     as the source IP for proxying.  It won't work.
653   * When Proxy-To-Realm is set to a non-existent realm, the EAP module
654     should handle the request, rather than expecting it to be proxied.
655   * Fix IPv4 issues with udpfromto.  Closes bug #110.
656   * Clean up child processes of raddebug.  Closes bugs #108 and #109
657   * retry OTP if the OTP daemon fails.  Closes bug #58.
658   * Multiple calls to ber_printf seem to work better.  Closes #106.
659   * Fix "unlang" so that "attribute not found" is treated as a "false"
660     comparison, rather than a syntax error in the configuration.
661
662
663 * Sat Jul 31 2010 Orcan Ogetbil <oget[dot]fedora[at]gmail[dot]com> - 2.1.9-3
664 - Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
665
666 * Tue Jun 01 2010 Marcela Maslanova <mmaslano@redhat.com> - 2.1.9-2
667 - Mass rebuild with perl-5.12.0
668
669 * Mon May 24 2010 John Dennis <jdennis@redhat.com> - 2.1.9-1
670 - update to latest upstream, mainly bug fix release
671   Feature improvements
672   * Add radmin command "stats detail <file>" to see what
673     is going on inside of a detail file reader.
674   * Added documentation for CoA.  See raddb/sites-available/coa
675   * Add sub-option support for Option 82.  See dictionary.dhcp
676   * Add "server" field to default SQL NAS table, and documented it.
677
678   Bug fixes
679   * Reset "received ping" counter for Status-Server checks.  In some
680     corner cases it was not getting reset.
681   * Handle large VMPS attributes.
682   * Count accounting responses from a home server in SNMP / statistics
683     code.
684   * Set EAP-Session-Resumed = Yes, not "No" when session is resumed.
685   * radmin packet counter statistics are now unsigned, for numbers
686     2^31..2^32.  After that they roll over to zero.
687   * Be more careful about expanding data in PAP and MS-CHAP modules.
688     This prevents login failures when passwords contain '{'.
689   * Clean up zombie children if there were many "exec" modules being
690     run for one packet, all with "wait = no".
691   * re-open log file after HUP.  Closes bug #63.
692   * Fix "no response to proxied packet" complaint for Coa / Disconnect
693     packets.  It shouldn't ignore replies to packets it sent.
694   * Calculate IPv6 netmasks correctly.  Closes bug #69.
695   * Fix SQL module to re-open sockets if they unexpectedly close.
696   * Track scope for IPv6 addresses.  This lets us use link-local
697     addresses properly.  Closes bug #70.
698   * Updated Makefiles to no longer use the shell for recursing into
699     subdirs.  "make -j 2" should now work.
700   * Updated raddb/sql/mysql/ippool.conf to use "= NULL".  Closes
701     bug #75.
702   * Updated Makefiles so that "make reconfig" no longer uses the shell
703     for recursing into subdirs, and re-builds all "configure" files.
704   * Used above method to regenerate all configure scripts.
705     Closes bug #34.
706   * Updated SQL module to allow "server" field of "nas" table
707     to be blank: "".  This means the same as it being NULL.
708   * Fixed regex realm example.  Create Realm attribute with value
709     of realm from User-Name, not from regex.  Closes bug #40.
710   * If processing a DHCP Discover returns "fail / reject", ignore
711     the packet rather than sending a NAK.
712   * Allow '%' to be escaped in sqlcounter module.
713   * Fix typo internal hash table.
714   * For PEAP and TTLS, the tunneled reply is added to the reply,
715     rather than integrated via the operators.  This allows multiple
716     VSAs to be added, where they would previously be discarded.
717   * Make request number unsigned.  This changes nothing other than
718     the debug output when the server receives more than 2^31 packets.
719   * Don't block when reading child output in 'exec wait'.  This means
720     that blocked children get killed, instead of blocking the server.
721   * Enabled building without any proxy functionality
722   * radclient now prefers IPv4, to match the default server config.
723   * Print useful error when a realm regex is invalid
724   * relaxed rules for preprocess module "with_cisco_vsa_hack".  The
725     attributes can now be integer, ipaddr, etc.  (i.e. non-string)
726   * Allow rlm_ldap to build if ldap_set_rebind_proc() has only
727     2 arguments.
728   * Update configure script for rlm_python to avoid dynamic linking
729     problems on some platforms.
730   * Work-around for bug #35
731   * Do suid to "user" when running in debug mode as root
732   * Make "allow_core_dumps" work in more situations.
733   * In detail file reader, treat bad records as EOF.
734     This allows it to continue working when the disk is full.
735   * Fix Oracle default accounting queries to work when there are no
736     gigawords attributes.  Other databases already had the fix.
737   * Fix rlm_sql to show when it opens and closes sockets.  It already
738     says when it cannot connect, so it should say when it can connect.
739   * "chmod -x" for a few C source files.
740   * Pull update spec files, etc. from RedHat into the redhat/ directory.
741   * Allow spaces when parsing integer values.  This helps people who
742     put "too much" into an SQL value field.
743
744 * Thu Jan  7 2010 John Dennis <jdennis@redhat.com> - 2.1.8-2
745 - resolves: bug #526559 initial install should run bootstrap to create certificates
746   running radiusd in debug mode to generate inital temporary certificates
747   is no longer necessary, the /etc/raddb/certs/bootstrap is invoked on initial
748   rpm install (not upgrade) if there is no existing /etc/raddb/certs/server.pem file
749 - resolves: bug #528493 use sha1 algorithm instead of md5 during cert generation
750   the certificate configuration (/etc/raddb/certs/{ca,server,client}.cnf) files
751   were modifed to use sha1 instead of md5 and the validity reduced from 1 year to 2 months
752
753 * Wed Dec 30 2009 John Dennis <jdennis@redhat.com> - 2.1.8-1
754 - update to latest upstream
755   Feature improvements
756   * Print more descriptive error message for too many EAP sessions.
757     This gives hints on what to do when "failed to store handler"
758   * Commands received from radmin are now printed on stdout when
759     in debugging mode.
760   * Allow accounting packets to be written to a detail file, even
761     if they were read from a different detail file.
762   * Added OpenSSL license exception (src/LICENSE.openssl)
763
764   Bug fixes
765   * DHCP sockets can now set the broadcast flag before binding to a
766     socket.  You need to set "broadcast = yes" in the DHCP listener.
767   * Be more restrictive on string parsing in the config files
768   * Fix password length in scripts/create-users.pl
769   * Be more flexible about parsing the detail file.  This allows
770     it to read files where the attributes have been edited.
771   * Ensure that requests read from the detail file are cleaned up
772     (i.e. don't leak) if they are proxied without a response.
773   * Write the PID file after opening sockets, not before
774     (closes bug #29)
775   * Proxying large numbers of packets no longer gives error
776     "unable to open proxy socket".
777   * Avoid mutex locks in libc after fork
778   * Retry packet from detail file if there was no response.
779   * Allow old-style dictionary formats, where the vendor name is the
780     last field in an ATTRIBUTE definition.
781   * Removed all recursive use of mutexes.  Some systems just don't
782     support this.
783   * Allow !* to work as documented.
784   * make templates work (see templates.conf)
785   * Enabled "allow_core_dumps" to work again
786   * Print better errors when reading invalid dictionaries
787   * Sign client certificates with CA, rather than server certs.
788   * Fix potential crash in rlm_passwd when file was closed
789   * Fixed corner cases in conditional dynamic expansion.
790   * Use InnoDB for MySQL IP Pools, to gain transactional support
791   * Apply patch to libltdl for CVE-2009-3736.
792   * Fixed a few issues found by LLVM's static checker
793   * Keep track of "bad authenticators" for accounting packets
794   * Keep track of "dropped packets" for auth/acct packets
795   * Synced the "debian" directory with upstream
796   * Made "unlang" use unsigned 32-bit integers, to match the
797     dictionaries.
798
799 * Wed Dec 30 2009 John Dennis <jdennis@redhat.com> - 2.1.7-7
800 - Remove devel subpackage. It doesn't make much sense to have a devel package since
801   we don't ship libraries and it produces multilib conflicts.
802
803 * Mon Dec 21 2009 John Dennis <jdennis@redhat.com> - 2.1.7-6
804 - more spec file clean up from review comments
805 - remove freeradius-libs subpackage, move libfreeradius-eap and
806   libfreeradius-radius into the main package
807 - fix subpackage requires, change from freeradius-libs to main package
808 - fix description of the devel subpackage, remove referene to non-shipped libs
809 - remove execute permissions on src files included in debuginfo
810 - remove unnecessary use of ldconfig
811 - since all sub-packages now require main package remove user creation for sub-packages
812 - also include the LGPL library license file in addition to the GPL license file
813 - fix BuildRequires for perl so it's compatible with both Fedora, RHEL5 and RHEL6
814
815 * Mon Dec 21 2009 John Dennis <jdennis@redhat.com> - 2.1.7-5
816 - fix various rpmlint issues.
817
818 * Fri Dec  4 2009 Stepan Kasal <skasal@redhat.com> - 2.1.7-4
819 - rebuild against perl 5.10.1
820
821 * Thu Dec  3 2009 John Dennis <jdennis@redhat.com> - 2.1.7-3
822 - resolves: bug #522111 non-conformant initscript
823   also change permission of /var/run/radiusd from 0700 to 0755
824   so that "service radiusd status" can be run as non-root
825
826 * Wed Sep 16 2009 Tomas Mraz <tmraz@redhat.com> - 2.1.7-2
827 - use password-auth common PAM configuration instead of system-auth
828
829 * Tue Sep 15 2009 John Dennis <jdennis@redhat.com> - 2.1.7-1
830 - enable building of the rlm_wimax module
831 - pcap wire analysis support is enabled and available in utils subpackage
832 - Resolves bug #523053 radtest manpage in wrong package
833 - update to latest upstream release, from upstream Changelog:
834   Feature improvements
835     * Full support for CoA and Disconnect packets as per RFC 3576
836       and RFC 5176.  Both receiving and proxying CoA is supported.
837     * Added "src_ipaddr" configuration to "home_server".  See
838       proxy.conf for details.
839     * radsniff now accepts -I, to read from a filename instead of
840       a device.
841     * radsniff also prints matching requests and any responses to those
842       requests when '-r' is used.
843     * Added example of attr_filter for Access-Challenge packets
844     * Added support for udpfromto in DHCP code
845     * radmin can now selectively mark modules alive/dead.
846       See "set module state".
847     * Added customizable messages on login success/fail.
848       See msg_goodpass && msg_badpass in log{} section of radiusd.conf
849     * Document "chase_referrals" and "rebind" in raddb/modules/ldap
850     * Preliminary implementation of DHCP relay.
851     * Made thread pool section optional.  If it doesn't exist,
852       the server will run single-threaded.
853     * Added sample radrelay.conf for people upgrading from 1.x
854     * Made proxying more stable by failing over, rather than
855       rejecting the first request.  See "response_window" in proxy.conf
856     * Allow home_server_pools to exist without realms.
857     * Add dictionary.iea (closes bug #7)
858     * Added support for RFC 5580
859     * Added experimental sql_freetds module from Gabriel Blanchard.
860     * Updated dictionary.foundry
861     * Added sample configuration for MySQL cluster in raddb/sql/ndb
862       See the README file for explanations.
863   Bug fixes
864     * Fixed corner case where proxied packets could have extra
865       character in User-Password attribute.  Fix from Niko Tyni.
866     * Extended size of "attribute" field in SQL to 64.
867     * Fixes to ruby module to be more careful about when it builds.
868     * Updated Perl module "configure" script to check for broken
869       Perl installations.
870     * Fix "status_check = none".  It would still send packets
871       in some cases.
872     * Set recursive flag on the proxy mutex, which enables safer
873       cleanup on some platforms.
874     * Copy the EAP username verbatim, rather than escaping it.
875     * Update handling so that robust-proxy-accounting works when
876       all home servers are down for extended periods of time.
877     * Look for DHCP option 53 anywhere in the packet, not just
878       at the start.
879     * Fix processing of proxy fail handler with virtual servers.
880     * DHCP code now prints out correct src/dst IP addresses
881       when sending packets.
882     * Removed requirement for DHCP to have clients
883     * Fixed handling of DHCP packets with message-type buried in the packet
884     * Fixed corner case with negation in unlang.
885     * Minor fixes to default MySQL & PostgreSQL schemas
886     * Suppress MSCHAP complaints in debugging mode.
887     * Fix SQL module for multiple instance, and possible crash on HUP
888     * Fix permissions for radius.log for sites that change user/group,
889       but which don't create the file before starting radiusd.
890     * Fix double counting of packets when proxying
891     * Make %%l work
892     * Fix pthread keys in rlm_perl
893     * Log reasons for EAP failure (closes bug #8)
894     * Load home servers and pools that aren't referenced from a realm.
895     * Handle return codes from virtual attributes in "unlang"
896       (e.g. LDAP-Group).  This makes "!(expr)" work for them.
897     * Enable VMPS to see contents of virtual server again
898     * Fix WiMAX module to be consistent with examples.  (closes bug #10)
899     * Fixed crash with policies dependent on NAS-Port comparisons
900     * Allowed vendor IDs to be be higher than 32767.
901     * Fix crash on startup with certain regexes in "hints" file.
902     * Fix crash in attr_filter module when packets don't exist
903     * Allow detail file reader to be faster when "load_factor = 100"
904     * Add work-around for build failures with errors related to
905       lt__PROGRAM__LTX_preloaded_symbols.  libltdl / libtool are horrible.
906     * Made ldap module "rebind" option aware of older, incompatible
907       versions of OpenLDAP.
908     * Check value of Fall-Through in attr_filter module.
909
910 * Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 2.1.6-6
911 - rebuilt with new openssl
912
913 * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.6-5
914 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
915
916 * Fri Jul 10 2009 John Dennis <jdennis@redhat.com> - 2.1.6-4
917 - install COPYRIGHT CREDITS INSTALL LICENSE README into docdir
918
919 * Tue Jun 23 2009 John Dennis <jdennis@redhat.com> - 2.1.6-3
920 - resolves bug #507571 freeradius packages do not check for user/group existence
921
922 * Tue Jun  2 2009 John Dennis <jdennis@redhat.com> - 2.1.6-2
923 - make /etc/raddb/sites-available/* be config(noreplace)
924
925 * Mon May 18 2009 John Dennis <jdennis@redhat.com> - 2.1.6-1
926 - update to latest upstream release, from upstream Changelog:
927   Feature improvements
928     * radclient exits with 0 on successful (accept / ack), and 1
929       otherwise (no response / reject)
930     * Added support for %%{sql:UPDATE ..}, and insert/delete
931       Patch from Arran Cudbard-Bell
932     * Added sample "do not respond" policy.  See raddb/policy.conf
933       and raddb/sites-available/do_not_respond
934     * Cleanups to Suse spec file from Norbert Wegener
935     * New VSAs for Juniper from Bjorn Mork
936     * Include more RFC dictionaries in the default install
937     * More documentation for the WiMAX module
938     * Added "chase_referrals" and "rebind" configuration to rlm_ldap.
939       This helps with Active Directory.  See raddb/modules/ldap
940     * Don't load pre/post-proxy if proxying is disabled.
941     * Added %%{md5:...}, which returns MD5 hash in hex.
942     * Added configurable "retry_interval" and "poll_interval"
943       for "detail" listeners.
944     * Added "delete_mppe_keys" configuration option to rlm_wimax.
945       Apparently some WiMAX clients misbehave when they see those keys.
946     * Added experimental rlm_ruby from
947       http://github.com/Antti/freeradius-server/tree/master
948     * Add Tunnel attributes to ldap.attrmap
949     * Enable virtual servers to be reloaded on HUP.  For now, only
950       the "authorize", "authenticate", etc. processing sections are
951       reloaded.  Clients and "listen" sections are NOT reloaded.
952     * Updated "radwatch" script to be more robust.  See scripts/radwatch
953     * Added certificate compatibility notes in raddb/certs/README,
954       for compatibility with different operating systems. (i.e. Windows)
955     * Permit multiple "-e" in radmin.
956     * Add support for originating CoA-Request and Disconnect-Request.
957       See raddb/sites-available/originate-coa.
958     * Added "lifetime" and "max_queries" to raddb/sql.conf.
959       This helps address the problem of hung SQL sockets.
960     * Allow packets to be injected via radmin.  See "inject help"
961       in radmin.
962     * Answer VMPS reconfirmation request.  Patch from Hermann Lauer.
963     * Sample logrotate script in scripts/logrotate.freeradius
964     * Add configurable poll interval for "detail" listeners
965     * New "raddebug" command.  This prints debugging information from
966       a running server.  See "man raddebug.
967     * Add "require_message_authenticator" configuration to home_server
968       configuration.  This makes the server add Message-Authenticator
969       to all outgoing Access-Request packets.
970     * Added smsotp module, as contributed by Siemens.
971     * Enabled the administration socket in the default install.
972       See raddb/sites-available/control-socket, and "man radmin"
973     * Handle duplicate clients, such as with replicated or
974       load-balanced SQL servers and "readclients = yes"
975   Bug fixes
976     * Minor changes to allow building without VQP.
977     * Minor fixes from John Center
978     * Fixed raddebug example
979     * Don't crash when deleting attributes via unlang
980     * Be friendlier to very fast clients
981     * Updated the "detail" listener so that it only polls once,
982       and not many times in a row, leaking memory each time...
983     * Update comparison for Packet-Src-IP-Address (etc.) so that
984       the operators other than '==' work.
985     * Did autoconf magic to work around weird libtool bug
986     * Make rlm_perl keep tags for tagged attributes in more situations
987     * Update UID checking for radmin
988     * Added "include_length" field for TTLS.  It's needed for RFC
989       compliance, but not (apparently) for interoperability.
990     * Clean up control sockets when they are closed, so that we don't
991       leak memory.
992     * Define SUN_LEN for systems that don't have it.
993     * Correct some boundary conditions in the conditional checker ("if")
994       in "unlang".  Bug noted by Arran Cudbard-Bell.
995     * Work around minor building issues in gmake.  This should only
996       have affected developers.
997     * Change how we manage unprivileged user/group, so that we do not
998       create control sockets owned by root.
999     * Fixed more minor issues found by Coverity.
1000     * Allow raddb/certs/bootstrap to run when there is no "make"
1001       command installed.
1002     * In radiusd.conf, run_dir depends on the name of the program,
1003       and isn't hard-coded to "..../radiusd"
1004     * Check for EOF in more places in the "detail" file reader.
1005     * Added Freeswitch dictionary.
1006     * Chop ethernet frames in VMPS, rather than droppping packets.
1007     * Fix EAP-TLS bug.  Patch from Arnaud Ebalard
1008     * Don't lose string for regex-compares in the "users" file.
1009     * Expose more functions in rlm_sql to rlm_sqlippool, which
1010       helps on systems where RTLD_GLOBAL is off.
1011     * Fix typos in MySQL schemas for ippools.
1012     * Remove macro that was causing build issues on some platforms.
1013     * Fixed issues with dead home servers.  Bug noted by Chris Moules.
1014     * Fixed "access after free" with some dynamic clients.
1015
1016 - fix packaging bug, some directories missing execute permission
1017   /etc/raddb/dictionary now readable by all.
1018
1019 * Tue Feb 24 2009 John Dennis <jdennis@redhat.com> - 2.1.3-4
1020 - fix type usage in unixodbc to match new type usage in unixodbc API
1021
1022 * Thu Feb 19 2009 John Dennis <jdennis@redhat.com> - 2.1.3-3
1023 - add pointer to Red Hat documentation in docdir
1024
1025 * Sat Jan 24 2009 Caolán McNamara <caolanm@redhat.com> - 2.1.3-2
1026 - rebuild for dependencies
1027
1028 * Thu Dec  4 2008 John Dennis <jdennis@redhat.com> - 2.1.3-1
1029 - upgrade to latest upstream release, upstream summary follows:
1030   The focus of this release is stability.
1031   Feature Improvements:
1032     * Allow running with "user=radiusd" and binding to secure sockets.
1033     * Start sending Status-Server "are you alive" messages earlier, which
1034       helps with proxying multiple realms to a home server.
1035     * Removed thread pool code from rlm_perl.  It's not necessary.
1036     * Added example Perl configuration to raddb/modules/perl
1037     * Force OpenSSL to support certificates with SHA256. This seems to be
1038       necessary for WiMAX certs.
1039   Bug fixes:
1040     * Fix Debian patch to allow it to build.
1041     * Fix potential NULL dereference in debugging mode on certain
1042       platforms for TTLS and PEAP inner tunnels.
1043     * Fix uninitialized memory in handling of vendor definitions
1044     * Fix parsing of quoted (but non-string) attributes in the "users" file.
1045     * Initialize uknown NAS IP to 255.255.255.255, rather than 0.0.0.0
1046     * use SUN_LEN in control socket, to avoid truncation on some platforms.
1047     * Correct internal handling of "debug condition" to prevent it from
1048       being over-written.
1049     * Check return code of regcomp in "unlang", so that invalid regular
1050       expressions are caught rather than mishandled.
1051     * Make rlm_sql use <ltdl.h>.  Addresses bug #610.
1052     * Document list "type = status" better.  Closes bug #580.
1053     * Set "default days" for certificates, because OpenSSL won't do it.
1054       This closes bug #615.
1055     * Reference correct list in example raddb/modules/ldap. Closes #596.
1056     * Increase default schema size for Acct-Session-Id to 64. Closes #540.
1057     * Fix use of temporary files in dialup-admin.  Closes #605 and
1058       addresses CVE-2008-4474.
1059     * Addressed a number of minor issues found by Coverity.
1060     * Added DHCP option 150 to the dictionary.  Closes #618.
1061
1062 * Wed Dec  3 2008 John Dennis <jdennis@redhat.com> - 2.1.1-8
1063 - add --with-system-libtool to configure as a workaround for
1064 undefined reference to lt__PROGRAM__LTX_preloaded_symbols
1065
1066 * Mon Dec  1 2008 John Dennis <jdennis@redhat.com> - 2.1.1-7
1067 - add obsoletes tag for dialupadmin subpackages which were removed
1068
1069 * Mon Dec  1 2008 John Dennis <jdennis@redhat.com> - 2.1.1-7
1070 - add readline-devel BuildRequires
1071
1072 * Sun Nov 30 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.1.1-4
1073 - Rebuild for Python 2.6
1074
1075 * Fri Nov 21 2008 John Dennis <jdennis@redhat.com> - 2.1.1-3
1076 - make spec file buildable on RHEL5.2 by making perl-devel a fedora only dependency.
1077 - remove diaupadmin packages, it's not well supported and there are problems with it.
1078
1079 * Fri Sep 26 2008 John Dennis <jdennis@redhat.com> - 2.1.1-1
1080 - Resolves: bug #464119 bootstrap code could not create initial certs in /etc/raddb/certs because
1081   permissions were 750, radiusd running as euid radiusd could not write there, permissions now 770
1082
1083 * Thu Sep 25 2008 John Dennis <jdennis@redhat.com> - 2.1.1-1
1084 - upgrade to new upstream 2.1.1 release
1085
1086 * Wed Jul 30 2008 John Dennis <jdennis@redhat.com> - 2.0.5-2
1087 - Resolves: bug #453761: FreeRADIUS %%post should not include chown -R
1088   specify file attributes for /etc/raddb/ldap.attrmap
1089   fix consistent use of tabs/spaces (rpmlint warning)
1090
1091 * Mon Jun  9 2008 John Dennis <jdennis@redhat.com> - 2.0.5-1
1092 - upgrade to latest upstream, see Changelog for details,
1093   upstream now has more complete fix for bug #447545, local patch removed
1094
1095 * Wed May 28 2008 John Dennis <jdennis@redhat.com> - 2.0.4-1
1096 - upgrade to latest upstream, see Changelog for details
1097 - resolves: bug #447545: freeradius missing /etc/raddb/sites-available/inner-tunnel
1098
1099 * Fri May 16 2008  <jdennis@redhat.com> - 2.0.3-3
1100 - # Temporary fix for bug #446864, turn off optimization
1101
1102 * Fri Apr 18 2008 John Dennis <jdennis@redhat.com> - 2.0.3-2
1103 - remove support for radrelay, it's different now
1104 - turn off default inclusion of SQL config files in radiusd.conf since SQL
1105   is an optional RPM install
1106 - remove mssql config files
1107
1108 * Thu Apr 17 2008 John Dennis <jdennis@redhat.com> - 2.0.3-1
1109 - Upgrade to current upstream 2.0.3 release
1110 - Many thanks to Enrico Scholz for his spec file suggestions incorporated here
1111 - Resolve: bug #438665: Contains files owned by buildsystem
1112 - Add dialupadmin-mysql, dialupadmin-postgresql, dialupadmin-ldap subpackages
1113   to further partition external dependencies.
1114 - Clean up some unnecessary requires dependencies
1115 - Add versioned requires between subpackages
1116
1117 * Tue Mar 18 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.0.2-2
1118 - add Requires for versioned perl (libperl.so)
1119
1120 * Thu Feb 28 2008  <jdennis@redhat.com> - 2.0.2-1
1121 - upgrade to new 2.0 release
1122 - split into subpackages for more fine grained installation
1123
1124 * Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.1.7-4.4.ipa
1125 - Autorebuild for GCC 4.3
1126
1127 * Thu Dec 06 2007 Release Engineering <rel-eng at fedoraproject dot org> - 1.1.7-3.4.ipa
1128 - Rebuild for deps
1129
1130 * Sat Nov 10 2007  <jdennis@redhat.com> - 1.1.7-3.3.ipa
1131 - add support in rlm_ldap for reading clients from ldap
1132 - fix TLS parameter controling if a cert which fails to validate
1133   will be accepted (i.e. self-signed),
1134   rlm_ldap config parameter=tls_require_cert
1135   ldap LDAP_OPT_X_TLS_REQUIRE_CERT parameter was being passed to
1136   ldap_set_option() when it should have been ldap_int_tls_config()
1137
1138 * Sat Nov 3 2007  <jdennis@redhat.com> - 1.1.7-3.2.ipa
1139 - add support in rlm_ldap for SASL/GSSAPI binds to the LDAP server
1140
1141 * Mon Sep 17 2007 Thomas Woerner <twoerner@redhat.com> 1.1.7-3.1
1142 - made init script fully lsb conform
1143
1144 * Mon Sep 17 2007 Thomas Woerner <twoerner@redhat.com> 1.1.7-3
1145 - fixed initscript problem (rhbz#292521)
1146
1147 * Tue Aug 28 2007 Thomas Woerner <twoerner@redhat.com> 1.1.7-2
1148 - fixed initscript for LSB (rhbz#243671, rhbz#243928)
1149 - fixed license tag
1150
1151 * Tue Aug  7 2007 Thomas Woerner <twoerner@redhat.com> 1.1.7-1
1152 - new versin 1.1.7
1153 - install snmp MIB files
1154 - dropped LDAP_DEPRECATED flag, it is upstream
1155 - marked config files for sub packages as config (rhbz#240400)
1156 - moved db files to /var/lib/raddb (rhbz#199082)
1157
1158 * Fri Jun 15 2007 Thomas Woerner <twoerner@redhat.com> 1.1.6-2
1159 - radiusd expects /etc/raddb to not be world readable or writable
1160   /etc/raddb now belongs to radiusd, post script sets permissions
1161
1162 * Fri Jun 15 2007 Thomas Woerner <twoerner@redhat.com> 1.1.6-1
1163 - new version 1.1.6
1164
1165 * Fri Mar  9 2007 Thomas Woerner <twoerner@redhat.com> 1.1.5-1
1166 - new version 1.1.5
1167   - no /etc/raddb/otppasswd.sample anymore
1168   - build is pie by default, dropped pie patch
1169 - fixed build requirement for perl (perl-devel)
1170
1171 * Fri Feb 23 2007 Karsten Hopp <karsten@redhat.com> 1.1.3-3
1172 - remove trailing dot from summary
1173 - fix buildroot
1174 - fix post/postun/preun requirements
1175 - use rpm macros
1176
1177 * Fri Dec  8 2006 Thomas Woerner <twoerner@redhat.com> 1.1.3-2.1
1178 - rebuild for new postgresql library version
1179
1180 * Thu Nov 30 2006 Thomas Woerner <twoerner@redhat.com> 1.1.3-2
1181 - fixed ldap code to not use internals, added LDAP_DEPRECATED compile time flag
1182   (#210912)
1183
1184 * Tue Aug 15 2006 Thomas Woerner <twoerner@redhat.com> 1.1.3-1
1185 - new version 1.1.3 with lots of upstream bug fixes, some security fixes
1186   (#205654)
1187
1188 * Tue Aug 15 2006 Thomas Woerner <twoerner@redhat.com> 1.1.2-2
1189 - commented out include for sql.conf in radiusd.conf (#202561)
1190
1191 * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.1.2-1.1
1192 - rebuild
1193
1194 * Thu Jun  1 2006 Thomas Woerner <twoerner@redhat.com> 1.1.2-1
1195 - new version 1.1.2
1196
1197 * Wed May 31 2006 Thomas Woerner <twoerner@redhat.com> 1.1.1-1
1198 - new version 1.1.1
1199 - fixed incorrect rlm_sql globbing (#189095)
1200   Thanks to Yanko Kaneti for the fix.
1201 - fixed chown syntax in post script (#182777)
1202 - dropped gcc34, libdir and realloc-return patch
1203 - spec file cleanup with additional libtool build fixes
1204
1205 * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.0.5-1.2
1206 - bump again for double-long bug on ppc(64)
1207
1208 * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.0.5-1.1
1209 - rebuilt for new gcc4.1 snapshot and glibc changes
1210
1211 * Tue Dec 13 2005 Thomas Woerner <twoerner@redhat.com> 1.0.5-1
1212 - new version 1.0.5
1213
1214 * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
1215 - rebuilt
1216
1217 * Sat Nov 12 2005 Tom Lane <tgl@redhat.com> - 1.0.4-5
1218 - Rebuild due to mysql update.
1219
1220 * Wed Nov  9 2005 Tomas Mraz <tmraz@redhat.com> - 1.0.4-4
1221 - rebuilt with new openssl
1222 - fixed ignored return value of realloc
1223
1224 * Fri Sep 30 2005 Tomas Mraz <tmraz@redhat.com> - 1.0.4-3
1225 - use include instead of pam_stack in pam config
1226
1227 * Wed Jul 20 2005 Thomas Woerner <twoerner@redhat.com> 1.0.4-2
1228 - added missing build requires for libtool-ltdl-devel (#160877)
1229 - modified file list to get a report for missing plugins
1230
1231 * Tue Jun 28 2005 Thomas Woerner <twoerner@redhat.com> 1.0.4-1
1232 - new version 1.0.4
1233 - droppend radrelay patch (fixed upstream)
1234
1235 * Thu Apr 14 2005 Warren Togami <wtogami@redhat.com> 1.0.2-2
1236 - rebuild against new postgresql-libs
1237
1238 * Mon Apr  4 2005 Thomas Woerner <twoerner@redhat.com> 1.0.2-1
1239 - new version 1.0.2
1240
1241 * Fri Nov 19 2004 Thomas Woerner <twoerner@redhat.com> 1.0.1-3
1242 - rebuild for MySQL 4
1243 - switched over to installed libtool
1244
1245 * Fri Nov  5 2004 Thomas Woerner <twoerner@redhat.com> 1.0.1-2
1246 - Fixed install problem of radeapclient (#138069)
1247
1248 * Wed Oct  6 2004 Thomas Woerner <twoerner@redhat.com> 1.0.1-1
1249 - new version 1.0.1
1250 - applied radrelay CVS patch from Kevin Bonner
1251
1252 * Wed Aug 25 2004 Warren Togami <wtogami@redhat.com> 1.0.0-3
1253 - BuildRequires pam-devel and libtool
1254 - Fix errant text in description
1255 - Other minor cleanups
1256
1257 * Wed Aug 25 2004 Thomas Woerner <twoerner@redhat.com> 1.0.0-2.1
1258 - renamed /etc/pam.d/radius to /etc/pam.d/radiusd to match default
1259   configuration (#130613)
1260
1261 * Wed Aug 25 2004 Thomas Woerner <twoerner@redhat.com> 1.0.0-2
1262 - fixed BuildRequires for openssl-devel (#130606)
1263
1264 * Mon Aug 16 2004 Thomas Woerner <twoerner@redhat.com> 1.0.0-1
1265 - 1.0.0 final
1266
1267 * Mon Jul  5 2004 Thomas Woerner <twoerner@redhat.com> 1.0.0-0.pre3.2
1268 - added buildrequires for zlib-devel (#127162)
1269 - fixed libdir patch to prefer own libeap instead of installed one (#127168)
1270 - fixed samba account maps in LDAP for samba v3 (#127173)
1271
1272 * Thu Jul  1 2004 Thomas Woerner <twoerner@redhat.com> 1.0.0-0.pre3.1
1273 - third "pre" release of version 1.0.0
1274 - rlm_ldap is using SASLv2 (#126507)
1275
1276 * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
1277 - rebuilt
1278
1279 * Thu Jun  3 2004 Thomas Woerner <twoerner@redhat.com> 0.9.3-4.1
1280 - fixed BuildRequires for gdbm-devel
1281
1282 * Tue Mar 30 2004 Harald Hoyer <harald@redhat.com> - 0.9.3-4
1283 - gcc34 compilation fixes
1284
1285 * Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
1286 - rebuilt
1287
1288 * Tue Feb 24 2004 Thomas Woerner <twoerner@redhat.com> 0.9.3-3.2
1289 - added sql scripts for rlm_sql to documentation (#116435)
1290
1291 * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
1292 - rebuilt
1293
1294 * Thu Feb  5 2004 Thomas Woerner <twoerner@redhat.com> 0.9.3-2.1
1295 - using -fPIC instead of -fpic for s390 ans s390x
1296
1297 * Thu Feb  5 2004 Thomas Woerner <twoerner@redhat.com> 0.9.3-2
1298 - radiusd is pie, now
1299
1300 * Tue Nov 25 2003 Thomas Woerner <twoerner@redhat.com> 0.9.3-1
1301 - new version 0.9.3 (bugfix release)
1302
1303 * Fri Nov  7 2003 Thomas Woerner <twoerner@redhat.com> 0.9.2-1
1304 - new version 0.9.2
1305
1306 * Mon Sep 29 2003 Thomas Woerner <twoerner@redhat.com> 0.9.1-1
1307 - new version 0.9.1
1308
1309 * Mon Sep 22 2003 Nalin Dahyabhai <nalin@redhat.com> 0.9.0-2.2
1310 - modify default PAM configuration to remove the directory part of the module
1311   name, so that 32- and 64-bit libpam (called from 32- or 64-bit radiusd) on
1312   multilib systems will always load the right module for the architecture
1313 - modify default PAM configuration to use pam_stack
1314
1315 * Mon Sep  1 2003 Thomas Woerner <twoerner@redhat.com> 0.9.0-2.1
1316 - com_err.h moved to /usr/include/et
1317
1318 * Tue Jul 22 2003 Thomas Woerner <twoerner@redhat.com> 0.9.0-1
1319 - 0.9.0 final
1320
1321 * Wed Jul 16 2003 Thomas Woerner <twoerner@redhat.com> 0.9.0-0.9.0
1322 - new version 0.9.0 pre3
1323
1324 * Thu May 22 2003 Thomas Woerner <twoerner@redhat.com> 0.8.1-6
1325 - included directory /var/log/radius/radacct for logrotate
1326
1327 * Wed May 21 2003 Thomas Woerner <twoerner@redhat.com> 0.8.1-5
1328 - moved log and run dir to files section, cleaned up post
1329
1330 * Wed May 21 2003 Thomas Woerner <twoerner@redhat.com> 0.8.1-4
1331 - added missing run dir in post
1332
1333 * Tue May 20 2003 Thomas Woerner <twoerner@redhat.com> 0.8.1-3
1334 - fixed module load patch
1335
1336 * Fri May 16 2003 Thomas Woerner <twoerner@redhat.com>
1337 - removed la files, removed devel package
1338 - split into 4 packages: freeradius, freeradius-mysql, freeradius-postgresql,
1339     freeradius-unixODBC
1340 - fixed requires and buildrequires
1341 - create logging dir in post if it does not exist
1342 - fixed module load without la files
1343
1344 * Thu Apr 17 2003 Thomas Woerner <twoerner@redhat.com>
1345 - Initial build.