Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-02-17 | Fix bug #7146 - Samba miss-parses authenticated RPC packets. | Jeremy Allison | 1 | -3/+2 | |
Parts of the Samba RPC client and server code misinterpret authenticated packets. DCE authenticated packets actually look like this : +--------------------------+ |header | | ... frag_len (packet len)| | ... auth_len | +--------------------------+ | | | Data payload | ... .... | | +--------------------------+ | | | auth_pad_len bytes | +--------------------------+ | | | Auth footer | | auth_pad_len value | +--------------------------+ | | | Auth payload | | (auth_len bytes long) | +--------------------------+ That's right. The pad bytes come *before* the footer specifying how many pad bytes there are. In order to read this you must seek to the end of the packet and subtract the auth_len (in the packet header) and the auth footer length (a known value). The client and server code gets this right (mostly) in 3.0.x -> 3.4.x so long as the pad alignment is on an 8 byte boundary (there are some special cases in the code for this). Tridge discovered there are some (DRS replication) cases where on 64-bit machines where the pad alignment is on a 16-byte boundary. This breaks the existing S3 hand-optimized rpc code. This patch removes all the special cases in client and server code, and allows the pad alignment for generated packets to be specified by changing a constant in include/local.h (this doesn't affect received packets, the new code always handles them correctly whatever pad alignment is used). This patch also works correctly with rpcclient using sign+seal from the 3.4.x and 3.3.x builds (testing with 3.0.x and 3.2.x to follow) so even as a server it should still work with older libsmbclient and winbindd code. Jeremy | |||||
2009-11-03 | s3: Remove debug_ctx() | Volker Lendecke | 1 | -1/+1 | |
smbd just crashed on me: In a debug message I called a routine preparing a string that itself used debug_ctx. The outer routine also used it after the inner routine had returned. It was still referencing the talloc context that the outer debug_ctx() had given us, which the inner DEBUG had already freed. | |||||
2009-10-01 | s3: add perfcount idl and generated files. | Günther Deschner | 1 | -42/+0 | |
Guenther | |||||
2009-09-30 | s3-rpc_parse: remove unused prs_string. | Günther Deschner | 1 | -44/+0 | |
Guenther | |||||
2009-09-30 | s3-rpc_parse: remove unused UNISTR2 struct and init function. | Günther Deschner | 1 | -56/+0 | |
Guenther | |||||
2009-09-16 | s3-dcerpc: remove more obsolete or duplicate headers. | Günther Deschner | 1 | -1/+1 | |
Guenther | |||||
2009-09-16 | s3-schannel: remove unused schannel_decode/schannel_encode. | Günther Deschner | 1 | -286/+0 | |
Guenther | |||||
2009-09-15 | s3-dcerpc: use dcerpc_AuthLevel and remove duplicate set of flags. | Günther Deschner | 1 | -8/+8 | |
Guenther | |||||
2009-09-13 | s3-schannel: fix Coverity #950 OVERRUN_STATIC. | Günther Deschner | 1 | -1/+1 | |
Guenther | |||||
2009-09-11 | s3-schannel: remove last schannel hand-marshalling function. | Günther Deschner | 1 | -31/+0 | |
Guenther | |||||
2009-09-11 | s3-schannel: use NL_AUTH_SIGNATURE for schannel sign & seal (client & server). | Günther Deschner | 1 | -63/+55 | |
Guenther | |||||
2009-09-11 | s3-schannel: remove unused code. | Günther Deschner | 1 | -63/+0 | |
Guenther | |||||
2009-09-08 | s3: remove unused RPC_AUTH_SCHANNEL_NEG struct and parsing functions. | Günther Deschner | 1 | -41/+0 | |
Guenther | |||||
2009-07-16 | s3-rpc_parse: remove more unused code. | Günther Deschner | 1 | -318/+0 | |
Guenther | |||||
2009-07-05 | Add const to init_rpc_hdr_ba | Volker Lendecke | 1 | -1/+1 | |
2009-07-05 | Remove "typedef struct ndr_syntax_id RPC_IFACE;" | Volker Lendecke | 1 | -6/+8 | |
2009-04-14 | Rework Samba3 to use new libcli/auth code (partial) | Andrew Bartlett | 1 | -6/+6 | |
This commit is mostly to cope with the removal of SamOemHash (replaced by arcfour_crypt()) and other collisions (such as changed function arguments compared to Samba3). We still provide creds_hash3 until Samba3 uses the credentials code in netlogon server Andrew Bartlett | |||||
2009-04-07 | s3:rpc_parse remove unused prs_unistr2() | Andrew Bartlett | 1 | -38/+0 | |
Signed-off-by: Günther Deschner <gd@samba.org> | |||||
2009-03-26 | s3:rpc_parse: remove unused init_unistr(). | Günther Deschner | 1 | -19/+0 | |
Guenther | |||||
2009-03-25 | s3-rpc_parse: remove unused smb_io_domsid(). | Günther Deschner | 1 | -38/+0 | |
Guenther | |||||
2009-03-25 | s3: remove unused rpc_parse/parse_sec.c file. | Günther Deschner | 1 | -436/+0 | |
Guenther | |||||
2009-03-18 | s3-rpc_parse: remove some unused parsing code. | Günther Deschner | 1 | -338/+0 | |
Guenther | |||||
2009-03-18 | s3-rpc_parse: remove unused BUFFER5 and UNISTR3. | Günther Deschner | 2 | -142/+0 | |
Guenther | |||||
2009-03-18 | s3-spoolss: remove rpc_parse/parse_spoolss.c alltogether. | Günther Deschner | 1 | -29/+0 | |
Good-Bye, last hand-marshalled rpc functions, rest in peace. Guenther | |||||
2009-03-18 | s3-spoolss: remove old spoolss_EnumPrinterDataEx. | Günther Deschner | 1 | -251/+0 | |
Guenther | |||||
2009-03-18 | s3-rpc_parse: move prs_uint64 to rpc_parse/parse_prs.c. | Günther Deschner | 2 | -24/+24 | |
Guenther | |||||
2009-03-18 | s3-spoolss: remove custom syntax_spoolss and use the syntax defined in IDL. | Günther Deschner | 1 | -10/+0 | |
Guenther | |||||
2009-03-17 | s3-spoolss: remove unused DEVICEMODE parsing and header. | Günther Deschner | 1 | -189/+0 | |
Guenther | |||||
2009-03-17 | s3-spoolss: move SYSTEMTIME parsing to a more generic place, as suggested. | Günther Deschner | 2 | -43/+42 | |
Guenther | |||||
2009-03-17 | s3: remove rpc_parse/parse_buffer.c completely. | Günther Deschner | 1 | -509/+0 | |
Guenther | |||||
2009-03-17 | s3-spoolss: remove old spoolss_EnumPrinterKey. | Günther Deschner | 1 | -53/+0 | |
Guenther | |||||
2009-03-17 | s3-spoolss: remove old rpccli_spoolss_enumprinterkey wrapper. | Günther Deschner | 1 | -16/+0 | |
Guenther | |||||
2009-03-17 | s3-spoolss: remove spoolss_EnumPrinterData. | Günther Deschner | 1 | -79/+0 | |
Guenther | |||||
2009-03-17 | s3-spoolss: remove rpccli_spoolss_enumprinterdata. | Günther Deschner | 1 | -15/+0 | |
Guenther | |||||
2009-03-17 | s3-spoolss: remove old spoolss_SetPrinterData. | Günther Deschner | 1 | -65/+0 | |
Guenther | |||||
2009-03-17 | s3-spoolss: remove old rpccli_spoolss_setprinterdata wrapper. | Günther Deschner | 1 | -15/+0 | |
Guenther | |||||
2009-03-17 | s3-spoolss: remove old spoolss_GetPrinterData. | Günther Deschner | 1 | -69/+0 | |
Guenther | |||||
2009-03-17 | s3-spoolss: remove old rpccli_spoolss_getprinterdata. | Günther Deschner | 1 | -19/+0 | |
Guenther | |||||
2009-03-13 | s3-spoolss: remove more unused marshalling code. | Günther Deschner | 1 | -713/+0 | |
Guenther | |||||
2009-03-13 | s3-spoolss: remove old spoolss_GetPrinter. | Günther Deschner | 1 | -58/+0 | |
Guenther | |||||
2009-03-13 | s3-spoolss: remove old spoolss_EnumPrinters. | Günther Deschner | 1 | -67/+0 | |
Guenther | |||||
2009-03-13 | s3-spoolss: remove old enumprinters wrapper. | Günther Deschner | 1 | -25/+0 | |
Guenther | |||||
2009-03-13 | s3-spoolss: remove old spoolss_GetPrinterDriver2. | Günther Deschner | 1 | -309/+0 | |
Guenther | |||||
2009-03-13 | s3-spoolss: remove old spoolss_EnumPrinterDrivers. | Günther Deschner | 1 | -72/+0 | |
Guenther | |||||
2009-03-13 | s3-spoolss: remove old rpccli_spoolss_enumprinterdrivers wrapper. | Günther Deschner | 1 | -20/+0 | |
Guenther | |||||
2009-03-13 | s3-spoolss: remove old spoolss_GetJob and spoolss_EnumJob. | Günther Deschner | 1 | -310/+0 | |
Guenther | |||||
2009-03-13 | s3-spoolss: remove old rpccli_spoolss_enumjobs wrapper. | Günther Deschner | 1 | -23/+0 | |
Guenther | |||||
2009-03-07 | s3-spoolss: remove more leftovers from old enumports call. | Günther Deschner | 1 | -77/+0 | |
Guenther | |||||
2009-03-07 | s3-spoolss: remove old spoolss_EnumMonitors. | Günther Deschner | 1 | -130/+0 | |
Guenther | |||||
2009-03-07 | s3-spoolss: remove old spoolss_EnumPorts. | Günther Deschner | 1 | -126/+0 | |
Guenther |