Received: by 2002:a05:6a10:5bc5:0:0:0:0 with SMTP id os5csp2307912pxb; Tue, 12 Oct 2021 03:58:47 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzIOlHCB4gtYN8dhI43ZlN49woDb5DZuwEJKwaiWGfX4XC9BfUYUra2iYv7k5s/qqtT1Ps2 X-Received: by 2002:a17:90a:4814:: with SMTP id a20mr5112064pjh.154.1634036327475; Tue, 12 Oct 2021 03:58:47 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1634036327; cv=none; d=google.com; s=arc-20160816; b=BX6qT6FCVib2ovLILMSxnFposfRm2N0qBTReEdPnGuyENlvh8/59LvcSMdwVURZMF1 dsIw449iGjaN2BmMvOwv41l/vdRJb+CYUZYFYtC0VAvUe4tUzKIIUGQl0HaNb1jaclit tr/Pe7o+oLvUzzW3cXkcEO4kQaeQdFIODBjE/A8p2kL/X731QxG4erA1SAH2LsEYzNLD YauoGzn/Cr/c8Gph5h3iSVHcqi1Hyc5sfolB/L26Y0Nq4mLnLz/X2i3IrO3b065EHMyf tQsr3WP5Fhn+onIvVWSi9rYy2FlqDXV9wKoqAQ2gTembu0eQ7yNWQfZV2Gd12skFj8xv 4Ykw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:mime-version:message-id:date:references :in-reply-to:subject:cc:to:from; bh=f0S7PcMuWUexsaAWT0rfru09PIj6Q3ScXCF7k9nYnZk=; b=QMNj6YVODIr9V2psIuiGrR4Fe7tH5xOUSBEox1Ioui7sy5QIUeqj2CW3g93UXBz0Y+ ZC+GDULKIz1YM/ug9EVvb8i52hCZCD8KN6MoV5zFFghE3QnPs6vr1JF75+zIm8CkWz9F xMlJjf2la505Ef6PBFriiF09ISycua4L1t9wv0PTJs/4PYS3rUFD6SF6xI1wxRZBOPfv 6WNCz/kP8Y1HkyUmKkQ8RAbNmhbiA+tLXC/fWw5FJILA/+OArNcfMlSGRldu7gyPcjs3 dx5FA2AtvgdggE6eNOe4JiVW0OyYafHpCsmTaIRgu0TgEnSrdcIkwGusny7Os4FyVajm eNNw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=arm.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id a7si15335946pln.79.2021.10.12.03.58.35; Tue, 12 Oct 2021 03:58:47 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=arm.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236105AbhJLK7k (ORCPT + 99 others); Tue, 12 Oct 2021 06:59:40 -0400 Received: from foss.arm.com ([217.140.110.172]:35274 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236036AbhJLK7h (ORCPT ); Tue, 12 Oct 2021 06:59:37 -0400 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id E050D101E; Tue, 12 Oct 2021 03:57:35 -0700 (PDT) Received: from e113632-lin (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 72E9B3F694; Tue, 12 Oct 2021 03:57:34 -0700 (PDT) From: Valentin Schneider To: Woody Lin Cc: Ingo Molnar , Ben Segall , Peter Zijlstra , Juri Lelli , Vincent Guittot , Dietmar Eggemann , Steven Rostedt , Mel Gorman , Daniel Bristot de Oliveira , linux-kernel@vger.kernel.org Subject: Re: [PATCH] sched/scs: Reset the shadow stack when idle_task_exit In-Reply-To: References: <20211012083521.973587-1-woodylin@google.com> <87zgrek1gl.mognet@arm.com> Date: Tue, 12 Oct 2021 11:57:32 +0100 Message-ID: <87wnmijysj.mognet@arm.com> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 12/10/21 18:35, Woody Lin wrote: > On Tue, Oct 12, 2021 at 6:00 PM Valentin Schneider > wrote: >> >> So AIUI for SCS that works just fine - one thing I'm unclear on is how the >> following pops are going to work given the SP reset happens in the middle >> of a call stack, but AFAICT that was already the case before I messed about >> with init_idle(), so that must already be handled. > > Hi Valentin, > > Thanks for the question. The 'scs_task_reset' here resets only the > '.thread_info.scs_sp' of the task, so the register (on arm64 it's x18) > is still pointing to the same location for popping and storing call > frames. The register will be updated to '.thread_info.scs_sp' in > '__secondary_switched', which starts a new core and there is no popping > after the updating, so it won't introduce an underflow. > I think I got it; __secondary_switched() -> init_cpu_task() -> scs_load() Thanks! >> >> I'm not familiar enough with KASAN to say whether that >> kasan_unpoison_task_stack() should rather happen upon hotplugging the CPU >> back (rather than on hot-unplug). If that is the case, then maybe somewhere >> around cpu_startup_entry() might work (and then you could bunch these two >> "needs to be re-run at init for the idle task" functions into a common >> helper). > > unpoison looks more like an one-time thing to me; the idle tasks will > reuse the same stack pages until system resets, so I think we don't need > to re-unpoison that during hotplugging as long as it's unpoisoned in > 'init_idle'. > I would tend to agree, but was bitten by s390 freeing some memory on hot-unplug and re-allocating it upon hotplug: 6a942f578054 ("s390: preempt: Fix preempt_count initialization") This makes me doubt whether we can assert the idle task stack pages are perennial vs hotplug on all architectures. >> >> > } >> > >> > -- >> > 2.33.0.882.g93a45727a2-goog