Merge remote-tracking branch 'origin/vendor/XZ'
[dragonfly.git] / lib / libc / sys / mmap.2
1 .\" Copyright (c) 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)mmap.2      8.4 (Berkeley) 5/11/95
29 .\" $FreeBSD: src/lib/libc/sys/mmap.2,v 1.22.2.12 2002/02/27 03:40:13 dd Exp $
30 .\"
31 .Dd January 18, 2015
32 .Dt MMAP 2
33 .Os
34 .Sh NAME
35 .Nm mmap
36 .Nd allocate memory, or map files or devices into memory
37 .Sh LIBRARY
38 .Lb libc
39 .Sh SYNOPSIS
40 .In sys/types.h
41 .In sys/mman.h
42 .Ft void *
43 .Fn mmap "void *addr" "size_t len" "int prot" "int flags" "int fd" "off_t offset"
44 .Sh DESCRIPTION
45 The
46 .Fn mmap
47 function causes the pages starting at
48 .Fa addr
49 and continuing for at most
50 .Fa len
51 bytes to be mapped from the object described by
52 .Fa fd ,
53 starting at byte offset
54 .Fa offset .
55 If
56 .Fa len
57 is not a multiple of the pagesize, the mapped region may extend past the
58 specified range.
59 Any such extension beyond the end of the mapped object will be zero-filled.
60 .Pp
61 If
62 .Fa addr
63 is non-zero, it is used as a hint to the system.
64 (As a convenience to the system, the actual address of the region may differ
65 from the address supplied.)
66 If
67 .Fa addr
68 is zero, an address will be selected by the system.
69 The actual starting address of the region is returned.
70 A successful
71 .Fa mmap
72 deletes any previous mapping in the allocated address range.
73 .Pp
74 The protections (region accessibility) are specified in the
75 .Fa prot
76 argument by
77 .Em or Ns 'ing
78 the following values:
79 .Pp
80 .Bl -tag -width ".Dv PROT_WRITE" -compact
81 .It Dv PROT_NONE
82 Pages may not be accessed.
83 .It Dv PROT_READ
84 Pages may be read.
85 .It Dv PROT_WRITE
86 Pages may be written.
87 .It Dv PROT_EXEC
88 Pages may be executed.
89 .El
90 .Pp
91 The
92 .Fa flags
93 parameter specifies the type of the mapped object, mapping options and
94 whether modifications made to the mapped copy of the page are private
95 to the process or are to be shared with other references.
96 Sharing, mapping type and options are specified in the
97 .Fa flags
98 argument by
99 .Em or Ns 'ing
100 the following values:
101 .Bl -tag -width ".Dv MAP_HASSEMAPHORE"
102 .It Dv MAP_ANON
103 Map anonymous memory not associated with any specific file.
104 The file descriptor used for creating
105 .Dv MAP_ANON
106 must be \-1.
107 The
108 .Fa offset
109 parameter is ignored.
110 .It Dv MAP_ANONYMOUS
111 This flag is an alias for
112 .Dv MAP_ANON
113 and is provided for compatibility.
114 .\".It Dv MAP_FILE
115 .\"Mapped from a regular file or character-special device memory.
116 .It Dv MAP_FIXED
117 Do not permit the system to select a different address than the one
118 specified.
119 If the specified address contains other mappings those mappings will
120 be replaced.
121 If the specified address cannot otherwise be used,
122 .Fn mmap
123 will fail.
124 If
125 .Dv MAP_FIXED
126 is specified,
127 .Fa addr
128 must be a multiple of the pagesize.
129 .It Dv MAP_TRYFIXED
130 Try to do a fixed mapping but fail if another mapping already exists in
131 the space instead of overwriting the mapping.
132 .Pp
133 When used with
134 .Dv MAP_STACK
135 this flag allows one
136 .Dv MAP_STACK
137 mapping to be
138 made within another (typically the master user stack), as long as
139 no pages have been faulted in the area requested.
140 .It Dv MAP_HASSEMAPHORE
141 Notify the kernel that the region may contain semaphores and that special
142 handling may be necessary.
143 .It Dv MAP_NOCORE
144 Region is not included in a core file.
145 .It Dv MAP_NOSYNC
146 Causes data dirtied via this VM map to be flushed to physical media
147 only when necessary (usually by the pager) rather than gratuitously.
148 Typically this prevents the update daemons from flushing pages dirtied
149 through such maps and thus allows efficient sharing of memory across
150 unassociated processes using a file-backed shared memory map.
151 Without
152 this option any VM pages you dirty may be flushed to disk every so often
153 (every 30-60 seconds usually) which can create performance problems if you
154 do not need that to occur (such as when you are using shared file-backed
155 mmap regions for IPC purposes).
156 Note that VM/filesystem coherency is maintained whether you use
157 .Dv MAP_NOSYNC
158 or not.
159 This option is not portable across
160 .Ux
161 platforms (yet), though some may implement the same behavior
162 by default.
163 .Pp
164 .Em WARNING !
165 Extending a file with
166 .Xr ftruncate 2 ,
167 thus creating a big hole, and then filling the hole by modifying a shared
168 .Fn mmap
169 can lead to severe file fragmentation.
170 In order to avoid such fragmentation you should always pre-allocate the
171 file's backing store by
172 .Fn write Ns ing
173 zero's into the newly extended area prior to modifying the area via your
174 .Fn mmap .
175 The fragmentation problem is especially sensitive to
176 .Dv MAP_NOSYNC
177 pages, because pages may be flushed to disk in a totally random order.
178 .Pp
179 The same applies when using
180 .Dv MAP_NOSYNC
181 to implement a file-based shared memory store.
182 It is recommended that you create the backing store by
183 .Fn write Ns ing
184 zero's to the backing file rather than
185 .Fn ftruncate Ns ing
186 it.
187 You can test file fragmentation by observing the KB/t (kilobytes per
188 transfer) results from an
189 .Dq Li iostat 1
190 while reading a large file sequentially, e.g.,\& using
191 .Dq Li dd if=filename of=/dev/null bs=32k .
192 .Pp
193 The
194 .Xr fsync 2
195 function will flush all dirty data and metadata associated with a file,
196 including dirty NOSYNC VM data, to physical media.
197 The
198 .Xr sync 8
199 command and
200 .Xr sync 2
201 system call generally do not flush dirty NOSYNC VM data.
202 The
203 .Xr msync 2
204 system call is obsolete since
205 .Bx
206 implements a coherent filesystem buffer cache.
207 However, it may be
208 used to associate dirty VM pages with filesystem buffers and thus cause
209 them to be flushed to physical media sooner rather than later.
210 .It Dv MAP_PRIVATE
211 Modifications are private.
212 .It Dv MAP_SHARED
213 Modifications are shared.
214 .It Dv MAP_STACK
215 Map the area as a stack.
216 .Dv MAP_ANON
217 is implied.
218 .Fa Offset
219 should be 0,
220 .Fa fd
221 must be -1, and
222 .Fa prot
223 should include at least
224 .Dv PROT_READ
225 and
226 .Dv PROT_WRITE .
227 This option creates
228 a memory region that grows to at most
229 .Fa len
230 bytes in size, starting from the stack top and growing down.
231 The stack top is the starting address returned by the call, plus
232 .Fa len
233 bytes.
234 The bottom of the stack at maximum growth is the starting
235 address returned by the call.
236 .Pp
237 The entire area is reserved from the point of view of other
238 .Fn mmap
239 calls, even if not faulted in yet.
240 .Pp
241 .Em WARNING !
242 We currently allow
243 .Dv MAP_STACK
244 mappings to provide a hint that points within an existing
245 .Dv MAP_STACK
246 mapping's space, and this will succeed as long as no page have been
247 faulted in the area specified, but this behavior is no longer supported
248 unless you also specify the
249 .Dv MAP_TRYFIXED
250 flag.
251 .Pp
252 Note that unless
253 .Dv MAP_FIXED
254 or
255 .Dv MAP_TRYFIXED
256 is used, you cannot count on the returned address matching the hint
257 you have provided.
258 .It Dv MAP_VPAGETABLE
259 Memory accessed via this map is not linearly mapped and will be governed
260 by a virtual page table.
261 The base address of the virtual page table may be set using
262 .Xr mcontrol 2
263 with
264 .Dv MADV_SETMAP .
265 Virtual page tables work with anonymous memory but there
266 is no way to populate the page table so for all intents and purposes
267 .Dv MAP_VPAGETABLE
268 can only be used when mapping file descriptors.
269 Since the kernel will update the
270 .Dv VPTE_M
271 bit in the virtual page table, the mapping must R+W
272 even though actual access to the memory will be properly governed by
273 the virtual page table.
274 .Pp
275 Addressable backing store is limited by the range supported in the virtual
276 page table entries.
277 The kernel may implement a page table abstraction capable
278 of addressing a larger range within the backing store then could otherwise
279 be mapped into memory.
280 .El
281 .Pp
282 The
283 .Xr close 2
284 function does not unmap pages, see
285 .Xr munmap 2
286 for further information.
287 .Pp
288 The current design does not allow a process to specify the location of
289 swap space.
290 In the future we may define an additional mapping type,
291 .Dv MAP_SWAP ,
292 in which
293 the file descriptor argument specifies a file or device to which swapping
294 should be done.
295 .Sh RETURN VALUES
296 Upon successful completion,
297 .Fn mmap
298 returns a pointer to the mapped region.
299 Otherwise, a value of
300 .Dv MAP_FAILED
301 is returned and
302 .Va errno
303 is set to indicate the error.
304 .Sh ERRORS
305 .Fn Mmap
306 will fail if:
307 .Bl -tag -width Er
308 .It Bq Er EACCES
309 The flag
310 .Dv PROT_READ
311 was specified as part of the
312 .Fa prot
313 parameter and
314 .Fa fd
315 was not open for reading.
316 The flags
317 .Dv MAP_SHARED
318 and
319 .Dv PROT_WRITE
320 were specified as part of the
321 .Fa flags
322 and
323 .Fa prot
324 parameters and
325 .Fa fd
326 was not open for writing.
327 .It Bq Er EBADF
328 .Fa fd
329 is not a valid open file descriptor.
330 .It Bq Er EINVAL
331 .Dv MAP_FIXED
332 was specified and the
333 .Fa addr
334 parameter was not page aligned, or part of the desired address space
335 resides out of the valid address space for a user process.
336 .It Bq Er EINVAL
337 .Fa Len
338 was negative.
339 .It Bq Er EINVAL
340 .Dv MAP_ANON
341 was specified and the
342 .Fa fd
343 parameter was not -1.
344 .It Bq Er EINVAL
345 .Dv MAP_ANON
346 has not been specified and
347 .Fa fd
348 did not reference a regular or character special file.
349 .It Bq Er EINVAL
350 .Fa Offset
351 was not page-aligned.
352 .It Bq Er ENOMEM
353 .Dv MAP_FIXED
354 was specified and the
355 .Fa addr
356 parameter wasn't available.
357 .Dv MAP_ANON
358 was specified and insufficient memory was available.
359 The system has reached the per-process mmap limit specified in the
360 .Va vm.max_proc_mmap
361 sysctl.
362 .El
363 .Sh SEE ALSO
364 .Xr madvise 2 ,
365 .Xr mincore 2 ,
366 .Xr mlock 2 ,
367 .Xr mprotect 2 ,
368 .Xr msync 2 ,
369 .Xr munlock 2 ,
370 .Xr munmap 2 ,
371 .Xr getpagesize 3