| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Now it checks for subdomains as well as for the domain itself
|
|
|
|
| |
https://fedorahosted.org/sssd/ticket/1236
|
|
|
|
|
|
| |
sudosrv_cache_lookup_internal
https://fedorahosted.org/sssd/ticket/1232
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The function that handled pending requests on reconnect was checking an
orphaned global variable that was never used, redenring the whole function
uselsess.
This fixes a very nasty bug that was causing requests for which we never
received an answer for (for example because the backend failed and was
restarted) to be never removed and therefore causing a black hole effect for
any other request of the same type.
Fixes: https://fedorahosted.org/sssd/ticket/1229
|
| |
|
| |
|
|
|
|
| |
https://fedorahosted.org/sssd/ticket/1205
|
| |
|
|
|
|
| |
https://fedorahosted.org/sssd/ticket/1171
|
| |
|
|
|
|
| |
https://fedorahosted.org/sssd/ticket/1116
|
|
|
|
|
|
| |
New sudo responder option: cache_timeout
https://fedorahosted.org/sssd/ticket/1111
|
| |
|
|
|
|
| |
https://fedorahosted.org/sssd/ticket/1143
|
|
|
|
| |
https://fedorahosted.org/sssd/ticket/1143
|
|
|
|
| |
https://fedorahosted.org/sssd/ticket/1143
|
|
|
|
|
| |
I pushed an older version of this patch that had the incorrect
name. This is the interdiff.
|
|
|
|
|
|
| |
Also remove the old request implementation
https://fedorahosted.org/sssd/ticket/1115
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The conversion to the tevent_req style introduced numerous bugs
related to memory management of the various client requests. In
some circumstances, this could cause memory corruption and
segmentation faults in the NSS responder. This patch makes the
following changes:
1) Rename the internal lookup from subreq to sidereq, to indicate
that it is not a sub-request of the current lookup (and therefore
is not cancelled if the current request is).
2) Change the handling of the callback loops since they call
tevent_req_[done|error], which results in them being freed (and
therefore removed from the cb_list. This was the source of the
memory corruption that would occasionally result in dereferencing
an unreadable request.
3) Remove the unnecessary sss_dp_get_account_int_recv() function
and change sss_dp_get_account_done() so that it only frees the
sidereq. All of the waiting processes have already been signaled
with the final results from sss_dp_get_account_int_done()
|
|
|
|
|
|
|
| |
Some NSS maps such as 'services' require more values to be passed
to the data provider than just the name or ID. In these cases, we
will amend an optional component to filter value to pass to the
data provider backend.
|
| |
|
| |
|
|
|