Received: by 2002:a25:f815:0:0:0:0:0 with SMTP id u21csp2514114ybd; Mon, 24 Jun 2019 07:44:17 -0700 (PDT) X-Google-Smtp-Source: APXvYqzChwB06O7UmG7dbg0CpWRbLCRLOJs2c4jnDMD1KM0AoGwdH0Jph12uFGhnyNyfUk4kzw1n X-Received: by 2002:a17:90a:24e4:: with SMTP id i91mr26353488pje.9.1561387457030; Mon, 24 Jun 2019 07:44:17 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1561387457; cv=none; d=google.com; s=arc-20160816; b=HrxtRbStJ/gAPorwD+ZeHm45huJW8etRXhNGZOqwvdd2+sCacr0YDvJ1cLSE7oCTRq yEVzSMV8FlWtQWIJncERkL1Uq+7co1NeAqiC66WyixLZVWmb/BuUfwwkINnf+EjToie0 9NrZUV+Nd4x2olFkcbBCR5AXOG2eJ7DfBNZYUpWxcwodfOzP9oOyMoJjGqNMhK1ajkc5 ffheuoGckx2AKw/t4OdaiUBkjf/6a7bSzvCe7rbspTIqDFp4GNMyZoXWGbp5JgTQ6ybY Axx7J6wPaXHo0gA/QSo5UAUoANOLTzKUEM9Gwg8GFHgoCYNrbLzNiZZiOqaAOhAgTzg3 qP1g== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:to:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:from; bh=6OAyWkEApsBw/jx6y+vClu6XtbaRZHkolNek7hoGN6Y=; b=SkX6ZJkqhPGk/kPrTaXVXfCGrWdqsh8pKwoRofRGd/DScHjxQ+06zICafL4QqVyeF0 R+zKh2YsX204xZ0qa0vuso5xIZZeRaOlnyURtqx3WLuI3CIR/9e4+qx9E4Ga4MYFnJIx VYT6pZ6TuoXTKObRL+kKQmSVV6wwTv/c6LPBkcwmYtS7yMwqtbAcyLbj+GKyzBfDHGTx 62Qq1H8leg57M0ztoiwmZpjCc2MRDPVXWieYvWw3ZxWSuKeKR7fvJA7pmlYO/ZScY9y0 5ZSncCQ83jbEqwf0kaoLfrLpjpB6FFGuBz7Ed8bO1zm157TaDAgQEttKfkCyKz/pmE13 Chng== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id v3si10617982pju.25.2019.06.24.07.44.01; Mon, 24 Jun 2019 07:44:17 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728703AbfFXOmC (ORCPT + 99 others); Mon, 24 Jun 2019 10:42:02 -0400 Received: from mx2.suse.de ([195.135.220.15]:50316 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726402AbfFXOmC (ORCPT ); Mon, 24 Jun 2019 10:42:02 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id C9EE7AE32; Mon, 24 Jun 2019 14:42:00 +0000 (UTC) From: Roman Penyaev Cc: Roman Penyaev , Andrew Morton , Al Viro , Linus Torvalds , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v5 02/14] epoll: introduce user structures for polling from userspace Date: Mon, 24 Jun 2019 16:41:39 +0200 Message-Id: <20190624144151.22688-3-rpenyaev@suse.de> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190624144151.22688-1-rpenyaev@suse.de> References: <20190624144151.22688-1-rpenyaev@suse.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit To: unlisted-recipients:; (no To-header on input) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This one introduces structures of user items array: struct epoll_uheader - describes inserted epoll items. struct epoll_uitem - single epoll item visible to userspace. Signed-off-by: Roman Penyaev Cc: Andrew Morton Cc: Al Viro Cc: Linus Torvalds Cc: linux-fsdevel@vger.kernel.org Cc: linux-kernel@vger.kernel.org --- fs/eventpoll.c | 11 +++++++++++ include/uapi/linux/eventpoll.h | 29 +++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/fs/eventpoll.c b/fs/eventpoll.c index 622b6c9ef8c9..6d7a5fe4a831 100644 --- a/fs/eventpoll.c +++ b/fs/eventpoll.c @@ -4,6 +4,7 @@ * Copyright (C) 2001,...,2009 Davide Libenzi * * Davide Libenzi + * Polling from userspace support by Roman Penyaev */ #include @@ -104,6 +105,16 @@ #define EP_ITEM_COST (sizeof(struct epitem) + sizeof(struct eppoll_entry)) +/* + * That is around 1.3mb of allocated memory for one epfd. What is more + * important is ->index_length, which should be ^2, so do not increase + * max items number to avoid size doubling of user index. + * + * Before increasing the value see add_event_to_uring() and especially + * cnt_to_advance() functions and change them accordingly. + */ +#define EP_USERPOLL_MAX_ITEMS_NR 65536 + struct epoll_filefd { struct file *file; int fd; diff --git a/include/uapi/linux/eventpoll.h b/include/uapi/linux/eventpoll.h index 39dfc29f0f52..3317901b19c4 100644 --- a/include/uapi/linux/eventpoll.h +++ b/include/uapi/linux/eventpoll.h @@ -79,4 +79,33 @@ struct epoll_event { __u64 data; } EPOLL_PACKED; +#define EPOLL_USERPOLL_HEADER_MAGIC 0xeb01eb01 +#define EPOLL_USERPOLL_HEADER_SIZE 128 + +/* + * Item, shared with userspace. Unfortunately we can't embed epoll_event + * structure, because it is badly aligned on all 64-bit archs, except + * x86-64 (see EPOLL_PACKED). sizeof(epoll_uitem) == 16 + */ +struct epoll_uitem { + __poll_t ready_events; + __poll_t events; + __u64 data; +}; + +/* + * Header, shared with userspace. sizeof(epoll_uheader) == 128 + */ +struct epoll_uheader { + __u32 magic; /* epoll user header magic */ + __u32 header_length; /* length of the header + items */ + __u32 index_length; /* length of the index ring, always pow2 */ + __u32 max_items_nr; /* max number of items */ + __u32 head; /* updated by userland */ + __u32 tail; /* updated by kernel */ + + struct epoll_uitem items[] + __attribute__((__aligned__(EPOLL_USERPOLL_HEADER_SIZE))); +}; + #endif /* _UAPI_LINUX_EVENTPOLL_H */ -- 2.21.0