summaryrefslogtreecommitdiff
path: root/source3/nsswitch
AgeCommit message (Collapse)AuthorFilesLines
2008-12-16nsswitch: Move source3 files to top level dir.Kai Blin33-18578/+0
Don't move source4 files yet to not confuse git's rename tracking too much.
2008-12-15s3:fix build of pam_winbind.so on older Linux systems.Michael Adam1-2/+2
Older pam implementations on Linux define PAM_AUTHTOK_RECOVER_ERR instead of PAM_AUTHTOK_RECOVERY_ERR. We have always defined and are using PAM_AUTHTOK_RECOVER_ERR in all other places. Michael
2008-12-11s3: Use strtoul since id types are unsignedDan Sledz1-2/+2
2008-12-10Move the doxygen comments of wbclient to the header file.Andreas Schneider8-455/+524
So that a developer who wants to use the wbclient api can read the documentation in the header file. Signed-off-by: Andreas Schneider <anschneider@suse.de> Signed-off-by: Michael Adam <obnox@samba.org>
2008-12-03libwbclient: avoid usage talloc_init() in library codeStefan Metzmacher1-8/+4
talloc_init() is a compat function for the old samba3 non-hierachical talloc implementation. It enables the talloc null tracking which should never be done by library code. metze
2008-11-25libwbclient: Implement wbcGetgrent and wbcGetgrlistKai Blin1-2/+121
2008-11-25libwbclient: Implement wbcGetpwentKai Blin1-2/+77
2008-11-25libwbclient: Add placeholder function for WINBINDD_CCACHE_NTLMAUTHKai Blin2-0/+43
2008-11-25libwbclient: Fix typo in wbcGetgrent docstring.Kai Blin1-1/+1
2008-11-25libwbclient: Add placeholder function for WINBINDD_GETGRLSTKai Blin2-0/+16
2008-11-25libwbclient: Add placeholder functions for wbcQuery[GSU]idTo[GSU]idKai Blin2-4/+76
2008-11-23Fix an uninitialized variable warningVolker Lendecke1-1/+1
Andreas Schneider, please check!
2008-11-19Fix bug #5904 - libnss_wins causes SIGABRT while servicing getaddrinfo() ↵Jeremy Allison1-15/+48
request. Jeremy.
2008-11-18Clean-up various trailing space and >80 column lines.Steven Danneman5-9/+9
2008-11-18Added ability to remove id mappings in wbinfo and libwbclient.Steven Danneman4-2/+173
The idmap_tdb backend already provides an interface to remove existing id mappings. This commit plumbs that ability up through, winbindd, libwbclient, and wbinfo. Added new winbindd command: WINBINDD_REMOVE_MAPPING Added new libwbclient interfaces: wbcRemoveUidMapping() and wbcRemoveGidMapping() Added new wbinfo options: --remove-uid-mapping --remove-gid-mapping Increased libwbclient version to 0.2 Increased winbind interface version to 20
2008-11-18Added ability to set id mappings in wbinfo.Steven Danneman1-0/+99
The two new parameters are: --set-uid-mapping --set-gid-mapping These allow wbinfo to create new, or override existing id mappings in the idmap backend. These expose the exisiting ability of libwbclient and winbindd to do this, up through a command line utility.
2008-11-17 Fix broken msgids in ntstatus_errorsBo Yang1-6/+6
Signed-off-by: Günther Deschner <gd@samba.org>
2008-11-13pam_winbind: do not add empty blob.Günther Deschner1-8/+10
Guenther
2008-11-13pam_winbind: translate some more string.Günther Deschner1-7/+7
boyang, please check. Guenther
2008-11-13i18n/l10n pam_winbindBo Yang2-50/+82
Signed-off-by: Günther Deschner <gd@samba.org>
2008-11-12pam_winbind: fix what data we put into the blobs.Günther Deschner1-16/+20
Guenther
2008-11-10ntlm_auth: Put huge NTLMv2 blobs into extra_data on CRAP auth.Kai Blin1-1/+3
This fixes bug #5865
2008-10-29wbinfo --sid-to-fullnameVolker Lendecke1-1/+41
Signed-off-by: Stefan Metzmacher <metze@samba.org>
2008-10-29wbcGetDisplayNameVolker Lendecke2-0/+49
Signed-off-by: Stefan Metzmacher <metze@samba.org>
2008-10-21Fix two trivial typosVolker Lendecke1-2/+2
2008-10-21Create a function out of pam_sm_close_session to delete the credentials.Andreas Schneider1-120/+135
This is the way the creds should be deleted. Now we have back a close_session function which can be used for other things.
2008-10-21Delete the krb5 ccname variable from the PAM environment if set.Andreas Schneider1-0/+8
If winbind sets the KRB5CCNAME variable it should unset it when the cache gets destroyed.
2008-10-21Set the right return value if wbc_status is set to an error.Andreas Schneider1-0/+5
2008-10-14Remove define for VOLATILE, volatile is already provided by libreplace.Jelmer Vernooij2-2/+0
2008-10-10pam_winbind: re-add mkhomedir option.Günther Deschner2-3/+133
Guenther
2008-10-10pam_winbind: remove unused pam_winbind_request().Günther Deschner1-47/+0
Guenther
2008-10-10pam_winbind: fix wbc_auth_error_to_pam_error().Günther Deschner1-18/+14
Guenther
2008-10-10pam_winbind: remove some unused macros.Günther Deschner1-47/+0
Guenther
2008-10-10pam_winbind: remove NETLOGON_CACHED_ACCOUNT and NETLOGON_GRACE_LOGON.Günther Deschner1-7/+2
Guenther
2008-10-10pam_winbind: remove ACB_PWNOEXP.Günther Deschner2-4/+2
Guenther
2008-10-10pam_winbind: use libwbclient for WINBINDD_PAM_AUTH.Günther Deschner1-116/+251
Guenther
2008-10-10pam_winbind: use libwbclient for WINBINDD_PAM_LOGOFF.Günther Deschner1-19/+56
Guenther
2008-10-10pam_winbind: use libwbclient for WINBINDD_PAM_CHAUTHTOK.Günther Deschner2-81/+71
Guenther
2008-10-10pam_winbind: use libwbclient for WINBINDD_LOOKUPNAME/LOOKUPSID.Günther Deschner1-51/+23
Guenther
2008-10-10pam_winbind: use libwbclient for WINBINDD_INFO.Günther Deschner1-9/+12
Guenther
2008-10-10pam_winbind: use libwbclient for WINBINDD_GETPWNAM.Günther Deschner1-15/+11
Guenther
2008-10-10pam_winbind: add _pam_check_remark_auth_err().Günther Deschner1-0/+41
Guenther
2008-10-10pam_winbind: add wbc_auth_error_to_pam_error().Günther Deschner1-8/+45
Guenther
2008-10-10pam_winbind: add wbc_error_to_pam_error().Günther Deschner1-0/+36
Guenther
2008-10-10pam_winbind: prepare to use libwbclient inside pam_winbind.Günther Deschner1-0/+1
Guenther
2008-10-10pam_winbind: convert to use talloc.Günther Deschner2-57/+56
Guenther
2008-10-10libwbclient: add wbcLogonUser().Günther Deschner2-0/+228
Guenther
2008-10-10libwbclient: add wbcLogoffUserEx().Günther Deschner2-0/+108
Guenther
2008-10-10libwbclient: add wbcAddNamedBlob.Günther Deschner2-1/+54
Guenther
2008-10-10libwbclient: add wbcBlob and wbcNamedBlob.Günther Deschner1-0/+19
Guenther