41734f
%if 0%{?fedora} > 15 || 0%{?rhel} > 6
41734f
%global systemd 1
41734f
%global	sysvinit 0
41734f
%else
41734f
%global systemd 0
41734f
%global	sysvinit 1
41734f
%endif
41734f
41734f
%if 0%{?fedora} > 15 && 0%{?fedora} < 20
41734f
%global systemdsysv 1
41734f
%else
41734f
%global systemdsysv 0
41734f
%endif
41734f
41734f
%if 0%{?fedora} > 14 || 0%{?rhel} > 6
41734f
%global tmpfiles 1
41734f
%else
41734f
%global tmpfiles 0
41734f
%endif
41734f
41734f
%if 0%{?fedora} > 9 || 0%{?rhel} > 5
41734f
%global sysvinitdir %{_initddir}
41734f
%else
41734f
%global sysvinitdir %{_initrddir}
41734f
%endif
41734f
41734f
%bcond_with xmlrpc
41734f
41734f
Name:		certmonger
120943
Version:	0.79.17
120943
Release:	1%{?dist}
41734f
Summary:	Certificate status monitor and PKI enrollment client
41734f
41734f
License:	GPLv3+
41734f
URL:		http://pagure.io/certmonger/
41734f
Source0:	http://releases.pagure.org/certmonger/certmonger-%{version}.tar.gz
41734f
#Source1:	http://releases.pagure.org/certmonger/certmonger-%%{version}.tar.gz.sig
41734f
41734f
41734f
BuildRequires:	autoconf
41734f
BuildRequires:	automake
41734f
BuildRequires:	gettext-devel
41734f
BuildRequires:	gcc
41734f
BuildRequires:	openldap-devel
41734f
BuildRequires:	krb5-devel
41734f
BuildRequires:	libidn2-devel
41734f
BuildRequires:	dbus-devel, nspr-devel, nss-devel, openssl-devel
41734f
%if 0%{?fedora} >= 12 || 0%{?rhel} >= 6
41734f
BuildRequires:	libuuid-devel
41734f
%else
41734f
BuildRequires:	e2fsprogs-devel
41734f
%endif
41734f
BuildRequires:	libtalloc-devel, libtevent-devel
41734f
%if 0%{?rhel} >= 6 || 0%{?fedora} >= 9
41734f
BuildRequires:	libcurl-devel
41734f
%else
41734f
BuildRequires:	curl-devel
41734f
%endif
41734f
BuildRequires:	libxml2-devel
41734f
%if %{with xmlrpc}
41734f
BuildRequires:  xmlrpc-c-devel
41734f
%endif
41734f
BuildRequires:  jansson-devel
41734f
%if 0%{?rhel} && 0%{?rhel} < 6
41734f
BuildRequires:	bind-libbind-devel
41734f
BuildRequires:	mktemp
41734f
%endif
41734f
# Required for 'make check':
41734f
#  for diff and cmp
41734f
BuildRequires:	diffutils
41734f
#  for expect
41734f
BuildRequires:	expect
41734f
#  for certutil and pk12util
41734f
BuildRequires:	nss-tools
41734f
#  for openssl
41734f
BuildRequires:	openssl
41734f
#  for dbus-launch
41734f
BuildRequires:	/usr/bin/dbus-launch
41734f
#  for dos2unix
41734f
BuildRequires:	/usr/bin/dos2unix
41734f
BuildRequires:	/usr/bin/unix2dos
41734f
#  for which
41734f
BuildRequires:	/usr/bin/which
41734f
#  for dbus tests
41734f
BuildRequires:	python3-dbus
41734f
BuildRequires:	popt-devel
41734f
BuildRequires:	sed
41734f
41734f
# we need a running system bus
41734f
Requires:	dbus
41734f
Requires(post):	%{_bindir}/dbus-send
41734f
41734f
%if %{systemd}
41734f
BuildRequires:	systemd-units
41734f
BuildRequires: make
41734f
Requires(post):	systemd-units
41734f
Requires(preun):	systemd-units, dbus, sed
41734f
Requires(postun):	systemd-units
41734f
%endif
41734f
41734f
%if %{systemdsysv}
41734f
Requires(post):	systemd-sysv
41734f
%global systemdsysvsave \
41734f
# Save the current service runlevel info, in case the user wants \
41734f
# to apply the enabled status manually later, by running \
41734f
#   "systemd-sysv-convert --apply certmonger". \
41734f
%{_bindir}/systemd-sysv-convert --save certmonger >/dev/null 2>&1 ||:
41734f
%else
41734f
%global systemdsysvsave %{nil}
41734f
%endif
41734f
41734f
%if %{sysvinit}
41734f
Requires(post):	/sbin/chkconfig, /sbin/service
41734f
Requires(preun):	/sbin/chkconfig, /sbin/service, dbus, sed
41734f
%endif
41734f
41734f
%if 0%{?fedora} >= 15
41734f
# Certain versions of libtevent have incorrect internal ABI versions.
41734f
Conflicts: libtevent < 0.9.13
41734f
%endif
41734f
41734f
%description
41734f
Certmonger is a service which is primarily concerned with getting your
41734f
system enrolled with a certificate authority (CA) and keeping it enrolled.
41734f
41734f
%prep
41734f
%autosetup -p1
41734f
41734f
%if 0%{?rhel} > 0
41734f
# Enabled by default for RHEL for bug #765600, still disabled by default for
41734f
# Fedora pending a similar bug report there.
41734f
sed -i 's,^# chkconfig: - ,# chkconfig: 345 ,g' sysvinit/certmonger.in
41734f
%endif
41734f
41734f
%build
41734f
autoreconf -i -f
41734f
%configure \
41734f
%if %{systemd}
41734f
	--enable-systemd \
41734f
%endif
41734f
%if %{sysvinit}
41734f
	--enable-sysvinit=%{sysvinitdir} \
41734f
%endif
41734f
%if %{tmpfiles}
41734f
	--enable-tmpfiles \
41734f
%endif
41734f
	--with-homedir=/run/certmonger \
41734f
%if %{with xmlrpc}
41734f
    --with-xmlrpc \
41734f
%endif
2d498b
	--disable-dsa \
41734f
	--with-tmpdir=/run/certmonger --enable-pie --enable-now
41734f
%if %{with xmlrpc}
41734f
# For some reason, some versions of xmlrpc-c-config in Fedora and RHEL just
41734f
# tell us about libxmlrpc_client, but we need more.  Work around.
41734f
make %{?_smp_mflags} XMLRPC_LIBS="-lxmlrpc_client -lxmlrpc_util -lxmlrpc"
41734f
%else
41734f
make %{?_smp_mflags}
41734f
%endif
41734f
41734f
%install
41734f
rm -rf $RPM_BUILD_ROOT
41734f
make install DESTDIR=$RPM_BUILD_ROOT
41734f
mkdir -p $RPM_BUILD_ROOT/%{_localstatedir}/lib/certmonger/{cas,requests}
41734f
install -m755 -d $RPM_BUILD_ROOT/run/certmonger
41734f
%{find_lang} %{name}
41734f
41734f
%check
41734f
make check
41734f
41734f
%post
41734f
if test $1 -eq 1 ; then
41734f
	%{_bindir}/dbus-send --system --type=method_call --dest=org.freedesktop.DBus / org.freedesktop.DBus.ReloadConfig 2>&1 || :
41734f
fi
41734f
%if %{without xmlrpc}
41734f
# remove any existing certmaster CA configuration
41734f
if test $1 -gt 1 ; then
41734f
    %{_bindir}/getcert remove-ca -c certmaster 2>&1 || :
41734f
fi
41734f
%endif
41734f
%if %{systemd}
41734f
if test $1 -eq 1 ; then
41734f
	/bin/systemctl daemon-reload >/dev/null 2>&1 || :
41734f
fi
41734f
%endif
41734f
%if %{sysvinit}
41734f
/sbin/chkconfig --add certmonger
41734f
%endif
41734f
41734f
%triggerin -- certmonger < 0.58
41734f
if test $1 -gt 1 ; then
41734f
	# If the daemon is running, remove knowledge of the dogtag renewer.
41734f
	objpath=`dbus-send --system --reply-timeout=10000 --dest=org.fedorahosted.certmonger --print-reply=o /org/fedorahosted/certmonger org.fedorahosted.certmonger.find_ca_by_nickname string:dogtag-ipa-renew-agent 2> /dev/null | sed -r 's,^ +,,g' || true`
41734f
	if test -n "$objpath" ; then
41734f
		dbus-send --system --dest=org.fedorahosted.certmonger --print-reply /org/fedorahosted/certmonger org.fedorahosted.certmonger.remove_known_ca objpath:"$objpath" >/dev/null 2> /dev/null
41734f
	fi
41734f
	# Remove the data file, in case it isn't running.
41734f
	for cafile in %{_localstatedir}/lib/certmonger/cas/* ; do
41734f
		if grep -q '^id=dogtag-ipa-renew-agent$' "$cafile" ; then
41734f
			rm -f "$cafile"
41734f
		fi
41734f
	done
41734f
fi
41734f
exit 0
41734f
41734f
%postun
41734f
%if %{systemd}
41734f
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
41734f
if [ $1 -ge 1 ] ; then
41734f
	/bin/systemctl try-restart certmonger.service >/dev/null 2>&1 || :
41734f
fi
41734f
%endif
41734f
%if %{sysvinit}
41734f
if test $1 -gt 0 ; then
41734f
	/sbin/service certmonger condrestart 2>&1 > /dev/null
41734f
fi
41734f
%endif
41734f
exit 0
41734f
41734f
%preun
41734f
%if %{systemd}
41734f
if test $1 -eq 0 ; then
41734f
	/bin/systemctl --no-reload disable certmonger.service > /dev/null 2>&1 || :
41734f
	/bin/systemctl stop certmonger.service > /dev/null 2>&1 || :
41734f
fi
41734f
%endif
41734f
%if %{sysvinit}
41734f
if test $1 -eq 0 ; then
41734f
	/sbin/service certmonger stop 2>&1 > /dev/null
41734f
	/sbin/chkconfig --del certmonger
41734f
fi
41734f
%endif
41734f
exit 0
41734f
41734f
%if %{systemd}
41734f
%triggerun -- certmonger < 0.43
41734f
%{systemdsysvsave}
41734f
# Do this because the old package's %%postun doesn't know we need to do it.
41734f
/sbin/chkconfig --del certmonger >/dev/null 2>&1 || :
41734f
# Do this because the old package's %%postun wouldn't have tried.
41734f
/bin/systemctl try-restart certmonger.service >/dev/null 2>&1 || :
41734f
exit 0
41734f
%endif
41734f
41734f
%files -f %{name}.lang
41734f
%doc README.md LICENSE STATUS doc/*.txt
41734f
%config(noreplace) %{_sysconfdir}/dbus-1/system.d/*
41734f
%{_datadir}/dbus-1/services/*
41734f
%dir %{_sysconfdir}/certmonger
41734f
%config(noreplace) %{_sysconfdir}/certmonger/certmonger.conf
41734f
%dir /run/certmonger
41734f
%{_bindir}/*
41734f
%{_sbindir}/certmonger
41734f
%{_mandir}/man*/*
41734f
%{_libexecdir}/%{name}
41734f
%{_localstatedir}/lib/certmonger
41734f
%if %{sysvinit}
41734f
%{sysvinitdir}/certmonger
41734f
%endif
41734f
%if %{tmpfiles}
41734f
%attr(0644,root,root) %config(noreplace) %{_tmpfilesdir}/certmonger.conf
41734f
%endif
41734f
%if %{systemd}
41734f
%{_unitdir}/*
41734f
%{_datadir}/dbus-1/system-services/*
41734f
%endif
41734f
41734f
%changelog
120943
* Tue Dec  6 2022 Rob Crittenden <rcritten@redhat.com> - 0.79.17-1
120943
- Update to upstream 0.79.17
120943
2d498b
* Thu Apr 07 2022 Rob Crittenden <rcritten@redhat.com> - 0.79.14-7
2d498b
- Disable DSA (#2066439)
2d498b
2d498b
* Thu Mar 17 2022 Rob Crittenden <rcritten@redhat.com> - 0.79.14-6
2d498b
- Certificate format validation when adding the SCEP server's CA
2d498b
  (#1492112)
2d498b
- Replace some SHA1 usages with SHA256 in the unit tests
2d498b
41734f
* Thu Oct 07 2021 Rob Crittenden <rcritten@redhat.com> - 0.79.14-5
41734f
- Certmonger SCEP renewal should not use old challenges (#1990926)
41734f
- Certmonger certificates stuck in NEED_GUIDANCE (#2001082)
41734f
- certmonger creates CSRs with invalid DER syntax for X509v3 extensions
41734f
  with critical=FALSE (#2012261)
41734f
41734f
* Tue Sep 28 2021 Rob Crittenden <rcritten@redhat.com> - 0.79.14-4
41734f
- Fix FTBFS due to change in OpenSSL 3.0.0-beta2 API (#2008451)
41734f
41734f
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 0.79.14-3
41734f
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
41734f
  Related: rhbz#1991688
41734f
41734f
* Wed Jul 28 2021 Rob Crittenden <rcritten@redhat.com> - 0.79.14-2
41734f
- Re-enable LTO (#1986099)
41734f
41734f
* Thu Jun 17 2021 Rob Crittenden <rcritten@redhat.com> - 0.79.14-1
41734f
- Update to upstream 0.79.14 (#1969537)
41734f
41734f
* Wed Jun 16 2021 Mohan Boddu <mboddu@redhat.com> - 0.79.13-6
41734f
- Rebuilt for RHEL 9 BETA for openssl 3.0
41734f
  Related: rhbz#1971065
41734f
41734f
* Wed May 19 2021 Rob Crittenden <rcritten@redhat.com> - 0.79.13-5
41734f
- Port to OpenSSL 3.0 (#1952930)
41734f
41734f
* Wed Apr 28 2021 Rob Crittenden <rcritten@redhat.com> - 0.79.13-4
41734f
- Fix local CA to work under FIPS (#1954618)
41734f
41734f
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 0.79.13-3
41734f
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
41734f
41734f
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.79.13-2
41734f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
41734f
41734f
* Tue Oct 20 2020 Rob Crittenden <rcritten@redhat.com> - 0.79.13-1
41734f
- Update to upstream 0.79.13
41734f
41734f
* Mon Oct  5 2020 Rob Crittenden <rcritten@redhat.com> - 0.79.12-1
41734f
- Update to upstream 0.79.12
41734f
41734f
* Fri Sep 18 2020 Rob Crittenden <rcritten@redhat.com> - 0.79.11-4
41734f
- Don't send SIGKILL to child processes to terminate them
41734f
- Switch to JSON for communication with IPA
41734f
41734f
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.79.11-3
41734f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
41734f
41734f
* Tue Jun 30 2020 Rob Crittenden <rcritten@redhat.com> - 0.79.11-2
41734f
- Fix for an unnecessary free() which can cause core dump.
41734f
41734f
* Tue Jun 30 2020 Rob Crittenden <rcritten@redhat.com> - 0.79.11-1
41734f
- Update to upstream 0.79.11
41734f
41734f
* Thu Jun 25 2020 Rob Crittenden <rcritten@redhat.com> - 0.79.10-1
41734f
- Update to upstream 0.79.10
41734f
41734f
* Thu Jan 30 2020 Rob Crittenden <rcritten@redhat.com> - 0.79.9-1
41734f
- Update to upstream 0.79.9
41734f
41734f
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.79.8-4
41734f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
41734f
41734f
* Wed Oct 30 2019 Rob Crittenden <rcritten@redhat.com> - 0.79.8-3
41734f
- Change python2-dbus build dependency to python3
41734f
- Convert tests to pass under python 3
41734f
- Skip DSA tests because it is disabled by default crypto policy
41734f
41734f
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.79.8-2
41734f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
41734f
41734f
* Wed Jul 17 2019 Rob Crittenden <rcritten@redhat.com> - 0.79.8-1
41734f
- Update to upstream 0.79.8
41734f
41734f
* Wed May 22 2019 Rob Crittenden <rcritten@redhat.com> - 0.79.7-3
41734f
- Add BuildRequires for krb5-devel, the buildroot changed.
41734f
41734f
* Mon May 20 2019 Rob Crittenden <rcritten@redhat.com> - 0.79.7-2
41734f
- Move systemd tmpfiles from /var/run to /run (upstream #111)
41734f
- Change /var/run -> /run in systemd service file
41734f
41734f
* Mon Feb 18 2019 Rob Crittenden <rcritten@redhat.com> - 0.79.7-1
41734f
- Update to upstream 0.79.7
41734f
41734f
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.79.6-5
41734f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
41734f
41734f
* Thu Oct  4 2018 Rob Crittenden <rcritten@redhat.com> - 0.79.6-4
41734f
- Pull in upstream fixes discovered in coverity and clang.
41734f
41734f
* Mon Oct  1 2018 Rob Crittenden <rcritten@redhat.com> - 0.79.6-3
41734f
- Improve NSS token handling. The updated NSS crypto-policy enables all
41734f
  tokens which broke requesting certificates due to the way that tokens
41734f
  were managed.
41734f
41734f
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.79.6-2
41734f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
41734f
41734f
* Tue May  8 2018 Rob Crittenden <rcritten@redhat.com> - 0.79.6-1
41734f
- Update to upstream 0.79.6
41734f
41734f
* Wed Mar 14 2018 Iryna Shcherbina <ishcherb@redhat.com> - 0.79.5-7
41734f
- Update Python 2 dependency declarations to new packaging standards
41734f
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
41734f
41734f
* Fri Feb 23 2018 Rob Crittenden <rcritten@redhat.com> 0.79.5-6
41734f
- Fix unit tests. NSS crypto policy disallows keys < 1024
41734f
41734f
* Wed Feb 21 2018 Rob Crittenden <rcritten@redhat.com> 0.79.5-5
41734f
- Add BuildRequires on gcc
41734f
41734f
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.79.5-4
41734f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
41734f
41734f
* Wed Jan 10 2018 Rob Crittenden <rcritten@redhat.com> 0.79.5-3
41734f
- Remove BR on mktemp. It is now provided by coreutils.
41734f
- Patch to fix NSS handling of keys in sqlite databases
41734f
- Patches to fix tests now that sqlite is the NSS default.
41734f
41734f
* Wed Oct  4 2017 Rob Crittenden <rcritten@redhat.com> 0.79.5-2
41734f
- Switch BR from /usr/include/popt.h to popt-devel
41734f
41734f
* Fri Sep  1 2017 Rob Crittenden <rcritten@redhat.com> 0.79.5-1
41734f
- update to 0.79.5:
41734f
   - getcert start-tracking: use issuer option when specified
41734f
   - add support for specifying the MS certificate template
41734f
   - Reformat certificates returned by Dogtag to strip extra newline
41734f
41734f
* Wed Aug 16 2017 Rob Crittenden <rcritten@redhat.com> 0.79.4-2
41734f
- Reformat certificates returned by Dogtag. Dogtag was including
41734f
  a spurious newline before -----END CERTIFICATE-----
41734f
41734f
* Mon Aug  7 2017 Rob Crittenden <rcritten@redhat.com> 0.79.4-1
41734f
- update to 0.79.4
41734f
  - fix CA option name for ipa cert-request
41734f
  - fix minor memory leak
41734f
  - fix build warnings
41734f
  - fix an incorrect date in the .spec changelog
41734f
  - bump gettext version to avoid warning
41734f
41734f
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.79.3-3
41734f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
41734f
41734f
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.79.3-2
41734f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
41734f
41734f
* Tue Feb 28 2017 Nalin Dahyabhai <nalin@redhat.com> 0.79.3-1
41734f
- update to 0.79.3:
41734f
  - fix self-signing self-test cases that used DSA or EC keys
41734f
41734f
* Mon Feb 27 2017 Nalin Dahyabhai <nalin@redhat.com> 0.79.2-2
41734f
- update %%docs list because README is now README.md
41734f
41734f
* Mon Feb 27 2017 Nalin Dahyabhai <nalin@redhat.com> 0.79.2-1
41734f
- update to 0.79.2:
41734f
  - fix 'make distcheck' target
41734f
41734f
* Sun Feb 19 2017 Nalin Dahyabhai <nalin@redhat.com> 0.79.1-1
41734f
- update to 0.79.1:
41734f
  - update translations
41734f
  - fix 'make archive' target
41734f
41734f
* Sun Feb 19 2017 Nalin Dahyabhai <nalin@redhat.com> 0.79-1
41734f
- update to 0.79:
41734f
  - getcert now offers an option (-X) for requesting processing by a particular
41734f
    CA if the server we're contacting is running more than one
41734f
  - getcert also offers options (--for-ca, --not-for-ca, --ca-path-length) for
41734f
    requesting BasicConstraints values
41734f
  - getcert now displays times in local time instead of UTC, which was
41734f
    previously the only way they were displayed; the --utc option can often be
41734f
    used to switch back to its previous behavior
41734f
  - the SCEP enrollment helper now correctly issues GetCACertChain requests to
41734f
    SCEP servers, instead of issuing a GetCAChain request, which isn't part of
41734f
    the protocol; from report by Jason Garland
41734f
  - when issuing SCEP requests, the ID of the CA included in the HTTP request
41734f
    is now URL-encoded, as it should be
41734f
  - renewal or notification-of-impending-expiration logic is now triggered
41734f
    closer to TTL thresholds rather than waiting for a periodic check to pass a
41734f
    threshold
41734f
  - properly builds with OpenSSL 1.1, thanks to Lukas Slebodnik and Tomas Mraz
41734f
    for a lot of the legwork
41734f
- resync .spec file with Fedora
41734f
- upstream project migrated from fedorahosted.org to pagure.io
41734f
41734f
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.78.6-6
41734f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
41734f
41734f
* Sat Jan 21 2017 Igor Gnatenko <ignatenko@redhat.com> - 0.78.6-5
41734f
- Rebuild for xmlrpc-c
41734f
41734f
* Wed Jul  6 2016 Nalin Dahyabhai <nalin@redhat.com> 0.78.6-4
41734f
- add backported fix to wait a reasonable amount of time after calling the
41734f
  'resubmit' method for a new certificate to be issued when we're exercising
41734f
  the D-Bus API during tests (Jan Cholasta, #1351052)
41734f
41734f
* Wed Jul  6 2016 Nalin Dahyabhai <nalin@redhat.com> 0.78.6-3
41734f
- instead of using killall to send a SIGHUP to the system bus daemon in %%post
41734f
  to get it to reload its configuration, use dbus-send to send a ReloadConfig
41734f
  request over the bus (should fix #1277573)
41734f
41734f
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.78.6-2
41734f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
41734f
41734f
* Wed Jan 13 2016 Nalin Dahyabhai <nalin@redhat.com> 0.78.6-1
41734f
- document the -R, -N, -o, and -t flags for dogtag-ipa-renew-agent-submit
41734f
- stop checking that we can generate 512 bit keys during self-tests
41734f
41734f
* Thu Nov 12 2015 Nalin Dahyabhai <nalin@redhat.com> 0.78.5-1
41734f
- fix a possible uninitialized memory read (possibly #1260871)
41734f
- log a diagnostic error when we fail to initialize libkrb5
41734f
41734f
* Tue Aug  4 2015 Nalin Dahyabhai <nalin@redhat.com> 0.78.4-1
41734f
- fix the "getcert start-tracking" -L and -l options (#1249753)
41734f
- output diagnostics about the second request when scep-submit encounters an
41734f
  error during a second request to the SCEP server
41734f
41734f
* Mon Jul 20 2015 Nalin Dahyabhai <nalin@redhat.com> 0.78.3-1
41734f
- call poptGetOptArg() correctly, to fix parsing of the -R flag to scep-submit
41734f
  and the -O and -o flags to dogtag-submit (#1244914)
41734f
41734f
* Thu Jul  9 2015 Nalin Dahyabhai <nalin@redhat.com> 0.78.2-1
41734f
- tweak initialization so that we set up for providing our D-Bus API before we
41734f
  register our name with the bus, so that we can handle any requests that
41734f
  arrive before the acknowledgement of that registration
41734f
- on systems that run systemd, add the right data file so that the service gets
41734f
  started when someone tries to talk to the daemon (ticket #38)
41734f
- correctly check for error responses when sending GetCAChain requests to SCEP
41734f
  servers
41734f
41734f
* Sun Jun 21 2015 Nalin Dahyabhai <nalin@redhat.com> 0.78.1-1
41734f
- self-tests: assume that certutil won't generate DSA keys with more than 1024
41734f
  bits, and will often short us by a few
41734f
41734f
* Sat Jun 20 2015 Nalin Dahyabhai <nalin@redhat.com> 0.78-1
41734f
- switch to using popt for parsing command line arguments, continuing to
41734f
  use old help text for now so that we can catch up with translations (print
41734f
  old text for --help, new text (with longopts!) for -H)
41734f
- add some plumbing for eventually receiving per-certificate roots in
41734f
  addition to issued certificates and chain certificates
41734f
- add a "rekey" command to getcert, for triggering enrollment using a new
41734f
  key pair (#1087932)
41734f
- scep-submit: check for the Renewal capability, and default to taking
41734f
  advantage of it during rekeying, unless the new -n flag is specified to it
41734f
- dogtag-submit: add flags for passing user names, UDNs, passwords, and PINs
41734f
  to the helper (part of ticket #12)
41734f
- dogtag-submit: add a flag for using the agent creds to do TLS client auth
41734f
  while submitting enrollment requests (more of ticket #12)
41734f
- dogtag-submit: handle cases where we submit a request and the server
41734f
  returns a success code rather than just queuing the request (#12 again)
41734f
- ipa-submit: pass requested profile names to the server as an argument
41734f
  named "profile_id"; if the server gives us an "unrecognized argument"
41734f
  error, retry without it for compatibility's sake (part of IPA ticket #57)
41734f
- keygen: fix a possible crash if keygen fails to return a key from NSS
41734f
- correct the certmonger(8) man page's description of the -c flag, which it
41734f
  used to call the -C flag
41734f
- add logic for setting ownership and permissions on certificates and keys
41734f
  when saving them to disk
41734f
- add configuration options "max_key_lifetime" and "max_key_use_count" for
41734f
  making automatic renewal prefer rekeying
41734f
41734f
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.77.5-2
41734f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
41734f
41734f
* Thu May 28 2015 Nalin Dahyabhai <nalin@redhat.com> 0.77.5-1
41734f
- pass $CERTMONGER_REQ_IP_ADDRESS to enrollment helpers if the signing request
41734f
  includes IP address subjectAltName values
41734f
- correctly verify signatures on SCEP server replies when the signer is neither
41734f
  the top-level CA nor the RA (feedback in #1161768)
41734f
- correctly verify signatures on SCEP server replies when there is more than
41734f
  one certificate in the chain between the RA and the top-level CA (feedback in
41734f
  #1161768)
41734f
41734f
* Fri May 15 2015 Nalin Dahyabhai <nalin@redhat.com> 0.77.4-1
41734f
- don't display PINs in "getcert list" output (#42)
41734f
- clean up launching of a private instance in "getcert"
41734f
- expand on the don't-delete-private-key fix from 0.77.3 by letting NSS's
41734f
  own safety checks have an effect
41734f
- backport record-keeping of key generation dates and counts of how many
41734f
  times we've gotten certificates using a given key pair
41734f
41734f
* Thu May  7 2015 Nalin Dahyabhai <nalin@redhat.com> 0.77.3-1
41734f
- fix a data loss bug when saving renewed certificates to NSS databases - the
41734f
  private key could be removed in error since 0.77
41734f
- fixes for bugs found by static analysis
41734f
- fix self-tests when built with OpenSSL 1.0.2
41734f
41734f
* Tue Apr 14 2015 Nalin Dahyabhai <nalin@redhat.com> 0.77.2-1
41734f
- expose the certificate's not-valid-before and not-valid-after dates as a
41734f
  property over D-Bus (ticket #41)
41734f
- give the local signer its own configuration option to set the lifetime
41734f
  of its signing certificate, falling back to the lifetime configured for
41734f
  the self-signer as a default to match the previous behavior
41734f
- fix a potential read segfault parsing the output of an enrollment helper,
41734f
  introduced in 0.77 (thanks to Steve Neuharth)
41734f
- read the ns-certtype extension value in certificates
41734f
- request an enrollment certtype extension to CSRs if we have a profile name
41734f
  that we want to use (ticket #17, possibly part of IPA ticket #57)
41734f
41734f
* Fri Feb 27 2015 Nalin Dahyabhai <nalin@redhat.com> 0.77.1-1
41734f
- update to 0.77
41734f
  - add initial, still rough, SCEP support (#1140241,#1161768)
41734f
    - add an scep-submit helper to handle part of it
41734f
  - getcert: add add-ca/add-scep-ca/modify-ca/remove-ca commands
41734f
  - getcert: add -l, -L flags to request/resubmit/start-tracking commands
41734f
    to provide a way to set a ChallengePassword in signing requests
41734f
  - lay some groundwork for rekeying support
41734f
  - bundled dogtag enrollment helpers now output debugging info to stderr (#)
41734f
  - ipa-getcert: fix a crash when using DNS discovery to locate servers (#39)
41734f
  - getcert: fix displaying of pre-request pre-/post-save commands (#1178190,
41734f
    #1181022, patch by David Kupka)
41734f
  - use Zanata for translations
41734f
  - getcert list: list the certificate's profile name, if it contains one
41734f
41734f
* Tue Nov 18 2014 Nalin Dahyabhai <nalin@redhat.com> 0.76.8-1
41734f
- dogtag-submit: accept additional options to pass to the server when
41734f
  approving requests using agent creds (#1165155, patch by Jan Cholasta)
41734f
- getcert: print help output when 'status' isn't given any args (#1163541)
41734f
41734f
* Tue Nov 11 2014 Nalin Dahyabhai <nalin@redhat.com> 0.76.7-1
41734f
- correctly read CA not-valid-after dates on 32-bit machines (also reported by
41734f
  Natxo Asenjo), so that we don't spin on polling them (#1163023)
41734f
41734f
* Mon Nov 10 2014 Nalin Dahyabhai <nalin@redhat.com> 0.76.6-1
41734f
- don't discard the priority value in DNS SRV records
41734f
41734f
* Mon Nov 10 2014 Nalin Dahyabhai <nalin@redhat.com> 0.76.5-1
41734f
- avoid premature exit on CA data analysis failures (should fix an issue
41734f
  reported by Natxo Asenjo)
41734f
41734f
* Mon Nov 10 2014 Nalin Dahyabhai <nalin@redhat.com> 0.76.4-1
41734f
- fix a failure in self-tests
41734f
41734f
* Mon Nov 10 2014 Nalin Dahyabhai <nalin@redhat.com> 0.76.3-1
41734f
- fixes for bugs found by static analysis
41734f
- handle IDN correctly when doing service location using SRV records
41734f
- documentation updates
41734f
41734f
* Wed Nov  5 2014 Nalin Dahyabhai <nalin@redhat.com>
41734f
- rework the state machine so that we save an issued certificate's associated
41734f
  CA certificates, then re-read the certificate, then run the post hook and
41734f
  issue notifications, in that order, instead of saving CA certificates after
41734f
  running the post hook, which was always a surprising order (#1131700)
41734f
- add a generic dogtag-submit helper that doesn't include any IPA defaults,
41734f
  to make it easier to know the difference between paramenters it requires
41734f
  and parameters which are optional (#12)
41734f
41734f
* Tue Nov  4 2014 Nalin Dahyabhai <nalin@redhat.com> 0.76.2-1
41734f
- ipa-submit: when we fail to locate/contact LDAP or XML-RPC servers,
41734f
  use discovery to find them (#1136900)
41734f
41734f
* Fri Oct 31 2014 Nalin Dahyabhai <nalin@redhat.com> 0.76.1-1
41734f
- allow for 'certmonger -P abstract:...' to work, too
41734f
41734f
* Fri Oct 31 2014 Nalin Dahyabhai <nalin@redhat.com> 0.76-1
41734f
- require a single certificate to be specified to 'getcert status' (#1148001,
41734f
  #1163541, #1163539)
41734f
- shorten the default help message which getcert prints when it's not given
41734f
  a specific command (#1131704)
41734f
- add private listener (-l, -L, -P) mode to certmonger, to allow it to listen
41734f
  for connections directly from clients running under the same UID
41734f
- add a command mode (-c) to certmonger, in which once it's started, it
41734f
  launches a specified command, and after that command exits, the daemon exits
41734f
- when getcert is invoked with no bus running, if it's running as root, run
41734f
  certmonger in private listener mode with the same invocation of getcert as
41734f
  the command to start and wait for (#1134497)
41734f
41734f
* Thu Aug 28 2014 Nalin Dahyabhai <nalin@redhat.com> 0.75.14-1
41734f
- make pathname canonicalization slightly smarter, to handle ".." in
41734f
  locations (#1131758)
41734f
- updates to self-tests (#1144082)
41734f
41734f
* Thu Aug 21 2014 Kevin Fenzi <kevin@scrye.com> - 0.75.13-2
41734f
- Rebuild for rpm bug 1131960
41734f
41734f
* Mon Aug 18 2014 Nalin Dahyabhai <nalin@redhat.com> 0.75.13-1
41734f
- add a missing test case file (whoops)
41734f
41734f
* Mon Aug 18 2014 Nalin Dahyabhai <nalin@redhat.com> 0.75.12-1
41734f
- correct encoding/decoding of variant-typed data which we receive and send
41734f
  as part of the org.freedesktop.DBus.Properties interface over the bus, and
41734f
  add some tests for them (based on patch from David Kupka, ticket #36)
41734f
41734f
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.75.10-2
41734f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
41734f
41734f
* Tue Aug 12 2014 Nalin Dahyabhai <nalin@redhat.com> 0.75.11-1
41734f
- when getcert is passed a -a flag, to indicate that CA root certificates
41734f
  should be stored in the specified database, don't ignore locations which
41734f
  don't include a storage scheme (#1129537)
41734f
- when called to 'start-tracking' with the -a or -F flags, if we have
41734f
  applicable certificates on-hand for a CA that we're either told to use
41734f
  or which we decide is the correct one, save the certificates (#1129696)
41734f
41734f
* Tue Aug  5 2014 Nalin Dahyabhai <nalin@redhat.com> 0.75.10-1
41734f
- when attempting to contact an IPA LDAP server, if no "ldap_uri" is set in
41734f
  default.conf, and no "host" is set either, try to construct the server URI
41734f
  using the "server" setting (#1126985)
41734f
41734f
* Thu Jul 31 2014 Nalin Dahyabhai <nalin@redhat.com> 0.75.9-1
41734f
- avoid potential use-after-free after a CA is removed dynamically (thanks to
41734f
  Keenan Brock) (#1125342)
41734f
- add a "external-helper" property to CA objects
41734f
41734f
* Mon Jul 21 2014 Nalin Dahyabhai <nalin@redhat.com> 0.75.8-1
41734f
- add a 'refresh' option to the getcert command
41734f
- add a '-a' flag to the getcert command's 'refresh-ca' option
41734f
41734f
* Thu Jul 17 2014 Nalin Dahyabhai <nalin@redhat.com> 0.75.7-2
41734f
- reintroduce package Requires: on systemd-sysv on F19 and EL6 and older,
41734f
  conditionalized it so that it's ignored on newer releases, and make
41734f
  whether or not we call systemd-sysv-convert in triggers depend on that,
41734f
  too (#1104138)
41734f
41734f
* Thu Jul 17 2014 Nalin Dahyabhai <nalin@redhat.com> 0.75.7-1
41734f
- fix an inconsistency in how we parse cookie values returned by CA helpers,
41734f
  in that single-line values would lose the end-of-line after a daemon
41734f
  restart, but not before
41734f
- handle timeout values and exit status values when calling CA helpers
41734f
  in non-SUBMIT, non-POLL modes (#1118468)
41734f
- rework how we save CA certificates so that we save CA certificates associated
41734f
  with end-entity certificates when we save that end-entity certificate, which
41734f
  requires running all of the involved pre- and post-save commands
41734f
- drop package Requires: on systemd-sysv (#1104138)
41734f
41734f
* Thu Jun 26 2014 Nalin Dahyabhai <nalin@redhat.com> 0.75.6-1
41734f
- avoid potential use-after-free and read overrun after a CA is added
41734f
  dynamically (thanks to Jan Cholasta)
41734f
41734f
* Fri Jun 20 2014 Nalin Dahyabhai <nalin@redhat.com> 0.75.5-1
41734f
- documentation updates
41734f
41734f
* Fri Jun 20 2014 Nalin Dahyabhai <nalin@redhat.com> 0.75.4-2
41734f
- add a %%trigger to remove knowledge of the "dogtag-ipa-renew-agent" CA
41734f
  when we detect certmonger versions prior to 0.58 being installed, to
41734f
  avoid cases where some older versions choke on CAs with nicknames that
41734f
  contain characters that can't legally be part of a D-Bus name (#948993)
41734f
41734f
* Thu Jun 19 2014 Nalin Dahyabhai <nalin@redhat.com> 0.75.4-1
41734f
- fix creation and packaging of the "local" CA's data directory
41734f
41734f
* Wed Jun 18 2014 Nalin Dahyabhai <nalin@redhat.com> 0.75.3-1
41734f
- read and cache whether or not we saw a noOCSPcheck extension in certificates
41734f
- documentation updates
41734f
41734f
* Mon Jun 16 2014 Nalin Dahyabhai <nalin@redhat.com> 0.75.2-1
41734f
- when generating keys using OpenSSL, if key generation fails, try
41734f
  again with the default key size, in case we're in FIPS mode
41734f
- documentation updates
41734f
41734f
* Sat Jun 14 2014 Nalin Dahyabhai <nalin@redhat.com> 0.75.1-1
41734f
- log the state in 'getcert status' verbose mode
41734f
41734f
* Fri Jun 13 2014 Nalin Dahyabhai <nalin@redhat.com> 0.75-1
41734f
- add a -w (wait) flag to the getcert's request/resubmit/start-tracking
41734f
  commands, and add a non-waiting status command
41734f
41734f
* Wed Jun 11 2014 Nalin Dahyabhai <nalin@redhat.com> 0.74.96-1
41734f
- make the trust settings we apply to CA-supplied certificates while
41734f
  saving them to NSS databases run-time configurable
41734f
- fix compiling against EL5-era OpenSSL
41734f
- when saving CA certificates we pull from an IPA server, nickname
41734f
  it using the realm name with " IPA CA" appended rather than just
41734f
  naming it "IPA CA"
41734f
- fix the local signer so that when it issues itself a new certificate,
41734f
  it uses the same subject name
41734f
- add a -w flag to getcert's request, resubmit, and start-tracking
41734f
  commands, telling it to wait until either the certificate is issued,
41734f
  we get to a state where we know that we won't be able to get one, or
41734f
  we are waiting for a CA
41734f
41734f
* Mon Jun  9 2014 Nalin Dahyabhai <nalin@redhat.com> 0.74.95-1
41734f
- add the "local" signer, a local toy CA that signs anything you'll
41734f
  ask it to sign
41734f
41734f
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.74-2
41734f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
41734f
41734f
* Fri Jun  6 2014 Nalin Dahyabhai <nalin@redhat.com> 0.74.94-1
41734f
- fix self-test errors that we trigger with new OpenSSL
41734f
- fix a build error that would sometimes happen when we're told to
41734f
  build PIE binaries
41734f
- quiet a compile warning
41734f
41734f
* Thu Jun  5 2014 Nalin Dahyabhai <nalin@redhat.com> 0.74.93-1
41734f
- add some self-tests
41734f
- simplify the internal submit-to-CA logic
41734f
- fixes for more problems found through static analysis
41734f
41734f
* Tue Jun  3 2014 Nalin Dahyabhai <nalin@redhat.com> 0.74.92-1
41734f
- retrieve CA information from CAs, if the helpers can do so, and
41734f
  add a command to explicitly refresh that data: "getcert refresh-ca"
41734f
- offer to save CA certificates to files and databases, when specified with
41734f
  new -a and -F flags to getcert request/resubmit/start-tracking (#1098208,
41734f
  trac #31)
41734f
- add IP address subject alternate names when getcert request/resubmit
41734f
  is passed the -A option (trac #35)
41734f
- read and cache the freshestCRL extension in certificates
41734f
- properly interpret KDC-unreachable errors encountered in the IPA
41734f
  submission error as a server-unreachable error that we will retry,
41734f
  rather than a misconfiguration error which we won't
41734f
- don't let tests get tripped up by new formatting used in dos2unix status
41734f
  messages (#1099080)
41734f
- updated translations
41734f
- be explicit that we are going to use bashisms in test scripts by calling
41734f
  the shell interpreter as 'bash' rather than 'sh' (trac #27)
41734f
41734f
* Thu Apr  3 2014 Nalin Dahyabhai <nalin@redhat.com> 0.74-1
41734f
- also save state when we exit due to SIGHUP
41734f
- don't get tripped up when enrollment helpers hand us certificates which
41734f
  include CRLF line terminators (ticket #25)
41734f
- be tolerant of certificate issuer names, subject names, DNS, email, and
41734f
  Kerberos principal namem subjectAltNames, and crl distribution point URLs
41734f
  that contain newlines
41734f
- read and cache the certificate template extension in certificates
41734f
- enforce different minimum key sizes depending on the type of key we're
41734f
  trying to generate
41734f
- store DER versions of subject, issuer and template subject, if we have
41734f
  them (Jan Cholasta, ticket #26)
41734f
- when generating signing requests with subject names that don't quite parse
41734f
  as subject names, encode what we're given as PrintableString rather than
41734f
  as a UTF8String
41734f
- always chdir() to a known location at startup, even if we're not becoming
41734f
  a daemon
41734f
- fix a couple of memory leaks (static analysis)
41734f
- add missing buildrequires: on which
41734f
41734f
* Thu Feb 20 2014 Nalin Dahyabhai <nalin@redhat.com> 0.73-1
41734f
- updates to 0.73
41734f
  - getcert no longer claims to be stuck when a CA is unreachable,
41734f
    because the daemon isn't actually stuck
41734f
41734f
* Mon Feb 17 2014 Nalin Dahyabhai <nalin@redhat.com>
41734f
- updates to 0.73
41734f
  - also pass the key type to enrollment helpers in the environment as
41734f
    a the value of "CERTMONGER_KEY_TYPE"
41734f
41734f
* Mon Feb 10 2014 Nalin Dahyabhai <nalin@redhat.com>
41734f
- move the tmpfiles.d file from /etc/tmpfiles.d to %%{_tmpfilesdir},
41734f
  where it belongs (#1180978)
41734f
41734f
* Mon Feb 10 2014 Nalin Dahyabhai <nalin@redhat.com>
41734f
- updates for 0.73
41734f
  - set the flag to encode EC public key parameters using named curves
41734f
    instead of the default of all-the-details when using OpenSSL
41734f
  - don't break when NSS supports secp521r1 but OpenSSL doesn't
41734f
  - also pass the CA nickname to enrollment helpers in the environment as
41734f
    a text value in "CERTMONGER_CA_NICKNAME", so they can use that value
41734f
    when reading configuration settings
41734f
  - also pass the SPKAC value to enrollment helpers in the environment as
41734f
    a base64 value in "CERTMONGER_SPKAC"
41734f
  - also pass the request's SubjectPublicKeyInfo value to enrollment helpers
41734f
    in the environment as a base64 value in "CERTMONGER_SPKI" (part of #16)
41734f
  - when generating signing requests using NSS, be more accommodating of
41734f
    requested subject names that don't parse properly
41734f
41734f
* Mon Feb  3 2014 Nalin Dahyabhai <nalin@redhat.com> 0.72-1
41734f
- update to 0.72
41734f
  - support generating DSA parameters and keys on sufficiently-new OpenSSL
41734f
    and NSS
41734f
  - support generating EC keys when OpenSSL and NSS support it, using key
41734f
    size to select the curve to use from among secp256r1, secp384r1,
41734f
    secp521r1 (which are the ones that are usually available, though
41734f
    secp521r1 isn't always, even if the other two are)
41734f
  - stop trying to cache public key parameters at all and instead cache public
41734f
    key info properly
41734f
  - encode the friendlyName attribute in signing requests as a BMPString,
41734f
    not as a PrintableString
41734f
  - catch more filesystem permissions problems earlier (more of #996581)
41734f
41734f
* Mon Jan 27 2014 Nalin Dahyabhai <nalin@redhat.com> 0.71-1
41734f
- check for cases where we fail to allocate memory while reading a request
41734f
  or CA entry from disk (John Haxby)
41734f
- only handle one watch at a time, which should avoid abort() during
41734f
  attempts to reconnect to the message bus after losing our connection
41734f
  to it (#1055521)
41734f
41734f
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 0.70-2
41734f
- Mass rebuild 2014-01-24
41734f
41734f
* Thu Jan  2 2014 Nalin Dahyabhai <nalin@redhat.com> 0.70-1
41734f
- add a --with-homedir option to configure, and use it, since subprocesses
41734f
  which we run and which use NSS may attempt to write to $HOME/.pki, and
41734f
  0.69's strategy of setting that to "/" was rightly hitting SELinux policy
41734f
  denials (#1047798)
41734f
41734f
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 0.69-2
41734f
- Mass rebuild 2013-12-27
41734f
41734f
* Mon Dec  9 2013 Nalin Dahyabhai <nalin@redhat.com> 0.69-1
41734f
- tweak how we decide whether we're on the master or a minion when we're
41734f
  told to use certmaster as a CA
41734f
- clean up one of the tests so that it doesn't have to work around internal
41734f
  logging producing duplicate messages
41734f
- when logging errors while setting up to contact xmlrpc servers, explicitly
41734f
  note that the error is client-side
41734f
- don't abort() due to incorrect locking when an attempt to save an issued
41734f
  certificate to the designated location fails (part of #1032760/#1033333,
41734f
  ticket #22)
41734f
- when reading an issued certificate from an enrollment helper, ignore
41734f
  noise before or after the certificate itself (more of #1032760/1033333,
41734f
  ticket #22)
41734f
- run subprocesses in a cleaned-up environment (more of #1032760/1033333,
41734f
  ticket #22)
41734f
- clear the ca-error that we saved when we had an error talking to the CA if we
41734f
  subsequently succeed in talking to the CA
41734f
- various other static-analysis fixes
41734f
41734f
* Thu Aug 29 2013 Nalin Dahyabhai <nalin@redhat.com> 0.68-1
41734f
- notice when the OpenSSL RNG isn't seeded
41734f
- notice when saving certificates or keys fails due to filesystem-related
41734f
  permission denial (#996581)
41734f
41734f
* Tue Aug  6 2013 Nalin Dahyabhai <nalin@redhat.com> 0.67-3
41734f
- pull up a patch from master to adapt self-tests to certutil's diagnostic
41734f
  output having changed (#992050)
41734f
41734f
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.67-2
41734f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
41734f
41734f
* Mon Mar 11 2013 Nalin Dahyabhai <nalin@redhat.com> 0.67-1
41734f
- when saving certificates to NSS databases, try to preserve the trust
41734f
  value assigned to a previously-present certificate with the same nickname
41734f
  and subject, if one is found
41734f
- when saving certificates to NSS databases, also prune certificates from
41734f
  the database which have both the same nickname and subject as the one
41734f
  we're adding, to avoid tripping up tools that only fetch one certificate
41734f
  by nickname
41734f
41734f
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.65-2
41734f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
41734f
41734f
* Wed Jan 23 2013 Nalin Dahyabhai <nalin@redhat.com> 0.66-1
41734f
- build as position-independent executables with early binding (#883966)
41734f
- also don't tag the unit file as a configuration file (internal tooling)
41734f
41734f
* Wed Jan 23 2013 Nalin Dahyabhai <nalin@redhat.com> 0.65-2
41734f
- don't tag the D-Bus session .service file as a configuration file (internal
41734f
  tooling)
41734f
41734f
* Tue Jan  8 2013 Nalin Dahyabhai <nalin@redhat.com> 0.65-1
41734f
- fix a crash in the self-tests
41734f
41734f
* Tue Jan  8 2013 Nalin Dahyabhai <nalin@redhat.com> 0.64-1
41734f
- at startup, if we resume the state machine for a given certificate to a state
41734f
  which expects to have the newly-added lock already acquired, acquire it
41734f
  before moving on with the certificate's work (still aimed at fixing #883484)
41734f
41734f
* Tue Dec 18 2012 Nalin Dahyabhai <nalin@redhat.com> 0.63-1
41734f
- serialize access to NSS databases and the running of pre- and post-save
41734f
  commands which might also access them (possibly fixing part of #883484)
41734f
41734f
* Thu Nov 29 2012 Nalin Dahyabhai <nalin@redhat.com> 0.62-1
41734f
- add a -u flag to getcert to enable requesting a keyUsage extension value
41734f
- request subjectKeyIdentifier extensions from CAs, and include them in
41734f
  self-signed certificates
41734f
- request basicConstraints from CAs, defaulting to requests for end-entity
41734f
  certificates
41734f
- when requesting CA certificates, also request authorityKeyIdentifier
41734f
- add support for requesting CRL distribution point and authorityInfoAccess
41734f
  extensions that specify OCSP responder locations
41734f
- don't crash when OpenSSL can't build a template certificate from a request
41734f
  when we're in FIPS mode
41734f
- put NSS in FIPS mode, when the system booted that way, except when we're
41734f
  trying to write certificates to a database
41734f
- fix CSR generation and self-signing in FIPS mode with NSS
41734f
- fix self-signing in FIPS mode with OpenSSL
41734f
- new languages from the translation team: mai, ml, nn, ga
41734f
41734f
* Tue Nov 27 2012 Nalin Dahyabhai <nalin@redhat.com> 0.61-3
41734f
- backport change from git to not choke if X509_REQ_to_X509() fails when we're
41734f
  self-signing using OpenSSL
41734f
- backport another change from git to represent this as a CA-rejected error
41734f
41734f
* Mon Sep 24 2012 Nalin Dahyabhai <nalin@redhat.com> 0.61-1
41734f
- fix a regression in reading old request tracking files where the
41734f
  request was in state NEED_TO_NOTIFY or NOTIFYING
41734f
41734f
* Wed Sep  5 2012 Nalin Dahyabhai <nalin@redhat.com> 0.60-1
41734f
- adjust internals of logic for talking to dogtag to at least have a
41734f
  concept of non-agent cases
41734f
- when talking to an IPA server's internal Dogtag instance, infer which
41734f
  ports the CA is listening on from the "dogtag_version" setting in the
41734f
  IPA configuration (Ade Lee)
41734f
- send a notification (or log a message, whatever) when we save a new
41734f
  certificate (#766167)
41734f
41734f
* Mon Jul 30 2012 Nalin Dahyabhai <nalin@redhat.com>
41734f
- fix a bad %%preun scriptlet
41734f
41734f
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.59-2
41734f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
41734f
41734f
* Fri Jun 29 2012 Nalin Dahyabhai <nalin@redhat.com> 0.59-1
41734f
- mostly documentation updates
41734f
41734f
* Fri Jun 29 2012 Nalin Dahyabhai <nalin@redhat.com> 0.58-1
41734f
- add a "dogtag-ipa-renew-agent" CA so that we can renew certificates using
41734f
  an IPA server's internal Dogtag instance
41734f
- export the requested profile and old certificate to enrollment helpers
41734f
- make libxml and libcurl into hard build-time requirements
41734f
- serialize all pre/save/post sequences to make sure that stop/save/start
41734f
  doesn't become stop1/save1/stop2/start1/save2/start2 when we're stopping
41734f
  a service while we muck with more than one of its certificates
41734f
41734f
* Fri Jun 15 2012 Nalin Dahyabhai <nalin@redhat.com>
41734f
- add a command option (-T) to getcert for specifying which enrollment
41734f
  profile to tell a CA that we're using, in case it cares (#10)
41734f
41734f
* Thu Jun 14 2012 Nalin Dahyabhai <nalin@redhat.com> 0.57-1
41734f
- clarify that the command passed to getcert -C is a "post"-save command
41734f
- add a "pre"-save command option to getcert, specified with the -B flag (#9)
41734f
- after we notify of an impending not-valid-after approaching, don't do it
41734f
  again immediately
41734f
41734f
* Sat Mar  3 2012 Nalin Dahyabhai <nalin@redhat.com> 0.56-1
41734f
- when a caller sets the is-default flag on a CA, and another CA is no longer
41734f
  the default, emit the PropertiesChanged signal on the CA which is not the
41734f
  default, instead on the new default a second time
41734f
- drop some dead code from the D-Bus message handlers (static analysis,
41734f
  #796813)
41734f
- cache public keys when we read private keys
41734f
- go back to printing an error indicating that we're missing a required
41734f
  argument when we're missing a required argument, not that the option is
41734f
  invalid (broken since 0.51, #796542)
41734f
41734f
* Wed Feb 15 2012 Nalin Dahyabhai <nalin@redhat.com> 0.55-1
41734f
- allow root to use our implementation of org.freedesktop.DBus.Properties
41734f
- take more care to not emit useless PropertiesChanged signals
41734f
41734f
* Wed Feb 15 2012 Nalin Dahyabhai <nalin@redhat.com> 0.54-1
41734f
- fix setting the group ID when spawning the post-save command
41734f
41734f
* Tue Feb 14 2012 Nalin Dahyabhai <nalin@redhat.com> 0.53-1
41734f
- large changes to the D-Bus glue, exposing a lot of data which we were
41734f
  providing via D-Bus getter methods as properties, and providing more
41734f
  accurate introspection data
41734f
- emit a signal when the daemon saves a certificate to the destination
41734f
  location, and provide an option to have the daemon spawn an arbitrary
41734f
  command at that point, too (#766167)
41734f
- enable starting the service by default on RHEL (#765600)
41734f
41734f
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.52-2
41734f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
41734f
41734f
* Fri Dec 16 2011 Nalin Dahyabhai <nalin@redhat.com> 0.52-1
41734f
- note that SELinux usually confines us to writing only to cert_t in
41734f
  doc/getting-started.txt (#765599)
41734f
- fix crashes when we add a request during our first run when we're
41734f
  populating the hard-coded CA list
41734f
- properly deal with cases where a path is passed to us is "./XXX"
41734f
- in session mode, create our data directories as we go
41734f
41734f
* Tue Dec  6 2011 Nalin Dahyabhai <nalin@redhat.com> 0.51-1
41734f
- api: lift restrictions on characters used in request and CA nicknames by
41734f
  making their object names not incorporate their nicknames
41734f
- api: add find_request_by_nickname and find_ca_by_nickname
41734f
- certmonger-ipa-submit.8: list -k, -K, -t in the summary, document -K
41734f
- getcert: print "invalid option" error messages ourselves (#756291)
41734f
- ipa-submit: supply a Referer: header when submitting requests to IPA
41734f
  (#750617, needed for #747710)
41734f
41734f
* Fri Oct 14 2011 Nalin Dahyabhai <nalin@redhat.com> 0.50-1
41734f
- really fix these this time:
41734f
 - getcert: error out when "list -c" finds no matching CA (#743488)
41734f
 - getcert: error out when "list -i" finds no matching request (#743485)
41734f
41734f
* Wed Oct 12 2011 Nalin Dahyabhai <nalin@redhat.com> 0.49-1
41734f
- when using an NSS database, skip loading the module database (#743042)
41734f
- when using an NSS database, skip loading root certs
41734f
- generate SPKAC values when generating CSRs, though we don't do anything
41734f
  with SPKAC values yet
41734f
- internally maintain and use challenge passwords, if we have them
41734f
- behave better when certificates have shorter lifetimes
41734f
- add/recognize/handle notification type "none"
41734f
- getcert: error out when "list -c" finds no matching CA (#743488)
41734f
- getcert: error out when "list -i" finds no matching request (#743485)
41734f
41734f
* Thu Sep 29 2011 Nalin Dahyabhai <nalin@redhat.com> 0.48-1
41734f
- don't incorrectly assume that CERT_ImportCerts() returns a NULL-terminated
41734f
  array (#742348)
41734f
41734f
* Tue Sep 27 2011 Nalin Dahyabhai <nalin@redhat.com> 0.47-1
41734f
- getcert: distinguish between {stat() succeeds but isn't a directory} and
41734f
  {stat() failed} when printing an error message (#739903)
41734f
- getcert resubmit/start-tracking: when we're looking for an existing request
41734f
  by ID, and we don't find one, note that specifically (#741262)
41734f
41734f
* Mon Aug 29 2011 Stephen Gallagher <sgallagh@redhat.com> - 0.46-1.1
41734f
- Rebuild against fixed libtevent version
41734f
41734f
* Mon Aug 15 2011 Nalin Dahyabhai <nalin@redhat.com> 0.46-1
41734f
- treat the ability to access keys in an NSS database without using a PIN,
41734f
  when we've been told we need one, as an error (#692766, really this time)
41734f
41734f
* Thu Aug 11 2011 Nalin Dahyabhai <nalin@redhat.com> 0.45-1
41734f
- modify the systemd .service file to be a proper 'dbus' service (more
41734f
  of #718172)
41734f
41734f
* Thu Aug 11 2011 Nalin Dahyabhai <nalin@redhat.com> 0.44-1
41734f
- check specifically for cases where a specified token that we need to
41734f
  use just isn't present for whatever reason (#697058)
41734f
41734f
* Wed Aug 10 2011 Nalin Dahyabhai <nalin@redhat.com> 0.43-1
41734f
- add a -K option to ipa-submit, to use the current ccache, which makes
41734f
  it easier to test
41734f
41734f
* Fri Aug  5 2011 Nalin Dahyabhai <nalin@redhat.com>
41734f
- if xmlrpc-c's struct xmlrpc_curl_xportparms has a gss_delegate field, set
41734f
  it to TRUE when we're doing Negotiate auth (#727864, #727863, #727866)
41734f
41734f
* Wed Jul 13 2011 Nalin Dahyabhai <nalin@redhat.com>
41734f
- treat the ability to access keys in an NSS database without using a PIN,
41734f
  when we've been told we need one, as an error (#692766)
41734f
- when handling "getcert resubmit" requests, if we don't have a key yet,
41734f
  make sure we go all the way back to generating one (#694184)
41734f
- getcert: try to clean up tests for NSS and PEM file locations (#699059)
41734f
- don't try to set reconnect-on-exit policy unless we managed to connect
41734f
  to the bus (#712500)
41734f
- handle cases where we specify a token but the storage token isn't
41734f
  known (#699552)
41734f
- getcert: recognize -i and storage options to narrow down which requests
41734f
  the user wants to know about (#698772)
41734f
- output hints when the daemon has startup problems, too (#712075)
41734f
- add flags to specify whether we're bus-activated or not, so that we can
41734f
  exit if we have nothing to do after handling a request received over
41734f
  the bus if some specified amount of time has passed
41734f
- explicitly disallow non-root access in the D-Bus configuration (#712072)
41734f
- migrate to systemd on releases newer than Fedora 15 or RHEL 6 (#718172)
41734f
- fix a couple of incorrect calls to talloc_asprintf() (#721392)
41734f
41734f
* Wed Apr 13 2011 Nalin Dahyabhai <nalin@redhat.com> 0.42-1
41734f
- getcert: fix a buffer overrun preparing a request for the daemon when
41734f
  there are more parameters to encode than space in the array (#696185)
41734f
- updated translations: de, es, id, pl, ru, uk
41734f
41734f
* Mon Apr 11 2011 Nalin Dahyabhai <nalin@redhat.com> 0.41-1
41734f
- read information about the keys we've just generated before proceeding
41734f
  to generating a CSR (part of #694184, part of #695675)
41734f
- when processing a "resubmit" request from getcert, go back to key
41734f
  generation if we don't have keys yet, else go back to CSR generation as
41734f
  before (#694184, #695675)
41734f
- configure with --with-tmpdir=/var/run/certmonger and own /var/run/certmonger
41734f
  (#687899), and add a systemd tmpfiles.d control file for creating
41734f
  /var/run/certmonger on Fedora 15 and later
41734f
- let session instances exit when they get disconnected from the bus
41734f
- use a lock file to make sure there's only one session instance messing
41734f
  around with the user's files at a time
41734f
- fix errors saving certificates to NSS databases when there's already a
41734f
  certificate there with the same nickname (#695672)
41734f
- make key and certificate location output from 'getcert list' more properly
41734f
  translatable (#7)
41734f
41734f
* Mon Mar 28 2011 Nalin Dahyabhai <nalin@redhat.com> 0.40-1
41734f
- update to 0.40
41734f
  - fix validation check on EKU OIDs in getcert (#691351)
41734f
  - get session bus mode sorted
41734f
  - add a list of recognized EKU values to the getcert-request man page
41734f
41734f
* Fri Mar 25 2011 Nalin Dahyabhai <nalin@redhat.com> 0.39-1
41734f
- update to 0.39
41734f
  - fix use of an uninitialized variable in the xmlrpc-based submission
41734f
    helpers (#690886)
41734f
41734f
* Thu Mar 24 2011 Nalin Dahyabhai <nalin@redhat.com> 0.38-1
41734f
- update to 0.38
41734f
  - catch cases where we can't read a PIN file, but we never have to log
41734f
    in to the token to access the private key (more of #688229)
41734f
41734f
* Tue Mar 22 2011 Nalin Dahyabhai <nalin@redhat.com> 0.37-1
41734f
- update to 0.37
41734f
  - be more careful about checking if we can read a PIN file successfully
41734f
    before we even call an API that might need us to try (#688229)
41734f
  - fix strict aliasing warnings
41734f
41734f
* Tue Mar 22 2011 Nalin Dahyabhai <nalin@redhat.com> 0.36-1
41734f
- update to 0.36
41734f
  - fix some use-after-free bugs in the daemon (#689776)
41734f
  - fix a copy/paste error in certmonger-ipa-submit(8)
41734f
  - getcert now suppresses error details when not given its new -v option
41734f
    (#683926, more of #681641/#652047)
41734f
  - updated translations
41734f
    - de, es, pl, ru, uk
41734f
    - indonesian translation is now for "id" rather than "in"
41734f
41734f
* Wed Mar  2 2011 Nalin Dahyabhai <nalin@redhat.com> 0.35.1-1
41734f
- fix a self-test that broke because one-year-from-now is now a day's worth
41734f
  of seconds further out than it was a few days ago
41734f
41734f
* Mon Feb 14 2011 Nalin Dahyabhai <nalin@redhat.com> 0.35-1
41734f
- update to 0.35
41734f
  - self-test fixes to rebuild properly in mock (#670322)
41734f
41734f
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.34-2
41734f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
41734f
41734f
* Fri Jan 14 2011 Nalin Dahyabhai <nalin@redhat.com> 0.34-1
41734f
- update to 0.34
41734f
  - explicitly note the number of requests we're tracking in the output of
41734f
    "getcert list" (#652049)
41734f
  - try to offer some suggestions when we get certain specific errors back
41734f
    in "getcert" (#652047)
41734f
  - updated translations
41734f
    - es
41734f
41734f
* Thu Dec 23 2010 Nalin Dahyabhai <nalin@redhat.com> 0.33-1
41734f
- update to 0.33
41734f
  - new translations
41734f
    - id by Okta Purnama Rahadian!
41734f
  - updated translations
41734f
    - pl, uk
41734f
  - roll up assorted fixes for defects
41734f
41734f
* Fri Nov 12 2010 Nalin Dahyabhai <nalin@redhat.com> 0.32-2
41734f
- depend on the e2fsprogs libuuid on Fedora and RHEL releases where it's
41734f
  not part of util-linux-ng
41734f
41734f
* Wed Oct 13 2010 Nalin Dahyabhai <nalin@redhat.com> 0.32-1
41734f
- oops, rfc5280 says we shouldn't be populating unique identifiers, so
41734f
  make it a configuration option and default the behavior to off
41734f
41734f
* Tue Oct 12 2010 Nalin Dahyabhai <nalin@redhat.com> 0.31-1
41734f
- start populating the optional unique identifier fields in self-signed
41734f
  certificates
41734f
41734f
* Thu Sep 30 2010 Nalin Dahyabhai <nalin@redhat.com> 0.30-4
41734f
- explicitly require "dbus" to try to ensure we have a running system bus
41734f
  when we get started (#639126)
41734f
41734f
* Wed Sep 29 2010 jkeating - 0.30-3
41734f
- Rebuilt for gcc bug 634757
41734f
41734f
* Thu Sep 23 2010 Nalin Dahyabhai <nalin@redhat.com> 0.30-2
41734f
- try to SIGHUP the messagebus daemon at first install so that it'll
41734f
  let us claim our service name if it isn't restarted before we are
41734f
  first started (#636876)
41734f
41734f
* Wed Aug 25 2010 Nalin Dahyabhai <nalin@redhat.com> 0.30-1
41734f
- update to 0.30
41734f
  - fix errors computing the time at the end of an interval that were
41734f
    caught by self-tests
41734f
41734f
* Mon Aug 23 2010 Nalin Dahyabhai <nalin@redhat.com> 0.29-1
41734f
- update to 0.29
41734f
  - fix 64-bit cleanliness issue using libdbus
41734f
  - actually include the full set of tests in tarballs
41734f
41734f
* Tue Aug 17 2010 Nalin Dahyabhai <nalin@redhat.com> 0.28-1
41734f
- update to 0.28
41734f
  - fix self-signing certificate notBefore and notAfter values on 32-bit
41734f
    machines
41734f
41734f
* Tue Aug 17 2010 Nalin Dahyabhai <nalin@redhat.com> 0.27-1
41734f
- update to 0.27
41734f
  - portability and test fixes
41734f
41734f
* Fri Aug 13 2010 Nalin Dahyabhai <nalin@redhat.com> 0.26-1
41734f
- update to 0.26
41734f
  - when canceling a submission request that's being handled by a helper,
41734f
    reap the child process's status after killing it (#624120)
41734f
41734f
* Fri Aug 13 2010 Nalin Dahyabhai <nalin@redhat.com> 0.25-1
41734f
- update to 0.25
41734f
  - new translations
41734f
    - in by Okta Purnama Rahadian!
41734f
  - fix detection of cases where we can't access a private key in an NSS
41734f
    database because we don't have the PIN
41734f
  - teach '*getcert start-tracking' about the -p and -P options which the
41734f
    '*getcert request' commands already understand (#621670), and also
41734f
    the -U, -K, -E, and -D flags
41734f
  - double-check that the nicknames of keys we get back from
41734f
    PK11_ListPrivKeysInSlot() match the desired nickname before accepting
41734f
    them as matches, so that our tests won't all blow up on EL5
41734f
  - fix dynamic addition and removal of CAs implemented through helpers
41734f
41734f
* Mon Jun 28 2010 Nalin Dahyabhai <nalin@redhat.com> 0.24-4
41734f
- init script: ensure that the subsys lock is created whenever we're called to
41734f
  "start" when we're already running (even more of #596719)
41734f
41734f
* Tue Jun 15 2010 Nalin Dahyabhai <nalin@redhat.com> 0.24-3
41734f
- more gracefully handle manual daemon startups and cleaning up of unexpected
41734f
  crashes (still more of #596719)
41734f
41734f
* Thu Jun 10 2010 Nalin Dahyabhai <nalin@redhat.com> 0.24-2
41734f
- don't create the daemon pidfile until after we've connected to the D-Bus
41734f
  (still more of #596719)
41734f
41734f
* Tue Jun  8 2010 Nalin Dahyabhai <nalin@redhat.com> 0.24-1
41734f
- update to 0.24
41734f
  - keep the lock on the pid file, if we have one, when we fork, and cancel
41734f
    daemon startup if we can't gain ownership of the lock (the rest of #596719)
41734f
  - make the man pages note which external configuration files we consult when
41734f
    submitting requests to certmaster and ipa CAs
41734f
41734f
* Thu May 27 2010 Nalin Dahyabhai <nalin@redhat.com> 0.23-1
41734f
- update to 0.23
41734f
  - new translations
41734f
    - pl by Piotr DrÄ…g!
41734f
  - cancel daemon startup if we can't gain ownership of our well-known
41734f
    service name on the DBus (#596719)
41734f
41734f
* Fri May 14 2010 Nalin Dahyabhai <nalin@redhat.com> 0.22-1
41734f
- update to 0.22
41734f
  - new translations
41734f
    - de by Fabian Affolter!
41734f
  - certmaster-submit: don't fall over when we can't find a certmaster.conf
41734f
    or a minion.conf (i.e., certmaster isn't installed) (#588932)
41734f
  - when reading extension values from certificates, prune out duplicate
41734f
    principal names, email addresses, and hostnames
41734f
41734f
* Tue May  4 2010 Nalin Dahyabhai <nalin@redhat.com> 0.21-1
41734f
- update to 0.21
41734f
  - getcert/*-getcert: relay the desired CA to the local service, whether
41734f
    specified on the command line (in getcert) or as a built-in hard-wired
41734f
    default (in *-getcert) (#584983)
41734f
  - flesh out the default certmonger.conf so that people can get a feel for
41734f
    the expected formatting (Jenny Galipeau)
41734f
41734f
* Wed Apr 21 2010 Nalin Dahyabhai <nalin@redhat.com> 0.20-1
41734f
- update to 0.20
41734f
  - correctly parse certificate validity periods given in years (spotted by
41734f
    Stephen Gallagher)
41734f
  - setup for translation
41734f
    - es by Héctor Daniel Cabrera!
41734f
    - ru by Yulia Poyarkova!
41734f
    - uk by Yuri Chornoivan!
41734f
  - fix unpreprocessed defaults in certmonger.conf's man page
41734f
  - tweak the IPA-specific message that indicates a principal name also needs
41734f
    to be specified if we're not using the default subject name (#579542)
41734f
  - make the validity period of self-signed certificates into a configuration
41734f
    setting and not a piece of the state information we track about the signer
41734f
  - init script: exit with status 2 instead of 1 when invoked with an
41734f
    unrecognized argument (#584517)
41734f
41734f
* Tue Mar 23 2010 Nalin Dahyabhai <nalin@redhat.com> 0.19-1
41734f
- update to 0.19
41734f
  - correctly initialize NSS databases that need to be using a PIN
41734f
  - add certmonger.conf, for customizing notification timings and settings,
41734f
    and use of digests other than the previously-hard-coded SHA256, and
41734f
    drop those settings from individual requests
41734f
  - up the default self-sign validity interval from 30 days to 365 days
41734f
  - drop the first default notification interval from 30 days to 28 days
41734f
    (these two combined to create a fun always-reissuing loop earlier)
41734f
  - record the token which contains the key or certificate when we're
41734f
    storing them in an NSS database, and report it
41734f
  - improve handling of cases where we're supposed to use a PIN but we
41734f
    either don't have one or we have the wrong one
41734f
  - teach getcert to accept a PIN file's name or a PIN value when adding
41734f
    a new entry
41734f
  - update the IPA submission helper to use the new 'request_cert' signature
41734f
    that's landing soon
41734f
  - more tests
41734f
41734f
* Fri Feb 12 2010 Nalin Dahyabhai <nalin@redhat.com> 0.18-1
41734f
- update to 0.18
41734f
  - add support for using encrypted storage for keys, using PIN values
41734f
    supplied directly or read from files whose names are supplied
41734f
  - don't choke on NSS database locations that use the "sql:" or "dbm:"
41734f
    prefix
41734f
41734f
* Mon Jan 25 2010 Nalin Dahyabhai <nalin@redhat.com> 0.17-2
41734f
- make the D-Bus configuration file (noreplace) (#541072)
41734f
- make the %%check section and the deps we have just for it conditional on
41734f
  the same macro (#541072)
41734f
41734f
* Wed Jan  6 2010 Nalin Dahyabhai <nalin@redhat.com> 0.17-1
41734f
- update to 0.17
41734f
  - fix a hang in the daemon (Rob Crittenden)
41734f
  - documentation updates
41734f
  - fix parsing of submission results from IPA (Rob Crittenden)
41734f
41734f
* Fri Dec 11 2009 Nalin Dahyabhai <nalin@redhat.com> 0.16-1
41734f
- update to 0.16
41734f
  - set a umask at startup (Dan Walsh)
41734f
41734f
* Tue Dec  8 2009 Nalin Dahyabhai <nalin@redhat.com> 0.15-1
41734f
- update to 0.15
41734f
  - notice that a directory with a trailing '/' is the same location as the
41734f
    directory without it
41734f
  - fix handling of the pid file when we write one (by actually giving it
41734f
    contents)
41734f
41734f
* Wed Nov 25 2009 Nalin Dahyabhai <nalin@redhat.com> 0.14-1
41734f
- update to 0.14
41734f
  - check key and certificate location at add-time to make sure they're
41734f
    absolute paths to files or directories, as appropriate
41734f
  - IPA: dig into the 'result' item if the named result value we're looking
41734f
    for isn't in the result struct
41734f
41734f
* Tue Nov 24 2009 Nalin Dahyabhai <nalin@redhat.com> 0.13-1
41734f
- update to 0.13
41734f
  - change the default so that we default to trying to auto-refresh
41734f
    certificates unless told otherwise
41734f
  - preemptively enforce limitations on request nicknames so that they
41734f
    make valid D-Bus object path components
41734f
41734f
* Tue Nov 24 2009 Nalin Dahyabhai <nalin@redhat.com> 0.12-1
41734f
- update to 0.12
41734f
  - add a crucial bit of error reporting when CAs reject our requests
41734f
  - count the number of configured CAs correctly
41734f
41734f
* Mon Nov 23 2009 Nalin Dahyabhai <nalin@redhat.com> 0.11-1
41734f
- update to 0.11
41734f
  - add XML-RPC submission for certmaster and IPA
41734f
  - prune entries with duplicate names from the data store
41734f
41734f
* Fri Nov 13 2009 Nalin Dahyabhai <nalin@redhat.com> 0.10-1
41734f
- update to 0.10
41734f
  - add some compiler warnings and then fix them
41734f
41734f
* Fri Nov 13 2009 Nalin Dahyabhai <nalin@redhat.com> 0.9-1
41734f
- update to 0.9
41734f
  - run external submission helpers correctly
41734f
  - fix signing of signing requests generated for keys stored in files
41734f
  - only care about new interface and route notifications from netlink,
41734f
    and ignore notifications that don't come from pid 0
41734f
  - fix logic for determining expiration status
41734f
  - correct the version number in self-signed certificates
41734f
41734f
* Tue Nov 10 2009 Nalin Dahyabhai <nalin@redhat.com> 0.8-1
41734f
- update to 0.8
41734f
  - encode windows UPN values in requests correctly
41734f
  - watch for netlink routing changes and restart stalled submission requests
41734f
  - 'getcert resubmit' can force a regeneration of the CSR and submission
41734f
41734f
* Fri Nov  6 2009 Nalin Dahyabhai <nalin@redhat.com> 0.7-1
41734f
- update to 0.7
41734f
  - first cut at a getting-started document
41734f
  - refactor some internal key handling with NSS
41734f
  - check for duplicate request nicknames at add-time
41734f
41734f
* Tue Nov  3 2009 Nalin Dahyabhai <nalin@redhat.com> 0.6-1
41734f
- update to 0.6
41734f
  - man pages
41734f
  - 'getcert stop-tracking' actually makes the server forget now
41734f
  - 'getcert request -e' was redundant, dropped the -e option
41734f
  - 'getcert request -i' now sets the request nickname
41734f
  - 'getcert start-tracking -i' now sets the request nickname
41734f
41734f
* Mon Nov  2 2009 Nalin Dahyabhai <nalin@redhat.com> 0.5-1
41734f
- update to 0.5
41734f
  - packaging fixes
41734f
  - add a selfsign-getcert client
41734f
  - self-signed certs now get basic constraints and their own serial numbers
41734f
  - accept id-ms-kp-sc-logon as a named EKU value in a request
41734f
41734f
* Thu Oct 29 2009 Nalin Dahyabhai <nalin@redhat.com> 0.4-1
41734f
- update to 0.4
41734f
41734f
* Thu Oct 22 2009 Nalin Dahyabhai <nalin@redhat.com> 0.1-1
41734f
- update to 0.1
41734f
41734f
* Sun Oct 18 2009 Nalin Dahyabhai <nalin@redhat.com> 0.0-1
41734f
- initial package