netdev_bandwidth_conf.c 7.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * Copyright (C) 2009-2011 Red Hat, Inc.
 *
 * 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
15
 * License along with this library.  If not, see
O
Osier Yang 已提交
16
 * <http://www.gnu.org/licenses/>.
17 18 19 20 21 22 23 24 25 26
 *
 * Authors:
 *     Michal Privoznik <mprivozn@redhat.com>
 *     Daniel P. Berrange <berrange@redhat.com>
 */

#include <config.h>

#include "netdev_bandwidth_conf.h"
#include "virterror_internal.h"
27
#include "virutil.h"
28
#include "viralloc.h"
29
#include "domain_conf.h"
30 31 32 33 34 35 36 37 38 39

#define VIR_FROM_THIS VIR_FROM_NONE

static int
virNetDevBandwidthParseRate(xmlNodePtr node, virNetDevBandwidthRatePtr rate)
{
    int ret = -1;
    char *average = NULL;
    char *peak = NULL;
    char *burst = NULL;
40
    char *floor = NULL;
41 42

    if (!node || !rate) {
43
        virReportError(VIR_ERR_INVALID_ARG, "%s",
44 45 46 47 48 49 50
                       _("invalid argument supplied"));
        return -1;
    }

    average = virXMLPropString(node, "average");
    peak = virXMLPropString(node, "peak");
    burst = virXMLPropString(node, "burst");
51
    floor = virXMLPropString(node, "floor");
52 53 54

    if (average) {
        if (virStrToLong_ull(average, NULL, 10, &rate->average) < 0) {
55
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
56
                           _("could not convert bandwidth average value '%s'"),
57 58 59
                           average);
            goto cleanup;
        }
60
    } else if (!floor) {
61
        virReportError(VIR_ERR_XML_DETAIL, "%s",
62 63 64 65 66 67 68
                       _("Missing mandatory average or floor attributes"));
        goto cleanup;
    }

    if ((peak || burst) && !average) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("'peak' and 'burst' require 'average' attribute"));
69 70 71 72
        goto cleanup;
    }

    if (peak && virStrToLong_ull(peak, NULL, 10, &rate->peak) < 0) {
73
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
74
                       _("could not convert bandwidth peak value '%s'"),
75 76 77 78 79
                       peak);
        goto cleanup;
    }

    if (burst && virStrToLong_ull(burst, NULL, 10, &rate->burst) < 0) {
80
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
81
                       _("could not convert bandwidth burst value '%s'"),
82 83 84 85
                       burst);
        goto cleanup;
    }

86 87 88 89 90 91 92
    if (floor && virStrToLong_ull(floor, NULL, 10, &rate->floor) < 0) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("could not convert bandwidth floor value '%s'"),
                       floor);
        goto cleanup;
    }

93 94 95 96 97 98
    ret = 0;

cleanup:
    VIR_FREE(average);
    VIR_FREE(peak);
    VIR_FREE(burst);
99
    VIR_FREE(floor);
100 101 102 103 104 105 106

    return ret;
}

/**
 * virNetDevBandwidthParse:
 * @node: XML node
107
 * @net_type: one of virDomainNetType
108
 *
109 110 111
 * Parse bandwidth XML and return pointer to structure.
 * @net_type tell to which type will/is interface connected to.
 * Pass -1 if this is not called on interface.
112 113 114 115
 *
 * Returns !NULL on success, NULL on error.
 */
virNetDevBandwidthPtr
116 117
virNetDevBandwidthParse(xmlNodePtr node,
                        int net_type)
118 119
{
    virNetDevBandwidthPtr def = NULL;
120
    xmlNodePtr cur;
121 122 123 124 125 126 127 128
    xmlNodePtr in = NULL, out = NULL;

    if (VIR_ALLOC(def) < 0) {
        virReportOOMError();
        return NULL;
    }

    if (!node || !xmlStrEqual(node->name, BAD_CAST "bandwidth")) {
129
        virReportError(VIR_ERR_INVALID_ARG, "%s",
130 131 132 133
                       _("invalid argument supplied"));
        goto error;
    }

134 135
    cur = node->children;

136 137 138 139
    while (cur) {
        if (cur->type == XML_ELEMENT_NODE) {
            if (xmlStrEqual(cur->name, BAD_CAST "inbound")) {
                if (in) {
140
                    virReportError(VIR_ERR_XML_DETAIL, "%s",
141 142 143 144 145 146 147
                                   _("Only one child <inbound> "
                                     "element allowed"));
                    goto error;
                }
                in = cur;
            } else if (xmlStrEqual(cur->name, BAD_CAST "outbound")) {
                if (out) {
148
                    virReportError(VIR_ERR_XML_DETAIL, "%s",
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
                                   _("Only one child <outbound> "
                                     "element allowed"));
                    goto error;
                }
                out = cur;
            }
            /* Silently ignore unknown elements */
        }
        cur = cur->next;
    }

    if (in) {
        if (VIR_ALLOC(def->in) < 0) {
            virReportOOMError();
            goto error;
        }

        if (virNetDevBandwidthParseRate(in, def->in) < 0) {
            /* helper reported error for us */
            goto error;
        }
170 171 172 173 174 175 176 177 178 179 180 181 182 183

        if (def->in->floor && net_type != VIR_DOMAIN_NET_TYPE_NETWORK) {
            if (net_type == -1) {
                /* 'floor' on network isn't supported */
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("floor attribute isn't supported for "
                                 "network's bandwidth yet"));
            } else {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                               _("floor attribute is supported only for "
                                 "interfaces of type network"));
            }
            goto error;
        }
184 185 186 187 188 189 190 191 192 193 194 195
    }

    if (out) {
        if (VIR_ALLOC(def->out) < 0) {
            virReportOOMError();
            goto error;
        }

        if (virNetDevBandwidthParseRate(out, def->out) < 0) {
            /* helper reported error for us */
            goto error;
        }
196 197 198 199 200 201 202

        if (def->out->floor) {
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                           _("'floor' attribute allowed "
                             "only in <inbound> element"));
            goto error;
        }
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
    }

    return def;

error:
    virNetDevBandwidthFree(def);
    return NULL;
}

static int
virNetDevBandwidthRateFormat(virNetDevBandwidthRatePtr def,
                             virBufferPtr buf,
                             const char *elem_name)
{
    if (!buf || !elem_name)
        return -1;
    if (!def)
        return 0;

222 223 224 225 226
    if (def->average || def->floor) {
        virBufferAsprintf(buf, "  <%s", elem_name);

        if (def->average)
            virBufferAsprintf(buf, " average='%llu'", def->average);
227 228 229 230

        if (def->peak)
            virBufferAsprintf(buf, " peak='%llu'", def->peak);

231 232 233
        if (def->floor)
            virBufferAsprintf(buf, " floor='%llu'", def->floor);

234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
        if (def->burst)
            virBufferAsprintf(buf, " burst='%llu'", def->burst);
        virBufferAddLit(buf, "/>\n");
    }

    return 0;
}

/**
 * virNetDevBandwidthDefFormat:
 * @def: Data source
 * @buf: Buffer to print to
 *
 * Formats bandwidth and prepend each line with @indent.
 * @buf may use auto-indentation.
 *
 * Returns 0 on success, else -1.
 */
int
virNetDevBandwidthFormat(virNetDevBandwidthPtr def, virBufferPtr buf)
{
    int ret = -1;

    if (!buf)
        goto cleanup;

    if (!def) {
        ret = 0;
        goto cleanup;
    }

    virBufferAddLit(buf, "<bandwidth>\n");
    if (virNetDevBandwidthRateFormat(def->in, buf, "inbound") < 0 ||
        virNetDevBandwidthRateFormat(def->out, buf, "outbound") < 0)
        goto cleanup;
    virBufferAddLit(buf, "</bandwidth>\n");

    ret = 0;

cleanup:
    return ret;
}