2018-02-19 12:38:54 +03:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2017-04-05 11:49:19 +03:00
|
|
|
From: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
2020-04-07 17:53:19 +03:00
|
|
|
Date: Mon, 6 Apr 2020 12:16:37 +0200
|
|
|
|
Subject: [PATCH] PVE: [Up] qmp: add get_link_status
|
2017-04-05 11:49:19 +03:00
|
|
|
|
2019-06-06 13:58:15 +03:00
|
|
|
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
|
2017-04-05 11:49:19 +03:00
|
|
|
---
|
2020-04-07 17:53:19 +03:00
|
|
|
net/net.c | 27 +++++++++++++++++++++++++++
|
|
|
|
qapi/net.json | 15 +++++++++++++++
|
|
|
|
qapi/pragma.json | 1 +
|
2018-08-30 16:00:07 +03:00
|
|
|
3 files changed, 43 insertions(+)
|
2017-04-05 11:49:19 +03:00
|
|
|
|
|
|
|
diff --git a/net/net.c b/net/net.c
|
2022-02-11 12:24:33 +03:00
|
|
|
index f0d14dbfc1..6d476c47ef 100644
|
2017-04-05 11:49:19 +03:00
|
|
|
--- a/net/net.c
|
|
|
|
+++ b/net/net.c
|
2022-02-11 12:24:33 +03:00
|
|
|
@@ -1334,6 +1334,33 @@ void hmp_info_network(Monitor *mon, const QDict *qdict)
|
2017-04-05 11:49:19 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+int64_t qmp_get_link_status(const char *name, Error **errp)
|
|
|
|
+{
|
|
|
|
+ NetClientState *ncs[MAX_QUEUE_NUM];
|
|
|
|
+ NetClientState *nc;
|
|
|
|
+ int queues;
|
|
|
|
+ bool ret;
|
|
|
|
+
|
|
|
|
+ queues = qemu_find_net_clients_except(name, ncs,
|
|
|
|
+ NET_CLIENT_DRIVER__MAX,
|
|
|
|
+ MAX_QUEUE_NUM);
|
|
|
|
+
|
|
|
|
+ if (queues == 0) {
|
|
|
|
+ error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
|
|
|
|
+ "Device '%s' not found", name);
|
|
|
|
+ return (int64_t) -1;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ nc = ncs[0];
|
|
|
|
+ ret = ncs[0]->link_down;
|
|
|
|
+
|
|
|
|
+ if (nc->peer->info->type == NET_CLIENT_DRIVER_NIC) {
|
|
|
|
+ ret = ncs[0]->peer->link_down;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return (int64_t) ret ? 0 : 1;
|
|
|
|
+}
|
|
|
|
+
|
2019-06-06 13:58:15 +03:00
|
|
|
void colo_notify_filters_event(int event, Error **errp)
|
2017-04-05 11:49:19 +03:00
|
|
|
{
|
2019-06-06 13:58:15 +03:00
|
|
|
NetClientState *nc;
|
2018-02-22 14:34:57 +03:00
|
|
|
diff --git a/qapi/net.json b/qapi/net.json
|
2021-10-11 14:55:34 +03:00
|
|
|
index 7fab2e7cd8..74c9a6109e 100644
|
2018-02-22 14:34:57 +03:00
|
|
|
--- a/qapi/net.json
|
|
|
|
+++ b/qapi/net.json
|
2020-08-20 11:42:45 +03:00
|
|
|
@@ -35,6 +35,21 @@
|
2019-06-06 13:58:15 +03:00
|
|
|
##
|
2017-04-05 11:49:19 +03:00
|
|
|
{ 'command': 'set_link', 'data': {'name': 'str', 'up': 'bool'} }
|
|
|
|
|
2019-06-06 13:58:15 +03:00
|
|
|
+##
|
2017-04-05 12:38:26 +03:00
|
|
|
+# @get_link_status:
|
2017-04-05 11:49:19 +03:00
|
|
|
+#
|
|
|
|
+# Get the current link state of the nics or nic.
|
|
|
|
+#
|
|
|
|
+# @name: name of the nic you get the state of
|
|
|
|
+#
|
|
|
|
+# Return: If link is up 1
|
|
|
|
+# If link is down 0
|
|
|
|
+# If an error occure an empty string.
|
|
|
|
+#
|
|
|
|
+# Notes: this is an Proxmox VE extension and not offical part of Qemu.
|
|
|
|
+##
|
2020-04-07 17:53:19 +03:00
|
|
|
+{ 'command': 'get_link_status', 'data': {'name': 'str'} , 'returns': 'int' }
|
2017-04-05 11:49:19 +03:00
|
|
|
+
|
2019-06-06 13:58:15 +03:00
|
|
|
##
|
2018-02-22 14:34:57 +03:00
|
|
|
# @netdev_add:
|
2017-04-05 11:49:19 +03:00
|
|
|
#
|
2020-04-07 17:53:19 +03:00
|
|
|
diff --git a/qapi/pragma.json b/qapi/pragma.json
|
2021-05-27 13:43:32 +03:00
|
|
|
index 3bc0335d1f..7c91ea3685 100644
|
2020-04-07 17:53:19 +03:00
|
|
|
--- a/qapi/pragma.json
|
|
|
|
+++ b/qapi/pragma.json
|
2021-05-27 13:43:32 +03:00
|
|
|
@@ -22,6 +22,7 @@
|
|
|
|
'system_reset',
|
|
|
|
'system_wakeup' ],
|
|
|
|
'command-returns-exceptions': [
|
|
|
|
+ 'get_link_status',
|
2020-04-07 17:53:19 +03:00
|
|
|
'human-monitor-command',
|
|
|
|
'qom-get',
|
2021-05-27 13:43:32 +03:00
|
|
|
'query-tpm-models',
|