lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Sat, 25 Dec 2021 13:03:44 +0800
From:   Chen Gang <chengang@...ndsoft.com.cn>
To:     pbonzini@...hat.com
Cc:     kvm@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] KVM: return the error code from
 kvm_arch_create_vm_debugfs when it fails

Hello:

The original mail was not sent successfully, so I send it again with
another mailbox.

Thanks.

On 12/23/21 9:34 AM, gchen@...kywalker.com wrote:
> From: Chen Gang <gchen@...kywalker.com>
> 
> At present, kvm_arch_create_vm_debugfs is a new interface for arch, and
> it assumes return an none-zero error code, so the caller need check it
> and return it to the user mode.
> 
> Signed-off-by: Chen Gang <gchen@...kywalker.com>
> ---
>  virt/kvm/kvm_main.c | 9 +++++----
>  1 file changed, 5 insertions(+), 4 deletions(-)
> 
> diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c
> index d8a1a17bcb7e..b2de428bd4c7 100644
> --- a/virt/kvm/kvm_main.c
> +++ b/virt/kvm/kvm_main.c
> @@ -1015,7 +1015,7 @@ static int kvm_create_vm_debugfs(struct kvm *kvm, int fd)
>  	ret = kvm_arch_create_vm_debugfs(kvm);
>  	if (ret) {
>  		kvm_destroy_vm_debugfs(kvm);
> -		return i;
> +		return ret;
>  	}
>  
>  	return 0;
> @@ -4727,7 +4727,7 @@ EXPORT_SYMBOL_GPL(file_is_kvm);
>  
>  static int kvm_dev_ioctl_create_vm(unsigned long type)
>  {
> -	int r;
> +	int r, ret;
>  	struct kvm *kvm;
>  	struct file *file;
>  
> @@ -4759,10 +4759,11 @@ static int kvm_dev_ioctl_create_vm(unsigned long type)
>  	 * cases it will be called by the final fput(file) and will take
>  	 * care of doing kvm_put_kvm(kvm).
>  	 */
> -	if (kvm_create_vm_debugfs(kvm, r) < 0) {
> +	ret = kvm_create_vm_debugfs(kvm, r);
> +	if (ret) {
>  		put_unused_fd(r);
>  		fput(file);
> -		return -ENOMEM;
> +		return ret;
>  	}
>  	kvm_uevent_notify_change(KVM_EVENT_CREATE_VM, kvm);
>  
> 


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ