X-Recipient: archive-cygwin@delorie.com
X-Spam-Check-By: sourceware.org
From: "Dave Korn" <dave.korn@artimi.com>
To: <cygwin@cygwin.com>
References: <47D4A7E4.5070509@tlinx.org> <47D4B7D2.1F78DADB@dessent.net> <47D4E892.1090305@tlinx.org> <47D50BB6.EFB28302@dessent.net> <47D6056B.6000805@tlinx.org> <47D610C2.EECE7EE9@dessent.net> <00b601c8843a$d94fe2c0$2708a8c0@CAM.ARTIMI.COM> <47D7EFEC.122C76AE@dessent.net> <00d001c88456$9f75a3c0$2708a8c0@CAM.ARTIMI.COM> <47D7FDDB.73ABB705@dessent.net> <00dd01c8845c$078e8ee0$2708a8c0@CAM.ARTIMI.COM> <47D811CF.F40482C5@dessent.net>
Subject: RE: Bug: C-prog from Win dies in fork; gdb.exe also won't run
Date: Wed, 12 Mar 2008 18:58:37 -0000
Message-ID: <00e601c88473$145920b0$2708a8c0@CAM.ARTIMI.COM>
MIME-Version: 1.0
Content-Type: text/plain; 	charset="us-ascii"
Content-Transfer-Encoding: 7bit
X-Mailer: Microsoft Office Outlook 11
In-Reply-To: <47D811CF.F40482C5@dessent.net>
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
Precedence: bulk
List-Id: <cygwin.cygwin.com>
List-Unsubscribe: <mailto:cygwin-unsubscribe-archive-cygwin=delorie.com@cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com

Brian Dessent wrote on 12 March 2008 17:25:

> a) figure out which module of the process is the main one
> b) look up its ImageBase
> c) compute which page in that processes' VM corresponds to that
> ImageBase plus some magic offset (which also implicitly means that all
> subsystems must use exactly the same image header format for
> the entire
> lifespan of the operating system, a pretty lousy way to
> design a kernel)
> d) query the memory manager if that page is currently in the
> working set
> e) incurr a page fault if it is not
> f) wait for the disk manager to page in that sector from the pagefile,
> or from the image on the filesystem if the page has not been modified

  Brian?  We're in kernel mode here, but we aren't in a device driver
interrupt or DPC in some random process context; we're running in the
process space of the calling process, and can just read or write it like
ordinary memory.

> ... And doing this for every syscall?!?  

  No, since the code that implements this restriction is *only* executed
when you call NtSetInformationProcess with class equal to 9
(ProcessAccessToken).

> And that doesn't even begin to
> address the most obvious of security issues of having the
> kernel rely on
> userspace structures when enforcing access restrictions.

  MS are not known for being entirely clever about security.

  Anyway, I don't want to speculate.  I want to get my hands on a Vista
machine and go digging around with WinDbg.

    cheers,
      DaveK
-- 
Can't think of a witty .sigline today....


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

