Revert "debian: new command: stx shell"

This reverts commit d833981c70fcbcfce159f564d0757e86216f4b02.

Original commit exports BASH_ENV=.../userenv, which gets sourced by
*every subshell*, and that file contains a "cd" at the end. So executing
any shell script magically changes PWD before running it.

Change-Id: I8a56ac95c7032592eaf3fafe199689ae0e7daf05
Signed-off-by: Davlet Panech <davlet.panech@windriver.com>
This commit is contained in:
Davlet Panech 2022-05-30 09:50:45 -04:00
parent ccc5815ab9
commit ce05e151c3
4 changed files with 30 additions and 134 deletions

View File

@ -23,8 +23,6 @@ from stx import utils
logger = logging.getLogger('STX-Config')
utils.set_logger(logger)
ALL_CONTAINER_NAMES = ['builder', 'pkgbuilder', 'lat', 'docker', 'repomgr']
def require_env(var):
value = os.getenv(var)
@ -110,9 +108,6 @@ class Config:
assert self.data
return self.helm_cmd
def all_container_names(self):
return ALL_CONTAINER_NAMES + []
@property
def insecure_docker_reg_list(self):
"""List of insecure docker registries we are allowed to access"""

View File

@ -23,7 +23,6 @@ import time
from stx import helper # pylint: disable=E0611
from stx.k8s import KubeHelper
from stx import stx_shell
from stx import utils # pylint: disable=E0611
helmchartdir = 'stx/stx-build-tools-chart/stx-builder'
@ -39,7 +38,6 @@ class HandleControlTask:
self.logger = logging.getLogger('STX-Control')
self.abs_helmchartdir = os.path.join(os.environ['PRJDIR'],
helmchartdir)
self.shell = stx_shell.HandleShellTask(config)
utils.set_logger(self.logger)
def configurePulp(self):
@ -237,7 +235,36 @@ stx-pkgbuilder/configmap/')
sys.exit(1)
def handleEnterTask(self, args):
self.shell.cmd_control_enter(args)
default_docker = 'builder'
container_list = ['builder', 'pkgbuilder', 'repomgr', 'lat', 'docker']
prefix_exec_cmd = self.config.kubectl() + ' exec -ti '
if args.dockername:
if args.dockername not in container_list:
self.logger.error('Please input the correct docker name \
argument. eg: %s \n', container_list)
sys.exit(1)
default_docker = args.dockername
podname = self.k8s.get_pod_name(default_docker)
if podname:
if default_docker == 'builder':
cmd = prefix_exec_cmd + podname
cmd = cmd + ' -- bash -l -c \'runuser -u ${MYUNAME} -- bash \
--rcfile /home/$MYUNAME/userenv\''
elif default_docker == 'docker':
cmd = prefix_exec_cmd + podname + ' -- sh'
else:
cmd = prefix_exec_cmd + podname + ' -- bash'
self.logger.debug('Execute the enter command: %s', cmd)
# Return exit status to shell w/o raising an exception
# in case the user did "echo COMMAND ARGS | stx control enter"
ret = subprocess.call(cmd, shell=True)
sys.exit(ret)
else:
self.logger.error('Please ensure the docker container you want to \
enter has been started!!!\n')
sys.exit(1)
def handleControl(self, args):

View File

@ -20,7 +20,6 @@ from stx import stx_build # pylint: disable=E0611
from stx import stx_configparser # pylint: disable=E0611
from stx import stx_control # pylint: disable=E0611
from stx import stx_repomgr # pylint: disable=E0611
from stx import stx_shell # pylint: disable=E0611
from stx import utils # pylint: disable=E0611
logger = logging.getLogger('STX')
@ -40,7 +39,6 @@ class CommandLine:
self.handlecontrol = stx_control.HandleControlTask(self.config)
self.handlebuild = stx_build.HandleBuildTask(self.config)
self.handlerepomgr = stx_repomgr.HandleRepomgrTask(self.config)
self.handleshell = stx_shell.HandleShellTask(self.config)
self.parser = self.parseCommandLine()
def parseCommandLine(self):
@ -159,25 +157,6 @@ remove_repo|search_pkg|upload_pkg|delete_pkg ]')
parser.add_argument('-v', '--version',
help='Stx build tools version\n\n',
action='version', version='%(prog)s 1.0.0')
shell_subparser = subparsers.add_parser(
'shell',
help='Run a shell command or start an interactive shell')
shell_subparser.add_argument(
'-c', '--command',
help='Shell snippet to execute inside a container. If omitted ' +
'start a shell that reads commands from STDIN.')
shell_subparser.add_argument(
'--no-tty',
help="Disable terminal emulation for STDIN and start shell in " +
"non-interactive mode, even if STDIN is a TTY",
action='store_const', const=True)
shell_subparser.add_argument(
'--container',
metavar='builder|pkgbuilder|lat|repomgr|docker',
help='Container name (default: builder)')
shell_subparser.set_defaults(handle=self.handleshell.cmd_shell)
return parser
def parseArgs(self):

View File

@ -1,105 +0,0 @@
# Copyright (c) 2021 Wind River Systems, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
import os
import shlex
from stx.k8s import KubeHelper
from stx import utils # pylint: disable=E0611
import subprocess
import sys
logger = logging.getLogger('STX-Shell')
utils.set_logger(logger)
def quote(wordlist):
if hasattr(wordlist, '__iter__') and not isinstance(wordlist, str):
return ' '.join([shlex.quote(w) for w in wordlist])
return shlex.quote(wordlist)
class HandleShellTask:
def __init__(self, config):
self.config = config
self.k8s = KubeHelper(config)
self.all_container_names = self.config.all_container_names()
def __get_container_name(self, container):
if container not in self.config.all_container_names():
raise NameError('Invalid container %s, expecting one of: %s'
% (container, self.all_container_names))
name = self.k8s.get_pod_name(container)
if not name:
raise RuntimeError('Container "%s" is not running' % container)
return name
def create_shell_command(self, container, command, no_tty):
kubectl_args = ['exec', '--stdin']
if not no_tty and sys.stdin.isatty():
kubectl_args += ['--tty']
kubectl_args += [self.__get_container_name(container)]
# builder
if container == 'builder':
# This environment script is always required
req_env_file = '/home/$MYUNAME/userenv'
user_cmd = 'runuser -u $MYUNAME -- '
# No command given & STDIN is a terminal: interactive mode
if command is None and not no_tty and sys.stdin.isatty():
user_cmd += 'bash --rcfile %s -i' % req_env_file
# Command given, or STDIN is not a terminal: non-interactive mode
else:
user_cmd += 'env BASH_ENV=%s bash --norc' % req_env_file
if command is not None:
user_cmd += ' -c '
user_cmd += quote(command)
kubectl_args += ['--', 'bash', '-l', '-c', user_cmd]
elif container == 'docker':
kubectl_args += ['--', 'sh', '-l']
if command:
kubectl_args += ['-c', command]
else:
kubectl_args += ['--', 'bash', '-l']
if command:
kubectl_args += ['-c', command]
return self.config.kubectl() + ' ' + quote(kubectl_args)
def _do_shell(self, args, no_tty, command, container_arg='container'):
container = getattr(args, container_arg) or 'builder'
if container not in self.all_container_names:
logger.error("--%s must be one of: %s",
container_arg, self.all_container_names)
sys.exit(1)
shell_command = self.create_shell_command(container, command, no_tty)
logger.debug('%s', shell_command)
shell_status = subprocess.call(shell_command, shell=True)
sys.exit(shell_status)
def cmd_shell(self, args):
self._do_shell(args, args.no_tty, args.command)
def cmd_control_enter(self, args):
logger.warn("""This command is deprecated, please use "stx shell" instead""")
self._do_shell(args, False, None, 'dockername')