Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1.4k
New API "checkVolume" to check and repair any leaks or issues reported by qemu-img check#8577
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
2a5ca85af4c422a365b45f52c81908d3c063b5514def1bbdd369e56764028828e4017da5d3999a109da1d6495c46ff875fa143e823dc2dd9c805940cac44180b88d521596d14fb1026b2dfeece30fa612File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,139 @@ | ||
| // 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. | ||
| package org.apache.cloudstack.api.command.user.volume; | ||
| import com.cloud.event.EventTypes; | ||
| import com.cloud.exception.InvalidParameterValueException; | ||
| import org.apache.cloudstack.acl.RoleType; | ||
| import org.apache.cloudstack.api.APICommand; | ||
| import org.apache.cloudstack.api.ApiCommandResourceType; | ||
| import org.apache.cloudstack.api.ApiConstants; | ||
| import org.apache.cloudstack.api.ApiErrorCode; | ||
| import org.apache.cloudstack.api.BaseAsyncCmd; | ||
| import org.apache.cloudstack.api.Parameter; | ||
| import org.apache.cloudstack.api.ResponseObject.ResponseView; | ||
| import org.apache.cloudstack.api.ServerApiException; | ||
| import org.apache.cloudstack.api.response.VolumeResponse; | ||
| import org.apache.cloudstack.context.CallContext; | ||
| import org.apache.log4j.Logger; | ||
| import com.cloud.exception.ResourceAllocationException; | ||
| import com.cloud.storage.Volume; | ||
| import com.cloud.user.Account; | ||
| import com.cloud.utils.Pair; | ||
| import com.cloud.utils.StringUtils; | ||
| import java.util.Arrays; | ||
| @APICommand(name = "checkVolume", description = "Check the volume for any errors or leaks and also repairs when repair parameter is passed, this is currently supported for KVM only", responseObject = VolumeResponse.class, entityType = {Volume.class}, | ||
| since = "4.19.1", | ||
| authorized = {RoleType.Admin, RoleType.ResourceAdmin, RoleType.DomainAdmin, RoleType.User}) | ||
| public class CheckAndRepairVolumeCmd extends BaseAsyncCmd { | ||
| public static final Logger s_logger = Logger.getLogger(CheckAndRepairVolumeCmd.class.getName()); | ||
sureshanaparti marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| private static final String s_name = "checkandrepairvolumeresponse"; | ||
| ///////////////////////////////////////////////////// | ||
| //////////////// API parameters ///////////////////// | ||
| ///////////////////////////////////////////////////// | ||
| @Parameter(name = ApiConstants.ID, type = CommandType.UUID, entityType = VolumeResponse.class, required = true, description = "The ID of the volume") | ||
| private Long id; | ||
| @Parameter(name = ApiConstants.REPAIR, type = CommandType.STRING, required = false, description = "parameter to repair the volume, leaks or all are the possible values") | ||
| private String repair; | ||
| ///////////////////////////////////////////////////// | ||
| /////////////////// Accessors /////////////////////// | ||
| ///////////////////////////////////////////////////// | ||
| public enum RepairValues { | ||
| LEAKS, ALL | ||
| } | ||
| public Long getId() { | ||
| return id; | ||
| } | ||
| public String getRepair() { | ||
| if (org.apache.commons.lang3.StringUtils.isNotEmpty(repair)) { | ||
JoaoJandre marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| RepairValues repairType = Enum.valueOf(RepairValues.class, repair.toUpperCase()); | ||
| if (repairType == null) { | ||
| throw new InvalidParameterValueException(String.format("Repair parameter can only take the following values: %s" + Arrays.toString(RepairValues.values()))); | ||
| } | ||
| return repair.toLowerCase(); | ||
| } | ||
| return null; | ||
| } | ||
| ///////////////////////////////////////////////////// | ||
| /////////////// API Implementation/////////////////// | ||
| ///////////////////////////////////////////////////// | ||
| @Override | ||
| public String getCommandName() { | ||
| return s_name; | ||
| } | ||
| @Override | ||
| public long getEntityOwnerId() { | ||
| Volume volume = _entityMgr.findById(Volume.class, getId()); | ||
| if (volume != null) { | ||
| return volume.getAccountId(); | ||
| } | ||
| return Account.ACCOUNT_ID_SYSTEM; // no account info given, parent this command to SYSTEM so ERROR events are tracked | ||
| } | ||
| @Override | ||
| public String getEventType() { | ||
| return EventTypes.EVENT_VOLUME_CHECK; | ||
| } | ||
| @Override | ||
| public String getEventDescription() { | ||
| return String.format("check and repair operation on volume: %s", this._uuidMgr.getUuid(Volume.class, getId())); | ||
| } | ||
| @Override | ||
| public Long getApiResourceId() { | ||
| return id; | ||
| } | ||
| @Override | ||
| public ApiCommandResourceType getApiResourceType() { | ||
| return ApiCommandResourceType.Volume; | ||
| } | ||
| @Override | ||
| public void execute() throws ResourceAllocationException { | ||
| CallContext.current().setEventDetails("Volume Id: " + getId()); | ||
| Pair<String, String> result = _volumeService.checkAndRepairVolume(this); | ||
| Volume volume = _responseGenerator.findVolumeById(getId()); | ||
| if (result != null) { | ||
| VolumeResponse response = _responseGenerator.createVolumeResponse(ResponseView.Full, volume); | ||
| response.setVolumeCheckResult(StringUtils.parseJsonToMap(result.first())); | ||
| if (getRepair() != null) { | ||
| response.setVolumeRepairResult(StringUtils.parseJsonToMap(result.second())); | ||
| } | ||
| response.setResponseName(getCommandName()); | ||
| setResponseObject(response); | ||
| } else { | ||
| throw new ServerApiException(ApiErrorCode.INTERNAL_ERROR, "Failed to check volume and repair"); | ||
| } | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -18,6 +18,7 @@ | ||
| import java.util.Date; | ||
| import java.util.LinkedHashSet; | ||
| import java.util.Map; | ||
| import java.util.Set; | ||
| import org.apache.cloudstack.acl.RoleType; | ||
| @@ -288,6 +289,14 @@ public class VolumeResponse extends BaseResponseWithTagInformation implements Co | ||
| @Param(description = "volume uuid that is given by virtualisation provider (only for VMware)") | ||
| private String externalUuid; | ||
| @SerializedName(ApiConstants.VOLUME_CHECK_RESULT) | ||
| @Param(description = "details for the volume check result, they may vary for different hypervisors, since = 4.19.1") | ||
sureshanaparti marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| private Map<String, String> volumeCheckResult; | ||
| @SerializedName(ApiConstants.VOLUME_REPAIR_RESULT) | ||
| @Param(description = "details for the volume repair result, they may vary for different hypervisors, since = 4.19.1") | ||
| private Map<String, String> volumeRepairResult; | ||
| public String getPath() { | ||
| return path; | ||
| } | ||
| @@ -817,4 +826,20 @@ public String getExternalUuid() { | ||
| public void setExternalUuid(String externalUuid) { | ||
| this.externalUuid = externalUuid; | ||
| } | ||
| public Map<String, String> getVolumeCheckResult() { | ||
| return volumeCheckResult; | ||
| } | ||
| public void setVolumeCheckResult(Map<String, String> volumeCheckResult) { | ||
| this.volumeCheckResult = volumeCheckResult; | ||
| } | ||
| public Map<String, String> getVolumeRepairResult() { | ||
| return volumeRepairResult; | ||
| } | ||
| public void setVolumeRepairResult(Map<String, String> volumeRepairResult) { | ||
| this.volumeRepairResult = volumeRepairResult; | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,57 @@ | ||
| // | ||
| // 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. | ||
| // | ||
| package com.cloud.agent.api.storage; | ||
| import com.cloud.agent.api.Answer; | ||
| public class CheckAndRepairVolumeAnswer extends Answer { | ||
| private String volumeCheckExecutionResult; | ||
| private String volumeRepairExecutionResult; | ||
| protected CheckAndRepairVolumeAnswer() { | ||
| super(); | ||
| } | ||
| public CheckAndRepairVolumeAnswer(CheckAndRepairVolumeCommand cmd, boolean result, String details, String volumeCheckExecutionResult, String volumeRepairedExecutionResult) { | ||
| super(cmd, result, details); | ||
| this.volumeCheckExecutionResult = volumeCheckExecutionResult; | ||
| this.volumeRepairExecutionResult = volumeRepairedExecutionResult; | ||
| } | ||
| public CheckAndRepairVolumeAnswer(CheckAndRepairVolumeCommand cmd, boolean result, String details) { | ||
| super(cmd, result, details); | ||
| } | ||
| public String getVolumeCheckExecutionResult() { | ||
| return volumeCheckExecutionResult; | ||
| } | ||
| public String getVolumeRepairExecutionResult() { | ||
| return volumeRepairExecutionResult; | ||
| } | ||
| public void setVolumeCheckExecutionResult(String volumeCheckExecutionResult) { | ||
| this.volumeCheckExecutionResult = volumeCheckExecutionResult; | ||
| } | ||
| public void setVolumeRepairExecutionResult(String volumeRepairExecutionResult) { | ||
| this.volumeRepairExecutionResult = volumeRepairExecutionResult; | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,77 @@ | ||
| // | ||
| // 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. | ||
| // | ||
| package com.cloud.agent.api.storage; | ||
| import com.cloud.agent.api.Command; | ||
| import com.cloud.agent.api.LogLevel; | ||
| import com.cloud.agent.api.to.StorageFilerTO; | ||
| import java.util.Arrays; | ||
| public class CheckAndRepairVolumeCommand extends Command { | ||
| private String path; | ||
| private StorageFilerTO pool; | ||
| private String repair; | ||
| @LogLevel(LogLevel.Log4jLevel.Off) | ||
| private byte[] passphrase; | ||
| private String encryptFormat; | ||
| public CheckAndRepairVolumeCommand(String path, StorageFilerTO pool, String repair, byte[] passphrase, String encryptFormat) { | ||
| this.path = path; | ||
| this.pool = pool; | ||
| this.repair = repair; | ||
| this.passphrase = passphrase; | ||
| this.encryptFormat = encryptFormat; | ||
| } | ||
| public String getPath() { | ||
| return path; | ||
| } | ||
| public String getPoolUuid() { | ||
| return pool.getUuid(); | ||
| } | ||
| public StorageFilerTO getPool() { | ||
| return pool; | ||
| } | ||
| public String getRepair() { | ||
| return repair; | ||
| } | ||
| public String getEncryptFormat() { return encryptFormat; } | ||
| public byte[] getPassphrase() { return passphrase; } | ||
| public void clearPassphrase() { | ||
| if (this.passphrase != null) { | ||
| Arrays.fill(this.passphrase, (byte) 0); | ||
| } | ||
| } | ||
| /** | ||
| * {@inheritDoc} | ||
| */ | ||
| @Override | ||
| public boolean executeInSequence() { | ||
| return false; | ||
| } | ||
| } |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.