/* libguestfs - the guestfsd daemon * Copyright (C) 2012 Red Hat Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include #include #include #include #include #include #include #include #include "daemon.h" #include "actions.h" #include "optgroups.h" int optgroup_ldm_available (void) { return prog_exists ("ldmtool"); } int do_ldmtool_create_all (void) { int r; CLEANUP_FREE char *err = NULL; r = command (NULL, &err, "ldmtool", "create", "all", NULL); if (r == -1) { reply_with_error ("%s", err); return -1; } return 0; } int do_ldmtool_remove_all (void) { int r; CLEANUP_FREE char *err = NULL; r = command (NULL, &err, "ldmtool", "remove", "all", NULL); if (r == -1) { reply_with_error ("%s", err); return -1; } return 0; } static json_t * parse_json (const char *json, const char *func) { json_t *tree; json_error_t err; if (verbose) fprintf (stderr, "%s: parsing json: %s\n", func, json); tree = json_loads (json, 0, &err); if (tree == NULL) { reply_with_error ("parse error: %s", strlen (err.text) ? err.text : "unknown error"); return NULL; } /* Caller should free this by doing 'json_decref (tree);'. */ return tree; } #define TYPE_ERROR ((char **) -1) static char ** json_value_to_string_list (json_t *node) { CLEANUP_FREE_STRINGSBUF DECLARE_STRINGSBUF (strs); json_t *n; size_t i; if (!json_is_array (node)) return TYPE_ERROR; json_array_foreach (node, i, n) { if (!json_is_string (n)) return TYPE_ERROR; if (add_string (&strs, json_string_value (n)) == -1) return NULL; } if (end_stringsbuf (&strs) == -1) return NULL; return take_stringsbuf (&strs); } static char ** parse_json_get_string_list (const char *json, const char *func, const char *cmd) { char **ret; json_t *tree = NULL; tree = parse_json (json, func); if (tree == NULL) return NULL; ret = json_value_to_string_list (tree); json_decref (tree); if (ret == TYPE_ERROR) { reply_with_error ("output of '%s' was not a JSON array of strings", cmd); return NULL; } return ret; } #define GET_STRING_NULL_TO_EMPTY 1 static char * parse_json_get_object_string (const char *json, const char *key, int flags, const char *func, const char *cmd) { const char *str; char *ret; json_t *tree = NULL, *node; tree = parse_json (json, func); if (tree == NULL) return NULL; if (!json_is_object (tree)) goto bad_type; node = json_object_get (tree, key); if (node == NULL) goto bad_type; if ((flags & GET_STRING_NULL_TO_EMPTY) && json_is_null (node)) ret = strdup (""); else { str = json_string_value (node); if (str == NULL) goto bad_type; ret = strndup (str, json_string_length (node)); } if (ret == NULL) reply_with_perror ("strdup"); json_decref (tree); return ret; bad_type: reply_with_error ("output of '%s' was not a JSON object " "containing a key '%s' of type string", cmd, key); json_decref (tree); return NULL; } static char ** parse_json_get_object_string_list (const char *json, const char *key, const char *func, const char *cmd) { char **ret; json_t *tree, *node; tree = parse_json (json, func); if (tree == NULL) return NULL; if (!json_is_object (tree)) goto bad_type; node = json_object_get (tree, key); if (node == NULL) goto bad_type; ret = json_value_to_string_list (node); if (ret == TYPE_ERROR) goto bad_type; json_decref (tree); return ret; bad_type: reply_with_error ("output of '%s' was not a JSON object " "containing a key '%s' of type array of strings", cmd, key); json_decref (tree); return NULL; } char ** do_ldmtool_scan (void) { const char *empty_list[] = { NULL }; return do_ldmtool_scan_devices ((char * const *) empty_list); } char ** do_ldmtool_scan_devices (char * const * devices) { char **ret; size_t i, nr_devices; CLEANUP_FREE const char **argv = NULL; int r; CLEANUP_FREE char *out = NULL, *err = NULL; nr_devices = guestfs_int_count_strings (devices); argv = malloc ((3 + nr_devices) * sizeof (char *)); if (argv == NULL) { reply_with_perror ("malloc"); return NULL; } argv[0] = "ldmtool"; argv[1] = "scan"; for (i = 0; i < nr_devices; ++i) argv[2+i] = devices[i]; argv[2+i] = NULL; r = commandv (&out, &err, argv); if (r == -1) { reply_with_error ("%s", err); return NULL; } ret = parse_json_get_string_list (out, __func__, "ldmtool scan"); return ret; } char * do_ldmtool_diskgroup_name (const char *diskgroup) { int r; CLEANUP_FREE char *out = NULL, *err = NULL; r = command (&out, &err, "ldmtool", "show", "diskgroup", diskgroup, NULL); if (r == -1) { reply_with_error ("%s", err); return NULL; } return parse_json_get_object_string (out, "name", 0, __func__, "ldmtool show diskgroup"); } char ** do_ldmtool_diskgroup_volumes (const char *diskgroup) { int r; CLEANUP_FREE char *out = NULL, *err = NULL; r = command (&out, &err, "ldmtool", "show", "diskgroup", diskgroup, NULL); if (r == -1) { reply_with_error ("%s", err); return NULL; } return parse_json_get_object_string_list (out, "volumes", __func__, "ldmtool show diskgroup"); } char ** do_ldmtool_diskgroup_disks (const char *diskgroup) { int r; CLEANUP_FREE char *out = NULL, *err = NULL; r = command (&out, &err, "ldmtool", "show", "diskgroup", diskgroup, NULL); if (r == -1) { reply_with_error ("%s", err); return NULL; } return parse_json_get_object_string_list (out, "disks", __func__, "ldmtool show diskgroup"); } char * do_ldmtool_volume_type (const char *diskgroup, const char *volume) { int r; CLEANUP_FREE char *out = NULL, *err = NULL; r = command (&out, &err, "ldmtool", "show", "volume", diskgroup, volume, NULL); if (r == -1) { reply_with_error ("%s", err); return NULL; } return parse_json_get_object_string (out, "type", 0, __func__, "ldmtool show volume"); } char * do_ldmtool_volume_hint (const char *diskgroup, const char *volume) { int r; CLEANUP_FREE char *out = NULL, *err = NULL; r = command (&out, &err, "ldmtool", "show", "volume", diskgroup, volume, NULL); if (r == -1) { reply_with_error ("%s", err); return NULL; } return parse_json_get_object_string (out, "hint", GET_STRING_NULL_TO_EMPTY, __func__, "ldmtool show volume"); } char ** do_ldmtool_volume_partitions (const char *diskgroup, const char *volume) { int r; CLEANUP_FREE char *out = NULL, *err = NULL; r = command (&out, &err, "ldmtool", "show", "volume", diskgroup, volume, NULL); if (r == -1) { reply_with_error ("%s", err); return NULL; } return parse_json_get_object_string_list (out, "partitions", __func__, "ldmtool show volume"); }