close_range.2: Minor wording fix
[man-pages.git] / man2 / kcmp.2
blob72013de47f8bc0792b01ec6d850860425491d8c7
1 .\" Copyright (C) 2012, Cyrill Gorcunov <gorcunov@openvz.org>
2 .\" and Copyright (C) 2012, 2016, Michael Kerrisk <mtk.manpages@gmail.com>
3 .\"
4 .\" %%%LICENSE_START(VERBATIM)
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
8 .\"
9 .\" Permission is granted to copy and distribute modified versions of
10 .\" this manual under the conditions for verbatim copying, provided that
11 .\" the entire resulting derived work is distributed under the terms of
12 .\" a permission notice identical to this one.
13 .\"
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date.  The author(s) assume
16 .\" no responsibility for errors or omissions, or for damages resulting
17 .\" from the use of the information contained herein.  The author(s) may
18 .\" not have taken the same level of care in the production of this
19 .\" manual, which is licensed free of charge, as they might when working
20 .\" professionally.
21 .\"
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
24 .\" %%%LICENSE_END
25 .\"
26 .\" Kernel commit d97b46a64674a267bc41c9e16132ee2a98c3347d
27 .\"
28 .TH KCMP 2 2020-11-01 "Linux" "Linux Programmer's Manual"
29 .SH NAME
30 kcmp \- compare two processes to determine if they share a kernel resource
31 .SH SYNOPSIS
32 .nf
33 .B #include <linux/kcmp.h>
34 .PP
35 .BI "int kcmp(pid_t " pid1 ", pid_t " pid2 ", int " type ,
36 .BI "         unsigned long " idx1 ", unsigned long "  idx2 );
37 .fi
38 .PP
39 .IR Note :
40 There is no glibc wrapper for this system call; see NOTES.
41 .SH DESCRIPTION
42 The
43 .BR kcmp ()
44 system call can be used to check whether the two processes identified by
45 .I pid1
46 and
47 .I pid2
48 share a kernel resource such as virtual memory, file descriptors,
49 and so on.
50 .PP
51 Permission to employ
52 .BR kcmp ()
53 is governed by ptrace access mode
54 .B PTRACE_MODE_READ_REALCREDS
55 checks against both
56 .I pid1
57 and
58 .IR pid2 ;
59 see
60 .BR ptrace (2).
61 .PP
62 The
63 .I type
64 argument specifies which resource is to be compared in the two processes.
65 It has one of the following values:
66 .TP
67 .BR KCMP_FILE
68 Check whether a file descriptor
69 .I idx1
70 in the process
71 .I pid1
72 refers to the same open file description (see
73 .BR open (2))
74 as file descriptor
75 .I idx2
76 in the process
77 .IR pid2 .
78 The existence of two file descriptors that refer to the same
79 open file description can occur as a result of
80 .BR dup (2)
81 (and similar)
82 .BR fork (2),
83 or passing file descriptors via a domain socket (see
84 .BR unix (7)).
85 .TP
86 .BR KCMP_FILES
87 Check whether the processes share the same set of open file descriptors.
88 The arguments
89 .I idx1
90 and
91 .I idx2
92 are ignored.
93 See the discussion of the
94 .BR CLONE_FILES
95 flag in
96 .BR clone (2).
97 .TP
98 .BR KCMP_FS
99 Check whether the processes share the same filesystem information
100 (i.e., file mode creation mask, working directory, and filesystem root).
101 The arguments
102 .I idx1
104 .I idx2
105 are ignored.
106 See the discussion of the
107 .BR CLONE_FS
108 flag in
109 .BR clone (2).
111 .BR KCMP_IO
112 Check whether the processes share I/O context.
113 The arguments
114 .I idx1
116 .I idx2
117 are ignored.
118 See the discussion of the
119 .BR CLONE_IO
120 flag in
121 .BR clone (2).
123 .BR KCMP_SIGHAND
124 Check whether the processes share the same table of signal dispositions.
125 The arguments
126 .I idx1
128 .I idx2
129 are ignored.
130 See the discussion of the
131 .BR CLONE_SIGHAND
132 flag in
133 .BR clone (2).
135 .BR KCMP_SYSVSEM
136 Check whether the processes share the same
137 list of System\ V semaphore undo operations.
138 The arguments
139 .I idx1
141 .I idx2
142 are ignored.
143 See the discussion of the
144 .BR CLONE_SYSVSEM
145 flag in
146 .BR clone (2).
148 .BR KCMP_VM
149 Check whether the processes share the same address space.
150 The arguments
151 .I idx1
153 .I idx2
154 are ignored.
155 See the discussion of the
156 .BR CLONE_VM
157 flag in
158 .BR clone (2).
160 .BR KCMP_EPOLL_TFD " (since Linux 4.13)"
161 .\" commit 0791e3644e5ef21646fe565b9061788d05ec71d4
162 Check whether the file descriptor
163 .I idx1
164 of the process
165 .I pid1
166 is present in the
167 .BR epoll (7)
168 instance described by
169 .I idx2
170 of the process
171 .IR pid2 .
172 The argument
173 .I idx2
174 is a pointer to a structure where the target file is described.
175 This structure has the form:
177 .in +4n
179 struct kcmp_epoll_slot {
180     __u32 efd;
181     __u32 tfd;
182     __u64 toff;
187 Within this structure,
188 .I efd
189 is an epoll file descriptor returned from
190 .BR epoll_create (2),
191 .I tfd
192 is a target file descriptor number, and
193 .I toff
194 is a target file offset counted from zero.
195 Several different targets may be registered with
196 the same file descriptor number and setting a specific
197 offset helps to investigate each of them.
199 Note the
200 .BR kcmp ()
201 is not protected against false positives which may occur if
202 the processes are currently running.
203 One should stop the processes by sending
204 .BR SIGSTOP
205 (see
206 .BR signal (7))
207 prior to inspection with this system call to obtain meaningful results.
208 .SH RETURN VALUE
209 The return value of a successful call to
210 .BR kcmp ()
211 is simply the result of arithmetic comparison
212 of kernel pointers (when the kernel compares resources, it uses their
213 memory addresses).
215 The easiest way to explain is to consider an example.
216 Suppose that
217 .I v1
219 .I v2
220 are the addresses of appropriate resources, then the return value
221 is one of the following:
222 .RS 4
223 .IP 0 4
224 .I v1
225 is equal to
226 .IR v2 ;
227 in other words, the two processes share the resource.
228 .IP 1
229 .I v1
230 is less than
231 .IR v2 .
232 .IP 2
233 .I v1
234 is greater than
235 .IR v2 .
236 .IP 3
237 .I v1
238 is not equal to
239 .IR v2 ,
240 but ordering information is unavailable.
243 On error, \-1 is returned, and
244 .I errno
245 is set to indicate the error.
247 .BR kcmp ()
248 was designed to return values suitable for sorting.
249 This is particularly handy if one needs to compare
250 a large number of file descriptors.
251 .SH ERRORS
253 .B EBADF
254 .I type
256 .B KCMP_FILE
258 .I fd1
260 .I fd2
261 is not an open file descriptor.
263 .B EFAULT
264 The epoll slot addressed by
265 .I idx2
266 is outside of the user's address space.
268 .B EINVAL
269 .I type
270 is invalid.
272 .B ENOENT
273 The target file is not present in
274 .BR epoll (7)
275 instance.
277 .B EPERM
278 Insufficient permission to inspect process resources.
280 .B CAP_SYS_PTRACE
281 capability is required to inspect processes that you do not own.
282 Other ptrace limitations may also apply, such as
283 .BR CONFIG_SECURITY_YAMA ,
284 which, when
285 .I /proc/sys/kernel/yama/ptrace_scope
286 is 2, limits
287 .BR kcmp ()
288 to child processes;
290 .BR ptrace (2).
292 .B ESRCH
293 Process
294 .I pid1
296 .I pid2
297 does not exist.
298 .SH VERSIONS
300 .BR kcmp ()
301 system call first appeared in Linux 3.5.
302 .SH CONFORMING TO
303 .BR kcmp ()
304 is Linux-specific and should not be used in programs intended to be portable.
305 .SH NOTES
306 Glibc does not provide a wrapper for this system call; call it using
307 .BR syscall (2).
309 Before Linux 5.12,
310 this system call is available only if the kernel is configured with
311 .BR CONFIG_CHECKPOINT_RESTORE ,
312 since the original pupose the system call was for the
313 checkpoint/restore in user space (CRIU) feature.
314 (The alternative to this system call would have been to expose suitable
315 process information via the
316 .BR proc (5)
317 filesystem; this was deemed to be unsuitable for security reasons.)
318 Since Linux 5.12, this system call is made available unconditionally.
321 .BR clone (2)
322 for some background information on the shared resources
323 referred to on this page.
324 .SH EXAMPLES
325 The program below uses
326 .BR kcmp ()
327 to test whether pairs of file descriptors refer to
328 the same open file description.
329 The program tests different cases for the file descriptor pairs,
330 as described in the program output.
331 An example run of the program is as follows:
333 .in +4n
335 $ \fB./a.out\fP
336 Parent PID is 1144
337 Parent opened file on FD 3
339 PID of child of fork() is 1145
340         Compare duplicate FDs from different processes:
341                 kcmp(1145, 1144, KCMP_FILE, 3, 3) ==> same
342 Child opened file on FD 4
343         Compare FDs from distinct open()s in same process:
344                 kcmp(1145, 1145, KCMP_FILE, 3, 4) ==> different
345 Child duplicated FD 3 to create FD 5
346         Compare duplicated FDs in same process:
347                 kcmp(1145, 1145, KCMP_FILE, 3, 5) ==> same
350 .SS Program source
353 #define _GNU_SOURCE
354 #include <sys/syscall.h>
355 #include <sys/wait.h>
356 #include <sys/stat.h>
357 #include <stdint.h>
358 #include <stdlib.h>
359 #include <stdio.h>
360 #include <unistd.h>
361 #include <fcntl.h>
362 #include <linux/kcmp.h>
364 #define errExit(msg)    do { perror(msg); exit(EXIT_FAILURE); \e
365                         } while (0)
367 static int
368 kcmp(pid_t pid1, pid_t pid2, int type,
369      unsigned long idx1, unsigned long idx2)
371     return syscall(SYS_kcmp, pid1, pid2, type, idx1, idx2);
374 static void
375 test_kcmp(char *msg, pid_t pid1, pid_t pid2, int fd_a, int fd_b)
377     printf("\et%s\en", msg);
378     printf("\et\etkcmp(%jd, %jd, KCMP_FILE, %d, %d) ==> %s\en",
379             (intmax_t) pid1, (intmax_t) pid2, fd_a, fd_b,
380             (kcmp(pid1, pid2, KCMP_FILE, fd_a, fd_b) == 0) ?
381                         "same" : "different");
385 main(int argc, char *argv[])
387     int fd1, fd2, fd3;
388     char pathname[] = "/tmp/kcmp.test";
390     fd1 = open(pathname, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR);
391     if (fd1 == \-1)
392         errExit("open");
394     printf("Parent PID is %jd\en", (intmax_t) getpid());
395     printf("Parent opened file on FD %d\en\en", fd1);
397     switch (fork()) {
398     case \-1:
399         errExit("fork");
401     case 0:
402         printf("PID of child of fork() is %jd\en", (intmax_t) getpid());
404         test_kcmp("Compare duplicate FDs from different processes:",
405                 getpid(), getppid(), fd1, fd1);
407         fd2 = open(pathname, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR);
408         if (fd2 == \-1)
409             errExit("open");
410         printf("Child opened file on FD %d\en", fd2);
412         test_kcmp("Compare FDs from distinct open()s in same process:",
413                 getpid(), getpid(), fd1, fd2);
415         fd3 = dup(fd1);
416         if (fd3 == \-1)
417             errExit("dup");
418         printf("Child duplicated FD %d to create FD %d\en", fd1, fd3);
420         test_kcmp("Compare duplicated FDs in same process:",
421                 getpid(), getpid(), fd1, fd3);
422         break;
424     default:
425         wait(NULL);
426     }
428     exit(EXIT_SUCCESS);
431 .SH SEE ALSO
432 .BR clone (2),
433 .BR unshare (2)