* [PATCH net] sctp: asconf's process should verify address parameter is in the beginning
@ 2015-08-24 10:07 Xin Long
2015-08-24 12:13 ` Sergei Shtylyov
2015-08-24 17:33 ` Vlad Yasevich
0 siblings, 2 replies; 4+ messages in thread
From: Xin Long @ 2015-08-24 10:07 UTC (permalink / raw)
To: network dev; +Cc: mleitner, davem
in sctp_process_asconf(), we get address parameter from the beginning of the
addip params. but we never check if it's really there. if the addr param is not
there, it still can pass sctp_verify_asconf(), then to be handled by
sctp_process_asconf(), it will not be safe.
so add a code in sctp_verify_asconf() to check the address parameter is in the
beginning, or return false to send abort.
Signed-off-by: Xin Long <lucien.xin@gmail.com>
---
net/sctp/sm_make_chunk.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/net/sctp/sm_make_chunk.c b/net/sctp/sm_make_chunk.c
index 0ee5ca7..a2a72d5 100644
--- a/net/sctp/sm_make_chunk.c
+++ b/net/sctp/sm_make_chunk.c
@@ -3122,6 +3122,14 @@ bool sctp_verify_asconf(const struct sctp_association *asoc,
union sctp_params param;
bool addr_param_seen = false;
+ if(addr_param_needed){
+ /* Ensure the address parameter is in the beginning */
+ param.v = chunk->skb->data + sizeof(sctp_addiphdr_t);
+ if (param.p->type != SCTP_PARAM_IPV4_ADDRESS &&
+ param.p->type != SCTP_PARAM_IPV6_ADDRESS)
+ return false;
+ }
+
sctp_walk_params(param, addip, addip_hdr.params) {
size_t length = ntohs(param.p->length);
--
2.1.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH net] sctp: asconf's process should verify address parameter is in the beginning
2015-08-24 10:07 [PATCH net] sctp: asconf's process should verify address parameter is in the beginning Xin Long
@ 2015-08-24 12:13 ` Sergei Shtylyov
2015-08-24 17:33 ` Vlad Yasevich
1 sibling, 0 replies; 4+ messages in thread
From: Sergei Shtylyov @ 2015-08-24 12:13 UTC (permalink / raw)
To: Xin Long, network dev; +Cc: mleitner, davem
Hello.
On 8/24/2015 1:07 PM, Xin Long wrote:
> in sctp_process_asconf(), we get address parameter from the beginning of the
> addip params. but we never check if it's really there. if the addr param is not
> there, it still can pass sctp_verify_asconf(), then to be handled by
> sctp_process_asconf(), it will not be safe.
>
> so add a code in sctp_verify_asconf() to check the address parameter is in the
> beginning, or return false to send abort.
>
> Signed-off-by: Xin Long <lucien.xin@gmail.com>
> ---
> net/sctp/sm_make_chunk.c | 8 ++++++++
> 1 file changed, 8 insertions(+)
> diff --git a/net/sctp/sm_make_chunk.c b/net/sctp/sm_make_chunk.c
> index 0ee5ca7..a2a72d5 100644
> --- a/net/sctp/sm_make_chunk.c
> +++ b/net/sctp/sm_make_chunk.c
> @@ -3122,6 +3122,14 @@ bool sctp_verify_asconf(const struct sctp_association *asoc,
> union sctp_params param;
> bool addr_param_seen = false;
>
> + if(addr_param_needed){
Space needed after *if*. Please run your patches thru
scripts/checkpatch.pl before posting.
[...]
MBR, Sergei
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net] sctp: asconf's process should verify address parameter is in the beginning
2015-08-24 10:07 [PATCH net] sctp: asconf's process should verify address parameter is in the beginning Xin Long
2015-08-24 12:13 ` Sergei Shtylyov
@ 2015-08-24 17:33 ` Vlad Yasevich
2015-08-25 12:28 ` lucien xin
1 sibling, 1 reply; 4+ messages in thread
From: Vlad Yasevich @ 2015-08-24 17:33 UTC (permalink / raw)
To: Xin Long, network dev; +Cc: mleitner, davem
On 08/24/2015 06:07 AM, Xin Long wrote:
> in sctp_process_asconf(), we get address parameter from the beginning of the
> addip params. but we never check if it's really there. if the addr param is not
> there, it still can pass sctp_verify_asconf(), then to be handled by
> sctp_process_asconf(), it will not be safe.
>
> so add a code in sctp_verify_asconf() to check the address parameter is in the
> beginning, or return false to send abort.
>
> Signed-off-by: Xin Long <lucien.xin@gmail.com>
> ---
> net/sctp/sm_make_chunk.c | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/net/sctp/sm_make_chunk.c b/net/sctp/sm_make_chunk.c
> index 0ee5ca7..a2a72d5 100644
> --- a/net/sctp/sm_make_chunk.c
> +++ b/net/sctp/sm_make_chunk.c
> @@ -3122,6 +3122,14 @@ bool sctp_verify_asconf(const struct sctp_association *asoc,
> union sctp_params param;
> bool addr_param_seen = false;
>
> + if(addr_param_needed){
> + /* Ensure the address parameter is in the beginning */
> + param.v = chunk->skb->data + sizeof(sctp_addiphdr_t);
> + if (param.p->type != SCTP_PARAM_IPV4_ADDRESS &&
> + param.p->type != SCTP_PARAM_IPV6_ADDRESS)
> + return false;
> + }
> +
Sorry, you can't do that directly without a lot more checks. The parameer
may be only only partial, or may not be there at all. You'd end up looking
at wrong mememory.
A better way would be to set the addr_param_seen only when looking at
the first parameter (addip_hdr.params).
-vlad
> sctp_walk_params(param, addip, addip_hdr.params) {
> size_t length = ntohs(param.p->length);
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net] sctp: asconf's process should verify address parameter is in the beginning
2015-08-24 17:33 ` Vlad Yasevich
@ 2015-08-25 12:28 ` lucien xin
0 siblings, 0 replies; 4+ messages in thread
From: lucien xin @ 2015-08-25 12:28 UTC (permalink / raw)
To: vyasevic; +Cc: network dev, Marcelo Ricardo Leitner, davem
>
> Sorry, you can't do that directly without a lot more checks. The parameer
> may be only only partial, or may not be there at all. You'd end up looking
> at wrong mememory.
>
> A better way would be to set the addr_param_seen only when looking at
> the first parameter (addip_hdr.params).
>
I will repost it
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-08-25 12:28 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-24 10:07 [PATCH net] sctp: asconf's process should verify address parameter is in the beginning Xin Long
2015-08-24 12:13 ` Sergei Shtylyov
2015-08-24 17:33 ` Vlad Yasevich
2015-08-25 12:28 ` lucien xin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).