diff options
| author | Stefan Metzmacher <metze@samba.org> | 2016-06-20 16:26:56 +0200 |
|---|---|---|
| committer | Karolin Seeger <kseeger@samba.org> | 2016-08-04 10:59:19 +0200 |
| commit | 90c2a94b9686d86457d74767310b4b72f90d8c82 (patch) | |
| tree | de568b23b28966803f56fabcab29e3aeb91ad0ab | |
| parent | 30b5b9fd97ee68d0c78f1f820b552afa33f065f4 (diff) | |
| download | samba-90c2a94b9686d86457d74767310b4b72f90d8c82.tar.gz samba-90c2a94b9686d86457d74767310b4b72f90d8c82.tar.bz2 samba-90c2a94b9686d86457d74767310b4b72f90d8c82.zip | |
librpc/rpc: ignore invalid auth_pad_length values in BIND, ALTER and AUTH3 pdus
This is a workarround for a bug in old Samba releases.
For BIND_ACK <= 3.5.x and for ALTER_RESP <= 4.2.x (see bug #11061).
BUG: https://bugzilla.samba.org/show_bug.cgi?id=11982
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
(cherry picked from commit aef032302863e5f3a888dbf4c52b21d561a0dff4)
| -rw-r--r-- | librpc/rpc/dcerpc_util.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/librpc/rpc/dcerpc_util.c b/librpc/rpc/dcerpc_util.c index ee7b30779c4..df149481559 100644 --- a/librpc/rpc/dcerpc_util.c +++ b/librpc/rpc/dcerpc_util.c @@ -194,6 +194,22 @@ NTSTATUS dcerpc_pull_auth_trailer(const struct ncacn_packet *pkt, return NT_STATUS_RPC_PROTOCOL_ERROR; } + /* + * This is a workarround for a bug in old + * Samba releases. For BIND_ACK <= 3.5.x + * and for ALTER_RESP <= 4.2.x (see bug #11061) + * + * See also bug #11982. + */ + if (auth_data_only && data_and_pad == 0 && + auth->auth_pad_length > 0) { + /* + * we need to ignore invalid auth_pad_length + * values for BIND_*, ALTER_* and AUTH3 pdus. + */ + auth->auth_pad_length = 0; + } + if (data_and_pad < auth->auth_pad_length) { DEBUG(1, (__location__ ": ERROR: pad length mismatch. " "Calculated %u got %u\n", |
