summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* repack the ldb after re-indexingAndrew Tridgell2008-12-161-0/+4
| | | | | | | | re-indexing in ldb is triggered on any modification to the @ATTRIBUTES or @INDEXLIST records. This happens to produce a worst-case fragmentation of the database, as all @INDEX records are deleted then re-created. By repacking after re-indexing we ensure that the database ends up without extreme fragmentation.
* use transactions in ldbadd, ldbmodify and ldbeditAndrew Tridgell2008-12-163-0/+30
| | | | | | | | The command line tools ldbadd, ldbmodify and ldbedit should operate within a transaction to make them more efficient. The ldbadd tool in particular is much faster when adding a large number of records if all the adds happen within a transaction. Previously there was a transaction per record.
* imported the tdb_repack() code from CTDBAndrew Tridgell2008-12-162-1/+93
| | | | | | | | The tdb_repack() function repacks a TDB so that it has a single freelist entry. The file doesn't shrink, but it does remove all freelist fragmentation. This code originated in the CTDB vacuuming code, but will now be used in ldb to cope with fragmentation from re-indexing
* make tdbbackup use transactionsAndrew Tridgell2008-12-161-6/+19
| | | | | | tdbbackup was originally written before we had transactions, and it attempted to use its own fsync() calls to make it safe. Now that we have transactions we can do it in a much safer (and faster!) fashion
* Merge branch 'master' of ssh://git.samba.org/data/git/sambaAndrew Tridgell2008-12-16214-4839/+28609
|\
| * Add python extensions for dom_sid.Jelmer Vernooij2008-12-162-2/+59
| |
| * Merge branch 'master' of ssh://git.samba.org/data/git/sambaJelmer Vernooij2008-12-154-25/+79
| |\
| | * s3:loadparm: fix copy service error (canonicalize_servicename: NULL source name)Michael Adam2008-12-151-1/+1
| | | | | | | | | | | | | | | | | | this was introduced by commit 3358a139d2dc77eb4c842d41722b1acc24bd2cb2. Michael
| | * s3:loadparm: add service-struct based variants of the free-parameter routinesMichael Adam2008-12-151-7/+46
| | | | | | | | | | | | | | | | | | | | | and use the abstracted free_one_parameter_common() in old free_one_parameter_by_snum() as well as in new free_one_parameter() Michael
| | * s3:loadparm: rename free_parameters() to free_parameters_by_snum()Michael Adam2008-12-151-4/+5
| | | | | | | | | | | | Michael
| | * s3:loadparm: rename free_parameter() to free_one_parameter_by_snum()Michael Adam2008-12-151-3/+5
| | | | | | | | | | | | Michael
| | * s3:loadparm: add lp_local_ptr() that operates on a service structMichael Adam2008-12-151-1/+13
| | | | | | | | | | | | | | | | | | and use this in lp_local_ptr_by_snum(). Michael
| | * s3:loadparm: rename lp_local_ptr() to lp_local_ptr_by_snum()Michael Adam2008-12-153-6/+6
| | | | | | | | | | | | Michael
| | * s3:loadparm: fix newly introduced leading whitespaces to tabsMichael Adam2008-12-151-2/+2
| | | | | | | | | | | | Michael
| | * s3:fix build of pam_winbind.so on older Linux systems.Michael Adam2008-12-151-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
| * | Rename ldap.h to ldap-util.h to avoid clashing with the system ldap.hJelmer Vernooij2008-12-141-1/+1
| | |
| * | Merge branch 'master' of ssh://git.samba.org/data/git/sambaJelmer Vernooij2008-12-1437-1155/+712
| |\|
| | * Remove the global "cmdline_auth_info" from source3/lib/util.cVolker Lendecke2008-12-1412-184/+284
| | | | | | | | | | | | This involves changing all our clients, that's why it's so large.
| | * Move 128 bytes from the data to the text segmentVolker Lendecke2008-12-142-2/+2
| | |
| | * Remove a pointless static variableVolker Lendecke2008-12-141-1/+1
| | |
| | * Added torture test for doing an openX over a directoryJeremy Allison2008-12-131-0/+47
| | | | | | | | | | | | | | | to ensure we get the correct error message. Jeremy.
| | * don't return 0 on error - bad for scriptsHerb Lewis2008-12-131-0/+2
| | |
| | * Remove a pointless static variableVolker Lendecke2008-12-131-7/+7
| | | | | | | | | | | | Every sane compiler will only allocate "*SMBSERVER" once
| | * Remove a static variableVolker Lendecke2008-12-131-6/+5
| | | | | | | | | | | | | | | | | | | | | | | | Derrell, please check! Thanks, Volker
| | * Micro-Optimize cliconnect.cVolker Lendecke2008-12-131-22/+27
| | | | | | | | | | | | | | | | | | | | | In this form, the prots array is fully read-only in the text segment and thus can be shared between processes. Probably pointless, but I had fun doing it :-)
| | * s3:dsgetdcname: retry with the clients siteStefan Metzmacher2008-12-131-6/+43
| | | | | | | | | | | | metze
| | * s3:libnet_join: use DS_FORCE_REDISCOVERYStefan Metzmacher2008-12-131-0/+1
| | | | | | | | | | | | metze
| | * s3:libnet_join: call saf_join_store() after a the join.Stefan Metzmacher2008-12-131-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | metze Signed-off-by: Stefan Metzmacher <metze@samba.org> Signed-off-by: Günther Deschner <gd@samba.org> (similar to commit feef594d275881466e2c3f59c0ff54609a9cc53b)
| | * s3:libads/ldap.c: store the dc name in the saf cache as in all other placesStefan Metzmacher2008-12-131-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | metze Signed-off-by: Stefan Metzmacher <metze@samba.org> Signed-off-by: Günther Deschner <gd@samba.org> (cherry picked from commit 543fa85a711337e979c7b631bda5db95d109ef59)
| | * s3:libads/ldap.c: if the client belongs to no site at all any dc is the closestStefan Metzmacher2008-12-131-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | metze Signed-off-by: Stefan Metzmacher <metze@samba.org> Signed-off-by: Günther Deschner <gd@samba.org> (cherry picked from commit f86ef9b53a903485deba94febf90dd4e657cc02b)
| | * s3:libads/ldap.c: pass the real workgroup name to get_dc_name()Stefan Metzmacher2008-12-131-1/+10
| | | | | | | | | | | | | | | | | | | | | | | | metze Signed-off-by: Stefan Metzmacher <metze@samba.org> Signed-off-by: Günther Deschner <gd@samba.org> (cherry picked from commit c2d4a84abe1b6cbf68d6e9f1bb1f8974d0b628fc)
| | * s3:libsmb/namequery.c: add saf_join_store() functionStefan Metzmacher2008-12-132-3/+66
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | saf_join_store() should be called after a successful domain join, the affinity to the dc used at join time has a larger ttl, to avoid problems with delayed replication. metze Signed-off-by: Stefan Metzmacher <metze@samba.org> Signed-off-by: Günther Deschner <gd@samba.org> (cherry picked from commit 80e74a27c55c01221091e3eec930c2ac4433c22c)
| | * s3: libsmb/namequery: fallback to returning all dcs, when none is available ↵Stefan Metzmacher2008-12-131-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in the requested site It could happen that all dcs in a site are unavailable (some sites have only one dc) and then we need to fallback to get all dcs. metze Signed-off-by: Stefan Metzmacher <metze@samba.org> Signed-off-by: Günther Deschner <gd@samba.org> (cherry picked from commit c127367b1dd622eeceb1f47de0a047c297dda222)
| | * s3: libads: use get_dc_name() instead of get_sorted_dc_list() in the LDAP caseStefan Metzmacher2008-12-131-1/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We use get_dc_name() for LDAP because it generates the selfwritten krb5.conf with the correct kdc addresses and sets KRB5_CONFIG. For CLDAP we need to use get_sorted_dc_list() to avoid recursion. metze Signed-off-by: Stefan Metzmacher <metze@samba.org> Signed-off-by: Günther Deschner <gd@samba.org> (cherry picked from commit d2f7f81f4d61bae9c4be65cbc1bf962b6c24a31f)
| | * s3: correctly detect if the current dc is the closest oneStefan Metzmacher2008-12-133-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ads->config.tried_closest_dc was never set. metze Signed-off-by: Stefan Metzmacher <metze@samba.org> Signed-off-by: Günther Deschner <gd@samba.org> (cherry picked from commit dfe5b00db35e1e7c7bb3ba36729fc3f97eb48db3)
| | * Fix a valgrind error in get_relative_fid_filenameVolker Lendecke2008-12-131-1/+1
| | | | | | | | | | | | | | | | | | | | | It doesn't really make sense to check the length of a not-yet-allocated string :-) Volker
| | * For read&x replies, check the offsetVolker Lendecke2008-12-131-0/+19
| | |
| | * s3: fix netlogon rpc_server build after idl change.Günther Deschner2008-12-131-3/+3
| | | | | | | | | | | | Guenther
| | * s3: re-run make samba3-idl.Günther Deschner2008-12-135-14/+8
| | | | | | | | | | | | Guenther
| | * s3: remove duplicate prototypes in proto.h.Günther Deschner2008-12-131-778/+0
| | | | | | | | | | | | Guenther
| | * winbindd: vars for signals must be volatile sig_atomic_tSATOH Fumiyasu2008-12-121-12/+12
| | |
| | * Fix error code when smbclient puts a file over an existing directoryVolker Lendecke2008-12-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Windows returns NT_STATUS_FILE_IS_A_DIRECTORY, as does Samba 3.0. 3.2 and following returned NT_STATUS_INVALID_PARAMETER which is wrong. Before I converted reply_open_and_X to create_file() we called open_file_ntcreate directly. Passing through open&X for a filename that exists as a directory ends up in open_directory after having tried open_file_ntcreate. Some check in there returns NT_STATUS_INVALID_PARAMETER. With this additional FILE_NON_DIRECTORY_FILE flag we get the correct error message back from create_file_unixpath before trying open_directory(). Survives make test, but as this also touches the other open variants I would like others to review this. Volker
| | * s3 sesssetup.c: Add missing line break to debug message.root2008-12-121-1/+1
| | | | | | | | | | | | Karolin
| | * docs: Add hint that "socket address" usually don't need to be set.Karolin Seeger2008-12-121-5/+7
| | | | | | | | | | | | | | | | | | | | | This fixes bug #5950. Thanks to the Debian Samba package maintainers for reporting! Karolin
| | * mount.cifs: allow mounts to ipv6 capable serversJeff Layton2008-12-121-101/+120
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The current name resolution scheme in mount.cifs is IPv4 only. Expand it to be protocol-independent. Also take advantage of the fact that getaddrinfo() returns a list of addresses and have mount.cifs try each in turn until it hits one that's reachable and allows the socket to connect. Signed-off-by: Jeff Layton <jlayton@redhat.com>
| * | Move dom_sid to the Samba 3 IDL file, remove the old definition.Jelmer Vernooij2008-12-1218-556/+296
| | |
| * | Manually marshall dom_sid, so we can use a fixed size array forJelmer Vernooij2008-12-126-50/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | dom_sid.sub_auths rather than a dynamically allocated one. This makes it possible to use the same DCE/RPC object code for Samba 3 and Samba 4's DCE/RPC parsers and allows copying sids more easily (since they no longer contain any pointers). The cost of having additional manual marshalling code is limited (~35 additional lines of C code).
| * | Don't allow specifying arguments to pidl object constructors, as they'llJelmer Vernooij2008-12-121-0/+3
| | | | | | | | | | | | be ignored anyway atm.
| * | Allow overriding repr function for pidl-defined types.Jelmer Vernooij2008-12-121-1/+5
| | |
| * | Support pyhelper property to allow additional methods to be tucked onto aJelmer Vernooij2008-12-122-0/+10
| |/ | | | | | | pidl-generated type.