Re: log files and permissions - Mailing list pgsql-hackers

From Itagaki Takahiro
Subject Re: log files and permissions
Date
Msg-id AANLkTikiiKM2_Pz66U9rarkD4MJdDBnpL1O3K-i5fIiE@mail.gmail.com
Whole thread Raw
In response to Re: log files and permissions  (Fujii Masao <masao.fujii@gmail.com>)
Responses Re: log files and permissions
Re: log files and permissions
List pgsql-hackers
I think the patch is almost ready for committer except the following
three issues:

2010/7/13 Fujii Masao <masao.fujii@gmail.com>:
>> +     if (!*value || *endptr || file_mode < 0 || file_mode > 0777)
> The sticky bit cannot be set via log_file_mode. Is this intentional?

We should also check the value not to be something like 0699.
How about checking it with (file_mode & ~0666) != 0 ?

>> +#ifndef WIN32
>> +             chmod(filename, Log_file_mode);
>> +#endif
> Don't we need to check the return value of chmod()?

I prefer umask() rather than chmod() here.

>> +const char *show_log_file_mode(void);
> You forgot to write the show_log_file_mode()? I was not able to find that
> in the patch.

I want show_log_file_mode to print the setting value in octal format.

--
Itagaki Takahiro


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: dblink regression failure in HEAD
Next
From: Itagaki Takahiro
Date:
Subject: Re: patch (for 9.1) string functions