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
37 class QMPCompleter(list):
38 def complete(self, text, state):
40 if cmd.startswith(text):
46 class QMPShellError(Exception):
49 class QMPShellBadPort(QMPShellError):
52 # TODO: QMPShell's interface is a bit ugly (eg. _fill_completion() and
53 # _execute_cmd()). Let's design a better one.
54 class QMPShell(qmp.QEMUMonitorProtocol):
55 def __init__(self, address):
56 qmp.QEMUMonitorProtocol.__init__(self, self.__get_address(address))
58 self._completer = None
60 def __get_address(self, arg):
62 Figure out if the argument is in the port:host form, if it's not it's
71 return ( addr[0], port )
75 def _fill_completion(self):
76 for cmd in self.cmd('query-commands')['return']:
77 self._completer.append(cmd['name'])
79 def __completer_setup(self):
80 self._completer = QMPCompleter()
81 self._fill_completion()
82 readline.set_completer(self._completer.complete)
83 readline.parse_and_bind("tab: complete")
84 # XXX: default delimiters conflict with some command names (eg. query-),
85 # clearing everything as it doesn't seem to matter
86 readline.set_completer_delims('')
88 def __build_cmd(self, cmdline):
90 Build a QMP input object from a user provided command-line in the
93 < command-name > [ arg-name1=arg1 ] ... [ arg-nameN=argN ]
95 cmdargs = cmdline.split()
96 qmpcmd = { 'execute': cmdargs[0], 'arguments': {} }
97 for arg in cmdargs[1:]:
103 qmpcmd['arguments'][opt[0]] = value
106 def _execute_cmd(self, cmdline):
108 qmpcmd = self.__build_cmd(cmdline)
110 print 'command format: <command-name> ',
111 print '[arg-name1=arg1] ... [arg-nameN=argN]'
113 resp = self.cmd_obj(qmpcmd)
121 self._greeting = qmp.QEMUMonitorProtocol.connect(self)
122 self.__completer_setup()
124 def show_banner(self, msg='Welcome to the QMP low-level shell!'):
126 version = self._greeting['QMP']['version']['qemu']
127 print 'Connected to QEMU %d.%d.%d\n' % (version['major'],version['minor'],version['micro'])
129 def read_exec_command(self, prompt):
131 Read and execute a command.
133 @return True if execution was ok, return False if disconnected.
136 cmdline = raw_input(prompt)
141 for ev in self.get_events():
146 return self._execute_cmd(cmdline)
148 class HMPShell(QMPShell):
149 def __init__(self, address):
150 QMPShell.__init__(self, address)
153 def __cmd_completion(self):
154 for cmd in self.__cmd_passthrough('help')['return'].split('\r\n'):
155 if cmd and cmd[0] != '[' and cmd[0] != '\t':
156 name = cmd.split()[0] # drop help text
159 if name.find('|') != -1:
160 # Command in the form 'foobar|f' or 'f|foobar', take the
162 opt = name.split('|')
167 self._completer.append(name)
168 self._completer.append('help ' + name) # help completion
170 def __info_completion(self):
171 for cmd in self.__cmd_passthrough('info')['return'].split('\r\n'):
173 self._completer.append('info ' + cmd.split()[1])
175 def __other_completion(self):
177 self._completer.append('help info')
179 def _fill_completion(self):
180 self.__cmd_completion()
181 self.__info_completion()
182 self.__other_completion()
184 def __cmd_passthrough(self, cmdline, cpu_index = 0):
185 return self.cmd_obj({ 'execute': 'human-monitor-command', 'arguments':
186 { 'command-line': cmdline,
187 'cpu-index': cpu_index } })
189 def _execute_cmd(self, cmdline):
190 if cmdline.split()[0] == "cpu":
191 # trap the cpu command, it requires special setting
193 idx = int(cmdline.split()[1])
194 if not 'return' in self.__cmd_passthrough('info version', idx):
195 print 'bad CPU index'
197 self.__cpu_index = idx
199 print 'cpu command takes an integer argument'
201 resp = self.__cmd_passthrough(cmdline, self.__cpu_index)
205 assert 'return' in resp or 'error' in resp
208 if len(resp['return']) > 0:
209 print resp['return'],
212 print '%s: %s' % (resp['error']['class'], resp['error']['desc'])
215 def show_banner(self):
216 QMPShell.show_banner(self, msg='Welcome to the HMP shell!')
219 sys.stderr.write('ERROR: %s\n' % msg)
222 def fail_cmdline(option=None):
224 sys.stderr.write('ERROR: bad command-line option \'%s\'\n' % option)
225 sys.stderr.write('qemu-shell [ -H ] < UNIX socket path> | < TCP address:port >\n')
231 if len(sys.argv) == 2:
232 qemu = QMPShell(sys.argv[1])
234 elif len(sys.argv) == 3:
235 if sys.argv[1] != '-H':
236 fail_cmdline(sys.argv[1])
237 qemu = HMPShell(sys.argv[2])
241 except QMPShellBadPort:
242 die('bad port number in command-line')
246 except qmp.QMPConnectError:
247 die('Didn\'t get QMP greeting message')
248 except qmp.QMPCapabilitiesError:
249 die('Could not negotiate capabilities')
251 die('Could not connect to %s' % addr)
254 while qemu.read_exec_command('(QEMU) '):
258 if __name__ == '__main__':