From 0e94f7d7717857884bd2568bd7917faf10cd6e48 Mon Sep 17 00:00:00 2001
From: Vishesh <8760112+vishesh92@users.noreply.github.com>
Date: Thu, 29 Jan 2026 19:47:11 +0530
Subject: [PATCH 1/2] UI: Show applied search filters (#9520)
---
ui/public/config.json | 3 +-
ui/src/components/view/SearchFilter.vue | 559 ++++++++++++++++++++++++
ui/src/views/AutogenView.vue | 48 ++
ui/tests/unit/views/AutogenView.spec.js | 4 +
4 files changed, 613 insertions(+), 1 deletion(-)
create mode 100644 ui/src/components/view/SearchFilter.vue
diff --git a/ui/public/config.json b/ui/public/config.json
index 64d10284186..e3d1d30b95f 100644
--- a/ui/public/config.json
+++ b/ui/public/config.json
@@ -98,5 +98,6 @@
"multipleServer": false,
"allowSettingTheme": true,
"docHelpMappings": {},
- "notifyLatestCSVersion": true
+ "notifyLatestCSVersion": true,
+ "showSearchFilters": true
}
diff --git a/ui/src/components/view/SearchFilter.vue b/ui/src/components/view/SearchFilter.vue
new file mode 100644
index 00000000000..ed950c094a3
--- /dev/null
+++ b/ui/src/components/view/SearchFilter.vue
@@ -0,0 +1,559 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements. See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership. The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License. You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied. See the License for the
+// specific language governing permissions and limitations
+// under the License.
+
+
+
+
+
+ $emit('removeFilter', filter)"
+ >
+
+ {{ retrieveFieldLabel(filter.key) }} : {{ getTrimmedText(filter.value, 20) }}
+
+
+ $emit('removeFilter', filter)"
+ >
+
+ {{ $t('label.tag') }}: {{ filter.key }}={{ getTrimmedText(filter.value, 20) }}
+
+
+
+
+
+
+
+
diff --git a/ui/src/views/AutogenView.vue b/ui/src/views/AutogenView.vue
index a01e300c1c9..6acc81d6a02 100644
--- a/ui/src/views/AutogenView.vue
+++ b/ui/src/views/AutogenView.vue
@@ -106,6 +106,16 @@
@change-filter="changeFilter"/>
+
+
+
@@ -469,6 +479,7 @@ import ListView from '@/components/view/ListView'
import ResourceView from '@/components/view/ResourceView'
import ActionButton from '@/components/view/ActionButton'
import SearchView from '@/components/view/SearchView'
+import SearchFilter from '@/components/view/SearchFilter'
import OsLogo from '@/components/widgets/OsLogo'
import ResourceIcon from '@/components/view/ResourceIcon'
import BulkActionProgress from '@/components/view/BulkActionProgress'
@@ -482,6 +493,7 @@ export default {
ListView,
ActionButton,
SearchView,
+ SearchFilter,
BulkActionProgress,
TooltipLabel,
OsLogo,
@@ -1126,6 +1138,42 @@ export default {
eventBus.emit('action-closing', { action: this.currentAction })
this.closeAction()
},
+ getActiveFilters () {
+ const queryParams = Object.assign({}, this.$route.query)
+ const activeFilters = []
+ for (const filter in queryParams) {
+ if (!filter.startsWith('tags[')) {
+ activeFilters.push({
+ key: filter,
+ value: queryParams[filter],
+ isTag: false
+ })
+ } else if (filter.endsWith('].key')) {
+ const tagIdx = filter.split('[')[1].split(']')[0]
+ const tagKey = queryParams[`tags[${tagIdx}].key`]
+ const tagValue = queryParams[`tags[${tagIdx}].value`]
+ activeFilters.push({
+ key: tagKey,
+ value: tagValue,
+ isTag: true,
+ tagIdx: tagIdx
+ })
+ }
+ }
+ return activeFilters
+ },
+ removeFilter (filter) {
+ const queryParams = Object.assign({}, this.$route.query)
+ if (filter.isTag) {
+ delete queryParams[`tags[${filter.tagIdx}].key`]
+ delete queryParams[`tags[${filter.tagIdx}].value`]
+ } else {
+ delete queryParams[filter.key]
+ }
+ queryParams.page = '1'
+ queryParams.pagesize = String(this.pageSize)
+ this.$router.push({ query: queryParams })
+ },
onRowSelectionChange (selection) {
this.selectedRowKeys = selection
if (selection?.length > 0) {
diff --git a/ui/tests/unit/views/AutogenView.spec.js b/ui/tests/unit/views/AutogenView.spec.js
index eb0352f99d1..05b565ab9c9 100644
--- a/ui/tests/unit/views/AutogenView.spec.js
+++ b/ui/tests/unit/views/AutogenView.spec.js
@@ -113,6 +113,10 @@ store = common.createMockStore(state, actions, mutations)
i18n = common.createMockI18n('en', mockData.messages)
mocks = {
+ $config: {
+ showSearchFilters: true,
+ docBase: 'http://docs.cloudstack.apache.org/en/latest'
+ },
$notifyError: jest.fn((error) => {
return error
}),
From a6ccde44c4bc3c2b4623aca6b55500a722144763 Mon Sep 17 00:00:00 2001
From: Abhishek Kumar
Date: Thu, 29 Jan 2026 21:41:21 +0530
Subject: [PATCH 2/2] kvm: honour disk controller for vm during attach volume
(#12452)
---
.../resource/LibvirtComputingResource.java | 11 +-
.../hypervisor/kvm/resource/LibvirtVMDef.java | 9 ++
.../kvm/storage/KVMStorageProcessor.java | 121 ++++++++++--------
3 files changed, 82 insertions(+), 59 deletions(-)
diff --git a/plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/resource/LibvirtComputingResource.java b/plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/resource/LibvirtComputingResource.java
index b66a838a3a5..c7b2747a777 100644
--- a/plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/resource/LibvirtComputingResource.java
+++ b/plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/resource/LibvirtComputingResource.java
@@ -4371,12 +4371,11 @@ public class LibvirtComputingResource extends ServerResourceBase implements Serv
String dataDiskController = details.get(VmDetailConstants.DATA_DISK_CONTROLLER);
if (StringUtils.isNotBlank(dataDiskController)) {
- LOGGER.debug("Passed custom disk controller for DATA disk " + dataDiskController);
- for (DiskDef.DiskBus bus : DiskDef.DiskBus.values()) {
- if (bus.toString().equalsIgnoreCase(dataDiskController)) {
- LOGGER.debug("Found matching enum for disk controller for DATA disk " + dataDiskController);
- return bus;
- }
+ LOGGER.debug("Passed custom disk controller for DATA disk {}", dataDiskController);
+ DiskDef.DiskBus bus = DiskDef.DiskBus.fromValue(dataDiskController);
+ if (bus != null) {
+ LOGGER.debug("Found matching enum for disk controller for DATA disk {}", dataDiskController);
+ return bus;
}
}
return null;
diff --git a/plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/resource/LibvirtVMDef.java b/plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/resource/LibvirtVMDef.java
index a38e7a02357..696e71bea80 100644
--- a/plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/resource/LibvirtVMDef.java
+++ b/plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/resource/LibvirtVMDef.java
@@ -686,6 +686,15 @@ public class LibvirtVMDef {
_bus = bus;
}
+ public static DiskBus fromValue(String bus) {
+ for (DiskBus b : DiskBus.values()) {
+ if (b.toString().equalsIgnoreCase(bus)) {
+ return b;
+ }
+ }
+ return null;
+ }
+
@Override
public String toString() {
return _bus;
diff --git a/plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/storage/KVMStorageProcessor.java b/plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/storage/KVMStorageProcessor.java
index 33bd41ee6ba..87ca531bb74 100644
--- a/plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/storage/KVMStorageProcessor.java
+++ b/plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/storage/KVMStorageProcessor.java
@@ -1320,26 +1320,27 @@ public class KVMStorageProcessor implements StorageProcessor {
/**
* Attaches or detaches a disk to an instance.
- * @param conn libvirt connection
- * @param attach boolean that determines whether the device will be attached or detached
- * @param vmName instance name
- * @param attachingDisk kvm physical disk
- * @param devId device id in instance
+ * @param conn libvirt connection
+ * @param attach boolean that determines whether the device will be attached or detached
+ * @param vmName instance name
+ * @param attachingDisk kvm physical disk
+ * @param devId device id in instance
* @param serial
- * @param bytesReadRate bytes read rate
- * @param bytesReadRateMax bytes read rate max
- * @param bytesReadRateMaxLength bytes read rate max length
- * @param bytesWriteRate bytes write rate
- * @param bytesWriteRateMax bytes write rate amx
+ * @param bytesReadRate bytes read rate
+ * @param bytesReadRateMax bytes read rate max
+ * @param bytesReadRateMaxLength bytes read rate max length
+ * @param bytesWriteRate bytes write rate
+ * @param bytesWriteRateMax bytes write rate amx
* @param bytesWriteRateMaxLength bytes write rate max length
- * @param iopsReadRate iops read rate
- * @param iopsReadRateMax iops read rate max
- * @param iopsReadRateMaxLength iops read rate max length
- * @param iopsWriteRate iops write rate
- * @param iopsWriteRateMax iops write rate max
- * @param iopsWriteRateMaxLength iops write rate max length
- * @param cacheMode cache mode
- * @param encryptDetails encrypt details
+ * @param iopsReadRate iops read rate
+ * @param iopsReadRateMax iops read rate max
+ * @param iopsReadRateMaxLength iops read rate max length
+ * @param iopsWriteRate iops write rate
+ * @param iopsWriteRateMax iops write rate max
+ * @param iopsWriteRateMaxLength iops write rate max length
+ * @param cacheMode cache mode
+ * @param encryptDetails encrypt details
+ * @param controllerInfo
* @throws LibvirtException
* @throws InternalErrorException
*/
@@ -1347,37 +1348,38 @@ public class KVMStorageProcessor implements StorageProcessor {
final String serial, final Long bytesReadRate, final Long bytesReadRateMax, final Long bytesReadRateMaxLength,
final Long bytesWriteRate, final Long bytesWriteRateMax, final Long bytesWriteRateMaxLength, final Long iopsReadRate,
final Long iopsReadRateMax, final Long iopsReadRateMaxLength, final Long iopsWriteRate, final Long iopsWriteRateMax,
- final Long iopsWriteRateMaxLength, final String cacheMode, final DiskDef.LibvirtDiskEncryptDetails encryptDetails, Map details)
+ final Long iopsWriteRateMaxLength, final String cacheMode, final DiskDef.LibvirtDiskEncryptDetails encryptDetails, Map details, Map controllerInfo)
throws LibvirtException, InternalErrorException {
attachOrDetachDisk(conn, attach, vmName, attachingDisk, devId, serial, bytesReadRate, bytesReadRateMax, bytesReadRateMaxLength,
bytesWriteRate, bytesWriteRateMax, bytesWriteRateMaxLength, iopsReadRate, iopsReadRateMax, iopsReadRateMaxLength, iopsWriteRate,
- iopsWriteRateMax, iopsWriteRateMaxLength, cacheMode, encryptDetails, 0l, details);
+ iopsWriteRateMax, iopsWriteRateMaxLength, cacheMode, encryptDetails, 0l, details, controllerInfo);
}
/**
*
* Attaches or detaches a disk to an instance.
- * @param conn libvirt connection
- * @param attach boolean that determines whether the device will be attached or detached
- * @param vmName instance name
- * @param attachingDisk kvm physical disk
- * @param devId device id in instance
+ * @param conn libvirt connection
+ * @param attach boolean that determines whether the device will be attached or detached
+ * @param vmName instance name
+ * @param attachingDisk kvm physical disk
+ * @param devId device id in instance
* @param serial
- * @param bytesReadRate bytes read rate
- * @param bytesReadRateMax bytes read rate max
- * @param bytesReadRateMaxLength bytes read rate max length
- * @param bytesWriteRate bytes write rate
- * @param bytesWriteRateMax bytes write rate amx
+ * @param bytesReadRate bytes read rate
+ * @param bytesReadRateMax bytes read rate max
+ * @param bytesReadRateMaxLength bytes read rate max length
+ * @param bytesWriteRate bytes write rate
+ * @param bytesWriteRateMax bytes write rate amx
* @param bytesWriteRateMaxLength bytes write rate max length
- * @param iopsReadRate iops read rate
- * @param iopsReadRateMax iops read rate max
- * @param iopsReadRateMaxLength iops read rate max length
- * @param iopsWriteRate iops write rate
- * @param iopsWriteRateMax iops write rate max
- * @param iopsWriteRateMaxLength iops write rate max length
- * @param cacheMode cache mode
- * @param encryptDetails encrypt details
- * @param waitDetachDevice value set in milliseconds to wait before assuming device removal failed
+ * @param iopsReadRate iops read rate
+ * @param iopsReadRateMax iops read rate max
+ * @param iopsReadRateMaxLength iops read rate max length
+ * @param iopsWriteRate iops write rate
+ * @param iopsWriteRateMax iops write rate max
+ * @param iopsWriteRateMaxLength iops write rate max length
+ * @param cacheMode cache mode
+ * @param encryptDetails encrypt details
+ * @param waitDetachDevice value set in milliseconds to wait before assuming device removal failed
+ * @param controllerInfo
* @throws LibvirtException
* @throws InternalErrorException
*/
@@ -1386,7 +1388,7 @@ public class KVMStorageProcessor implements StorageProcessor {
final Long bytesWriteRate, final Long bytesWriteRateMax, final Long bytesWriteRateMaxLength, final Long iopsReadRate,
final Long iopsReadRateMax, final Long iopsReadRateMaxLength, final Long iopsWriteRate, final Long iopsWriteRateMax,
final Long iopsWriteRateMaxLength, final String cacheMode, final DiskDef.LibvirtDiskEncryptDetails encryptDetails,
- long waitDetachDevice, Map details)
+ long waitDetachDevice, Map details, Map controllerInfo)
throws LibvirtException, InternalErrorException {
List disks = null;
@@ -1423,17 +1425,7 @@ public class KVMStorageProcessor implements StorageProcessor {
return;
}
} else {
- DiskDef.DiskBus busT = DiskDef.DiskBus.VIRTIO;
- for (final DiskDef disk : disks) {
- if (disk.getDeviceType() == DeviceType.DISK) {
- if (disk.getBusType() == DiskDef.DiskBus.SCSI) {
- busT = DiskDef.DiskBus.SCSI;
- } else if (disk.getBusType() == DiskDef.DiskBus.VIRTIOBLK) {
- busT = DiskDef.DiskBus.VIRTIOBLK;
- }
- break;
- }
- }
+ DiskDef.DiskBus busT = getAttachDiskBusType(devId, disks, controllerInfo);
diskdef = new DiskDef();
if (busT == DiskDef.DiskBus.SCSI || busT == DiskDef.DiskBus.VIRTIOBLK) {
diskdef.setQemuDriver(true);
@@ -1538,6 +1530,28 @@ public class KVMStorageProcessor implements StorageProcessor {
}
}
+ protected DiskDef.DiskBus getAttachDiskBusType(int deviceId, List disks, Map controllerInfo) {
+ String controllerKey = deviceId == 0 ? VmDetailConstants.ROOT_DISK_CONTROLLER : VmDetailConstants.DATA_DISK_CONTROLLER;
+ String diskController = MapUtils.getString(controllerInfo, controllerKey);
+ DiskDef.DiskBus busType = DiskDef.DiskBus.fromValue(diskController);
+ if (diskController != null) {
+ logger.debug("Using controller '{}' from command specified as {} while attaching disk (deviceId={})",
+ diskController, controllerKey, deviceId);
+ return busType;
+ }
+ for (final DiskDef disk : disks) {
+ if (disk.getDeviceType() != DeviceType.DISK) {
+ continue;
+ }
+ if (disk.getBusType() == DiskDef.DiskBus.SCSI) {
+ return DiskDef.DiskBus.SCSI;
+ } else if (disk.getBusType() == DiskDef.DiskBus.VIRTIOBLK) {
+ return DiskDef.DiskBus.VIRTIOBLK;
+ }
+ }
+ return DiskDef.DiskBus.VIRTIO;
+ }
+
@Override
public Answer attachVolume(final AttachCommand cmd) {
final DiskTO disk = cmd.getDisk();
@@ -1565,7 +1579,8 @@ public class KVMStorageProcessor implements StorageProcessor {
vol.getBytesReadRate(), vol.getBytesReadRateMax(), vol.getBytesReadRateMaxLength(),
vol.getBytesWriteRate(), vol.getBytesWriteRateMax(), vol.getBytesWriteRateMaxLength(),
vol.getIopsReadRate(), vol.getIopsReadRateMax(), vol.getIopsReadRateMaxLength(),
- vol.getIopsWriteRate(), vol.getIopsWriteRateMax(), vol.getIopsWriteRateMaxLength(), volCacheMode, encryptDetails, disk.getDetails());
+ vol.getIopsWriteRate(), vol.getIopsWriteRateMax(), vol.getIopsWriteRateMaxLength(), volCacheMode,
+ encryptDetails, disk.getDetails(), cmd.getControllerInfo());
return new AttachAnswer(disk);
} catch (final LibvirtException e) {
@@ -1602,7 +1617,7 @@ public class KVMStorageProcessor implements StorageProcessor {
vol.getBytesReadRate(), vol.getBytesReadRateMax(), vol.getBytesReadRateMaxLength(),
vol.getBytesWriteRate(), vol.getBytesWriteRateMax(), vol.getBytesWriteRateMaxLength(),
vol.getIopsReadRate(), vol.getIopsReadRateMax(), vol.getIopsReadRateMaxLength(),
- vol.getIopsWriteRate(), vol.getIopsWriteRateMax(), vol.getIopsWriteRateMaxLength(), volCacheMode, null, waitDetachDevice, null);
+ vol.getIopsWriteRate(), vol.getIopsWriteRateMax(), vol.getIopsWriteRateMaxLength(), volCacheMode, null, waitDetachDevice, null, null);
storagePoolMgr.disconnectPhysicalDisk(primaryStore.getPoolType(), primaryStore.getUuid(), vol.getPath());