Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-05-21 | s3: added support for fake oplocks in SMB2. | Ira Cooper | 1 | -2/+14 | |
2010-05-21 | s3:dom_sid Global replace of DOM_SID with struct dom_sid | Andrew Bartlett | 5 | -28/+28 | |
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-20 | Fix bug #7410 - samba sends "raw" inode number as uniqueid with unix ↵ | Jeremy Allison | 3 | -10/+35 | |
extensions. Move to a consistent get_FileIndex() function for all inode returns, that checks if st_dev on the file is identical to the top directory dev_t of the exported share, and if so uses the raw 64-bit inode number. If it isn't (we've traversed a mount point) - return what we used to do for Windows which is the concatination of the bottom 32-bits of the inode with the 32-bit device number. We can get more creative with this over time (hashing?) if we want as now all inode returns go through this single function. Jeremy. | |||||
2010-05-20 | s3-lanman: Fix various RAP printing calls according to win98 testing and ↵ | Günther Deschner | 1 | -10/+10 | |
MS-RAP docs. Guenther | |||||
2010-05-20 | s3 smb2: Fix the build without kerberos | Kai Blin | 1 | -0/+2 | |
Jeremy, please check | |||||
2010-05-19 | Fix bug 7442 - Samba returns incorrect SMB2 QFS device info. | Jeremy Allison | 1 | -2/+9 | |
Add the correct devicetype and characteristics for this info level. Jeremy. | |||||
2010-05-19 | Fix connecting to [homes] share over SMB2. | Jeremy Allison | 1 | -3/+20 | |
Jeremy. | |||||
2010-05-19 | After talking with Microsoft engineers, immediately replying | Jeremy Allison | 1 | -1/+6 | |
on compound requests on open being deferred for a sharing violation is a Windows bug. Re-enable the code that simply delays the compound response if the delay time is less than 2 seconds. Jeremy. | |||||
2010-05-19 | After talking with Microsoft engineers, the "lock spin time" is | Jeremy Allison | 1 | -1/+2 | |
no longer used in SMB2. Jeremy. | |||||
2010-05-19 | (Finally) fix bug #7158 - SMB2 connection resets during IOZone tests from ↵ | Jeremy Allison | 14 | -13/+24 | |
64-bit Vista client It turns out that the persistent handles are used by the Microsoft redirector to index files on oplock break requests. So even if we don't do durable handles (yet) we must set the persistent handle on create. For now just use the same handle value as we use for volatile. Jeremy. | |||||
2010-05-18 | Implement missing info level SMB_FILE_LINK_INFORMATION. | Jeremy Allison | 2 | -5/+101 | |
Fix bug #7435 - SMB2 hardlink fails (invalid level). Found at the Microsoft plugsharing plugfest. Jeremy. | |||||
2010-05-18 | Keep track of credits we're giving out. Set initial credits to 1 (MS-SMB2 ↵ | Jeremy Allison | 2 | -1/+9 | |
spec required). Jeremy. | |||||
2010-05-18 | s3-rpc_client: move protos to init_spoolss.h | Günther Deschner | 1 | -0/+1 | |
Guenther | |||||
2010-05-18 | s3-rpc_client: move protos to cli_spoolss.h | Günther Deschner | 1 | -0/+1 | |
Guenther | |||||
2010-05-18 | s3-secdesc: remove "typedef struct security_descriptor SEC_DESC". | Günther Deschner | 2 | -19/+20 | |
Guenther | |||||
2010-05-18 | s3-secdesc: remove "typedef struct security_acl SEC_ACL". | Günther Deschner | 1 | -2/+2 | |
Guenther | |||||
2010-05-18 | s3-secdesc: remove "typedef struct security_ace SEC_ACE". | Günther Deschner | 1 | -14/+14 | |
Guenther | |||||
2010-05-18 | s3-build: fix the build. | Günther Deschner | 1 | -1/+1 | |
Guenther | |||||
2010-05-18 | s3: Remove use of iconv_convenience. | Jelmer Vernooij | 5 | -20/+13 | |
2010-05-17 | Plumb in krb5 to the SMB2 sessionsetup code. First cut of this code. | Jeremy Allison | 2 | -11/+404 | |
Jeremy. | |||||
2010-05-18 | s3-registry: only include registry headers when really needed. | Günther Deschner | 1 | -0/+1 | |
Guenther | |||||
2010-05-18 | s3-crypto: only include crypto headers when crypto is done. | Günther Deschner | 1 | -0/+1 | |
Guenther | |||||
2010-05-17 | Refactor the sessionsetup SMB2 code to make it easy to add | Jeremy Allison | 1 | -140/+293 | |
krb5. Fix a memory leak in returning security blobs. Jeremy | |||||
2010-05-13 | Fix bug 7399 - SMB2: QUERY_DIRECTORY is returning invalid values. | Jeremy Allison | 2 | -1/+15 | |
The end_data argument to smbd_dirptr_lanman2_entry() must include the safety margin, as internally it's actually used to allow detection of string name pushes that were truncated. Ensure space_remaining can never go negative due to padding. Jeremy. | |||||
2010-05-13 | Be more forgiving on client oplock break failure (as Windows does). Remove a ↵ | Jeremy Allison | 5 | -8/+1 | |
global. Jeremy. | |||||
2010-05-13 | Treat an open of stream ::$DATA as an open of the base file. | Jeremy Allison | 1 | -1/+23 | |
This fixes a class of SMB_ASSERT failures when doing stream tests. Jeremy. | |||||
2010-05-13 | s3:smbd Remove calls to namecache_enable() | Andrew Bartlett | 1 | -2/+0 | |
This only prints a DEBUG() Andrew Bartlett | |||||
2010-05-12 | Pass more SMB2 oplock tests. Only oplock stream tests left to fix. | Jeremy Allison | 2 | -1/+10 | |
Jeremy. | |||||
2010-05-12 | s3-lanman: use samr for api_SamOEMChangePassword(). | Günther Deschner | 1 | -9/+49 | |
Guenther | |||||
2010-05-11 | Fix more SMB2-OPLOCK bugs. Only 3 more issues to address then we're good to ↵ | Jeremy Allison | 2 | -2/+15 | |
go on this test. Jeremy. | |||||
2010-05-11 | s3:kerberos Return PAC_LOGON_INFO rather than the full PAC_DATA | Andrew Bartlett | 1 | -7/+3 | |
All the callers just want the PAC_LOGON_INFO, so search for that in ads_verify_ticket(), and don't bother the callers with the rest of the PAC. This change makes sense on it's own (removing boilerplate wrappers that just confuse the code), but it also makes it much easier to implement a matching ads_verify_ticket() function in Samba4 for the s3compat proposal. Andrew Bartlett Signed-off-by: Günther Deschner <gd@samba.org> | |||||
2010-05-10 | SMB2 always have level2 oplock capability. Correct mapping from break ↵ | Jeremy Allison | 4 | -3/+6 | |
messages to SMB2 oplock levels. Jeremy. | |||||
2010-05-10 | Stop us crashing in SMB2-OPLOCK test. Don't allow more than one outstanding ↵ | Jeremy Allison | 1 | -5/+33 | |
immediate event. Jeremy. | |||||
2010-05-10 | Fix the processing of unlocks followed by locks. We now pass SMB2-LOCK test. | Jeremy Allison | 1 | -9/+5 | |
Jeremy. | |||||
2010-05-10 | Fix more of the SMB2-LOCK tests. Correctly unlock locks on error. | Jeremy Allison | 1 | -3/+19 | |
Jeremy. | |||||
2010-05-09 | s3-lanman: use srvsvc for api_RNetServerGetInfo(). | Günther Deschner | 1 | -45/+47 | |
Following MS-RAP 3.2.5.3 NetServerGetInfo Command. Guenther | |||||
2010-05-09 | s3-spoolss: Make spoolss_Time_to_time_t public. | Simo Sorce | 1 | -15/+0 | |
Signed-off-by: Günther Deschner <gd@samba.org> | |||||
2010-05-07 | Only MULTIPLE-UNLOCK test left to fix ! | Jeremy Allison | 3 | -3/+3 | |
Jeremy. | |||||
2010-05-07 | When tearing down the connection make sure we close all files before | Jeremy Allison | 2 | -0/+8 | |
freeing the global context, as we close access to the locking db before freeing the global context. Jeremy. | |||||
2010-05-07 | This patch looks bigger than it is. It does 2 things. 1). Renames smbpid -> ↵ | Jeremy Allison | 6 | -89/+89 | |
smblctx in our locking code. 2). Widens smblctx to 64-bits internally. Preparing to use the SMB2 handle as the locking context. Jeremy. | |||||
2010-05-07 | Make us pass all SMB2 lock tests except MULTIPLE-UNLOCK and CONTEXT. Them ↵ | Jeremy Allison | 5 | -6/+25 | |
next :-). Jeremy. | |||||
2010-05-07 | Fix crash in cancel-tdis lock test. Correctly shut down connection. | Jeremy Allison | 1 | -1/+1 | |
Jeremy. | |||||
2010-05-06 | Fix cancel by close lock test. | Jeremy Allison | 1 | -24/+36 | |
Jeremy. | |||||
2010-05-06 | Fix more SMB2 locking. We still crash but this won't last :-). | Jeremy Allison | 3 | -49/+99 | |
Jeremy. | |||||
2010-05-05 | Move to MS-FSA algorithm when checking for invalid lock range. | Jeremy Allison | 1 | -7/+0 | |
Satisfies SMB and SMB2. Jeremy. | |||||
2010-05-06 | s3: only include gen_ndr headers where needed. | Günther Deschner | 14 | -0/+14 | |
This shrinks include/includes.h.gch by the size of 7 MB and reduces build time as follows: ccache build w/o patch real 4m21.529s ccache build with patch real 3m6.402s pch build w/o patch real 4m26.318s pch build with patch real 3m6.932s Guenther | |||||
2010-05-05 | Get closer to passing SMB2 lock test. Still crashes but we get further. | Jeremy Allison | 1 | -24/+32 | |
More work to follow later. Jeremy. | |||||
2010-05-05 | Return correct error on read request on directory. | Jeremy Allison | 1 | -0/+4 | |
Jeremy. | |||||
2010-05-05 | Get in_minimum and EOF errors right. | Jeremy Allison | 1 | -1/+11 | |
Jeremy. | |||||
2010-05-05 | Client ignoring max write is a warning, not an error. | Jeremy Allison | 1 | -1/+5 | |
Jeremy. |