Re: win32 _dosmaperr()

From: "Magnus Hagander" <mha(at)sollentuna(dot)net>
To: "Qingqing Zhou" <zhouqq(at)cs(dot)toronto(dot)edu>, <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: win32 _dosmaperr()
Date: 2005-07-14 08:50:32
Message-ID: 6BCB9D8A16AC4241919521715F4D8BCE6C776F@algol.sollentuna.se
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

> There were several reports of "unable to read/write" on
> Pg8.0.x win32 port:
>
> http://archives.postgresql.org/pgsql-bugs/2005-02/msg00181.php
>
> I encounter this several times and finally I catch the
> GetLastError() number. It is
>
> 32, ERROR_SHARING_VIOLATION
> The process cannot access the file because it is being
> used by another process.
>
> But PG server error message is "invalid parameter" which
> makes this error difficult to understand and track. After
> examing win32 CRT's _dosmaperr() implementation, I found they
> failed to transalte ERROR_SHARING_VIOLATION, so the default
> errno is set to EINVAL. To solve it, we can do our own
> _dosmaperr(GetLastError()) again if read/write failed.
> Unfortunately our
> _dosmaperr() failed to do so either, so here is a patch of
> error.c. Also, I raised the error level to NOTICE for better
> bug report. If this is acceptable, I will patch
> FileRead()/FileWrite() etc.

Seems reasonable.

> However, I am very sure why this could happen. That is, who
> uses the data file in a non-sharing mode? There are many
> possibilities, a common concensus is [Anti-]virus software.
> Yes, I do have one installed. If we can confirm this, then we
> could at least print a hint message.

I would suspect either AV software and/or backup software not excluding
the pg data files.

I suggest you try using Process Explorer from www.sysinternals.com to
figure out who has the file open. Most of the time it should be able to
tell you exactly who has locked the file - at least as long as it's done
from userspace. I'm not 100% sure on how it deals with kernel level
locks.

//Magnus

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Koichi Suzuki 2005-07-14 09:05:35 Re: A couple of patches for PostgreSQL 64bit support
Previous Message Hannu Krosing 2005-07-14 08:48:32 Re: [Bizgres-general] A Guide to Constraint Exclusion