]> granicus.if.org Git - strace/blob - clone.c
clone: use separate xlat for nstype parameter of setns syscall
[strace] / clone.c
1 /*
2  * Copyright (c) 1999-2000 Wichert Akkerman <wichert@cistron.nl>
3  * Copyright (c) 2002-2005 Roland McGrath <roland@redhat.com>
4  * Copyright (c) 2008 Jan Kratochvil <jan.kratochvil@redhat.com>
5  * Copyright (c) 2009-2013 Denys Vlasenko <dvlasenk@redhat.com>
6  * Copyright (c) 2006-2015 Dmitry V. Levin <ldv@altlinux.org>
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 3. The name of the author may not be used to endorse or promote products
18  *    derived from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31
32 #include "defs.h"
33
34 #include <sched.h>
35
36 #ifndef CSIGNAL
37 # define CSIGNAL 0x000000ff
38 #endif
39
40 #include "xlat/clone_flags.h"
41 #include "xlat/setns_types.h"
42
43 #if defined IA64
44 # define ARG_FLAGS      0
45 # define ARG_STACK      1
46 # define ARG_STACKSIZE  (tcp->scno == __NR_clone2 ? 2 : -1)
47 # define ARG_PTID       (tcp->scno == __NR_clone2 ? 3 : 2)
48 # define ARG_CTID       (tcp->scno == __NR_clone2 ? 4 : 3)
49 # define ARG_TLS        (tcp->scno == __NR_clone2 ? 5 : 4)
50 #elif defined S390 || defined S390X || defined CRISV10 || defined CRISV32
51 # define ARG_STACK      0
52 # define ARG_FLAGS      1
53 # define ARG_PTID       2
54 # define ARG_CTID       3
55 # define ARG_TLS        4
56 #elif defined X86_64 || defined X32
57 /* x86 personality processes have the last two arguments flipped. */
58 # define ARG_FLAGS      0
59 # define ARG_STACK      1
60 # define ARG_PTID       2
61 # define ARG_CTID       ((current_personality != 1) ? 3 : 4)
62 # define ARG_TLS        ((current_personality != 1) ? 4 : 3)
63 #elif defined ALPHA || defined TILE || defined OR1K || defined RISCV
64 # define ARG_FLAGS      0
65 # define ARG_STACK      1
66 # define ARG_PTID       2
67 # define ARG_CTID       3
68 # define ARG_TLS        4
69 #else
70 # define ARG_FLAGS      0
71 # define ARG_STACK      1
72 # define ARG_PTID       2
73 # define ARG_TLS        3
74 # define ARG_CTID       4
75 #endif
76
77 #if defined I386 || defined X86_64 || defined X32
78 extern void print_user_desc(struct tcb *, long);
79 #endif /* I386 || X86_64 || X32 */
80
81 SYS_FUNC(clone)
82 {
83         if (exiting(tcp)) {
84                 const char *sep = "|";
85                 unsigned long flags = tcp->u_arg[ARG_FLAGS];
86                 tprints("child_stack=");
87                 printaddr(tcp->u_arg[ARG_STACK]);
88                 tprints(", ");
89 #ifdef ARG_STACKSIZE
90                 if (ARG_STACKSIZE != -1)
91                         tprintf("stack_size=%#lx, ",
92                                 tcp->u_arg[ARG_STACKSIZE]);
93 #endif
94                 tprints("flags=");
95                 if (!printflags(clone_flags, flags &~ CSIGNAL, NULL))
96                         sep = "";
97                 if ((flags & CSIGNAL) != 0)
98                         tprintf("%s%s", sep, signame(flags & CSIGNAL));
99                 if ((flags & (CLONE_PARENT_SETTID|CLONE_CHILD_SETTID
100                               |CLONE_CHILD_CLEARTID|CLONE_SETTLS)) == 0)
101                         return 0;
102                 if (flags & CLONE_PARENT_SETTID) {
103                         tprints(", parent_tidptr=");
104                         printaddr(tcp->u_arg[ARG_PTID]);
105                 }
106                 if (flags & CLONE_SETTLS) {
107 #if defined I386 || defined X86_64 || defined X32
108 # ifndef I386
109                         if (current_personality == 1)
110 # endif
111                         {
112                                 tprints(", tls=");
113                                 print_user_desc(tcp, tcp->u_arg[ARG_TLS]);
114                         }
115 # ifndef I386
116                         else
117 # endif
118 #endif /* I386 || X86_64 || X32 */
119                         {
120                                 tprints(", tls=");
121                                 printaddr(tcp->u_arg[ARG_TLS]);
122                         }
123                 }
124                 if (flags & (CLONE_CHILD_SETTID|CLONE_CHILD_CLEARTID)) {
125                         tprints(", child_tidptr=");
126                         printaddr(tcp->u_arg[ARG_CTID]);
127                 }
128         }
129         /* TODO on syscall entry:
130          * We can clear CLONE_PTRACE here since it is an ancient hack
131          * to allow us to catch children, and we use another hack for that.
132          * But CLONE_PTRACE can conceivably be used by malicious programs
133          * to subvert us. By clearing this bit, we can defend against it:
134          * in untraced execution, CLONE_PTRACE should have no effect.
135          *
136          * We can also clear CLONE_UNTRACED, since it allows to start
137          * children outside of our control. At the moment
138          * I'm trying to figure out whether there is a *legitimate*
139          * use of this flag which we should respect.
140          */
141         return 0;
142 }
143
144 SYS_FUNC(setns)
145 {
146         printfd(tcp, tcp->u_arg[0]);
147         tprints(", ");
148         printxval(setns_types, tcp->u_arg[1], "CLONE_NEW???");
149
150         return RVAL_DECODED;
151 }
152
153 SYS_FUNC(unshare)
154 {
155         printflags_long(clone_flags, tcp->u_arg[0], "CLONE_???");
156         return RVAL_DECODED;
157 }
158
159 SYS_FUNC(fork)
160 {
161         return RVAL_DECODED | RVAL_UDECIMAL;
162 }