source: projects/specs/trunk/k/krb5/krb5-vl.spec @ 7562

Revision 7562, 65.4 KB checked in by daisuke, 11 years ago (diff)

krb5: update to 1.11.1

Line 
1%define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
2
3%global WITH_LDAP 1
4%global WITH_OPENSSL 1
5%global WITH_DIRSRV 1
6
7%global WITH_SYSVERTO 0
8
9# This'll be pulled out at some point.
10%define build_static 0
11
12# Set this so that find-lang.sh will recognize the .po files.
13%global gettext_domain mit-krb5
14
15Summary: The Kerberos network authentication system
16Summary(ja): Kerberos ネットワーク認証システム
17Name: krb5
18Version: 1.11.1
19Release: 1%{_dist_release}
20
21# Maybe we should explode from the now-available-to-everybody tarball instead?
22# http://web.mit.edu/kerberos/dist/krb5/1.11/krb5-1.11.1-signed.tar
23Source0: krb5-%{version}.tar.gz
24# Source1: krb5-%{version}.tar.gz.asc
25
26Source2: kpropd.init
27Source4: kadmind.init
28Source5: krb5kdc.init
29Source6: krb5.conf
30Source10: kdc.conf
31Source11: kadm5.acl
32Source19: krb5kdc.sysconfig
33Source20: kadmin.sysconfig
34# The same source files we "check", generated with "krb5-tex-pdf.sh create"
35# and tarred up.
36Source23: krb5-%{version}-pdf.tar.xz
37Source24: krb5-tex-pdf.sh
38Source25: krb5-1.8-manpaths.txt
39Source29: ksu.pamd
40Source30: kerberos-iv.portreserve
41Source31: kerberos-adm.portreserve
42Source32: krb5_prop.portreserve
43Source33: krb5kdc.logrotate
44Source34: kadmind.logrotate
45Source36: kpropd.init
46Source37: kadmind.init
47Source38: krb5kdc.init
48
49Patch5: krb5-1.10-ksu-access.patch
50Patch6: krb5-1.10-ksu-path.patch
51Patch12: krb5-1.7-ktany.patch
52Patch16: krb5-1.10-buildconf.patch
53Patch23: krb5-1.3.1-dns.patch
54Patch29: krb5-1.10-kprop-mktemp.patch
55Patch30: krb5-1.3.4-send-pr-tempfile.patch
56Patch39: krb5-1.8-api.patch
57Patch56: krb5-1.10-doublelog.patch
58Patch59: krb5-1.10-kpasswd_tcp.patch
59Patch60: krb5-1.11-pam.patch
60Patch71: krb5-1.11-dirsrv-accountlock.patch
61Patch75: krb5-trunk-signed.patch
62Patch86: krb5-1.9-debuginfo.patch
63Patch105: krb5-kvno-230379.patch
64Patch113: krb5-1.11-alpha1-init.patch
65Patch114: krb5-lookup_etypes-leak.patch
66
67License: MIT
68URL: http://web.mit.edu/kerberos/www/
69Group: System Environment/Libraries
70BuildRoot: %{_tmppath}/%{name}-%{version}-root
71
72BuildRequires: autoconf, bison, flex, gawk
73# BuildRequires: libcom_err-devel, libss-devel
74BuildRequires: e2fsprogs-devel
75# BuildRequires: gzip, ncurses-devel, rsh, texinfo, texinfo-tex, tar
76BuildRequires: gzip, ncurses-devel, rsh, texinfo, tar
77# BuildRequires: texlive-latex
78BuildRequires: keyutils-libs-devel
79# BuildRequires: libselinux-devel
80BuildRequires: pam-devel
81
82%if %{WITH_LDAP}
83BuildRequires: openldap-devel
84%endif
85%if %{WITH_OPENSSL}
86BuildRequires: openssl-devel >= 1.0.0
87%endif
88%if %{WITH_SYSVERTO}
89BuildRequires: libverto-devel
90%endif
91
92Vendor: Project Vine
93Distribution: Vine Linux
94
95%description
96Kerberos V5 is a trusted-third-party network authentication system,
97which can improve your network's security by eliminating the insecure
98practice of cleartext passwords.
99
100%package devel
101Summary: Development files needed to compile Kerberos 5 programs
102Group: Development/Libraries
103Requires: %{name}-libs = %{version}-%{release}
104# Requires: keyutils-libs-devel, libselinux-devel
105Requires: keyutils-libs-devel
106Requires: e2fsprogs-devel
107%if %{WITH_SYSVERTO}
108Requires: libverto-devel
109%endif
110
111%description devel
112Kerberos is a network authentication system. The krb5-devel package
113contains the header files and libraries needed for compiling Kerberos
1145 programs. If you want to develop Kerberos-aware programs, you need
115to install this package.
116
117%package libs
118Summary: The shared libraries used by Kerberos 5
119Group: System Environment/Libraries
120
121%description libs
122Kerberos is a network authentication system. The krb5-libs package
123contains the shared libraries needed by Kerberos 5. If you are using
124Kerberos, you need to install this package.
125
126%package server
127Group: System Environment/Daemons
128Summary: The KDC and related programs for Kerberos 5
129Requires: %{name}-libs = %{version}-%{release}
130Requires(post): /sbin/install-info, chkconfig
131# we need 'status -l' to work, and that option was added in 8.91.3-1vl6
132Requires: initscripts >= 8.91.3-1
133Requires(preun): /sbin/install-info, chkconfig, initscripts
134Requires(postun): initscripts
135# mktemp is used by krb5-send-pr
136Requires: mktemp
137# portreserve is used by init scripts for kadmind, kpropd, and krb5kdc
138Requires: portreserve
139%if %{WITH_SYSVERTO}
140# for run-time, and for parts of the test suite
141BuildRequires: libverto-module-base
142Requires: libverto-module-base
143%endif
144
145%description server
146Kerberos is a network authentication system. The krb5-server package
147contains the programs that must be installed on a Kerberos 5 key
148distribution center (KDC).  If you are installing a Kerberos 5 KDC,
149you need to install this package (in other words, most people should
150NOT install this package).
151
152%package server-ldap
153Group: System Environment/Daemons
154Summary: The LDAP storage plugin for the Kerberos 5 KDC
155Requires: %{name}-server = %{version}-%{release}
156Requires: %{name}-libs = %{version}-%{release}
157
158%description server-ldap
159Kerberos is a network authentication system. The krb5-server package
160contains the programs that must be installed on a Kerberos 5 key
161distribution center (KDC).  If you are installing a Kerberos 5 KDC,
162and you wish to use a directory server to store the data for your
163realm, you need to install this package.
164
165%package workstation
166Summary: Kerberos 5 programs for use on workstations
167Group: System Environment/Base
168Requires: %{name}-libs = %{version}-%{release}
169Requires(post): /sbin/install-info
170Requires(preun): /sbin/install-info
171# mktemp is used by krb5-send-pr
172Requires: mktemp
173Obsoletes: krb5-workstation-clients < %{version}-%{release}
174Obsoletes: krb5-workstation-servers < %{version}-%{release}
175
176%description workstation
177Kerberos is a network authentication system. The krb5-workstation
178package contains the basic Kerberos programs (kinit, klist, kdestroy,
179kpasswd). If your network uses Kerberos, this package should be
180installed on every workstation.
181
182%package pkinit-openssl
183Summary: The PKINIT module for Kerberos 5
184Group: System Environment/Libraries
185Requires: %{name}-libs = %{version}-%{release}
186
187%description pkinit-openssl
188Kerberos is a network authentication system. The krb5-pkinit-openssl
189package contains the PKINIT plugin, which uses OpenSSL to allow clients
190to obtain initial credentials from a KDC using a private key and a
191certificate.
192
193# compat32
194%package -n compat32-%{name}-devel
195Summary: Development files needed to compile Kerberos 5 programs.
196Summary(ja): Kerberos 5 プログラムをコンパイルするために必要な開発ファイル
197Group: Development/Libraries
198Requires: compat32-%{name}-libs = %{version}-%{release}
199Requires: %{name}-devel = %{version}-%{release}
200Requires: compat32-e2fsprogs-devel
201
202%description -n compat32-%{name}-devel
203Kerberos is a network authentication system. The krb5-devel package
204contains the header files and libraries needed for compiling Kerberos
2055 programs. If you want to develop Kerberos-aware programs, you need
206to install this package.
207
208%package -n compat32-%{name}-libs
209Summary: The shared libraries used by Kerberos 5.
210Summary(ja): Kerberos 5 の共有ライブラリ
211Group: System Environment/Libraries
212Requires(pre): /sbin/ldconfig
213Requires: %{name}-libs = %{version}-%{release}
214
215%description -n compat32-%{name}-libs
216Kerberos is a network authentication system. The krb5-libs package
217contains the shared libraries needed by Kerberos 5. If you are using
218Kerberos, you need to install this package.
219
220%package -n compat32-%{name}-pkinit-openssl
221Summary: The PKINIT module for Kerberos 5.
222Summary(ja): Kerberos 5 の PKINIT モジュール
223Group: System Environment/Libraries
224Requires: compat32-%{name}-libs = %{version}-%{release}
225Requires: %{name}-pkinit-openssl = %{version}-%{release}
226
227%description -n compat32-%{name}-pkinit-openssl
228Kerberos is a network authentication system. The krb5-pkinit-openssl
229package contains the PKINIT plugin, which uses OpenSSL to allow clients
230to obtain initial credentials from a KDC using a private key and a
231certificate.
232
233# end of compat32 package
234
235%prep
236%setup -q -a 23
237ln -s NOTICE LICENSE
238
239%patch60 -p1 -b .pam
240
241# %patch63 -p1 -b .selinux-label
242
243%patch5  -p1 -b .ksu-access
244%patch6  -p1 -b .ksu-path
245%patch12 -p1 -b .ktany
246%patch16 -p1 -b .buildconf
247%patch23 -p1 -b .dns
248%patch29 -p1 -b .kprop-mktemp
249%patch30 -p1 -b .send-pr-tempfile
250%patch39 -p1 -b .api
251%patch56 -p1 -b .doublelog
252%patch59 -p1 -b .kpasswd_tcp
253%patch71 -p1 -b .dirsrv-accountlock
254%patch86 -p0 -b .debuginfo
255%patch105 -p1 -b .kvno
256%patch113 -p1 -b .init
257%patch114 -p1 -b .lookup_etypes-leak
258
259# Take the execute bit off of documentation.
260chmod -x doc/krb5-protocol/*.txt
261
262# Generate an FDS-compatible LDIF file.
263inldif=src/plugins/kdb/ldap/libkdb_ldap/kerberos.ldif
264cat > 60kerberos.ldif << EOF
265# This is a variation on kerberos.ldif which 389 Directory Server will like.
266dn: cn=schema
267EOF
268egrep -iv '(^$|^dn:|^changetype:|^add:)' $inldif | \
269sed -r 's,^             ,                ,g' | \
270sed -r 's,^     ,        ,g' >> 60kerberos.ldif
271touch -r $inldif 60kerberos.ldif
272
273# Rebuild the configure scripts.
274pushd src
275autoheader
276autoconf
277popd
278
279%build
280pushd src
281# Work out the CFLAGS and CPPFLAGS which we intend to use.
282INCLUDES=-I%{_includedir}/et
283CFLAGS="`echo $RPM_OPT_FLAGS $DEFINES $INCLUDES -fPIC -fno-strict-aliasing -fstack-protector-all`"
284CPPFLAGS="`echo $DEFINES $INCLUDES`"
285%configure \
286        CC="%{__cc}" \
287        CFLAGS="$CFLAGS" \
288        CPPFLAGS="$CPPFLAGS" \
289        SS_LIB="-lss -lncurses" \
290        --enable-shared \
291%if %{build_static}
292        --enable-static \
293%endif
294        --localstatedir=%{_var}/kerberos \
295        --disable-rpath \
296        --with-system-et \
297        --with-system-ss \
298        --with-netlib=-lresolv \
299        --without-tcl \
300        --enable-dns-for-realm \
301%if %{WITH_LDAP}
302        --with-ldap \
303%if %{WITH_DIRSRV}
304        --with-dirsrv-account-locking \
305%endif
306%endif
307%if %{WITH_OPENSSL}
308        --enable-pkinit \
309        --with-pkinit-crypto-impl=openssl \
310%else
311        --disable-pkinit \
312%endif
313%if %{WITH_SYSVERTO}
314        --with-system-verto \
315%else
316        --without-system-verto \
317%endif
318        --with-pam
319
320# Now build it.
321make %{?_smp_mflags}
322popd
323
324%check
325# Run the test suite. We can't actually run the whole thing in the build system.
326make -C src runenv.py
327: make -C src check TMPDIR=%{_tmppath}
328make -C src/lib check TMPDIR=%{_tmppath}
329make -C src/kdc check TMPDIR=%{_tmppath}
330
331
332%install
333[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
334
335# Sample KDC config files (bundled kdc.conf and kadm5.acl).
336mkdir -p $RPM_BUILD_ROOT%{_var}/kerberos/krb5kdc
337install -pm 600 %{SOURCE10} $RPM_BUILD_ROOT%{_var}/kerberos/krb5kdc/
338install -pm 600 %{SOURCE11} $RPM_BUILD_ROOT%{_var}/kerberos/krb5kdc/
339
340# Where per-user keytabs live by default.
341mkdir -p $RPM_BUILD_ROOT%{_var}/kerberos/kdc/user
342
343# Default configuration file for everything.
344mkdir -p $RPM_BUILD_ROOT/etc
345install -pm 644 %{SOURCE6} $RPM_BUILD_ROOT/etc/krb5.conf
346
347# Server init scripts (krb5kdc,kadmind,kpropd) and their sysconfig files.
348mkdir -p $RPM_BUILD_ROOT/etc/rc.d/init.d
349for init in \
350        %{SOURCE5}\
351        %{SOURCE4} \
352        %{SOURCE2} ; do
353        # In the past, the init script was supposed to be named after the
354        # service that the started daemon provided.  Changing their names
355        # is an upgrade-time problem I'm in no hurry to deal with.
356        service=`basename ${init} .init`
357        install -pm 755 ${init} \
358        $RPM_BUILD_ROOT/etc/rc.d/init.d/${service%d}
359done
360mkdir -p $RPM_BUILD_ROOT/etc/sysconfig
361for sysconfig in \
362        %{SOURCE19}\
363        %{SOURCE20} ; do
364        install -pm 644 ${sysconfig} \
365        $RPM_BUILD_ROOT/etc/sysconfig/`basename ${sysconfig} .sysconfig`
366done
367
368# portreserve configuration files.
369mkdir -p $RPM_BUILD_ROOT/etc/portreserve
370for portreserve in \
371        %{SOURCE30} \
372        %{SOURCE31} \
373        %{SOURCE32} ; do
374        install -pm 644 ${portreserve} \
375        $RPM_BUILD_ROOT/etc/portreserve/`basename ${portreserve} .portreserve`
376done
377
378
379# PAM configuration files.
380mkdir -p $RPM_BUILD_ROOT/etc/pam.d/
381for pam in \
382        %{SOURCE29} ; do
383        install -pm 644 ${pam} \
384        $RPM_BUILD_ROOT/etc/pam.d/`basename ${pam} .pamd`
385done
386
387# Plug-in directories.
388install -pdm 755 $RPM_BUILD_ROOT/%{_libdir}/krb5/plugins/preauth
389install -pdm 755 $RPM_BUILD_ROOT/%{_libdir}/krb5/plugins/kdb
390install -pdm 755 $RPM_BUILD_ROOT/%{_libdir}/krb5/plugins/authdata
391
392# The rest of the binaries, headers, libraries, and docs.
393make -C src DESTDIR=$RPM_BUILD_ROOT EXAMPLEDIR=%{_docdir}/krb5-libs-%{version}/examples install
394
395# Munge krb5-config yet again.  This is totally wrong for 64-bit, but chunks
396# of the buildconf patch already conspire to strip out /usr/<anything> from the
397# list of link flags, and it helps prevent file conflicts on multilib systems.
398sed -r -i -e 's|^libdir=/usr/lib(64)?$|libdir=/usr/lib|g' $RPM_BUILD_ROOT%{_bindir}/krb5-config
399
400# Move specific libraries from %{_libdir} to /%{_lib}, and fixup the symlinks.
401touch $RPM_BUILD_ROOT/rootfile
402rellibdir=..
403while ! test -r $RPM_BUILD_ROOT/%{_libdir}/${rellibdir}/rootfile ; do
404        rellibdir=../${rellibdir}
405done
406rm -f $RPM_BUILD_ROOT/rootfile
407mkdir -p $RPM_BUILD_ROOT/%{_lib}
408for library in libgssapi_krb5 libgssrpc libk5crypto libkrb5 libkrb5support ; do
409        mv $RPM_BUILD_ROOT/%{_libdir}/${library}.so.* $RPM_BUILD_ROOT/%{_lib}/
410        pushd $RPM_BUILD_ROOT/%{_libdir}
411        ln -fs ${rellibdir}/%{_lib}/${library}.so.*.* ${library}.so
412        popd
413done
414
415%find_lang %{gettext_domain}
416
417%clean
418[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
419
420%post libs -p /sbin/ldconfig
421
422%postun libs -p /sbin/ldconfig
423
424%post server-ldap -p /sbin/ldconfig
425
426%postun server-ldap -p /sbin/ldconfig
427
428%post server
429# Remove the init script for older servers.
430[ -x /etc/rc.d/init.d/krb5server ] && /sbin/chkconfig --del krb5server
431# Install the new ones.
432/sbin/chkconfig --add krb5kdc
433/sbin/chkconfig --add kadmin
434/sbin/chkconfig --add kprop
435exit 0
436
437%preun server
438if [ "$1" -eq "0" ] ; then
439        /sbin/chkconfig --del krb5kdc
440        /sbin/chkconfig --del kadmin
441        /sbin/chkconfig --del kprop
442        /sbin/service krb5kdc stop > /dev/null 2>&1 || :
443        /sbin/service kadmin stop > /dev/null 2>&1 || :
444        /sbin/service kprop stop > /dev/null 2>&1 || :
445fi
446exit 0
447
448%postun server
449if [ "$1" -ge 1 ] ; then
450        /sbin/service krb5kdc condrestart > /dev/null 2>&1 || :
451        /sbin/service kadmin condrestart > /dev/null 2>&1 || :
452        /sbin/service kprop condrestart > /dev/null 2>&1 || :
453fi
454exit 0
455
456%triggerun server -- krb5-server < 1.6.3-100
457if [ "$2" -eq "0" ] ; then
458        /sbin/install-info --delete %{_infodir}/krb425.info.gz %{_infodir}/dir
459        /sbin/service krb524 stop > /dev/null 2>&1 || :
460        /sbin/chkconfig --del krb524 > /dev/null 2>&1 || :
461fi
462exit 0
463
464%post -n compat32-%{name}-libs -p /sbin/ldconfig
465
466%postun -n compat32-%{name}-libs -p /sbin/ldconfig
467
468%files workstation
469%defattr(-,root,root,-)
470%doc doc/user*.ps.gz src/config-files/services.append
471%doc doc/{kdestroy,kinit,klist,kpasswd,ksu}.html
472%doc doc/krb5-user.html
473%attr(0755,root,root) %doc src/config-files/convert-config-files
474
475# Clients of the KDC, including tools you're likely to need if you're running
476# app servers other than those built from this source package.
477%{_bindir}/kdestroy
478%{_mandir}/man1/kdestroy.1*
479%{_bindir}/kinit
480%{_mandir}/man1/kinit.1*
481%{_bindir}/klist
482%{_mandir}/man1/klist.1*
483%{_bindir}/kpasswd
484%{_mandir}/man1/kpasswd.1*
485%{_bindir}/kswitch
486%{_mandir}/man1/kswitch.1*
487
488%{_bindir}/kvno
489%{_mandir}/man1/kvno.1*
490%{_bindir}/kadmin
491%{_mandir}/man1/kadmin.1*
492%{_bindir}/k5srvutil
493%{_mandir}/man1/k5srvutil.1*
494%{_bindir}/ktutil
495%{_mandir}/man1/ktutil.1*
496
497# Doesn't really fit anywhere else.
498%attr(4755,root,root) %{_bindir}/ksu
499%{_mandir}/man1/ksu.1*
500%config(noreplace) /etc/pam.d/ksu
501
502# Problem-reporting tool.
503%{_sbindir}/krb5-send-pr
504%dir %{_datadir}/gnats
505%{_datadir}/gnats/mit
506%{_mandir}/man1/krb5-send-pr.1*
507
508%files server
509%defattr(-,root,root,-)
510%docdir %{_mandir}
511
512/etc/rc.d/init.d/krb5kdc
513/etc/rc.d/init.d/kadmin
514/etc/rc.d/init.d/kprop
515%config(noreplace) /etc/sysconfig/krb5kdc
516%config(noreplace) /etc/sysconfig/kadmin
517%config(noreplace) /etc/portreserve/kerberos-iv
518%config(noreplace) /etc/portreserve/kerberos-adm
519%config(noreplace) /etc/portreserve/krb5_prop
520
521%doc doc/admin*.ps.gz
522%doc doc/install*.ps.gz
523%doc doc/krb5-admin.html
524%doc doc/krb5-install.html
525
526%dir %{_var}/kerberos
527%dir %{_var}/kerberos/krb5kdc
528%config(noreplace) %{_var}/kerberos/krb5kdc/kdc.conf
529%config(noreplace) %{_var}/kerberos/krb5kdc/kadm5.acl
530
531%dir %{_libdir}/krb5
532%dir %{_libdir}/krb5/plugins
533%dir %{_libdir}/krb5/plugins/kdb
534%dir %{_libdir}/krb5/plugins/preauth
535%dir %{_libdir}/krb5/plugins/authdata
536
537# Problem-reporting tool.
538%{_sbindir}/krb5-send-pr
539%dir %{_datadir}/gnats
540%{_datadir}/gnats/mit
541%{_mandir}/man1/krb5-send-pr.1*
542
543# KDC binaries and configuration.
544%{_mandir}/man5/kadm5.acl.5*
545%{_mandir}/man5/kdc.conf.5*
546%{_sbindir}/kadmin.local
547%{_mandir}/man8/kadmin.local.8*
548%{_sbindir}/kadmind
549%{_mandir}/man8/kadmind.8*
550%{_sbindir}/kdb5_util
551%{_mandir}/man8/kdb5_util.8*
552%{_sbindir}/kprop
553%{_mandir}/man8/kprop.8*
554%{_sbindir}/kpropd
555%{_mandir}/man8/kpropd.8*
556%{_sbindir}/kproplog
557%{_mandir}/man8/kproplog.8*
558%{_sbindir}/krb5kdc
559%{_mandir}/man8/krb5kdc.8*
560
561# This is here for people who want to test their server, and also
562# included in devel package for similar reasons.
563%{_bindir}/sclient
564%{_mandir}/man1/sclient.1*
565%{_sbindir}/sserver
566%{_mandir}/man8/sserver.8*
567
568%if %{WITH_LDAP}
569%files server-ldap
570%defattr(-,root,root,-)
571%docdir %{_mandir}
572%doc src/plugins/kdb/ldap/libkdb_ldap/kerberos.ldif
573%doc src/plugins/kdb/ldap/libkdb_ldap/kerberos.schema
574%doc 60kerberos.ldif
575%dir %{_libdir}/krb5
576%dir %{_libdir}/krb5/plugins
577%dir %{_libdir}/krb5/plugins/kdb
578%{_libdir}/krb5/plugins/kdb/kldap.so
579%{_libdir}/libkdb_ldap.so
580%{_libdir}/libkdb_ldap.so.*
581%{_mandir}/man8/kdb5_ldap_util.8.gz
582%{_sbindir}/kdb5_ldap_util
583%endif
584
585%files libs -f %{gettext_domain}.lang
586%defattr(-,root,root,-)
587%doc README NOTICE LICENSE
588%docdir %{_mandir}
589%verify(not md5 size mtime) %config(noreplace) /etc/krb5.conf
590/%{_mandir}/man5/.k5identity.5*
591/%{_mandir}/man5/.k5login.5*
592/%{_mandir}/man5/k5identity.5*
593/%{_mandir}/man5/k5login.5*
594/%{_mandir}/man5/krb5.conf.5*
595/%{_lib}/libgssapi_krb5.so.*
596/%{_lib}/libgssrpc.so.*
597/%{_lib}/libk5crypto.so.*
598%{_libdir}/libkadm5clnt_mit.so.*
599%{_libdir}/libkadm5srv_mit.so.*
600%{_libdir}/libkdb5.so.*
601/%{_lib}/libkrb5.so.*
602/%{_lib}/libkrb5support.so.*
603%dir %{_libdir}/krb5
604%dir %{_libdir}/krb5/plugins
605%dir %{_libdir}/krb5/plugins/*
606%{_libdir}/krb5/plugins/kdb/db2.so
607%dir %{_var}/kerberos
608%dir %{_var}/kerberos/kdc
609%dir %{_var}/kerberos/kdc/user
610%if ! %{WITH_SYSVERTO}
611%{_libdir}/libverto.so
612%{_libdir}/libverto.so.*
613%endif
614
615%if %{WITH_OPENSSL}
616%files pkinit-openssl
617%defattr(-,root,root,-)
618%dir %{_libdir}/krb5
619%dir %{_libdir}/krb5/plugins
620%dir %{_libdir}/krb5/plugins/preauth
621%{_libdir}/krb5/plugins/preauth/pkinit.so
622%endif
623
624%files devel
625%defattr(-,root,root,-)
626%docdir %{_mandir}
627%doc build-pdf/*.pdf
628%doc doc/ccapi
629%doc doc/kadmin
630%doc doc/krb5-protocol
631%doc doc/rpc
632%doc doc/threads.txt
633
634%{_includedir}/*
635%{_libdir}/libgssapi_krb5.so
636%{_libdir}/libgssrpc.so
637%{_libdir}/libk5crypto.so
638%{_libdir}/libkadm5clnt.so
639%{_libdir}/libkadm5clnt_mit.so
640%{_libdir}/libkadm5srv.so
641%{_libdir}/libkadm5srv_mit.so
642%{_libdir}/libkdb5.so
643%{_libdir}/libkrb5.so
644%{_libdir}/libkrb5support.so
645%if %{build_static}
646%{_libdir}/*.a
647%endif
648
649%{_bindir}/krb5-config
650%{_bindir}/sclient
651%{_mandir}/man1/sclient.1*
652%{_mandir}/man8/sserver.8*
653%{_sbindir}/sserver
654
655# Protocol test clients.
656%{_bindir}/sim_client
657%{_bindir}/gss-client
658%{_bindir}/uuclient
659
660# Protocol test servers.
661%{_sbindir}/sim_server
662%{_sbindir}/gss-server
663%{_sbindir}/uuserver
664
665# compat32
666%if %{build_compat32}
667%files -n compat32-%{name}-libs
668%defattr(-,root,root)
669/%{_lib}/libgssapi_krb5.so.*
670/%{_lib}/libgssrpc.so.*
671/%{_lib}/libk5crypto.so.*
672%{_libdir}/libkadm5clnt_mit.so.*
673%{_libdir}/libkadm5srv_mit.so.*
674%{_libdir}/libkdb5.so.*
675/%{_lib}/libkrb5.so.*
676/%{_lib}/libkrb5support.so.*
677%dir %{_libdir}/krb5
678%dir %{_libdir}/krb5/plugins
679%dir %{_libdir}/krb5/plugins/*
680%{_libdir}/krb5/plugins/kdb/db2.so
681
682%if %{WITH_OPENSSL}
683%files -n compat32-%{name}-pkinit-openssl
684%defattr(-,root,root)
685%dir %{_libdir}/krb5
686%dir %{_libdir}/krb5/plugins
687%dir %{_libdir}/krb5/plugins/preauth
688%{_libdir}/krb5/plugins/preauth/pkinit.so
689%endif
690
691%files -n compat32-%{name}-devel
692%defattr(-,root,root)
693%{_libdir}/libgssapi_krb5.so
694%{_libdir}/libgssrpc.so
695%{_libdir}/libk5crypto.so
696%{_libdir}/libkadm5clnt.so
697%{_libdir}/libkadm5clnt_mit.so
698%{_libdir}/libkadm5srv.so
699%{_libdir}/libkadm5srv_mit.so
700%{_libdir}/libkdb5.so
701%{_libdir}/libkrb5.so
702%{_libdir}/libkrb5support.so
703%if %{build_static}
704%{_libdir}/*.a
705%endif
706
707%endif
708
709%changelog
710* Tue Mar 19 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 1.11.1-1
711- update to 1.11.1
712
713* Thu Sep 20 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.8.2-7
714- add patch83 for fix CVE-2012-1015 (MITKRB5-SA-2012-001)
715- add patch84 for fix CVE-2012-1013 (kadmind)
716
717* Thu Jan  5 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.8.2-6
718- add patch82 for fix CVE-2011-1528,29 and CVE-2011-4151
719- add Vendor/Distribution tags
720
721* Wed Apr 20 2011 IWAI, Masaharu <iwai@alib.jp> 1.8.2-5
722- add MITKRB5SA-2011-004 patch (Patch81, CVE-2011-0285)
723
724* Wed Mar 23 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.2-4
725- add BR: e2fsprogs-devel
726- add R: e2fsprogs-devel to -devel subpackage
727- fix krb5-server dependency
728  - R: initscripts >= 8.91.3-1
729
730* Mon Mar 21 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.8.2-3
731- fix compat32-devel package missing...
732
733* Mon Mar 21 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.8.2-2
734- add Obsoletes: krb5-workstation-clients, krb5-workstation-servers into workstation pkg
735
736* Sun Mar 20 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.8.2-1
737- new upstream release 1.8
738- this package based on rhel6
739
740   * Mon Mar 14 2011 Nalin Dahyabhai <nalin@redhat.com> 1.8.2-3.6
741   - add revised upstream patch to fix double-free in KDC while returning
742   typed-data with errors (CVE-2011-0284, #681564)
743
744* Mon Jan 10 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.3-8
745- rebuild with openssl-1.0.0c
746- add Patch500 (krb5-1.6.3-openssl-1.0.0-vine.patch)
747- change BuildRequires: texlive instead of tetex-latex
748
749* Fri May 21 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.6.3-7
750- add patch87 for fix CVE-2010-1321 (GSS API Null pointer def)
751
752* Sat Apr 10 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.6.3-6
753- add patch86 for fix CVE-2010-0629 (kadmind DoS)
754- add Vendor/Distribution tags
755
756* Thu Jan 14 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.6.3-5
757- add Patch85 for fix CVE-2009-4212 (AES and RC4 Decryption)
758
759* Sat Jun 27 2009 NAKAMURA Kenta <kenta@vinelinux.org> 1.6.3-4
760- added compat32 package for x86_64 arch support
761
762* Wed Apr 22 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.3-3
763- add Patch80: update backport of the preauth module interface
764- add Patch82: fix CVE-2009-0844,0845
765- add Patch83: fix CVE-2009-0846
766- add Patch84: fix CVE-2009-0847
767
768* Sat Apr 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.3-2
769- rebuild with openldap-2.4.11
770
771* Thu Oct 02 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.3-1
772- initial build for Vine Linux
773
774* Tue Aug  5 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.6.3-16
775- fix license tag
776
777* Wed Jul 16 2008 Nalin Dahyabhai <nalin@redhat.com>
778- clear fuzz out of patches, dropping a man page patch which is no longer
779  necessary
780- quote %%{__cc} where needed because it includes whitespace now
781- define ASN1BUF_OMIT_INLINE_FUNCS at compile-time (for now) to keep building
782
783* Fri Jul 11 2008 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-15
784- build with -fno-strict-aliasing, which is needed because the library
785  triggers these warnings
786- don't forget to label principal database lock files
787- fix the labeling patch so that it doesn't break bootstrapping
788
789* Sat Jun 14 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.6.3-14
790- generate src/include/krb5/krb5.h before building
791- fix conditional for sparcv9
792
793* Wed Apr 16 2008 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-13
794- ftp: use the correct local filename during mget when the 'case' option is
795  enabled (#442713)
796
797* Fri Apr  4 2008 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-12
798- stop exporting kadmin keys to a keytab file when kadmind starts -- the
799  daemon's been able to use the database directly for a long long time now
800- belatedly add aes128,aes256 to the default set of supported key types
801
802* Tue Apr  1 2008 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-11
803- libgssapi_krb5: properly export the acceptor subkey when creating a lucid
804  context (Kevin Coffman, via the nfs4 mailing list)
805
806* Tue Mar 18 2008 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-10
807- add fixes from MITKRB5-SA-2008-001 for use of null or dangling pointer
808  when v4 compatibility is enabled on the KDC (CVE-2008-0062, CVE-2008-0063,
809  #432620, #432621)
810- add fixes from MITKRB5-SA-2008-002 for array out-of-bounds accesses when
811  high-numbered descriptors are used (CVE-2008-0947, #433596)
812- add backport bug fix for an attempt to free non-heap memory in
813  libgssapi_krb5 (CVE-2007-5901, #415321)
814- add backport bug fix for a double-free in out-of-memory situations in
815  libgssapi_krb5 (CVE-2007-5971, #415351)
816
817* Tue Mar 18 2008 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-9
818- rework file labeling patch to not depend on fragile preprocessor trickery,
819  in another attempt at fixing #428355 and friends
820
821* Tue Feb 26 2008 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-8
822- ftp: add patch to fix "runique on" case when globbing fixes applied
823- stop adding a redundant but harmless call to initialize the gssapi internals
824
825* Mon Feb 25 2008 Nalin Dahyabhai <nalin@redhat.com>
826- add patch to suppress double-processing of /etc/krb5.conf when we build
827  with --sysconfdir=/etc, thereby suppressing double-logging (#231147)
828
829* Mon Feb 25 2008 Nalin Dahyabhai <nalin@redhat.com>
830- remove a patch, to fix problems with interfaces which are "up" but which
831  have no address assigned, which conflicted with a different fix for the same
832  problem in 1.5 (#200979)
833
834* Mon Feb 25 2008 Nalin Dahyabhai <nalin@redhat.com>
835- ftp: don't lose track of a descriptor on passive get when the server fails to
836  open a file
837
838* Mon Feb 25 2008 Nalin Dahyabhai <nalin@redhat.com>
839- in login, allow PAM to interact with the user when they've been strongly
840  authenticated
841- in login, signal PAM when we're changing an expired password that it's an
842  expired password, so that when cracklib flags a password as being weak it's
843  treated as an error even if we're running as root
844
845* Mon Feb 18 2008 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-7
846- drop netdb patch
847- kdb_ldap: add patch to treat 'nsAccountLock: true' as an indication that
848  the DISALLOW_ALL_TIX flag is set on an entry, for better interop with Fedora,
849  Netscape, Red Hat Directory Server (Simo Sorce)
850
851* Wed Feb 13 2008 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-6
852- patch to avoid depending on <netdb.h> to define NI_MAXHOST and NI_MAXSERV
853
854* Tue Feb 12 2008 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-5
855- enable patch for key-expiration reporting
856- enable patch to make kpasswd fall back to TCP if UDP fails (#251206)
857- enable patch to make kpasswd use the right sequence number on retransmit
858- enable patch to allow mech-specific creds delegated under spnego to be found
859  when searching for creds
860
861* Wed Jan  2 2008 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-4
862- some init script cleanups
863  - drop unquoted check and silent exit for "$NETWORKING" (#426852, #242502)
864  - krb524: don't barf on missing database if it looks like we're using kldap,
865    same as for kadmin
866  - return non-zero status for missing files which cause startup to
867    fail (#242502)
868
869* Tue Dec 18 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-3
870- allocate space for the nul-terminator in the local pathname when looking up
871  a file context, and properly free a previous context (Jose Plans, #426085)
872
873* Wed Dec  5 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-2
874- rebuild
875
876* Tue Oct 23 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-1
877- update to 1.6.3, dropping now-integrated patches for CVE-2007-3999
878  and CVE-2007-4000 (the new pkinit module is built conditionally and goes
879  into the -pkinit-openssl package, at least for now, to make a buildreq
880  loop with openssl avoidable)
881
882* Wed Oct 17 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.2-10
883- make proper use of pam_loginuid and pam_selinux in rshd and ftpd
884
885* Fri Oct 12 2007 Nalin Dahyabhai <nalin@redhat.com>
886- make krb5.conf %%verify(not md5 size mtime) in addition to
887  %%config(noreplace), like /etc/nsswitch.conf (#329811)
888
889* Mon Oct  1 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.2-9
890- apply the fix for CVE-2007-4000 instead of the experimental patch for
891  setting ok-as-delegate flags
892
893* Tue Sep 11 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.2-8
894- move the db2 kdb plugin from -server to -libs, because a multilib libkdb
895  might need it
896
897* Tue Sep 11 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.2-7
898- also perform PAM session and credential management when ftpd accepts a
899  client using strong authentication, missed earlier
900- also label kadmind log files and files created by the db2 plugin
901
902* Thu Sep  6 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.2-6
903- incorporate updated fix for CVE-2007-3999 (CVE-2007-4743)
904- fix incorrect call to "test" in the kadmin init script (#252322,#287291)
905
906* Tue Sep  4 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.2-5
907- incorporate fixes for MITKRB5-SA-2007-006 (CVE-2007-3999, CVE-2007-4000)
908
909* Sat Aug 25 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.2-4
910- cover more cases in labeling files on creation
911- add missing gawk build dependency
912
913* Thu Aug 23 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.2-3
914- rebuild
915
916* Thu Jul 26 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.2-2
917- kdc.conf: default to listening for TCP clients, too (#248415)
918
919* Thu Jul 19 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.2-1
920- update to 1.6.2
921- add "buildrequires: texinfo-tex" to get texi2pdf
922
923* Wed Jun 27 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.1-8
924- incorporate fixes for MITKRB5-SA-2007-004 (CVE-2007-2442,CVE-2007-2443)
925  and MITKRB5-SA-2007-005 (CVE-2007-2798)
926
927* Mon Jun 25 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.1-7
928- reintroduce missing %%postun for the non-split_workstation case
929
930* Mon Jun 25 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.1-6
931- rebuild
932
933* Mon Jun 25 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.1-5.1
934- rebuild
935
936* Sun Jun 24 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.1-5
937- add missing pam-devel build requirement, force selinux-or-fail build
938
939* Sun Jun 24 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.1-4
940- rebuild
941
942* Sun Jun 24 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.1-3
943- label all files at creation-time according to the SELinux policy (#228157)
944
945* Fri Jun 22 2007 Nalin Dahyabhai <nalin@redhat.com>
946- perform PAM account / session management in krshd (#182195,#195922)
947- perform PAM authentication and account / session management in ftpd
948- perform PAM authentication, account / session management, and password-
949  changing in login.krb5 (#182195,#195922)
950
951* Fri Jun 22 2007 Nalin Dahyabhai <nalin@redhat.com>
952- preprocess kerberos.ldif into a format FDS will like better, and include
953  that as a doc file as well
954
955* Fri Jun 22 2007 Nalin Dahyabhai <nalin@redhat.com>
956- switch man pages to being generated with the right paths in them
957- drop old, incomplete SELinux patch
958- add patch from Greg Hudson to make srvtab routines report missing-file errors
959  at same point that keytab routines do (#241805)
960
961* Thu May 24 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.1-2
962- pull patch from svn to undo unintentional chattiness in ftp
963- pull patch from svn to handle NULL krb5_get_init_creds_opt structures
964  better in a couple of places where they're expected
965
966* Wed May 23 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.1-1
967- update to 1.6.1
968  - drop no-longer-needed patches for CVE-2007-0956,CVE-2007-0957,CVE-2007-1216
969  - drop patch for sendto bug in 1.6, fixed in 1.6.1
970
971* Fri May 18 2007 Nalin Dahyabhai <nalin@redhat.com>
972- kadmind.init: don't fail outright if the default principal database
973  isn't there if it looks like we might be using the kldap plugin
974- kadmind.init: attempt to extract the key for the host-specific kadmin
975  service when we try to create the keytab
976
977* Wed May 16 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6-6
978- omit dependent libraries from the krb5-config --libs output, as using
979  shared libraries (no more static libraries) makes them unnecessary and
980  they're not part of the libkrb5 interface (patch by Rex Dieter, #240220)
981  (strips out libkeyutils, libresolv, libdl)
982
983* Fri May  4 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6-5
984- pull in keyutils as a build requirement to get the "KEYRING:" ccache type,
985  because we've merged
986
987* Fri May  4 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6-4
988- fix an uninitialized length value which could cause a crash when parsing
989  key data coming from a directory server
990- correct a typo in the krb5.conf man page ("ldap_server"->"ldap_servers")
991
992* Fri Apr 13 2007 Nalin Dahyabhai <nalin@redhat.com>
993- move the default acl_file, dict_file, and admin_keytab settings to
994  the part of the default/example kdc.conf where they'll actually have
995  an effect (#236417)
996
997* Thu Apr  5 2007 Nalin Dahyabhai <nalin@redhat.com> 1.5-24
998- merge security fixes from RHSA-2007:0095
999
1000* Tue Apr  3 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6-3
1001- add patch to correct unauthorized access via krb5-aware telnet
1002  daemon (#229782, CVE-2007-0956)
1003- add patch to fix buffer overflow in krb5kdc and kadmind
1004  (#231528, CVE-2007-0957)
1005- add patch to fix double-free in kadmind (#231537, CVE-2007-1216)
1006
1007* Thu Mar 22 2007 Nalin Dahyabhai <nalin@redhat.com>
1008- back out buildrequires: keyutils-libs-devel for now
1009
1010* Thu Mar 22 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6-2
1011- add buildrequires: on keyutils-libs-devel to enable use of keyring ccaches,
1012  dragging keyutils-libs in as a dependency
1013
1014* Mon Mar 19 2007 Nalin Dahyabhai <nalin@redhat.com> 1.5-23
1015- fix bug ID in changelog
1016
1017* Thu Mar 15 2007 Nalin Dahyabhai <nalin@redhat.com> 1.5-22
1018
1019* Thu Mar 15 2007 Nalin Dahyabhai <nalin@redhat.com> 1.5-21
1020- add preliminary patch to fix buffer overflow in krb5kdc and kadmind
1021  (#231528, CVE-2007-0957)
1022- add preliminary patch to fix double-free in kadmind (#231537, CVE-2007-1216)
1023
1024* Wed Feb 28 2007 Nalin Dahyabhai <nalin@redhat.com>
1025- add patch to build semi-useful static libraries, but don't apply it unless
1026  we need them
1027
1028* Tue Feb 27 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.5-20
1029- temporarily back out %%post changes, fix for #143289 for security update
1030- add preliminary patch to correct unauthorized access via krb5-aware telnet
1031
1032* Mon Feb 19 2007 Nalin Dahyabhai <nalin@redhat.com>
1033- make profile.d scriptlets mode 644 instead of 755 (part of #225974)
1034
1035* Tue Jan 30 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6-1
1036- clean up quoting of command-line arguments passed to the krsh/krlogin
1037  wrapper scripts
1038
1039* Mon Jan 22 2007 Nalin Dahyabhai <nalin@redhat.com>
1040- initial update to 1.6, pre-package-reorg
1041- move workstation daemons to a new subpackage (#81836, #216356, #217301), and
1042  make the new subpackage require xinetd (#211885)
1043
1044* Mon Jan 22 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.5-18
1045- make use of install-info more failsafe (Ville Skyttä, #223704)
1046- preserve timestamps on shell scriptlets at %%install-time
1047
1048* Tue Jan 16 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.5-17
1049- move to using pregenerated PDF docs to cure multilib conflicts (#222721)
1050
1051* Fri Jan 12 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.5-16
1052- update backport of the preauth module interface (part of #194654)
1053
1054* Tue Jan  9 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.5-14
1055- apply fixes from Tom Yu for MITKRB5-SA-2006-002 (CVE-2006-6143) (#218456)
1056- apply fixes from Tom Yu for MITKRB5-SA-2006-003 (CVE-2006-6144) (#218456)
1057
1058* Wed Dec 20 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-12
1059- update backport of the preauth module interface
1060
1061* Mon Oct 30 2006 Nalin Dahyabhai <nalin@redhat.com>
1062- update backport of the preauth module interface
1063- add proposed patches 4566, 4567
1064- add proposed edata reporting interface for KDC
1065- add temporary placeholder for module global context fixes
1066
1067* Mon Oct 23 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-11
1068- don't bail from the KDC init script if there's no database, it may be in
1069  a different location than the default (fenlason)
1070- remove the [kdc] section from the default krb5.conf -- doesn't seem to have
1071  been applicable for a while
1072
1073* Wed Oct 18 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-10
1074- rename krb5.sh and krb5.csh so that they don't overlap (#210623)
1075- way-late application of added error info in kadmind.init (#65853)
1076 
1077* Wed Oct 18 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-9.pal_18695
1078- add backport of in-development preauth module interface (#208643)
1079
1080* Mon Oct  9 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-9
1081- provide docs in PDF format instead of as tex source (Enrico Scholz, #209943)
1082
1083* Wed Oct  4 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-8
1084- add missing shebang headers to krsh and krlogin wrapper scripts (#209238)
1085
1086* Wed Sep  6 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-7
1087- set SS_LIB at configure-time so that libss-using apps get working readline
1088  support (#197044)
1089
1090* Fri Aug 18 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-6
1091- switch to the updated patch for MITKRB-SA-2006-001
1092
1093* Tue Aug  8 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-5
1094- apply patch to address MITKRB-SA-2006-001 (CVE-2006-3084)
1095
1096* Mon Aug  7 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-4
1097- ensure that the gssapi library's been initialized before walking the
1098  internal mechanism list in gss_release_oid(), needed if called from
1099  gss_release_name() right after a gss_import_name() (#198092)
1100
1101* Tue Jul 25 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-3
1102- rebuild
1103
1104* Tue Jul 25 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-2
1105- pull up latest revision of patch to reduce lockups in rsh/rshd
1106
1107* Mon Jul 17 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-1.2
1108- rebuild
1109
1110* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.5-1.1
1111- rebuild
1112
1113* Thu Jul  6 2006 Nalin Dahyabhai <nalin@redhat.com> 1.5-1
1114- build
1115
1116* Wed Jul  5 2006 Nalin Dahyabhai <nalin@redhat.com> 1.5-0
1117- update to 1.5
1118
1119* Fri Jun 23 2006 Nalin Dahyabhai <nalin@redhat.com> 1.4.3-9
1120- mark profile.d config files noreplace (Laurent Rineau, #196447)
1121
1122* Thu Jun  8 2006 Nalin Dahyabhai <nalin@redhat.com> 1.4.3-8
1123- add buildprereq for autoconf
1124
1125* Mon May 22 2006 Nalin Dahyabhai <nalin@redhat.com> 1.4.3-7
1126- further munge krb5-config so that 'libdir=/usr/lib' is given even on 64-bit
1127  architectures, to avoid multilib conflicts; other changes will conspire to
1128  strip out the -L flag which uses this, so it should be harmless (#192692)
1129
1130* Fri Apr 28 2006 Nalin Dahyabhai <nalin@redhat.com> 1.4.3-6
1131- adjust the patch which removes the use of rpath to also produce a
1132  krb5-config which is okay in multilib environments (#190118)
1133- make the name-of-the-tempfile comment which compile_et adds to error code
1134  headers always list the same file to avoid conflicts on multilib installations
1135- strip SIZEOF_LONG out of krb5.h so that it doesn't conflict on multilib boxes
1136- strip GSS_SIZEOF_LONG out of gssapi.h so that it doesn't conflict on mulitlib
1137  boxes
1138
1139* Fri Apr 14 2006 Stepan Kasal <skasal@redhat.com> 1.4.3-5
1140- Fix formatting typo in kinit.1 (krb5-kinit-man-typo.patch)
1141
1142* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> 1.4.3-4.1
1143- bump again for double-long bug on ppc(64)
1144
1145* Mon Feb  6 2006 Nalin Dahyabhai <nalin@redhat.com> 1.4.3-4
1146- give a little bit more information to the user when kinit gets the catch-all
1147  I/O error (#180175)
1148
1149* Thu Jan 19 2006 Nalin Dahyabhai <nalin@redhat.com> 1.4.3-3
1150- rebuild properly when pthread_mutexattr_setrobust_np() is defined but not
1151  declared, such as with recent glibc when _GNU_SOURCE isn't being used
1152
1153* Thu Jan 19 2006 Matthias Clasen <mclasen@redhat.com> 1.4.3-2
1154- Use full paths in krb5.sh to avoid path lookups
1155
1156* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
1157- rebuilt
1158
1159* Thu Dec  1 2005 Nalin Dahyabhai <nalin@redhat.com>
1160- login: don't truncate passwords before passing them into crypt(), in
1161  case they're significant (#149476)
1162
1163* Thu Nov 17 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.3-1
1164- update to 1.4.3
1165- make ksu setuid again (#137934, others)
1166
1167* Tue Sep 13 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.2-4
1168- mark %%{krb5prefix}/man so that files which are packaged within it are
1169  flagged as %%doc (#168163)
1170
1171* Tue Sep  6 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.2-3
1172- add an xinetd configuration file for encryption-only telnetd, parallelling
1173  the kshell/ekshell pair (#167535)
1174
1175* Wed Aug 31 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.2-2
1176- change the default configured encryption type for KDC databases to the
1177  compiled-in default of des3-hmac-sha1 (#57847)
1178
1179* Thu Aug 11 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.2-1
1180- update to 1.4.2, incorporating the fixes for MIT-KRB5-SA-2005-002 and
1181  MIT-KRB5-SA-2005-003
1182
1183* Wed Jun 29 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.1-6
1184- rebuild
1185
1186* Wed Jun 29 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.1-5
1187- fix telnet client environment variable disclosure the same way NetKit's
1188  telnet client did (CAN-2005-0488) (#159305)
1189- keep apps which call krb5_principal_compare() or krb5_realm_compare() with
1190  malformed or NULL principal structures from crashing outright (Thomas Biege)
1191  (#161475)
1192
1193* Tue Jun 28 2005 Nalin Dahyabhai <nalin@redhat.com>
1194- apply fixes from draft of MIT-KRB5-SA-2005-002 (CAN-2005-1174,CAN-2005-1175)
1195  (#157104)
1196- apply fixes from draft of MIT-KRB5-SA-2005-003 (CAN-2005-1689) (#159755)
1197
1198* Fri Jun 24 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.1-4
1199- fix double-close in keytab handling
1200- add port of fixes for CAN-2004-0175 to krb5-aware rcp (#151612)
1201
1202* Fri May 13 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.1-3
1203- prevent spurious EBADF in krshd when stdin is closed by the client while
1204  the command is running (#151111)
1205
1206* Fri May 13 2005 Martin Stransky <stransky@redhat.com> 1.4.1-2
1207- add deadlock patch, removed old patch
1208
1209* Fri May  6 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.1-1
1210- update to 1.4.1, incorporating fixes for CAN-2005-0468 and CAN-2005-0469
1211- when starting the KDC or kadmind, if KRB5REALM is set via the /etc/sysconfig
1212  file for the service, pass it as an argument for the -r flag
1213
1214* Wed Mar 23 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4-3
1215- drop krshd patch for now
1216
1217* Thu Mar 17 2005 Nalin Dahyabhai <nalin@redhat.com>
1218- add draft fix from Tom Yu for slc_add_reply() buffer overflow (CAN-2005-0469)
1219- add draft fix from Tom Yu for env_opt_add() buffer overflow (CAN-2005-0468)
1220
1221* Wed Mar 16 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4-2
1222- don't include <term.h> into the telnet client when we're not using curses
1223
1224* Thu Feb 24 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4-1
1225- update to 1.4
1226  - v1.4 kadmin client requires a v1.4 kadmind on the server, or use the "-O"
1227    flag to specify that it should communicate with the server using the older
1228    protocol
1229  - new libkrb5support library
1230  - v5passwdd and kadmind4 are gone
1231  - versioned symbols
1232- pick up $KRB5KDC_ARGS from /etc/sysconfig/krb5kdc, if it exists, and pass
1233  it on to krb5kdc
1234- pick up $KADMIND_ARGS from /etc/sysconfig/kadmin, if it exists, and pass
1235  it on to kadmind
1236- pick up $KRB524D_ARGS from /etc/sysconfig/krb524, if it exists, and pass
1237  it on to krb524d *instead of* "-m"
1238- set "forwardable" in [libdefaults] in the default krb5.conf to match the
1239  default setting which we supply for pam_krb5
1240- set a default of 24h for "ticket_lifetime" in [libdefaults], reflecting the
1241  compiled-in default
1242
1243* Mon Dec 20 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.6-3
1244- rebuild
1245
1246* Mon Dec 20 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.6-2
1247- rebuild
1248
1249* Mon Dec 20 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.6-1
1250- update to 1.3.6, which includes the previous fix
1251
1252* Mon Dec 20 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.5-8
1253- apply fix from Tom Yu for MITKRB5-SA-2004-004 (CAN-2004-1189)
1254
1255* Fri Dec 17 2004 Martin Stransky <stransky@redhat.com> 1.3.5-7
1256- fix deadlock during file transfer via rsync/krsh
1257- thanks goes to James Antill for hint
1258
1259* Fri Nov 26 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.5-6
1260- rebuild
1261
1262* Mon Nov 22 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.5-3
1263- fix predictable-tempfile-name bug in krb5-send-pr (CAN-2004-0971, #140036)
1264
1265* Tue Nov 16 2004 Nalin Dahyabhai <nalin@redhat.com>
1266- silence compiler warning in kprop by using an in-memory ccache with a fixed
1267  name instead of an on-disk ccache with a name generated by tmpnam()
1268
1269* Tue Nov 16 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.5-2
1270- fix globbing patch port mode (#139075)
1271
1272* Mon Nov  1 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.5-1
1273- fix segfault in telnet due to incorrect checking of gethostbyname_r result
1274  codes (#129059)
1275
1276* Fri Oct 15 2004 Nalin Dahyabhai <nalin@redhat.com>
1277- remove rc4-hmac:norealm and rc4-hmac:onlyrealm from the default list of
1278  supported keytypes in kdc.conf -- they produce exactly the same keys as
1279  rc4-hmac:normal because rc4 string-to-key ignores salts
1280- nuke kdcrotate -- there are better ways to balance the load on KDCs, and
1281  the SELinux policy for it would have been scary-looking
1282- update to 1.3.5, mainly to include MITKRB5SA 2004-002 and 2004-003
1283
1284* Tue Aug 31 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.4-7
1285- rebuild
1286
1287* Tue Aug 24 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.4-6
1288- rebuild
1289
1290* Tue Aug 24 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.4-5
1291- incorporate revised fixes from Tom Yu for CAN-2004-0642, CAN-2004-0644,
1292  CAN-2004-0772
1293
1294* Mon Aug 23 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.4-4
1295- rebuild
1296
1297* Mon Aug 23 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.4-3
1298- incorporate fixes from Tom Yu for CAN-2004-0642, CAN-2004-0772
1299  (MITKRB5-SA-2004-002, #130732)
1300- incorporate fixes from Tom Yu for CAN-2004-0644 (MITKRB5-SA-2004-003, #130732)
1301
1302* Tue Jul 27 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.4-2
1303- fix indexing error in server sorting patch (#127336)
1304
1305* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
1306- rebuilt
1307
1308* Mon Jun 14 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.4-0.1
1309- update to 1.3.4 final
1310
1311* Mon Jun  7 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.4-0
1312- update to 1.3.4 beta1
1313- remove MITKRB5-SA-2004-001, included in 1.3.4
1314
1315* Mon Jun  7 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.3-8
1316- rebuild
1317
1318* Fri Jun  4 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.3-7
1319- rebuild
1320
1321* Fri Jun  4 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.3-6
1322- apply updated patch from MITKRB5-SA-2004-001 (revision 2004-06-02)
1323
1324* Tue Jun  1 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.3-5
1325- rebuild
1326
1327* Tue Jun  1 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.3-4
1328- apply patch from MITKRB5-SA-2004-001 (#125001)
1329
1330* Wed May 12 2004 Thomas Woerner <twoerner@redhat.com> 1.3.3-3
1331- removed rpath
1332
1333* Thu Apr 15 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.3-2
1334- re-enable large file support, fell out in 1.3-1
1335- patch rcp to use long long and %%lld format specifiers when reporting file
1336  sizes on large files
1337
1338* Tue Apr 13 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.3-1
1339- update to 1.3.3
1340
1341* Wed Mar 10 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.2-1
1342- update to 1.3.2
1343
1344* Mon Mar  8 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.1-12
1345- rebuild
1346
1347* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com> 1.3.1-11.1
1348- rebuilt
1349
1350* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> 1.3.1-11
1351- rebuilt
1352
1353* Mon Feb  9 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.1-10
1354- catch krb4 send_to_kdc cases in kdc preference patch
1355
1356* Mon Feb  2 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.1-9
1357- remove patch to set TERM in klogind which, combined with the upstream fix in
1358  1.3.1, actually produces the bug now (#114762)
1359
1360* Mon Jan 19 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.1-8
1361- when iterating over lists of interfaces which are "up" from getifaddrs(),
1362  skip over those which have no address (#113347)
1363
1364* Mon Jan 12 2004 Nalin Dahyabhai <nalin@redhat.com>
1365- prefer the kdc which last replied to a request when sending requests to kdcs
1366
1367* Mon Nov 24 2003 Nalin Dahyabhai <nalin@redhat.com> 1.3.1-7
1368- fix combination of --with-netlib and --enable-dns (#82176)
1369
1370* Tue Nov 18 2003 Nalin Dahyabhai <nalin@redhat.com>
1371- remove libdefault ticket_lifetime option from the default krb5.conf, it is
1372  ignored by libkrb5
1373
1374* Thu Sep 25 2003 Nalin Dahyabhai <nalin@redhat.com> 1.3.1-6
1375- fix bug in patch to make rlogind start login with a clean environment a la
1376  netkit rlogin, spotted and fixed by Scott McClung
1377
1378* Tue Sep 23 2003 Nalin Dahyabhai <nalin@redhat.com> 1.3.1-5
1379- include profile.d scriptlets in krb5-devel so that krb5-config will be in
1380  the path if krb5-workstation isn't installed, reported by Kir Kolyshkin
1381
1382* Mon Sep  8 2003 Nalin Dahyabhai <nalin@redhat.com>
1383- add more etypes (arcfour) to the default enctype list in kdc.conf
1384- don't apply previous patch, refused upstream
1385
1386* Fri Sep  5 2003 Nalin Dahyabhai <nalin@redhat.com> 1.3.1-4
1387- fix 32/64-bit bug storing and retrieving the issue_date in v4 credentials
1388
1389* Wed Sep 3 2003 Dan Walsh <dwalsh@redhat.com> 1.3.1-3
1390- Don't check for write access on /etc/krb5.conf if SELinux
1391
1392* Tue Aug 26 2003 Nalin Dahyabhai <nalin@redhat.com> 1.3.1-2
1393- fixup some int/pointer varargs wackiness
1394
1395* Tue Aug  5 2003 Nalin Dahyabhai <nalin@redhat.com> 1.3.1-1
1396- rebuild
1397
1398* Mon Aug  4 2003 Nalin Dahyabhai <nalin@redhat.com> 1.3.1-0
1399- update to 1.3.1
1400
1401* Thu Jul 24 2003 Nalin Dahyabhai <nalin@redhat.com> 1.3-2
1402- pull fix for non-compliant encoding of salt field in etype-info2 preauth
1403  data from 1.3.1 beta 1, until 1.3.1 is released.
1404
1405* Mon Jul 21 2003 Nalin Dahyabhai <nalin@redhat.com> 1.3-1
1406- update to 1.3
1407
1408* Mon Jul  7 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.8-4
1409- correctly use stdargs
1410
1411* Wed Jun 18 2003 Nalin Dahyabhai <nalin@redhat.com> 1.3-0.beta.4
1412- test update to 1.3 beta 4
1413- ditch statglue build option
1414- krb5-devel requires e2fsprogs-devel, which now provides libss and libcom_err
1415
1416* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
1417- rebuilt
1418
1419* Wed May 21 2003 Jeremy Katz <katzj@redhat.com> 1.2.8-2
1420- gcc 3.3 doesn't implement varargs.h, include stdarg.h instead
1421
1422* Wed Apr  9 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.8-1
1423- update to 1.2.8
1424
1425* Mon Mar 31 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.7-14
1426- fix double-free of enc_part2 in krb524d
1427
1428* Fri Mar 21 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.7-13
1429- update to latest patch kit for MITKRB5-SA-2003-004
1430
1431* Wed Mar 19 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.7-12
1432- add patch included in MITKRB5-SA-2003-003 (CAN-2003-0028)
1433
1434* Mon Mar 17 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.7-11
1435- add patches from patchkit from MITKRB5-SA-2003-004 (CAN-2003-0138 and
1436  CAN-2003-0139)
1437
1438* Thu Mar  6 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.7-10
1439- rebuild
1440
1441* Thu Mar  6 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.7-9
1442- fix buffer underrun in unparsing certain principals (CAN-2003-0082)
1443
1444* Tue Feb  4 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.7-8
1445- add patch to document the reject-bad-transited option in kdc.conf
1446
1447* Mon Feb  3 2003 Nalin Dahyabhai <nalin@redhat.com>
1448- add patch to fix server-side crashes when principals have no
1449  components (CAN-2003-0072)
1450
1451* Thu Jan 23 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.7-7
1452- add patch from Mark Cox for exploitable bugs in ftp client
1453
1454* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
1455- rebuilt
1456
1457* Wed Jan 15 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.7-5
1458- use PICFLAGS when building code from the ktany patch
1459
1460* Thu Jan  9 2003 Bill Nottingham <notting@redhat.com> 1.2.7-4
1461- debloat
1462
1463* Tue Jan  7 2003 Jeremy Katz <katzj@redhat.com> 1.2.7-3
1464- include .so.* symlinks as well as .so.*.*
1465
1466* Mon Dec  9 2002 Jakub Jelinek <jakub@redhat.com> 1.2.7-2
1467- always #include <errno.h> to access errno, never do it directly
1468- enable LFS on a bunch of other 32-bit arches
1469
1470* Wed Dec  4 2002 Nalin Dahyabhai <nalin@redhat.com>
1471- increase the maximum name length allowed by kuserok() to the higher value
1472  used in development versions
1473
1474* Mon Dec  2 2002 Nalin Dahyabhai <nalin@redhat.com>
1475- install src/krb524/README as README.krb524 in the -servers package,
1476  includes information about converting for AFS principals
1477
1478* Fri Nov 15 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.7-1
1479- update to 1.2.7
1480- disable use of tcl
1481
1482* Mon Nov 11 2002 Nalin Dahyabhai <nalin@redhat.com>
1483- update to 1.2.7-beta2 (internal only, not for release), dropping dnsparse
1484  and kadmind4 fixes
1485
1486* Wed Oct 23 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.6-5
1487- add patch for buffer overflow in kadmind4 (not used by default)
1488
1489* Fri Oct 11 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.6-4
1490- drop a hunk from the dnsparse patch which is actually redundant (thanks to
1491  Tom Yu)
1492
1493* Wed Oct  9 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.6-3
1494- patch to handle truncated dns responses
1495
1496* Mon Oct  7 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.6-2
1497- remove hashless key types from the default kdc.conf, they're not supposed to
1498  be there, noted by Sam Hartman on krbdev
1499
1500* Fri Sep 27 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.6-1
1501- update to 1.2.6
1502
1503* Fri Sep 13 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.5-7
1504- use %%{_lib} for the sake of multilib systems
1505
1506* Fri Aug  2 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.5-6
1507- add patch from Tom Yu for exploitable bugs in rpc code used in kadmind
1508
1509* Tue Jul 23 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.5-5
1510- fix bug in krb5.csh which would cause the path check to always succeed
1511
1512* Fri Jul 19 2002 Jakub Jelinek <jakub@redhat.com> 1.2.5-4
1513- build even libdb.a with -fPIC and $RPM_OPT_FLAGS.
1514
1515* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
1516- automated rebuild
1517
1518* Sun May 26 2002 Tim Powers <timp@redhat.com>
1519- automated rebuild
1520
1521* Wed May  1 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.5-1
1522- update to 1.2.5
1523- disable statglue
1524
1525* Fri Mar  1 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.4-1
1526- update to 1.2.4
1527
1528* Wed Feb 20 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.3-5
1529- rebuild in new environment
1530- reenable statglue
1531
1532* Sat Jan 26 2002 Florian La Roche <Florian.LaRoche@redhat.de>
1533- prereq chkconfig for the server subpackage
1534
1535* Wed Jan 16 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.3-3
1536- build without -g3, which gives us large static libraries in -devel
1537
1538* Tue Jan 15 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.3-2
1539- reintroduce ld.so.conf munging in the -libs %%post
1540
1541* Thu Jan 10 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.3-1
1542- rename the krb5 package back to krb5-libs; the previous rename caused
1543  something of an uproar
1544- update to 1.2.3, which includes the FTP and telnetd fixes
1545- configure without --enable-dns-for-kdc --enable-dns-for-realm, which now set
1546  the default behavior instead of enabling the feature (the feature is enabled
1547  by --enable-dns, which we still use)
1548- reenable optimizations on Alpha
1549- support more encryption types in the default kdc.conf (heads-up from post
1550  to comp.protocols.kerberos by Jason Heiss)
1551
1552* Fri Aug  3 2001 Nalin Dahyabhai <nalin@redhat.com> 1.2.2-14
1553- rename the krb5-libs package to krb5 (naming a subpackage -libs when there
1554  is no main package is silly)
1555- move defaults for PAM to the appdefaults section of krb5.conf -- this is
1556  the area where the krb5_appdefault_* functions look for settings)
1557- disable statglue (warning: breaks binary compatibility with previous
1558  packages, but has to be broken at some point to work correctly with
1559  unpatched versions built with newer versions of glibc)
1560
1561* Fri Aug  3 2001 Nalin Dahyabhai <nalin@redhat.com> 1.2.2-13
1562- bump release number and rebuild
1563
1564* Wed Aug  1 2001 Nalin Dahyabhai <nalin@redhat.com>
1565- add patch to fix telnetd vulnerability
1566
1567* Fri Jul 20 2001 Nalin Dahyabhai <nalin@redhat.com>
1568- tweak statglue.c to fix stat/stat64 aliasing problems
1569- be cleaner in use of gcc to build shlibs
1570
1571* Wed Jul 11 2001 Nalin Dahyabhai <nalin@redhat.com>
1572- use gcc to build shared libraries
1573
1574* Wed Jun 27 2001 Nalin Dahyabhai <nalin@redhat.com>
1575- add patch to support "ANY" keytab type (i.e.,
1576  "default_keytab_name = ANY:FILE:/etc/krb5.keytab,SRVTAB:/etc/srvtab"
1577  patch from Gerald Britton, #42551)
1578- build with -D_FILE_OFFSET_BITS=64 to get large file I/O in ftpd (#30697)
1579- patch ftpd to use long long and %%lld format specifiers to support the SIZE
1580  command on large files (also #30697)
1581- don't use LOG_AUTH as an option value when calling openlog() in ksu (#45965)
1582- implement reload in krb5kdc and kadmind init scripts (#41911)
1583- lose the krb5server init script (not using it any more)
1584
1585* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
1586- Bump release + rebuild.
1587
1588* Tue May 29 2001 Nalin Dahyabhai <nalin@redhat.com>
1589- pass some structures by address instead of on the stack in krb5kdc
1590
1591* Tue May 22 2001 Nalin Dahyabhai <nalin@redhat.com>
1592- rebuild in new environment
1593
1594* Thu Apr 26 2001 Nalin Dahyabhai <nalin@redhat.com>
1595- add patch from Tom Yu to fix ftpd overflows (#37731)
1596
1597* Wed Apr 18 2001 Than Ngo <than@redhat.com>
1598- disable optimizations on the alpha again
1599
1600* Fri Mar 30 2001 Nalin Dahyabhai <nalin@redhat.com>
1601- add in glue code to make sure that libkrb5 continues to provide a
1602  weak copy of stat()
1603
1604* Thu Mar 15 2001 Nalin Dahyabhai <nalin@redhat.com>
1605- build alpha with -O0 for now
1606
1607* Thu Mar  8 2001 Nalin Dahyabhai <nalin@redhat.com>
1608- fix the kpropd init script
1609
1610* Mon Mar  5 2001 Nalin Dahyabhai <nalin@redhat.com>
1611- update to 1.2.2, which fixes some bugs relating to empty ETYPE-INFO
1612- re-enable optimization on Alpha
1613
1614* Thu Feb  8 2001 Nalin Dahyabhai <nalin@redhat.com>
1615- build alpha with -O0 for now
1616- own %{_var}/kerberos
1617
1618* Tue Feb  6 2001 Nalin Dahyabhai <nalin@redhat.com>
1619- own the directories which are created for each package (#26342)
1620
1621* Tue Jan 23 2001 Nalin Dahyabhai <nalin@redhat.com>
1622- gettextize init scripts
1623
1624* Fri Jan 19 2001 Nalin Dahyabhai <nalin@redhat.com>
1625- add some comments to the ksu patches for the curious
1626- re-enable optimization on alphas
1627
1628* Mon Jan 15 2001 Nalin Dahyabhai <nalin@redhat.com>
1629- fix krb5-send-pr (#18932) and move it from -server to -workstation
1630- buildprereq libtermcap-devel
1631- temporariliy disable optimization on alphas
1632- gettextize init scripts
1633
1634* Tue Dec  5 2000 Nalin Dahyabhai <nalin@redhat.com>
1635- force -fPIC
1636
1637* Fri Dec  1 2000 Nalin Dahyabhai <nalin@redhat.com>
1638- rebuild in new environment
1639
1640* Tue Oct 31 2000 Nalin Dahyabhai <nalin@redhat.com>
1641- add bison as a BuildPrereq (#20091)
1642
1643* Mon Oct 30 2000 Nalin Dahyabhai <nalin@redhat.com>
1644- change /usr/dict/words to /usr/share/dict/words in default kdc.conf (#20000)
1645
1646* Thu Oct  5 2000 Nalin Dahyabhai <nalin@redhat.com>
1647- apply kpasswd bug fixes from David Wragg
1648
1649* Wed Oct  4 2000 Nalin Dahyabhai <nalin@redhat.com>
1650- make krb5-libs obsolete the old krb5-configs package (#18351)
1651- don't quit from the kpropd init script if there's no principal database so
1652  that you can propagate the first time without running kpropd manually
1653- don't complain if /etc/ld.so.conf doesn't exist in the -libs %post
1654
1655* Tue Sep 12 2000 Nalin Dahyabhai <nalin@redhat.com>
1656- fix credential forwarding problem in klogind (goof in KRB5CCNAME handling)
1657  (#11588)
1658- fix heap corruption bug in FTP client (#14301)
1659
1660* Wed Aug 16 2000 Nalin Dahyabhai <nalin@redhat.com>
1661- fix summaries and descriptions
1662- switched the default transfer protocol from PORT to PASV as proposed on
1663  bugzilla (#16134), and to match the regular ftp package's behavior
1664
1665* Wed Jul 19 2000 Jeff Johnson <jbj@redhat.com>
1666- rebuild to compress man pages.
1667
1668* Sat Jul 15 2000 Bill Nottingham <notting@redhat.com>
1669- move initscript back
1670
1671* Fri Jul 14 2000 Nalin Dahyabhai <nalin@redhat.com>
1672- disable servers by default to keep linuxconf from thinking they need to be
1673  started when they don't
1674
1675* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
1676- automatic rebuild
1677
1678* Mon Jul 10 2000 Nalin Dahyabhai <nalin@redhat.com>
1679- change cleanup code in post to not tickle chkconfig
1680- add grep as a Prereq: for -libs
1681
1682* Thu Jul  6 2000 Nalin Dahyabhai <nalin@redhat.com>
1683- move condrestarts to postun
1684- make xinetd configs noreplace
1685- add descriptions to xinetd configs
1686- add /etc/init.d as a prereq for the -server package
1687- patch to properly truncate $TERM in krlogind
1688
1689* Fri Jun 30 2000 Nalin Dahyabhai <nalin@redhat.com>
1690- update to 1.2.1
1691- back out Tom Yu's patch, which is a big chunk of the 1.2 -> 1.2.1 update
1692- start using the official source tarball instead of its contents
1693
1694* Thu Jun 29 2000 Nalin Dahyabhai <nalin@redhat.com>
1695- Tom Yu's patch to fix compatibility between 1.2 kadmin and 1.1.1 kadmind
1696- pull out 6.2 options in the spec file (sonames changing in 1.2 means it's not
1697  compatible with other stuff in 6.2, so no need)
1698
1699* Wed Jun 28 2000 Nalin Dahyabhai <nalin@redhat.com>
1700- tweak graceful start/stop logic in post and preun
1701
1702* Mon Jun 26 2000 Nalin Dahyabhai <nalin@redhat.com>
1703- update to the 1.2 release
1704- ditch a lot of our patches which went upstream
1705- enable use of DNS to look up things at build-time
1706- disable use of DNS to look up things at run-time in default krb5.conf
1707- change ownership of the convert-config-files script to root.root
1708- compress PS docs
1709- fix some typos in the kinit man page
1710- run condrestart in server post, and shut down in preun
1711
1712* Mon Jun 19 2000 Nalin Dahyabhai <nalin@redhat.com>
1713- only remove old krb5server init script links if the init script is there
1714
1715* Sat Jun 17 2000 Nalin Dahyabhai <nalin@redhat.com>
1716- disable kshell and eklogin by default
1717
1718* Thu Jun 15 2000 Nalin Dahyabhai <nalin@redhat.com>
1719- patch mkdir/rmdir problem in ftpcmd.y
1720- add condrestart option to init script
1721- split the server init script into three pieces and add one for kpropd
1722
1723* Wed Jun 14 2000 Nalin Dahyabhai <nalin@redhat.com>
1724- make sure workstation servers are all disabled by default
1725- clean up krb5server init script
1726
1727* Fri Jun  9 2000 Nalin Dahyabhai <nalin@redhat.com>
1728- apply second set of buffer overflow fixes from Tom Yu
1729- fix from Dirk Husung for a bug in buffer cleanups in the test suite
1730- work around possibly broken rev binary in running test suite
1731- move default realm configs from /var/kerberos to %{_var}/kerberos
1732
1733* Tue Jun  6 2000 Nalin Dahyabhai <nalin@redhat.com>
1734- make ksu and v4rcp owned by root
1735
1736* Sat Jun  3 2000 Nalin Dahyabhai <nalin@redhat.com>
1737- use %%{_infodir} to better comply with FHS
1738- move .so files to -devel subpackage
1739- tweak xinetd config files (bugs #11833, #11835, #11836, #11840)
1740- fix package descriptions again
1741
1742* Wed May 24 2000 Nalin Dahyabhai <nalin@redhat.com>
1743- change a LINE_MAX to 1024, fix from Ken Raeburn
1744- add fix for login vulnerability in case anyone rebuilds without krb4 compat
1745- add tweaks for byte-swapping macros in krb.h, also from Ken
1746- add xinetd config files
1747- make rsh and rlogin quieter
1748- build with debug to fix credential forwarding
1749- add rsh as a build-time req because the configure scripts look for it to
1750  determine paths
1751
1752* Wed May 17 2000 Nalin Dahyabhai <nalin@redhat.com>
1753- fix config_subpackage logic
1754
1755* Tue May 16 2000 Nalin Dahyabhai <nalin@redhat.com>
1756- remove setuid bit on v4rcp and ksu in case the checks previously added
1757  don't close all of the problems in ksu
1758- apply patches from Jeffrey Schiller to fix overruns Chris Evans found
1759- reintroduce configs subpackage for use in the errata
1760- add PreReq: sh-utils
1761
1762* Mon May 15 2000 Nalin Dahyabhai <nalin@redhat.com>
1763- fix double-free in the kdc (patch merged into MIT tree)
1764- include convert-config-files script as a documentation file
1765
1766* Wed May 03 2000 Nalin Dahyabhai <nalin@redhat.com>
1767- patch ksu man page because the -C option never works
1768- add access() checks and disable debug mode in ksu
1769- modify default ksu build arguments to specify more directories in CMD_PATH
1770  and to use getusershell()
1771
1772* Wed May 03 2000 Bill Nottingham <notting@redhat.com>
1773- fix configure stuff for ia64
1774
1775* Mon Apr 10 2000 Nalin Dahyabhai <nalin@redhat.com>
1776- add LDCOMBINE=-lc to configure invocation to use libc versioning (bug #10653)
1777- change Requires: for/in subpackages to include %{version}
1778
1779* Wed Apr 05 2000 Nalin Dahyabhai <nalin@redhat.com>
1780- add man pages for kerberos(1), kvno(1), .k5login(5)
1781- add kvno to -workstation
1782
1783* Mon Apr 03 2000 Nalin Dahyabhai <nalin@redhat.com>
1784- Merge krb5-configs back into krb5-libs.  The krb5.conf file is marked as
1785  a %%config file anyway.
1786- Make krb5.conf a noreplace config file.
1787
1788* Thu Mar 30 2000 Nalin Dahyabhai <nalin@redhat.com>
1789- Make klogind pass a clean environment to children, like NetKit's rlogind does.
1790
1791* Wed Mar 08 2000 Nalin Dahyabhai <nalin@redhat.com>
1792- Don't enable the server by default.
1793- Compress info pages.
1794- Add defaults for the PAM module to krb5.conf
1795
1796* Mon Mar 06 2000 Nalin Dahyabhai <nalin@redhat.com>
1797- Correct copyright: it's exportable now, provided the proper paperwork is
1798  filed with the government.
1799
1800* Fri Mar 03 2000 Nalin Dahyabhai <nalin@redhat.com>
1801- apply Mike Friedman's patch to fix format string problems
1802- don't strip off argv[0] when invoking regular rsh/rlogin
1803
1804* Thu Mar 02 2000 Nalin Dahyabhai <nalin@redhat.com>
1805- run kadmin.local correctly at startup
1806
1807* Mon Feb 28 2000 Nalin Dahyabhai <nalin@redhat.com>
1808- pass absolute path to kadm5.keytab if/when extracting keys at startup
1809
1810* Sat Feb 19 2000 Nalin Dahyabhai <nalin@redhat.com>
1811- fix info page insertions
1812
1813* Wed Feb  9 2000 Nalin Dahyabhai <nalin@redhat.com>
1814- tweak server init script to automatically extract kadm5 keys if
1815  /var/kerberos/krb5kdc/kadm5.keytab doesn't exist yet
1816- adjust package descriptions
1817
1818* Thu Feb  3 2000 Nalin Dahyabhai <nalin@redhat.com>
1819- fix for potentially gzipped man pages
1820
1821* Fri Jan 21 2000 Nalin Dahyabhai <nalin@redhat.com>
1822- fix comments in krb5-configs
1823
1824* Fri Jan  7 2000 Nalin Dahyabhai <nalin@redhat.com>
1825- move /usr/kerberos/bin to end of PATH
1826
1827* Tue Dec 28 1999 Nalin Dahyabhai <nalin@redhat.com>
1828- install kadmin header files
1829
1830* Tue Dec 21 1999 Nalin Dahyabhai <nalin@redhat.com>
1831- patch around TIOCGTLC defined on alpha and remove warnings from libpty.h
1832- add installation of info docs
1833- remove krb4 compat patch because it doesn't fix workstation-side servers
1834
1835* Mon Dec 20 1999 Nalin Dahyabhai <nalin@redhat.com>
1836- remove hesiod dependency at build-time
1837
1838* Sun Dec 19 1999 Nalin Dahyabhai <nsdahya1@eos.ncsu.edu>
1839- rebuild on 1.1.1
1840
1841* Thu Oct  7 1999 Nalin Dahyabhai <nsdahya1@eos.ncsu.edu>
1842- clean up init script for server, verify that it works [jlkatz]
1843- clean up rotation script so that rc likes it better
1844- add clean stanza
1845
1846* Mon Oct  4 1999 Nalin Dahyabhai <nsdahya1@eos.ncsu.edu>
1847- backed out ncurses and makeshlib patches
1848- update for krb5-1.1
1849- add KDC rotation to rc.boot, based on ideas from Michael's C version
1850
1851* Mon Sep 26 1999 Nalin Dahyabhai <nsdahya1@eos.ncsu.edu>
1852- added -lncurses to telnet and telnetd makefiles
1853
1854* Mon Jul  5 1999 Nalin Dahyabhai <nsdahya1@eos.ncsu.edu>
1855- added krb5.csh and krb5.sh to /etc/profile.d
1856
1857* Mon Jun 22 1999 Nalin Dahyabhai <nsdahya1@eos.ncsu.edu>
1858- broke out configuration files
1859
1860* Mon Jun 14 1999 Nalin Dahyabhai <nsdahya1@eos.ncsu.edu>
1861- fixed server package so that it works now
1862
1863* Sat May 15 1999 Nalin Dahyabhai <nsdahya1@eos.ncsu.edu>
1864- started changelog (previous package from zedz.net)
1865- updated existing 1.0.5 RPM from Eos Linux to krb5 1.0.6
1866- added --force to makeinfo commands to skip errors during build
Note: See TracBrowser for help on using the repository browser.