Re: A PRIV_* flag for /dev/mem?
On 06/16/13 00:20, Konstantin Belousov wrote:
> On Sat, Jun 15, 2013 at 05:23:50PM -0600, Jamie Gritton wrote:
>> Index: sys/dev/mem/memdev.c
>> ===================================================================
>> --- sys/dev/mem/memdev.c (revision 251793)
>> +++ sys/dev/mem/memdev.c (working copy)
>> @@ -67,8 +67,14 @@
>> {
>> int error = 0;
>>
>> - if (flags& FWRITE)
>> - error = securelevel_gt(td->td_ucred, 0);
>> + if (flags& FREAD)
>> + error = priv_check(td, PRIV_KMEM_READ);
>> + if (flags& FWRITE) {
>> + if (error != 0)
>> + error = priv_check(td, PRIV_KMEM_WRITE);
>> + if (error != 0)
> Shouldn't this be 'if (error == 0)' ?
Indeed it should. None of this has even been compiled yet, let alone
tested - still in the thought phase.
- Jamie
_______________________________________________
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org"
討論串 (同標題文章)
完整討論串 (本文為第 9 之 12 篇):