pam-vl.spec 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926
  1. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  2. %define pam_redhat_version 0.99.10-1
  3. Summary: A security tool which provides authentication for applications
  4. Summary(ja): アプリケーションに認証の仕組みを提供するセキュリティツール
  5. Name: pam
  6. Version: 1.1.1
  7. Release: 8%{?_dist_release}
  8. # The library is BSD licensed with option to relicense as GPLv2+ - this option is redundant
  9. # as the BSD license allows that anyway. pam_timestamp and pam_console modules are GPLv2+
  10. License: BSD and GPLv2+
  11. Group: System Environment/Base
  12. Source0: http://ftp.us.kernel.org/pub/linux/libs/pam/pre/library/Linux-PAM-%{version}.tar.bz2
  13. Source1: http://ftp.us.kernel.org/pub/linux/libs/pam/pre/library/Linux-PAM-%{version}.tar.bz2.sign
  14. Source2: https://fedorahosted.org/releases/p/a/pam-redhat/pam-redhat-%{pam_redhat_version}.tar.bz2
  15. Source5: other.pamd
  16. Source6: system-auth.pamd
  17. Source7: config-util.pamd
  18. Source8: dlopen.sh
  19. Source9: system-auth.5
  20. Source10: config-util.5
  21. Source11: 90-nproc.conf
  22. Patch1: pam-1.0.90-redhat-modules.patch
  23. Patch2: pam-1.0.91-std-noclose.patch
  24. Patch4: pam-1.1.0-console-nochmod.patch
  25. Patch5: pam-1.1.0-notally.patch
  26. Patch7: pam-1.1.0-console-fixes.patch
  27. Patch8: pam-1.1.1-authtok-prompt.patch
  28. Patch700: pam-0.99.9-sg-dev.patch
  29. ## security patch(es)
  30. # fix CVE-2010-3435 and CVE-2010-3316
  31. Patch1009: pam-1.1.1-drop-privs.patch
  32. # fix CVE-2010-3853
  33. Patch1010: pam-1.1.1-cve-2010-3853.patch
  34. Patch1020: pam-1.1.1_CVE-2011-3148.patch
  35. Patch1030: pam-1.1.1_CVE-2011-3149.patch
  36. %define _sbindir /sbin
  37. %define _moduledir /%{_lib}/security
  38. %define _secconfdir %{_sysconfdir}/security
  39. %define _pamconfdir %{_sysconfdir}/pam.d
  40. %if %{?WITH_SELINUX:0}%{!?WITH_SELINUX:1}
  41. %define WITH_SELINUX 1
  42. %endif
  43. %if %{?WITH_AUDIT:0}%{!?WITH_AUDIT:1}
  44. %define WITH_AUDIT 1
  45. %endif
  46. # VINE
  47. %define WITH_SELINUX 0
  48. %define WITH_AUDIT 0
  49. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
  50. Requires: cracklib, cracklib-dicts >= 2.8
  51. Requires(post): /sbin/ldconfig
  52. Requires(postun): /sbin/ldconfig
  53. BuildRequires: autoconf >= 2.60
  54. BuildRequires: automake, libtool
  55. BuildRequires: bison, flex, sed
  56. BuildRequires: cracklib, cracklib-dicts >= 2.8
  57. BuildRequires: perl, pkgconfig, gettext
  58. %if %{WITH_AUDIT}
  59. BuildRequires: audit-libs-devel >= 1.0.8
  60. Requires: audit-libs >= 1.0.8
  61. %endif
  62. %if %{WITH_SELINUX}
  63. BuildRequires: libselinux-devel >= 1.33.2
  64. Requires: libselinux >= 1.33.2
  65. %endif
  66. BuildRequires: glibc >= 2.3.90-37
  67. Requires: glibc >= 2.3.90-37
  68. # Following deps are necessary only to build the pam library documentation.
  69. BuildRequires: linuxdoc-tools, w3m, libxslt
  70. BuildRequires: docbook-style-xsl, docbook-dtds
  71. BuildRequires: db4-devel
  72. # pam.d/login in old util-linux uses obsolete pam module.
  73. Conflicts: util-linux < 2.14
  74. URL: http://www.us.kernel.org/pub/linux/libs/pam/index.html
  75. Vendor: Project Vine
  76. Distribution: Vine Linux
  77. %description
  78. PAM (Pluggable Authentication Modules) is a system security tool that
  79. allows system administrators to set authentication policy without
  80. having to recompile programs that handle authentication.
  81. %description -l ja
  82. PAM (Pluggable Authentication Modules) は,システム管理者が
  83. プログラムを再コンパイルすることなく認証ポリシーを設定出来る
  84. システムセキュリティツールです.
  85. %package -n compat32-%{name}
  86. Summary: A security tool which provides authentication for applications.
  87. Summary(ja): アプリケーションに認証の仕組みを提供するセキュリティツール
  88. Group: System Environment/Base
  89. Requires: %{name} = %{version}-%{release}
  90. Requires(post): /sbin/ldconfig
  91. Requires(postun): /sbin/ldconfig
  92. %description -n compat32-%{name}
  93. PAM (Pluggable Authentication Modules) is a system security tool
  94. which allows system administrators to set authentication policy
  95. without having to recompile programs which do authentication.
  96. %description -n compat32-%{name} -l ja
  97. PAM (Pluggable Authentication Modules) は,システム管理者が
  98. プログラムを再コンパイルすることなく認証ポリシーを設定出来る
  99. システムセキュリティツールです.
  100. %package devel
  101. Group: Development/Libraries
  102. Summary: Files needed for developing PAM-aware applications and modules for PAM
  103. Summary(ja): PAM 対応アプリケーションや PAM モジュール開発に必要なファイル
  104. Requires: pam = %{version}-%{release}
  105. %description devel
  106. PAM (Pluggable Authentication Modules) is a system security tool that
  107. allows system administrators to set authentication policy without
  108. having to recompile programs that handle authentication. This package
  109. contains header files and static libraries used for building both
  110. PAM-aware applications and modules for use with PAM.
  111. %description devel -l ja
  112. PAM (Pluggable Authentication Modules) は,システム管理者が
  113. プログラムを再コンパイルすることなく認証ポリシーを設定出来る
  114. システムセキュリティツールです.
  115. このパッケージには,PAM 対応アプリケーションや PAM モジュールを
  116. 開発するのに必要なヘッダファイルと静的ライブラリが収められています.
  117. %package -n compat32-%{name}-devel
  118. Group: Development/Libraries
  119. Summary: Files needed for developing PAM-aware applications and modules for PAM.
  120. Summary(ja): PAM 対応アプリケーションや PAM モジュール開発に必要なファイル
  121. Requires: compat32-%{name} = %{version}-%{release}
  122. Requires: %{name}-devel = %{version}-%{release}
  123. %description -n compat32-%{name}-devel
  124. PAM (Pluggable Authentication Modules) is a system security tool
  125. which allows system administrators to set authentication policy
  126. without having to recompile programs which do authentication. This
  127. package contains header files and static libraries used for building
  128. both PAM-aware applications and modules for use with PAM.
  129. %description -n compat32-%{name}-devel -l ja
  130. PAM (Pluggable Authentication Modules) は,システム管理者が
  131. プログラムを再コンパイルすることなく認証ポリシーを設定出来る
  132. システムセキュリティツールです.
  133. このパッケージには,PAM 対応アプリケーションや PAM モジュールを
  134. 開発するのに必要なヘッダファイルと静的ライブラリが収められています.
  135. %prep
  136. %setup -q -n Linux-PAM-%{version} -a 2
  137. # Add custom modules.
  138. mv pam-redhat-%{pam_redhat_version}/* modules
  139. %patch1 -p1 -b .redhat-modules
  140. %patch2 -p1 -b .std-noclose
  141. %patch4 -p1 -b .nochmod
  142. %patch5 -p1 -b .notally
  143. %patch7 -p1 -b .console-fixes
  144. %patch8 -p0 -b .prompt
  145. %patch700 -p1
  146. ## security patch(es)
  147. %patch1009 -p1 -b .drop-privs
  148. %patch1010 -p1 -b .execle
  149. %patch1020 -p1 -b .CVE-2011-3148
  150. %patch1030 -p1 -b .CVE-2011-3149
  151. libtoolize -f
  152. autoreconf
  153. %build
  154. %configure \
  155. --libdir=/%{_lib} \
  156. --includedir=%{_includedir}/security \
  157. --enable-isadir=../..%{_moduledir} \
  158. %if ! %{WITH_SELINUX}
  159. --disable-selinux \
  160. %endif
  161. %if ! %{WITH_AUDIT}
  162. --disable-audit \
  163. %endif
  164. --enable-isadir=../../%{_moduledir}
  165. make
  166. # we do not use _smp_mflags because the build of sources in yacc/flex fails
  167. %install
  168. rm -rf $RPM_BUILD_ROOT
  169. mkdir -p doc/txts
  170. for readme in modules/pam_*/README ; do
  171. cp -f ${readme} doc/txts/README.`dirname ${readme} | sed -e 's|^modules/||'`
  172. done
  173. # Install the binaries, libraries, and modules.
  174. make install DESTDIR=$RPM_BUILD_ROOT LDCONFIG=:
  175. %if %{WITH_SELINUX}
  176. # Temporary compat link
  177. ln -sf pam_sepermit.so $RPM_BUILD_ROOT%{_moduledir}/pam_selinux_permit.so
  178. %endif
  179. # RPM uses docs from source tree
  180. rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/Linux-PAM
  181. # Included in setup package
  182. rm -f $RPM_BUILD_ROOT%{_sysconfdir}/environment
  183. # Install default configuration files.
  184. install -d -m 755 $RPM_BUILD_ROOT%{_pamconfdir}
  185. install -m 644 %{SOURCE5} $RPM_BUILD_ROOT%{_pamconfdir}/other
  186. install -m 644 %{SOURCE6} $RPM_BUILD_ROOT%{_pamconfdir}/system-auth
  187. install -m 644 %{SOURCE7} $RPM_BUILD_ROOT%{_pamconfdir}/config-util
  188. install -m 644 %{SOURCE11} $RPM_BUILD_ROOT%{_secconfdir}/limits.d/90-nproc.conf
  189. install -m 600 /dev/null $RPM_BUILD_ROOT%{_secconfdir}/opasswd
  190. install -d -m 755 $RPM_BUILD_ROOT/var/log
  191. install -m 600 /dev/null $RPM_BUILD_ROOT/var/log/faillog
  192. install -m 600 /dev/null $RPM_BUILD_ROOT/var/log/tallylog
  193. # Install man pages.
  194. install -m 644 %{SOURCE9} %{SOURCE10} $RPM_BUILD_ROOT%{_mandir}/man5/
  195. for phase in auth acct passwd session ; do
  196. ln -sf pam_unix.so $RPM_BUILD_ROOT%{_moduledir}/pam_unix_${phase}.so
  197. done
  198. # Remove .la files and make new .so links -- this depends on the value
  199. # of _libdir not changing, and *not* being /usr/lib.
  200. install -d -m 755 $RPM_BUILD_ROOT%{_libdir}
  201. for lib in libpam libpamc libpam_misc ; do
  202. pushd $RPM_BUILD_ROOT%{_libdir}
  203. ln -sf ../../%{_lib}/${lib}.so.*.* ${lib}.so
  204. popd
  205. rm -f $RPM_BUILD_ROOT/%{_lib}/${lib}.so
  206. rm -f $RPM_BUILD_ROOT/%{_lib}/${lib}.la
  207. done
  208. rm -f $RPM_BUILD_ROOT%{_moduledir}/*.la
  209. # Duplicate doc file sets.
  210. rm -fr $RPM_BUILD_ROOT/usr/share/doc/pam
  211. # Create /lib/security in case it isn't the same as %{_moduledir}.
  212. install -m755 -d $RPM_BUILD_ROOT/lib/security
  213. %find_lang Linux-PAM
  214. %check
  215. # Make sure every module subdirectory gave us a module. Yes, this is hackish.
  216. for dir in modules/pam_* ; do
  217. if [ -d ${dir} ] ; then
  218. %if ! %{WITH_SELINUX}
  219. [ ${dir} = "modules/pam_selinux" -o \
  220. ${dir} = "modules/pam_sepermit" ] && continue
  221. %endif
  222. %if ! %{WITH_AUDIT}
  223. [ ${dir} = "modules/pam_tty_audit" ] && continue
  224. %endif
  225. [ ${dir} = "modules/pam_tally" ] && continue
  226. if ! ls -1 $RPM_BUILD_ROOT%{_moduledir}/`basename ${dir}`*.so ; then
  227. echo ERROR `basename ${dir}` did not build a module.
  228. exit 1
  229. fi
  230. fi
  231. done
  232. # Check for module problems. Specifically, check that every module we just
  233. # installed can actually be loaded by a minimal PAM-aware application.
  234. /sbin/ldconfig -n $RPM_BUILD_ROOT/%{_lib}
  235. for module in $RPM_BUILD_ROOT%{_moduledir}/pam*.so ; do
  236. if ! env LD_LIBRARY_PATH=$RPM_BUILD_ROOT/%{_lib} \
  237. %{SOURCE8} -ldl -lpam -L$RPM_BUILD_ROOT/%{_libdir} ${module} ; then
  238. echo ERROR module: ${module} cannot be loaded.
  239. exit 1
  240. fi
  241. done
  242. %clean
  243. rm -rf $RPM_BUILD_ROOT
  244. %post -p <lua>
  245. os.execute("/sbin/ldconfig")
  246. list = {"faillog", "tallylog"}
  247. for i, f in pairs(list) do
  248. fname = "/var/log/"..f
  249. if not posix.access(fname, "r") then
  250. f = io.open(fname, "w")
  251. f:close()
  252. posix.chmod(fname, "u+rw,go-rwx")
  253. end
  254. end
  255. if posix.access("/etc/rc.d/init.d/sshd", "x") then
  256. os.execute("/etc/rc.d/init.d/sshd condrestart")
  257. end
  258. %postun -p /sbin/ldconfig
  259. %post -n compat32-%{name} -p /sbin/ldconfig
  260. %postun -n compat32-%{name} -p /sbin/ldconfig
  261. %files -f Linux-PAM.lang
  262. %defattr(-,root,root)
  263. %dir %{_pamconfdir}
  264. %config(noreplace) %{_pamconfdir}/other
  265. %config(noreplace) %{_pamconfdir}/system-auth
  266. %config(noreplace) %{_pamconfdir}/config-util
  267. %doc Copyright
  268. %doc doc/txts
  269. %doc doc/sag/*.txt doc/sag/html
  270. %doc doc/specs/rfc86.0.txt
  271. /%{_lib}/libpam.so.*
  272. /%{_lib}/libpamc.so.*
  273. /%{_lib}/libpam_misc.so.*
  274. %{_sbindir}/pam_console_apply
  275. %{_sbindir}/pam_tally2
  276. %attr(4755,root,root) %{_sbindir}/pam_timestamp_check
  277. %attr(4755,root,root) %{_sbindir}/unix_chkpwd
  278. %attr(0700,root,root) %{_sbindir}/unix_update
  279. %attr(0755,root,root) %{_sbindir}/mkhomedir_helper
  280. %if %{_lib} != lib
  281. %dir /lib/security
  282. %endif
  283. %dir %{_moduledir}
  284. %{_moduledir}/pam_access.so
  285. %{_moduledir}/pam_chroot.so
  286. %{_moduledir}/pam_console.so
  287. %{_moduledir}/pam_cracklib.so
  288. %{_moduledir}/pam_debug.so
  289. %{_moduledir}/pam_deny.so
  290. %{_moduledir}/pam_echo.so
  291. %{_moduledir}/pam_env.so
  292. %{_moduledir}/pam_exec.so
  293. %{_moduledir}/pam_faildelay.so
  294. %{_moduledir}/pam_filter.so
  295. %{_moduledir}/pam_ftp.so
  296. %{_moduledir}/pam_group.so
  297. %{_moduledir}/pam_issue.so
  298. %{_moduledir}/pam_keyinit.so
  299. %{_moduledir}/pam_lastlog.so
  300. %{_moduledir}/pam_limits.so
  301. %{_moduledir}/pam_listfile.so
  302. %{_moduledir}/pam_localuser.so
  303. %{_moduledir}/pam_loginuid.so
  304. %{_moduledir}/pam_mail.so
  305. %{_moduledir}/pam_mkhomedir.so
  306. %{_moduledir}/pam_motd.so
  307. %{_moduledir}/pam_namespace.so
  308. %{_moduledir}/pam_nologin.so
  309. %{_moduledir}/pam_permit.so
  310. %{_moduledir}/pam_postgresok.so
  311. %{_moduledir}/pam_pwhistory.so
  312. %{_moduledir}/pam_rhosts.so
  313. %{_moduledir}/pam_rootok.so
  314. %if %{WITH_SELINUX}
  315. %{_moduledir}/pam_selinux.so
  316. %{_moduledir}/pam_selinux_permit.so
  317. %{_moduledir}/pam_sepermit.so
  318. %endif
  319. %{_moduledir}/pam_securetty.so
  320. %{_moduledir}/pam_shells.so
  321. %{_moduledir}/pam_stress.so
  322. %{_moduledir}/pam_succeed_if.so
  323. %{_moduledir}/pam_tally2.so
  324. %{_moduledir}/pam_time.so
  325. %{_moduledir}/pam_timestamp.so
  326. %if %{WITH_AUDIT}
  327. %{_moduledir}/pam_tty_audit.so
  328. %endif
  329. %{_moduledir}/pam_umask.so
  330. %{_moduledir}/pam_unix.so
  331. %{_moduledir}/pam_unix_acct.so
  332. %{_moduledir}/pam_unix_auth.so
  333. %{_moduledir}/pam_unix_passwd.so
  334. %{_moduledir}/pam_unix_session.so
  335. %{_moduledir}/pam_userdb.so
  336. %{_moduledir}/pam_warn.so
  337. %{_moduledir}/pam_wheel.so
  338. %{_moduledir}/pam_xauth.so
  339. %{_moduledir}/pam_filter
  340. %dir %{_secconfdir}
  341. %config(noreplace) %{_secconfdir}/access.conf
  342. %config(noreplace) %{_secconfdir}/chroot.conf
  343. %config %{_secconfdir}/console.perms
  344. %config(noreplace) %{_secconfdir}/console.handlers
  345. %config(noreplace) %{_secconfdir}/group.conf
  346. %config(noreplace) %{_secconfdir}/limits.conf
  347. %dir %{_secconfdir}/limits.d
  348. %config(noreplace) %{_secconfdir}/limits.d/90-nproc.conf
  349. %config(noreplace) %{_secconfdir}/namespace.conf
  350. %dir %{_secconfdir}/namespace.d
  351. %attr(755,root,root) %config(noreplace) %{_secconfdir}/namespace.init
  352. %config(noreplace) %{_secconfdir}/pam_env.conf
  353. %if %{WITH_SELINUX}
  354. %config(noreplace) %{_secconfdir}/sepermit.conf
  355. %endif
  356. %config(noreplace) %{_secconfdir}/time.conf
  357. %config(noreplace) %{_secconfdir}/opasswd
  358. %dir %{_secconfdir}/console.apps
  359. %dir %{_secconfdir}/console.perms.d
  360. %dir /var/run/console
  361. %if %{WITH_SELINUX}
  362. %dir /var/run/sepermit
  363. %endif
  364. %ghost %verify(not md5 size mtime) /var/log/faillog
  365. %ghost %verify(not md5 size mtime) /var/log/tallylog
  366. %{_mandir}/man5/*
  367. %{_mandir}/man8/*
  368. %files devel
  369. %defattr(-,root,root)
  370. %{_includedir}/security/
  371. %{_mandir}/man3/*
  372. %{_libdir}/libpam.so
  373. %{_libdir}/libpamc.so
  374. %{_libdir}/libpam_misc.so
  375. %doc doc/mwg/*.txt doc/mwg/html
  376. %doc doc/adg/*.txt doc/adg/html
  377. %if %{build_compat32}
  378. %files -n compat32-%{name}
  379. %defattr(-,root,root)
  380. %dir %{_pamconfdir}
  381. /%{_lib}/libpam.so.*
  382. /%{_lib}/libpamc.so.*
  383. /%{_lib}/libpam_misc.so.*
  384. %dir /%{_lib}/security
  385. %dir %{_moduledir}
  386. %{_moduledir}/pam_access.so
  387. %{_moduledir}/pam_chroot.so
  388. %{_moduledir}/pam_console.so
  389. %{_moduledir}/pam_cracklib.so
  390. %{_moduledir}/pam_debug.so
  391. %{_moduledir}/pam_deny.so
  392. %{_moduledir}/pam_echo.so
  393. %{_moduledir}/pam_env.so
  394. %{_moduledir}/pam_exec.so
  395. %{_moduledir}/pam_faildelay.so
  396. %{_moduledir}/pam_filter.so
  397. %{_moduledir}/pam_ftp.so
  398. %{_moduledir}/pam_group.so
  399. %{_moduledir}/pam_issue.so
  400. %{_moduledir}/pam_keyinit.so
  401. %{_moduledir}/pam_lastlog.so
  402. %{_moduledir}/pam_limits.so
  403. %{_moduledir}/pam_listfile.so
  404. %{_moduledir}/pam_localuser.so
  405. %{_moduledir}/pam_loginuid.so
  406. %{_moduledir}/pam_mail.so
  407. %{_moduledir}/pam_mkhomedir.so
  408. %{_moduledir}/pam_motd.so
  409. %{_moduledir}/pam_namespace.so
  410. %{_moduledir}/pam_nologin.so
  411. %{_moduledir}/pam_permit.so
  412. %{_moduledir}/pam_postgresok.so
  413. %{_moduledir}/pam_pwhistory.so
  414. %{_moduledir}/pam_rhosts.so
  415. %{_moduledir}/pam_rootok.so
  416. %if %{WITH_SELINUX}
  417. %{_moduledir}/pam_selinux.so
  418. %{_moduledir}/pam_selinux_permit.so
  419. %{_moduledir}/pam_sepermit.so
  420. %endif
  421. %{_moduledir}/pam_securetty.so
  422. %{_moduledir}/pam_shells.so
  423. %{_moduledir}/pam_stress.so
  424. %{_moduledir}/pam_succeed_if.so
  425. %{_moduledir}/pam_tally2.so
  426. %{_moduledir}/pam_time.so
  427. %{_moduledir}/pam_timestamp.so
  428. %if %{WITH_AUDIT}
  429. %{_moduledir}/pam_tty_audit.so
  430. %endif
  431. %{_moduledir}/pam_umask.so
  432. %{_moduledir}/pam_unix.so
  433. %{_moduledir}/pam_unix_acct.so
  434. %{_moduledir}/pam_unix_auth.so
  435. %{_moduledir}/pam_unix_passwd.so
  436. %{_moduledir}/pam_unix_session.so
  437. %{_moduledir}/pam_userdb.so
  438. %{_moduledir}/pam_warn.so
  439. %{_moduledir}/pam_wheel.so
  440. %{_moduledir}/pam_xauth.so
  441. %{_moduledir}/pam_filter
  442. %files -n compat32-%{name}-devel
  443. %defattr(-,root,root)
  444. %{_libdir}/libpam.so
  445. %{_libdir}/libpamc.so
  446. %{_libdir}/libpam_misc.so
  447. %endif
  448. %changelog
  449. * Wed Oct 26 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.1.1-8
  450. - add patch1020 for fix CVE-2011-3148 (parsing environment)
  451. - add patch1030 for fix CVE-2011-3149 (parsing environment)
  452. * Tue May 17 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.1-7
  453. - fix %%post script bug..
  454. * Thu May 12 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.1-6
  455. - use lua in %%post scriptlet
  456. - remove coreutils from R(post)
  457. * Tue Apr 19 2011 IWAI, Masaharu <iwai@alib.jp> 1.1.1-5
  458. - add patches from RHEL 1.1.1-4.1
  459. - drop-privs patch (Patch1009): fix CVE-2010-3435 and CVE-2010-3316
  460. - CVE-2010-3853 (Patch1010)
  461. * Mon Apr 18 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.1.1-4
  462. - rebuilt with recent environment.
  463. * Fri Feb 12 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.1.1-3
  464. - add pam_pwhistory.so to the filelist
  465. * Thu Feb 11 2010 Shu KONNO <owa@bg.wakwak.com> 1.1.1-2
  466. - rebuilt with db4-4.8 (on x86_64)
  467. * Mon Feb 01 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.1-1
  468. - new upstream release
  469. - rebuild with external db4
  470. - drop tests for net pulling in libpthread (as NPTL should be safe)
  471. - drop obsolete pam_tally
  472. * Sat Jul 19 2008 NAKAMURA Kenta <kenta@vinelinux.org> 1.0.1-5
  473. - fixed typo in %%files section
  474. * Tue Jul 08 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-4
  475. - add Conflicts: util-linux < 2.14
  476. - pam.d/login in util-linux uses obsolete pam module.
  477. * Mon Jun 23 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.0.1-3
  478. - updated to 1.0.1 based on 1.0.1-2 from Fedora
  479. - fix %%files and %%check sections when WITH_{AUDIT,SELINUX} both set to 0
  480. - import Patch700 from 0.99.3.0-0vl4
  481. - Tue Sep 14 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 0.99.3.0-0vl4
  482. - add Patch700 to allow console user to access sg devices. <BTS:VineLinux:93>
  483. - modify %%post section same as previous Vine versions did
  484. - Sun Mar 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.99.3.0-0vl2
  485. - use "condrestart" to restart sshd instead of "restart"
  486. - Sat Mar 29 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 0.75-48vl3
  487. - added sshd restart script in %%post section
  488. - other Vine changes include:
  489. - Sun Feb 12 2006 NAKAMURA Kenta <kenta@c.csce.kyushu-u.ac.jp> 0.77-38vl4
  490. - added compat32-* packages for x86_64 architecture support
  491. * Tue Apr 22 2008 Tomas Mraz <tmraz@redhat.com> 1.0.1-2
  492. - pam_selinux: restore execcon properly (#443667)
  493. * Fri Apr 18 2008 Tomas Mraz <tmraz@redhat.com> 1.0.1-1
  494. - upgrade to new upstream release (one bugfix only)
  495. - fix pam_sepermit use in screensavers
  496. * Mon Apr 7 2008 Tomas Mraz <tmraz@redhat.com> 1.0.0-2
  497. - fix regression in pam_set_item
  498. * Fri Apr 4 2008 Tomas Mraz <tmraz@redhat.com> 1.0.0-1
  499. - upgrade to new upstream release (bugfix only)
  500. * Thu Mar 20 2008 Tomas Mraz <tmraz@redhat.com> 0.99.10.0-4
  501. - pam_namespace: fix problem with level polyinst (#438264)
  502. - pam_namespace: improve override checking for umount
  503. - pam_selinux: fix syslogging a context after free() (#438338)
  504. * Thu Feb 28 2008 Tomas Mraz <tmraz@redhat.com> 0.99.10.0-3
  505. - update pam-redhat module tarball
  506. - update internal db4
  507. * Fri Feb 22 2008 Tomas Mraz <tmraz@redhat.com> 0.99.10.0-2
  508. - if shadow is readable for an user do not prevent him from
  509. authenticating any user with unix_chkpwd (#433459)
  510. - call audit from unix_chkpwd when appropriate
  511. * Fri Feb 15 2008 Tomas Mraz <tmraz@redhat.com> 0.99.10.0-1
  512. - new upstream release
  513. - add default soft limit for nproc of 1024 to prevent
  514. accidental fork bombs (#432903)
  515. * Mon Feb 4 2008 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-18
  516. - allow the package to build without SELinux and audit support (#431415)
  517. - macro usage cleanup
  518. * Mon Jan 28 2008 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-17
  519. - test for setkeycreatecon correctly
  520. - add exclusive login mode of operation to pam_selinux_permit (original
  521. patch by Dan Walsh)
  522. * Tue Jan 22 2008 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-16
  523. - add auditing to pam_access, pam_limits, and pam_time
  524. - moved sanity testing code to check script
  525. * Mon Jan 14 2008 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-15
  526. - merge review fixes (#226228)
  527. * Wed Jan 8 2008 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-14
  528. - support for sha256 and sha512 password hashes
  529. - account expiry checks moved to unix_chkpwd helper
  530. * Wed Jan 2 2008 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-13
  531. - wildcard match support in pam_tty_audit (by Miloslav Trmač)
  532. * Thu Nov 29 2007 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-12
  533. - add pam_tty_audit module (#244352) - written by Miloslav Trmač
  534. * Wed Nov 7 2007 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-11
  535. - add substack support
  536. * Tue Sep 25 2007 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-10
  537. - update db4 to 4.6.19 (#274661)
  538. * Fri Sep 21 2007 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-9
  539. - do not preserve contexts when copying skel and other namespace.init
  540. fixes (#298941)
  541. - do not free memory sent to putenv (#231698)
  542. * Wed Sep 19 2007 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-8
  543. - add pam_selinux_permit module
  544. - pam_succeed_if: fix in operator (#295151)
  545. * Tue Sep 18 2007 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-7
  546. - when SELinux enabled always run the helper binary instead of
  547. direct shadow access (#293181)
  548. * Fri Aug 24 2007 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-6
  549. - do not ask for blank password when SELinux confined (#254044)
  550. - initialize homedirs in namespace init script (original patch by dwalsh)
  551. * Wed Aug 22 2007 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-5
  552. - most devices are now handled by HAL and not pam_console (patch by davidz)
  553. - license tag fix
  554. - multifunction scanner device support (#251468)
  555. * Mon Aug 13 2007 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-4
  556. - fix auth regression when uid != 0 from previous build (#251804)
  557. * Mon Aug 6 2007 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-3
  558. - updated db4 to 4.6.18 (#249740)
  559. - added user and new instance parameters to namespace init
  560. - document the new features of pam_namespace
  561. - do not log an audit error when uid != 0 (#249870)
  562. * Wed Jul 25 2007 Jeremy Katz <katzj@redhat.com> - 0.99.8.1-2
  563. - rebuild for toolchain bug
  564. * Mon Jul 23 2007 Tomas Mraz <tmraz@redhat.com> 0.99.8.1-1
  565. - upgrade to latest upstream version
  566. - add some firewire devices to default console perms (#240770)
  567. * Thu Apr 26 2007 Tomas Mraz <tmraz@redhat.com> 0.99.7.1-6
  568. - pam_namespace: better document behavior on failure (#237249)
  569. - pam_unix: split out passwd change to a new helper binary (#236316)
  570. - pam_namespace: add support for temporary logons (#241226)
  571. * Fri Apr 13 2007 Tomas Mraz <tmraz@redhat.com> 0.99.7.1-5
  572. - pam_selinux: improve context change auditing (#234781)
  573. - pam_namespace: fix parsing config file with unknown users (#234513)
  574. * Fri Mar 23 2007 Tomas Mraz <tmraz@redhat.com> 0.99.7.1-4
  575. - pam_console: always decrement use count (#230823)
  576. - pam_namespace: use raw context for poly dir name (#227345)
  577. - pam_namespace: truncate long poly dir name (append hash) (#230120)
  578. - we don't patch any po files anymore
  579. * Wed Feb 21 2007 Tomas Mraz <tmraz@redhat.com> 0.99.7.1-3
  580. - correctly relabel tty in the default case (#229542)
  581. - pam_unix: cleanup of bigcrypt support
  582. - pam_unix: allow modification of '*' passwords to root
  583. * Tue Feb 6 2007 Tomas Mraz <tmraz@redhat.com> 0.99.7.1-2
  584. - more X displays as consoles (#227462)
  585. * Wed Jan 24 2007 Tomas Mraz <tmraz@redhat.com> 0.99.7.1-1
  586. - upgrade to new upstream version resolving CVE-2007-0003
  587. - pam_namespace: unmount poly dir for override users
  588. * Mon Jan 22 2007 Tomas Mraz <tmraz@redhat.com> 0.99.7.0-2
  589. - add back min salt length requirement which was erroneously removed
  590. upstream (CVE-2007-0003)
  591. * Fri Jan 19 2007 Tomas Mraz <tmraz@redhat.com> 0.99.7.0-1
  592. - upgrade to new upstream version
  593. - drop pam_stack module as it is obsolete
  594. - some changes to silence rpmlint
  595. * Tue Jan 16 2007 Tomas Mraz <tmraz@redhat.com> 0.99.6.2-8
  596. - properly include /var/log/faillog and tallylog as ghosts
  597. and create them in post script (#209646)
  598. - update gmo files as we patch some po files (#218271)
  599. - add use_current_range option to pam_selinux (#220487)
  600. - improve the role selection in pam_selinux
  601. - remove shortcut on Password: in ja locale (#218271)
  602. - revert to old euid and not ruid when setting euid in pam_keyinit (#219486)
  603. - rename selinux-namespace patch to namespace-level
  604. * Thu Dec 1 2006 Dan Walsh <dwalsh@redhat.com> 0.99.6.2-7
  605. - fix selection of role
  606. * Thu Dec 1 2006 Dan Walsh <dwalsh@redhat.com> 0.99.6.2-6
  607. - add possibility to pam_namespace to only change MLS component
  608. - Resolves: Bug #216184
  609. * Thu Nov 30 2006 Tomas Mraz <tmraz@redhat.com> 0.99.6.2-5
  610. - add select-context option to pam_selinux (#213812)
  611. - autoreconf won't work with autoconf-2.61 as configure.in is not yet adjusted
  612. for it
  613. * Mon Nov 13 2006 Tomas Mraz <tmraz@redhat.com> 0.99.6.2-4
  614. - update internal db4 to 4.5.20 version
  615. - move setgid before setuid in pam_keyinit (#212329)
  616. - make username check in pam_unix consistent with useradd (#212153)
  617. * Tue Oct 24 2006 Tomas Mraz <tmraz@redhat.com> 0.99.6.2-3.3
  618. - don't overflow a buffer in pam_namespace (#211989)
  619. * Mon Oct 16 2006 Tomas Mraz <tmraz@redhat.com> 0.99.6.2-3.2
  620. - /var/log/faillog and tallylog must be config(noreplace)
  621. * Fri Oct 13 2006 Tomas Mraz <tmraz@redhat.com> 0.99.6.2-3.1
  622. - preserve effective uid in namespace.init script (LSPP for newrole)
  623. - include /var/log/faillog and tallylog to filelist (#209646)
  624. - add ids to .xml docs so the generated html is always the same (#210569)
  625. * Thu Sep 28 2006 Tomas Mraz <tmraz@redhat.com> 0.99.6.2-3
  626. - add pam_namespace option no_unmount_on_close, required for newrole
  627. * Mon Sep 4 2006 Tomas Mraz <tmraz@redhat.com> 0.99.6.2-2
  628. - silence pam_succeed_if in default system-auth (#205067)
  629. - round the pam_timestamp_check sleep up to wake up at the start of the
  630. wallclock second (#205068)
  631. * Thu Aug 31 2006 Tomas Mraz <tmraz@redhat.com> 0.99.6.2-1
  632. - upgrade to new upstream version, as there are mostly bugfixes except
  633. improved documentation
  634. - add support for session and password service for pam_access and
  635. pam_succeed_if
  636. - system-auth: skip session pam_unix for crond service
  637. * Thu Aug 10 2006 Dan Walsh <dwalsh@redhat.com> 0.99.5.0-8
  638. - Add new setkeycreatecon call to pam_selinux to make sure keyring has correct context
  639. * Thu Aug 10 2006 Tomas Mraz <tmraz@redhat.com> 0.99.5.0-7
  640. - revoke keyrings properly when pam_keyinit called as root (#201048)
  641. - pam_succeed_if should return PAM_USER_UNKNOWN when getpwnam fails (#197748)
  642. * Wed Aug 2 2006 Tomas Mraz <tmraz@redhat.com> 0.99.5.0-6
  643. - revoke keyrings properly when pam_keyinit called more than once (#201048)
  644. patch by David Howells
  645. * Fri Jul 21 2006 Tomas Mraz <tmraz@redhat.com> 0.99.5.0-5
  646. - don't log pam_keyinit debug messages by default (#199783)
  647. * Fri Jul 21 2006 Tomas Mraz <tmraz@redhat.com> 0.99.5.0-4
  648. - drop ainit from console.handlers (#199561)
  649. * Mon Jul 17 2006 Tomas Mraz <tmraz@redhat.com> 0.99.5.0-3
  650. - don't report error in pam_selinux for nonexistent tty (#188722)
  651. - add pam_keyinit to the default system-auth file (#198623)
  652. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.99.5.0-2.1
  653. - rebuild
  654. * Mon Jul 3 2006 Tomas Mraz <tmraz@redhat.com> 0.99.5.0-2
  655. - fixed network match in pam_access (patch by Dan Yefimov)
  656. * Fri Jun 30 2006 Tomas Mraz <tmraz@redhat.com> 0.99.5.0-1
  657. - updated to a new upstream release
  658. - added service as value to be matched and list matching to
  659. pam_succeed_if
  660. - namespace.init was missing from EXTRA_DIST
  661. * Thu Jun 8 2006 Tomas Mraz <tmraz@redhat.com> 0.99.4.0-5
  662. - updated pam_namespace with latest patch by Janak Desai
  663. - merged pam_namespace patches
  664. - added buildrequires libtool
  665. - fixed a few rpmlint warnings
  666. * Wed May 24 2006 Tomas Mraz <tmraz@redhat.com> 0.99.4.0-4
  667. - actually don't link to libssl as it is not used (#191915)
  668. * Wed May 17 2006 Tomas Mraz <tmraz@redhat.com> 0.99.4.0-3
  669. - use md5 implementation from pam_unix in pam_namespace
  670. - pam_namespace should call setexeccon only when selinux is enabled
  671. * Tue May 16 2006 Tomas Mraz <tmraz@redhat.com> 0.99.4.0-2
  672. - pam_console_apply shouldn't access /var when called with -r (#191401)
  673. - actually apply the large-uid patch
  674. - don't build hmactest in pam_timestamp so openssl-devel is not required
  675. - add missing buildrequires (#191915)
  676. * Wed May 10 2006 Tomas Mraz <tmraz@redhat.com> 0.99.4.0-1
  677. - upgrade to new upstream version
  678. - make pam_console_apply not dependent on glib
  679. - support large uids in pam_tally, pam_tally2
  680. * Thu May 4 2006 Tomas Mraz <tmraz@redhat.com> 0.99.3.0-5
  681. - the namespace instance init script is now in /etc/security (#190148)
  682. - pam_namespace: added missing braces (#190026)
  683. - pam_tally(2): never call fclose twice on the same FILE (from upstream)
  684. * Wed Apr 26 2006 Tomas Mraz <tmraz@redhat.com> 0.99.3.0-4
  685. - fixed console device class for irda (#189966)
  686. - make pam_console_apply fail gracefully when a class is missing
  687. * Tue Apr 25 2006 Tomas Mraz <tmraz@redhat.com> 0.99.3.0-3
  688. - added pam_namespace module written by Janak Desai (per-user /tmp
  689. support)
  690. - new pam-redhat modules version
  691. * Fri Feb 24 2006 Tomas Mraz <tmraz@redhat.com> 0.99.3.0-2
  692. - added try_first_pass option to pam_cracklib
  693. - use try_first_pass for pam_unix and pam_cracklib in
  694. system-auth (#182350)
  695. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.99.3.0-1.2
  696. - bump again for double-long bug on ppc(64)
  697. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.99.3.0-1.1
  698. - rebuilt for new gcc4.1 snapshot and glibc changes
  699. * Fri Feb 3 2006 Tomas Mraz <tmraz@redhat.com> 0.99.3.0-1
  700. - new upstream version
  701. - updated db4 to 4.3.29
  702. - added module pam_tally2 with auditing support
  703. - added manual pages for system-auth and config-util (#179584)
  704. * Tue Jan 3 2006 Tomas Mraz <tmraz@redhat.com> 0.99.2.1-3
  705. - remove 'initscripts' dependency (#176508)
  706. - update pam-redhat modules, merged patches
  707. * Fri Dec 16 2005 Tomas Mraz <tmraz@redhat.com> 0.99.2.1-2
  708. - fix dangling symlinks in -devel (#175929)
  709. - link libaudit only where necessary
  710. - actually compile in audit support
  711. * Thu Dec 15 2005 Tomas Mraz <tmraz@redhat.com> 0.99.2.1-1
  712. - support netgroup matching in pam_succeed_if
  713. - upgrade to new release
  714. - drop pam_pwdb as it was obsolete long ago
  715. - we don't build static libraries anymore
  716. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
  717. - rebuilt
  718. * Tue Nov 15 2005 Tomas Mraz <tmraz@redhat.com> 0.80-14
  719. - pam_stack is deprecated - log its usage
  720. * Wed Oct 26 2005 Tomas Mraz <tmraz@redhat.com> 0.80-13
  721. - fixed CAN-2005-2977 unix_chkpwd should skip user verification only if
  722. run as root (#168181)
  723. - link pam_loginuid to libaudit
  724. - support no tty in pam_access (#170467)
  725. - updated audit patch (by Steve Grubb)
  726. - the previous pam_selinux change was not applied properly
  727. - pam_xauth: look for the xauth binary in multiple directories (#171164)
  728. * Wed Oct 26 2005 Dan Walsh <dwalsh@redhat.com> 0.80-12
  729. - Eliminate multiple in pam_selinux
  730. * Fri Oct 14 2005 Dan Walsh <dwalsh@redhat.com> 0.80-11
  731. - Eliminate fail over for getseuserbyname call
  732. * Thu Oct 13 2005 Dan Walsh <dwalsh@redhat.com> 0.80-10
  733. - Add getseuserbyname call for SELinux MCS/MLS policy
  734. * Tue Oct 4 2005 Tomas Mraz <tmraz@redhat.com>
  735. - pam_console manpage fixes (#169373)
  736. * Fri Sep 30 2005 Tomas Mraz <tmraz@redhat.com> 0.80-9
  737. - don't include ps and pdf docs (#168823)
  738. - new common config file for configuration utilities
  739. - remove glib2 dependency (#166979)
  740. * Tue Sep 20 2005 Tomas Mraz <tmraz@redhat.com> 0.80-8
  741. - process limit values other than RLIMIT_NICE correctly (#168790)
  742. - pam_unix: always honor nis flag on password change (by Aaron Hope)
  743. * Wed Aug 24 2005 Tomas Mraz <tmraz@redhat.com> 0.80-7
  744. - don't fail in audit code when audit is not compiled in
  745. on the newest kernels (#166422)
  746. * Mon Aug 01 2005 Tomas Mraz <tmraz@redhat.com> 0.80-6
  747. - add option to pam_loginuid to require auditd
  748. * Fri Jul 29 2005 Tomas Mraz <tmraz@redhat.com> 0.80-5
  749. - fix NULL dereference in pam_userdb (#164418)
  750. * Tue Jul 26 2005 Tomas Mraz <tmraz@redhat.com> 0.80-4
  751. - fix 64bit bug in pam_pwdb
  752. - don't crash in pam_unix if pam_get_data fail
  753. * Fri Jul 22 2005 Tomas Mraz <tmraz@redhat.com> 0.80-3
  754. - more pam_selinux permissive fixes (Dan Walsh)
  755. - make binaries PIE (#158938)
  756. * Mon Jul 18 2005 Tomas Mraz <tmraz@redhat.com> 0.80-2
  757. - fixed module tests so the pam doesn't require itself to build (#163502)
  758. - added buildprereq for building the documentation (#163503)
  759. - relaxed permissions of binaries (u+w)
  760. * Thu Jul 14 2005 Tomas Mraz <tmraz@redhat.com> 0.80-1
  761. - upgrade to new upstream sources
  762. - removed obsolete patches
  763. - pam_selinux module shouldn't fail on broken configs unless
  764. policy is set to enforcing (Dan Walsh)
  765. * Tue Jun 21 2005 Tomas Mraz <tmraz@redhat.com> 0.79-11
  766. - update pam audit patch
  767. - add support for new limits in kernel-2.6.12 (#157050)
  768. * Thu Jun 9 2005 Tomas Mraz <tmraz@redhat.com> 0.79-10
  769. - add the Requires dependency on audit-libs (#159885)
  770. - pam_loginuid shouldn't report error when /proc/self/loginuid
  771. is missing (#159974)
  772. * Fri May 20 2005 Tomas Mraz <tmraz@redhat.com> 0.79-9
  773. - update the pam audit patch to support newest audit library,
  774. audit also pam_setcred calls (Steve Grubb)
  775. - don't use the audit_fd as global static variable
  776. - don't unset the XAUTHORITY when target user is root
  777. * Mon May 2 2005 Tomas Mraz <tmraz@redhat.com> 0.79-8
  778. - pam_console: support loading .perms files in the console.perms.d (#156069)
  779. * Tue Apr 26 2005 Tomas Mraz <tmraz@redhat.com> 0.79-7
  780. - pam_xauth: unset the XAUTHORITY variable on error, fix
  781. potential memory leaks
  782. - modify path to IDE floppy devices in console.perms (#155560)
  783. * Sat Apr 16 2005 Steve Grubb <sgrubb@redhat.com> 0.79-6
  784. - Adjusted pam audit patch to make exception for ECONNREFUSED
  785. * Tue Apr 12 2005 Tomas Mraz <tmraz@redhat.com> 0.79-5
  786. - added auditing patch by Steve Grubb
  787. - added cleanup patches for bugs found by Steve Grubb
  788. - don't clear the shadow option of pam_unix if nis option used
  789. * Fri Apr 8 2005 Tomas Mraz <tmraz@redhat.com> 0.79-4
  790. - #150537 - flush input first then write the prompt
  791. * Thu Apr 7 2005 Tomas Mraz <tmraz@redhat.com> 0.79-3
  792. - make pam_unix LSB 2.0 compliant even when SELinux enabled
  793. - #88127 - change both local and NIS passwords to keep them in sync,
  794. also fix a regression in passwd functionality on NIS master server
  795. * Tue Apr 5 2005 Tomas Mraz <tmraz@redhat.com>
  796. - #153711 fix wrong logging in pam_selinux when restoring tty label
  797. * Sun Apr 3 2005 Tomas Mraz <tmraz@redhat.com> 0.79-2
  798. - fix NULL deref in pam_tally when it's used in account phase
  799. * Thu Mar 31 2005 Tomas Mraz <tmraz@redhat.com> 0.79-1
  800. - upgrade to the new upstream release
  801. - moved pam_loginuid to pam-redhat repository
  802. * Wed Mar 23 2005 Tomas Mraz <tmraz@redhat.com> 0.78-9
  803. - fix wrong logging in pam_console handlers
  804. - add executing ainit handler for alsa sound dmix
  805. - #147879, #112777 - change permissions for dri devices
  806. * Fri Mar 18 2005 Tomas Mraz <tmraz@redhat.com> 0.78-8
  807. - remove ownership and permissions handling from pam_console call
  808. pam_console_apply as a handler instead
  809. * Mon Mar 14 2005 Tomas Mraz <tmraz@redhat.com> 0.78-7
  810. - add pam_loginuid module for setting the the login uid for auditing purposes
  811. (by Steve Grubb)
  812. * Thu Mar 10 2005 Tomas Mraz <tmraz@redhat.com> 0.78-6
  813. - add functionality for running handler executables from pam_console
  814. when console lock was obtained/lost
  815. - removed patches merged to pam-redhat
  816. * Tue Mar 1 2005 Tomas Mraz <tmraz@redhat.com> 0.78-5
  817. - echo why tests failed when rebuilding
  818. - fixed some warnings and errors in pam_console for gcc4 build
  819. - improved parsing pam_console config file
  820. * Mon Feb 21 2005 Tomas Mraz <tmraz@redhat.com>
  821. - don't log garbage in pam_console_apply (#147879)
  822. * Tue Jan 18 2005 Tomas Mraz <tmraz@redhat.com>
  823. - don't require exact db4 version only conflict with incompatible one
  824. * Wed Jan 12 2005 Tomas Mraz <tmraz@redhat.com> 0.78-4
  825. - updated pam-redhat from elvis CVS
  826. - removed obsolete patches
  827. * Mon Jan 3 2005 Jeff Johnson <jbj@redhat.com> 0.78-3
  828. - depend on db-4.3.27, not db-4.3.21.
  829. * Thu Nov 25 2004 Tomas Mraz <tmraz@redhat.com> 0.78-2
  830. - add argument to pam_console_apply to restrict its work to specified files
  831. * Tue Nov 23 2004 Tomas Mraz <tmraz@redhat.com> 0.78-1
  832. - update to Linux-PAM-0.78
  833. - #140451 parse passwd entries correctly and test for failure
  834. - #137802 allow using pam_console for authentication
  835. * Fri Nov 12 2004 Jeff Johnson <jbj@jbj.org> 0.77-67
  836. - rebuild against db-4.3.21.
  837. * Thu Nov 11 2004 Tomas Mraz <tmraz@redhat.com> 0.77-66
  838. - #77646 log failures when renaming the files when changing password
  839. - Log failure on missing /etc/security/opasswd when remember option is present
  840. * Wed Nov 10 2004 Tomas Mraz <tmraz@redhat.com>
  841. - #87628 pam_timestamp remembers authorization after logout
  842. - #116956 fixed memory leaks in pam_stack
  843. * Wed Oct 20 2004 Tomas Mraz <tmraz@redhat.com> 0.77-65
  844. - #74062 modify the pwd-lock patch to remove NIS passwd changing deadlock
  845. * Wed Oct 20 2004 Tomas Mraz <tmraz@redhat.com> 0.77-64
  846. - #134941 pam_console should check X11 socket only on login
  847. * Tue Oct 19 2004 Tomas Mraz <tmraz@redhat.com> 0.77-63
  848. - Fix checking of group %%group syntax in pam_limits
  849. - Drop fencepost patch as it was already fixed
  850. by upstream change from 0.75 to 0.77
  851. - Fix brokenshadow patch
  852. * Mon Oct 11 2004 Tomas Mraz <tmraz@redhat.com> 0.77-62
  853. - Added bluetooth, raw1394 and flash to console.perms
  854. - pam_console manpage fix
  855. * Mon Oct 11 2004 Tomas Mraz <tmraz@redhat.com> 0.77-61
  856. - #129328 pam_env shouldn't abort on missing /etc/environment
  857. - #126985 pam_stack should always copy the conversation function
  858. - #127524 add /etc/security/opasswd to files
  859. * Tue Sep 28 2004 Phil Knirsch <pknirsch@redhat.com> 0.77-60
  860. - Drop last patch again, fixed now correctly elsewhere
  861. * Thu Sep 23 2004 Phil Knirsch <pknirsch@redhat.com> 0.77-59
  862. - Fixed bug in pam_env where wrong initializer was used
  863. * Fri Sep 17 2004 Dan Walsh <dwalsh@redhat.com> 0.77-58
  864. - rebuild selinux patch using checkPasswdAccess
  865. * Mon Sep 13 2004 Jindrich Novy <jnovy@redhat.com>
  866. - rebuilt
  867. * Mon Sep 13 2004 Tomas Mraz <tmraz@redhat.com> 0.77-56
  868. - #75454 fixed locking when changing password
  869. - #127054
  870. - #125653 removed unnecessary getgrouplist call
  871. - #124979 added quiet option to pam_succeed_if
  872. * Mon Aug 30 2004 Warren Togami <wtogami@redhat.com> 0.77-55
  873. - #126024 /dev/pmu console perms
  874. * Wed Aug 4 2004 Dan Walsh <dwalsh@redhat.com> 0.77-54
  875. - Move pam_console.lock to /var/run/console/
  876. * Thu Jul 29 2004 Dan Walsh <dwalsh@redhat.com> 0.77-53
  877. - Close fd[1] before pam_modutilread so that unix_verify will complete
  878. * Tue Jul 27 2004 Alan Cox <alan@redhat.com> 0.77-52
  879. - First chunk of Steve Grubb's resource leak and other fixes
  880. * Tue Jul 27 2004 Alan Cox <alan@redhat.com> 0.77-51
  881. - Fixed build testing of modules
  882. - Fixed dependancies
  883. * Tue Jul 20 2004 Dan Walsh <dwalsh@redhat.com> 0.77-50
  884. - Change unix_chkpwd to return pam error codes
  885. * Sat Jul 10 2004 Alan Cox <alan@redhat.com>
  886. - Fixed the pam glib2 dependancy issue
  887. * Mon Jun 21 2004 Alan Cox <alan@redhat.com>
  888. - Fixed the pam_limits fencepost error (#79989) since nobody seems to
  889. be doing it
  890. * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
  891. - rebuilt
  892. * Wed Jun 9 2004 Dan Walsh <dwalsh@redhat.com> 0.77-45
  893. - Add requires libselinux > 1.8
  894. * Thu Jun 3 2004 Dan Walsh <dwalsh@redhat.com> 0.77-44
  895. - Add MLS Support to selinux patch
  896. * Wed Jun 2 2004 Dan Walsh <dwalsh@redhat.com> 0.77-43
  897. - Modify pam_selinux to use open and close param
  898. * Fri May 28 2004 Dan Walsh <dwalsh@redhat.com> 0.77-42
  899. - Split pam module into two parts open and close
  900. * Tue May 18 2004 Phil Knirsch <pknirsch@redhat.com> 0.77-41
  901. - Fixed 64bit segfault in pam_succeed_if module.
  902. * Thu Apr 14 2004 Dan Walsh <dwalsh@redhat.com> 0.77-40
  903. - Apply changes from audit.
  904. * Tue Apr 12 2004 Dan Walsh <dwalsh@redhat.com> 0.77-39
  905. - Change to only report failure on relabel if debug
  906. * Wed Mar 3 2004 Dan Walsh <dwalsh@redhat.com> 0.77-38
  907. - Fix error handling of pam_unix
  908. * Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
  909. - rebuilt
  910. * Thu Feb 26 2004 Dan Walsh <dwalsh@redhat.com> 0.77-36
  911. - fix tty handling
  912. * Thu Feb 26 2004 Dan Walsh <dwalsh@redhat.com> 0.77-35
  913. - remove tty closing and opening from pam_selinux, it does not work.
  914. * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
  915. - rebuilt
  916. * Tue Feb 12 2004 Nalin Dahyabhai <nalin@redhat.com>
  917. - pam_unix: also log successful password changes when using shadowed passwords
  918. * Tue Feb 10 2004 Dan Walsh <dwalsh@redhat.com> 0.77-33
  919. - close and reopen terminal after changing context.
  920. * Thu Feb 5 2004 Dan Walsh <dwalsh@redhat.com> 0.77-32
  921. - Check for valid tty
  922. * Tue Feb 3 2004 Dan Walsh <dwalsh@redhat.com> 0.77-31
  923. - Check for multiple > 1
  924. * Mon Feb 2 2004 Dan Walsh <dwalsh@redhat.com> 0.77-30
  925. - fix is_selinux_enabled call for pam_rootok
  926. * Wed Jan 28 2004 Dan Walsh <dwalsh@redhat.com> 0.77-29
  927. - More fixes to pam_selinux,pam_rootok
  928. * Wed Jan 28 2004 Dan Walsh <dwalsh@redhat.com> 0.77-28
  929. - turn on selinux
  930. * Wed Jan 28 2004 Dan Walsh <dwalsh@redhat.com> 0.77-27
  931. - Fix rootok check.
  932. * Mon Jan 26 2004 Dan Walsh <dwalsh@redhat.com> 0.77-26
  933. - fix is_selinux_enabled call
  934. * Sun Jan 25 2004 Dan Walsh <dwalsh@redhat.com> 0.77-25
  935. - Check if ROOTOK for SELinux
  936. * Thu Jan 15 2004 Dan Walsh <dwalsh@redhat.com> 0.77-24
  937. - Fix tty handling for pts in pam_selinux
  938. * Thu Jan 15 2004 Dan Walsh <dwalsh@redhat.com> 0.77-23
  939. - Need to add qualifier context for sudo situation
  940. * Thu Jan 15 2004 Dan Walsh <dwalsh@redhat.com> 0.77-22
  941. - Fix pam_selinux to use prevcon instead of pam_user so it will work for su.
  942. * Fri Dec 12 2003 Bill Nottingham <notting@redhat.com> 0.77-21.sel
  943. - add alsa devs to console.perms
  944. * Thu Dec 11 2003 Jeff Johnson <jbj@jbj.org> 0.77-20.sel
  945. - rebuild with db-4.2.52.
  946. - build db4 in build_unix, not dist.
  947. * Wed Nov 26 2003 Dan Walsh <dwalsh@redhat.com> 0.77-19.sel
  948. - Change unix_chkpwd to handle unix_passwd and unix_acct
  949. - This eliminates the need for pam modules to have read/write access to /etc/shadow.
  950. * Thu Nov 20 2003 Dan Walsh <dwalsh@redhat.com> 0.77-18.sel
  951. - Cleanup unix_chkpwd
  952. * Mon Nov 03 2003 Dan Walsh <dwalsh@redhat.com> 0.77-17.sel
  953. - Fix tty handling
  954. - Add back multiple handling
  955. * Mon Oct 27 2003 Dan Walsh <dwalsh@redhat.com> 0.77-16.sel
  956. - Remove Multiple from man page of pam_selinux
  957. * Thu Oct 23 2003 Nalin Dahyabhai <nalin@redhat.com> 0.77-15
  958. - don't install _pam_aconf.h -- apps don't use it, other PAM headers which
  959. are installed don't use it, and its contents may be different for arches
  960. on a multilib system
  961. - check for linkage problems in modules at %%install-time (kill #107093 dead)
  962. - add buildprereq on flex (#101563)
  963. * Wed Oct 22 2003 Nalin Dahyabhai <nalin@redhat.com>
  964. - make pam_pwdb.so link with libnsl again so that it loads (#107093)
  965. - remove now-bogus buildprereq on db4-devel (we use a bundled copy for
  966. pam_userdb to avoid symbol collisions with other db libraries in apps)
  967. * Mon Oct 20 2003 Dan Walsh <dwalsh@redhat.com> 0.77-14.sel
  968. - Add Russell Coker patch to handle /dev/pty
  969. * Fri Oct 17 2003 Dan Walsh <dwalsh@redhat.com> 0.77-13.sel
  970. - Turn on Selinux
  971. * Fri Oct 17 2003 Dan Walsh <dwalsh@redhat.com> 0.77-12
  972. - Fix pam_timestamp to work when 0 seconds have elapsed
  973. * Mon Oct 6 2003 Dan Walsh <dwalsh@redhat.com> 0.77-11
  974. - Turn off selinux
  975. * Thu Sep 25 2003 Dan Walsh <dwalsh@redhat.com> 0.77-10.sel
  976. - Turn on Selinux and remove multiple choice of context.
  977. * Wed Sep 24 2003 Dan Walsh <dwalsh@redhat.com> 0.77-10
  978. - Turn off selinux
  979. * Wed Sep 24 2003 Dan Walsh <dwalsh@redhat.com> 0.77-9.sel
  980. - Add Russell's patch to check password
  981. * Wed Sep 17 2003 Dan Walsh <dwalsh@redhat.com> 0.77-8.sel
  982. - handle ttys correctly in pam_selinux
  983. * Fri Sep 05 2003 Dan Walsh <dwalsh@redhat.com> 0.77-7.sel
  984. - Clean up memory problems and fix tty handling.
  985. * Mon Jul 28 2003 Dan Walsh <dwalsh@redhat.com> 0.77-6
  986. - Add manual context selection to pam_selinux
  987. * Mon Jul 28 2003 Dan Walsh <dwalsh@redhat.com> 0.77-5
  988. - Add pam_selinux
  989. * Mon Jul 28 2003 Dan Walsh <dwalsh@redhat.com> 0.77-4
  990. - Add SELinux support
  991. * Thu Jul 24 2003 Nalin Dahyabhai <nalin@redhat.com> 0.77-3
  992. - pam_postgresok: add
  993. - pam_xauth: add "targetuser" argument
  994. * Tue Jul 22 2003 Nalin Dahyabhai <nalin@redhat.com>
  995. - pam_succeed_if: fix thinko in argument parsing which would walk past the
  996. end of the argument list
  997. * Wed Jul 9 2003 Nalin Dahyabhai <nalin@redhat.com> 0.77-2
  998. - reapply:
  999. - set handler for SIGCHLD to SIG_DFL around *_chkpwd, not SIG_IGN
  1000. * Mon Jul 7 2003 Nalin Dahyabhai <nalin@redhat.com> 0.77-1
  1001. - pam_timestamp: fail if the key file doesn't contain enough data
  1002. * Thu Jul 3 2003 Nalin Dahyabhai <nalin@redhat.com> 0.77-0
  1003. - update to 0.77 upstream release
  1004. - pam_limits: limits now affect root as well
  1005. - pam_nologin: returns PAM_IGNORE instead of PAM_SUCCESS unless "successok"
  1006. is given as an argument
  1007. - pam_userdb: correctly return PAM_AUTH_ERR instead of PAM_USER_UNKNOWN when
  1008. invoked with the "key_only" argument and the database has an entry of the
  1009. form "user-<wrongpassword>"
  1010. - use a bundled libdb for pam_userdb.so because the system copy uses threads,
  1011. and demand-loading a shared library which uses threads into an application
  1012. which doesn't is a Very Bad Idea
  1013. * Thu Jul 3 2003 Nalin Dahyabhai <nalin@redhat.com>
  1014. - pam_timestamp: use a message authentication code to validate timestamp files
  1015. * Mon Jun 30 2003 Nalin Dahyabhai <nalin@redhat.com> 0.75-48.1
  1016. - rebuild
  1017. * Mon Jun 9 2003 Nalin Dahyabhai <nalin@redhat.com> 0.75-49
  1018. - modify calls to getlogin() to check the directory of the current TTY before
  1019. searching for an entry in the utmp/utmpx file (#98020, #98826, CAN-2003-0388)
  1020. * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
  1021. - rebuilt
  1022. * Mon Feb 10 2003 Bill Nottingham <notting@redhat.com> 0.75-48
  1023. - set handler for SIGCHLD to SIG_DFL around *_chkpwd, not SIG_IGN
  1024. * Wed Jan 22 2003 Tim Powers <timp@redhat.com> 0.75-47
  1025. - rebuilt
  1026. * Tue Dec 17 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-46
  1027. - pam_xauth: reintroduce ACL support, per the original white paper
  1028. - pam_xauth: default root's export ACL to none instead of everyone
  1029. * Mon Dec 2 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-45
  1030. - create /lib/security, even if it isn't /%%{_lib}/security, because we
  1031. can't locate /lib/security/$ISA without it (noted by Arnd Bergmann)
  1032. - clear out the duplicate docs directory created during %%install
  1033. * Thu Nov 21 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-44
  1034. - fix syntax errors in pam_console's yacc parser which newer bison chokes on
  1035. - forcibly set FAKEROOT at make install time
  1036. * Tue Oct 22 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-43
  1037. - patch to interpret $ISA in case the fist module load attempt fails
  1038. - use $ISA in default configs
  1039. * Fri Oct 04 2002 Elliot Lee <sopwith@redhat.com> 0.75-42
  1040. - Since cracklib-dicts location will not be correctly detected without
  1041. that package being installed, add buildreq for cracklib-dicts.
  1042. - Add patch57: makes configure use $LIBNAME when searching for cracklib
  1043. dicts, and error out if not found.
  1044. * Thu Sep 12 2002 Than Ngo <than@redhat.com> 0.75-41.1
  1045. - Fixed pam config files
  1046. * Wed Sep 11 2002 Than Ngo <than@redhat.com> 0.75-41
  1047. - Added fix to install libs in correct directory on 64bit machine
  1048. * Fri Aug 2 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-40
  1049. - pam_timestamp_check: check that stdio descriptors are open before we're
  1050. invoked
  1051. - add missing chroot.conf
  1052. * Mon Jul 29 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-39
  1053. - pam_timestamp: sundry fixes, use "unknown" as the tty when none is found
  1054. * Thu Jun 27 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-38
  1055. - pam_timestamp_check: be as smart about figuring out the tty as the module is
  1056. * Wed Jun 19 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-37
  1057. - pam_timestamp_check: remove extra unlink() call spotted by Havoc
  1058. * Mon Jun 17 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-36
  1059. - pam_timestamp: chown intermediate directories when creating them
  1060. - pam_timestamp_check: add -d flag to poll
  1061. * Thu May 23 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-35
  1062. - pam_timestamp: add some sanity checks
  1063. - pam_timestamp_check: add
  1064. * Wed May 22 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-34
  1065. - pam_timestamp: add a 'verbose' option
  1066. * Thu May 16 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-33
  1067. - rebuild with db4
  1068. - just bundle install-sh into the source package
  1069. * Tue Apr 9 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-32
  1070. - pam_unix: be more compatible with AIX-style shadowing (#19236)
  1071. * Thu Mar 28 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-31
  1072. - libpam_misc: fix possible infinite loop in misc_conv (#62195)
  1073. - pam_xauth: fix cases where DISPLAY is "localhost:screen" and the xauth
  1074. key is actually stored using the system's hostname (#61524)
  1075. * Mon Mar 25 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-30
  1076. - rebuild
  1077. * Mon Mar 25 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-29
  1078. - rebuild
  1079. * Mon Mar 11 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-28
  1080. - include the pwdb config file
  1081. * Fri Mar 1 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-27
  1082. - adjust the pwdb-static patch to build pam_radius correctly (#59408)
  1083. * Fri Mar 1 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-26
  1084. - change the db4-devel build dependency to db3-devel
  1085. * Thu Feb 21 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-25
  1086. - rebuild
  1087. * Fri Feb 8 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-24
  1088. - pam_unix: log successful password changes
  1089. - remove pam_timestamp
  1090. * Thu Feb 7 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-23
  1091. - fix pwdb embedding
  1092. - add pam_timestamp
  1093. * Thu Jan 31 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-22
  1094. - swallow up pwdb 0.61.1 for building pam_pwdb
  1095. * Wed Jan 23 2002 Nalin Dahyabhai <nalin@redhat.com> 0.75-21
  1096. - pam_userdb: build with db4 instead of db3
  1097. * Wed Nov 22 2001 Nalin Dahyabhai <nalin@redhat.com> 0.75-20
  1098. - pam_stack: fix some memory leaks (reported by Fernando Trias)
  1099. - pam_chroot: integrate Owl patch to report the more common causes of failures
  1100. * Fri Nov 9 2001 Nalin Dahyabhai <nalin@redhat.com> 0.75-19
  1101. - fix a bug in the getpwnam_r wrapper which sometimes resulted in false
  1102. positives for non-existent users
  1103. * Wed Nov 7 2001 Nalin Dahyabhai <nalin@redhat.com> 0.75-18
  1104. - include libpamc in the pam package (#55651)
  1105. * Fri Nov 2 2001 Nalin Dahyabhai <nalin@redhat.com> 0.75-17
  1106. - pam_xauth: don't free a string after passing it to putenv()
  1107. * Wed Oct 24 2001 Nalin Dahyabhai <nalin@redhat.com> 0.75-16
  1108. - pam_xauth: always return PAM_SUCCESS or PAM_SESSION_ERR instead of PAM_IGNORE,
  1109. matching the previous behavior (libpam treats PAM_IGNORE from a single module
  1110. in a stack as a session error, leading to false error messages if we just
  1111. return PAM_IGNORE for all cases)
  1112. * Mon Oct 22 2001 Nalin Dahyabhai <nalin@redhat.com> 0.75-15
  1113. - reorder patches so that the reentrancy patch is applied last -- we never
  1114. came to a consensus on how to guard against the bugs in calling applications
  1115. which this sort of change addresses, and having them last allows for dropping
  1116. in a better strategy for addressing this later on
  1117. * Mon Oct 15 2001 Nalin Dahyabhai <nalin@redhat.com>
  1118. - pam_rhosts: allow "+hostname" as a synonym for "hostname" to jive better
  1119. with the hosts.equiv(5) man page
  1120. - use the automake install-sh instead of the autoconf install-sh, which
  1121. disappeared somewhere between 2.50 and now
  1122. * Mon Oct 8 2001 Nalin Dahyabhai <nalin@redhat.com>
  1123. - add pwdb as a buildprereq
  1124. * Fri Oct 5 2001 Nalin Dahyabhai <nalin@redhat.com>
  1125. - pam_tally: don't try to read past the end of faillog -- it probably contains
  1126. garbage, which if written into the file later on will confuse /usr/bin/faillog
  1127. * Thu Oct 4 2001 Nalin Dahyabhai <nalin@redhat.com>
  1128. - pam_limits: don't just return if the user is root -- we'll want to set the
  1129. priority (it could be negative to elevate root's sessions)
  1130. - pam_issue: fix off-by-one error allocating space for the prompt string
  1131. * Wed Oct 3 2001 Nalin Dahyabhai <nalin@redhat.com>
  1132. - pam_mkhomedir: recurse into subdirectories properly
  1133. - pam_mkhomedir: handle symlinks
  1134. - pam_mkhomedir: skip over special items in the skeleton directory
  1135. * Tue Oct 2 2001 Nalin Dahyabhai <nalin@redhat.com>
  1136. - add cracklib as a buildprereq
  1137. - pam_wheel: don't ignore out if the user is attempting to switch to a
  1138. unprivileged user (this lets pam_wheel do its thing when users attempt
  1139. to get to system accounts or accounts of other unprivileged users)
  1140. * Fri Sep 28 2001 Nalin Dahyabhai <nalin@redhat.com>
  1141. - pam_xauth: close a possible DoS due to use of dotlock-style locking in
  1142. world-writable directories by relocating the temporary file to the target
  1143. user's home directory
  1144. - general: include headers local to this tree using relative paths so that
  1145. system headers for PAM won't be pulled in, in case include paths don't
  1146. take care of it
  1147. * Thu Sep 27 2001 Nalin Dahyabhai <nalin@redhat.com>
  1148. - pam_xauth: rewrite to skip refcounting and just use a temporary file
  1149. created using mkstemp() in /tmp
  1150. * Tue Sep 25 2001 Nalin Dahyabhai <nalin@redhat.com>
  1151. - pam_userdb: fix the key_only flag so that the null-terminator of the
  1152. user-password string isn't expected to be part of the key in the db file,
  1153. matching the behavior of db_load 3.2.9
  1154. * Mon Sep 24 2001 Nalin Dahyabhai <nalin@redhat.com>
  1155. - pam_unix: use crypt() instead of bigcrypt() when salted field is less than
  1156. the critical size which lets us know it was generated with bigcrypt()
  1157. - use a wrapper to handle ERANGE errors when calling get....._r functions:
  1158. defining PAM_GETPWNAM_R and such (for getpwnam, getpwuid, getgrnam,
  1159. getgrgid, and getspnam) before including _pam_macros.h will cause them
  1160. to be implemented as static functions, similar to how defining PAM_SM_xxx
  1161. is used to control whether or not PAM declares prototypes for certain
  1162. functions
  1163. * Mon Sep 24 2001 Nalin Dahyabhai <nalin@redhat.com> 0.75-14
  1164. - pam_unix: argh, compare entire pruned salt string with crypted result, always
  1165. * Sat Sep 8 2001 Bill Nottingham <notting@redhat.com> 0.75-13
  1166. - ship /lib/lib{pam,pam_misc}.so for legacy package builds
  1167. * Thu Sep 6 2001 Nalin Dahyabhai <nalin@redhat.com> 0.75-12
  1168. - noreplace configuration files in /etc/security
  1169. - pam_console: update pam_console_apply and man pages to reflect
  1170. /var/lock -> /var/run move
  1171. * Wed Sep 5 2001 Nalin Dahyabhai <nalin@redhat.com> 0.75-11
  1172. - pam_unix: fix the fix for #42394
  1173. * Tue Sep 4 2001 Nalin Dahyabhai <nalin@redhat.com>
  1174. - modules: use getpwnam_r and friends instead of non-reentrant versions
  1175. - pam_console: clear generated .c and .h files in "clean" makefile target
  1176. * Thu Aug 30 2001 Nalin Dahyabhai <nalin@redhat.com>
  1177. - pam_stack: perform deep copy of conversation structures
  1178. - include the static libpam in the -devel subpackage (#52321)
  1179. - move development .so and .a files to %%{_libdir}
  1180. - pam_unix: don't barf on empty passwords (#51846)
  1181. - pam_unix: redo compatibility with "hash,age" data wrt bigcrypt (#42394)
  1182. - console.perms: add usb camera, scanner, and rio devices (#15528)
  1183. - pam_cracklib: initialize all options properly (#49613)
  1184. * Wed Aug 22 2001 Nalin Dahyabhai <nalin@redhat.com>
  1185. - pam_limits: don't rule out negative priorities
  1186. * Mon Aug 13 2001 Nalin Dahyabhai <nalin@redhat.com> 0.75-10
  1187. - pam_xauth: fix errors due to uninitialized data structure (fix from Tse Huong
  1188. Choo)
  1189. - pam_xauth: random cleanups
  1190. - pam_console: use /var/run/console instead of /var/lock/console at install-time
  1191. - pam_unix: fix preserving of permissions on files which are manipulated
  1192. * Fri Aug 10 2001 Bill Nottingham <notting@redhat.com>
  1193. - fix segfault in pam_securetty
  1194. * Thu Aug 9 2001 Nalin Dahyabhai <nalin@redhat.com>
  1195. - pam_console: use /var/run/console instead of /var/lock/console for lock files
  1196. - pam_issue: read the right number of bytes from the file
  1197. * Mon Jul 9 2001 Nalin Dahyabhai <nalin@redhat.com>
  1198. - pam_wheel: don't error out if the group has no members, but is the user's
  1199. primary GID (reported by David Vos)
  1200. - pam_unix: preserve permissions on files which are manipulated (#43706)
  1201. - pam_securetty: check if the user is the superuser before checking the tty,
  1202. thereby allowing regular users access to services which don't set the
  1203. PAM_TTY item (#39247)
  1204. - pam_access: define NIS and link with libnsl (#36864)
  1205. * Thu Jul 5 2001 Nalin Dahyabhai <nalin@redhat.com>
  1206. - link libpam_misc against libpam
  1207. * Tue Jul 3 2001 Nalin Dahyabhai <nalin@redhat.com>
  1208. - pam_chroot: chdir() before chroot()
  1209. * Fri Jun 29 2001 Nalin Dahyabhai <nalin@redhat.com>
  1210. - pam_console: fix logic bug when changing permissions on single
  1211. file and/or lists of files
  1212. - pam_console: return the proper error code (reported and patches
  1213. for both from Frederic Crozat)
  1214. - change deprecated Copyright: tag in .spec file to License:
  1215. * Mon Jun 25 2001 Nalin Dahyabhai <nalin@redhat.com>
  1216. - console.perms: change js* to js[0-9]*
  1217. - include pam_aconf.h in more modules (patches from Harald Welte)
  1218. * Thu May 24 2001 Nalin Dahyabhai <nalin@redhat.com>
  1219. - console.perms: add apm_bios to the list of devices the console owner can use
  1220. - console.perms: add beep to the list of sound devices
  1221. * Mon May 7 2001 Nalin Dahyabhai <nalin@redhat.com>
  1222. - link pam_console_apply statically with libglib (#38891)
  1223. * Mon Apr 30 2001 Nalin Dahyabhai <nalin@redhat.com>
  1224. - pam_access: compare IP addresses with the terminating ".", as documented
  1225. (patch from Carlo Marcelo Arenas Belon, I think) (#16505)
  1226. * Mon Apr 23 2001 Nalin Dahyabhai <nalin@redhat.com>
  1227. - merge up to 0.75
  1228. - pam_unix: temporarily ignore SIGCHLD while running the helper
  1229. - pam_pwdb: temporarily ignore SIGCHLD while running the helper
  1230. - pam_dispatch: default to uncached behavior if the cached chain is empty
  1231. * Fri Apr 6 2001 Nalin Dahyabhai <nalin@redhat.com>
  1232. - correct speling errors in various debug messages and doc files (#33494)
  1233. * Thu Apr 5 2001 Nalin Dahyabhai <nalin@redhat.com>
  1234. - prereq sed, fileutils (used in %%post)
  1235. * Wed Apr 4 2001 Nalin Dahyabhai <nalin@redhat.com>
  1236. - remove /dev/dri from console.perms -- XFree86 munges it, so it's outside of
  1237. our control (reminder from Daryll Strauss)
  1238. - add /dev/3dfx to console.perms
  1239. * Fri Mar 23 2001 Nalin Dahyabhai <nalin@redhat.com>
  1240. - pam_wheel: make 'trust' and 'deny' work together correctly
  1241. - pam_wheel: also check the user's primary gid
  1242. - pam_group: also initialize groups when called with PAM_REINITIALIZE_CRED
  1243. * Tue Mar 20 2001 Nalin Dahyabhai <nalin@redhat.com>
  1244. - mention pam_console_apply in the see also section of the pam_console man pages
  1245. * Fri Mar 16 2001 Nalin Dahyabhai <nalin@redhat.com>
  1246. - console.perms: /dev/vc/* should be a regexp, not a glob (thanks to
  1247. Charles Lopes)
  1248. * Mon Mar 12 2001 Nalin Dahyabhai <nalin@redhat.com>
  1249. - console.perms: /dev/cdroms/* should belong to the user, from Douglas
  1250. Gilbert via Tim Waugh
  1251. * Thu Mar 8 2001 Nalin Dahyabhai <nalin@redhat.com>
  1252. - pam_console_apply: muck with devices even if the mount point doesn't exist
  1253. * Wed Mar 7 2001 Nalin Dahyabhai <nalin@redhat.com>
  1254. - pam_console: error out on undefined classes in pam_console config file
  1255. - console.perms: actually change the permissions on the new device classes
  1256. - pam_console: add an fstab= argument, and -f and -c flags to pam_console_apply
  1257. - pam_console: use g_log instead of g_critical when bailing out
  1258. - console.perms: logins on /dev/vc/* are also console logins, from Douglas
  1259. Gilbert via Tim Waugh
  1260. * Tue Mar 6 2001 Nalin Dahyabhai <nalin@redhat.com>
  1261. - add pam_console_apply
  1262. - /dev/pilot's usually a serial port (or a USB serial port), so revert its
  1263. group to 'uucp' instead of 'tty' in console.perms
  1264. - change pam_console's behavior wrt directories -- directories which are
  1265. mount points according to /etc/fstab are taken to be synonymous with
  1266. their device special nodes, and directories which are not mount points
  1267. are ignored
  1268. * Tue Feb 27 2001 Nalin Dahyabhai <nalin@redhat.com>
  1269. - handle errors fork()ing in pam_xauth
  1270. - make the "other" config noreplace
  1271. * Mon Feb 26 2001 Nalin Dahyabhai <nalin@redhat.com>
  1272. - user should own the /dev/video directory, not the non-existent /dev/v4l
  1273. - tweak pam_limits doc
  1274. * Wed Feb 21 2001 Nalin Dahyabhai <nalin@redhat.com>
  1275. - own /etc/security
  1276. - be more descriptive when logging messages from pam_limits
  1277. - pam_listfile: remove some debugging code (#28346)
  1278. * Mon Feb 19 2001 Nalin Dahyabhai <nalin@redhat.com>
  1279. - pam_lastlog: don't pass NULL to logwtmp()
  1280. * Fri Feb 16 2001 Nalin Dahyabhai <nalin@redhat.com>
  1281. - pam_listfile: fix argument parser (#27773)
  1282. - pam_lastlog: link to libutil
  1283. * Tue Feb 13 2001 Nalin Dahyabhai <nalin@redhat.com>
  1284. - pam_limits: change the documented default config file to reflect the defaults
  1285. - pam_limits: you should be able to log in a total of maxlogins times, not
  1286. (maxlogins - 1)
  1287. - handle group limits on maxlogins correctly (#25690)
  1288. * Mon Feb 12 2001 Nalin Dahyabhai <nalin@redhat.com>
  1289. - change the pam_xauth default maximum "system user" ID from 499 to 99 (#26343)
  1290. * Wed Feb 7 2001 Nalin Dahyabhai <nalin@redhat.com>
  1291. - refresh the default system-auth file, pam_access is out
  1292. * Mon Feb 5 2001 Nalin Dahyabhai <nalin@redhat.com>
  1293. - actually time out when attempting to lckpwdf() (#25889)
  1294. - include time.h in pam_issue (#25923)
  1295. - update the default system-auth to the one generated by authconfig 4.1.1
  1296. - handle getpw??? and getgr??? failures more gracefully (#26115)
  1297. - get rid of some extraneous {set,end}{pw,gr}ent() calls
  1298. * Tue Jan 30 2001 Nalin Dahyabhai <nalin@redhat.com>
  1299. - overhaul pam_stack to account for abstraction libpam now provides
  1300. * Tue Jan 23 2001 Nalin Dahyabhai <nalin@redhat.com>
  1301. - remove pam_radius at request of author
  1302. * Mon Jan 22 2001 Nalin Dahyabhai <nalin@redhat.com>
  1303. - merge to 0.74
  1304. - make console.perms match perms set by MAKEDEV, and add some devfs device names
  1305. - add 'sed' to the buildprereq list (#24666)
  1306. * Sun Jan 21 2001 Matt Wilson <msw@redhat.com>
  1307. - added "exit 0" to the end of the pre script
  1308. * Fri Jan 19 2001 Nalin Dahyabhai <nalin@redhat.com>
  1309. - self-hosting fix from Guy Streeter
  1310. * Wed Jan 17 2001 Nalin Dahyabhai <nalin@redhat.com>
  1311. - use gcc for LD_L to pull in intrinsic stuff on ia64
  1312. * Fri Jan 12 2001 Nalin Dahyabhai <nalin@redhat.com>
  1313. - take another whack at compatibility with "hash,age" data in pam_unix (#21603)
  1314. * Wed Jan 10 2001 Nalin Dahyabhai <nalin@redhat.com>
  1315. - make the -devel subpackage unconditional
  1316. * Tue Jan 9 2001 Nalin Dahyabhai <nalin@redhat.com>
  1317. - merge/update to 0.73
  1318. * Mon Dec 18 2000 Nalin Dahyabhai <nalin@redhat.com>
  1319. - refresh from CVS -- some weird stuff crept into pam_unix
  1320. * Wed Dec 12 2000 Nalin Dahyabhai <nalin@redhat.com>
  1321. - fix handling of "nis" when changing passwords by adding the checks for the
  1322. data source to the password-updating module in pam_unix
  1323. - add the original copyright for pam_access (fix from Michael Gerdts)
  1324. * Thu Nov 30 2000 Nalin Dahyabhai <nalin@redhat.com>
  1325. - redo similar() using a distance algorithm and drop the default dif_ok to 5
  1326. - readd -devel
  1327. * Wed Nov 29 2000 Nalin Dahyabhai <nalin@redhat.com>
  1328. - fix similar() function in pam_cracklib (#14740)
  1329. - fix example in access.conf (#21467)
  1330. - add conditional compilation for building for 6.2 (for pam_userdb)
  1331. - tweak post to not use USESHADOW any more
  1332. * Tue Nov 28 2000 Nalin Dahyabhai <nalin@redhat.com>
  1333. - make EINVAL setting lock limits in pam_limits non-fatal, because it's a 2.4ism
  1334. * Tue Nov 21 2000 Nalin Dahyabhai <nalin@redhat.com>
  1335. - revert to DB 3.1, which is what we were supposed to be using from the get-go
  1336. * Mon Nov 20 2000 Nalin Dahyabhai <nalin@redhat.com>
  1337. - add RLIMIT_LOCKS to pam_limits (patch from Jes Sorensen) (#20542)
  1338. - link pam_userdb to Berkeley DB 2.x to match 6.2's setup correctly
  1339. * Mon Nov 6 2000 Matt Wilson <msw@redhat.com>
  1340. - remove prereq on sh-utils, test ([) is built in to bash
  1341. * Thu Oct 19 2000 Nalin Dahyabhai <nalin@redhat.com>
  1342. - fix the pam_userdb module breaking
  1343. * Wed Oct 18 2000 Nalin Dahyabhai <nalin@redhat.com>
  1344. - fix pam_unix likeauth argument for authenticate(),setcred(),setcred()
  1345. * Tue Oct 17 2000 Nalin Dahyabhai <nalin@redhat.com>
  1346. - tweak pre script to be called in all upgrade cases
  1347. - get pam_unix to only care about the significant pieces of passwords it checks
  1348. - add /usr/include/db1/db.h as a build prereq to pull in the right include
  1349. files, no matter whether they're in glibc-devel or db1-devel
  1350. - pam_userdb.c: include db1/db.h instead of db.h
  1351. * Wed Oct 11 2000 Nalin Dahyabhai <nalin@redhat.com>
  1352. - add BuildPrereq for bison (suggested by Bryan Stillwell)
  1353. * Fri Oct 6 2000 Nalin Dahyabhai <nalin@redhat.com>
  1354. - patch from Dmitry V. Levin to have pam_stack propagate the PAM fail_delay
  1355. - roll back the README for pam_xauth to actually be the right one
  1356. - tweak pam_stack to use the parent's service name when calling the substack
  1357. * Wed Oct 4 2000 Nalin Dahyabhai <nalin@redhat.com>
  1358. - create /etc/sysconfig/authconfig at install-time if upgrading
  1359. * Mon Oct 2 2000 Nalin Dahyabhai <nalin@redhat.com>
  1360. - modify the files list to make sure #16456 stays fixed
  1361. - make pam_stack track PAM_AUTHTOK and PAM_OLDAUTHTOK items
  1362. - add pam_chroot module
  1363. - self-hosting fixes from the -devel split
  1364. - update generated docs in the tree
  1365. * Tue Sep 12 2000 Nalin Dahyabhai <nalin@redhat.com>
  1366. - split off a -devel subpackage
  1367. - install the developer man pages
  1368. * Sun Sep 10 2000 Bill Nottingham <notting@redhat.com>
  1369. - build libraries before modules
  1370. * Wed Sep 6 2000 Nalin Dahyabhai <nalin@redhat.com>
  1371. - fix problems when looking for headers in /usr/include (#17236)
  1372. - clean up a couple of compile warnings
  1373. * Tue Aug 22 2000 Nalin Dahyabhai <nalin@redhat.com>
  1374. - give users /dev/cdrom* instead of /dev/cdrom in console.perms (#16768)
  1375. - add nvidia control files to console.perms
  1376. * Tue Aug 22 2000 Bill Nottingham <notting@redhat.com>
  1377. - add DRI devices to console.perms (#16731)
  1378. * Thu Aug 17 2000 Nalin Dahyabhai <nalin@redhat.com>
  1379. - move pam_filter modules to /lib/security/pam_filter (#16111)
  1380. - add pam_tally's application to allow counts to be reset (#16456)
  1381. - move README files to the txts subdirectory
  1382. * Mon Aug 14 2000 Nalin Dahyabhai <nalin@redhat.com>
  1383. - add a postun that runs ldconfig
  1384. - clean up logging in pam_xauth
  1385. * Fri Aug 4 2000 Nalin Dahyabhai <nalin@redhat.com>
  1386. - make the tarball include the release number in its name
  1387. * Mon Jul 31 2000 Nalin Dahyabhai <nalin@redhat.com>
  1388. - add a broken_shadow option to pam_unix
  1389. - add all module README files to the documentation list (#16456)
  1390. * Wed Jul 25 2000 Nalin Dahyabhai <nalin@redhat.com>
  1391. - fix pam_stack debug and losing-track-of-the-result bug
  1392. * Tue Jul 24 2000 Nalin Dahyabhai <nalin@redhat.com>
  1393. - rework pam_console's usage of syslog to actually be sane (#14646)
  1394. * Sat Jul 22 2000 Nalin Dahyabhai <nalin@redhat.com>
  1395. - take the LOG_ERR flag off of some of pam_console's new messages
  1396. * Fri Jul 21 2000 Nalin Dahyabhai <nalin@redhat.com>
  1397. - add pam_localuser
  1398. * Wed Jul 12 2000 Nalin Dahyabhai <nalin@redhat.com>
  1399. - need to make pam_console's checking a little stronger
  1400. - only pass data up from pam_stack if the parent didn't already define it
  1401. * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
  1402. - automatic rebuild
  1403. * Tue Jul 11 2000 Nalin Dahyabhai <nalin@redhat.com>
  1404. - make pam_console's extra checks disableable
  1405. - simplify extra check to just check if the device owner is root
  1406. - add a debug log when pam_stack comes across a NULL item
  1407. - have pam_stack hand items up to the parent from the child
  1408. * Mon Jul 3 2000 Nalin Dahyabhai <nalin@redhat.com>
  1409. - fix installation of pam_xauth man pages (#12417)
  1410. - forcibly strip helpers (#12430)
  1411. - try to make pam_console a little more discriminating
  1412. * Mon Jun 19 2000 Nalin Dahyabhai <nalin@redhat.com>
  1413. - symlink libpam.so to libpam.so.%%{version}, and likewise for libpam_misc
  1414. - reverse order of checks in _unix_getpwnam for pam_unix
  1415. * Wed Jun 14 2000 Preston Brown <pbrown@redhat.com>
  1416. - include gpmctl in pam_console
  1417. * Mon Jun 05 2000 Nalin Dahyabhai <nalin@redhat.com>
  1418. - add MANDIR definition and use it when installing man pages
  1419. * Mon Jun 05 2000 Preston Brown <pbrown@redhat.com>
  1420. - handle scanner and cdwriter devices in pam_console
  1421. * Sat Jun 3 2000 Nalin Dahyabhai <nalin@redhat.com>
  1422. - add account management wrappers for pam_listfile, pam_nologin, pam_securetty,
  1423. pam_shells, and pam_wheel
  1424. * Thu Jun 1 2000 Nalin Dahyabhai <nalin@redhat.com>
  1425. - add system-auth control file
  1426. - let gethostname() call in pam_access.c be implicitly declared to avoid
  1427. conflicting types if unistd.c declares it
  1428. * Mon May 15 2000 Nalin Dahyabhai <nalin@redhat.com>
  1429. - fix problems compiling on Red Hat Linux 5.x (bug #11005)
  1430. * Wed Apr 26 2000 Bill Nottingham <notting@redhat.com>
  1431. - fix size assumptions in pam_(pwdb|unix) md5 code
  1432. * Mon Mar 20 2000 Nalin Dahyabhai <nalin@redhat.com>
  1433. - Add new pam_stack module.
  1434. - Install pwdb_chkpwd and unix_chkpwd as the current user for non-root builds
  1435. * Sat Feb 05 2000 Nalin Dahyabhai <nalin@redhat.com>
  1436. - Fix pam_xauth bug #6191.
  1437. * Thu Feb 03 2000 Elliot Lee <sopwith@redhat.com>
  1438. - Add a patch to accept 'pts/N' in /etc/securetty as a match for tty '5'
  1439. (which is what other pieces of the system think it is). Fixes bug #7641.
  1440. * Mon Jan 31 2000 Nalin Dahyabhai <nalin@redhat.com>
  1441. - argh, turn off gratuitous debugging
  1442. * Wed Jan 19 2000 Nalin Dahyabhai <nalin@redhat.com>
  1443. - update to 0.72
  1444. - fix pam_unix password-changing bug
  1445. - fix pam_unix's cracklib support
  1446. - change package URL
  1447. * Mon Jan 03 2000 Cristian Gafton <gafton@redhat.com>
  1448. - don't allow '/' on service_name
  1449. * Thu Oct 21 1999 Cristian Gafton <gafton@redhat.com>
  1450. - enhance the pam_userdb module some more
  1451. * Fri Sep 24 1999 Cristian Gafton <gafton@redhat.com>
  1452. - add documenatation
  1453. * Tue Sep 21 1999 Michael K. Johnson <johnsonm@redhat.com>
  1454. - a tiny change to pam_console to make it not loose track of console users
  1455. * Mon Sep 20 1999 Michael K. Johnson <johnsonm@redhat.com>
  1456. - a few fixes to pam_xauth to make it more robust
  1457. * Wed Jul 14 1999 Michael K. Johnson <johnsonm@redhat.com>
  1458. - pam_console: added <xconsole> to manage /dev/console
  1459. * Thu Jul 01 1999 Michael K. Johnson <johnsonm@redhat.com>
  1460. - pam_xauth: New refcounting implementation based on idea from Stephen Tweedie
  1461. * Sat Apr 17 1999 Michael K. Johnson <johnsonm@redhat.com>
  1462. - added video4linux devices to /etc/security/console.perms
  1463. * Fri Apr 16 1999 Michael K. Johnson <johnsonm@redhat.com>
  1464. - added joystick lines to /etc/security/console.perms
  1465. * Thu Apr 15 1999 Michael K. Johnson <johnsonm@redhat.com>
  1466. - fixed a couple segfaults in pam_xauth uncovered by yesterday's fix...
  1467. * Wed Apr 14 1999 Cristian Gafton <gafton@redhat.com>
  1468. - use gcc -shared to link the shared libs
  1469. * Wed Apr 14 1999 Michael K. Johnson <johnsonm@redhat.com>
  1470. - many bug fixes in pam_xauth
  1471. - pam_console can now handle broken applications that do not set
  1472. the PAM_TTY item.
  1473. * Tue Apr 13 1999 Michael K. Johnson <johnsonm@redhat.com>
  1474. - fixed glob/regexp confusion in pam_console, added kbd and fixed fb devices
  1475. - added pam_xauth module
  1476. * Sat Apr 10 1999 Cristian Gafton <gafton@redhat.com>
  1477. - pam_lastlog does wtmp handling now
  1478. * Thu Apr 08 1999 Michael K. Johnson <johnsonm@redhat.com>
  1479. - added option parsing to pam_console
  1480. - added framebuffer devices to default console.perms settings
  1481. * Wed Apr 07 1999 Cristian Gafton <gafton@redhat.com>
  1482. - fixed empty passwd handling in pam_pwdb
  1483. * Mon Mar 29 1999 Michael K. Johnson <johnsonm@redhat.com>
  1484. - changed /dev/cdrom default user permissions back to 0600 in console.perms
  1485. because some cdrom players open O_RDWR.
  1486. * Fri Mar 26 1999 Michael K. Johnson <johnsonm@redhat.com>
  1487. - added /dev/jaz and /dev/zip to console.perms
  1488. * Thu Mar 25 1999 Michael K. Johnson <johnsonm@redhat.com>
  1489. - changed the default user permissions for /dev/cdrom to 0400 in console.perms
  1490. * Fri Mar 19 1999 Michael K. Johnson <johnsonm@redhat.com>
  1491. - fixed a few bugs in pam_console
  1492. * Thu Mar 18 1999 Michael K. Johnson <johnsonm@redhat.com>
  1493. - pam_console authentication working
  1494. - added /etc/security/console.apps directory
  1495. * Mon Mar 15 1999 Michael K. Johnson <johnsonm@redhat.com>
  1496. - added pam_console files to filelist
  1497. * Fri Feb 12 1999 Cristian Gafton <gafton@redhat.com>
  1498. - upgraded to 0.66, some source cleanups
  1499. * Mon Dec 28 1998 Cristian Gafton <gafton@redhat.com>
  1500. - add patch from Savochkin Andrey Vladimirovich <saw@msu.ru> for umask
  1501. security risk
  1502. * Fri Dec 18 1998 Cristian Gafton <gafton@redhat.com>
  1503. - upgrade to ver 0.65
  1504. - build the package out of internal CVS server