summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* s3: Fix bug 7066 -- wbcAuthenticateEx gives unix timesVolker Lendecke2010-12-191-3/+5
| | | | | We might eventually want to change this, but right now we get unix times out of the winbind pipe struct
* s3: Use the right uid winbindd_raw_kerberos_login()Volker Lendecke2010-12-191-1/+1
|
* wb_reqtrans is not used in libwbclientVolker Lendecke2010-12-197-8/+8
|
* Move wbc_async.[ch] to its only user: smbtorture3Volker Lendecke2010-12-195-4/+4
|
* libwbclient: Put the wb_reqtrans definitions into wb_reqtrans.hVolker Lendecke2010-12-195-33/+65
|
* s3: wcache_invalidate_samlogon only needs the SIDVolker Lendecke2010-12-193-12/+15
|
* s3: netsamlogon_clear_cached_user only needs the SIDVolker Lendecke2010-12-193-10/+4
|
* s3: Remove two pointless slprintf callsVolker Lendecke2010-12-191-4/+4
|
* s3: FreeBSD has getpeereid(), use itVolker Lendecke2010-12-192-0/+16
|
* s3: Reply correctly to FSCTL_IS_VOLUME_DIRTYVolker Lendecke2010-12-192-0/+10
|
* s3: Fix some nonempty blank linesVolker Lendecke2010-12-191-22/+22
|
* s3: Did I say this module is from hell?Volker Lendecke2010-12-191-1/+1
|
* s3: re-add some debugs to check_reduced_nameVolker Lendecke2010-12-191-0/+2
|
* s3: Fix some typosVolker Lendecke2010-12-195-7/+7
|
* s3: Document wbinfo -P/--ping-dcVolker Lendecke2010-12-191-0/+10
|
* s3: Add -P as an alias for --ping-dcVolker Lendecke2010-12-191-3/+2
| | | | | This is a much less intrusive version of the DC connectivity check than wbinfo -t is. Make it simple to use.
* s3: Fix serverid_existsVolker Lendecke2010-12-191-0/+4
| | | | | | | In the cluster case it can happen that a node just died and we did not yet have the time to clean up serverid.tdb. If the corresponding serverid.tdb record that represented a process was migrated away from the dead record, it represents existence of a process where it is already dead.
* heimdal: Fix build if using system roken.Jelmer Vernooij2010-12-191-1/+1
| | | | | Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sun Dec 19 22:29:41 CET 2010 on sn-devel-104
* ldb: Bump version after renaming some public symbols which didn't have aJelmer Vernooij2010-12-192-1/+246
| | | | ldb_ prefix.
* dcesrv_srvsvc: Use constants.Jelmer Vernooij2010-12-191-3/+3
|
* Rename vfs operation posix_fallocate to just fallocate and add the ↵Jeremy Allison2010-12-1811-47/+72
| | | | | | | | | | | | | | | | | | | | | | vfs_fallocate_mode parameter. It turns out we need the fallocate operations to be able to both allocate and extend filesize, and to allocate and not extend filesize, and posix_fallocate can only do the former. So by defining the vfs op as posix_fallocate we lose the opportunity to use any underlying syscalls (like Linux fallocate) that can do the latter as well. We don't currently use the non-extending filesize call, but now I've changed the vfs op definition we can in the future. For the moment simply map the fallocate op onto posix_fallocate for the VFS_FALLOCATE_EXTEND_SIZE case and return ENOSYS for the VFS_FALLOCATE_KEEP_SIZE case. Jeremy. Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Sat Dec 18 08:59:27 CET 2010 on sn-devel-104
* s4-drepl: During Schema replication, we need to save updated prefixMap if ↵Kamen Mazdrashki2010-12-181-0/+18
| | | | | | | everything is OK Autobuild-User: Kamen Mazdrashki <kamenim@samba.org> Autobuild-Date: Sat Dec 18 05:53:48 CET 2010 on sn-devel-104
* s4-dsdb_schema: Copy info needed for Schema refresh in dsdb_schema_copy_shallowKamen Mazdrashki2010-12-181-0/+4
| | | | | | | | Just 'refresh_fn' and 'loaded_from_module' are copied. I left 'reload_seq_number' set to 0 intentionally, so that this Schema cache will looks like a very old one to ,refresh_fn'. This way, if this shallow copy is attached to LDB, it will be refreshed as soon as possible by 'refresh_fn'.
* s4-devel/pfm_verify: Extend the tool to verify schemaInfo attribute valueKamen Mazdrashki2010-12-181-6/+43
|
* s4-drepl: Make refreshed schema a global oneKamen Mazdrashki2010-12-181-0/+7
| | | | | | | | | | | | | | | We need to do this as dsdb_reference_schema() function clears "use_global_schema" ldb flag. Basically what is going to happen is that after dsdb_reference_schema() global_schema pointer will continue to point at old schema cache, while "dsdb_schema" for LDB will point at the working_schema. After replication is done, we reset "dsdb_schema" for the ldb with an updated Schema cache, but this leaves global_schema pointer with its old value, which is not up to date. So we need to call dsdb_make_schema_global() again so that global_schema points to a valid Schema cache.
* pyrpc: Add prototype for init function.Jelmer Vernooij2010-12-181-0/+2
| | | | | Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sat Dec 18 03:04:23 CET 2010 on sn-devel-104
* pyglue: Add prototype for init function.Jelmer Vernooij2010-12-181-0/+2
|
* pidl: Add prototype for init function in pidl-generated Python bindings.Jelmer Vernooij2010-12-181-0/+1
|
* Revert "s4-dsdb Don't talloc_free() ares on failure, as LDB might free it later"Andrew Bartlett2010-12-181-0/+1
| | | | | | | | | | | This reverts commit 25163380239abbad28f1656c42e6fab1b92473d9 because further analyis showed the real problem was introduced in 0941099a (which changed the caller behaviour, but only for indexed searches). Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Sat Dec 18 02:19:59 CET 2010 on sn-devel-104
* lib/ldb Remove talloc_free() that causes double-free in callbacks.Andrew Bartlett2010-12-181-1/+3
| | | | | | | | | | | | | This partially reverts 0941099a, which was a little over-eager in fixing what were presumed to be memory leaks. It is always the callbacks responsiblity to free the ares, but if they don't then the end of the request should handle the cleanup. Attempting to talloc_free() here will result (as it did in the descriptor module) in a double-free error if the callback does free it, and no other caller of ldb_module_send_entry() has this behaviour. Andrew Bartlett
* ldb: Rename controls_except_specified -> ldb_controls_except_specified.Jelmer Vernooij2010-12-183-4/+4
| | | | | Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sat Dec 18 01:33:24 CET 2010 on sn-devel-104
* ldb_map: Fix prefix for map functions.Jelmer Vernooij2010-12-183-15/+15
|
* ldb: Rename last instance of save_controls -> ldb_save_controls.Jelmer Vernooij2010-12-181-1/+1
|
* ldb: Add prototype for ldb_init_module.Jelmer Vernooij2010-12-181-0/+5
|
* ldb: Rename two exported functions so they match abi_match.Jelmer Vernooij2010-12-186-9/+8
|
* pidl: Use system pytalloc if possible.Jelmer Vernooij2010-12-181-1/+1
|
* Add bzrignore symlink.Jelmer Vernooij2010-12-181-0/+1
|
* wafsamba: Use abi_match in version script files.Jelmer Vernooij2010-12-182-7/+19
|
* heimdal_build: Simplify HEIMDAL_LIBRARY - version_script files are now taken ↵Jelmer Vernooij2010-12-181-15/+2
| | | | from upstream rather than generated.
* heimdal_build: Add version-script for heimdal_base, hx509 and hcrypto. ↵Jelmer Vernooij2010-12-182-40/+285
| | | | Convert hbase and hcrypto to libraries.
* s4-drepl: Reference current Schema cache into working_schema contextKamen Mazdrashki2010-12-171-1/+1
| | | | | | | | | working_schema is a shallow copy of current schema and thus depends on part of it. So we want it to be around as long as working_schema is used. Autobuild-User: Kamen Mazdrashki <kamenim@samba.org> Autobuild-Date: Fri Dec 17 23:34:29 CET 2010 on sn-devel-104
* s4-drepl: Fix log message to be shown on its own lineKamen Mazdrashki2010-12-171-1/+1
|
* Move checks inside file_set_sparse() to allow it to be called from anywhere.Jeremy Allison2010-12-172-19/+21
| | | | | Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Fri Dec 17 21:56:38 CET 2010 on sn-devel-104
* file_set_sparse needs to be a handle based call.Jeremy Allison2010-12-173-12/+10
|
* s3:smbd: implement FSCTL_SET_SPARSE more correctlyBjörn Jacke2010-12-171-5/+43
| | | | | | | | | | | | | | this is a port of a patch from metze for 3.3: We don't do the "strict allocation" when the sparse bit isn't set, but that shouldn't matter. We now allow windows applications to set and unset the sparse bit. Note that in order to implement this 100% like described in [MS-FSA], we'd have to change our data model and support the sparse flag per stream.
* Update our attribute flags.Jeremy Allison2010-12-171-1/+6
|
* s3:smbd: add file_set_sparse() functionBjörn Jacke2010-12-172-0/+52
| | | | this is based on a patch for 3.3 from metze
* s3/vfs_gpfs: map SPARSE attribute to/from WINATTRs, tooBjörn Jacke2010-12-171-2/+8
|
* s3: remove set_sparse_flagBjörn Jacke2010-12-171-15/+1
| | | | | | | | we need to determine sparseness from the sparse flag we store not from the allocation size on the POSIX filesystem. This is how Windows works - in the first place sparseness is a file flag, not the allocation state of the file Signed-off-by: Stefan Metzmacher <metze@samba.org>
* s3: add FILE_ATTRIBUTE_SPARSE to get_stat_dos_flagsBjörn Jacke2010-12-171-0/+2
|