Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-02-16 | s3-librpc: Use gensec_spnego for DCE/RPC authentication | Andrew Bartlett | 1 | -42/+0 | |
This ensures that we use the same SPNEGO code on session setup and on DCE/RPC binds, and simplfies the calling code as spnego is no longer a special case in cli_pipe.c A special case wrapper function remains to avoid changing the application layer callers in this patch. Andrew Bartlett Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2012-01-18 | s3-librpc Remove special case for spnego dcerpc sign/seal | Andrew Bartlett | 1 | -92/+18 | |
SPNEGO is implemented only in terms of gensec mechanisms now. Andrew Bartlett Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2012-01-18 | s3-librpc: Simplify SPNEGO code now that all mechs use a struct gensec_security | Andrew Bartlett | 1 | -3/+1 | |
Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2012-01-18 | s3-librpc Call SPENGO/GSSAPI via the auth_generic layer and gensec | Andrew Bartlett | 1 | -25/+2 | |
This simplifies a lot of code, as we know we are always dealing with a struct gensec_security, and allows the gensec module being used to implement GSSAPI to be swapped for AD-server operation. Andrew Bartlett Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2012-01-18 | s3-librpc Call GSSAPI via the auth_generic layer and gensec | Andrew Bartlett | 1 | -108/+3 | |
This simplifies a lot of code, as we know we are always dealing with a struct gensec_security, and allows the gensec module being used to implement GSSAPI to be swapped when required for AD-server operation. Andrew Bartlett Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2012-01-11 | s3-librpc: rename get_ntlmssp_auth_footer to be more generic | Andrew Bartlett | 1 | -5/+5 | |
This can handle any gensec auth type now. Andrew Bartlett Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2012-01-05 | s3-librpc remove unused headers | Andrew Bartlett | 1 | -2/+0 | |
Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2011-12-22 | s3-librpc Use gensec_sig_size() instead of a fixed NTLMSSP_SIG_SIZE | Andrew Bartlett | 1 | -2/+7 | |
Signed-off-by: Stefan Metzmacher <metze@samba.org> Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Thu Dec 22 20:57:27 CET 2011 on sn-devel-104 | |||||
2011-10-21 | s3-ntlmssp Remove references to auth_ntlmssp_context from the rpc code | Andrew Bartlett | 1 | -15/+15 | |
We always dereferenced auth_ntlmssp_state->gensec_security, so now we do not bother passing around the whole auth_ntlmssp_state. Andrew Bartlett Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2011-10-21 | s3-ntlmssp use gensec_{seal,unseal,sign,check}_packet | Andrew Bartlett | 1 | -28/+29 | |
This avoids the indirection via the auth_ntlmsssp wrapper functions. Andrew Bartlett Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2011-10-18 | ntlmssp: Move ntlmssp code to auth/ntlmssp | Andrew Bartlett | 1 | -1/+1 | |
This brings in the code from both libcli/auth and source4/auth/ntlmssp. Andrew Bartlett Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2011-08-03 | gensec: Remove mem_ctx from calls that do not return memory | Andrew Bartlett | 1 | -2/+2 | |
Signed-off-by: Andrew Tridgell <tridge@samba.org> | |||||
2011-05-02 | s3: remove various references to server side dcerpc structs (which are not ↵ | Günther Deschner | 1 | -1/+0 | |
needed). Guenther | |||||
2011-03-30 | s3-includes: only include ntdomain.h where needed. | Günther Deschner | 1 | -0/+1 | |
Guenther | |||||
2011-03-08 | s3-rpc_client: Added DCERPC_AUTH_TYPE_NCALRPC bind. | Andreas Schneider | 1 | -1/+4 | |
Signed-off-by: Günther Deschner <gd@samba.org> | |||||
2011-01-03 | s3:librpc: use netsec_outgoing_sig_size() instead of a hardcoded signature | Stefan Metzmacher | 1 | -1/+4 | |
size metze | |||||
2010-09-23 | s3-dcerpc: Use spnego own sign/seal functions | Simo Sorce | 1 | -64/+47 | |
Signed-off-by: Günther Deschner <gd@samba.org> | |||||
2010-09-23 | s3-dcerpc: make auth context opaque | Simo Sorce | 1 | -16/+41 | |
This way we always double check in advance that the context is of the right type with talloc_get_type_abort instead of potentially accessing random memory by addressing the wrong structure in the union. Signed-off-by: Günther Deschner <gd@samba.org> | |||||
2010-09-23 | s3-dcerpc: finally remove the legaqcy spnego_type variable from pipe_auth_data | Simo Sorce | 1 | -26/+0 | |
Signed-off-by: Günther Deschner <gd@samba.org> | |||||
2010-09-23 | s3-dcerpc: move client spnego stuff in /librpc/crypto | Simo Sorce | 1 | -1/+1 | |
Signed-off-by: Günther Deschner <gd@samba.org> | |||||
2010-09-23 | spnego: avoid explicit dependency on dcerpc specific structures | Simo Sorce | 1 | -9/+9 | |
Signed-off-by: Günther Deschner <gd@samba.org> | |||||
2010-09-23 | s3-dcerpc: move crypto stuff in /librpc/crypto | Simo Sorce | 1 | -1/+1 | |
Signed-off-by: Günther Deschner <gd@samba.org> | |||||
2010-08-17 | s3-dcerpc: Pull packet in the caller, before validation | Simo Sorce | 1 | -0/+1 | |
2010-08-13 | s3-dcerpc: fix build warning seen with -O3. | Günther Deschner | 1 | -3/+3 | |
"warning: assuming signed overflow does not occur when assuming that (X + c) < X is always false" Guenther | |||||
2010-07-30 | s3-dceprc: Improve dcerpc_guess_sizes() interface | Simo Sorce | 1 | -18/+25 | |
Make it possible to pass in the NDR padding size so that theoretically client and server code can decide to use a different alignment. Pass in the header length as a parameter so that this function can be used for different type of packets. Make sure padding size will not make the fragment exceed the maximum length. Calculate padding taking in account the header length. | |||||
2010-07-30 | s3-dcerpc: rationalize packet creation in the server code | Simo Sorce | 1 | -0/+6 | |
Move all related functions into create_next_packet, but make it transport neutral (not pass in pipse_struct) | |||||
2010-07-30 | s3-dcerpc: Make function to guess pdu sizes common. | Simo Sorce | 1 | -0/+117 | |
2010-07-30 | s3-dcerpc: use common spengo wrapper code for client SPNEGO/NTLMSSP | Simo Sorce | 1 | -27/+83 | |
2010-07-30 | s3-dcerpc: add sign/seal support when using SPNEGO/KRB5 | Simo Sorce | 1 | -86/+192 | |
2010-07-28 | s3-dcerpc: Add sign/seal with gssapi | Simo Sorce | 1 | -0/+86 | |
2010-07-28 | s3-dcerpc: Use dcerpc_AuthType in pipe_auth_data | Simo Sorce | 1 | -13/+20 | |
2010-07-28 | s3-dcerpc: Make dcerpc_check_auth() common code | Simo Sorce | 1 | -0/+172 | |
2010-07-28 | s3-dcerpc: Move dcerpc_add_auth_footer() to the common helpers file | Simo Sorce | 1 | -0/+216 | |
2010-07-16 | s3-dcerpc: Fix ability to receive Big Endian PDUs | Simo Sorce | 1 | -6/+30 | |
2010-07-16 | s3-dcerpc: Move common helpers into a common file | Simo Sorce | 1 | -0/+212 | |
Signed-off-by: Günther Deschner <gd@samba.org> |