]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - lib/libc/sys/minherit.2
MFH (r325010): don't bother verifying a password that we know is too long.
[FreeBSD/stable/10.git] / lib / libc / sys / minherit.2
1 .\" $FreeBSD$
2 .\"
3 .\" Copyright (c) 1991, 1993
4 .\"     The Regents of the University of California.  All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\" 4. Neither the name of the University nor the names of its contributors
15 .\"    may be used to endorse or promote products derived from this software
16 .\"    without specific prior written permission.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" SUCH DAMAGE.
29 .\"
30 .\"     @(#)minherit.2  8.1 (Berkeley) 6/9/93
31 .\"
32 .Dd March 15, 2017
33 .Dt MINHERIT 2
34 .Os
35 .Sh NAME
36 .Nm minherit
37 .Nd control the inheritance of pages
38 .Sh LIBRARY
39 .Lb libc
40 .Sh SYNOPSIS
41 .In sys/mman.h
42 .Ft int
43 .Fn minherit "void *addr" "size_t len" "int inherit"
44 .Sh DESCRIPTION
45 The
46 .Fn minherit
47 system call
48 changes the specified pages to have the inheritance characteristic
49 .Fa inherit .
50 Not all implementations will guarantee that the inheritance characteristic
51 can be set on a page basis;
52 the granularity of changes may be as large as an entire region.
53 .Fx
54 is capable of adjusting inheritance characteristics on a page basis.
55 Inheritance only effects children created by
56 .Fn fork .
57 It has no effect on
58 .Fn exec .
59 exec'd processes replace their address space entirely.
60 This system call also
61 has no effect on the parent's address space (other than to potentially
62 share the address space with its children).
63 .Pp
64 Inheritance is a rather esoteric feature largely superseded by the
65 .Dv MAP_SHARED
66 feature of
67 .Fn mmap .
68 However, it is possible to use
69 .Fn minherit
70 to share a block of memory between parent and child that has been mapped
71 .Dv MAP_PRIVATE .
72 That is, modifications made by parent or child are shared but
73 the original underlying file is left untouched.
74 .Bl -tag -width ".Dv INHERIT_SHARE"
75 .It Dv INHERIT_SHARE
76 This option causes the address space in question to be shared between
77 parent and child.
78 It has no effect on how the original underlying backing
79 store was mapped.
80 .It Dv INHERIT_NONE
81 This option prevents the address space in question from being inherited
82 at all.
83 The address space will be unmapped in the child.
84 .It Dv INHERIT_COPY
85 This option causes the child to inherit the address space as copy-on-write.
86 This option also has an unfortunate side effect of causing the parent
87 address space to become copy-on-write when the parent forks.
88 If the original mapping was
89 .Dv MAP_SHARED ,
90 it will no longer be shared in the parent
91 after the parent forks and there is no way to get the previous
92 shared-backing-store mapping without unmapping and remapping the address
93 space in the parent.
94 .It Dv INHERIT_ZERO
95 This option causes the address space in question to be mapped as new
96 anonymous pages,
97 which would be initialized to all zero bytes,
98 in the child process.
99 .El
100 .Sh RETURN VALUES
101 .Rv -std minherit
102 .Sh ERRORS
103 The
104 .Fn minherit
105 system call will fail if:
106 .Bl -tag -width Er
107 .It Bq Er EINVAL
108 The virtual address range specified by the
109 .Fa addr
110 and
111 .Fa len
112 arguments is not valid.
113 .It Bq Er EACCES
114 The flags specified by the
115 .Fa inherit
116 argument were not valid for the pages specified
117 by the
118 .Fa addr
119 and
120 .Fa len
121 arguments.
122 .El
123 .Sh SEE ALSO
124 .Xr fork 2 ,
125 .Xr madvise 2 ,
126 .Xr mincore 2 ,
127 .Xr mprotect 2 ,
128 .Xr msync 2 ,
129 .Xr munmap 2 ,
130 .Xr rfork 2
131 .Sh HISTORY
132 The
133 .Fn minherit
134 system call first appeared in
135 .Ox
136 and then in
137 .Fx 2.2 .
138 .Pp
139 The
140 .Dv INHERIT_ZERO
141 support first appeared in
142 .Ox 5.6
143 and then in
144 .Fx 12.0 .
145 .Sh BUGS
146 Once you set inheritance to
147 .Dv MAP_PRIVATE
148 or
149 .Dv MAP_SHARED ,
150 there is no way to recover the original copy-on-write semantics
151 short of unmapping and remapping the area.