summaryrefslogtreecommitdiff
path: root/source3/nsswitch
AgeCommit message (Collapse)AuthorFilesLines
2008-08-31Fix Coverity ID 589, dead codeVolker Lendecke1-0/+9
(This used to be commit 67c0835226e189deba5856710a1dea19ac5f30fd)
2008-08-29wbinfo: add change-user-password command.Günther Deschner1-1/+33
Guenther (This used to be commit e572ede9995a66ae452ab25018b8df16101a2c2a)
2008-08-29libwbclient: add wbcChangeUserPassword and wbcChangeUserPasswordEx.Günther Deschner3-1/+350
Guenther (This used to be commit 62e7b4aa32051bce34c890cb41270e5fe31111ca)
2008-08-25Fix bug 4516, no IPv6 on Solaris 2.6.David Leonard1-3/+22
(This used to be commit b5d0f751e4bf19c2ad306ebb3baeb5e9e83e49ee)
2008-08-20nss_winbind: When returning NSS_UNAVAIL, squash errno to ENOENTGerald (Jerry) Carter1-2/+18
According to the GNU libc nss guide, we should always set errno to ENOENT when returning NSS_UNAVAIL. http://www.gnu.org/software/libtool/manual/libc/NSS-Modules-Interface.html#NSS-Modules-Interface At least the MQ Series message queing service that runs on WebSphere will fail if you return any other errno in this case. (This used to be commit ee26664602445fa7798e2061f6bcbef0756d6528)
2008-08-19pam_winbind: some doxygen fixes.Günther Deschner1-24/+12
Guenther (This used to be commit f2a2ed315e393353110aa7760b4eca4f1f49ca21)
2008-08-19wbinfo: use wbinfo_prompt_pass() everywhere.Günther Deschner1-23/+16
Guenther (This used to be commit 687ef28874eb311b3e3919c3a38a22e5186d4c1b)
2008-08-19wbinfo: add wbinfo_prompt_pass.Günther Deschner1-0/+27
Guenther (This used to be commit 7cf6ed68236e7dd64657cb1087a5a687d6f59ad1)
2008-08-19pam_winbind: use pam error string function to display result.Günther Deschner1-1/+2
Guenther (This used to be commit 8504a92ac55d6936df051be66207a59a76bf32a3)
2008-08-19pam_winbind: add _pam_error_code_str().Günther Deschner1-0/+72
Guenther (This used to be commit 693f90fd2394309ce40d3ca5fc007543058b342a)
2008-08-19pam_winbind: use integer constants.Günther Deschner1-14/+14
Guenther (This used to be commit 8d19b2ceb131ca2a0fd983cdb4fd17acdad9c26e)
2008-07-30build: fix some no previous prototype warnings.Günther Deschner1-10/+10
Guenther (This used to be commit 51062534fd58d7a914a6bbac2e52bb44e71363b7)
2008-07-30libwbclient: let wbcStringToSid handle the global NULL sid.Günther Deschner1-1/+1
Guenther (This used to be commit 09fed085bea9dae5bb8aacd986deed3d458e3574)
2008-07-24Remove trailing withespace from wbinfo -m which breaks gdm auth.Andreas Schneider1-4/+5
Signed-off-by: Andreas Schneider <anschneider@suse.de> (This used to be commit 12848e8eb91bf60551ada78e3430ee25142e366b)
2008-07-22Fix various build warningsZach Loafman1-1/+1
This fixes various build warnings on our platform. I'm sure I haven't caught them all, but it's a start. (This used to be commit 6b73f259cb67d9dda9127907d706f9244a871fa3)
2008-07-17allow SID with 0 in subauthority to be converted properlyHerb Lewis1-1/+2
from string representation. (This used to be commit 23f338d1da96fd4ea3283bc96ca7d496b23bf854)
2008-07-07Allow authentication and memory credential refresh after password change ↵Jeremy Allison1-7/+14
from gdm/xdm. Patch from boyang <boyang@novell.com>. Jeremy. (This used to be commit 8cfc6afc7b4a6af9aea5f5a7cb5af7e3218c2d75)
2008-06-27Fix an "invalid operation involving NULL pointer" found by the IBM checkerVolker Lendecke1-1/+5
Jerry, please check! Volker (This used to be commit eb6096a2d488d64cfa86e01be2a97e14e5773fe3)
2008-06-27Remove a strlen check that will never kick inVolker Lendecke1-2/+1
strlen(str)<2 will be caught by the explicit tests for str[0] and str[1] in the lines above this. Jerry, please check! Volker (This used to be commit 44a9e5b713c25ff2cc7215635a516f25359b045b)
2008-06-17Fix a segfault in wbcLookupRidsVolker Lendecke1-16/+21
The done: part could access uninitialized memory if intermediate BAIL_ON_WBC_ERROR fire. Jerry, please check! Thanks, Volker (cherry picked from commit 31f4c33dcc744e81be54389756378e25aa2bb75e) (This used to be commit 5b12d8aa510689114e5413be5afe6aeb6ec2d9db)
2008-06-17Fix a segfault in wbcLookupSidVolker Lendecke1-19/+29
If the BAIL_ON_WBC_ERROR directly after wbcRequestResponse kicks in, *domain and *name have not been initialized yet. So the cleanup routine in the done: part of the routine (which did not check for domain!=NULL etc) would access uninitialized memory. Jerry, please check! Thanks, Volker (cherry picked from commit 3d7e0cc40b1992f4555807acec4f00450e30e2de) (This used to be commit ac5ba26bb0488c3fb95072d84898c02b72c5b819)
2008-06-17Replace a very unusual variable declaration by a more conventional oneVolker Lendecke1-1/+1
(This used to be commit 9c1f334af3111e93bb8dceb661e1bc5519aa94c6)
2008-06-17Fix a memleak in wbcAuthenticateUserEx()Volker Lendecke1-0/+2
(cherry picked from commit 72b381689af9cae83ab08532cffd0188f2da4807) (This used to be commit 20110ee5f181168dc1cbc08b7c22820d68204960)
2008-06-15Fix an uninitialized variable found by the IBM checkerVolker Lendecke1-5/+5
BAIL_ON_PTR_ERROR jumps to done: which will access extra_data before it's initialized. Stefan, please check! Volker (cherry picked from commit b59636f78d351ed6d52c4a9fdccdb7850388526c) (This used to be commit 5663587e5e4703f9e3ff6d78d1f3248053ccd4c0)
2008-06-15Fix group parsing in libwbclient's copy_group_entry()Volker Lendecke1-4/+6
This (also) fixes a flaw pointed out by the IBM checker. When verifying that I found out that the parsing was not working as I would have expected it to. Jerry, please check! (cherry picked from commit c2c7790155ab02e1e351caf2bed192ce72913663) (This used to be commit 26c05a52b73763dad5ad0525dab6e20014c3f8d6)
2008-06-11pam_winbind: Update cached creds during password change.Günther Deschner1-0/+4
Fix is from Bo Yang @ Novell. Thanks! (This used to be commit e4eb9d347d14de8c9ba73b07f26fe8fd4f17eab5)
2008-06-09Fix the compile on NetBSD -- missing prototypesVolker Lendecke1-0/+39
(cherry picked from commit 11236d266e3703eb3aca4b96e2ed9da76614ec12) (This used to be commit d25408f83d03fae9d6b589b005db9a3af823e652)
2008-06-06pam_winbind: fix pam_sm_chauthtok for storing modified cached creds.Günther Deschner1-1/+16
Thanks to Bo Yang for pointing this out. Guenther (This used to be commit 516a067016955938988ab37c777102a14b41e100)
2008-05-27wbinfo: prompt for password when none has been given.Günther Deschner1-1/+18
Guenther (This used to be commit 7c1f36d84a4c5779ea86923be69e209d0c9c0943)
2008-05-27libwbclient: fix typo.Günther Deschner1-1/+1
Guenther (This used to be commit 83c4a278dfefcef14a9640d319ddf5c7392cd16e)
2008-05-23libwbclient: add wbcLibraryDetails()Stefan Metzmacher2-0/+38
metze (cherry picked from commit b68916328e935e61840cb03560ebeeee15bb2c6f) (This used to be commit 196d9017627220786d8b726dc0d02e16e96c4c05)
2008-05-23libwbclient: rename MAXSUBAUTHS => WBC_MAXSUBAUTHSStefan Metzmacher3-5/+5
metze (cherry picked from commit 04d465c622c614bec29f24793ae897a73bcb51f4) (This used to be commit e7dcbf56aef836e1b4be70b21064f65338221b5a)
2008-05-15Fix build warning.Günther Deschner1-1/+0
Guenther (This used to be commit e90a4ce3c24ab2a33e34da5a9052a3b3ec4db962)
2008-05-13libwbclient: Add wbcLogoffUser() and wbcLookupDomainController().coffeedude4-3/+159
Add new APIs calls for WINBINDD_PAM_LOGOFF and WINBINDD_DSGETDCNAME ops. (This used to be commit cb5e8f60ac3313aec726c01687a040e6e0e42c10)
2008-05-07wins: fix null pointer crash in nss_wins module.Günther Deschner1-0/+3
Guenther (This used to be commit 5bf47ebf0fb9f7d94ed36bce6bcaa31b508009bd)
2008-04-23Mark a domain offline in the wbcDomainInfo structure using the domain_flags.Gerald W. Carter3-24/+50
Use the existing domain_flags fiueld in wbcDomainInfo to set a bit if the domain is marked as offline by Winbind. (This used to be commit 59cfba2c3d6d4594f08cbe3b7295ab36a7cfb044)
2008-04-23Rename WBC_DOMAIN_XXX domain flags to WBC_DOMINFO_DOMAIN_XXXGerald W. Carter3-10/+10
Better consistency with the othre classes of WBC_DOMINDO_XXX_YYYY flags. (This used to be commit 1cb2305fc96be0c190621f7c86c0476e4ea1fff7)
2008-04-20libwbclient: change wbcResolveWinsByIP() to take char ** instead of const ↵Michael Adam3-4/+4
char ** Fix a compile warning. This seems the right thing since the data is created by talloc_strdup... Michael (This used to be commit f81da8e8ed8e2d75c77bd8b5e7fdd7c53bab7e49)
2008-04-20libwbclient: fix wbcResolveWinsByName() to take char * instead of const char **Michael Adam3-4/+4
This fixes a compile warning and seems the correct thing to me as the returned data is talloc_strdup't, so not const anyways. Michael (This used to be commit 13cfa7f48a541a934a129fab0544cbf66029c4c7)
2008-04-17Remove unused variable from wbcCheckTrustCredentials().Gerald W. Carter1-1/+0
(This used to be commit fea52dc46048ff869299267f7596b93a8c5c8b3d)
2008-04-17Convert "wbinfo -m" to use wbcListTrusts() API call.Gerald W. Carter1-84/+50
(This used to be commit 2fbe8437efe232b6f53af6fafed5995fe7e26820)
2008-04-17Add wbcListTrusts() API call to libwbclient.soGerald W. Carter2-6/+238
(This used to be commit 5c454e77cf664fee65fcb03e5811764c92e73696)
2008-04-17Follow error code name convention in libwbclient.Gerald W. Carter4-14/+14
s/WBC_INVALID_RESPONSE/WBC_ERR_INVALID_RESPONSE/ (This used to be commit d91ce012b0afb30cd22b373412d17de27c55ca86)
2008-04-17wbinfo: use wbcCheckTrustCredentials()Stefan Metzmacher1-10/+12
metze (This used to be commit 2cbe5a006a6df79c38f4aaa68d498cd6d5a34dba)
2008-04-17libwbclient: add wbcCheckTrustCredentials()Stefan Metzmacher2-0/+58
This only accepts NULL as domain for now, because winbindd doesn't support checking trust passwords as a domain controller. metze (This used to be commit c084ccd70f42ce29ce24565969a9f440dde254e1)
2008-04-17wbinfo: use wbcResolveWinsByName() and wbcResolveWinsByIP()Stefan Metzmacher1-26/+16
metze (This used to be commit a4f628d6c9e2a5761c048e268a29e1f5daae4180)
2008-04-17libwbclient: add wbcResolveWinsByName() and wbcResolveWinsByIP()Stefan Metzmacher2-0/+87
metze (This used to be commit 57ba71140fbf6b4a5a917fa3248fa76536be883b)
2008-04-11nsswitch: remove unused nsswitch/wb_client.cStefan Metzmacher1-96/+0
metze (This used to be commit 2b236c7ace15b4408c31ed918b449d5a22e1769f)
2008-04-11libwbclient: add wbcSet[U|G]idMapping() and wbcSet[U|G]idHwm() functionsStefan Metzmacher2-0/+157
metze (This used to be commit 364e146805bb74b46da4d3c187e9a684d4b99a01)
2008-04-10fix some extrasemi compile warningsBjörn Jacke1-1/+1
(This used to be commit cbdb79b7a1044945e515a294f487e4c1a9c91be5)