krb5-vl.spec 74 KB

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