Author: tuexen
Date: Sat May  5 14:06:15 2012
New Revision: 235057
URL: http://svn.freebsd.org/changeset/base/235057

Log:
  Do error checking for the SCTP_RESET_STREAMS, SCTP_RESET_ASSOC,
  and SCTP_ADD_STREAMS socket options as specified by RFC 6525.
  
  MFC after: 3 days

Modified:
  head/sys/netinet/sctp_usrreq.c

Modified: head/sys/netinet/sctp_usrreq.c
==============================================================================
--- head/sys/netinet/sctp_usrreq.c      Sat May  5 11:34:27 2012        
(r235056)
+++ head/sys/netinet/sctp_usrreq.c      Sat May  5 14:06:15 2012        
(r235057)
@@ -4164,7 +4164,6 @@ sctp_setopt(struct socket *so, int optna
 
                        SCTP_CHECK_AND_CAST(strrst, optval, struct 
sctp_reset_streams, optsize);
                        SCTP_FIND_STCB(inp, stcb, strrst->srs_assoc_id);
-
                        if (stcb == NULL) {
                                SCTP_LTRACE_ERR_RET(inp, NULL, NULL, 
SCTP_FROM_SCTP_USRREQ, ENOENT);
                                error = ENOENT;
@@ -4179,15 +4178,6 @@ sctp_setopt(struct socket *so, int optna
                                SCTP_TCB_UNLOCK(stcb);
                                break;
                        }
-                       if (!(stcb->asoc.local_strreset_support & 
SCTP_ENABLE_RESET_STREAM_REQ)) {
-                               /*
-                                * User did not enable the operation.
-                                */
-                               SCTP_LTRACE_ERR_RET(inp, NULL, NULL, 
SCTP_FROM_SCTP_USRREQ, EPERM);
-                               error = EPERM;
-                               SCTP_TCB_UNLOCK(stcb);
-                               break;
-                       }
                        if (stcb->asoc.stream_reset_outstanding) {
                                SCTP_LTRACE_ERR_RET(inp, NULL, NULL, 
SCTP_FROM_SCTP_USRREQ, EALREADY);
                                error = EALREADY;
@@ -4246,6 +4236,21 @@ sctp_setopt(struct socket *so, int optna
                                error = ENOENT;
                                break;
                        }
+                       if (stcb->asoc.peer_supports_strreset == 0) {
+                               /*
+                                * Peer does not support the chunk type.
+                                */
+                               SCTP_LTRACE_ERR_RET(inp, NULL, NULL, 
SCTP_FROM_SCTP_USRREQ, EOPNOTSUPP);
+                               error = EOPNOTSUPP;
+                               SCTP_TCB_UNLOCK(stcb);
+                               break;
+                       }
+                       if (stcb->asoc.stream_reset_outstanding) {
+                               SCTP_LTRACE_ERR_RET(inp, NULL, NULL, 
SCTP_FROM_SCTP_USRREQ, EALREADY);
+                               error = EALREADY;
+                               SCTP_TCB_UNLOCK(stcb);
+                               break;
+                       }
                        if ((stradd->sas_outstrms == 0) &&
                            (stradd->sas_instrms == 0)) {
                                error = EINVAL;
@@ -4309,15 +4314,6 @@ sctp_setopt(struct socket *so, int optna
                                SCTP_TCB_UNLOCK(stcb);
                                break;
                        }
-                       if (!(stcb->asoc.local_strreset_support & 
SCTP_ENABLE_RESET_ASSOC_REQ)) {
-                               /*
-                                * User did not enable the operation.
-                                */
-                               SCTP_LTRACE_ERR_RET(inp, NULL, NULL, 
SCTP_FROM_SCTP_USRREQ, EPERM);
-                               error = EPERM;
-                               SCTP_TCB_UNLOCK(stcb);
-                               break;
-                       }
                        if (stcb->asoc.stream_reset_outstanding) {
                                SCTP_LTRACE_ERR_RET(inp, NULL, NULL, 
SCTP_FROM_SCTP_USRREQ, EALREADY);
                                error = EALREADY;
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to