From mboxrd@z Thu Jan 1 00:00:00 1970 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 picard.linux.it (picard.linux.it [213.254.12.146]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 2A4B9C433EF for ; Fri, 7 Jan 2022 21:22:28 +0000 (UTC) Received: from picard.linux.it (localhost [IPv6:::1]) by picard.linux.it (Postfix) with ESMTP id A5D4D3C9237 for ; Fri, 7 Jan 2022 22:22:24 +0100 (CET) Received: from in-5.smtp.seeweb.it (in-5.smtp.seeweb.it [IPv6:2001:4b78:1:20::5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by picard.linux.it (Postfix) with ESMTPS id 361AE3C6D68 for ; Fri, 7 Jan 2022 22:21:21 +0100 (CET) Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.220.28]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by in-5.smtp.seeweb.it (Postfix) with ESMTPS id C8DC46005DB for ; Fri, 7 Jan 2022 22:21:20 +0100 (CET) Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id 638AE212BE; Fri, 7 Jan 2022 21:21:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1641590480; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=v/0lbCoPKv+P0LHytAVQoAFLwFW3D8gauIOJ6msR/vc=; b=N/GbbofVtS8/BXiq4pEm+nuk04JFihjXfQnbRoOhfeX0fsbgLd+MeLAuwRYh0gl1yP+WO5 OzecX7P34SSUaXQsjcp8bn5qUmPr1sYG75hWC2dCKqlAg/EYMHkdXUh5yef3s5D25U8sjt 6FFGWJ99YD4CtItILaxpSmzFpdVqO5U= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1641590480; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=v/0lbCoPKv+P0LHytAVQoAFLwFW3D8gauIOJ6msR/vc=; b=WVEY4+ixwhJwFZk1O9oePtBZ3CaMdq38B1Jv5XIbcRayjEfcy6CM1AXTc38PQFeO26Hlm/ dye9z8l/u1E3AUBw== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 3C6E113D44; Fri, 7 Jan 2022 21:21:20 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id 0K+WDNCu2GEHFwAAMHmgww (envelope-from ); Fri, 07 Jan 2022 21:21:20 +0000 From: Andrea Cervesato To: ltp@lists.linux.it Date: Fri, 7 Jan 2022 22:20:53 +0100 Message-Id: <20220107212058.19768-7-andrea.cervesato@suse.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220107212058.19768-1-andrea.cervesato@suse.de> References: <20220107212058.19768-1-andrea.cervesato@suse.de> MIME-Version: 1.0 X-Virus-Scanned: clamav-milter 0.102.4 at in-5.smtp.seeweb.it X-Virus-Status: Clean Subject: [LTP] [PATCH v4 06/11] Add wqueue04 test X-BeenThere: ltp@lists.linux.it X-Mailman-Version: 2.1.29 Precedence: list List-Id: Linux Test Project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ltp-bounces+ltp=archiver.kernel.org@lists.linux.it Sender: "ltp" This test is testing NOTIFY_KEY_LINKED event Signed-off-by: Andrea Cervesato --- testcases/kernel/watchqueue/wqueue04.c | 40 ++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 testcases/kernel/watchqueue/wqueue04.c diff --git a/testcases/kernel/watchqueue/wqueue04.c b/testcases/kernel/watchqueue/wqueue04.c new file mode 100644 index 000000000..04e99e891 --- /dev/null +++ b/testcases/kernel/watchqueue/wqueue04.c @@ -0,0 +1,40 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/* + * Copyright (C) 2021 SUSE LLC Andrea Cervesato + */ + +/*\ + * [Description] + * + * Test if keyctl link is correctly recognized by watch queue. + */ + +#include "tst_test.h" +#include "lapi/keyctl.h" +#include "common.h" + +static void saw_key_linked(struct watch_notification *n, size_t len, unsigned int wtype) +{ + if (wqueue_key_event(n, len, wtype, NOTIFY_KEY_LINKED)) + tst_res(TPASS, "keyctl link has been recognized"); + else + tst_res(TFAIL, "keyctl link has not been recognized"); +} + +static void run(void) +{ + int fd; + key_serial_t key; + + fd = wqueue_watch(256, &wqueue_filter); + key = wqueue_add_key(fd); + + keyctl(KEYCTL_LINK, key, KEY_SPEC_SESSION_KEYRING); + wqueue_consumer(fd, saw_key_linked); + + SAFE_CLOSE(fd); +} + +static struct tst_test test = { + .test_all = run, +}; -- 2.34.1 -- Mailing list info: https://lists.linux.it/listinfo/ltp