From owner-cvs-src@FreeBSD.ORG Sun Oct 5 03:41:24 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F60416A4B3; Sun, 5 Oct 2003 03:41:24 -0700 (PDT) Received: from gw.catspoiler.org (217-ip-163.nccn.net [209.79.217.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC24643FCB; Sun, 5 Oct 2003 03:41:21 -0700 (PDT) (envelope-from truckman@FreeBSD.org) Received: from FreeBSD.org (mousie.catspoiler.org [192.168.101.2]) by gw.catspoiler.org (8.12.9/8.12.9) with ESMTP id h95AfBN1049085; Sun, 5 Oct 2003 03:41:16 -0700 (PDT) (envelope-from truckman@FreeBSD.org) Message-Id: <200310051041.h95AfBN1049085@gw.catspoiler.org> Date: Sun, 5 Oct 2003 03:41:11 -0700 (PDT) From: Don Lewis To: bms@FreeBSD.org In-Reply-To: <200310050937.h959bldI091908@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_sysctl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2003 10:41:24 -0000 On 5 Oct, Bruce M Simpson wrote: > bms 2003/10/05 02:37:47 PDT > > FreeBSD src repository > > Modified files: > sys/kern kern_sysctl.c > Log: > Fix a security problem in sysctl() the long way round. > > Use pre-emption detection to avoid the need for wiring a userland buffer > when copying opaque data structures. > > sysctl_wire_old_buffer() is now a no-op. Other consumers of this > API should use pre-emption detection to notice update collisions. There are a number of consumers of sysctl_wire_old_buffer() that use it to avoid blocking while holding a mutex. In general they call SYSCTL_OUT() multiple times while traversing a data structure. They probably should have been fixed before neutering sysctl_wire_old_buffer().