]> granicus.if.org Git - strace/blob - tests/prctl-name.c
tests: check decoding of prctl PR_GET_NAME/PR_SET_NAME operations
[strace] / tests / prctl-name.c
1 /*
2  * Check decoding of prctl PR_GET_NAME/PR_SET_NAME operations.
3  *
4  * Copyright (c) 2016 Eugene Syromyatnikov <evgsyr@gmail.com>
5  * Copyright (c) 2016 Dmitry V. Levin <ldv@altlinux.org>
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. The name of the author may not be used to endorse or promote products
17  *    derived from this software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #include "tests.h"
32
33 #ifdef HAVE_PRCTL
34 # include <sys/prctl.h>
35 #endif
36
37 #if defined HAVE_PRCTL && defined PR_GET_NAME && defined PR_SET_NAME
38
39 # include <stdio.h>
40 # include <string.h>
41 # include <unistd.h>
42
43 int
44 main(void)
45 {
46         static const char str[] = "0123456789abcdef";
47         static const int len = sizeof(str);
48         static const int len1 = len - 1;
49         char *const name = tail_memdup(str, len);
50         char *const name1 = name + 1;
51         int i;
52         int rc;
53
54         rc = prctl(PR_SET_NAME, NULL);
55         printf("prctl(PR_SET_NAME, NULL) = %s\n", sprintrc(rc));
56
57         for (i = 0; i <= len1; ++i) {
58                 rc = prctl(PR_SET_NAME, name + len1 - i);
59                 printf("prctl(PR_SET_NAME, \"%.*s\"%s) = %s\n",
60                        i < len1 - 1 ? i : len1 - 1,
61                        str + len1 - i,
62                        i < len1 - 1 ? "" : "...",
63                        sprintrc(rc));
64         }
65
66         name[0] = -1;
67         memcpy(name1, str, len1);
68
69         for (i = 0; i <= len1; ++i) {
70                 rc = prctl(PR_SET_NAME, name1 + len1 - i);
71                 if (i < len1 - 1)
72                         printf("prctl(PR_SET_NAME, %p) = %s\n",
73                                name1 + len1 - i, sprintrc(rc));
74                 else
75                         printf("prctl(PR_SET_NAME, \"%.*s\"...) = %s\n",
76                                len1 - 1, str + len1 - i, sprintrc(rc));
77         }
78
79         rc = prctl(PR_GET_NAME, NULL);
80         printf("prctl(PR_GET_NAME, NULL) = %s\n", sprintrc(rc));
81
82         for (i = 0; i < len1; ++i) {
83                 rc = prctl(PR_GET_NAME, name1 + len1 - i);
84                 printf("prctl(PR_GET_NAME, %p) = %s\n",
85                        name1 + len1 - i, sprintrc(rc));
86         }
87
88         rc = prctl(PR_GET_NAME, name1);
89         if (rc)
90                 printf("prctl(PR_GET_NAME, %p) = %s\n",
91                        name1, sprintrc(rc));
92         else
93                 printf("prctl(PR_GET_NAME, \"%.*s\") = %s\n",
94                        len1 - 1, name1, sprintrc(rc));
95
96         puts("+++ exited with 0 +++");
97         return 0;
98 }
99
100 #else
101
102 SKIP_MAIN_UNDEFINED("HAVE_PRCTL && PR_GET_NAME && PR_SET_NAME")
103
104 #endif