summaryrefslogtreecommitdiffstats
path: root/server/responder/pam/pamsrv_cmd.c
Commit message (Collapse)AuthorAgeFilesLines
* added kerberos backend with tevent_req event handlingSumit Bose2009-07-021-1/+19
|
* fix detection of authentication against LOCAL domainSumit Bose2009-06-081-3/+9
|
* special-case NSS calls in PAM codeJakub Hrozek2009-05-281-2/+2
|
* fix a wrong timeoutSumit Bose2009-05-261-3/+4
| | | | | The timeout of the data provider call (in ms) got overwritten by a cache timeout (in s).
* Move actual password caching into sysdbSimo Sorce2009-05-181-13/+0
| | | | Convert auth modules to do the caching themselves
* added new pam client protocolSumit Bose2009-05-151-1/+132
|
* added more flexible handling of client protocolSumit Bose2009-05-151-1/+12
| | | | | - allow different protocol versions for PAM and NSS - support more than one protocol version in the responder
* added check for NULL valuesSumit Bose2009-05-141-0/+1
| | | | | - allow unspecified value in struct pam_data to be NULL - check if domain structure is initialized in pam_reply
* handle other pam calls when offlineSumit Bose2009-04-281-0/+10
|
* change PAM timeout the match NSS timeSumit Bose2009-04-281-1/+1
|
* fix for pam proxy chauthtokSumit Bose2009-04-271-0/+1
| | | | | | | | | | When a user from a domain served by the proxy backend changes his password with passwd the passwd command asks for the old password, but it is not validated by the pam_chauthtok call in the proxy backend, because it is running as root. If the request is coming the unpriviledged socket we now call pam_authenticate explicitly before pam_chauthtok.
* removed length of unused element from packet size calculationSumit Bose2009-04-231-1/+1
| | | | | | The domain name is no longer send as an element on its own, but if set as a member of the response array. If the user was not found pd->domain is NULL and strlen will seg-fault.
* fix for a seq fault when pam_reply_delay is called.Sumit Bose2009-04-221-2/+2
| | | | see https://fedorahosted.org/sssd/ticket/25
* Force user check and discover user's domainSimo Sorce2009-04-171-19/+316
| | | | | | | | | | | Force a user lookup against the users domain provider. If a user domain is not specified search though all non fully qualifying domains. Perform authentication against the corrent domain auth backend, based on the user's domain found in the lookup if one was not specified. Also move the NSS-DP functions in COMMON-DP as they are reused by the PAM responder too now.
* Implement credentials caching in pam responder.Simo Sorce2009-04-131-28/+95
| | | | | | | Implement credentials caching in pam responder. Currently works only for the proxy backend. Also cleanup pam responder code and mode common code in data provider. (the data provider should never include responder private headers)
* Change the way we retrieve domainsSimo Sorce2009-04-081-16/+13
| | | | | | | | | | | | | To be able to correctly filter out duplicate names when multiple non-fully qualified domains are in use we need to be able to specify the domains order. This is now accomplished by the configuration paramets 'domains' in the config/domains entry. 'domains' is a comma separated list of domain names. This paramter allows also to have disbaled domains in the configuration without requiring to completely delete them. The domains list is now kept in a linked list of sss_domain_info objects. The first domain is also the "default" domain.
* Clean up warnings in SSSDStephen Gallagher2009-04-071-2/+2
|
* Unify name parsing and reposnder headersSimo Sorce2009-04-071-31/+34
| | | | | | Use common sss_parse_name function in all responders Simplify responder headers by combining common,cmd,dp in one header and add name parse structure as part of the common responder context.
* Use info in the domain entry to determine action.Simo Sorce2009-04-071-1/+12
| | | | | This way LOCAL domains backed by files works as expected too. Tested with nss_files + pam_unix
* Make nsssrv use the common responder functionsSimo Sorce2009-03-271-8/+1
| | | | | Make nss_ctx a private pointer of the common resp_ctx Use sss_process_init and remove all duplicate functions from nsssrv.c
* Refactor nss_ctx to resp_ctx in respondersStephen Gallagher2009-03-261-8/+8
|
* remove an unnecessary call to confdbSumit Bose2009-03-111-8/+4
|
* added generic PAM return messages and a false login delaySumit Bose2009-03-101-7/+86
|
* Simplify some aspects of pam_LOCAL_domainSimo Sorce2009-03-041-1/+3
| | | | | | | | | | Use only one context (the local request) for all functions. Use new helper function in sysdb to set numbers as sysdb_attrs values. Do not use pam_status to report internal errors, use an error variable and check it only when we finally reply. Use sysdb_error_to_errno() to convert and ldb error to errno. Do not free every single buffer allocated, they are all appended to the local request and will be automatically freed once the request is finished.
* replaced pure ldb calls with sysdb callsSumit Bose2009-03-031-1/+1
|
* first version of LOCAL pam backendSumit Bose2009-03-021-2/+21
|
* Add PAM responderSumit Bose2009-02-241-0/+196
Also move responders under server/responder with shared code in server/responder/common Signed-off-by: Simo Sorce <ssorce@redhat.com>