summaryrefslogtreecommitdiffstats
path: root/source4/smb_server
Commit message (Collapse)AuthorAgeFilesLines
* Change uint_t to unsigned int in source4Matt Kraai2010-02-026-24/+24
| | | | Signed-off-by: Stefan Metzmacher <metze@samba.org>
* s4:auth: change auth_check_password_send/recv to tevent_reqStefan Metzmacher2009-12-241-13/+26
| | | | metze
* s4:gensec: change gensec_update_send/recv to tevent_reqStefan Metzmacher2009-12-242-10/+27
| | | | metze
* s4:smb_server: fix mixing socket_address and tsocket_addressStefan Metzmacher2009-12-241-6/+9
| | | | metze
* s4:auth Change 'get_challenge' API to be more like Samba3Andrew Bartlett2009-12-221-4/+1
| | | | | | | It is just easier to fill in the known to be 8 byte challenge than stuff about with allocated pointers. Andrew Bartlett
* s4-server: use GUID_to_ndr_blob() in cldap and smb serversAndrew Tridgell2009-12-102-9/+6
|
* s4-smb2: use new GUID function in smb2 negprotAndrew Tridgell2009-12-101-3/+2
|
* s4:smb_server/smb2: don't reset highest_smb2_seqnum on SMB2 CancelStefan Metzmacher2009-11-271-2/+4
| | | | metze
* s4-smb2: sequence numbers are not checked in SMB2_OP_CANCELAndrew Tridgell2009-11-271-1/+2
|
* s4/libcli: rename previously reserved field in SMB2 LOCK structSteven Danneman2009-11-251-1/+1
| | | | | The lock.in.reserved field has been renamed lock_sequence in the SMB 2.1 dialect. See MS-SMB 2.2.26.
* s4-samdb: reduce the number of samdb opens at startupAndrew Tridgell2009-10-251-14/+0
| | | | | Using common parameters means that the ldb_wrap code can return a reference rather than a new database
* s4-smbserver: removed bogus initialisation of two union armsAndrew Tridgell2009-10-172-2/+0
| | | | Thanks to Metze for spotting this.
* s4-smb: fill in fnum as well for root_fidAndrew Tridgell2009-10-152-1/+3
| | | | This helps with the CIFS NTVFS backend, but doesn't solve all problems
* s4-smbserver: fixed root_fid in nttrans createAndrew Tridgell2009-10-151-1/+1
|
* s4-smb: declare root_fid as a file handleAndrew Tridgell2009-10-152-2/+2
| | | | | | In order to implement root_fid in the s4 SMB server we need to declare it as a handle type, just as for other fnum values in SMB. This required some extensive (but simple) changes in many bits of code.
* s4-smbd: minimise includes in smbd/ and smb_serverAndrew Tridgell2009-09-1919-37/+0
|
* s4-server: kill main daemon if a task fails to initialiseAndrew Tridgell2009-09-182-2/+2
| | | | | | When one of our core tasks fails to initialise it can now ask for the server as a whole to die, rather than limping along in a degraded state.
* changed BCC handling for SMBwriteX to handle broken MacOSX clientAndrew Tridgell2009-08-051-13/+8
| | | | | | | | | | | | | see bug #6610 The MacOSX SMB client sets the BCC value in SMBwriteX calls to zero instead of the correct size. Checking against WindowsXP, I've found that Windows uses the maximum of the computed buffer size and the given BCC value. I've changed Samba4 to do the same to allow MacOSX to work. I've limited this change to non-chained packets to ensure we don't get the possibility of exploits based on overlapping chained requests
* on buffer overflow windows gives SMBSRV:ERRerror hereAndrew Tridgell2009-08-051-1/+1
|
* fixed support for readx greater than 64kAndrew Tridgell2009-08-041-1/+2
| | | | | This fixes bug 6547, where smbclient in S3 reads more than 64k at a time with readx.
* use the new talloc_reparent in two placesAndrew Tridgell2009-07-011-1/+1
|
* s4:smb2srv: don't allow the related flag on the first request in a ↵Stefan Metzmacher2009-06-091-0/+7
| | | | | | compounded chain metze
* s4:smb2srv: correctly fail remaining compounded requests after a failureStefan Metzmacher2009-06-092-5/+18
| | | | metze
* s4:smb2srv: remove old TODO comment, we already check the seqnumStefan Metzmacher2009-06-091-2/+0
| | | | metze
* s4:smb2srv: fix handling of multiple compounded requestsStefan Metzmacher2009-06-091-7/+12
| | | | metze
* s4:smb2srv: remove the chained file handle on closeStefan Metzmacher2009-06-091-0/+4
| | | | metze
* s4:smb2srv: We only support SMB 2.002.Stefan Metzmacher2009-05-262-6/+12
| | | | | | | We need to loop over all given dialects and check if we can find SMB2_DIALECT_REVISION_202. metze
* Have ntvfs_connect() accept union smb_tcon *tcon instead of char* sharenameSam Liddicott2009-05-203-30/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change brings ntvfs_connect into compliance with other ntvfs functions which take an ntvfs module, an ntvfs request and an smb io union. It now becomes the responsibility of ntvfs modules to examine tcon->generic.level themselves and derive the share name and any other options directly; e.g. const char *sharename; switch (tcon->generic.level) { case RAW_TCON_TCON: sharename = tcon->tcon.in.service; break; case RAW_TCON_TCONX: sharename = tcon->tconx.in.path; break; case RAW_TCON_SMB2: default: return NT_STATUS_INVALID_LEVEL; } if (strncmp(sharename, "\\\\", 2) == 0) { char *p = strchr(sharename+2, '\\'); if (p) { sharename = p + 1; } } service.c smbsrv_tcon_backend() is called before ntvfs_connect and fills in some of the tcon->..out values. For the case of RAW_TCON_TCONX, it filles out tcon->tconx.out.tid and tcon->tconx.out.options For the case of RAW_TCON_TCON it fills out tcon->tcon.out.tid and tcon->tcon.out.max_xmit Thus the ntvfs_connect function for vfs modules may override these values if desired, but are not required to. ntvfs_connect functions are required to fill in the tcon->tconx.out.*_type fields, for RAW_TCON_TCONX, perhaps something like: if (tcon->generic.level == RAW_TCON_TCONX) { tcon->tconx.out.fs_type = ntvfs->ctx->fs_type; tcon->tconx.out.dev_type = ntvfs->ctx->dev_type; } Signed-off-by: Sam Liddicott <sam@liddicott.com> (I fixed the ntvfs_connect() in the smb_server/smb2/ and the RAW_TCON_SMB2 switch case in the modules) Signed-off-by: Stefan Metzmacher <metze@samba.org>
* s4:smb_server: initialy read the first 4 bytes onlySam Liddicott2009-05-201-0/+1
| | | | | | | | Stop packet_recv getting greedy and reading the whole socket and then dispatching te extra packets in a timer loop Signed-off-by: Sam Liddicott <sam@liddicott.com> Signed-off-by: Stefan Metzmacher <metze@samba.org>
* s4:smb_server: return after we have processed an invalid smb2 requestStefan Metzmacher2009-05-111-0/+2
| | | | metze
* Add async support for reply_tcon* and ntvfs_connectSam Liddicott2009-04-232-70/+105
| | | | | | | | | | | | | | | | | | | | | | | smbsrv_tcon_backend no longer creates the ntvfs_request wrapper, so smbsrv_reply_tcon* can now do this and then invoke ntvfs_connect in the typical manner using SMBSRV_SETUP_NTVFS_REQUEST and SMBSRV_CALL_NTVFS_BACKEND Previously smbsrv_tcon_backend has been responsible for instantiating the ntvfs_module_context to service a tree-connect request, and then create an ntvfs_request wrapper around the smbsrv_request and pass this to ntvfs_connect for the newly created ntvfs. These actions could not be invoked asynchronously. This meant that any client requests made while instantiating the ntvfs module, including any composite's used during authentication (or related client connections for the case of proxy modules) would block other ntvfs modules and requests in the current process as they executed a nested event loop to await completion. Signed-off-by: Sam Liddicott <sam@liddicott.com> Signed-off-by: Stefan Metzmacher <metze@samba.org>
* s4: Use same function signature for convert_* as s3.Jelmer Vernooij2009-03-011-6/+6
|
* Add allow_badcharcnv argument to all conversion function, forJelmer Vernooij2009-03-011-2/+2
| | | | consistency with Samba 3.
* Remove auth/ntlm as a dependency of GENSEC by means of function pointers.Andrew Bartlett2009-02-136-48/+49
| | | | | | | | | | | When starting GENSEC on the server, the auth subsystem context must be passed in, which now includes function pointers to the key elements. This should (when the other dependencies are fixed up) allow GENSEC to exist as a client or server library without bundling in too much of our server code. Andrew Bartlett
* s4:service_stream: s/private/private_dataStefan Metzmacher2009-02-021-3/+3
| | | | metze
* s4:smb_server: s/private/private_dataStefan Metzmacher2009-02-026-14/+14
| | | | metze
* s4:irpc: avoid c++ reserved word 'private'Stefan Metzmacher2009-02-011-2/+4
| | | | metze
* Fix the mess with ldb includes.Simo Sorce2009-01-301-1/+0
| | | | | | | | Separate again the public from the private headers. Add a new header specific for modules. Also add service function for modules as now ldb_context and ldb_module are opaque structures for them.
* s4:lib/tevent: rename structsStefan Metzmacher2008-12-293-4/+4
| | | | | | | | | | | | | | | | | | | | list="" list="$list event_context:tevent_context" list="$list fd_event:tevent_fd" list="$list timed_event:tevent_timer" for s in $list; do o=`echo $s | cut -d ':' -f1` n=`echo $s | cut -d ':' -f2` r=`git grep "struct $o" |cut -d ':' -f1 |sort -u` files=`echo "$r" | grep -v source3 | grep -v nsswitch | grep -v packaging4` for f in $files; do cat $f | sed -e "s/struct $o/struct $n/g" > $f.tmp mv $f.tmp $f done done metze
* Fix two remaining missing symbols in smbtorture4.Jelmer Vernooij2008-12-221-0/+1
|
* Fix missing symbols issues when building with shared libraries.Jelmer Vernooij2008-12-221-1/+1
|
* s4: Fix subsystem for various services in samba daemon.Jelmer Vernooij2008-12-221-1/+1
|
* s4: fix LIBEVENTS dependencies and use more forward declarationsStefan Metzmacher2008-12-171-1/+2
| | | | | | | We should only include events.h where we really need it and prefer forward declarations of 'struct event_context' metze
* Let ntvfs request transport close via ntvfs_request stateSam Liddicott2008-12-052-0/+22
| | | | | | | | | | | | | [I can't swear that this covers all the smb2 cases, there are some reply functions that I can't trace properly] Add NTVFS_ASYNC_STATE_CLOSE bit to ntvfs_request->async_states->state so that the ntvfs layer can signify that the client transport should be closed, most useful for proxy servies, and most likely due to a forwarding transport having been closed. Signed-off-by: Sam Liddicott <sam@liddicott.com> Signed-off-by: Stefan Metzmacher <metze@samba.org>
* Fix the build.Jelmer Vernooij2008-11-021-1/+1
|
* Add gensec_settings structure. This wraps loadparm_context for now, butJelmer Vernooij2008-11-024-4/+4
| | | | should in the future only contain some settings required for gensec.
* Remove unused include param/param.h.Jelmer Vernooij2008-10-244-4/+0
|
* Remove iconv_convenience argument from convert_string{,talloc}() butJelmer Vernooij2008-10-241-2/+2
| | | | make them wrappers around convert_string{,talloc}_convenience().
* Remove iconv_convenience parameter from simple string push/pullJelmer Vernooij2008-10-244-5/+5
| | | | functions.
* Fixed a variable undeclared compilation errorTim Prouty2008-10-131-0/+1
| | | | | Explicitly declaring environ eliminates a compilation error on some systems.