qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH V2] get_tmp_filename: add explicit error message


From: Markus Armbruster
Subject: Re: [Qemu-devel] [PATCH V2] get_tmp_filename: add explicit error message
Date: Tue, 19 Feb 2013 13:01:09 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.1 (gnu/linux)

Fabien Chouteau <address@hidden> writes:

> On 02/18/2013 05:37 PM, Markus Armbruster wrote:
>> I agree with you that the existing error reporting is too unspecific in
>> many cases, and I applaud your attempt to do something about it, but I'm
>> afraid this patch creates as many problems as it solves.  Details below.
>>
>>
>> In my review of v1, I wrote "The function's (implied) contract is to
>> return an error code without printing anything.  If you want to change
>> the contract to include reporting the error, you [...] have to
>> demonstrate that all callers are happy with the change of contract."  So
>> let's check the two callers of get_tmp_filename():
>>
>> 1. bdrv_open()
>>
>>    Complex function, can fail in many ways.  Returns an error code.
>>    Does not report errors; that's left to its callers.
>>
>>    Your patch effectively changes bdrv_open() to report the error in one
>>    of its failure modes.
>>
>>    For callers that report bdrv_open() failure to the user, we then get
>>    two error messages: the one you add, followed by a less specific one
>>    from further up the call chain.  Reporting the same error multiple
>>    times is not nice.
>
> It seems that your point of view is very Linux centric, on Windows we
> didn't get any error message, just "Operation not permitted" for every
> error in bdrv_open.

Sounds like a bug, namely bdrv_open() returning bogus error codes on
Windows at least for some failures.

>                     I've spent 15 mins trying to find the exact location
> of the error, going into the complex call tree of bdrv, and it's not the
> first time.

Yes, the error reporting is really unhelpful in many cases, and not just
under Windows.

> Maybe I should just put the error message in the Windows code. So it
> doesn't duplicate on Linux.
>
>>
>>    For callers that neglect to report bdrv_open() failure to the user
>>    even though they should (if such buggy callers exist), you fix the
>>    problem for one failure mode only.
>
> One could say that it's already something. I'd like to have the time to
> add error messages for all possible failures, but unfortunately I don't.
>
> BTW, it looks likes a common rule in Qemu, we never check the error code
> from Win32 API (maybe because there's no way to efficiently report those
> errors).

I doubt there are fundamental difficulties with the Windows API.  No,
the root problem with QEMU under Windows is lack of maintainers.  Until
somebody cares enough to take on Windows maintenance, it'll continue to
languish.

>> Apart from these fundamental gaps, the new error message needs polish.
>> Say mkstemp() fails ENOSPC.  Gets reported roughly like this:
>>
>>     qemu-system-x86_64: -drive file=f16.img: get_tmp_filename:
>> mkstemp() error: No space left on device
>>     qemu-system-x86_64: -drive file=f16.img: could not open disk
>> image f16.img: No space left on device
>>
>> The second message talks to the user in user terms.  That's proper.  The
>> first one talks source code instead.  From a user's point of view,
>> "get_tmp_filename" and "mkstemp() error" are gobbledygook.  At best,
>> they can help him guessing what the problem might be.
>>
>
> I know this error message is not user friendly, but (again) it's still
> better than 15 mins of digging in the code...

No argument :)

> I don't want to spend much time on this small issue. If you consider
> that it creates more problems than is solves, that's fine. I understand
> your concerns and wanted to expose mine. Anyway the patch will remain in
> our branch until a better solution is found.

Fair enough & thanks for doing as much as you did.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]