From patchwork Mon Aug 1 23:26:48 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kui-Feng Lee X-Patchwork-Id: 12934165 X-Patchwork-Delegate: bpf@iogearbox.net Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 463B8C3F6B0 for ; Mon, 1 Aug 2022 23:27:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230362AbiHAX1I (ORCPT ); Mon, 1 Aug 2022 19:27:08 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44814 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233860AbiHAX1H (ORCPT ); Mon, 1 Aug 2022 19:27:07 -0400 Received: from mx0a-00082601.pphosted.com (mx0a-00082601.pphosted.com [67.231.145.42]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 68CC52180B for ; Mon, 1 Aug 2022 16:27:06 -0700 (PDT) Received: from pps.filterd (m0044012.ppops.net [127.0.0.1]) by mx0a-00082601.pphosted.com (8.17.1.5/8.17.1.5) with ESMTP id 271NFhv6020214 for ; Mon, 1 Aug 2022 16:27:06 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fb.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=facebook; bh=wBe/jrMX1EkDLIiQvsY7fBOeCO737If+U0PTIIh9+8U=; b=dQtPpjw8TfRNS7KS+MdUO/DVrEQB0j7Xz9+MtGrFLhb3mE0h4X0BHokUFlqufbPYMsTh 6gCSiDl+KmcfTwCrX3/k9OBFrgH8S9RTFMxO1QlHk16JJrRhdL4wJVxuqbxT5IVOBC/p NWwZK+wLl3gACrBGwe2M891zijQrJY+1+jU= Received: from maileast.thefacebook.com ([163.114.130.16]) by mx0a-00082601.pphosted.com (PPS) with ESMTPS id 3hn2bn7349-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT) for ; Mon, 01 Aug 2022 16:27:06 -0700 Received: from twshared7570.37.frc1.facebook.com (2620:10d:c0a8:1b::d) by mail.thefacebook.com (2620:10d:c0a8:83::4) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.28; Mon, 1 Aug 2022 16:27:04 -0700 Received: by devbig931.frc1.facebook.com (Postfix, from userid 460691) id D853F62953EA; Mon, 1 Aug 2022 16:26:56 -0700 (PDT) From: Kui-Feng Lee To: , , , , , CC: Kui-Feng Lee Subject: [PATCH bpf-next v2 2/3] bpf: Handle bpf_link_info for the parameterized task BPF iterators. Date: Mon, 1 Aug 2022 16:26:48 -0700 Message-ID: <20220801232649.2306614-3-kuifeng@fb.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220801232649.2306614-1-kuifeng@fb.com> References: <20220801232649.2306614-1-kuifeng@fb.com> MIME-Version: 1.0 X-FB-Internal: Safe X-Proofpoint-GUID: bXGF2eeEvG-YEJZxjurj9AfeoG6nTPH_ X-Proofpoint-ORIG-GUID: bXGF2eeEvG-YEJZxjurj9AfeoG6nTPH_ X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.883,Hydra:6.0.517,FMLib:17.11.122.1 definitions=2022-08-01_12,2022-08-01_01,2022-06-22_01 Precedence: bulk List-ID: X-Mailing-List: bpf@vger.kernel.org X-Patchwork-Delegate: bpf@iogearbox.net Add new fields to bpf_link_info that users can query it through bpf_obj_get_info_by_fd(). Signed-off-by: Kui-Feng Lee --- include/uapi/linux/bpf.h | 4 ++++ kernel/bpf/task_iter.c | 10 ++++++++++ tools/include/uapi/linux/bpf.h | 4 ++++ 3 files changed, 18 insertions(+) diff --git a/include/uapi/linux/bpf.h b/include/uapi/linux/bpf.h index ed5ba501609f..33e6325d8d87 100644 --- a/include/uapi/linux/bpf.h +++ b/include/uapi/linux/bpf.h @@ -6158,6 +6158,10 @@ struct bpf_link_info { struct { __u32 map_id; } map; + struct { + __u32 tid; + __u8 type; /* one of enum bpf_task_iter_type */ + } task; }; } iter; struct { diff --git a/kernel/bpf/task_iter.c b/kernel/bpf/task_iter.c index 9942601e1dfb..610ec96333f3 100644 --- a/kernel/bpf/task_iter.c +++ b/kernel/bpf/task_iter.c @@ -577,6 +577,13 @@ static const struct bpf_iter_seq_info task_seq_info = { .seq_priv_size = sizeof(struct bpf_iter_seq_task_info), }; +static int bpf_iter_fill_link_info(const struct bpf_iter_aux_info *aux, struct bpf_link_info *info) +{ + info->iter.task.tid = aux->task.tid; + info->iter.task.type = aux->task.type; + return 0; +} + static struct bpf_iter_reg task_reg_info = { .target = "task", .attach_target = bpf_iter_attach_task, @@ -587,6 +594,7 @@ static struct bpf_iter_reg task_reg_info = { PTR_TO_BTF_ID_OR_NULL }, }, .seq_info = &task_seq_info, + .fill_link_info = bpf_iter_fill_link_info, }; static const struct bpf_iter_seq_info task_file_seq_info = { @@ -608,6 +616,7 @@ static struct bpf_iter_reg task_file_reg_info = { PTR_TO_BTF_ID_OR_NULL }, }, .seq_info = &task_file_seq_info, + .fill_link_info = bpf_iter_fill_link_info, }; static const struct bpf_iter_seq_info task_vma_seq_info = { @@ -629,6 +638,7 @@ static struct bpf_iter_reg task_vma_reg_info = { PTR_TO_BTF_ID_OR_NULL }, }, .seq_info = &task_vma_seq_info, + .fill_link_info = bpf_iter_fill_link_info, }; BPF_CALL_5(bpf_find_vma, struct task_struct *, task, u64, start, diff --git a/tools/include/uapi/linux/bpf.h b/tools/include/uapi/linux/bpf.h index ed5ba501609f..33e6325d8d87 100644 --- a/tools/include/uapi/linux/bpf.h +++ b/tools/include/uapi/linux/bpf.h @@ -6158,6 +6158,10 @@ struct bpf_link_info { struct { __u32 map_id; } map; + struct { + __u32 tid; + __u8 type; /* one of enum bpf_task_iter_type */ + } task; }; } iter; struct {