-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Add example for exec with tty enabled.
#515
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,267 @@ | ||
| # This example used code(the `Interceptor` related part) from | ||
| # http://sqizit.bartletts.id.au/2011/02/14/pseudo-terminals-in-python/ | ||
| # which is licensed under the MIT license: | ||
| # Copyright (c) 2011 Joshua D. Bartlett | ||
| # | ||
| # Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| # of this software and associated documentation files (the "Software"), to deal | ||
| # in the Software without restriction, including without limitation the rights | ||
| # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| # copies of the Software, and to permit persons to whom the Software is | ||
| # furnished to do so, subject to the following conditions: | ||
| # | ||
| # The above copyright notice and this permission notice shall be included in | ||
| # all copies or substantial portions of the Software. | ||
| # | ||
| # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
| # THE SOFTWARE. | ||
|
|
||
| import errno | ||
| import fcntl | ||
| import json | ||
| import os | ||
| import pty | ||
| import select | ||
| import signal | ||
| import struct | ||
| import sys | ||
| import termios | ||
| import time | ||
| import tty | ||
|
|
||
| import six | ||
|
|
||
| from kubernetes import config | ||
| from kubernetes.client import Configuration | ||
| from kubernetes.client.apis import core_v1_api | ||
| from kubernetes.client.rest import ApiException | ||
| from kubernetes.stream import stream | ||
|
|
||
| # The following escape codes are xterm codes. | ||
| # See http://rtfm.etla.org/xterm/ctlseq.html for more. | ||
| START_ALTERNATE_MODE = set('\x1b[?{0}h'.format(i) for i in | ||
| ('1049', '47', '1047')) | ||
| END_ALTERNATE_MODE = set('\x1b[?{0}l'.format(i) for i in | ||
| ('1049', '47', '1047')) | ||
| ALTERNATE_MODE_FLAGS = tuple(START_ALTERNATE_MODE) + tuple(END_ALTERNATE_MODE) | ||
|
|
||
|
|
||
| def findlast(s, substrs): | ||
| """ | ||
| Finds whichever of the given substrings occurs last in the given string | ||
| and returns that substring, or returns None if no such strings | ||
| occur. | ||
| """ | ||
| i = -1 | ||
| result = None | ||
| for substr in substrs: | ||
| pos = s.rfind(substr) | ||
| if pos > i: | ||
| i = pos | ||
| result = substr | ||
| return result | ||
|
|
||
|
|
||
| class Interceptor(object): | ||
| """ | ||
| This class does the actual work of the pseudo terminal. The spawn() | ||
| function is the main entrypoint. | ||
| """ | ||
|
|
||
| def __init__(self, k8s_stream=None): | ||
| self.k8s_stream = k8s_stream | ||
| self.master_fd = None | ||
|
|
||
| def spawn(self, argv=None): | ||
| """ | ||
| Create a spawned process. | ||
| Based on the code for pty.spawn(). | ||
| """ | ||
| if not argv: | ||
| argv = [os.environ['SHELL']] | ||
|
|
||
| pid, master_fd = pty.fork() | ||
| self.master_fd = master_fd | ||
| if pid == pty.CHILD: | ||
| os.execlp(argv[0], *argv) | ||
|
|
||
| old_handler = signal.signal(signal.SIGWINCH, self._signal_winch) | ||
| try: | ||
| mode = tty.tcgetattr(pty.STDIN_FILENO) | ||
| tty.setraw(pty.STDIN_FILENO) | ||
| restore = 1 | ||
| except tty.error: # This is the same as termios.error | ||
| restore = 0 | ||
| self._init_fd() | ||
| try: | ||
| self._copy() | ||
| except (IOError, OSError): | ||
| if restore: | ||
| tty.tcsetattr(pty.STDIN_FILENO, tty.TCSAFLUSH, mode) | ||
|
|
||
| self.k8s_stream.close() | ||
| self.k8s_stream = None | ||
| if self.master_fd: | ||
| os.close(self.master_fd) | ||
| self.master_fd = None | ||
| signal.signal(signal.SIGWINCH, old_handler) | ||
|
|
||
| def _init_fd(self): | ||
| """ | ||
| Called once when the pty is first set up. | ||
| """ | ||
| self._set_pty_size() | ||
|
|
||
| def _signal_winch(self, signum, frame): | ||
| """ | ||
| Signal handler for SIGWINCH - window size has changed. | ||
| """ | ||
| self._set_pty_size() | ||
|
|
||
| def _set_pty_size(self): | ||
| """ | ||
| Sets the window size of the child pty based on the window size of | ||
| our own controlling terminal. | ||
| """ | ||
| packed = fcntl.ioctl(pty.STDOUT_FILENO, | ||
| termios.TIOCGWINSZ, | ||
| struct.pack('HHHH', 0, 0, 0, 0)) | ||
| rows, cols, h_pixels, v_pixels = struct.unpack('HHHH', packed) | ||
| self.k8s_stream.write_channel(4, | ||
| json.dumps({"Height": rows, | ||
| "Width": cols})) | ||
|
|
||
| def _copy(self): | ||
| """ | ||
| Main select loop. Passes all data to self.master_read() or | ||
| self.stdin_read(). | ||
| """ | ||
| assert self.k8s_stream is not None | ||
| k8s_stream = self.k8s_stream | ||
| while True: | ||
| try: | ||
| rfds, wfds, xfds = select.select([pty.STDIN_FILENO, | ||
| k8s_stream.sock.sock], | ||
| [], []) | ||
| except select.error as e: | ||
| no = e.errno if six.PY3 else e[0] | ||
| if no == errno.EINTR: | ||
| continue | ||
|
|
||
| if pty.STDIN_FILENO in rfds: | ||
| data = os.read(pty.STDIN_FILENO, 1024) | ||
| self.stdin_read(data) | ||
| if k8s_stream.sock.sock in rfds: | ||
| # read from k8s_stream | ||
| if k8s_stream.peek_stdout(): | ||
| self.master_read(k8s_stream.read_stdout()) | ||
| # error occurs | ||
| if k8s_stream.peek_channel(3): | ||
| break | ||
|
|
||
| def write_stdout(self, data): | ||
| """ | ||
| Writes to stdout as if the child process had written the data. | ||
| """ | ||
| os.write(pty.STDOUT_FILENO, data) | ||
|
|
||
| def write_master(self, data): | ||
| """ | ||
| Writes to the child process from its controlling terminal. | ||
| """ | ||
| assert self.k8s_stream is not None | ||
| self.k8s_stream.write_stdin(data) | ||
|
|
||
| def master_read(self, data): | ||
| """ | ||
| Called when there is data to be sent from the child process back to | ||
| the user. | ||
| """ | ||
| flag = findlast(data, ALTERNATE_MODE_FLAGS) | ||
| if flag is not None: | ||
| if flag in START_ALTERNATE_MODE: | ||
| # This code is executed when the child process switches the | ||
| # terminal into alternate mode. The line below | ||
| # assumes that the user has opened vim, and writes a | ||
| # message. | ||
| self.write_master('IEntering special mode.\x1b') | ||
| elif flag in END_ALTERNATE_MODE: | ||
| # This code is executed when the child process switches the | ||
| # terminal back out of alternate mode. The line below | ||
| # assumes that the user has returned to the command | ||
| # prompt. | ||
| self.write_master('echo "Leaving special mode."\r') | ||
| self.write_stdout(data) | ||
|
|
||
| def stdin_read(self, data): | ||
| """ | ||
| Called when there is data to be sent from the user/controlling | ||
| terminal down to the child process. | ||
| """ | ||
| self.write_master(data) | ||
|
|
||
|
|
||
| config.load_kube_config() | ||
| c = Configuration() | ||
| c.assert_hostname = False | ||
| Configuration.set_default(c) | ||
| api = core_v1_api.CoreV1Api() | ||
| name = 'busybox-test' | ||
|
|
||
| resp = None | ||
| try: | ||
| resp = api.read_namespaced_pod(name=name, | ||
| namespace='default') | ||
| except ApiException as e: | ||
| if e.status != 404: | ||
| print("Unknown error: %s" % e) | ||
| exit(1) | ||
|
|
||
| if not resp: | ||
| print("Pod %s does not exits. Creating it..." % name) | ||
| pod_manifest = { | ||
| 'apiVersion': 'v1', | ||
| 'kind': 'Pod', | ||
| 'metadata': { | ||
| 'name': name | ||
| }, | ||
| 'spec': { | ||
| 'containers': [{ | ||
| 'image': 'busybox', | ||
| 'name': 'sleep', | ||
| "args": [ | ||
| "/bin/sh", | ||
| "-c", | ||
| "while true;do date;sleep 5; done" | ||
| ] | ||
| }] | ||
| } | ||
| } | ||
| resp = api.create_namespaced_pod(body=pod_manifest, | ||
| namespace='default') | ||
| while True: | ||
| resp = api.read_namespaced_pod(name=name, | ||
| namespace='default') | ||
| if resp.status.phase != 'Pending': | ||
| break | ||
| time.sleep(1) | ||
| print("Done.") | ||
|
|
||
|
|
||
| # Calling exec interactively with tty enabled. | ||
| exec_command = ['/bin/sh'] | ||
| resp = stream(api.connect_post_namespaced_pod_exec, name, 'default', | ||
| command=exec_command, | ||
| stderr=True, stdin=True, | ||
| stdout=True, tty=True, | ||
| _preload_content=False) | ||
|
|
||
| i = Interceptor(k8s_stream=resp) | ||
| i.write_stdout('Now in pty mode.\r\n') | ||
| i.spawn(sys.argv[1:]) | ||
| i.write_stdout('\r\nThe pty mode is over.\r\n') | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry that I couldn't get to this earlier. I'm concerned with the MIT licensing and worried if having another license violates our CLA. Did a quick search in our code base and I didn't see any source code under MIT license in client-python and kubernetes/kubernetes (third party vendors don't apply).
@yliaog @mbohlool Do we have existing best-practice / SIG in community that we can consult with?
I'd be happy to review & merge this PR after we sort out the license question.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://www.cncf.io/blog/2017/02/01/cncf-recommends-aslv2/
CNCF recommends Apache License. Not sure if MIT License is ok though.