Re: Restrict envvar names

2015-10-25 Thread Vadim Zhukov
2015-10-25 17:03 GMT+01:00 Stefan Sperling : > On Sun, Oct 25, 2015 at 04:36:29PM +0100, Vadim Zhukov wrote: >> This patch restricts characters you could use in environment variable >> names passed via execve(2). Note that values are not affected, you're >> still allowed to pass anything there. >>

Re: Restrict envvar names

2015-10-25 Thread Christian Weisgerber
On 2015-10-25, Stefan Sperling wrote: > """ > Environment variable names used by the utilities in the Shell and > Utilities volume of POSIX.1-2008 consist solely of uppercase letters, > digits, and the ( '_' ) from the characters defined in > Portable Character Set and do not begin with a digit.

Re: Restrict envvar names

2015-10-25 Thread Stefan Sperling
On Sun, Oct 25, 2015 at 04:36:29PM +0100, Vadim Zhukov wrote: > This patch restricts characters you could use in environment variable > names passed via execve(2). Note that values are not affected, you're > still allowed to pass anything there. > > Everything starts fine like before for me as of

Restrict envvar names

2015-10-25 Thread Vadim Zhukov
This patch restricts characters you could use in environment variable names passed via execve(2). Note that values are not affected, you're still allowed to pass anything there. Everything starts fine like before for me as of now, including a couple of daemons and Iridium browser. okay? Or we do