From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1039) id 6448B385AE42; Sat, 16 Dec 2023 16:40:17 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6448B385AE42 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1702744817; bh=337lSY17f6faOEyn1Jk02+S56/za6+LxqCAcfGroTmQ=; h=From:To:Subject:Date:From; b=EOtG4wAysA2EmGacOuqeKXXpzOIMG/5lBE3Q2/bUq8ugcBpe7zgQHTeAg64o+Un7v 6F+hRMXLqmthxPnUh5S3LxlAvn+H1gMo/EGEaWkm9f7ag+zPQQ62ohAAg//XiUzLpj tCws/+faQpWXUIG5nMQCUZ524MmPaYx3hi9tbGEw= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: H.J. Lu To: glibc-cvs@sourceware.org Subject: [glibc] Add a test for longjmp from user context X-Act-Checkin: glibc X-Git-Author: H.J. Lu X-Git-Refname: refs/heads/master X-Git-Oldrev: 93a739d4a1c34c9dbb96ced4fbeaa18e02000b6a X-Git-Newrev: 08bc191fd1603c41f5ddc97ead716e952a556dfd Message-Id: <20231216164017.6448B385AE42@sourceware.org> Date: Sat, 16 Dec 2023 16:40:17 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=08bc191fd1603c41f5ddc97ead716e952a556dfd commit 08bc191fd1603c41f5ddc97ead716e952a556dfd Author: H.J. Lu Date: Thu Dec 14 11:37:02 2023 -0800 Add a test for longjmp from user context Verify that longjmp works correctly after setcontext is called to switch to a user context. Reviewed-by: Noah Goldstein Diff: --- stdlib/Makefile | 1 + stdlib/tst-setcontext10.c | 87 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 88 insertions(+) diff --git a/stdlib/Makefile b/stdlib/Makefile index 0b154e57c5..8c6249aab4 100644 --- a/stdlib/Makefile +++ b/stdlib/Makefile @@ -234,6 +234,7 @@ tests := \ tst-setcontext7 \ tst-setcontext8 \ tst-setcontext9 \ + tst-setcontext10 \ tst-strfmon_l \ tst-strfrom \ tst-strfrom-locale \ diff --git a/stdlib/tst-setcontext10.c b/stdlib/tst-setcontext10.c new file mode 100644 index 0000000000..2926753cb1 --- /dev/null +++ b/stdlib/tst-setcontext10.c @@ -0,0 +1,87 @@ +/* Check longjmp from user context to main context. + Copyright (C) 2023 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#include +#include +#include +#include +#include + +static jmp_buf jmpbuf; +static ucontext_t ctx; + +static void f2 (void); + +static void +__attribute__ ((noinline, noclone)) +f1 (void) +{ + printf ("start f1\n"); + f2 (); +} + +static void +__attribute__ ((noinline, noclone)) +f2 (void) +{ + printf ("start f2\n"); + if (setcontext (&ctx) != 0) + { + printf ("%s: setcontext: %m\n", __FUNCTION__); + exit (EXIT_FAILURE); + } +} + +static void +f3 (void) +{ + printf ("start f3\n"); + longjmp (jmpbuf, 1); +} + +static int +__attribute__ ((noinline, noclone)) +do_test_1 (void) +{ + char st1[32768]; + + if (setjmp (jmpbuf) != 0) + return 0; + + puts ("making contexts"); + if (getcontext (&ctx) != 0) + { + printf ("%s: getcontext: %m\n", __FUNCTION__); + exit (EXIT_FAILURE); + } + ctx.uc_stack.ss_sp = st1; + ctx.uc_stack.ss_size = sizeof st1; + ctx.uc_link = NULL; + makecontext (&ctx, (void (*) (void)) f3, 0); + f1 (); + puts ("FAIL: returned from f1 ()"); + exit (EXIT_FAILURE); +} + +static int +do_test (void) +{ + return do_test_1 (); +} + +#include