1 /* General utility routines for GDB/Python.
3 Copyright (C) 2008-2019 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 #include "python-internal.h"
26 /* Converts a Python 8-bit string to a unicode string object. Assumes the
27 8-bit string is in the host charset. If an error occurs during conversion,
28 returns NULL with a python exception set.
30 As an added bonus, the functions accepts a unicode string and returns it
31 right away, so callers don't need to check which kind of string they've
32 got. In Python 3, all strings are Unicode so this case is always the
35 If the given object is not one of the mentioned string types, NULL is
36 returned, with the TypeError python exception set. */
38 python_string_to_unicode (PyObject *obj)
40 PyObject *unicode_str;
42 /* If obj is already a unicode string, just return it.
43 I wish life was always that simple... */
44 if (PyUnicode_Check (obj))
50 else if (PyString_Check (obj))
51 unicode_str = PyUnicode_FromEncodedObject (obj, host_charset (), NULL);
55 PyErr_SetString (PyExc_TypeError,
56 _("Expected a string or unicode object."));
60 return gdbpy_ref<> (unicode_str);
63 /* Returns a newly allocated string with the contents of the given unicode
64 string object converted to CHARSET. If an error occurs during the
65 conversion, NULL will be returned and a python exception will be
67 static gdb::unique_xmalloc_ptr<char>
68 unicode_to_encoded_string (PyObject *unicode_str, const char *charset)
70 gdb::unique_xmalloc_ptr<char> result;
72 /* Translate string to named charset. */
73 gdbpy_ref<> string (PyUnicode_AsEncodedString (unicode_str, charset, NULL));
78 result.reset (xstrdup (PyBytes_AsString (string.get ())));
80 result.reset (xstrdup (PyString_AsString (string.get ())));
86 /* Returns a PyObject with the contents of the given unicode string
87 object converted to a named charset. If an error occurs during
88 the conversion, NULL will be returned and a python exception will
91 unicode_to_encoded_python_string (PyObject *unicode_str, const char *charset)
93 /* Translate string to named charset. */
94 return gdbpy_ref<> (PyUnicode_AsEncodedString (unicode_str, charset, NULL));
97 /* Returns a newly allocated string with the contents of the given
98 unicode string object converted to the target's charset. If an
99 error occurs during the conversion, NULL will be returned and a
100 python exception will be set. */
101 gdb::unique_xmalloc_ptr<char>
102 unicode_to_target_string (PyObject *unicode_str)
104 return unicode_to_encoded_string (unicode_str,
105 target_charset (python_gdbarch));
108 /* Returns a PyObject with the contents of the given unicode string
109 object converted to the target's charset. If an error occurs
110 during the conversion, NULL will be returned and a python exception
113 unicode_to_target_python_string (PyObject *unicode_str)
115 return unicode_to_encoded_python_string (unicode_str,
116 target_charset (python_gdbarch));
119 /* Converts a python string (8-bit or unicode) to a target string in
120 the target's charset. Returns NULL on error, with a python
122 gdb::unique_xmalloc_ptr<char>
123 python_string_to_target_string (PyObject *obj)
125 gdbpy_ref<> str = python_string_to_unicode (obj);
129 return unicode_to_target_string (str.get ());
132 /* Converts a python string (8-bit or unicode) to a target string in the
133 target's charset. Returns NULL on error, with a python exception
136 In Python 3, the returned object is a "bytes" object (not a string). */
138 python_string_to_target_python_string (PyObject *obj)
140 gdbpy_ref<> str = python_string_to_unicode (obj);
144 return unicode_to_target_python_string (str.get ());
147 /* Converts a python string (8-bit or unicode) to a target string in
148 the host's charset. Returns NULL on error, with a python exception
150 gdb::unique_xmalloc_ptr<char>
151 python_string_to_host_string (PyObject *obj)
153 gdbpy_ref<> str = python_string_to_unicode (obj);
157 return unicode_to_encoded_string (str.get (), host_charset ());
160 /* Convert a host string to a python string. */
163 host_string_to_python_string (const char *str)
165 return gdbpy_ref<> (PyString_Decode (str, strlen (str), host_charset (),
169 /* Return true if OBJ is a Python string or unicode object, false
173 gdbpy_is_string (PyObject *obj)
176 return PyUnicode_Check (obj);
178 return PyString_Check (obj) || PyUnicode_Check (obj);
182 /* Return the string representation of OBJ, i.e., str (obj).
183 If the result is NULL a python error occurred, the caller must clear it. */
185 gdb::unique_xmalloc_ptr<char>
186 gdbpy_obj_to_string (PyObject *obj)
188 gdbpy_ref<> str_obj (PyObject_Str (obj));
192 gdb::unique_xmalloc_ptr<char> msg;
195 msg = python_string_to_host_string (str_obj.get ());
197 msg.reset (xstrdup (PyString_AsString (str_obj.get ())));
206 /* See python-internal.h. */
208 gdb::unique_xmalloc_ptr<char>
209 gdbpy_err_fetch::to_string () const
211 /* There are a few cases to consider.
213 value is a string when PyErr_SetString is used.
214 value is not a string when raise "foo" is used, instead it is None
216 So the algorithm we use is to print `str (value)' if it's not
217 None, otherwise we print `str (type)'.
218 Using str (aka PyObject_Str) will fetch the error message from
219 gdb.GdbError ("message"). */
221 if (m_error_value && m_error_value != Py_None)
222 return gdbpy_obj_to_string (m_error_value);
224 return gdbpy_obj_to_string (m_error_type);
227 /* See python-internal.h. */
229 gdb::unique_xmalloc_ptr<char>
230 gdbpy_err_fetch::type_to_string () const
232 return gdbpy_obj_to_string (m_error_type);
235 /* Convert a GDB exception to the appropriate Python exception.
237 This sets the Python error indicator. */
240 gdbpy_convert_exception (struct gdb_exception exception)
244 if (exception.reason == RETURN_QUIT)
245 exc_class = PyExc_KeyboardInterrupt;
246 else if (exception.error == MEMORY_ERROR)
247 exc_class = gdbpy_gdb_memory_error;
249 exc_class = gdbpy_gdb_error;
251 PyErr_Format (exc_class, "%s", exception.message);
254 /* Converts OBJ to a CORE_ADDR value.
256 Returns 0 on success or -1 on failure, with a Python exception set.
260 get_addr_from_python (PyObject *obj, CORE_ADDR *addr)
262 if (gdbpy_is_value_object (obj))
267 *addr = value_as_address (value_object_to_value (obj));
269 CATCH (except, RETURN_MASK_ALL)
271 GDB_PY_SET_HANDLE_EXCEPTION (except);
277 gdbpy_ref<> num (PyNumber_Long (obj));
283 val = gdb_py_long_as_ulongest (num.get ());
284 if (PyErr_Occurred ())
287 if (sizeof (val) > sizeof (CORE_ADDR) && ((CORE_ADDR) val) != val)
289 PyErr_SetString (PyExc_ValueError,
290 _("Overflow converting to address."));
300 /* Convert a LONGEST to the appropriate Python object -- either an
301 integer object or a long object, depending on its value. */
304 gdb_py_object_from_longest (LONGEST l)
307 if (sizeof (l) > sizeof (long))
308 return gdbpy_ref<> (PyLong_FromLongLong (l));
309 return gdbpy_ref<> (PyLong_FromLong (l));
311 #ifdef HAVE_LONG_LONG /* Defined by Python. */
312 /* If we have 'long long', and the value overflows a 'long', use a
313 Python Long; otherwise use a Python Int. */
314 if (sizeof (l) > sizeof (long)
315 && (l > PyInt_GetMax () || l < (- (LONGEST) PyInt_GetMax ()) - 1))
316 return gdbpy_ref<> (PyLong_FromLongLong (l));
318 return gdbpy_ref<> (PyInt_FromLong (l));
322 /* Convert a ULONGEST to the appropriate Python object -- either an
323 integer object or a long object, depending on its value. */
326 gdb_py_object_from_ulongest (ULONGEST l)
329 if (sizeof (l) > sizeof (unsigned long))
330 return gdbpy_ref<> (PyLong_FromUnsignedLongLong (l));
331 return gdbpy_ref<> (PyLong_FromUnsignedLong (l));
333 #ifdef HAVE_LONG_LONG /* Defined by Python. */
334 /* If we have 'long long', and the value overflows a 'long', use a
335 Python Long; otherwise use a Python Int. */
336 if (sizeof (l) > sizeof (unsigned long) && l > PyInt_GetMax ())
337 return gdbpy_ref<> (PyLong_FromUnsignedLongLong (l));
340 if (l > PyInt_GetMax ())
341 return gdbpy_ref<> (PyLong_FromUnsignedLong (l));
343 return gdbpy_ref<> (PyInt_FromLong (l));
347 /* Like PyInt_AsLong, but returns 0 on failure, 1 on success, and puts
348 the value into an out parameter. */
351 gdb_py_int_as_long (PyObject *obj, long *result)
353 *result = PyInt_AsLong (obj);
354 return ! (*result == -1 && PyErr_Occurred ());
359 /* Generic implementation of the __dict__ attribute for objects that
360 have a dictionary. The CLOSURE argument should be the type object.
361 This only handles positive values for tp_dictoffset. */
364 gdb_py_generic_dict (PyObject *self, void *closure)
367 PyTypeObject *type_obj = (PyTypeObject *) closure;
370 raw_ptr = (char *) self + type_obj->tp_dictoffset;
371 result = * (PyObject **) raw_ptr;
377 /* Like PyModule_AddObject, but does not steal a reference to
381 gdb_pymodule_addobject (PyObject *module, const char *name, PyObject *object)
386 /* Python 2.4 did not have a 'const' here. */
387 result = PyModule_AddObject (module, (char *) name, object);
393 /* Handle a Python exception when the special gdb.GdbError treatment
394 is desired. This should only be called when an exception is set.
395 If the exception is a gdb.GdbError, throw a gdb exception with the
396 exception text. For other exceptions, print the Python stack and
397 then throw a gdb exception. */
400 gdbpy_handle_exception ()
402 gdbpy_err_fetch fetched_error;
403 gdb::unique_xmalloc_ptr<char> msg = fetched_error.to_string ();
407 /* An error occurred computing the string representation of the
408 error message. This is rare, but we should inform the user. */
409 printf_filtered (_("An error occurred in Python "
410 "and then another occurred computing the "
411 "error message.\n"));
412 gdbpy_print_stack ();
415 /* Don't print the stack for gdb.GdbError exceptions.
416 It is generally used to flag user errors.
418 We also don't want to print "Error occurred in Python command"
419 for user errors. However, a missing message for gdb.GdbError
420 exceptions is arguably a bug, so we flag it as such. */
422 if (fetched_error.type_matches (PyExc_KeyboardInterrupt))
424 else if (! fetched_error.type_matches (gdbpy_gdberror_exc)
425 || msg == NULL || *msg == '\0')
427 fetched_error.restore ();
428 gdbpy_print_stack ();
429 if (msg != NULL && *msg != '\0')
430 error (_("Error occurred in Python: %s"), msg.get ());
432 error (_("Error occurred in Python."));
435 error ("%s", msg.get ());