Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-07-10 | Add function fd_open_atomic() which uses O_CREAT|O_EXCL to return a ↵ | Jeremy Allison | 1 | -4/+107 | |
guaranteed indication of creation of a new file. | |||||
2012-07-10 | Simplify the logic in open_file() some more. | Jeremy Allison | 1 | -48/+36 | |
Move the inheritance work into the if block where we created the file. We can never have created the file (and thus need no inheritance) for a stat-open. Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Tue Jul 10 03:30:22 CEST 2012 on sn-devel-104 | |||||
2012-07-09 | Simplify the logic in open_file(). | Jeremy Allison | 1 | -22/+15 | |
Move the fstat call into the block which opens a file descriptor. Remove the stat() call in the stat-open case. We already failed the open if !file_existed. | |||||
2012-07-09 | Use new common function. | Jeremy Allison | 1 | -1/+1 | |
2012-07-09 | Make check_same_stat() and check_same_dev_ino() common functions. | Jeremy Allison | 4 | -31/+33 | |
2012-07-09 | Factor out check_same_dev_ino() from check_same_stat() so it can be called ↵ | Jeremy Allison | 1 | -2/+15 | |
separately. | |||||
2012-07-06 | s3: Fix Coverity ID 709470 Uninitialized scalar variable | Volker Lendecke | 1 | -1/+1 | |
Signed-off-by: Michael Adam <obnox@samba.org> Autobuild-User(master): Michael Adam <obnox@samba.org> Autobuild-Date(master): Fri Jul 6 18:46:06 CEST 2012 on sn-devel-104 | |||||
2012-07-06 | auth: Common function for retrieving PAC_LOGIN_INFO from PAC | Christof Schmitt | 3 | -78/+7 | |
Several functions use the same logic as kerberos_pac_logon_info. Move kerberos_pac_logon_info to common code and reuse it to remove the code duplication. Signed-off-by: Andrew Bartlett <abartlet@samba.org> | |||||
2012-07-06 | s3-lsarpc: Enforce a secure connection for LookupSids3 and LookupNames4. | Andreas Schneider | 1 | -8/+14 | |
http://thread.gmane.org/gmane.network.protocol.cifs.general/291 | |||||
2012-07-06 | s3-lsarpc: Restrict lsa_LookupNames4 to ncacn_ip_tcp connections. | Andreas Schneider | 1 | -12/+23 | |
See MS-LAT, Section 2.1 Transport. | |||||
2012-07-06 | s3-lsarpc: Restrict lsa_LookupSids3 to ncacn_ip_tcp connections. | Andreas Schneider | 1 | -12/+23 | |
See MS-LAT, Section 2.1 Transport. | |||||
2012-07-06 | s3-lsarpc: Restrict the transport for ncacn_np functions. | Andreas Schneider | 1 | -0/+42 | |
See MS-LAT, section 2.1 Transport. | |||||
2012-07-06 | s3-rpc: Return the correct ntstatus depending on the transport. | Andreas Schneider | 1 | -3/+15 | |
2012-07-06 | s3-rpc_server: Make it possible to use more rpc exceptions. | Andreas Schneider | 18 | -376/+348 | |
2012-07-06 | s3-selftest: Run lsa tests over np and tcpip. | Andreas Schneider | 1 | -0/+5 | |
2012-07-05 | s3: evaluate MNT_QUOTA and MNT_RDONLY in statvfs also on darwin | Björn Jacke | 1 | -1/+1 | |
2012-07-05 | s3:registry: untangle assignment from check in reg_enumkey() | Michael Adam | 1 | -1/+2 | |
Autobuild-User(master): Michael Adam <obnox@samba.org> Autobuild-Date(master): Thu Jul 5 17:57:16 CEST 2012 on sn-devel-104 | |||||
2012-07-05 | s3:registry: untangle assignment from check in reg_enumvalue() | Michael Adam | 1 | -1/+2 | |
2012-07-04 | s3: if we know a file is immutable, report it to be readonly | Björn Jacke | 1 | -0/+6 | |
on *BSD we get the immutable flag via st_flags, we should use that if possible. | |||||
2012-07-04 | Add waf/configure tests for openat. | Jeremy Allison | 2 | -0/+23 | |
Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Wed Jul 4 02:37:59 CEST 2012 on sn-devel-104 | |||||
2012-07-03 | Move copy_unix_token() from locking/locking.c to lib/util.c. | Jeremy Allison | 3 | -29/+31 | |
Make public. | |||||
2012-07-03 | Add function set_thread_credentials_permanently(). Panic if fail. | Jeremy Allison | 2 | -0/+52 | |
Not yet used. | |||||
2012-07-03 | Allow init_aio_threadpool() to be setup for different threadpool handles ↵ | Jeremy Allison | 1 | -10/+19 | |
with different completion functions. | |||||
2012-07-03 | s3-smbd: Remove deprecated 'share modes' option. | Andreas Schneider | 3 | -14/+0 | |
2012-07-03 | s3-passdb: Remove obsolte ldapsam_compat support. | Andreas Schneider | 7 | -187/+6 | |
2012-07-03 | s3-printing: Remove deprecated lp_printer_admin(). | Andreas Schneider | 4 | -64/+14 | |
2012-07-03 | s3-winbind: Remove obsolte idmap_adex. | Andreas Schneider | 10 | -3795/+0 | |
2012-07-03 | s3: Fix Coverity ID 709217 Dereference after null check | Volker Lendecke | 1 | -2/+10 | |
A few lines before we did check for x != NULL. I think this might fix a potential remote crash. Signed-off-by: Michael Adam <obnox@samba.org> Autobuild-User(master): Michael Adam <obnox@samba.org> Autobuild-Date(master): Tue Jul 3 15:30:17 CEST 2012 on sn-devel-104 | |||||
2012-07-03 | s3: Fix Coverity ID 709218 Uninitialized pointer read | Volker Lendecke | 1 | -0/+5 | |
Signed-off-by: Michael Adam <obnox@samba.org> | |||||
2012-07-03 | s3:vfs: use smbXsrv_open instead of smbXsrv_open0 in files_struct | Michael Adam | 1 | -1/+1 | |
2012-07-03 | s3:vfs: use smbXsrv_tcon instead of smbXsrv_tcon0 in connection_struct. | Michael Adam | 1 | -1/+1 | |
2012-07-03 | s3:smb: include "smbXsrv.h" before "vfs.h" | Michael Adam | 1 | -0/+6 | |
This is still needed as long as smbXsrv_open/_tcon are referenced in files_struct and connection_struct respectively. Eventually, these structures should not have a backlink to the smb world any more. | |||||
2012-07-03 | s3:smbd: Include smbXsrv.h before vfs.h (in smbd.h) so that the smbXsrv ↵ | Michael Adam | 1 | -1/+1 | |
structures are available This is currently needed for files_struct and connection_struct that contain backlinks to smbXsrv_open and smbXsrv_tcon, respectively. Finally, these backlinks to the smb level structures should be removed. | |||||
2012-07-03 | s3:smbd:smb2: fix prototype of make_connection_smb2() to use smbXsrv_tcon | Michael Adam | 1 | -2/+1 | |
instead of internal smbXsrv_tcon0. | |||||
2012-07-03 | s3:smbd: include smbXsrv.h before smbd/proto.h to have the smbXsrv_ structs ↵ | Michael Adam | 1 | -0/+1 | |
available | |||||
2012-07-03 | s3:smbd:smb2: change smbXsrv_tcon0 to smbXsrv_tcon in ↵ | Michael Adam | 1 | -1/+1 | |
smbd_smb2_request_check_tcon() smbXsrv_tcon0 is the internal name for the (current) version0 of the structure. Externally, only smbXsrv_tcon should be used. | |||||
2012-07-03 | s3:smbd:smb2: change smbXsrv_session0 to smbXsrv_session in struct user_struct. | Michael Adam | 1 | -1/+1 | |
smbXsrv_session0 is the internal name of (current) version 0 of the structure. Externally, only smbXsrv_session should be used. | |||||
2012-07-03 | Fix the waf/autoconf builds to detect correctly the 32-bit or 64-bit syscall ↵ | Jeremy Allison | 2 | -34/+134 | |
ABI on Linux. Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Tue Jul 3 05:32:21 CEST 2012 on sn-devel-104 | |||||
2012-07-03 | auth: Remove .get_challenge (only used for security=server) | Andrew Bartlett | 6 | -140/+6 | |
With NTLMSSP, for NTLM2 we need to be able to set the effective challenge, so if we ever did use a module that needed this functionlity, we would downgrade to just NTLM. Now that security=server has been removed, we have no such module. This will make it easier to make the auth subsystem async, as we will not need to consider making .get_challenge async. Andrew Bartlett | |||||
2012-07-02 | s3-libpidfile: fix check for running process. | Björn Baumbach | 1 | -1/+1 | |
Call pidfile_pid() with process name instead of pid file name. pidfile_pid does create the pid file name by itself. Signed-off-by: Michael Adam <obnox@samba.org> Autobuild-User(master): Michael Adam <obnox@samba.org> Autobuild-Date(master): Mon Jul 2 19:19:21 CEST 2012 on sn-devel-104 | |||||
2012-07-02 | s3-libpidfile: some more debug output | Björn Baumbach | 1 | -0/+6 | |
Signed-off-by: Michael Adam <obnox@samba.org> | |||||
2012-07-02 | Disable selections of USE_LINUX_THREAD_CREDENTIALS until we have specific | Jeremy Allison | 2 | -27/+35 | |
32-bit and 64-bit versions. Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Mon Jul 2 03:02:47 CEST 2012 on sn-devel-104 | |||||
2012-06-30 | Don't allow asynchronous creates to be canceled in SMB2. | Jeremy Allison | 3 | -3/+20 | |
Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Sat Jun 30 04:10:02 CEST 2012 on sn-devel-104 | |||||
2012-06-30 | Make schedule_deferred_open_message_smb() return an indication of success. | Jeremy Allison | 2 | -5/+6 | |
2012-06-30 | Make schedule_deferred_open_message_smb2() return an indication of success. | Jeremy Allison | 2 | -7/+9 | |
2012-06-30 | Allow for async opens. | Jeremy Allison | 1 | -4/+35 | |
If the SMB_VFS_OPEN() function returns -1, EINTR -> NT_STATUS_RETRY, then queue the open up to be completed when the async open completes. | |||||
2012-06-30 | Add new bool field async_open to struct deferred_open_record. Not used yet. | Jeremy Allison | 1 | -0/+4 | |
2012-06-30 | Fix defer_open() fuction in the open code path to cope with a NULL lck ↵ | Jeremy Allison | 1 | -11/+16 | |
parameter. | |||||
2012-06-30 | Add uint64_t mid field to the files_struct. | Jeremy Allison | 2 | -0/+2 | |
Ensure it is initialized so we know what mid created this file. | |||||
2012-06-30 | s3:waf add sendfile support for Tru64, which is the same as HP-UX's | Björn Jacke | 1 | -2/+2 | |
Autobuild-User(master): Björn Jacke <bj@sernet.de> Autobuild-Date(master): Sat Jun 30 02:22:21 CEST 2012 on sn-devel-104 |