summaryrefslogtreecommitdiff
path: root/source3/smbd/ipc.c
AgeCommit message (Collapse)AuthorFilesLines
2012-06-25s3:smbd: make use of smbXsrv_tcon for smb1Stefan Metzmacher1-1/+23
Pair-Programmed-With: Michael Adam <obnox@samba.org> metze
2012-06-06s3:smbd: pass down vuid as uint64_t in ipc.cStefan Metzmacher1-4/+4
metze
2012-06-06s3:include: change files_struct->vuid to uint64_tStefan Metzmacher1-1/+2
metze
2012-05-23s3:smbd: use nt_status_np_pipe for smb1Stefan Metzmacher1-7/+24
metze
2012-05-23s3:smbd: add nt_status_np_pipe()Stefan Metzmacher1-0/+11
This mapps between NT_STATUS_CONNECTION_* to NT_STATUS_PIPE_* metze
2011-12-12s3:smbd/pipes: avoid passing server_event_context() as event context to ↵Stefan Metzmacher1-2/+2
np_{read,write}_send metze
2011-12-12s3:smbd/ipc: pass 'state' as mem_ctx to np_read_send()Stefan Metzmacher1-1/+1
metze
2011-06-09s3-talloc Change TALLOC_P() to talloc()Andrew Bartlett1-1/+1
Using the standard macro makes it easier to move code into common, as TALLOC_P isn't standard talloc.
2011-06-09s3-talloc Change TALLOC_ARRAY() to talloc_array()Andrew Bartlett1-1/+1
Using the standard macro makes it easier to move code into common, as TALLOC_ARRAY isn't standard talloc.
2011-06-09s3-talloc Change TALLOC_REALLOC_ARRAY() to talloc_realloc()Andrew Bartlett1-1/+1
Using the standard macro makes it easier to move code into common, as TALLOC_REALLOC_ARRAY isn't standard talloc. Andrew Bartlett
2011-05-31s3-globals Remove smbd_event_context() (use server_event_context())Andrew Bartlett1-2/+2
This has been a wrapper around server_event_context() for some time now, and removing this from dummmysmbd.c assists with library dependencies. Andrew Bartlett
2011-05-05Fix many const compiler warnings.Jeremy Allison1-1/+1
2011-05-02s3-proto: move more rpc_server prototypes out of proto.hGünther Deschner1-0/+1
Guenther
2011-04-14s3: only include smb profiling where needed.Günther Deschner1-0/+1
Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Thu Apr 14 01:31:39 CEST 2011 on sn-devel-104
2011-03-30s3: include smbd/smbd.h where needed.Günther Deschner1-0/+1
Guenther
2010-08-24s3: Make srv_send_smb take an sconn instead of a sock fdVolker Lendecke1-4/+4
2010-08-16s3: Remove smbd_server_fd from api_dcerpc_cmd_read/write_doneVolker Lendecke1-2/+2
2010-08-16s3: Remove smbd_server_fd from send_trans_replyVolker Lendecke1-2/+2
2010-08-13s3: Fix some error messagesVolker Lendecke1-3/+4
2010-06-12s3: Remove smbd_server_conn from send_trans_replyVolker Lendecke1-1/+1
2010-05-27s3:smbd: add PIPE_BUSY handling for SMBtrans calls on named pipesStefan Metzmacher1-0/+11
metze
2010-02-09Fix bug #7122 - Reading a large browselist fails (server returns invalid ↵Jeremy Allison1-0/+3
values in subsequent SMBtrans replies) There are two problems: 1). The server is off-by-one in the end of buffer space test. 2). The server returns 0 in the totaldata (smb_vwv1) and totalparams (smb_vwv0) fields in the second and subsequent SMBtrans replies. This patch fixes both. Jeremy.
2009-08-07s3:smbd: add a smbd_server_connection pointer to connection_structStefan Metzmacher1-2/+1
This can be NULL for faked connection structs used in the rpc server or printing code. metze
2009-07-20s3: Change fsp->fsp_name to be an smb_filename struct!Tim Prouty1-1/+1
2009-06-03s3:smbd: move tcon specific globals to struct smbd_server_connectionStefan Metzmacher1-1/+2
metze
2009-06-03s3:smbd: move some session specific globals to struct smbd_server_connectionStefan Metzmacher1-0/+2
metze
2009-04-05Fix smbd crash for close_on_completionVolker Lendecke1-0/+4
handle_trans() can talloc_free "conn" if the client requests close_on_completion. "state" is a talloc_child of conn, so it will be gone when we later free state->data et al.
2009-03-23s3:smbd: use new simplified snb_signing code in the serverStefan Metzmacher1-0/+4
We keep the seqnum/mid mapping in the smb_request structure. This also moves one global variable into the smbd_server_connection struct. metze
2009-03-17Convert np_read to tevent_reqVolker Lendecke1-11/+8
2009-03-17Convert np_write to tevent_reqVolker Lendecke1-12/+13
2009-02-09S3: New module interface for SMB message statistics gatheringtodd stecher1-4/+5
This changelist allows for the addition of custom performance monitoring modules through smb.conf. Entrypoints in the main message processing code have been added to capture the command, subop, ioctl, identity and message size statistics.
2009-01-31Convert api_rpc_trans_reply to async np_*Volker Lendecke1-29/+119
2009-01-20Remove some smb fsp knowledge from rpc_server/Volker Lendecke1-3/+10
np_open/read/write don't have to know about files_struct
2009-01-08s3:smbd: move all globals and static variables in globals.[ch]Stefan Metzmacher1-2/+1
The goal is to move all this variables into a big context structure. metze
2008-11-28Consolidate the buffer checks for the reply_trans style functionsVolker Lendecke1-55/+18
This is the one where I found the problem that led to 3.2.5. So if there is one checkin in the last year that I would like others to review and *understand*, it is this one :-) Volker
2008-11-28Remove the variable "size" from reply_transVolker Lendecke1-12/+16
This converts the range checks for the setup[] array to rely on req->wct being set correctly in init_smb_request. As that already verifies the vwv array to be in the range of the smb_request inbuf, we don't have to do overflow checks here anymore. Jeremy, please check thoroughly! :-) Thanks, Volker
2008-11-27Fix the offset checks in the trans routinesVolker Lendecke1-3/+3
This fixes a potential crash bug, a client can make us read memory we should not read. Luckily I got the disp checks right... Volker (cherry picked from commit 64a1d80851da5b05e70ec6c96f6e9bd473748369) (cherry picked from commit f04c5650a3aeca23591ddc781c4b297caaf9bb3f)
2008-11-08Do not write into inbuf for the transs requestVolker Lendecke1-6/+12
Instead, fix up the outbuf in send_xx_reply. In those routines, we know what we are returning.
2008-11-08Remove direct inbuf refs from send_trans_replyVolker Lendecke1-37/+35
2008-11-02Pass smb_request to send_trans_reply to match with send_[nt]trans[2]_replyVolker Lendecke1-9/+9
2008-11-02Use "vwv" in trans parsingVolker Lendecke1-16/+16
2008-11-02Remove a bunch of direct inbuf references by adding "vwv" to smb_requestVolker Lendecke1-6/+6
2008-11-02Simplify params of srvstr_pull_buf_talloc()Volker Lendecke1-2/+2
Now that "req" is available everywhere, use it. Rename srvstr_pull_buf_talloc() to srvstr_pull_req()
2008-11-01Remove a bunch of direct inbuf references by adding "buf" to smb_requestVolker Lendecke1-1/+1
2008-10-13Use "struct files_struct" for pipes instead of smb_np_structVolker Lendecke1-49/+41
2008-10-11Fix some nonempty blank linesVolker Lendecke1-6/+6
2008-10-09Fix a typoVolker Lendecke1-1/+1
2008-06-28Let send_trans_reply work on only the inbufVolker Lendecke1-52/+55
It does not really need the whole smb_request (This used to be commit d3facf4cbdb2915168e91d64c2d8320f67524df8)
2008-05-05Remove connection_struct->mem_ctx, connection_struct is its own parentVolker Lendecke1-1/+1
(This used to be commit 559180f7d30606d1999399d954ceedc798c669a4)
2008-04-07Rewrite the wrap checks to deal with gcc 4.x optimisations.Jeremy Allison1-33/+45
Karolin, please pull once Volker has reviewed. Thanks. Jeremy. (This used to be commit 09852899cadc48abe2f2651ecbceaf881198e648)