numa.c 16.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * NUMA parameter parsing routines
 *
 * Copyright (c) 2014 Fujitsu Ltd.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

25
#include "sysemu/numa.h"
26 27 28
#include "exec/cpu-common.h"
#include "qemu/bitmap.h"
#include "qom/cpu.h"
29 30
#include "qemu/error-report.h"
#include "include/exec/cpu-common.h" /* for RAM_ADDR_FMT */
31 32 33
#include "qapi-visit.h"
#include "qapi/opts-visitor.h"
#include "qapi/dealloc-visitor.h"
34
#include "hw/boards.h"
35
#include "sysemu/hostmem.h"
H
Hu Tao 已提交
36
#include "qmp-commands.h"
37
#include "hw/mem/pc-dimm.h"
38 39
#include "qemu/option.h"
#include "qemu/config-file.h"
40 41 42 43 44 45 46 47

QemuOptsList qemu_numa_opts = {
    .name = "numa",
    .implied_opt_name = "type",
    .head = QTAILQ_HEAD_INITIALIZER(qemu_numa_opts.head),
    .desc = { { 0 } } /* validated with OptsVisitor */
};

48
static int have_memdevs = -1;
49 50 51
static int max_numa_nodeid; /* Highest specified NUMA node ID, plus one.
                             * For all nodes, nodeid < max_numa_nodeid
                             */
52 53
int nb_numa_nodes;
NodeInfo numa_info[MAX_NODES];
54

55 56
void numa_set_mem_node_id(ram_addr_t addr, uint64_t size, uint32_t node)
{
57
    struct numa_addr_range *range;
58

59 60 61 62 63 64 65 66
    /*
     * Memory-less nodes can come here with 0 size in which case,
     * there is nothing to do.
     */
    if (!size) {
        return;
    }

67
    range = g_malloc0(sizeof(*range));
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
    range->mem_start = addr;
    range->mem_end = addr + size - 1;
    QLIST_INSERT_HEAD(&numa_info[node].addr, range, entry);
}

void numa_unset_mem_node_id(ram_addr_t addr, uint64_t size, uint32_t node)
{
    struct numa_addr_range *range, *next;

    QLIST_FOREACH_SAFE(range, &numa_info[node].addr, entry, next) {
        if (addr == range->mem_start && (addr + size - 1) == range->mem_end) {
            QLIST_REMOVE(range, entry);
            g_free(range);
            return;
        }
    }
}

86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
static void numa_set_mem_ranges(void)
{
    int i;
    ram_addr_t mem_start = 0;

    /*
     * Deduce start address of each node and use it to store
     * the address range info in numa_info address range list
     */
    for (i = 0; i < nb_numa_nodes; i++) {
        numa_set_mem_node_id(mem_start, numa_info[i].node_mem, i);
        mem_start += numa_info[i].node_mem;
    }
}

101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
/*
 * Check if @addr falls under NUMA @node.
 */
static bool numa_addr_belongs_to_node(ram_addr_t addr, uint32_t node)
{
    struct numa_addr_range *range;

    QLIST_FOREACH(range, &numa_info[node].addr, entry) {
        if (addr >= range->mem_start && addr <= range->mem_end) {
            return true;
        }
    }
    return false;
}

/*
 * Given an address, return the index of the NUMA node to which the
 * address belongs to.
 */
uint32_t numa_get_node(ram_addr_t addr, Error **errp)
{
    uint32_t i;

    /* For non NUMA configurations, check if the addr falls under node 0 */
    if (!nb_numa_nodes) {
        if (numa_addr_belongs_to_node(addr, 0)) {
            return 0;
        }
    }

    for (i = 0; i < nb_numa_nodes; i++) {
        if (numa_addr_belongs_to_node(addr, i)) {
            return i;
        }
    }

    error_setg(errp, "Address 0x" RAM_ADDR_FMT " doesn't belong to any "
                "NUMA node", addr);
    return -1;
}

142
static void numa_node_parse(NumaNodeOptions *node, QemuOpts *opts, Error **errp)
143
{
144 145
    uint16_t nodenr;
    uint16List *cpus = NULL;
146

147 148
    if (node->has_nodeid) {
        nodenr = node->nodeid;
149
    } else {
150
        nodenr = nb_numa_nodes;
151 152
    }

153 154
    if (nodenr >= MAX_NODES) {
        error_setg(errp, "Max number of NUMA nodes reached: %"
155
                   PRIu16 "", nodenr);
156
        return;
157 158
    }

159 160 161 162 163
    if (numa_info[nodenr].present) {
        error_setg(errp, "Duplicate NUMA nodeid: %" PRIu16, nodenr);
        return;
    }

164
    for (cpus = node->cpus; cpus; cpus = cpus->next) {
165 166 167 168 169
        if (cpus->value >= max_cpus) {
            error_setg(errp,
                       "CPU index (%" PRIu16 ")"
                       " should be smaller than maxcpus (%d)",
                       cpus->value, max_cpus);
170 171 172
            return;
        }
        bitmap_set(numa_info[nodenr].node_cpu, cpus->value, 1);
173 174
    }

175
    if (node->has_mem && node->has_memdev) {
176
        error_setg(errp, "qemu: cannot specify both mem= and memdev=");
177 178 179 180 181 182 183 184
        return;
    }

    if (have_memdevs == -1) {
        have_memdevs = node->has_memdev;
    }
    if (node->has_memdev != have_memdevs) {
        error_setg(errp, "qemu: memdev option must be specified for either "
185
                   "all or no nodes");
186 187 188
        return;
    }

189 190 191 192 193 194 195 196 197
    if (node->has_mem) {
        uint64_t mem_size = node->mem;
        const char *mem_str = qemu_opt_get(opts, "mem");
        /* Fix up legacy suffix-less format */
        if (g_ascii_isdigit(mem_str[strlen(mem_str) - 1])) {
            mem_size <<= 20;
        }
        numa_info[nodenr].node_mem = mem_size;
    }
198 199 200 201 202 203 204 205 206 207 208 209
    if (node->has_memdev) {
        Object *o;
        o = object_resolve_path_type(node->memdev, TYPE_MEMORY_BACKEND, NULL);
        if (!o) {
            error_setg(errp, "memdev=%s is ambiguous", node->memdev);
            return;
        }

        object_ref(o);
        numa_info[nodenr].node_mem = object_property_get_int(o, "size", NULL);
        numa_info[nodenr].node_memdev = MEMORY_BACKEND(o);
    }
210 211
    numa_info[nodenr].present = true;
    max_numa_nodeid = MAX(max_numa_nodeid, nodenr + 1);
212 213
}

214
static int parse_numa(void *opaque, QemuOpts *opts, Error **errp)
215
{
216 217
    NumaOptions *object = NULL;
    Error *err = NULL;
218

219 220 221 222
    {
        OptsVisitor *ov = opts_visitor_new(opts);
        visit_type_NumaOptions(opts_get_visitor(ov), &object, NULL, &err);
        opts_visitor_cleanup(ov);
223 224
    }

225 226 227
    if (err) {
        goto error;
    }
228

229
    switch (object->type) {
230
    case NUMA_OPTIONS_KIND_NODE:
231
        numa_node_parse(object->u.node, opts, &err);
232 233
        if (err) {
            goto error;
234
        }
235 236 237 238 239
        nb_numa_nodes++;
        break;
    default:
        abort();
    }
240

241
    return 0;
242

243
error:
244
    error_report_err(err);
245 246 247 248 249 250

    if (object) {
        QapiDeallocVisitor *dv = qapi_dealloc_visitor_new();
        visit_type_NumaOptions(qapi_dealloc_get_visitor(dv),
                               &object, NULL, NULL);
        qapi_dealloc_visitor_cleanup(dv);
251
    }
252 253

    return -1;
254 255
}

256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
static char *enumerate_cpus(unsigned long *cpus, int max_cpus)
{
    int cpu;
    bool first = true;
    GString *s = g_string_new(NULL);

    for (cpu = find_first_bit(cpus, max_cpus);
        cpu < max_cpus;
        cpu = find_next_bit(cpus, max_cpus, cpu + 1)) {
        g_string_append_printf(s, "%s%d", first ? "" : " ", cpu);
        first = false;
    }
    return g_string_free(s, FALSE);
}

static void validate_numa_cpus(void)
{
    int i;
    DECLARE_BITMAP(seen_cpus, MAX_CPUMASK_BITS);

    bitmap_zero(seen_cpus, MAX_CPUMASK_BITS);
    for (i = 0; i < nb_numa_nodes; i++) {
        if (bitmap_intersects(seen_cpus, numa_info[i].node_cpu,
                              MAX_CPUMASK_BITS)) {
            bitmap_and(seen_cpus, seen_cpus,
                       numa_info[i].node_cpu, MAX_CPUMASK_BITS);
            error_report("CPU(s) present in multiple NUMA nodes: %s",
283
                         enumerate_cpus(seen_cpus, max_cpus));
284 285 286 287 288
            exit(EXIT_FAILURE);
        }
        bitmap_or(seen_cpus, seen_cpus,
                  numa_info[i].node_cpu, MAX_CPUMASK_BITS);
    }
289 290 291 292 293 294 295 296 297 298

    if (!bitmap_full(seen_cpus, max_cpus)) {
        char *msg;
        bitmap_complement(seen_cpus, seen_cpus, max_cpus);
        msg = enumerate_cpus(seen_cpus, max_cpus);
        error_report("warning: CPU(s) not present in any NUMA nodes: %s", msg);
        error_report("warning: All CPU(s) up to maxcpus should be described "
                     "in NUMA config");
        g_free(msg);
    }
299 300
}

301
void parse_numa_opts(MachineClass *mc)
302
{
303 304
    int i;

305
    if (qemu_opts_foreach(qemu_find_opts("numa"), parse_numa, NULL, NULL)) {
306 307 308
        exit(1);
    }

309 310 311 312 313 314 315 316 317 318 319 320 321 322
    assert(max_numa_nodeid <= MAX_NODES);

    /* No support for sparse NUMA node IDs yet: */
    for (i = max_numa_nodeid - 1; i >= 0; i--) {
        /* Report large node IDs first, to make mistakes easier to spot */
        if (!numa_info[i].present) {
            error_report("numa: Node ID missing: %d", i);
            exit(1);
        }
    }

    /* This must be always true if all nodes are present: */
    assert(nb_numa_nodes == max_numa_nodeid);

323
    if (nb_numa_nodes > 0) {
324
        uint64_t numa_total;
325 326 327 328 329

        if (nb_numa_nodes > MAX_NODES) {
            nb_numa_nodes = MAX_NODES;
        }

M
Michael S. Tsirkin 已提交
330
        /* If no memory size is given for any node, assume the default case
331 332 333
         * and distribute the available memory equally across all nodes
         */
        for (i = 0; i < nb_numa_nodes; i++) {
334
            if (numa_info[i].node_mem != 0) {
335 336 337 338 339 340
                break;
            }
        }
        if (i == nb_numa_nodes) {
            uint64_t usedmem = 0;

M
Michael S. Tsirkin 已提交
341
            /* On Linux, each node's border has to be 8MB aligned,
342 343 344
             * the final node gets the rest.
             */
            for (i = 0; i < nb_numa_nodes - 1; i++) {
345 346 347
                numa_info[i].node_mem = (ram_size / nb_numa_nodes) &
                                        ~((1 << 23UL) - 1);
                usedmem += numa_info[i].node_mem;
348
            }
349
            numa_info[i].node_mem = ram_size - usedmem;
350 351
        }

352 353
        numa_total = 0;
        for (i = 0; i < nb_numa_nodes; i++) {
354
            numa_total += numa_info[i].node_mem;
355 356
        }
        if (numa_total != ram_size) {
357 358
            error_report("total memory for NUMA nodes (0x%" PRIx64 ")"
                         " should equal RAM size (0x" RAM_ADDR_FMT ")",
359 360 361 362
                         numa_total, ram_size);
            exit(1);
        }

363 364 365 366
        for (i = 0; i < nb_numa_nodes; i++) {
            QLIST_INIT(&numa_info[i].addr);
        }

367 368
        numa_set_mem_ranges();

369
        for (i = 0; i < nb_numa_nodes; i++) {
370
            if (!bitmap_empty(numa_info[i].node_cpu, MAX_CPUMASK_BITS)) {
371 372 373
                break;
            }
        }
374 375 376 377 378 379
        /* Historically VCPUs were assigned in round-robin order to NUMA
         * nodes. However it causes issues with guest not handling it nice
         * in case where cores/threads from a multicore CPU appear on
         * different nodes. So allow boards to override default distribution
         * rule grouping VCPUs by socket so that VCPUs from the same socket
         * would be on the same node.
380 381 382
         */
        if (i == nb_numa_nodes) {
            for (i = 0; i < max_cpus; i++) {
383 384 385 386 387 388
                unsigned node_id = i % nb_numa_nodes;
                if (mc->cpu_index_to_socket_id) {
                    node_id = mc->cpu_index_to_socket_id(i) % nb_numa_nodes;
                }

                set_bit(i, numa_info[node_id].node_cpu);
389 390
            }
        }
391 392

        validate_numa_cpus();
393 394
    } else {
        numa_set_mem_node_id(0, ram_size, 0);
395 396 397
    }
}

398
void numa_post_machine_init(void)
399 400 401 402 403 404
{
    CPUState *cpu;
    int i;

    CPU_FOREACH(cpu) {
        for (i = 0; i < nb_numa_nodes; i++) {
405
            if (test_bit(cpu->cpu_index, numa_info[i].node_cpu)) {
406 407 408 409 410
                cpu->numa_node = i;
            }
        }
    }
}
411

412 413 414 415
static void allocate_system_memory_nonnuma(MemoryRegion *mr, Object *owner,
                                           const char *name,
                                           uint64_t ram_size)
{
416 417
    if (mem_path) {
#ifdef __linux__
418
        Error *err = NULL;
419
        memory_region_init_ram_from_file(mr, owner, name, ram_size, false,
420 421 422 423 424
                                         mem_path, &err);

        /* Legacy behavior: if allocation failed, fall back to
         * regular RAM allocation.
         */
425
        if (err) {
426
            error_report_err(err);
427
            memory_region_init_ram(mr, owner, name, ram_size, &error_fatal);
428
        }
429 430 431 432 433
#else
        fprintf(stderr, "-mem-path not supported on this host\n");
        exit(1);
#endif
    } else {
434
        memory_region_init_ram(mr, owner, name, ram_size, &error_fatal);
435
    }
436 437 438
    vmstate_register_ram_global(mr);
}

439 440 441 442
void memory_region_allocate_system_memory(MemoryRegion *mr, Object *owner,
                                          const char *name,
                                          uint64_t ram_size)
{
443 444 445 446 447 448 449 450 451 452 453 454 455 456 457
    uint64_t addr = 0;
    int i;

    if (nb_numa_nodes == 0 || !have_memdevs) {
        allocate_system_memory_nonnuma(mr, owner, name, ram_size);
        return;
    }

    memory_region_init(mr, owner, name, ram_size);
    for (i = 0; i < MAX_NODES; i++) {
        uint64_t size = numa_info[i].node_mem;
        HostMemoryBackend *backend = numa_info[i].node_memdev;
        if (!backend) {
            continue;
        }
458 459
        MemoryRegion *seg = host_memory_backend_get_memory(backend,
                                                           &error_fatal);
460

H
Hu Tao 已提交
461 462 463 464 465 466 467 468
        if (memory_region_is_mapped(seg)) {
            char *path = object_get_canonical_path_component(OBJECT(backend));
            error_report("memory backend %s is used multiple times. Each "
                         "-numa option must use a different memdev value.",
                         path);
            exit(1);
        }

469 470 471 472
        memory_region_add_subregion(mr, addr, seg);
        vmstate_register_ram_global(seg);
        addr += size;
    }
473
}
H
Hu Tao 已提交
474

475 476 477 478 479 480 481 482 483 484 485
static void numa_stat_memory_devices(uint64_t node_mem[])
{
    MemoryDeviceInfoList *info_list = NULL;
    MemoryDeviceInfoList **prev = &info_list;
    MemoryDeviceInfoList *info;

    qmp_pc_dimm_device_list(qdev_get_machine(), &prev);
    for (info = info_list; info; info = info->next) {
        MemoryDeviceInfo *value = info->value;

        if (value) {
486
            switch (value->type) {
487
            case MEMORY_DEVICE_INFO_KIND_DIMM:
488
                node_mem[value->u.dimm->node] += value->u.dimm->size;
489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511
                break;
            default:
                break;
            }
        }
    }
    qapi_free_MemoryDeviceInfoList(info_list);
}

void query_numa_node_mem(uint64_t node_mem[])
{
    int i;

    if (nb_numa_nodes <= 0) {
        return;
    }

    numa_stat_memory_devices(node_mem);
    for (i = 0; i < nb_numa_nodes; i++) {
        node_mem[i] += numa_info[i].node_mem;
    }
}

H
Hu Tao 已提交
512 513 514
static int query_memdev(Object *obj, void *opaque)
{
    MemdevList **list = opaque;
515
    MemdevList *m = NULL;
H
Hu Tao 已提交
516 517

    if (object_dynamic_cast(obj, TYPE_MEMORY_BACKEND)) {
518
        m = g_malloc0(sizeof(*m));
H
Hu Tao 已提交
519 520 521 522

        m->value = g_malloc0(sizeof(*m->value));

        m->value->size = object_property_get_int(obj, "size",
523
                                                 &error_abort);
H
Hu Tao 已提交
524
        m->value->merge = object_property_get_bool(obj, "merge",
525
                                                   &error_abort);
H
Hu Tao 已提交
526
        m->value->dump = object_property_get_bool(obj, "dump",
527
                                                  &error_abort);
H
Hu Tao 已提交
528
        m->value->prealloc = object_property_get_bool(obj,
529 530
                                                      "prealloc",
                                                      &error_abort);
H
Hu Tao 已提交
531 532
        m->value->policy = object_property_get_enum(obj,
                                                    "policy",
533
                                                    "HostMemPolicy",
534
                                                    &error_abort);
H
Hu Tao 已提交
535
        object_property_get_uint16List(obj, "host-nodes",
536 537
                                       &m->value->host_nodes,
                                       &error_abort);
H
Hu Tao 已提交
538 539 540 541 542 543 544 545 546 547

        m->next = *list;
        *list = m;
    }

    return 0;
}

MemdevList *qmp_query_memdev(Error **errp)
{
548
    Object *obj = object_get_objects_root();
C
Chen Fan 已提交
549
    MemdevList *list = NULL;
H
Hu Tao 已提交
550

551
    object_child_foreach(obj, query_memdev, &list);
H
Hu Tao 已提交
552 553
    return list;
}