Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-06-25 | s3:smbd: make use of smbXsrv_tcon for smb1 | Stefan Metzmacher | 1 | -1/+23 | |
Pair-Programmed-With: Michael Adam <obnox@samba.org> metze | |||||
2012-06-06 | s3:smbd: pass down vuid as uint64_t in ipc.c | Stefan Metzmacher | 1 | -4/+4 | |
metze | |||||
2012-06-06 | s3:include: change files_struct->vuid to uint64_t | Stefan Metzmacher | 1 | -1/+2 | |
metze | |||||
2012-05-23 | s3:smbd: use nt_status_np_pipe for smb1 | Stefan Metzmacher | 1 | -7/+24 | |
metze | |||||
2012-05-23 | s3:smbd: add nt_status_np_pipe() | Stefan Metzmacher | 1 | -0/+11 | |
This mapps between NT_STATUS_CONNECTION_* to NT_STATUS_PIPE_* metze | |||||
2011-12-12 | s3:smbd/pipes: avoid passing server_event_context() as event context to ↵ | Stefan Metzmacher | 1 | -2/+2 | |
np_{read,write}_send metze | |||||
2011-12-12 | s3:smbd/ipc: pass 'state' as mem_ctx to np_read_send() | Stefan Metzmacher | 1 | -1/+1 | |
metze | |||||
2011-06-09 | s3-talloc Change TALLOC_P() to talloc() | Andrew Bartlett | 1 | -1/+1 | |
Using the standard macro makes it easier to move code into common, as TALLOC_P isn't standard talloc. | |||||
2011-06-09 | s3-talloc Change TALLOC_ARRAY() to talloc_array() | Andrew Bartlett | 1 | -1/+1 | |
Using the standard macro makes it easier to move code into common, as TALLOC_ARRAY isn't standard talloc. | |||||
2011-06-09 | s3-talloc Change TALLOC_REALLOC_ARRAY() to talloc_realloc() | Andrew Bartlett | 1 | -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-31 | s3-globals Remove smbd_event_context() (use server_event_context()) | Andrew Bartlett | 1 | -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-05 | Fix many const compiler warnings. | Jeremy Allison | 1 | -1/+1 | |
2011-05-02 | s3-proto: move more rpc_server prototypes out of proto.h | Günther Deschner | 1 | -0/+1 | |
Guenther | |||||
2011-04-14 | s3: only include smb profiling where needed. | Günther Deschner | 1 | -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-30 | s3: include smbd/smbd.h where needed. | Günther Deschner | 1 | -0/+1 | |
Guenther | |||||
2010-08-24 | s3: Make srv_send_smb take an sconn instead of a sock fd | Volker Lendecke | 1 | -4/+4 | |
2010-08-16 | s3: Remove smbd_server_fd from api_dcerpc_cmd_read/write_done | Volker Lendecke | 1 | -2/+2 | |
2010-08-16 | s3: Remove smbd_server_fd from send_trans_reply | Volker Lendecke | 1 | -2/+2 | |
2010-08-13 | s3: Fix some error messages | Volker Lendecke | 1 | -3/+4 | |
2010-06-12 | s3: Remove smbd_server_conn from send_trans_reply | Volker Lendecke | 1 | -1/+1 | |
2010-05-27 | s3:smbd: add PIPE_BUSY handling for SMBtrans calls on named pipes | Stefan Metzmacher | 1 | -0/+11 | |
metze | |||||
2010-02-09 | Fix bug #7122 - Reading a large browselist fails (server returns invalid ↵ | Jeremy Allison | 1 | -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-07 | s3:smbd: add a smbd_server_connection pointer to connection_struct | Stefan Metzmacher | 1 | -2/+1 | |
This can be NULL for faked connection structs used in the rpc server or printing code. metze | |||||
2009-07-20 | s3: Change fsp->fsp_name to be an smb_filename struct! | Tim Prouty | 1 | -1/+1 | |
2009-06-03 | s3:smbd: move tcon specific globals to struct smbd_server_connection | Stefan Metzmacher | 1 | -1/+2 | |
metze | |||||
2009-06-03 | s3:smbd: move some session specific globals to struct smbd_server_connection | Stefan Metzmacher | 1 | -0/+2 | |
metze | |||||
2009-04-05 | Fix smbd crash for close_on_completion | Volker Lendecke | 1 | -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-23 | s3:smbd: use new simplified snb_signing code in the server | Stefan Metzmacher | 1 | -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-17 | Convert np_read to tevent_req | Volker Lendecke | 1 | -11/+8 | |
2009-03-17 | Convert np_write to tevent_req | Volker Lendecke | 1 | -12/+13 | |
2009-02-09 | S3: New module interface for SMB message statistics gathering | todd stecher | 1 | -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-31 | Convert api_rpc_trans_reply to async np_* | Volker Lendecke | 1 | -29/+119 | |
2009-01-20 | Remove some smb fsp knowledge from rpc_server/ | Volker Lendecke | 1 | -3/+10 | |
np_open/read/write don't have to know about files_struct | |||||
2009-01-08 | s3:smbd: move all globals and static variables in globals.[ch] | Stefan Metzmacher | 1 | -2/+1 | |
The goal is to move all this variables into a big context structure. metze | |||||
2008-11-28 | Consolidate the buffer checks for the reply_trans style functions | Volker Lendecke | 1 | -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-28 | Remove the variable "size" from reply_trans | Volker Lendecke | 1 | -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-27 | Fix the offset checks in the trans routines | Volker Lendecke | 1 | -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-08 | Do not write into inbuf for the transs request | Volker Lendecke | 1 | -6/+12 | |
Instead, fix up the outbuf in send_xx_reply. In those routines, we know what we are returning. | |||||
2008-11-08 | Remove direct inbuf refs from send_trans_reply | Volker Lendecke | 1 | -37/+35 | |
2008-11-02 | Pass smb_request to send_trans_reply to match with send_[nt]trans[2]_reply | Volker Lendecke | 1 | -9/+9 | |
2008-11-02 | Use "vwv" in trans parsing | Volker Lendecke | 1 | -16/+16 | |
2008-11-02 | Remove a bunch of direct inbuf references by adding "vwv" to smb_request | Volker Lendecke | 1 | -6/+6 | |
2008-11-02 | Simplify params of srvstr_pull_buf_talloc() | Volker Lendecke | 1 | -2/+2 | |
Now that "req" is available everywhere, use it. Rename srvstr_pull_buf_talloc() to srvstr_pull_req() | |||||
2008-11-01 | Remove a bunch of direct inbuf references by adding "buf" to smb_request | Volker Lendecke | 1 | -1/+1 | |
2008-10-13 | Use "struct files_struct" for pipes instead of smb_np_struct | Volker Lendecke | 1 | -49/+41 | |
2008-10-11 | Fix some nonempty blank lines | Volker Lendecke | 1 | -6/+6 | |
2008-10-09 | Fix a typo | Volker Lendecke | 1 | -1/+1 | |
2008-06-28 | Let send_trans_reply work on only the inbuf | Volker Lendecke | 1 | -52/+55 | |
It does not really need the whole smb_request (This used to be commit d3facf4cbdb2915168e91d64c2d8320f67524df8) | |||||
2008-05-05 | Remove connection_struct->mem_ctx, connection_struct is its own parent | Volker Lendecke | 1 | -1/+1 | |
(This used to be commit 559180f7d30606d1999399d954ceedc798c669a4) | |||||
2008-04-07 | Rewrite the wrap checks to deal with gcc 4.x optimisations. | Jeremy Allison | 1 | -33/+45 | |
Karolin, please pull once Volker has reviewed. Thanks. Jeremy. (This used to be commit 09852899cadc48abe2f2651ecbceaf881198e648) |