From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/6093 Path: news.gmane.org!not-for-mail From: Rich Felker Newsgroups: gmane.linux.lib.musl.general Subject: Re: Add login_tty Date: Fri, 5 Sep 2014 13:29:07 -0400 Message-ID: <20140905172906.GN23797@brightrain.aerifal.cx> References: <20140825185756.GA6077@euler> <20140825224333.GX12888@brightrain.aerifal.cx> <20140826165627.GA1208@euler> <20140904212159.GG10361@port70.net> <20140905172351.GA1528@euler> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1409938171 18006 80.91.229.3 (5 Sep 2014 17:29:31 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 5 Sep 2014 17:29:31 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-6106-gllmg-musl=m.gmane.org@lists.openwall.com Fri Sep 05 19:29:21 2014 Return-path: Envelope-to: gllmg-musl@plane.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1XPxK3-0001YX-OC for gllmg-musl@plane.gmane.org; Fri, 05 Sep 2014 19:29:19 +0200 Original-Received: (qmail 14147 invoked by uid 550); 5 Sep 2014 17:29:19 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 14139 invoked from network); 5 Sep 2014 17:29:18 -0000 Content-Disposition: inline In-Reply-To: <20140905172351.GA1528@euler> User-Agent: Mutt/1.5.21 (2010-09-15) Original-Sender: Rich Felker Xref: news.gmane.org gmane.linux.lib.musl.general:6093 Archived-At: On Fri, Sep 05, 2014 at 07:23:52PM +0200, Felix Janda wrote: > Szabolcs Nagy wrote: > > * Felix Janda [2014-08-26 18:56:28 +0200]: > > > --- /dev/null > > > +++ b/src/misc/login_tty.c > > > @@ -0,0 +1,14 @@ > > > +#include > > > +#include > > > +#include > > > + > > > +int login_tty(int fd) > > > +{ > > > + setsid(); > > > + if (ioctl(fd, TIOCSCTTY, (char *)0)) return -1; > > > + dup2(fd, 0); > > > + dup2(fd, 1); > > > + dup2(fd, 2); > > > + if (fd>2) close(fd); > > > + return 0; > > > +} > > > > i recently came across this: > > http://lxr.free-electrons.com/source/fs/file.c#L751 > > > > so dup2 may spuriously fail with EBUSY on linux > > > > the current forkpty does not check dup2 either, but i > > wonder if it should be > > > > while(dup2(fd,0)==-1 && errno==EBUSY); > > > > instead > > The other possibility for dup2 to fail seems to be EINTR. > (We already know that fd can't be invalid.) > Should this also be checked? Why would EINTR happen? dup2 does not involve any sleep much less interruptible sleep/blocking. Rich