Received: by 2002:a05:6a10:a841:0:0:0:0 with SMTP id d1csp3871584pxy; Mon, 26 Apr 2021 11:45:31 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxKQtKp0iW2iVHsJpvygoTQzKRMHNngSgr+ls25+RxxbXyrK7SApRXXbFbXr7vPUaGrx91h X-Received: by 2002:a17:906:4913:: with SMTP id b19mr20127741ejq.439.1619462731510; Mon, 26 Apr 2021 11:45:31 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1619462731; cv=none; d=google.com; s=arc-20160816; b=iXPYa8i/vqroeGbzn0pUf497YCX0t86fwbxoJK8Tjl/x05Qa17jyoxbS+LOKjMPCb/ cLoolET1dbpb74qKLanPaOc6RYdCpZCERu6bcmX8yh+UT61ovHmD/rzQi9QGXnrozFDS qJkG0+me/qEZ9T/MYAXz8ZX1AbSFSdMWN5Vm/vlIF0Cj4L3JrUcKLkmCOrZWk4OJkTbs FvTvf8CJy2dLTmmIvS172u9xQobyIROMgeKm0FOqfqbRRsQP12jR4/AgI2fYKRQhzoBM Yq67JO/aFMC91GvdpI13eG+Z9WggYIAykwo1RQUIJd4Gg2rsd1qwMlmoNktlKZdggX2i EWDg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=q76itIQxqLAHfZ7S1Q5D3N6FvpyaPRMFZX57F5kXl9w=; b=mWmq1nNolazMKejRc39eGY/wKnjIrwDVKwROe/Fvl6gkzu0c5FalEe8qKo/jHK68dw EerDrHbIF6hijM7ZtKNplIC9xsOA8sfdlDCuPg52imE8TCkJR9AWq8Ho6oht45Y3eg58 +VrmlW6nnoyjofcEh0oKKIx0IlxdpsJAmLoyInEJrzfN1Yxpvl2/oL5ggW/U5OsSWbb0 6uxiDyGD12QkH5NcKTDIs1flmAG6CdYNmLUf/ZPkp2aK0p03wadOED4NInuzOCw1Xcc0 E2cY6dMOQBZADulRXQaDQFeWQRCbvcewx9B0RTR4GR1SUUr71AUkoZQ6/7eKuU3G08Gx Hntg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=collabora.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id s24si13928024ejc.502.2021.04.26.11.45.08; Mon, 26 Apr 2021 11:45:31 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-ext4-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-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=collabora.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S240954AbhDZSpm (ORCPT + 99 others); Mon, 26 Apr 2021 14:45:42 -0400 Received: from bhuna.collabora.co.uk ([46.235.227.227]:47488 "EHLO bhuna.collabora.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238520AbhDZSnn (ORCPT ); Mon, 26 Apr 2021 14:43:43 -0400 Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: krisman) with ESMTPSA id 9F2F41F41E27 From: Gabriel Krisman Bertazi To: amir73il@gmail.com, tytso@mit.edu, djwong@kernel.org Cc: david@fromorbit.com, jack@suse.com, dhowells@redhat.com, khazhy@google.com, linux-fsdevel@vger.kernel.org, linux-ext4@vger.kernel.org, Gabriel Krisman Bertazi , kernel@collabora.com Subject: [PATCH RFC 10/15] fanotify: Introduce code location record Date: Mon, 26 Apr 2021 14:41:56 -0400 Message-Id: <20210426184201.4177978-11-krisman@collabora.com> X-Mailer: git-send-email 2.31.0 In-Reply-To: <20210426184201.4177978-1-krisman@collabora.com> References: <20210426184201.4177978-1-krisman@collabora.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org This patch introduces an optional info record that describes the source (as in the region of the source-code where an event was initiated). This record is not produced for other type of existing notification, but it is optionally enabled for FAN_ERROR notifications. Signed-off-by: Gabriel Krisman Bertazi --- fs/notify/fanotify/fanotify.h | 6 +++++ fs/notify/fanotify/fanotify_user.c | 35 ++++++++++++++++++++++++++++++ include/uapi/linux/fanotify.h | 7 ++++++ 3 files changed, 48 insertions(+) diff --git a/fs/notify/fanotify/fanotify.h b/fs/notify/fanotify/fanotify.h index 4cb9dd31f084..0d1b4cb8b005 100644 --- a/fs/notify/fanotify/fanotify.h +++ b/fs/notify/fanotify/fanotify.h @@ -161,6 +161,11 @@ struct fanotify_fid_event { unsigned char _inline_fh_buf[FANOTIFY_INLINE_FH_LEN]; }; +struct fanotify_event_location { + int line; + const char *function; +}; + static inline struct fanotify_fid_event * FANOTIFY_FE(struct fanotify_event *event) { @@ -183,6 +188,7 @@ struct fanotify_error_event { struct fanotify_event fae; int error; __kernel_fsid_t fsid; + struct fanotify_event_location loc; int fs_data_size; /* Must be the last item in the structure */ diff --git a/fs/notify/fanotify/fanotify_user.c b/fs/notify/fanotify/fanotify_user.c index 21162d347bd1..cb79a4a8e6fb 100644 --- a/fs/notify/fanotify/fanotify_user.c +++ b/fs/notify/fanotify/fanotify_user.c @@ -69,6 +69,16 @@ static size_t fanotify_error_info_len(struct fanotify_error_event *fee) return sizeof(struct fanotify_event_info_error); } +static size_t fanotify_location_info_len(const struct fanotify_event_location *loc) +{ + if (!loc->function) + return 0; + + /* Includes NULL byte at end of loc->function */ + return (sizeof(struct fanotify_event_info_location) + + strlen(loc->function) + 1); +} + static size_t fanotify_event_len(struct fanotify_event *event, unsigned int fid_mode) { @@ -260,6 +270,31 @@ static size_t copy_error_info_to_user(struct fanotify_error_event *fee, } +static size_t copy_location_info_to_user(struct fanotify_event_location *location, + char __user *buf, int count) +{ + size_t len = fanotify_location_info_len(location); + size_t tail = len - sizeof(struct fanotify_event_info_location); + struct fanotify_event_info_location info; + + if (!len) + return 0; + + info.hdr.info_type = FAN_EVENT_INFO_TYPE_LOCATION; + info.hdr.len = len; + info.line = location->line; + + if (copy_to_user(buf, &info, sizeof(info))) + return -EFAULT; + + buf += sizeof(info); + + if (copy_to_user(buf, location->function, tail)) + return -EFAULT; + + return info.hdr.len; +} + static int copy_info_to_user(__kernel_fsid_t *fsid, struct fanotify_fh *fh, int info_type, const char *name, size_t name_len, char __user *buf, size_t count) diff --git a/include/uapi/linux/fanotify.h b/include/uapi/linux/fanotify.h index cc9a1fa80e30..67217756dac9 100644 --- a/include/uapi/linux/fanotify.h +++ b/include/uapi/linux/fanotify.h @@ -125,6 +125,7 @@ struct fanotify_event_metadata { #define FAN_EVENT_INFO_TYPE_DFID_NAME 2 #define FAN_EVENT_INFO_TYPE_DFID 3 #define FAN_EVENT_INFO_TYPE_ERROR 4 +#define FAN_EVENT_INFO_TYPE_LOCATION 5 /* Variable length info record following event metadata */ struct fanotify_event_info_header { @@ -159,6 +160,12 @@ struct fanotify_event_info_error { __kernel_fsid_t fsid; }; +struct fanotify_event_info_location { + struct fanotify_event_info_header hdr; + int line; + char function[0]; +}; + struct fanotify_response { __s32 fd; __u32 response; -- 2.31.0