使用Ubuntu和pty不合适的ioctl

问题描述 投票:0回答:1

我正在研究用python编写的终端多路复用器。在基于Ubuntu的发行版上,我看到了错误:

bash: cannot set terminal process group (9862): Inappropriate ioctl for device
bash: no job control in this shell
tmp@tmp-VirtualBox:

在openSuSE和Fedora上,我没有看到ioctl错误和job contol工作正常。

示例问题:

#!/usr/bin/python3

import subprocess
import sys
import pty
import os

master, slave = pty.openpty()

bashCMD = "bash".split()
p = subprocess.Popen(bashCMD, preexec_fn=os.setsid, stdin=slave, stdout=slave, stderr=slave, universal_newlines=True, shell=True)


while p.poll() is None:
  data = os.read(master, 1026)
  print(str(data))


完整项目:https://bitbucket.org/hackersgame/janit/src/master/

python ubuntu opensuse ioctl pty
1个回答
0
投票

好的,pty.fork()适用于所有平台。

但它并没有让我们像pty.openpty()slave那样写入TTY

为了解决这个问题,我使用了mmap

#write tty device info to memory the child and parent process can read
slaveFd, tmpfile = tempfile.mkstemp()
os.write(slaveFd, b'\x00' * mmap.PAGESIZE)
os.lseek(slaveFd, 0, os.SEEK_SET)
def getSlaves():
  raw = getSlavesRaw()
  returnData = []
  for lessRaw in raw.strip('/').split('/'):
    returnData.append("/dev/pts/" + str(lessRaw))
  return returnData

def getSlavesRaw():
  os.lseek(slaveFd, 0, os.SEEK_SET)
  buf = mmap.mmap(slaveFd, mmap.PAGESIZE, mmap.MAP_SHARED, mmap.PROT_READ)
  msg = str(buf.readline())
  msg = ':'.join(msg.split(':')[:-1]).split("'")[-1]
  return(msg)

def addSlave(PID):
  offset = getSlavesRaw()
  offset = len(offset)
  os.lseek(slaveFd, offset, os.SEEK_SET)
  buf = mmap.mmap(slaveFd, mmap.PAGESIZE, mmap.MAP_SHARED, mmap.PROT_WRITE)
  TTY = subprocess.check_output(['ps', 'hotty', str(PID)]).strip().decode()
  TTY = TTY.split("pts")[-1] + ":" # cut off pts and add a : for spacing
  for index in range(offset, offset + len(TTY)):
    buf[index] = ord(TTY[index - offset])


#Thanks! https://stackoverflow.com/a/52157066/5282272
# fork this script such that a child process writes to a pty that is
# controlled or "spied on" by the parent process

(child_pid, newMasterHandle) = pty.fork()
masters.append(newMasterHandle)
# A new child process has been spawned and is continuing from here.
# The original parent process is also continuing from here.
# They have "forked".

if child_pid == 0:
  debug("This is the child process fork, pid %s" % os.getpid())
  addSlave(os.getpid())
  bashProcessList.append(subprocess.run("bash"))
else:
  debug("This is the parent process fork, pid %s" % os.getpid())
  debug(getSlaves())

  while True:
    try:
      data = os.read(masters[myScreen], 1026)
    except Exception:
      #time.sleep(.2)
      continue
    yield data

© www.soinside.com 2019 - 2024. All rights reserved.