PTY: Add ioctls to support locking and unlocking of the slave. LIBC: Add implementation of unlockpt()
This commit is contained in:
parent
6139860c0b
commit
95555a0199
@ -87,9 +87,7 @@ struct pty_dev_s
|
|||||||
FAR struct pty_devpair_s *pd_devpair;
|
FAR struct pty_devpair_s *pd_devpair;
|
||||||
struct file pd_src; /* Provides data to read() method (pipe output) */
|
struct file pd_src; /* Provides data to read() method (pipe output) */
|
||||||
struct file pd_sink; /* Accepts data from write() method (pipe input) */
|
struct file pd_sink; /* Accepts data from write() method (pipe input) */
|
||||||
#ifdef CONFIG_PSEUDOTERM_SUSV1
|
|
||||||
bool pd_master; /* True: this is the master */
|
bool pd_master; /* True: this is the master */
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/* This structure describes the pipe pair */
|
/* This structure describes the pipe pair */
|
||||||
@ -97,14 +95,16 @@ struct pty_dev_s
|
|||||||
struct pty_devpair_s
|
struct pty_devpair_s
|
||||||
{
|
{
|
||||||
struct pty_dev_s pp_master; /* Maseter device */
|
struct pty_dev_s pp_master; /* Maseter device */
|
||||||
struct pty_dev_s pp_slave; /* Slave device */
|
struct pty_dev_s pp_slave; /* Slave device */
|
||||||
|
|
||||||
|
bool pp_locked; /* Slave is locked */
|
||||||
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
||||||
|
bool pp_unlinked; /* File has been unlinked */
|
||||||
uint8_t pp_minor; /* Minor device number */
|
uint8_t pp_minor; /* Minor device number */
|
||||||
uint16_t pp_nopen; /* Open file count */
|
uint16_t pp_nopen; /* Open file count */
|
||||||
sem_t pp_exclsem; /* Mutual exclusion */
|
|
||||||
bool pp_unlinked; /* File has been unlinked */
|
|
||||||
#endif
|
#endif
|
||||||
|
sem_t pp_slavesem; /* Slave lock semaphore */
|
||||||
|
sem_t pp_exclsem; /* Mutual exclusion */
|
||||||
};
|
};
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
@ -140,7 +140,6 @@ static const struct file_operations pty_fops =
|
|||||||
* Name: pty_semtake
|
* Name: pty_semtake
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
|
||||||
static void pty_semtake(FAR struct pty_devpair_s *devpair)
|
static void pty_semtake(FAR struct pty_devpair_s *devpair)
|
||||||
{
|
{
|
||||||
while (sem_wait(&devpair->pp_exclsem) < 0)
|
while (sem_wait(&devpair->pp_exclsem) < 0)
|
||||||
@ -148,7 +147,6 @@ static void pty_semtake(FAR struct pty_devpair_s *devpair)
|
|||||||
DEBUGASSERT(errno == EINTR);
|
DEBUGASSERT(errno == EINTR);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Name: pty_semgive
|
* Name: pty_semgive
|
||||||
@ -217,9 +215,53 @@ static int pty_open(FAR struct file *filep)
|
|||||||
DEBUGASSERT(dev != NULL && dev->pd_devpair != NULL);
|
DEBUGASSERT(dev != NULL && dev->pd_devpair != NULL);
|
||||||
devpair = dev->pd_devpair;
|
devpair = dev->pd_devpair;
|
||||||
|
|
||||||
/* Get exclusive access */
|
/* Wait if this is an attempt to open the slave device and the slave
|
||||||
|
* device is locked.
|
||||||
|
*/
|
||||||
|
|
||||||
pty_semtake(devpair);
|
if (!dev->pd_master)
|
||||||
|
{
|
||||||
|
/* Slave... Check if the slave driver is locked. We need to lock the
|
||||||
|
* scheduler while we are running to prevent asyncrhonous modification
|
||||||
|
* of pp_locked by pty_ioctl().
|
||||||
|
*/
|
||||||
|
|
||||||
|
sched_lock();
|
||||||
|
while (devpair->pp_locked)
|
||||||
|
{
|
||||||
|
/* Wait until unlocked. We will also most certainly suspend here. */
|
||||||
|
|
||||||
|
sem_wait(&devpair->pp_slavesem);
|
||||||
|
|
||||||
|
/* Get exclusive access to the device structure. This might also
|
||||||
|
* cause suspension.
|
||||||
|
*/
|
||||||
|
|
||||||
|
pty_semtake(devpair);
|
||||||
|
|
||||||
|
/* Check again in case something happened asynchronously while we
|
||||||
|
* were suspended.
|
||||||
|
*/
|
||||||
|
|
||||||
|
if (devpair->pp_locked)
|
||||||
|
{
|
||||||
|
/* This cannot suspend because we have the scheduler locked.
|
||||||
|
* So pp_locked cannot change asyncrhonously between this test
|
||||||
|
* and the redundant test at the top of the loop.
|
||||||
|
*/
|
||||||
|
|
||||||
|
pty_semgive(devpair);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
sched_unlock();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
/* Master ... Get exclusive access to the device structure */
|
||||||
|
|
||||||
|
pty_semtake(devpair);
|
||||||
|
}
|
||||||
|
|
||||||
/* If one side of the driver has been unlinked, then refuse further
|
/* If one side of the driver has been unlinked, then refuse further
|
||||||
* opens.
|
* opens.
|
||||||
@ -358,6 +400,10 @@ static int pty_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
|
|||||||
DEBUGASSERT(dev != NULL && dev->pd_devpair != NULL);
|
DEBUGASSERT(dev != NULL && dev->pd_devpair != NULL);
|
||||||
devpair = dev->pd_devpair;
|
devpair = dev->pd_devpair;
|
||||||
|
|
||||||
|
/* Get exclusive access */
|
||||||
|
|
||||||
|
pty_semtake(devpair);
|
||||||
|
|
||||||
/* Handle IOCTL commands */
|
/* Handle IOCTL commands */
|
||||||
|
|
||||||
switch (cmd)
|
switch (cmd)
|
||||||
@ -384,11 +430,54 @@ static int pty_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case TIOCSPTLCK: /* Lock/unlock Pty: int */
|
case TIOCSPTLCK: /* Lock/unlock Pty: int */
|
||||||
ret = -ENOSYS; /* Not implemented */
|
{
|
||||||
|
if (arg == 0)
|
||||||
|
{
|
||||||
|
int sval;
|
||||||
|
|
||||||
|
/* Unlocking */
|
||||||
|
|
||||||
|
sched_lock();
|
||||||
|
devpair->pp_locked = false;
|
||||||
|
|
||||||
|
/* Release any waiting threads */
|
||||||
|
|
||||||
|
do
|
||||||
|
{
|
||||||
|
DEBUGVERIFY(sem_getvalue(&devpair->pp_slavesem, &sval));
|
||||||
|
if (sval < 0)
|
||||||
|
{
|
||||||
|
sem_post(&devpair->pp_slavesem);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
while (sval < 0);
|
||||||
|
|
||||||
|
sched_unlock();
|
||||||
|
ret = OK;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
/* Locking */
|
||||||
|
|
||||||
|
devpair->pp_locked = true;
|
||||||
|
ret = OK;
|
||||||
|
}
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case TIOCGPTLCK: /* Get Pty lock state: FAR int* */
|
case TIOCGPTLCK: /* Get Pty lock state: FAR int* */
|
||||||
ret = -ENOSYS; /* Not implemented */
|
{
|
||||||
|
FAR int *ptr = (FAR int *)((uintptr_t)arg);
|
||||||
|
if (ptr == NULL)
|
||||||
|
{
|
||||||
|
ret = -EINVAL;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
*ptr = (int)devpair->pp_locked;
|
||||||
|
ret = OK;
|
||||||
|
}
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
/* Any unrecognized IOCTL commands will be passed to the contained
|
/* Any unrecognized IOCTL commands will be passed to the contained
|
||||||
@ -406,6 +495,7 @@ static int pty_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pty_semgive(devpair);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -465,12 +555,14 @@ static int pty_unlink(FAR struct inode *inode)
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Name: pty_register
|
* Name: pty_register
|
||||||
*
|
*
|
||||||
|
* Description:
|
||||||
|
* Create and register PTY master and slave devices. The slave side of
|
||||||
|
* the interface is always locked initially. The master must call
|
||||||
|
* unlockpt() before the slave device can be opened.
|
||||||
|
*
|
||||||
* Input Parameters:
|
* Input Parameters:
|
||||||
* minor - The number that qualifies the naming of the created devices.
|
* minor - The number that qualifies the naming of the created devices.
|
||||||
*
|
*
|
||||||
* Description:
|
|
||||||
* Create and register PTY master and slave devices.
|
|
||||||
*
|
|
||||||
* Returned Value:
|
* Returned Value:
|
||||||
* Zero (OK) is returned on success; a negated errno value is returned on
|
* Zero (OK) is returned on success; a negated errno value is returned on
|
||||||
* any failure.
|
* any failure.
|
||||||
@ -493,15 +585,15 @@ int pty_register(int minor)
|
|||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
sem_init(&devpair->pp_slavesem, 0, 0);
|
||||||
sem_init(&devpair->pp_exclsem, 0, 1);
|
sem_init(&devpair->pp_exclsem, 0, 1);
|
||||||
|
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
||||||
devpair->pp_minor = minor;
|
devpair->pp_minor = minor;
|
||||||
#endif
|
#endif
|
||||||
|
devpair->pp_locked = true;
|
||||||
devpair->pp_master.pd_devpair = devpair;
|
devpair->pp_master.pd_devpair = devpair;
|
||||||
devpair->pp_slave.pd_devpair = devpair;
|
|
||||||
#ifdef CONFIG_PSEUDOTERM_SUSV1
|
|
||||||
devpair->pp_master.pd_master = true;
|
devpair->pp_master.pd_master = true;
|
||||||
#endif
|
devpair->pp_slave.pd_devpair = devpair;
|
||||||
|
|
||||||
/* Create two pipes */
|
/* Create two pipes */
|
||||||
|
|
||||||
@ -640,9 +732,8 @@ errout_with_pipea:
|
|||||||
}
|
}
|
||||||
|
|
||||||
errout_with_devpair:
|
errout_with_devpair:
|
||||||
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
|
||||||
sem_destroy(&devpair->pp_exclsem);
|
sem_destroy(&devpair->pp_exclsem);
|
||||||
#endif
|
sem_destroy(&devpair->pp_slavesem);
|
||||||
kmm_free(devpair);
|
kmm_free(devpair);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
@ -72,14 +72,17 @@ void ptmx_minor_free(uint8_t minor);
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Name: pty_register
|
* Name: pty_register
|
||||||
*
|
*
|
||||||
* Input Parameters:
|
|
||||||
* minor - The number that qualifies the naming of the created devices.
|
|
||||||
*
|
|
||||||
* Description:
|
* Description:
|
||||||
* Create and register PTY master and slave devices. The master device
|
* Create and register PTY master and slave devices. The master device
|
||||||
* will be registered at /dev/ptyN and slave at /dev/pts/N where N is
|
* will be registered at /dev/ptyN and slave at /dev/pts/N where N is
|
||||||
* the provided minor number.
|
* the provided minor number.
|
||||||
*
|
*
|
||||||
|
* The slave side of the interface is always locked initially. The
|
||||||
|
* master must call unlockpt() before the slave device can be opened.
|
||||||
|
*
|
||||||
|
* Input Parameters:
|
||||||
|
* minor - The number that qualifies the naming of the created devices.
|
||||||
|
*
|
||||||
* Returned Value:
|
* Returned Value:
|
||||||
* Zero (OK) is returned on success; a negated errno value is returned on
|
* Zero (OK) is returned on success; a negated errno value is returned on
|
||||||
* any failure.
|
* any failure.
|
||||||
|
@ -76,14 +76,17 @@ int ptmx_register(void);
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Name: pty_register
|
* Name: pty_register
|
||||||
*
|
*
|
||||||
* Input Parameters:
|
|
||||||
* minor - The number that qualifies the naming of the created devices.
|
|
||||||
*
|
|
||||||
* Description:
|
* Description:
|
||||||
* Create and register PTY master and slave devices. The master device
|
* Create and register PTY master and slave devices. The master device
|
||||||
* will be registered at /dev/ptyN and slave at /dev/ttypN where N is
|
* will be registered at /dev/ptyN and slave at /dev/ttypN where N is
|
||||||
* the provided minor number.
|
* the provided minor number.
|
||||||
*
|
*
|
||||||
|
* The slave side of the interface is always locked initially. The
|
||||||
|
* master must call unlockpt() before the slave device can be opened.
|
||||||
|
*
|
||||||
|
* Input Parameters:
|
||||||
|
* minor - The number that qualifies the naming of the created devices.
|
||||||
|
*
|
||||||
* Returned Value:
|
* Returned Value:
|
||||||
* Zero (OK) is returned on success; a negated errno value is returned on
|
* Zero (OK) is returned on success; a negated errno value is returned on
|
||||||
* any failure.
|
* any failure.
|
||||||
|
@ -212,11 +212,14 @@ int mallinfo(FAR struct mallinfo *info);
|
|||||||
#ifdef CONFIG_PSEUDOTERM_SUSV1
|
#ifdef CONFIG_PSEUDOTERM_SUSV1
|
||||||
FAR char *ptsname(int fd);
|
FAR char *ptsname(int fd);
|
||||||
int ptsname_r(int fd, FAR char *buf, size_t buflen);
|
int ptsname_r(int fd, FAR char *buf, size_t buflen);
|
||||||
|
|
||||||
#if 0 /* Not implemented */
|
|
||||||
int grantpt(int fd);
|
|
||||||
int unlockpt(int fd);
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef CONFIG_PSEUDOTERM
|
||||||
|
int unlockpt(int fd);
|
||||||
|
|
||||||
|
/* int grantpt(int fd); Not implemented */
|
||||||
|
|
||||||
|
#define grantpt(fd) (0)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Arithmetic */
|
/* Arithmetic */
|
||||||
|
@ -49,6 +49,10 @@ ifeq ($(CONFIG_PSEUDOTERM_SUSV1),y)
|
|||||||
CSRCS += lib_ptsname.c lib_ptsnamer.c
|
CSRCS += lib_ptsname.c lib_ptsnamer.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_PSEUDOTERM),y)
|
||||||
|
CSRCS += lib_unlockpt.c
|
||||||
|
endif
|
||||||
|
|
||||||
# Add the stdlib directory to the build
|
# Add the stdlib directory to the build
|
||||||
|
|
||||||
DEPPATH += --dep-path stdlib
|
DEPPATH += --dep-path stdlib
|
||||||
|
@ -39,7 +39,6 @@
|
|||||||
|
|
||||||
#include <nuttx/config.h>
|
#include <nuttx/config.h>
|
||||||
|
|
||||||
#include <sys/ioctl.h>
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#ifdef CONFIG_PSEUDOTERM_SUSV1
|
#ifdef CONFIG_PSEUDOTERM_SUSV1
|
||||||
|
75
libc/stdlib/lib_unlockpt.c
Normal file
75
libc/stdlib/lib_unlockpt.c
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
* libc/stdlib/lib_unlockpt.c
|
||||||
|
*
|
||||||
|
* Copyright (C) 2016 Gregory Nutt. All rights reserved.
|
||||||
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions
|
||||||
|
* are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in
|
||||||
|
* the documentation and/or other materials provided with the
|
||||||
|
* distribution.
|
||||||
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software
|
||||||
|
* without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||||
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||||
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||||
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||||
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||||
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
||||||
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||||
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||||
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Included Files
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#include <nuttx/config.h>
|
||||||
|
|
||||||
|
#include <sys/ioctl.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#ifdef CONFIG_PSEUDOTERM
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Public Functions
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Name: unlockpt
|
||||||
|
*
|
||||||
|
* Description:
|
||||||
|
* The unlockpt() function unlocks the slave pseudoterminal device
|
||||||
|
* corresponding to the master pseudoterminal referred to by fd.
|
||||||
|
* unlockpt() must be called before opening the slave side of a
|
||||||
|
* pseudoterminal.
|
||||||
|
*
|
||||||
|
* Returned Values:
|
||||||
|
* When successful, unlockpt() returns 0. Otherwise, it returns -1 and
|
||||||
|
* sets errno appropriately.
|
||||||
|
*
|
||||||
|
* EBADF - The fd argument is not a file descriptor open for writing.
|
||||||
|
* EINVAL - The fd argument is not associated with a master
|
||||||
|
* pseudoterminal
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
int unlockpt(int fd)
|
||||||
|
{
|
||||||
|
return ioctl(fd, TIOCSPTLCK, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* CONFIG_PSEUDOTERM */
|
Loading…
x
Reference in New Issue
Block a user