summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* PYHBAC: Return NULL on failureJakub Hrozek2012-05-021-0/+1
| | | | The error handler would simply fall through instead of returning NULL.
* RESPONDER: check return value from confdb_get_intJakub Hrozek2012-05-021-0/+7
| | | | sss_process_init forgot to check return value of confdb_get_int
* LDAP: check return value of sysdb_attrs_get_elJakub Hrozek2012-05-021-0/+7
|
* SERVER: use the correct return code of sss_atomic_write_sJakub Hrozek2012-05-021-1/+1
|
* SSH: return NULL on error in ssh_host_pubkeys_format_known_host_plainJakub Hrozek2012-05-021-1/+2
| | | | | The 'result' pointer must be initialized tin order to always return a defined value.
* SYSDB: check return valueJakub Hrozek2012-05-021-2/+2
| | | | | In addition to testing the number of elements, also check the return value of sysdb_attrs_get_el.
* SYSDB: return EOK if empty message is passed into get_rm_msgJakub Hrozek2012-05-021-0/+1
| | | | | If the code never entered the loop in get_rm_message, we would return arbitrary return value.
* SUDO: Return ret, not EOKJakub Hrozek2012-05-021-1/+1
| | | | | | | This patch fixes bad refactoring - the function used to return value directly on error and EOK as the last statement. If was then converted into using goto label, but the last statement was still returning EOK instead of the value it should.
* Allow different SID representations in libidmapSumit Bose2012-05-016-15/+929
| | | | | | Besides as strings it is now possible to use binary SIDs or a struct containing all SID information. Functions to convert between these formats are added as well.
* execv, excvp and exec_child never return EOKStef Walter2012-05-014-18/+11
| | | | * So don't need to handle that case
* NSS: Only return data from initgroups onceJakub Hrozek2012-04-241-3/+10
| | | | | | | | | Do not let nss_cmd_initgroups_search() return data itself, but let the caller return data. This is more intuitive and more consistent with the rest of the nss_cmd_*_search() functions. Also fixes a typo - nss_cmd_initgroups_cb used to call getpw_send_reply instead of initgr_send_reply.
* Lowercase group members in case-insensitive domainsJakub Hrozek2012-04-241-1/+7
| | | | https://fedorahosted.org/sssd/ticket/1312
* murmurhash: Relax inline requirementStephen Gallagher2012-04-241-2/+2
|
* Two fixes in responder subdomain codeJan Zeleny2012-04-242-1/+7
|
* fix copy and paste error in commentPavel Březina2012-04-241-1/+1
|
* SSH: Add support for hashed known_hostsJan Cholasta2012-04-2410-40/+212
| | | | https://fedorahosted.org/sssd/ticket/1203
* UTIL: Add HMAC-SHA-1 functionJan Cholasta2012-04-245-0/+165
|
* Utilize sysdb context within be_req in HBACJan Zeleny2012-04-241-2/+2
|
* Detect subdomain request in IPA access providerJan Zeleny2012-04-241-0/+10
|
* Accept be_req instead if be_ctx in LDAP access providerJan Zeleny2012-04-243-15/+16
|
* Carry sysdb context and domain info in be_req structureJan Zeleny2012-04-242-0/+5
|
* Basic support for subdomains in auth providerJan Zeleny2012-04-243-3/+13
|
* Send PAM requests for subdomains to the right providerJan Zeleny2012-04-241-3/+41
|
* Add ID operations in subdomainsJan Zeleny2012-04-244-0/+277
|
* Add s2n extended operationSumit Bose2012-04-243-0/+668
|
* Moved expand_homedir_template() from NSS responder to utility codeJan Zeleny2012-04-244-108/+170
|
* New config option for subdomainsJan Zeleny2012-04-244-0/+29
| | | | | subdomain_homedir - if set, it contains default value, can be overriden in further processing
* Add domain name to get_account_info requestSumit Bose2012-04-243-0/+11
|
* IPA: Add get-domains targetSumit Bose2012-04-249-0/+447
|
* data provider: added subdomainsSumit Bose2012-04-247-4/+197
|
* Check sub-domains in nss_cmd_get{pwuid|grgid}_search()Sumit Bose2012-04-241-4/+26
|
* Ask for subdomains in responder in the first request after startupJan Zeleny2012-04-241-0/+30
|
* Retrieve subdomains if there is a request for fully qualified userJan Zeleny2012-04-243-31/+192
|
* Modified responder_get_domain()Jan Zeleny2012-04-2413-22/+51
| | | | Now it checks for subdomains as well as for the domain itself
* Responder part of the subdomain retrieval workJan Zeleny2012-04-248-1/+394
|
* Add conn_name to allow different names for domains and connectionsJan Zeleny2012-04-245-4/+6
|
* Add some utility functions for subdomainsJan Zeleny2012-04-244-1/+122
|
* Sysdb routines for subdomainsJan Zeleny2012-04-246-81/+853
|
* Fix typo: retreiving->retrievingYuri Chornoivan2012-04-201-1/+1
|
* Get the RootDSE after binding if not successfull beforeJakub Hrozek2012-04-201-26/+104
| | | | https://fedorahosted.org/sssd/ticket/1258
* Fix linker issue with pam_sssStephen Gallagher2012-04-201-0/+1
|
* Two manual pages fixesMarco Pizzoli2012-04-202-1/+3
|
* Install and uninstall all documentationPavel Březina2012-04-202-6/+22
| | | | | Every directory listed in SSSD_DOCS in Makefile.am will be installed as documentation.
* Test RFC2307bis and RFC2307 option mapsJakub Hrozek2012-04-201-0/+28
| | | | | | | https://fedorahosted.org/sssd/ticket/1281 Only user, group and autofs maps are different. Services and netgroups are using the same map.
* Warn on 'make update-po' if there are manpages not listed in po4a.cfgJakub Hrozek2012-04-201-0/+7
| | | | https://fedorahosted.org/sssd/ticket/1219
* Document sss_tools betterJakub Hrozek2012-04-209-0/+35
| | | | https://fedorahosted.org/sssd/ticket/917
* Convert read and write operations to sss_atomic_readJakub Hrozek2012-04-2016-314/+242
| | | | https://fedorahosted.org/sssd/ticket/1209
* Move atomic io function to a separate moduleJakub Hrozek2012-04-206-52/+113
| | | | | | We'll be using it on various places of the SSSD. The function is in its own file to allow using just the one piece without having to drag in the whole util.c module.
* sss_atomic_io: Do not fail reads with EPIPE if there is not enough data to readJakub Hrozek2012-04-202-1/+208
| | | | Also adds a unit test for sss_atomic_io()
* sdap_check_aliases must not error when detects the same userJakub Hrozek2012-04-201-13/+31
| | | | https://fedorahosted.org/sssd/ticket/1307