2011-07-13 15:16:47 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* hyperv_util.c: utility functions for the Microsoft Hyper-V driver
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Matthias Bolte <matthias.bolte@googlemail.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 10:06:23 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2011-07-13 15:16:47 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "internal.h"
|
|
|
|
#include "datatypes.h"
|
2012-12-12 18:06:53 +00:00
|
|
|
#include "viralloc.h"
|
2012-12-12 17:59:27 +00:00
|
|
|
#include "virlog.h"
|
2012-12-13 18:01:25 +00:00
|
|
|
#include "viruuid.h"
|
2011-07-13 15:16:47 +00:00
|
|
|
#include "hyperv_private.h"
|
|
|
|
#include "hyperv_util.h"
|
2013-05-03 12:42:20 +00:00
|
|
|
#include "virstring.h"
|
2011-07-13 15:16:47 +00:00
|
|
|
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_HYPERV
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2012-02-24 18:48:55 +00:00
|
|
|
hypervParseUri(hypervParsedUri **parsedUri, virURIPtr uri)
|
2011-07-13 15:16:47 +00:00
|
|
|
{
|
|
|
|
int result = -1;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (parsedUri == NULL || *parsedUri != NULL) {
|
2012-07-18 14:29:12 +00:00
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
|
2011-07-13 15:16:47 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (VIR_ALLOC(*parsedUri) < 0) {
|
|
|
|
virReportOOMError();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-03-20 14:11:10 +00:00
|
|
|
for (i = 0; i < uri->paramsCount; i++) {
|
|
|
|
virURIParamPtr queryParam = &uri->params[i];
|
2011-07-13 15:16:47 +00:00
|
|
|
|
|
|
|
if (STRCASEEQ(queryParam->name, "transport")) {
|
|
|
|
VIR_FREE((*parsedUri)->transport);
|
|
|
|
|
2013-05-03 12:42:20 +00:00
|
|
|
if (VIR_STRDUP((*parsedUri)->transport, queryParam->value) < 0)
|
2011-07-13 15:16:47 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (STRNEQ((*parsedUri)->transport, "http") &&
|
|
|
|
STRNEQ((*parsedUri)->transport, "https")) {
|
2012-07-18 14:29:12 +00:00
|
|
|
virReportError(VIR_ERR_INVALID_ARG,
|
|
|
|
_("Query parameter 'transport' has unexpected value "
|
|
|
|
"'%s' (should be http|https)"),
|
|
|
|
(*parsedUri)->transport);
|
2011-07-13 15:16:47 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
VIR_WARN("Ignoring unexpected query parameter '%s'",
|
|
|
|
queryParam->name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-03 12:42:20 +00:00
|
|
|
if (!(*parsedUri)->transport &&
|
|
|
|
VIR_STRDUP((*parsedUri)->transport, "https") < 0)
|
|
|
|
goto cleanup;
|
2011-07-13 15:16:47 +00:00
|
|
|
|
|
|
|
result = 0;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
if (result < 0) {
|
|
|
|
hypervFreeParsedUri(parsedUri);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
hypervFreeParsedUri(hypervParsedUri **parsedUri)
|
|
|
|
{
|
|
|
|
if (parsedUri == NULL || *parsedUri == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
VIR_FREE((*parsedUri)->transport);
|
|
|
|
|
|
|
|
VIR_FREE(*parsedUri);
|
|
|
|
}
|