All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] misc/fsck.c: Processes may kill other processes.
@ 2022-10-08  3:05 zhanchengbin
  2022-10-10  7:17 ` Lukas Czerner
  0 siblings, 1 reply; 3+ messages in thread
From: zhanchengbin @ 2022-10-08  3:05 UTC (permalink / raw)
  To: Theodore Ts'o; +Cc: linux-ext4, Lukas Czerner, liuzhiqiang26, linfeilong

If run the fsck -N command, processes don't execute, just show what
would be done. However, the pid whose value is -1 is added to the
instance_list list in the execute function,if the kill_all function
is called later, kill(-1, signum) is executed, Signals are sent to
all processes except the number one process and itself. Other
processes will be killed if they use the default signal processing
function.

Signed-off-by: zhanchengbin <zhanchengbin1@huawei.com>
---
  misc/fsck.c | 2 ++
  1 file changed, 2 insertions(+)

diff --git a/misc/fsck.c b/misc/fsck.c
index 4efe10ec..faf7789d 100644
--- a/misc/fsck.c
+++ b/misc/fsck.c
@@ -546,6 +546,8 @@ static int kill_all(int signum)
  	for (inst = instance_list; inst; inst = inst->next) {
  		if (inst->flags & FLAG_DONE)
  			continue;
+		if (inst->pid == -1)
+			continue;
  		kill(inst->pid, signum);
  		n++;
  	}
-- 
2.27.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] misc/fsck.c: Processes may kill other processes.
  2022-10-08  3:05 [PATCH] misc/fsck.c: Processes may kill other processes zhanchengbin
@ 2022-10-10  7:17 ` Lukas Czerner
  2022-10-10  8:32   ` zhanchengbin
  0 siblings, 1 reply; 3+ messages in thread
From: Lukas Czerner @ 2022-10-10  7:17 UTC (permalink / raw)
  To: zhanchengbin; +Cc: Theodore Ts'o, linux-ext4, liuzhiqiang26, linfeilong

On Sat, Oct 08, 2022 at 11:05:48AM +0800, zhanchengbin wrote:
> If run the fsck -N command, processes don't execute, just show what
> would be done. However, the pid whose value is -1 is added to the
> instance_list list in the execute function,if the kill_all function
> is called later, kill(-1, signum) is executed, Signals are sent to
> all processes except the number one process and itself. Other
> processes will be killed if they use the default signal processing
> function.
> 
> Signed-off-by: zhanchengbin <zhanchengbin1@huawei.com>
> ---
>  misc/fsck.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/misc/fsck.c b/misc/fsck.c
> index 4efe10ec..faf7789d 100644
> --- a/misc/fsck.c
> +++ b/misc/fsck.c
> @@ -546,6 +546,8 @@ static int kill_all(int signum)
>  	for (inst = instance_list; inst; inst = inst->next) {
>  		if (inst->flags & FLAG_DONE)
>  			continue;
> +		if (inst->pid == -1)
> +			continue;

That works, but I think we can afford to be a little defensive here.
Anything <= 0 is a bug and can have unexpected consequences if we
actually call the kill().

		if (inst->pid <= 0)
			continue;


Also as Darrick pointed out we need to send the patch to util-linux
(disk-utils/fsck.c) as well if you haven't already.

-Lukas


>  		kill(inst->pid, signum);
>  		n++;
>  	}
> -- 
> 2.27.0
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] misc/fsck.c: Processes may kill other processes.
  2022-10-10  7:17 ` Lukas Czerner
@ 2022-10-10  8:32   ` zhanchengbin
  0 siblings, 0 replies; 3+ messages in thread
From: zhanchengbin @ 2022-10-10  8:32 UTC (permalink / raw)
  To: Lukas Czerner; +Cc: Theodore Ts'o, linux-ext4, liuzhiqiang26, linfeilong



On 2022/10/10 15:17, Lukas Czerner wrote:
> On Sat, Oct 08, 2022 at 11:05:48AM +0800, zhanchengbin wrote:
>> If run the fsck -N command, processes don't execute, just show what
>> would be done. However, the pid whose value is -1 is added to the
>> instance_list list in the execute function,if the kill_all function
>> is called later, kill(-1, signum) is executed, Signals are sent to
>> all processes except the number one process and itself. Other
>> processes will be killed if they use the default signal processing
>> function.
>>
>> Signed-off-by: zhanchengbin <zhanchengbin1@huawei.com>
>> ---
>>   misc/fsck.c | 2 ++
>>   1 file changed, 2 insertions(+)
>>
>> diff --git a/misc/fsck.c b/misc/fsck.c
>> index 4efe10ec..faf7789d 100644
>> --- a/misc/fsck.c
>> +++ b/misc/fsck.c
>> @@ -546,6 +546,8 @@ static int kill_all(int signum)
>>   	for (inst = instance_list; inst; inst = inst->next) {
>>   		if (inst->flags & FLAG_DONE)
>>   			continue;
>> +		if (inst->pid == -1)
>> +			continue;
> 
> That works, but I think we can afford to be a little defensive here.
> Anything <= 0 is a bug and can have unexpected consequences if we
> actually call the kill().
> 
> 		if (inst->pid <= 0)
> 			continue

OK, I'll fix this and send the v2 version of the patch.

> 
> 
> Also as Darrick pointed out we need to send the patch to util-linux
> (disk-utils/fsck.c) as well if you haven't already.

I'll check and modify util-linux(disk-utils/fsck.c).

-zhanchengbin

> 
> -Lukas
> 
> 
>>   		kill(inst->pid, signum);
>>   		n++;
>>   	}
>> -- 
>> 2.27.0
>>
> 
> .
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-10-10  8:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-08  3:05 [PATCH] misc/fsck.c: Processes may kill other processes zhanchengbin
2022-10-10  7:17 ` Lukas Czerner
2022-10-10  8:32   ` zhanchengbin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.