krb5-vl.spec 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109
  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: 2%{_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 Aug 31 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.19.2-2
  791. - imported Patch1000 from upstream to fix CVE-2021-37750.
  792. * Thu Aug 05 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.19.2-1
  793. - updated to 1.19.2.
  794. - re-imported all patches from rawhide.
  795. * Thu Nov 26 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.18.3-1
  796. - updated to 1.18.3.
  797. - dropped all patches.
  798. - imported patches from rawhide.
  799. * Wed Apr 08 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.18-1
  800. - updated to 1.18.
  801. - added systemd support (disabled as default).
  802. - dropped all patches.
  803. - imported patches from rawhide.
  804. * Thu Nov 01 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.16.1-1
  805. - updated to 1.16.1.
  806. * Wed Feb 28 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.16-2
  807. - fixed /etc/krb5.conf.
  808. * Wed Feb 28 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.16-1
  809. - updated to 1.16.
  810. * Mon Aug 1 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.14.3-1
  811. - updated to 1.14.3.
  812. * Wed May 25 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.14.2-1
  813. - updated to 1.14.2.
  814. * Tue Mar 19 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 1.11.1-1
  815. - update to 1.11.1
  816. * Thu Sep 20 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.8.2-7
  817. - add patch83 for fix CVE-2012-1015 (MITKRB5-SA-2012-001)
  818. - add patch84 for fix CVE-2012-1013 (kadmind)
  819. * Thu Jan 5 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.8.2-6
  820. - add patch82 for fix CVE-2011-1528,29 and CVE-2011-4151
  821. - add Vendor/Distribution tags
  822. * Wed Apr 20 2011 IWAI, Masaharu <iwai@alib.jp> 1.8.2-5
  823. - add MITKRB5SA-2011-004 patch (Patch81, CVE-2011-0285)
  824. * Wed Mar 23 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.2-4
  825. - add BR: e2fsprogs-devel
  826. - add R: e2fsprogs-devel to -devel subpackage
  827. - fix krb5-server dependency
  828. - R: initscripts >= 8.91.3-1
  829. * Mon Mar 21 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.8.2-3
  830. - fix compat32-devel package missing...
  831. * Mon Mar 21 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.8.2-2
  832. - add Obsoletes: krb5-workstation-clients, krb5-workstation-servers into workstation pkg
  833. * Sun Mar 20 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.8.2-1
  834. - new upstream release 1.8
  835. - this package based on rhel6
  836. * Mon Mar 14 2011 Nalin Dahyabhai <nalin@redhat.com> 1.8.2-3.6
  837. - add revised upstream patch to fix double-free in KDC while returning
  838. typed-data with errors (CVE-2011-0284, #681564)
  839. * Mon Jan 10 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.3-8
  840. - rebuild with openssl-1.0.0c
  841. - add Patch500 (krb5-1.6.3-openssl-1.0.0-vine.patch)
  842. - change BuildRequires: texlive instead of tetex-latex
  843. * Fri May 21 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.6.3-7
  844. - add patch87 for fix CVE-2010-1321 (GSS API Null pointer def)
  845. * Sat Apr 10 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.6.3-6
  846. - add patch86 for fix CVE-2010-0629 (kadmind DoS)
  847. - add Vendor/Distribution tags
  848. * Thu Jan 14 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.6.3-5
  849. - add Patch85 for fix CVE-2009-4212 (AES and RC4 Decryption)
  850. * Sat Jun 27 2009 NAKAMURA Kenta <kenta@vinelinux.org> 1.6.3-4
  851. - added compat32 package for x86_64 arch support
  852. * Wed Apr 22 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.3-3
  853. - add Patch80: update backport of the preauth module interface
  854. - add Patch82: fix CVE-2009-0844,0845
  855. - add Patch83: fix CVE-2009-0846
  856. - add Patch84: fix CVE-2009-0847
  857. * Sat Apr 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.3-2
  858. - rebuild with openldap-2.4.11
  859. * Thu Oct 02 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.3-1
  860. - initial build for Vine Linux
  861. * Tue Aug 5 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.6.3-16
  862. - fix license tag
  863. * Wed Jul 16 2008 Nalin Dahyabhai <nalin@redhat.com>
  864. - clear fuzz out of patches, dropping a man page patch which is no longer
  865. necessary
  866. - quote %%{__cc} where needed because it includes whitespace now
  867. - define ASN1BUF_OMIT_INLINE_FUNCS at compile-time (for now) to keep building
  868. * Fri Jul 11 2008 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-15
  869. - build with -fno-strict-aliasing, which is needed because the library
  870. triggers these warnings
  871. - don't forget to label principal database lock files
  872. - fix the labeling patch so that it doesn't break bootstrapping
  873. * Sat Jun 14 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.6.3-14
  874. - generate src/include/krb5/krb5.h before building
  875. - fix conditional for sparcv9
  876. * Wed Apr 16 2008 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-13
  877. - ftp: use the correct local filename during mget when the 'case' option is
  878. enabled (#442713)
  879. * Fri Apr 4 2008 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-12
  880. - stop exporting kadmin keys to a keytab file when kadmind starts -- the
  881. daemon's been able to use the database directly for a long long time now
  882. - belatedly add aes128,aes256 to the default set of supported key types
  883. * Tue Apr 1 2008 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-11
  884. - libgssapi_krb5: properly export the acceptor subkey when creating a lucid
  885. context (Kevin Coffman, via the nfs4 mailing list)
  886. * Tue Mar 18 2008 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-10
  887. - add fixes from MITKRB5-SA-2008-001 for use of null or dangling pointer
  888. when v4 compatibility is enabled on the KDC (CVE-2008-0062, CVE-2008-0063,
  889. #432620, #432621)
  890. - add fixes from MITKRB5-SA-2008-002 for array out-of-bounds accesses when
  891. high-numbered descriptors are used (CVE-2008-0947, #433596)
  892. - add backport bug fix for an attempt to free non-heap memory in
  893. libgssapi_krb5 (CVE-2007-5901, #415321)
  894. - add backport bug fix for a double-free in out-of-memory situations in
  895. libgssapi_krb5 (CVE-2007-5971, #415351)
  896. * Tue Mar 18 2008 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-9
  897. - rework file labeling patch to not depend on fragile preprocessor trickery,
  898. in another attempt at fixing #428355 and friends
  899. * Tue Feb 26 2008 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-8
  900. - ftp: add patch to fix "runique on" case when globbing fixes applied
  901. - stop adding a redundant but harmless call to initialize the gssapi internals
  902. * Mon Feb 25 2008 Nalin Dahyabhai <nalin@redhat.com>
  903. - add patch to suppress double-processing of /etc/krb5.conf when we build
  904. with --sysconfdir=/etc, thereby suppressing double-logging (#231147)
  905. * Mon Feb 25 2008 Nalin Dahyabhai <nalin@redhat.com>
  906. - remove a patch, to fix problems with interfaces which are "up" but which
  907. have no address assigned, which conflicted with a different fix for the same
  908. problem in 1.5 (#200979)
  909. * Mon Feb 25 2008 Nalin Dahyabhai <nalin@redhat.com>
  910. - ftp: don't lose track of a descriptor on passive get when the server fails to
  911. open a file
  912. * Mon Feb 25 2008 Nalin Dahyabhai <nalin@redhat.com>
  913. - in login, allow PAM to interact with the user when they've been strongly
  914. authenticated
  915. - in login, signal PAM when we're changing an expired password that it's an
  916. expired password, so that when cracklib flags a password as being weak it's
  917. treated as an error even if we're running as root
  918. * Mon Feb 18 2008 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-7
  919. - drop netdb patch
  920. - kdb_ldap: add patch to treat 'nsAccountLock: true' as an indication that
  921. the DISALLOW_ALL_TIX flag is set on an entry, for better interop with Fedora,
  922. Netscape, Red Hat Directory Server (Simo Sorce)
  923. * Wed Feb 13 2008 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-6
  924. - patch to avoid depending on <netdb.h> to define NI_MAXHOST and NI_MAXSERV
  925. * Tue Feb 12 2008 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-5
  926. - enable patch for key-expiration reporting
  927. - enable patch to make kpasswd fall back to TCP if UDP fails (#251206)
  928. - enable patch to make kpasswd use the right sequence number on retransmit
  929. - enable patch to allow mech-specific creds delegated under spnego to be found
  930. when searching for creds
  931. * Wed Jan 2 2008 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-4
  932. - some init script cleanups
  933. - drop unquoted check and silent exit for "$NETWORKING" (#426852, #242502)
  934. - krb524: don't barf on missing database if it looks like we're using kldap,
  935. same as for kadmin
  936. - return non-zero status for missing files which cause startup to
  937. fail (#242502)
  938. * Tue Dec 18 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-3
  939. - allocate space for the nul-terminator in the local pathname when looking up
  940. a file context, and properly free a previous context (Jose Plans, #426085)
  941. * Wed Dec 5 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-2
  942. - rebuild
  943. * Tue Oct 23 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.3-1
  944. - update to 1.6.3, dropping now-integrated patches for CVE-2007-3999
  945. and CVE-2007-4000 (the new pkinit module is built conditionally and goes
  946. into the -pkinit-openssl package, at least for now, to make a buildreq
  947. loop with openssl avoidable)
  948. * Wed Oct 17 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.2-10
  949. - make proper use of pam_loginuid and pam_selinux in rshd and ftpd
  950. * Fri Oct 12 2007 Nalin Dahyabhai <nalin@redhat.com>
  951. - make krb5.conf %%verify(not md5 size mtime) in addition to
  952. %%config(noreplace), like /etc/nsswitch.conf (#329811)
  953. * Mon Oct 1 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.2-9
  954. - apply the fix for CVE-2007-4000 instead of the experimental patch for
  955. setting ok-as-delegate flags
  956. * Tue Sep 11 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.2-8
  957. - move the db2 kdb plugin from -server to -libs, because a multilib libkdb
  958. might need it
  959. * Tue Sep 11 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.2-7
  960. - also perform PAM session and credential management when ftpd accepts a
  961. client using strong authentication, missed earlier
  962. - also label kadmind log files and files created by the db2 plugin
  963. * Thu Sep 6 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.2-6
  964. - incorporate updated fix for CVE-2007-3999 (CVE-2007-4743)
  965. - fix incorrect call to "test" in the kadmin init script (#252322,#287291)
  966. * Tue Sep 4 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.2-5
  967. - incorporate fixes for MITKRB5-SA-2007-006 (CVE-2007-3999, CVE-2007-4000)
  968. * Sat Aug 25 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.2-4
  969. - cover more cases in labeling files on creation
  970. - add missing gawk build dependency
  971. * Thu Aug 23 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.2-3
  972. - rebuild
  973. * Thu Jul 26 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.2-2
  974. - kdc.conf: default to listening for TCP clients, too (#248415)
  975. * Thu Jul 19 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.2-1
  976. - update to 1.6.2
  977. - add "buildrequires: texinfo-tex" to get texi2pdf
  978. * Wed Jun 27 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.1-8
  979. - incorporate fixes for MITKRB5-SA-2007-004 (CVE-2007-2442,CVE-2007-2443)
  980. and MITKRB5-SA-2007-005 (CVE-2007-2798)
  981. * Mon Jun 25 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.1-7
  982. - reintroduce missing %%postun for the non-split_workstation case
  983. * Mon Jun 25 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.1-6
  984. - rebuild
  985. * Mon Jun 25 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.1-5.1
  986. - rebuild
  987. * Sun Jun 24 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.1-5
  988. - add missing pam-devel build requirement, force selinux-or-fail build
  989. * Sun Jun 24 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.1-4
  990. - rebuild
  991. * Sun Jun 24 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.1-3
  992. - label all files at creation-time according to the SELinux policy (#228157)
  993. * Fri Jun 22 2007 Nalin Dahyabhai <nalin@redhat.com>
  994. - perform PAM account / session management in krshd (#182195,#195922)
  995. - perform PAM authentication and account / session management in ftpd
  996. - perform PAM authentication, account / session management, and password-
  997. changing in login.krb5 (#182195,#195922)
  998. * Fri Jun 22 2007 Nalin Dahyabhai <nalin@redhat.com>
  999. - preprocess kerberos.ldif into a format FDS will like better, and include
  1000. that as a doc file as well
  1001. * Fri Jun 22 2007 Nalin Dahyabhai <nalin@redhat.com>
  1002. - switch man pages to being generated with the right paths in them
  1003. - drop old, incomplete SELinux patch
  1004. - add patch from Greg Hudson to make srvtab routines report missing-file errors
  1005. at same point that keytab routines do (#241805)
  1006. * Thu May 24 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.1-2
  1007. - pull patch from svn to undo unintentional chattiness in ftp
  1008. - pull patch from svn to handle NULL krb5_get_init_creds_opt structures
  1009. better in a couple of places where they're expected
  1010. * Wed May 23 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6.1-1
  1011. - update to 1.6.1
  1012. - drop no-longer-needed patches for CVE-2007-0956,CVE-2007-0957,CVE-2007-1216
  1013. - drop patch for sendto bug in 1.6, fixed in 1.6.1
  1014. * Fri May 18 2007 Nalin Dahyabhai <nalin@redhat.com>
  1015. - kadmind.init: don't fail outright if the default principal database
  1016. isn't there if it looks like we might be using the kldap plugin
  1017. - kadmind.init: attempt to extract the key for the host-specific kadmin
  1018. service when we try to create the keytab
  1019. * Wed May 16 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6-6
  1020. - omit dependent libraries from the krb5-config --libs output, as using
  1021. shared libraries (no more static libraries) makes them unnecessary and
  1022. they're not part of the libkrb5 interface (patch by Rex Dieter, #240220)
  1023. (strips out libkeyutils, libresolv, libdl)
  1024. * Fri May 4 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6-5
  1025. - pull in keyutils as a build requirement to get the "KEYRING:" ccache type,
  1026. because we've merged
  1027. * Fri May 4 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6-4
  1028. - fix an uninitialized length value which could cause a crash when parsing
  1029. key data coming from a directory server
  1030. - correct a typo in the krb5.conf man page ("ldap_server"->"ldap_servers")
  1031. * Fri Apr 13 2007 Nalin Dahyabhai <nalin@redhat.com>
  1032. - move the default acl_file, dict_file, and admin_keytab settings to
  1033. the part of the default/example kdc.conf where they'll actually have
  1034. an effect (#236417)
  1035. * Thu Apr 5 2007 Nalin Dahyabhai <nalin@redhat.com> 1.5-24
  1036. - merge security fixes from RHSA-2007:0095
  1037. * Tue Apr 3 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6-3
  1038. - add patch to correct unauthorized access via krb5-aware telnet
  1039. daemon (#229782, CVE-2007-0956)
  1040. - add patch to fix buffer overflow in krb5kdc and kadmind
  1041. (#231528, CVE-2007-0957)
  1042. - add patch to fix double-free in kadmind (#231537, CVE-2007-1216)
  1043. * Thu Mar 22 2007 Nalin Dahyabhai <nalin@redhat.com>
  1044. - back out buildrequires: keyutils-libs-devel for now
  1045. * Thu Mar 22 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6-2
  1046. - add buildrequires: on keyutils-libs-devel to enable use of keyring ccaches,
  1047. dragging keyutils-libs in as a dependency
  1048. * Mon Mar 19 2007 Nalin Dahyabhai <nalin@redhat.com> 1.5-23
  1049. - fix bug ID in changelog
  1050. * Thu Mar 15 2007 Nalin Dahyabhai <nalin@redhat.com> 1.5-22
  1051. * Thu Mar 15 2007 Nalin Dahyabhai <nalin@redhat.com> 1.5-21
  1052. - add preliminary patch to fix buffer overflow in krb5kdc and kadmind
  1053. (#231528, CVE-2007-0957)
  1054. - add preliminary patch to fix double-free in kadmind (#231537, CVE-2007-1216)
  1055. * Wed Feb 28 2007 Nalin Dahyabhai <nalin@redhat.com>
  1056. - add patch to build semi-useful static libraries, but don't apply it unless
  1057. we need them
  1058. * Tue Feb 27 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.5-20
  1059. - temporarily back out %%post changes, fix for #143289 for security update
  1060. - add preliminary patch to correct unauthorized access via krb5-aware telnet
  1061. * Mon Feb 19 2007 Nalin Dahyabhai <nalin@redhat.com>
  1062. - make profile.d scriptlets mode 644 instead of 755 (part of #225974)
  1063. * Tue Jan 30 2007 Nalin Dahyabhai <nalin@redhat.com> 1.6-1
  1064. - clean up quoting of command-line arguments passed to the krsh/krlogin
  1065. wrapper scripts
  1066. * Mon Jan 22 2007 Nalin Dahyabhai <nalin@redhat.com>
  1067. - initial update to 1.6, pre-package-reorg
  1068. - move workstation daemons to a new subpackage (#81836, #216356, #217301), and
  1069. make the new subpackage require xinetd (#211885)
  1070. * Mon Jan 22 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.5-18
  1071. - make use of install-info more failsafe (Ville Skyttä, #223704)
  1072. - preserve timestamps on shell scriptlets at %%install-time
  1073. * Tue Jan 16 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.5-17
  1074. - move to using pregenerated PDF docs to cure multilib conflicts (#222721)
  1075. * Fri Jan 12 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.5-16
  1076. - update backport of the preauth module interface (part of #194654)
  1077. * Tue Jan 9 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.5-14
  1078. - apply fixes from Tom Yu for MITKRB5-SA-2006-002 (CVE-2006-6143) (#218456)
  1079. - apply fixes from Tom Yu for MITKRB5-SA-2006-003 (CVE-2006-6144) (#218456)
  1080. * Wed Dec 20 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-12
  1081. - update backport of the preauth module interface
  1082. * Mon Oct 30 2006 Nalin Dahyabhai <nalin@redhat.com>
  1083. - update backport of the preauth module interface
  1084. - add proposed patches 4566, 4567
  1085. - add proposed edata reporting interface for KDC
  1086. - add temporary placeholder for module global context fixes
  1087. * Mon Oct 23 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-11
  1088. - don't bail from the KDC init script if there's no database, it may be in
  1089. a different location than the default (fenlason)
  1090. - remove the [kdc] section from the default krb5.conf -- doesn't seem to have
  1091. been applicable for a while
  1092. * Wed Oct 18 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-10
  1093. - rename krb5.sh and krb5.csh so that they don't overlap (#210623)
  1094. - way-late application of added error info in kadmind.init (#65853)
  1095. * Wed Oct 18 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-9.pal_18695
  1096. - add backport of in-development preauth module interface (#208643)
  1097. * Mon Oct 9 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-9
  1098. - provide docs in PDF format instead of as tex source (Enrico Scholz, #209943)
  1099. * Wed Oct 4 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-8
  1100. - add missing shebang headers to krsh and krlogin wrapper scripts (#209238)
  1101. * Wed Sep 6 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-7
  1102. - set SS_LIB at configure-time so that libss-using apps get working readline
  1103. support (#197044)
  1104. * Fri Aug 18 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-6
  1105. - switch to the updated patch for MITKRB-SA-2006-001
  1106. * Tue Aug 8 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-5
  1107. - apply patch to address MITKRB-SA-2006-001 (CVE-2006-3084)
  1108. * Mon Aug 7 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-4
  1109. - ensure that the gssapi library's been initialized before walking the
  1110. internal mechanism list in gss_release_oid(), needed if called from
  1111. gss_release_name() right after a gss_import_name() (#198092)
  1112. * Tue Jul 25 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-3
  1113. - rebuild
  1114. * Tue Jul 25 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-2
  1115. - pull up latest revision of patch to reduce lockups in rsh/rshd
  1116. * Mon Jul 17 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.5-1.2
  1117. - rebuild
  1118. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.5-1.1
  1119. - rebuild
  1120. * Thu Jul 6 2006 Nalin Dahyabhai <nalin@redhat.com> 1.5-1
  1121. - build
  1122. * Wed Jul 5 2006 Nalin Dahyabhai <nalin@redhat.com> 1.5-0
  1123. - update to 1.5
  1124. * Fri Jun 23 2006 Nalin Dahyabhai <nalin@redhat.com> 1.4.3-9
  1125. - mark profile.d config files noreplace (Laurent Rineau, #196447)
  1126. * Thu Jun 8 2006 Nalin Dahyabhai <nalin@redhat.com> 1.4.3-8
  1127. - add buildprereq for autoconf
  1128. * Mon May 22 2006 Nalin Dahyabhai <nalin@redhat.com> 1.4.3-7
  1129. - further munge krb5-config so that 'libdir=/usr/lib' is given even on 64-bit
  1130. architectures, to avoid multilib conflicts; other changes will conspire to
  1131. strip out the -L flag which uses this, so it should be harmless (#192692)
  1132. * Fri Apr 28 2006 Nalin Dahyabhai <nalin@redhat.com> 1.4.3-6
  1133. - adjust the patch which removes the use of rpath to also produce a
  1134. krb5-config which is okay in multilib environments (#190118)
  1135. - make the name-of-the-tempfile comment which compile_et adds to error code
  1136. headers always list the same file to avoid conflicts on multilib installations
  1137. - strip SIZEOF_LONG out of krb5.h so that it doesn't conflict on multilib boxes
  1138. - strip GSS_SIZEOF_LONG out of gssapi.h so that it doesn't conflict on mulitlib
  1139. boxes
  1140. * Fri Apr 14 2006 Stepan Kasal <skasal@redhat.com> 1.4.3-5
  1141. - Fix formatting typo in kinit.1 (krb5-kinit-man-typo.patch)
  1142. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> 1.4.3-4.1
  1143. - bump again for double-long bug on ppc(64)
  1144. * Mon Feb 6 2006 Nalin Dahyabhai <nalin@redhat.com> 1.4.3-4
  1145. - give a little bit more information to the user when kinit gets the catch-all
  1146. I/O error (#180175)
  1147. * Thu Jan 19 2006 Nalin Dahyabhai <nalin@redhat.com> 1.4.3-3
  1148. - rebuild properly when pthread_mutexattr_setrobust_np() is defined but not
  1149. declared, such as with recent glibc when _GNU_SOURCE isn't being used
  1150. * Thu Jan 19 2006 Matthias Clasen <mclasen@redhat.com> 1.4.3-2
  1151. - Use full paths in krb5.sh to avoid path lookups
  1152. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
  1153. - rebuilt
  1154. * Thu Dec 1 2005 Nalin Dahyabhai <nalin@redhat.com>
  1155. - login: don't truncate passwords before passing them into crypt(), in
  1156. case they're significant (#149476)
  1157. * Thu Nov 17 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.3-1
  1158. - update to 1.4.3
  1159. - make ksu setuid again (#137934, others)
  1160. * Tue Sep 13 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.2-4
  1161. - mark %%{krb5prefix}/man so that files which are packaged within it are
  1162. flagged as %%doc (#168163)
  1163. * Tue Sep 6 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.2-3
  1164. - add an xinetd configuration file for encryption-only telnetd, parallelling
  1165. the kshell/ekshell pair (#167535)
  1166. * Wed Aug 31 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.2-2
  1167. - change the default configured encryption type for KDC databases to the
  1168. compiled-in default of des3-hmac-sha1 (#57847)
  1169. * Thu Aug 11 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.2-1
  1170. - update to 1.4.2, incorporating the fixes for MIT-KRB5-SA-2005-002 and
  1171. MIT-KRB5-SA-2005-003
  1172. * Wed Jun 29 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.1-6
  1173. - rebuild
  1174. * Wed Jun 29 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.1-5
  1175. - fix telnet client environment variable disclosure the same way NetKit's
  1176. telnet client did (CAN-2005-0488) (#159305)
  1177. - keep apps which call krb5_principal_compare() or krb5_realm_compare() with
  1178. malformed or NULL principal structures from crashing outright (Thomas Biege)
  1179. (#161475)
  1180. * Tue Jun 28 2005 Nalin Dahyabhai <nalin@redhat.com>
  1181. - apply fixes from draft of MIT-KRB5-SA-2005-002 (CAN-2005-1174,CAN-2005-1175)
  1182. (#157104)
  1183. - apply fixes from draft of MIT-KRB5-SA-2005-003 (CAN-2005-1689) (#159755)
  1184. * Fri Jun 24 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.1-4
  1185. - fix double-close in keytab handling
  1186. - add port of fixes for CAN-2004-0175 to krb5-aware rcp (#151612)
  1187. * Fri May 13 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.1-3
  1188. - prevent spurious EBADF in krshd when stdin is closed by the client while
  1189. the command is running (#151111)
  1190. * Fri May 13 2005 Martin Stransky <stransky@redhat.com> 1.4.1-2
  1191. - add deadlock patch, removed old patch
  1192. * Fri May 6 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.1-1
  1193. - update to 1.4.1, incorporating fixes for CAN-2005-0468 and CAN-2005-0469
  1194. - when starting the KDC or kadmind, if KRB5REALM is set via the /etc/sysconfig
  1195. file for the service, pass it as an argument for the -r flag
  1196. * Wed Mar 23 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4-3
  1197. - drop krshd patch for now
  1198. * Thu Mar 17 2005 Nalin Dahyabhai <nalin@redhat.com>
  1199. - add draft fix from Tom Yu for slc_add_reply() buffer overflow (CAN-2005-0469)
  1200. - add draft fix from Tom Yu for env_opt_add() buffer overflow (CAN-2005-0468)
  1201. * Wed Mar 16 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4-2
  1202. - don't include <term.h> into the telnet client when we're not using curses
  1203. * Thu Feb 24 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4-1
  1204. - update to 1.4
  1205. - v1.4 kadmin client requires a v1.4 kadmind on the server, or use the "-O"
  1206. flag to specify that it should communicate with the server using the older
  1207. protocol
  1208. - new libkrb5support library
  1209. - v5passwdd and kadmind4 are gone
  1210. - versioned symbols
  1211. - pick up $KRB5KDC_ARGS from /etc/sysconfig/krb5kdc, if it exists, and pass
  1212. it on to krb5kdc
  1213. - pick up $KADMIND_ARGS from /etc/sysconfig/kadmin, if it exists, and pass
  1214. it on to kadmind
  1215. - pick up $KRB524D_ARGS from /etc/sysconfig/krb524, if it exists, and pass
  1216. it on to krb524d *instead of* "-m"
  1217. - set "forwardable" in [libdefaults] in the default krb5.conf to match the
  1218. default setting which we supply for pam_krb5
  1219. - set a default of 24h for "ticket_lifetime" in [libdefaults], reflecting the
  1220. compiled-in default
  1221. * Mon Dec 20 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.6-3
  1222. - rebuild
  1223. * Mon Dec 20 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.6-2
  1224. - rebuild
  1225. * Mon Dec 20 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.6-1
  1226. - update to 1.3.6, which includes the previous fix
  1227. * Mon Dec 20 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.5-8
  1228. - apply fix from Tom Yu for MITKRB5-SA-2004-004 (CAN-2004-1189)
  1229. * Fri Dec 17 2004 Martin Stransky <stransky@redhat.com> 1.3.5-7
  1230. - fix deadlock during file transfer via rsync/krsh
  1231. - thanks goes to James Antill for hint
  1232. * Fri Nov 26 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.5-6
  1233. - rebuild
  1234. * Mon Nov 22 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.5-3
  1235. - fix predictable-tempfile-name bug in krb5-send-pr (CAN-2004-0971, #140036)
  1236. * Tue Nov 16 2004 Nalin Dahyabhai <nalin@redhat.com>
  1237. - silence compiler warning in kprop by using an in-memory ccache with a fixed
  1238. name instead of an on-disk ccache with a name generated by tmpnam()
  1239. * Tue Nov 16 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.5-2
  1240. - fix globbing patch port mode (#139075)
  1241. * Mon Nov 1 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.5-1
  1242. - fix segfault in telnet due to incorrect checking of gethostbyname_r result
  1243. codes (#129059)
  1244. * Fri Oct 15 2004 Nalin Dahyabhai <nalin@redhat.com>
  1245. - remove rc4-hmac:norealm and rc4-hmac:onlyrealm from the default list of
  1246. supported keytypes in kdc.conf -- they produce exactly the same keys as
  1247. rc4-hmac:normal because rc4 string-to-key ignores salts
  1248. - nuke kdcrotate -- there are better ways to balance the load on KDCs, and
  1249. the SELinux policy for it would have been scary-looking
  1250. - update to 1.3.5, mainly to include MITKRB5SA 2004-002 and 2004-003
  1251. * Tue Aug 31 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.4-7
  1252. - rebuild
  1253. * Tue Aug 24 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.4-6
  1254. - rebuild
  1255. * Tue Aug 24 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.4-5
  1256. - incorporate revised fixes from Tom Yu for CAN-2004-0642, CAN-2004-0644,
  1257. CAN-2004-0772
  1258. * Mon Aug 23 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.4-4
  1259. - rebuild
  1260. * Mon Aug 23 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.4-3
  1261. - incorporate fixes from Tom Yu for CAN-2004-0642, CAN-2004-0772
  1262. (MITKRB5-SA-2004-002, #130732)
  1263. - incorporate fixes from Tom Yu for CAN-2004-0644 (MITKRB5-SA-2004-003, #130732)
  1264. * Tue Jul 27 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.4-2
  1265. - fix indexing error in server sorting patch (#127336)
  1266. * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
  1267. - rebuilt
  1268. * Mon Jun 14 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.4-0.1
  1269. - update to 1.3.4 final
  1270. * Mon Jun 7 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.4-0
  1271. - update to 1.3.4 beta1
  1272. - remove MITKRB5-SA-2004-001, included in 1.3.4
  1273. * Mon Jun 7 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.3-8
  1274. - rebuild
  1275. * Fri Jun 4 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.3-7
  1276. - rebuild
  1277. * Fri Jun 4 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.3-6
  1278. - apply updated patch from MITKRB5-SA-2004-001 (revision 2004-06-02)
  1279. * Tue Jun 1 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.3-5
  1280. - rebuild
  1281. * Tue Jun 1 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.3-4
  1282. - apply patch from MITKRB5-SA-2004-001 (#125001)
  1283. * Wed May 12 2004 Thomas Woerner <twoerner@redhat.com> 1.3.3-3
  1284. - removed rpath
  1285. * Thu Apr 15 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.3-2
  1286. - re-enable large file support, fell out in 1.3-1
  1287. - patch rcp to use long long and %%lld format specifiers when reporting file
  1288. sizes on large files
  1289. * Tue Apr 13 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.3-1
  1290. - update to 1.3.3
  1291. * Wed Mar 10 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.2-1
  1292. - update to 1.3.2
  1293. * Mon Mar 8 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.1-12
  1294. - rebuild
  1295. * Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com> 1.3.1-11.1
  1296. - rebuilt
  1297. * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> 1.3.1-11
  1298. - rebuilt
  1299. * Mon Feb 9 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.1-10
  1300. - catch krb4 send_to_kdc cases in kdc preference patch
  1301. * Mon Feb 2 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.1-9
  1302. - remove patch to set TERM in klogind which, combined with the upstream fix in
  1303. 1.3.1, actually produces the bug now (#114762)
  1304. * Mon Jan 19 2004 Nalin Dahyabhai <nalin@redhat.com> 1.3.1-8
  1305. - when iterating over lists of interfaces which are "up" from getifaddrs(),
  1306. skip over those which have no address (#113347)
  1307. * Mon Jan 12 2004 Nalin Dahyabhai <nalin@redhat.com>
  1308. - prefer the kdc which last replied to a request when sending requests to kdcs
  1309. * Mon Nov 24 2003 Nalin Dahyabhai <nalin@redhat.com> 1.3.1-7
  1310. - fix combination of --with-netlib and --enable-dns (#82176)
  1311. * Tue Nov 18 2003 Nalin Dahyabhai <nalin@redhat.com>
  1312. - remove libdefault ticket_lifetime option from the default krb5.conf, it is
  1313. ignored by libkrb5
  1314. * Thu Sep 25 2003 Nalin Dahyabhai <nalin@redhat.com> 1.3.1-6
  1315. - fix bug in patch to make rlogind start login with a clean environment a la
  1316. netkit rlogin, spotted and fixed by Scott McClung
  1317. * Tue Sep 23 2003 Nalin Dahyabhai <nalin@redhat.com> 1.3.1-5
  1318. - include profile.d scriptlets in krb5-devel so that krb5-config will be in
  1319. the path if krb5-workstation isn't installed, reported by Kir Kolyshkin
  1320. * Mon Sep 8 2003 Nalin Dahyabhai <nalin@redhat.com>
  1321. - add more etypes (arcfour) to the default enctype list in kdc.conf
  1322. - don't apply previous patch, refused upstream
  1323. * Fri Sep 5 2003 Nalin Dahyabhai <nalin@redhat.com> 1.3.1-4
  1324. - fix 32/64-bit bug storing and retrieving the issue_date in v4 credentials
  1325. * Wed Sep 3 2003 Dan Walsh <dwalsh@redhat.com> 1.3.1-3
  1326. - Don't check for write access on /etc/krb5.conf if SELinux
  1327. * Tue Aug 26 2003 Nalin Dahyabhai <nalin@redhat.com> 1.3.1-2
  1328. - fixup some int/pointer varargs wackiness
  1329. * Tue Aug 5 2003 Nalin Dahyabhai <nalin@redhat.com> 1.3.1-1
  1330. - rebuild
  1331. * Mon Aug 4 2003 Nalin Dahyabhai <nalin@redhat.com> 1.3.1-0
  1332. - update to 1.3.1
  1333. * Thu Jul 24 2003 Nalin Dahyabhai <nalin@redhat.com> 1.3-2
  1334. - pull fix for non-compliant encoding of salt field in etype-info2 preauth
  1335. data from 1.3.1 beta 1, until 1.3.1 is released.
  1336. * Mon Jul 21 2003 Nalin Dahyabhai <nalin@redhat.com> 1.3-1
  1337. - update to 1.3
  1338. * Mon Jul 7 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.8-4
  1339. - correctly use stdargs
  1340. * Wed Jun 18 2003 Nalin Dahyabhai <nalin@redhat.com> 1.3-0.beta.4
  1341. - test update to 1.3 beta 4
  1342. - ditch statglue build option
  1343. - krb5-devel requires e2fsprogs-devel, which now provides libss and libcom_err
  1344. * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
  1345. - rebuilt
  1346. * Wed May 21 2003 Jeremy Katz <katzj@redhat.com> 1.2.8-2
  1347. - gcc 3.3 doesn't implement varargs.h, include stdarg.h instead
  1348. * Wed Apr 9 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.8-1
  1349. - update to 1.2.8
  1350. * Mon Mar 31 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.7-14
  1351. - fix double-free of enc_part2 in krb524d
  1352. * Fri Mar 21 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.7-13
  1353. - update to latest patch kit for MITKRB5-SA-2003-004
  1354. * Wed Mar 19 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.7-12
  1355. - add patch included in MITKRB5-SA-2003-003 (CAN-2003-0028)
  1356. * Mon Mar 17 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.7-11
  1357. - add patches from patchkit from MITKRB5-SA-2003-004 (CAN-2003-0138 and
  1358. CAN-2003-0139)
  1359. * Thu Mar 6 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.7-10
  1360. - rebuild
  1361. * Thu Mar 6 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.7-9
  1362. - fix buffer underrun in unparsing certain principals (CAN-2003-0082)
  1363. * Tue Feb 4 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.7-8
  1364. - add patch to document the reject-bad-transited option in kdc.conf
  1365. * Mon Feb 3 2003 Nalin Dahyabhai <nalin@redhat.com>
  1366. - add patch to fix server-side crashes when principals have no
  1367. components (CAN-2003-0072)
  1368. * Thu Jan 23 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.7-7
  1369. - add patch from Mark Cox for exploitable bugs in ftp client
  1370. * Wed Jan 22 2003 Tim Powers <timp@redhat.com>
  1371. - rebuilt
  1372. * Wed Jan 15 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.7-5
  1373. - use PICFLAGS when building code from the ktany patch
  1374. * Thu Jan 9 2003 Bill Nottingham <notting@redhat.com> 1.2.7-4
  1375. - debloat
  1376. * Tue Jan 7 2003 Jeremy Katz <katzj@redhat.com> 1.2.7-3
  1377. - include .so.* symlinks as well as .so.*.*
  1378. * Mon Dec 9 2002 Jakub Jelinek <jakub@redhat.com> 1.2.7-2
  1379. - always #include <errno.h> to access errno, never do it directly
  1380. - enable LFS on a bunch of other 32-bit arches
  1381. * Wed Dec 4 2002 Nalin Dahyabhai <nalin@redhat.com>
  1382. - increase the maximum name length allowed by kuserok() to the higher value
  1383. used in development versions
  1384. * Mon Dec 2 2002 Nalin Dahyabhai <nalin@redhat.com>
  1385. - install src/krb524/README as README.krb524 in the -servers package,
  1386. includes information about converting for AFS principals
  1387. * Fri Nov 15 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.7-1
  1388. - update to 1.2.7
  1389. - disable use of tcl
  1390. * Mon Nov 11 2002 Nalin Dahyabhai <nalin@redhat.com>
  1391. - update to 1.2.7-beta2 (internal only, not for release), dropping dnsparse
  1392. and kadmind4 fixes
  1393. * Wed Oct 23 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.6-5
  1394. - add patch for buffer overflow in kadmind4 (not used by default)
  1395. * Fri Oct 11 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.6-4
  1396. - drop a hunk from the dnsparse patch which is actually redundant (thanks to
  1397. Tom Yu)
  1398. * Wed Oct 9 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.6-3
  1399. - patch to handle truncated dns responses
  1400. * Mon Oct 7 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.6-2
  1401. - remove hashless key types from the default kdc.conf, they're not supposed to
  1402. be there, noted by Sam Hartman on krbdev
  1403. * Fri Sep 27 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.6-1
  1404. - update to 1.2.6
  1405. * Fri Sep 13 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.5-7
  1406. - use %%{_lib} for the sake of multilib systems
  1407. * Fri Aug 2 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.5-6
  1408. - add patch from Tom Yu for exploitable bugs in rpc code used in kadmind
  1409. * Tue Jul 23 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.5-5
  1410. - fix bug in krb5.csh which would cause the path check to always succeed
  1411. * Fri Jul 19 2002 Jakub Jelinek <jakub@redhat.com> 1.2.5-4
  1412. - build even libdb.a with -fPIC and $RPM_OPT_FLAGS.
  1413. * Fri Jun 21 2002 Tim Powers <timp@redhat.com>
  1414. - automated rebuild
  1415. * Sun May 26 2002 Tim Powers <timp@redhat.com>
  1416. - automated rebuild
  1417. * Wed May 1 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.5-1
  1418. - update to 1.2.5
  1419. - disable statglue
  1420. * Fri Mar 1 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.4-1
  1421. - update to 1.2.4
  1422. * Wed Feb 20 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.3-5
  1423. - rebuild in new environment
  1424. - reenable statglue
  1425. * Sat Jan 26 2002 Florian La Roche <Florian.LaRoche@redhat.de>
  1426. - prereq chkconfig for the server subpackage
  1427. * Wed Jan 16 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.3-3
  1428. - build without -g3, which gives us large static libraries in -devel
  1429. * Tue Jan 15 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.3-2
  1430. - reintroduce ld.so.conf munging in the -libs %%post
  1431. * Thu Jan 10 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.3-1
  1432. - rename the krb5 package back to krb5-libs; the previous rename caused
  1433. something of an uproar
  1434. - update to 1.2.3, which includes the FTP and telnetd fixes
  1435. - configure without --enable-dns-for-kdc --enable-dns-for-realm, which now set
  1436. the default behavior instead of enabling the feature (the feature is enabled
  1437. by --enable-dns, which we still use)
  1438. - reenable optimizations on Alpha
  1439. - support more encryption types in the default kdc.conf (heads-up from post
  1440. to comp.protocols.kerberos by Jason Heiss)
  1441. * Fri Aug 3 2001 Nalin Dahyabhai <nalin@redhat.com> 1.2.2-14
  1442. - rename the krb5-libs package to krb5 (naming a subpackage -libs when there
  1443. is no main package is silly)
  1444. - move defaults for PAM to the appdefaults section of krb5.conf -- this is
  1445. the area where the krb5_appdefault_* functions look for settings)
  1446. - disable statglue (warning: breaks binary compatibility with previous
  1447. packages, but has to be broken at some point to work correctly with
  1448. unpatched versions built with newer versions of glibc)
  1449. * Fri Aug 3 2001 Nalin Dahyabhai <nalin@redhat.com> 1.2.2-13
  1450. - bump release number and rebuild
  1451. * Wed Aug 1 2001 Nalin Dahyabhai <nalin@redhat.com>
  1452. - add patch to fix telnetd vulnerability
  1453. * Fri Jul 20 2001 Nalin Dahyabhai <nalin@redhat.com>
  1454. - tweak statglue.c to fix stat/stat64 aliasing problems
  1455. - be cleaner in use of gcc to build shlibs
  1456. * Wed Jul 11 2001 Nalin Dahyabhai <nalin@redhat.com>
  1457. - use gcc to build shared libraries
  1458. * Wed Jun 27 2001 Nalin Dahyabhai <nalin@redhat.com>
  1459. - add patch to support "ANY" keytab type (i.e.,
  1460. "default_keytab_name = ANY:FILE:/etc/krb5.keytab,SRVTAB:/etc/srvtab"
  1461. patch from Gerald Britton, #42551)
  1462. - build with -D_FILE_OFFSET_BITS=64 to get large file I/O in ftpd (#30697)
  1463. - patch ftpd to use long long and %%lld format specifiers to support the SIZE
  1464. command on large files (also #30697)
  1465. - don't use LOG_AUTH as an option value when calling openlog() in ksu (#45965)
  1466. - implement reload in krb5kdc and kadmind init scripts (#41911)
  1467. - lose the krb5server init script (not using it any more)
  1468. * Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
  1469. - Bump release + rebuild.
  1470. * Tue May 29 2001 Nalin Dahyabhai <nalin@redhat.com>
  1471. - pass some structures by address instead of on the stack in krb5kdc
  1472. * Tue May 22 2001 Nalin Dahyabhai <nalin@redhat.com>
  1473. - rebuild in new environment
  1474. * Thu Apr 26 2001 Nalin Dahyabhai <nalin@redhat.com>
  1475. - add patch from Tom Yu to fix ftpd overflows (#37731)
  1476. * Wed Apr 18 2001 Than Ngo <than@redhat.com>
  1477. - disable optimizations on the alpha again
  1478. * Fri Mar 30 2001 Nalin Dahyabhai <nalin@redhat.com>
  1479. - add in glue code to make sure that libkrb5 continues to provide a
  1480. weak copy of stat()
  1481. * Thu Mar 15 2001 Nalin Dahyabhai <nalin@redhat.com>
  1482. - build alpha with -O0 for now
  1483. * Thu Mar 8 2001 Nalin Dahyabhai <nalin@redhat.com>
  1484. - fix the kpropd init script
  1485. * Mon Mar 5 2001 Nalin Dahyabhai <nalin@redhat.com>
  1486. - update to 1.2.2, which fixes some bugs relating to empty ETYPE-INFO
  1487. - re-enable optimization on Alpha
  1488. * Thu Feb 8 2001 Nalin Dahyabhai <nalin@redhat.com>
  1489. - build alpha with -O0 for now
  1490. - own %{_var}/kerberos
  1491. * Tue Feb 6 2001 Nalin Dahyabhai <nalin@redhat.com>
  1492. - own the directories which are created for each package (#26342)
  1493. * Tue Jan 23 2001 Nalin Dahyabhai <nalin@redhat.com>
  1494. - gettextize init scripts
  1495. * Fri Jan 19 2001 Nalin Dahyabhai <nalin@redhat.com>
  1496. - add some comments to the ksu patches for the curious
  1497. - re-enable optimization on alphas
  1498. * Mon Jan 15 2001 Nalin Dahyabhai <nalin@redhat.com>
  1499. - fix krb5-send-pr (#18932) and move it from -server to -workstation
  1500. - buildprereq libtermcap-devel
  1501. - temporariliy disable optimization on alphas
  1502. - gettextize init scripts
  1503. * Tue Dec 5 2000 Nalin Dahyabhai <nalin@redhat.com>
  1504. - force -fPIC
  1505. * Fri Dec 1 2000 Nalin Dahyabhai <nalin@redhat.com>
  1506. - rebuild in new environment
  1507. * Tue Oct 31 2000 Nalin Dahyabhai <nalin@redhat.com>
  1508. - add bison as a BuildPrereq (#20091)
  1509. * Mon Oct 30 2000 Nalin Dahyabhai <nalin@redhat.com>
  1510. - change /usr/dict/words to /usr/share/dict/words in default kdc.conf (#20000)
  1511. * Thu Oct 5 2000 Nalin Dahyabhai <nalin@redhat.com>
  1512. - apply kpasswd bug fixes from David Wragg
  1513. * Wed Oct 4 2000 Nalin Dahyabhai <nalin@redhat.com>
  1514. - make krb5-libs obsolete the old krb5-configs package (#18351)
  1515. - don't quit from the kpropd init script if there's no principal database so
  1516. that you can propagate the first time without running kpropd manually
  1517. - don't complain if /etc/ld.so.conf doesn't exist in the -libs %post
  1518. * Tue Sep 12 2000 Nalin Dahyabhai <nalin@redhat.com>
  1519. - fix credential forwarding problem in klogind (goof in KRB5CCNAME handling)
  1520. (#11588)
  1521. - fix heap corruption bug in FTP client (#14301)
  1522. * Wed Aug 16 2000 Nalin Dahyabhai <nalin@redhat.com>
  1523. - fix summaries and descriptions
  1524. - switched the default transfer protocol from PORT to PASV as proposed on
  1525. bugzilla (#16134), and to match the regular ftp package's behavior
  1526. * Wed Jul 19 2000 Jeff Johnson <jbj@redhat.com>
  1527. - rebuild to compress man pages.
  1528. * Sat Jul 15 2000 Bill Nottingham <notting@redhat.com>
  1529. - move initscript back
  1530. * Fri Jul 14 2000 Nalin Dahyabhai <nalin@redhat.com>
  1531. - disable servers by default to keep linuxconf from thinking they need to be
  1532. started when they don't
  1533. * Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
  1534. - automatic rebuild
  1535. * Mon Jul 10 2000 Nalin Dahyabhai <nalin@redhat.com>
  1536. - change cleanup code in post to not tickle chkconfig
  1537. - add grep as a Prereq: for -libs
  1538. * Thu Jul 6 2000 Nalin Dahyabhai <nalin@redhat.com>
  1539. - move condrestarts to postun
  1540. - make xinetd configs noreplace
  1541. - add descriptions to xinetd configs
  1542. - add /etc/init.d as a prereq for the -server package
  1543. - patch to properly truncate $TERM in krlogind
  1544. * Fri Jun 30 2000 Nalin Dahyabhai <nalin@redhat.com>
  1545. - update to 1.2.1
  1546. - back out Tom Yu's patch, which is a big chunk of the 1.2 -> 1.2.1 update
  1547. - start using the official source tarball instead of its contents
  1548. * Thu Jun 29 2000 Nalin Dahyabhai <nalin@redhat.com>
  1549. - Tom Yu's patch to fix compatibility between 1.2 kadmin and 1.1.1 kadmind
  1550. - pull out 6.2 options in the spec file (sonames changing in 1.2 means it's not
  1551. compatible with other stuff in 6.2, so no need)
  1552. * Wed Jun 28 2000 Nalin Dahyabhai <nalin@redhat.com>
  1553. - tweak graceful start/stop logic in post and preun
  1554. * Mon Jun 26 2000 Nalin Dahyabhai <nalin@redhat.com>
  1555. - update to the 1.2 release
  1556. - ditch a lot of our patches which went upstream
  1557. - enable use of DNS to look up things at build-time
  1558. - disable use of DNS to look up things at run-time in default krb5.conf
  1559. - change ownership of the convert-config-files script to root.root
  1560. - compress PS docs
  1561. - fix some typos in the kinit man page
  1562. - run condrestart in server post, and shut down in preun
  1563. * Mon Jun 19 2000 Nalin Dahyabhai <nalin@redhat.com>
  1564. - only remove old krb5server init script links if the init script is there
  1565. * Sat Jun 17 2000 Nalin Dahyabhai <nalin@redhat.com>
  1566. - disable kshell and eklogin by default
  1567. * Thu Jun 15 2000 Nalin Dahyabhai <nalin@redhat.com>
  1568. - patch mkdir/rmdir problem in ftpcmd.y
  1569. - add condrestart option to init script
  1570. - split the server init script into three pieces and add one for kpropd
  1571. * Wed Jun 14 2000 Nalin Dahyabhai <nalin@redhat.com>
  1572. - make sure workstation servers are all disabled by default
  1573. - clean up krb5server init script
  1574. * Fri Jun 9 2000 Nalin Dahyabhai <nalin@redhat.com>
  1575. - apply second set of buffer overflow fixes from Tom Yu
  1576. - fix from Dirk Husung for a bug in buffer cleanups in the test suite
  1577. - work around possibly broken rev binary in running test suite
  1578. - move default realm configs from /var/kerberos to %{_var}/kerberos
  1579. * Tue Jun 6 2000 Nalin Dahyabhai <nalin@redhat.com>
  1580. - make ksu and v4rcp owned by root
  1581. * Sat Jun 3 2000 Nalin Dahyabhai <nalin@redhat.com>
  1582. - use %%{_infodir} to better comply with FHS
  1583. - move .so files to -devel subpackage
  1584. - tweak xinetd config files (bugs #11833, #11835, #11836, #11840)
  1585. - fix package descriptions again
  1586. * Wed May 24 2000 Nalin Dahyabhai <nalin@redhat.com>
  1587. - change a LINE_MAX to 1024, fix from Ken Raeburn
  1588. - add fix for login vulnerability in case anyone rebuilds without krb4 compat
  1589. - add tweaks for byte-swapping macros in krb.h, also from Ken
  1590. - add xinetd config files
  1591. - make rsh and rlogin quieter
  1592. - build with debug to fix credential forwarding
  1593. - add rsh as a build-time req because the configure scripts look for it to
  1594. determine paths
  1595. * Wed May 17 2000 Nalin Dahyabhai <nalin@redhat.com>
  1596. - fix config_subpackage logic
  1597. * Tue May 16 2000 Nalin Dahyabhai <nalin@redhat.com>
  1598. - remove setuid bit on v4rcp and ksu in case the checks previously added
  1599. don't close all of the problems in ksu
  1600. - apply patches from Jeffrey Schiller to fix overruns Chris Evans found
  1601. - reintroduce configs subpackage for use in the errata
  1602. - add PreReq: sh-utils
  1603. * Mon May 15 2000 Nalin Dahyabhai <nalin@redhat.com>
  1604. - fix double-free in the kdc (patch merged into MIT tree)
  1605. - include convert-config-files script as a documentation file
  1606. * Wed May 03 2000 Nalin Dahyabhai <nalin@redhat.com>
  1607. - patch ksu man page because the -C option never works
  1608. - add access() checks and disable debug mode in ksu
  1609. - modify default ksu build arguments to specify more directories in CMD_PATH
  1610. and to use getusershell()
  1611. * Wed May 03 2000 Bill Nottingham <notting@redhat.com>
  1612. - fix configure stuff for ia64
  1613. * Mon Apr 10 2000 Nalin Dahyabhai <nalin@redhat.com>
  1614. - add LDCOMBINE=-lc to configure invocation to use libc versioning (bug #10653)
  1615. - change Requires: for/in subpackages to include %{version}
  1616. * Wed Apr 05 2000 Nalin Dahyabhai <nalin@redhat.com>
  1617. - add man pages for kerberos(1), kvno(1), .k5login(5)
  1618. - add kvno to -workstation
  1619. * Mon Apr 03 2000 Nalin Dahyabhai <nalin@redhat.com>
  1620. - Merge krb5-configs back into krb5-libs. The krb5.conf file is marked as
  1621. a %%config file anyway.
  1622. - Make krb5.conf a noreplace config file.
  1623. * Thu Mar 30 2000 Nalin Dahyabhai <nalin@redhat.com>
  1624. - Make klogind pass a clean environment to children, like NetKit's rlogind does.
  1625. * Wed Mar 08 2000 Nalin Dahyabhai <nalin@redhat.com>
  1626. - Don't enable the server by default.
  1627. - Compress info pages.
  1628. - Add defaults for the PAM module to krb5.conf
  1629. * Mon Mar 06 2000 Nalin Dahyabhai <nalin@redhat.com>
  1630. - Correct copyright: it's exportable now, provided the proper paperwork is
  1631. filed with the government.
  1632. * Fri Mar 03 2000 Nalin Dahyabhai <nalin@redhat.com>
  1633. - apply Mike Friedman's patch to fix format string problems
  1634. - don't strip off argv[0] when invoking regular rsh/rlogin
  1635. * Thu Mar 02 2000 Nalin Dahyabhai <nalin@redhat.com>
  1636. - run kadmin.local correctly at startup
  1637. * Mon Feb 28 2000 Nalin Dahyabhai <nalin@redhat.com>
  1638. - pass absolute path to kadm5.keytab if/when extracting keys at startup
  1639. * Sat Feb 19 2000 Nalin Dahyabhai <nalin@redhat.com>
  1640. - fix info page insertions
  1641. * Wed Feb 9 2000 Nalin Dahyabhai <nalin@redhat.com>
  1642. - tweak server init script to automatically extract kadm5 keys if
  1643. /var/kerberos/krb5kdc/kadm5.keytab doesn't exist yet
  1644. - adjust package descriptions
  1645. * Thu Feb 3 2000 Nalin Dahyabhai <nalin@redhat.com>
  1646. - fix for potentially gzipped man pages
  1647. * Fri Jan 21 2000 Nalin Dahyabhai <nalin@redhat.com>
  1648. - fix comments in krb5-configs
  1649. * Fri Jan 7 2000 Nalin Dahyabhai <nalin@redhat.com>
  1650. - move /usr/kerberos/bin to end of PATH
  1651. * Tue Dec 28 1999 Nalin Dahyabhai <nalin@redhat.com>
  1652. - install kadmin header files
  1653. * Tue Dec 21 1999 Nalin Dahyabhai <nalin@redhat.com>
  1654. - patch around TIOCGTLC defined on alpha and remove warnings from libpty.h
  1655. - add installation of info docs
  1656. - remove krb4 compat patch because it doesn't fix workstation-side servers
  1657. * Mon Dec 20 1999 Nalin Dahyabhai <nalin@redhat.com>
  1658. - remove hesiod dependency at build-time
  1659. * Sun Dec 19 1999 Nalin Dahyabhai <nsdahya1@eos.ncsu.edu>
  1660. - rebuild on 1.1.1
  1661. * Thu Oct 7 1999 Nalin Dahyabhai <nsdahya1@eos.ncsu.edu>
  1662. - clean up init script for server, verify that it works [jlkatz]
  1663. - clean up rotation script so that rc likes it better
  1664. - add clean stanza
  1665. * Mon Oct 4 1999 Nalin Dahyabhai <nsdahya1@eos.ncsu.edu>
  1666. - backed out ncurses and makeshlib patches
  1667. - update for krb5-1.1
  1668. - add KDC rotation to rc.boot, based on ideas from Michael's C version
  1669. * Sun Sep 26 1999 Nalin Dahyabhai <nsdahya1@eos.ncsu.edu>
  1670. - added -lncurses to telnet and telnetd makefiles
  1671. * Mon Jul 5 1999 Nalin Dahyabhai <nsdahya1@eos.ncsu.edu>
  1672. - added krb5.csh and krb5.sh to /etc/profile.d
  1673. * Tue Jun 22 1999 Nalin Dahyabhai <nsdahya1@eos.ncsu.edu>
  1674. - broke out configuration files
  1675. * Mon Jun 14 1999 Nalin Dahyabhai <nsdahya1@eos.ncsu.edu>
  1676. - fixed server package so that it works now
  1677. * Sat May 15 1999 Nalin Dahyabhai <nsdahya1@eos.ncsu.edu>
  1678. - started changelog (previous package from zedz.net)
  1679. - updated existing 1.0.5 RPM from Eos Linux to krb5 1.0.6
  1680. - added --force to makeinfo commands to skip errors during build