2016-07-15 04:20:48 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* drivers/serial/pty.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/types.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <semaphore.h>
|
2016-07-15 14:48:10 +02:00
|
|
|
#include <stdio.h>
|
2016-07-15 04:20:48 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <poll.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
#include <nuttx/kmalloc.h>
|
2016-07-15 04:20:48 +02:00
|
|
|
#include <nuttx/fs/fs.h>
|
2016-07-15 15:18:12 +02:00
|
|
|
#include <nuttx/serial/pty.h>
|
|
|
|
|
|
|
|
#include "pty.h"
|
2016-07-15 04:20:48 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static int pty_open(FAR struct file *filep);
|
|
|
|
static int pty_close(FAR struct file *filep);
|
|
|
|
static ssize_t pty_read(FAR struct file *filep, FAR char *buffer,
|
|
|
|
size_t buflen);
|
|
|
|
static ssize_t pty_write(FAR struct file *filep, FAR const char *buffer,
|
|
|
|
size_t buflen);
|
|
|
|
static int pty_ioctl(FAR struct file *filep, int cmd, unsigned long arg);
|
|
|
|
#ifndef CONFIG_DISABLE_POLL
|
|
|
|
static int pty_poll(FAR struct file *filep, FAR struct pollfd *fds,
|
|
|
|
bool setup);
|
|
|
|
#endif
|
|
|
|
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
|
|
|
static int pty_unlink(FAR struct inode *inode);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* This device structure describes on memory of the PTY device pair */
|
|
|
|
|
|
|
|
struct pty_devpair_s;
|
|
|
|
struct pty_dev_s
|
|
|
|
{
|
2016-07-15 14:48:10 +02:00
|
|
|
FAR struct pty_devpair_s *pd_devpair;
|
2016-07-15 04:20:48 +02:00
|
|
|
struct file pd_src; /* Provides data to read() method (pipe output) */
|
|
|
|
struct file pd_sink; /* Accepts data from write() method (pipe input) */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* This structure describes the pipe pair */
|
|
|
|
|
|
|
|
struct pty_devpair_s
|
|
|
|
{
|
2016-07-15 14:48:10 +02:00
|
|
|
struct pty_dev_s pp_master; /* Maseter device */
|
|
|
|
struct pty_dev_s pp_slave; /* Slave device */
|
2016-07-15 04:20:48 +02:00
|
|
|
|
|
|
|
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
|
|
|
uint8_t pp_minor; /* Minor device number */
|
|
|
|
uint16_t pp_nopen; /* Open file count */
|
|
|
|
sem_t pp_exclsem; /* Mutual exclusion */
|
|
|
|
bool pp_unlinked; /* File has been unlinked */
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static const struct file_operations pty_fops =
|
|
|
|
{
|
|
|
|
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
|
|
|
pty_open, /* open */
|
|
|
|
pty_close, /* close */
|
|
|
|
#else
|
|
|
|
NULL, /* open */
|
|
|
|
NULL, /* close */
|
|
|
|
#endif
|
|
|
|
pty_read, /* read */
|
|
|
|
pty_write, /* write */
|
|
|
|
NULL, /* seek */
|
|
|
|
pty_ioctl /* ioctl */
|
|
|
|
#ifndef CONFIG_DISABLE_POLL
|
|
|
|
, pty_poll /* poll */
|
|
|
|
#endif
|
|
|
|
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
|
|
|
, pty_unlink /* unlink */
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: pty_semtake
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
2016-07-15 14:48:10 +02:00
|
|
|
static void pty_semtake(FAR struct pty_devpair_s *devpair)
|
2016-07-15 04:20:48 +02:00
|
|
|
{
|
|
|
|
while (sem_wait(&devpair->pp_exclsem) < 0)
|
|
|
|
{
|
|
|
|
DEBUGASSERT(errno == EINTR);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: pty_semgive
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#define pty_semgive(c) sem_post(&(c)->pp_exclsem)
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: pty_destroy
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
2016-07-15 14:48:10 +02:00
|
|
|
static void pty_destroy(FAR struct pty_devpair_s *devpair)
|
2016-07-15 04:20:48 +02:00
|
|
|
{
|
|
|
|
char devname[16];
|
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
/* Un-register the slave device */
|
2016-07-15 04:20:48 +02:00
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
#ifdef CONFIG_PSEUDOTERM_BSD
|
|
|
|
snprintf(devname, 16, "/dev/ttyp%d", devpair->pp_minor);
|
|
|
|
#else
|
|
|
|
snprintf(devname, 16, "/dev/pts/%d", devpair->pp_minor);
|
|
|
|
#endif
|
2016-07-15 04:20:48 +02:00
|
|
|
(void)unregister_driver(devname);
|
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
/* Un-register the master device (/dev/ptyN may have already been unlinked) */
|
|
|
|
|
|
|
|
snprintf(devname, 16, "/dev/pty%d", (int)devpair->pp_minor);
|
2016-07-15 04:20:48 +02:00
|
|
|
(void)unregister_driver(devname);
|
|
|
|
|
|
|
|
/* Close the contained file structures */
|
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
(void)file_close_detached(&devpair->pp_master.pd_src);
|
|
|
|
(void)file_close_detached(&devpair->pp_master.pd_sink);
|
|
|
|
(void)file_close_detached(&devpair->pp_slave.pd_src);
|
|
|
|
(void)file_close_detached(&devpair->pp_slave.pd_sink);
|
2016-07-15 04:20:48 +02:00
|
|
|
|
|
|
|
/* And free the device structure */
|
|
|
|
|
|
|
|
sem_destroy(&devpair->pp_exclsem);
|
2016-07-15 14:48:10 +02:00
|
|
|
kmm_free(devpair);
|
2016-07-15 04:20:48 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: pty_open
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
|
|
|
static int pty_open(FAR struct file *filep)
|
|
|
|
{
|
|
|
|
FAR struct inode *inode;
|
|
|
|
FAR struct pty_dev_s *dev;
|
2016-07-15 14:48:10 +02:00
|
|
|
FAR struct pty_devpair_s *devpair;
|
2016-07-15 04:20:48 +02:00
|
|
|
int ret;
|
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
DEBUGASSERT(filep != NULL && filep->f_inode != NULL);
|
2016-07-15 04:20:48 +02:00
|
|
|
inode = filep->f_inode;
|
|
|
|
dev = inode->i_private;
|
|
|
|
DEBUGASSERT(dev != NULL && dev->pd_devpair != NULL);
|
|
|
|
devpair = dev->pd_devpair;
|
|
|
|
|
|
|
|
/* Get exclusive access */
|
|
|
|
|
|
|
|
pty_semtake(devpair);
|
|
|
|
|
|
|
|
/* If one side of the driver has been unlinked, then refuse further
|
|
|
|
* opens.
|
|
|
|
*/
|
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
if (devpair->pp_unlinked)
|
2016-07-15 04:20:48 +02:00
|
|
|
{
|
2016-07-15 14:48:10 +02:00
|
|
|
ret = -EIDRM;
|
2016-07-15 04:20:48 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Increment the count of open references on the driver */
|
|
|
|
|
|
|
|
devpair->pp_nopen++;
|
|
|
|
DEBUGASSERT(devpair->pp_nopen > 0);
|
|
|
|
|
|
|
|
ret = OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
pty_semgive(devpair);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: pty_open
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
|
|
|
static int pty_close(FAR struct file *filep)
|
|
|
|
{
|
|
|
|
FAR struct inode *inode;
|
|
|
|
FAR struct pty_dev_s *dev;
|
2016-07-15 14:48:10 +02:00
|
|
|
FAR struct pty_devpair_s *devpair;
|
2016-07-15 04:20:48 +02:00
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
DEBUGASSERT(filep != NULL && filep->f_inode != NULL);
|
2016-07-15 04:20:48 +02:00
|
|
|
inode = filep->f_inode;
|
|
|
|
dev = inode->i_private;
|
|
|
|
DEBUGASSERT(dev != NULL && dev->pd_devpair != NULL);
|
|
|
|
devpair = dev->pd_devpair;
|
|
|
|
|
|
|
|
/* Get exclusive access */
|
|
|
|
|
|
|
|
pty_semtake(devpair);
|
|
|
|
|
|
|
|
/* Is this the last open reference? */
|
|
|
|
|
|
|
|
DEBUGASSERT(devpair->pp_nopen > 0);
|
|
|
|
if (devpair->pp_nopen <= 1 && devpair->pp_unlinked)
|
|
|
|
{
|
|
|
|
/* Free the device pair now (without freeing the semaphore) */
|
|
|
|
|
|
|
|
pty_destroy(devpair);
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Otherwise just decrement the open count */
|
|
|
|
|
|
|
|
devpair->pp_nopen--;
|
|
|
|
}
|
|
|
|
|
|
|
|
pty_semgive(devpair);
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: pty_read
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static ssize_t pty_read(FAR struct file *filep, FAR char *buffer, size_t len)
|
|
|
|
{
|
|
|
|
FAR struct inode *inode;
|
|
|
|
FAR struct pty_dev_s *dev;
|
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
DEBUGASSERT(filep != NULL && filep->f_inode != NULL);
|
2016-07-15 04:20:48 +02:00
|
|
|
inode = filep->f_inode;
|
|
|
|
dev = inode->i_private;
|
|
|
|
DEBUGASSERT(dev != NULL);
|
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
return file_read(&dev->pd_src, buffer, len);
|
2016-07-15 04:20:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: pty_write
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static ssize_t pty_write(FAR struct file *filep, FAR const char *buffer, size_t len)
|
|
|
|
{
|
|
|
|
FAR struct inode *inode;
|
|
|
|
FAR struct pty_dev_s *dev;
|
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
DEBUGASSERT(filep != NULL && filep->f_inode != NULL);
|
2016-07-15 04:20:48 +02:00
|
|
|
inode = filep->f_inode;
|
|
|
|
dev = inode->i_private;
|
|
|
|
DEBUGASSERT(dev != NULL);
|
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
return file_write(&dev->pd_sink, buffer, len);
|
2016-07-15 04:20:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: pty_ioctl
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* The standard ioctl method. This is where ALL of the PWM work is done.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static int pty_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
|
|
|
|
{
|
|
|
|
FAR struct inode *inode;
|
|
|
|
FAR struct pty_dev_s *dev;
|
|
|
|
int ret;
|
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
DEBUGASSERT(filep != NULL && filep->f_inode != NULL);
|
2016-07-15 04:20:48 +02:00
|
|
|
inode = filep->f_inode;
|
|
|
|
dev = inode->i_private;
|
|
|
|
DEBUGASSERT(dev != NULL);
|
|
|
|
|
|
|
|
/* Handle IOCTL commands */
|
|
|
|
|
|
|
|
switch (cmd)
|
|
|
|
{
|
|
|
|
/* PTY IOCTL commands would be handled here */
|
|
|
|
/* There aren't any yet */
|
|
|
|
|
|
|
|
/* Any unrecognized IOCTL commands will be passed to the contained
|
|
|
|
* pipe driver.
|
|
|
|
*/
|
|
|
|
|
|
|
|
default:
|
|
|
|
{
|
2016-07-15 14:48:10 +02:00
|
|
|
ret = file_ioctl(&dev->pd_src, cmd, arg);
|
2016-07-15 04:20:48 +02:00
|
|
|
if (ret >= 0 || ret == -ENOTTY)
|
|
|
|
{
|
2016-07-15 14:48:10 +02:00
|
|
|
ret = file_ioctl(&dev->pd_sink, cmd, arg);
|
2016-07-15 04:20:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: pty_poll
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CONFIG_DISABLE_POLL
|
|
|
|
static int pty_poll(FAR struct file *filep, FAR struct pollfd *fds,
|
|
|
|
bool setup)
|
|
|
|
{
|
|
|
|
#warning Missing logic
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: pty_unlink
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
|
|
|
static int pty_unlink(FAR struct inode *inode)
|
|
|
|
{
|
|
|
|
FAR struct pty_dev_s *dev;
|
2016-07-15 14:48:10 +02:00
|
|
|
FAR struct pty_devpair_s *devpair;
|
2016-07-15 04:20:48 +02:00
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
DEBUGASSERT(inode != NULL && inode->i_private != NULL);
|
2016-07-15 04:20:48 +02:00
|
|
|
dev = inode->i_private;
|
|
|
|
devpair = dev->pd_devpair;
|
2016-07-15 14:48:10 +02:00
|
|
|
DEBUGASSERT(dev->pd_devpair != NULL);
|
2016-07-15 04:20:48 +02:00
|
|
|
|
|
|
|
/* Get exclusive access */
|
|
|
|
|
|
|
|
pty_semtake(devpair);
|
|
|
|
|
|
|
|
/* Indicate that the driver has been unlinked */
|
|
|
|
|
|
|
|
devpair->pp_unlinked = true;
|
|
|
|
|
|
|
|
/* If there are no further open references to the driver, then commit
|
|
|
|
* Hara-Kiri now.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (devpair->pp_nopen == 0)
|
|
|
|
{
|
|
|
|
pty_destroy(devpair);
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
pty_semgive(devpair);
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: pty_register
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
2016-07-15 15:18:12 +02:00
|
|
|
* minor - The number that qualifies the naming of the created devices.
|
2016-07-15 14:48:10 +02:00
|
|
|
*
|
2016-07-15 04:20:48 +02:00
|
|
|
* Description:
|
2016-07-15 15:18:12 +02:00
|
|
|
* Create and register PTY master and slave devices.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Zero (OK) is returned on success; a negated errno value is returned on
|
|
|
|
* any failure.
|
2016-07-15 04:20:48 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int pty_register(int minor)
|
|
|
|
{
|
|
|
|
FAR struct pty_devpair_s *devpair;
|
|
|
|
int pipe_a[2];
|
|
|
|
int pipe_b[2];
|
|
|
|
char devname[16];
|
2016-07-15 14:48:10 +02:00
|
|
|
int ret;
|
2016-07-15 04:20:48 +02:00
|
|
|
|
|
|
|
/* Allocate a device instance */
|
|
|
|
|
|
|
|
devpair = kmm_zalloc(sizeof(struct pty_devpair_s));
|
|
|
|
if (devpair == NULL)
|
|
|
|
{
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
|
|
|
sem_init(&devpair->pp_exclsem, 0, 1);
|
|
|
|
devpair->pp_minor = minor;
|
|
|
|
#endif
|
2016-07-15 14:48:10 +02:00
|
|
|
devpair->pp_master.pd_devpair = devpair;
|
|
|
|
devpair->pp_slave.pd_devpair = devpair;
|
2016-07-15 04:20:48 +02:00
|
|
|
|
|
|
|
/* Create two pipes */
|
|
|
|
|
|
|
|
ret = pipe(pipe_a);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
goto errout_with_devpair;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = pipe(pipe_b);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
goto errout_with_pipea;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Detach the pipe file descriptors (closing them in the process)
|
|
|
|
*
|
|
|
|
* fd[0] is for reading;
|
|
|
|
* fd[1] is for writing.
|
|
|
|
*/
|
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
ret = file_detach(pipe_a[0], &devpair->pp_master.pd_src);
|
2016-07-15 04:20:48 +02:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
goto errout_with_pipeb;
|
|
|
|
}
|
|
|
|
|
|
|
|
pipe_a[0] = -1;
|
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
ret = file_detach(pipe_a[1], &devpair->pp_slave.pd_sink);
|
2016-07-15 04:20:48 +02:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
goto errout_with_pipeb;
|
|
|
|
}
|
|
|
|
|
|
|
|
pipe_a[1] = -1;
|
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
ret = file_detach(pipe_b[0], &devpair->pp_slave.pd_src);
|
2016-07-15 04:20:48 +02:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
goto errout_with_pipeb;
|
|
|
|
}
|
|
|
|
|
|
|
|
pipe_b[0] = -1;
|
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
ret = file_detach(pipe_b[1], &devpair->pp_master.pd_sink);
|
2016-07-15 04:20:48 +02:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
goto errout_with_pipeb;
|
|
|
|
}
|
|
|
|
|
|
|
|
pipe_b[1] = -1;
|
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
/* Register the slave device
|
|
|
|
*
|
|
|
|
* BSD style (deprecated): /dev/ttypN
|
|
|
|
* SUSv1 style: /dev/pts/N
|
|
|
|
*
|
|
|
|
* Where N is the minor number
|
|
|
|
*/
|
2016-07-15 04:20:48 +02:00
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
#ifdef CONFIG_PSEUDOTERM_BSD
|
|
|
|
snprintf(devname, 16, "/dev/ttyp%d", minor);
|
|
|
|
#else
|
2016-07-15 04:20:48 +02:00
|
|
|
snprintf(devname, 16, "/dev/pts/%d", minor);
|
2016-07-15 14:48:10 +02:00
|
|
|
#endif
|
2016-07-15 04:20:48 +02:00
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
ret = register_driver(devname, &pty_fops, 0666, &devpair->pp_slave);
|
2016-07-15 04:20:48 +02:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
goto errout_with_pipeb;
|
|
|
|
}
|
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
/* Register the master device
|
|
|
|
*
|
|
|
|
* BSD style (deprecated): /dev/ptyN
|
|
|
|
* SUSv1 style: Master: /dev/ptmx (see ptmx.c)
|
|
|
|
*
|
|
|
|
* Where N is the minor number
|
|
|
|
*/
|
2016-07-15 04:20:48 +02:00
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
snprintf(devname, 16, "/dev/pty%d", minor);
|
|
|
|
|
|
|
|
ret = register_driver(devname, &pty_fops, 0666, &devpair->pp_master);
|
2016-07-15 04:20:48 +02:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2016-07-15 14:48:10 +02:00
|
|
|
goto errout_with_slave;
|
2016-07-15 04:20:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
|
2016-07-15 14:48:10 +02:00
|
|
|
errout_with_slave:
|
|
|
|
#ifdef CONFIG_PSEUDOTERM_BSD
|
|
|
|
snprintf(devname, 16, "/dev/ttyp%d", minor);
|
|
|
|
#else
|
|
|
|
snprintf(devname, 16, "/dev/pts/%d", minor);
|
|
|
|
#endif
|
|
|
|
(void)unregister_driver(devname);
|
2016-07-15 04:20:48 +02:00
|
|
|
|
|
|
|
errout_with_pipeb:
|
|
|
|
if (pipe_b[0] >= 0)
|
|
|
|
{
|
|
|
|
close(pipe_b[0]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-07-15 14:48:10 +02:00
|
|
|
(void)file_close_detached(&devpair->pp_master.pd_src);
|
2016-07-15 04:20:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (pipe_b[1] >= 0)
|
|
|
|
{
|
|
|
|
close(pipe_b[1]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-07-15 14:48:10 +02:00
|
|
|
(void)file_close_detached(&devpair->pp_slave.pd_sink);
|
2016-07-15 04:20:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
errout_with_pipea:
|
|
|
|
if (pipe_a[0] >= 0)
|
|
|
|
{
|
|
|
|
close(pipe_a[0]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-07-15 14:48:10 +02:00
|
|
|
(void)file_close_detached(&devpair->pp_slave.pd_src);
|
2016-07-15 04:20:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (pipe_a[1] >= 0)
|
|
|
|
{
|
|
|
|
close(pipe_a[1]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-07-15 14:48:10 +02:00
|
|
|
(void)file_close_detached(&devpair->pp_master.pd_sink);
|
2016-07-15 04:20:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
errout_with_devpair:
|
|
|
|
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
|
|
|
sem_destroy(&devpair->pp_exclsem);
|
|
|
|
#endif
|
|
|
|
kmm_free(devpair);
|
|
|
|
return ret;
|
|
|
|
}
|