Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-01-26 | Fix bug #7067 - Linux asynchronous IO (aio) can cause smbd to fail to ↵ | Jeremy Allison | 1 | -4/+61 | |
respond to a read or write. Only works on Linux kernels 2.6.26 and above. Grants CAP_KILL capability to allow Linux threads under different euids to send signals to each other. Jeremy. | |||||
2010-01-26 | s3:netapi: remove unused variable | Björn Jacke | 1 | -2/+0 | |
2010-01-25 | Revert "s3: Make string_to_sid a wrapper around dom_sid_parse" | Volker Lendecke | 1 | -7/+50 | |
This reverts commit dff03b61fd5d923562711b38cc7dbe996dc07283. | |||||
2010-01-24 | s3: add libnetapi_set_use_ccache() | Volker Lendecke | 3 | -0/+16 | |
2010-01-24 | s3: Add -C (--use-ccache) to popt_common_credentials | Volker Lendecke | 2 | -1/+16 | |
2010-01-23 | s3: Make string_to_sid a wrapper around dom_sid_parse | Volker Lendecke | 1 | -50/+7 | |
2010-01-23 | s3: Remove string_sid_talloc | Volker Lendecke | 1 | -13/+0 | |
All but one call were pointless, so I think this API should go | |||||
2010-01-23 | s3: Remove some pointless uses of string_sid_talloc | Volker Lendecke | 1 | -1/+1 | |
2010-01-23 | s3: Fix some nonempty blank lines | Volker Lendecke | 1 | -11/+11 | |
2010-01-21 | s3: Move "yesno" to the only place where it is used: client.c | Volker Lendecke | 1 | -18/+0 | |
2010-01-17 | s3: For "smbcontrol <pid> pool-usage", print the first 50 bytes of a string | Volker Lendecke | 1 | -0/+17 | |
2010-01-17 | s3: Fix some nonempty blank lines | Volker Lendecke | 1 | -5/+5 | |
2010-01-14 | s3:smbldap: add smbldap_talloc_first_attribute() | Stefan Metzmacher | 1 | -0/+34 | |
metze Signed-off-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit c992127f8a96c37940a6d298c7c6859c47f83d9b) | |||||
2010-01-10 | s3: Remove unused samr_make_sam_obj_sd | Volker Lendecke | 1 | -40/+0 | |
2010-01-08 | s3-time: fix build warnings after we moved to shared time functions. | Günther Deschner | 1 | -6/+6 | |
Bjoern, please check. Guenther | |||||
2010-01-07 | s3:lib/time: remove TIME_T_MIN/MAX defines | Björn Jacke | 1 | -8/+0 | |
we already get them from lib/util/time.h | |||||
2010-01-07 | ѕ3:lib/time: replace make_dos_ and put_dos_ functions with those from lib/util/ | Björn Jacke | 1 | -89/+6 | |
2010-01-07 | s3:lib/time: remoce null_mtime() - use null_time() | Björn Jacke | 1 | -13/+2 | |
2010-01-07 | s3:lib/time: remove unused nt_time_equals | Björn Jacke | 1 | -8/+0 | |
we have nt_time_equal doing the same in lib/util/ | |||||
2010-01-02 | s3: Adapt sid_dup_talloc to README.Coding | Volker Lendecke | 1 | -8/+9 | |
2009-12-10 | s3: add LDAP Alias Dereferencing support | Björn Jacke | 1 | -0/+11 | |
Thanks to Dan Cox for initial patch for 3.0. This closes #2350. | |||||
2009-12-10 | s3-ldb: use GUID_to_ndr_blob() | Andrew Tridgell | 1 | -2/+1 | |
this also fixes an error in NTSTATUS handling | |||||
2009-12-08 | s3: make sys_posix_fallocate more generic | Björn Jacke | 1 | -4/+4 | |
this is in preparation for other preallocation methods to be introduced. | |||||
2009-12-07 | s3: let gencache_init() use tdb_check() | Stefan Metzmacher | 1 | -0/+25 | |
If the check fails we try to clear the tdb and start with an empty cache. metze | |||||
2009-12-07 | s3: let tdb_validate_child() use tdb_check() | Stefan Metzmacher | 1 | -0/+11 | |
metze | |||||
2009-12-05 | s3:dbwrap_ctdb: increase the number of commit retries 5-->100 | Michael Adam | 1 | -1/+1 | |
This is to cope with timeouts when recoveries and transactions collide. Maybe 100 is too hight, but 10 or even 20 have been too low in a very busy environment. Michael | |||||
2009-12-05 | s3:dbwrap_ctdb: increase the rsn of the __transaction_lock__ when storing | Michael Adam | 1 | -0/+2 | |
so that it is correctly handled by recoveries. Also set the dmaster explicitly. Michael | |||||
2009-12-05 | s3: Fix explicit stat64 support | Volker Lendecke | 1 | -3/+12 | |
2009-12-04 | s3: check if glibc has broken posix_fallocate | Björn Jacke | 1 | -1/+1 | |
2009-12-02 | Restructure the ACL code some more, get the internal semantics | Jeremy Allison | 1 | -0/+20 | |
right. The previous bugs were due to the fact that get_nt_acl_internal() could return an NTSTATUS error if there was no stored ACL blob, but otherwise would return the underlying ACL from the filysystem. Fix this so it always returns a valid acl if it can, and if it does not its an error to be reported back to the client. This then changes the inherit acl code. Previously we were trying to match Windows by setting a minimal ACL on a new file that didn't inherit anything from a parent directory. This is silly - the returned ACL wouldn't match the underlying UNIX permissions. The current code will correctly inherit from a parent if a parent has any inheritable ACE entries that apply to the new object, but will return a mapping from the underlying UNIX permissions if the parent has no inheritable entries. This makes much more sense for new files/directories. Jeremy. | |||||
2009-12-02 | s3: prefer posix_fallocate for doing "strict allocate" | Björn Jacke | 1 | -0/+14 | |
posix_fallocate is more efficient than manual zero'ing the file. When preallocation in kernel space is supported it's extremely fast. Support for preallocation at fs layer via posix_fallocate and fallocate at kernel site can be found in Linux kernel 2.6.23/glibc 2.10 with ext4, XFS and OCFS2. Other systems that I know of which support fast preallocation in kernel space are AIX 6.1 with JFS2 and recent Solaris versions with ZFS maybe UFS2, too. People who have a system with preallocation in kernel space might want to set "strict allocate = yes". This reduces file fragentation and it's also safer for setups with quota being turned on. As of today most systems still don't have preallocation in kernel space, and that's why "strict allocate = no" will stay the default for now. | |||||
2009-12-02 | s3: Cope with older external libtdb | Volker Lendecke | 1 | -0/+2 | |
2009-11-29 | s3: Fix a "not handled in switch" warning | Volker Lendecke | 1 | -0/+1 | |
2009-11-29 | s3: Move directory_exist_stat to testparm.c, it only looks at the mode | Volker Lendecke | 1 | -21/+0 | |
2009-11-29 | s3: Pass fake_dir_create_times down to file_exist_stat, none of the callers ↵ | Volker Lendecke | 1 | -2/+3 | |
look at the mtime | |||||
2009-11-29 | s3: "get_file_size" only looks at the size | Volker Lendecke | 1 | -1/+1 | |
2009-11-29 | s3: "socket_exist" only looks at the mode | Volker Lendecke | 1 | -1/+1 | |
2009-11-29 | s3: "sys_path_to_bdev" only looks at the devicenumber | Volker Lendecke | 1 | -4/+3 | |
2009-11-29 | s3: "check_log_size" only looks at the size | Volker Lendecke | 1 | -2/+1 | |
2009-11-29 | s3: Pass the "fake dir create times" parameter to sys_*stat | Volker Lendecke | 4 | -18/+25 | |
Step 0 to restore it as a per-share paramter | |||||
2009-11-26 | s3-rpc: Avoid including every pipe's client and server stubs everywhere in ↵ | Günther Deschner | 11 | -0/+12 | |
samba. Guenther | |||||
2009-11-25 | s3-registry: fix REG_MULTI_SZ handling in registry_push_value. | Günther Deschner | 1 | -3/+20 | |
Catched by smbconftort test on the buildfarm. Guenther | |||||
2009-11-24 | s3-registry: use push_reg_multi_sz() in registry_push_value(). | Günther Deschner | 1 | -59/+3 | |
Guenther | |||||
2009-11-24 | s3-registry: remove reg_pull_multi_sz(). | Günther Deschner | 2 | -28/+18 | |
Guenther | |||||
2009-11-23 | Revert "s3: Make the implicit reference to Protocol in mask_match() explicit" | Volker Lendecke | 1 | -8/+4 | |
This reverts commit e23d8a3d1f558a7e98ef2afd71e1d15c5b3a71bc. | |||||
2009-11-23 | Revert "s3: Make the implicit reference to Protocol in mask_match_list() ↵ | Volker Lendecke | 1 | -3/+3 | |
explicit" This reverts commit 1e22899d268ae5a089f941a204413c07ee64fc78. | |||||
2009-11-23 | Revert "s3: Make the implicit reference to Protocol in is_in_path() explicit" | Volker Lendecke | 1 | -3/+2 | |
This reverts commit f7b4151a64d8c6851e62255a7139fd00a5fc63a3. | |||||
2009-11-23 | Revert "s3: Move the global variable Protocol to struct smbd_server_connection" | Volker Lendecke | 1 | -0/+12 | |
This reverts commit c85a4c9ba4a7de65a7850f6f9708df66bd24deea. | |||||
2009-11-21 | s3: Make alloc_sub_basic() static | Volker Lendecke | 1 | -2/+5 | |
2009-11-21 | s3: Move the global variable Protocol to struct smbd_server_connection | Volker Lendecke | 1 | -12/+0 | |