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


Groups > linux.kernel > #1657593

Re: [PATCH v2] signal: Avoid undefined behaviour in kill_something_info

From zhong jiang <zhongjiang@huawei.com>
Newsgroups linux.kernel
Subject Re: [PATCH v2] signal: Avoid undefined behaviour in kill_something_info
Date 2017-06-05 15:30 +0200
Message-ID <tP0eZ-3pX-9@gated-at.bofh.it> (permalink)
References <tOZLY-30O-35@gated-at.bofh.it> <tOZVE-3jm-23@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On 2017/6/5 21:09, Michal Hocko wrote:
> On Mon 05-06-17 20:53:27, zhongjiang wrote:
>> diff --git a/kernel/signal.c b/kernel/signal.c
>> index ca92bcf..63148f7 100644
>> --- a/kernel/signal.c
>> +++ b/kernel/signal.c
>> @@ -1395,6 +1395,12 @@ static int kill_something_info(int sig, struct siginfo *info, pid_t pid)
>>  
>>  	read_lock(&tasklist_lock);
>>  	if (pid != -1) {
>> +		/*
>> +	 	 * -INT_MIN is undefined, it need to exclude following case to 
>> + 		 * avoid the UBSAN detection.
>> +		 */
>> +		if (pid == INT_MIN)
>> +			return -ESRCH;
> this will obviously keep the tasklist_lock held...
 oh, it is my fault.   Thank you for clarify.

 Thanks
zhongjiang
>>  		ret = __kill_pgrp_info(sig, info,
>>  				pid ? find_vpid(-pid) : task_pgrp(current));
>>  	} else {
>> -- 
>> 1.7.12.4

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


Thread

[PATCH v2] signal: Avoid undefined behaviour in kill_something_info zhongjiang <zhongjiang@huawei.com> - 2017-06-05 15:00 +0200
  Re: [PATCH v2] signal: Avoid undefined behaviour in  kill_something_info Michal Hocko <mhocko@kernel.org> - 2017-06-05 15:10 +0200
    Re: [PATCH v2] signal: Avoid undefined behaviour in kill_something_info zhong jiang <zhongjiang@huawei.com> - 2017-06-05 15:30 +0200
  Re: [PATCH v2] signal: Avoid undefined behaviour in  kill_something_info Oleg Nesterov <oleg@redhat.com> - 2017-06-05 15:40 +0200
    Re: [PATCH v2] signal: Avoid undefined behaviour in kill_something_info zhong jiang <zhongjiang@huawei.com> - 2017-06-05 15:50 +0200

csiph-web