3 # Low-level QEMU shell on top of QMP.
5 # Copyright (C) 2009, 2010 Red Hat Inc.
10 # This work is licensed under the terms of the GNU GPL, version 2. See
11 # the COPYING file in the top-level directory.
17 # # qemu [...] -qmp unix:./qmp-sock,server
21 # $ qmp-shell ./qmp-sock
23 # Commands have the following format:
25 # < command-name > [ arg-name1=arg1 ] ... [ arg-nameN=argN ]
29 # (QEMU) device_add driver=e1000 id=net1
38 class QMPCompleter(list):
39 def complete(self, text, state):
41 if cmd.startswith(text):
47 class QMPShellError(Exception):
50 class QMPShellBadPort(QMPShellError):
53 # TODO: QMPShell's interface is a bit ugly (eg. _fill_completion() and
54 # _execute_cmd()). Let's design a better one.
55 class QMPShell(qmp.QEMUMonitorProtocol):
56 def __init__(self, address, pp=None):
57 qmp.QEMUMonitorProtocol.__init__(self, self.__get_address(address))
59 self._completer = None
62 def __get_address(self, arg):
64 Figure out if the argument is in the port:host form, if it's not it's
73 return ( addr[0], port )
77 def _fill_completion(self):
78 for cmd in self.cmd('query-commands')['return']:
79 self._completer.append(cmd['name'])
81 def __completer_setup(self):
82 self._completer = QMPCompleter()
83 self._fill_completion()
84 readline.set_completer(self._completer.complete)
85 readline.parse_and_bind("tab: complete")
86 # XXX: default delimiters conflict with some command names (eg. query-),
87 # clearing everything as it doesn't seem to matter
88 readline.set_completer_delims('')
90 def __build_cmd(self, cmdline):
92 Build a QMP input object from a user provided command-line in the
95 < command-name > [ arg-name1=arg1 ] ... [ arg-nameN=argN ]
97 cmdargs = cmdline.split()
98 qmpcmd = { 'execute': cmdargs[0], 'arguments': {} }
99 for arg in cmdargs[1:]:
105 qmpcmd['arguments'][opt[0]] = value
108 def _execute_cmd(self, cmdline):
110 qmpcmd = self.__build_cmd(cmdline)
112 print 'command format: <command-name> ',
113 print '[arg-name1=arg1] ... [arg-nameN=argN]'
115 resp = self.cmd_obj(qmpcmd)
120 if self._pp is not None:
121 self._pp.pprint(resp)
127 self._greeting = qmp.QEMUMonitorProtocol.connect(self)
128 self.__completer_setup()
130 def show_banner(self, msg='Welcome to the QMP low-level shell!'):
132 version = self._greeting['QMP']['version']['qemu']
133 print 'Connected to QEMU %d.%d.%d\n' % (version['major'],version['minor'],version['micro'])
135 def read_exec_command(self, prompt):
137 Read and execute a command.
139 @return True if execution was ok, return False if disconnected.
142 cmdline = raw_input(prompt)
147 for ev in self.get_events():
152 return self._execute_cmd(cmdline)
154 class HMPShell(QMPShell):
155 def __init__(self, address):
156 QMPShell.__init__(self, address)
159 def __cmd_completion(self):
160 for cmd in self.__cmd_passthrough('help')['return'].split('\r\n'):
161 if cmd and cmd[0] != '[' and cmd[0] != '\t':
162 name = cmd.split()[0] # drop help text
165 if name.find('|') != -1:
166 # Command in the form 'foobar|f' or 'f|foobar', take the
168 opt = name.split('|')
173 self._completer.append(name)
174 self._completer.append('help ' + name) # help completion
176 def __info_completion(self):
177 for cmd in self.__cmd_passthrough('info')['return'].split('\r\n'):
179 self._completer.append('info ' + cmd.split()[1])
181 def __other_completion(self):
183 self._completer.append('help info')
185 def _fill_completion(self):
186 self.__cmd_completion()
187 self.__info_completion()
188 self.__other_completion()
190 def __cmd_passthrough(self, cmdline, cpu_index = 0):
191 return self.cmd_obj({ 'execute': 'human-monitor-command', 'arguments':
192 { 'command-line': cmdline,
193 'cpu-index': cpu_index } })
195 def _execute_cmd(self, cmdline):
196 if cmdline.split()[0] == "cpu":
197 # trap the cpu command, it requires special setting
199 idx = int(cmdline.split()[1])
200 if not 'return' in self.__cmd_passthrough('info version', idx):
201 print 'bad CPU index'
203 self.__cpu_index = idx
205 print 'cpu command takes an integer argument'
207 resp = self.__cmd_passthrough(cmdline, self.__cpu_index)
211 assert 'return' in resp or 'error' in resp
214 if len(resp['return']) > 0:
215 print resp['return'],
218 print '%s: %s' % (resp['error']['class'], resp['error']['desc'])
221 def show_banner(self):
222 QMPShell.show_banner(self, msg='Welcome to the HMP shell!')
225 sys.stderr.write('ERROR: %s\n' % msg)
228 def fail_cmdline(option=None):
230 sys.stderr.write('ERROR: bad command-line option \'%s\'\n' % option)
231 sys.stderr.write('qemu-shell [ -p ] [ -H ] < UNIX socket path> | < TCP address:port >\n')
241 for arg in sys.argv[1:]:
249 pp = pprint.PrettyPrinter(indent=4)
256 qemu = QMPShell(arg, pp)
261 except QMPShellBadPort:
262 die('bad port number in command-line')
266 except qmp.QMPConnectError:
267 die('Didn\'t get QMP greeting message')
268 except qmp.QMPCapabilitiesError:
269 die('Could not negotiate capabilities')
271 die('Could not connect to %s' % addr)
274 while qemu.read_exec_command('(QEMU) '):
278 if __name__ == '__main__':