From owner-cvs-all@FreeBSD.ORG Thu May 17 12:16:25 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7D7C916A407; Thu, 17 May 2007 12:16:25 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6B2DC13C469; Thu, 17 May 2007 12:16:25 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l4HCGPCx098776; Thu, 17 May 2007 12:16:25 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l4HCGP1S098772; Thu, 17 May 2007 12:16:25 GMT (envelope-from rrs) Message-Id: <200705171216.l4HCGP1S098772@repoman.freebsd.org> From: Randall Stewart Date: Thu, 17 May 2007 12:16:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet sctp.h sctp_asconf.c sctp_auth.c sctp_constants.h sctp_indata.c sctp_input.c sctp_output.c sctp_pcb.c sctp_sysctl.c sctp_timer.c sctp_uio.h sctp_usrreq.c sctputil.c src/sys/netinet6 sctp6_usrreq.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 May 2007 12:16:25 -0000 rrs 2007-05-17 12:16:24 UTC FreeBSD src repository Modified files: sys/netinet sctp.h sctp_asconf.c sctp_auth.c sctp_constants.h sctp_indata.c sctp_input.c sctp_output.c sctp_pcb.c sctp_sysctl.c sctp_timer.c sctp_uio.h sctp_usrreq.c sctputil.c sys/netinet6 sctp6_usrreq.c Log: - Fixed 1-2-1 model to not worry about associd in sockopts - Fixed RTOinfo for bounding. - Fixed connect() to return ECONNREFUSED when an ABORT is received. - Added comments to direct Static Analysis not to look at some things it does not understand (comments are /* sa_ignore XXXXX */) - Bind when colliding was broken, missing not_found = 1 before checking to see if the port was in use caused endless bind loop. - Cookie life needs to be in milliseconds to conform to socket api. - Cookie life is not supposed to change if its 0, On the assoc level set we changed it to 0 opps. - Two more static analysis issues identified by the cisco tool. Null checks needed. - An issue for sendfile(). Need to validate the correct input argument. - When sending failed due to a no route to host, we leaked the mbuf chain failing to call m_freem(). - Fix #ifdef issue for getting hash block len when HAVE_SHA2 is NOT defined Reviewed by: gnn Revision Changes Path 1.8 +4 -4 src/sys/netinet/sctp.h 1.14 +26 -12 src/sys/netinet/sctp_asconf.c 1.11 +1 -1 src/sys/netinet/sctp_auth.c 1.16 +2 -2 src/sys/netinet/sctp_constants.h 1.24 +6 -0 src/sys/netinet/sctp_indata.c 1.27 +5 -1 src/sys/netinet/sctp_input.c 1.26 +9 -5 src/sys/netinet/sctp_output.c 1.29 +29 -16 src/sys/netinet/sctp_pcb.c 1.6 +7 -1 src/sys/netinet/sctp_sysctl.c 1.16 +2 -0 src/sys/netinet/sctp_timer.c 1.18 +3 -5 src/sys/netinet/sctp_uio.h 1.27 +73 -54 src/sys/netinet/sctp_usrreq.c 1.31 +7 -2 src/sys/netinet/sctputil.c 1.22 +1 -0 src/sys/netinet6/sctp6_usrreq.c