From owner-svn-src-all@FreeBSD.ORG Thu Apr 3 22:14:19 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9078E10F; Thu, 3 Apr 2014 22:14:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7D16E644; Thu, 3 Apr 2014 22:14:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s33MEJbI021737; Thu, 3 Apr 2014 22:14:19 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s33MEJgp021736; Thu, 3 Apr 2014 22:14:19 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <201404032214.s33MEJgp021736@svn.freebsd.org> From: Xin LI Date: Thu, 3 Apr 2014 22:14:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r264089 - head/sbin/casperd X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 22:14:19 -0000 Author: delphij Date: Thu Apr 3 22:14:18 2014 New Revision: 264089 URL: http://svnweb.freebsd.org/changeset/base/264089 Log: Detach from controlling session of parent. This is similar to what is done in daemon(3), which we can not use directly in this context. Reviewed by: pjd MFC after: 2 weeks Modified: head/sbin/casperd/zygote.c Modified: head/sbin/casperd/zygote.c ============================================================================== --- head/sbin/casperd/zygote.c Thu Apr 3 21:39:59 2014 (r264088) +++ head/sbin/casperd/zygote.c Thu Apr 3 22:14:18 2014 (r264089) @@ -63,6 +63,9 @@ stdnull(void) if (fd == -1) errx(1, "Unable to open %s", _PATH_DEVNULL); + if (setsid() == -1) + errx(1, "Unable to detach from session"); + if (dup2(fd, STDIN_FILENO) == -1) errx(1, "Unable to cover stdin"); if (dup2(fd, STDOUT_FILENO) == -1)