From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933983AbdEOLKI (ORCPT ); Mon, 15 May 2017 07:10:08 -0400 Received: from mail-io0-f194.google.com ([209.85.223.194]:36182 "EHLO mail-io0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751367AbdEOLKH (ORCPT ); Mon, 15 May 2017 07:10:07 -0400 MIME-Version: 1.0 In-Reply-To: <20170515103118.GA10885@kroah.com> References: <20170429195257.630355823@gmail.com> <20170429195403.522579504@gmail.com> <20170515103118.GA10885@kroah.com> From: Okash Khawaja Date: Mon, 15 May 2017 12:10:06 +0100 Message-ID: Subject: Re: [patch 2/6] tty: export tty_open_by_driver To: Greg Kroah-Hartman Cc: Jiri Slaby , Samuel Thibault , linux-kernel@vger.kernel.org, devel@driverdev.osuosl.org, Kirk Reiser , Chris Brannon , "Speakup is a screen review system for Linux." , Alan Cox Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, On Mon, May 15, 2017 at 11:31 AM, Greg Kroah-Hartman wrote: > On Sat, Apr 29, 2017 at 08:52:59PM +0100, Okash Khawaja wrote: >> This applies on top of the changes already in staging-next branch which allow >> kernel access to TTY dev. >> >> Signe-doff-by: Okash Khawaja >> Reviewed-by: Samuel Thibault >> >> Index: linux-staging/drivers/tty/tty_io.c >> =================================================================== >> --- linux-staging.orig/drivers/tty/tty_io.c >> +++ linux-staging/drivers/tty/tty_io.c >> @@ -1369,7 +1369,10 @@ static struct tty_struct *tty_driver_loo >> struct tty_struct *tty; >> >> if (driver->ops->lookup) >> - tty = driver->ops->lookup(driver, file, idx); >> + if (!file) >> + tty = ERR_PTR(-EIO); >> + else >> + tty = driver->ops->lookup(driver, file, idx); > > Why make this change? Shouldn't the lookup function allow a NULL file > pointer? Or is the problem that they do not? > >> else >> tty = driver->ttys[idx]; >> >> @@ -2001,7 +2004,7 @@ static struct tty_driver *tty_lookup_dri >> struct tty_driver *console_driver = console_device(index); >> if (console_driver) { >> driver = tty_driver_kref_get(console_driver); >> - if (driver) { >> + if (driver && filp) { > > Why change this too? > > Your changelog does not explain any of this, please do so. > > thanks, > > greg k-h Sorry, I should have been more descriptive here. The changes which check file pointer for null are basically from Alan Cox's patch here: http://www.mail-archive.com/linux-kernel@vger.kernel.org/msg1215095.html. The description from that patch is quoted below: "[RFC] tty_port: allow a port to be opened with a tty that has no file handle Let us create tty objects entirely in kernel space. Untested proposal to show why all the ideas around rewriting half the uart stack are not needed. With this a kernel created non file backed tty object could be used to handle data, and set terminal modes. Not all ldiscs can cope with this as N_TTY in particular has to work back to the fs/tty layer. The tty_port code is however otherwise clean of file handles as far as I can tell as is the low level tty port write path used by the ldisc, the configuration low level interfaces and most of the ldiscs. Currently you don't have any exposure to see tty hangups because those are built around the file layer. However a) it's a fixed port so you probably don't care about that b) if you do we can add a callback and c) you almost certainly don't want the userspace tear down/rebuild behaviour anyway. This should however be sufficient if we wanted for example to enumerate all the bluetooth bound fixed ports via ACPI and make them directly available. It doesn't deal with the case of a user opening a port that's also kernel opened and that would need some locking out (so it returned EBUSY if bound to a kernel device of some kind). That needs resolving along with how you "up" or "down" your new bluetooth device, or enumerate it while providing the existing tty API to avoid regressions (and to debug)." With this patchset tty_open_by_driver is now called from inside kernel with file pointer set to null. I can resend this patch with above description. Thanks, Okash