Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1678416

Re: [kernel-hardening] [PATCH v5 3/3] x86/refcount: Implement fast refcount overflow protection

From Li Kun <hw.likun@huawei.com>
Newsgroups linux.kernel
Subject Re: [kernel-hardening] [PATCH v5 3/3] x86/refcount: Implement fast refcount overflow protection
Date 2017-06-30 04:50 +0200
Message-ID <tXUam-7TK-19@gated-at.bofh.it> (permalink)
References <tMXbz-4e6-11@gated-at.bofh.it> <tMXbA-4e6-23@gated-at.bofh.it> <tXzfA-2UV-7@gated-at.bofh.it> <tXPNn-5cQ-9@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw



on 2017/6/30 6:05, Kees Cook wrote:
> On Wed, Jun 28, 2017 at 9:13 PM, Li Kun <hw.likun@huawei.com> wrote:
>> 在 2017/5/31 5:39, Kees Cook 写道:
>>> +bool ex_handler_refcount(const struct exception_table_entry *fixup,
>>> +                        struct pt_regs *regs, int trapnr)
>>> +{
>>> +       int reset;
>>> +
>>> +       /*
>>> +        * If we crossed from INT_MAX to INT_MIN, the OF flag (result
>>> +        * wrapped around) and the SF flag (result is negative) will be
>>> +        * set. In this case, reset to INT_MAX in an attempt to leave the
>>> +        * refcount usable. Otherwise, we've landed here due to producing
>>> +        * a negative result from either decrementing zero or operating on
>>> +        * a negative value. In this case things are badly broken, so we
>>> +        * we saturate to INT_MIN / 2.
>>> +        */
>>> +       if (regs->flags & (X86_EFLAGS_OF | X86_EFLAGS_SF))
>>> +               reset = INT_MAX;
>>      Should it be like this to indicate that the refcount is wapped from
>> INT_MAX to INT_MIN ?
>>          if (regs->flags & (X86_EFLAGS_OF | X86_EFLAGS_SF)
>>                  == (X86_EFLAGS_OF | X86_EFLAGS_SF))
>>
>>                  reset = INT_MAX;
> Ah yes, thanks for the catch. Yeah, that test is expecting both
> condition flags to be set.
>
> I'm still on the fence about the best way to deal with the bad states.
> I've been pondering just strictly using a saturation value (INT_MIN /
> 2), which should offer the same system state protection (except for
> the inherent resource leak), but that means there isn't really a good
> way to kill an offending process (since after saturation ALL processes
> will look like violators). It can be argued that killing the process
> doesn't actually provide any benefit since the system is still safe,
> though.
An immature idea,can we set the count to INT_MAX/2 when we detect and 
kill the offending process,
and wait to see if there will be another offender touching the fence. 
Er,not very acurate,but better than
killing all the processes doing refcount_add ,i think.
>>> +       else
>>> +               reset = INT_MIN / 2;
>>> +       *(int *)regs->cx = reset;
> Thanks for looking at this!
>
> -Kees
>

-- 
Best Regards
Li Kun

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Re: [kernel-hardening] [PATCH v5 3/3] x86/refcount: Implement fast  refcount overflow protection Li Kun <hw.likun@huawei.com> - 2017-06-29 06:30 +0200
  Re: [kernel-hardening] [PATCH v5 3/3] x86/refcount: Implement fast  refcount overflow protection Kees Cook <keescook@chromium.org> - 2017-06-30 00:10 +0200
    Re: [kernel-hardening] [PATCH v5 3/3] x86/refcount: Implement fast  refcount overflow protection Li Kun <hw.likun@huawei.com> - 2017-06-30 04:50 +0200
      Re: [kernel-hardening] [PATCH v5 3/3] x86/refcount: Implement fast  refcount overflow protection Kees Cook <keescook@chromium.org> - 2017-06-30 06:00 +0200

csiph-web