Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-08-16 | s3:winbindd: remove rpc_pipe_client references from winbind_dual_ndr code | Stefan Metzmacher | 1 | -3/+3 | |
metze | |||||
2010-08-14 | s3:winbind: remove the method REMOVE_MAPPING from winbind's API | Michael Adam | 1 | -7/+0 | |
Michael | |||||
2010-08-14 | s3:winbind: remove the method SET_MAPPING from winbind's API | Michael Adam | 1 | -7/+0 | |
Michael | |||||
2010-08-14 | s3:winbind: remove SET_HWM from winbind's API. | Michael Adam | 1 | -7/+0 | |
2010-08-05 | s3: avoid global include of ads.h. | Günther Deschner | 1 | -1/+2 | |
Guenther | |||||
2010-07-07 | s3-winbindd: route samr chgpwd ops for own domain over internal samr pipe as ↵ | Günther Deschner | 1 | -0/+7 | |
well. Guenther | |||||
2010-06-10 | s3:winbindd use common server context functions | Simo Sorce | 1 | -3/+0 | |
2010-05-31 | s3:winbind tidy up connecting the winbind sockets. | Andrew Bartlett | 1 | -4/+2 | |
By putting this code inline in winbindd_setup_listeners() we remove 2 static variables and simplify the code. By putting the get_winbind_priv_pipe_dir() in the same file, we allow it to be reimplemented in s3compat. Andrew Bartlett Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2010-05-31 | Revert "s3:winbindd Split helper functions to allow s3compat to call them" | Andrew Bartlett | 1 | -1/+0 | |
I'm experimenting with a different entry point This reverts commit f5c0f90da5f5372ca6b7a72daa8d073a2444a068. | |||||
2010-05-28 | s3:winbind Kill amusing but un-used winbindd_kill_all_clients | Andrew Bartlett | 1 | -1/+0 | |
Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2010-05-21 | s3:dom_sid Global replace of DOM_SID with struct dom_sid | Andrew Bartlett | 1 | -24/+24 | |
This matches the structure that new code is being written to, and removes one more of the old-style named structures, and the need to know that is is just an alias for struct dom_sid. Andrew Bartlett Signed-off-by: Günther Deschner <gd@samba.org> | |||||
2010-05-13 | s3:winbindd Provide a winbindd_register_handlers() helper function for s3compat | Andrew Bartlett | 1 | -0/+1 | |
This function provides a useful entry point for s3compat to set things up in winbindd. Andrew Bartlett | |||||
2010-05-13 | s3:winbindd Split helper functions to allow s3compat to call them | Andrew Bartlett | 1 | -0/+1 | |
This provides a more useful entry point for s3compat. Andrew Bartlett | |||||
2010-05-13 | s3:Winbindd Move winbindd_event_context to a different file | Andrew Bartlett | 1 | -2/+3 | |
This allows this function to be easily replaced in s3compat Andrew Bartlett | |||||
2010-04-25 | s3: async_domain_request is no longer used | Volker Lendecke | 1 | -6/+0 | |
2010-04-24 | s3: sendto_domain() is lo longer used | Volker Lendecke | 1 | -2/+0 | |
2010-04-23 | s3: Convert WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP to the new async API | Volker Lendecke | 1 | -1/+9 | |
2010-04-19 | s3: Move the in-memory ccache to the parent | Volker Lendecke | 1 | -0/+1 | |
None of this blocks, so there is no reason to keep this in a winbind child process | |||||
2010-04-19 | s3: Convert WINBINDD_PAM_LOGOFF to the new async API | Volker Lendecke | 1 | -1/+7 | |
2010-04-19 | s3: Convert WINBINDD_PAM_CHAUTHTOK to the new async API | Volker Lendecke | 1 | -1/+8 | |
2010-04-19 | s3: Convert WINBINDD_PAM_AUTH_CRAP to the new async API | Volker Lendecke | 1 | -1/+8 | |
2010-04-19 | s3: Convert WINBINDD_PAM_AUTH to the new async API | Volker Lendecke | 1 | -1/+7 | |
2010-04-08 | s3: Remove the separate "child" argument from setup_domain_child() | Volker Lendecke | 1 | -2/+1 | |
2010-03-31 | s3: Make check_info3_in_group static | Volker Lendecke | 1 | -2/+0 | |
2010-03-31 | s3-winbind: Make append_auth_data() static | Volker Lendecke | 1 | -4/+0 | |
2010-03-10 | s3: Fix a long-standing problem with recycled PIDs | Volker Lendecke | 1 | -8/+0 | |
When a samba server process dies hard, it has no chance to clean up its entries in locking.tdb, brlock.tdb, connections.tdb and sessionid.tdb. For locking.tdb and brlock.tdb Samba is robust by checking every time we read an entry from the database if the corresponding process still exists. If it does not exist anymore, the entry is deleted. This is not 100% failsafe though: On systems with a limited PID space there is a non-zero chance that between the smbd's death and the fresh access, the PID is recycled by another long-running process. This renders all files that had been locked by the killed smbd potentially unusable until the new process also dies. This patch is supposed to fix the problem the following way: Every process ID in every database is augmented by a random 64-bit number that is stored in a serverid.tdb. Whenever we need to check if a process still exists we know its PID and the 64-bit number. We look up the PID in serverid.tdb and compare the 64-bit number. If it's the same, the process still is a valid smbd holding the lock. If it is different, a new smbd has taken over. I believe this is safe against an smbd that has died hard and the PID has been taken over by a non-samba process. This process would not have registered itself with a fresh 64-bit number in serverid.tdb, so the old one still exists in serverid.tdb. We protect against this case by the parent smbd taking care of deregistering PIDs from serverid.tdb and the fact that serverid.tdb is CLEAR_IF_FIRST. CLEAR_IF_FIRST does not work in a cluster, so the automatic cleanup does not work when all smbds are restarted. For this, "net serverid wipe" has to be run before smbd starts up. As a convenience, "net serverid wipedbs" also cleans up sessionid.tdb and connections.tdb. While there, this also cleans up overloading connections.tdb with all the process entries just for messaging_send_all(). Volker | |||||
2010-02-28 | s3: Remove unused count_all_current_connections() | Volker Lendecke | 1 | -1/+0 | |
2010-02-09 | s3: Don't invalidate cache for uninitialized domains. | Bo Yang | 1 | -0/+1 | |
Signed-off-by: Bo Yang <boyang@samba.org> | |||||
2010-01-24 | s3: Add wbinfo --ccache-save | Volker Lendecke | 1 | -0/+3 | |
With this command you can give winbind your password for later use by the automatic ntlm_auth | |||||
2010-01-02 | s3: Make free_domain_list() static | Volker Lendecke | 1 | -1/+0 | |
2010-01-02 | s3: Introduce domain_is_forest_root() helper function | Volker Lendecke | 1 | -0/+1 | |
Hopefully this makes the flag tests a bit more understandable | |||||
2009-12-26 | s3: Replace IS_DOMAIN_OFFLINE by a function | Volker Lendecke | 1 | -0/+1 | |
2009-12-26 | s3: winbindd_cli_state->getgrent_state is no longer used | Volker Lendecke | 1 | -1/+0 | |
2009-12-23 | s3: Remove some unused code | Volker Lendecke | 1 | -17/+0 | |
2009-12-23 | s3: Remove unused sendto_child() | Volker Lendecke | 1 | -2/+0 | |
2009-12-21 | s3:winbind: Add a lower-cost alternative to wbinfo -t: wbinfo --ping-dc | Volker Lendecke | 1 | -0/+7 | |
This just does a NULL RPC call through an existing NETLOGON connection. If someone knows an operation that "just works" and does not return NOT_SUPPORTED, please tell me :-) | |||||
2009-12-21 | s3: Shrink winbindd_proto.h a bit | Volker Lendecke | 1 | -71/+0 | |
2009-12-21 | s3: Remove unused get_sam_group_entries | Volker Lendecke | 1 | -1/+0 | |
2009-12-21 | s3: Remove unused winbindd_dual_getsidaliases | Volker Lendecke | 1 | -2/+0 | |
2009-12-21 | s3: Remove unused winbindd_dual_getuserdomgroups | Volker Lendecke | 1 | -2/+0 | |
2009-12-21 | s3: Remove unused winbindd_dual_getdcname | Volker Lendecke | 1 | -2/+0 | |
2009-12-21 | s3: Remove unused winbindd_dual_lookupname | Volker Lendecke | 1 | -2/+0 | |
2009-12-21 | s3: Remove unused winbindd_dual_lookupsid | Volker Lendecke | 1 | -2/+0 | |
2009-12-21 | s3: Remove some unused dual functions | Volker Lendecke | 1 | -8/+0 | |
2009-12-21 | s3: Remove unused do_async | Volker Lendecke | 1 | -6/+0 | |
2009-12-21 | s3: Remove unused winbindd_gid2sid_async | Volker Lendecke | 1 | -3/+0 | |
2009-12-21 | s3: Remove unused winbindd_uid2sid_async | Volker Lendecke | 1 | -3/+0 | |
2009-12-21 | s3: Remove unused winbindd_sid2gid_async | Volker Lendecke | 1 | -3/+0 | |
2009-12-21 | s3: Remove unused winbindd_sid2uid_async | Volker Lendecke | 1 | -3/+0 | |
2009-12-21 | s3: Remove unused query_user_async | Volker Lendecke | 1 | -10/+0 | |