sssd:sssd-1-5

Last commit made on 2013-08-28
Get this branch:
git clone -b sssd-1-5 https://git.launchpad.net/sssd

Branch merges

Branch information

Name:
sssd-1-5
Repository:
lp:sssd

Recent commits

b525aa5... by =?utf-8?q?Pavel_B=C5=99ezina?= <email address hidden>

SIGCHLD handler: do not call callback when pvt data where freed

https://fedorahosted.org/sssd/ticket/1992

e526ea5... by Jakub Hrozek <email address hidden>

IPA: Do not download or store the member attribute of host groups

https://fedorahosted.org/sssd/ticket/1806

The IPA provider attempted to store the original value of member attribute
to the cache. That caused the memberof plugin to process the values which
was really CPU intensive.

af380de... by Ondrej Kos <email address hidden>

Quit monitor when there's no more processes to stop

1554077... by Ondrej Kos <email address hidden>

exit original process after sssd is initialized

https://fedorahosted.org/sssd/ticket/1357

Neither systemd or our init script use pid file as a notification
that sssd is finished initializing. They will continue starting up
next service right after the original (not daemonized) sssd process
is terminated.

If any of the responders fail to start, we will never terminate
the original process via signal and "service sssd start" will hang.
Thus we take this as an error and terminate the daemon with
a non-zero value. This will also terminate the original process
and init script or systemd will print failure.

8adef6f... by Ondrej Kos <email address hidden>

make monitor_quit() usable outside signal handler

a8a1001... by Jakub Hrozek <email address hidden>

Don't use srcdir with tests

Fixes build with automake 1.13 or newer.

ab11c0a... by Jakub Hrozek <email address hidden>

monitor: Add forgotten break

2cdff52... by Jakub Hrozek <email address hidden>

Set cloexec flag for log files

https://fedorahosted.org/sssd/ticket/1708

The services kept the fd to /var/log/sssd/sssd.log open. I don't think
there's any point in keeping the logfiles open after exec-ing for the
child, so I set the CLOEXEC flag.

127b773... by Jakub Hrozek <email address hidden>

Allocate PAM DP request data on responder context

https://fedorahosted.org/sssd/ticket/1869

Currently the private data passed to the PAM request is a structure
allocated on the client context. But in the odd case where the back end
would be stopped or stuck until the idle timeout hits, the DP callback
would access data that were freed when the client timed out.

This patch introduces a new structure allocated on responder context,
whose only purpose is to live as long as the request is active.

c45495c... by Jakub Hrozek <email address hidden>

LDAP: Only use paging control on requests for multiple entries

The paging control can cause issues on servers that put limits on how
many paging controls can be active at one time (on some servers, it is
limited to one per connection). We need to reduce our usage so that we
only activate the paging control when making a request that may return an
arbitrary number of results.