blob: 7994aa9914c1317dfc7d103caa21d50e27f4bca3 [file] [log] [blame]
Peng Xue1e7e382017-02-24 01:30:16 -08001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/**
18 * @addtogroup Memory
19 * @{
20 */
21
22/**
23 * @file sharedmem.h
Elliott Hughes8a6843d2019-11-12 11:54:46 -080024 * @brief Shared memory buffers that can be shared between processes.
Peng Xue1e7e382017-02-24 01:30:16 -080025 */
26
27#ifndef ANDROID_SHARED_MEMORY_H
28#define ANDROID_SHARED_MEMORY_H
29
30#include <stddef.h>
Ryan Prichard2fb1d472018-07-19 20:32:19 -070031#include <sys/cdefs.h>
Peng Xue1e7e382017-02-24 01:30:16 -080032
33/******************************************************************
34 *
35 * IMPORTANT NOTICE:
36 *
37 * This file is part of Android's set of stable system headers
38 * exposed by the Android NDK (Native Development Kit).
39 *
40 * Third-party source AND binary code relies on the definitions
41 * here to be FROZEN ON ALL UPCOMING PLATFORM RELEASES.
42 *
43 * - DO NOT MODIFY ENUMS (EXCEPT IF YOU ADD NEW 32-BIT VALUES)
44 * - DO NOT MODIFY CONSTANTS OR FUNCTIONAL MACROS
45 * - DO NOT CHANGE THE SIGNATURE OF FUNCTIONS IN ANY WAY
46 * - DO NOT CHANGE THE LAYOUT OR SIZE OF STRUCTURES
47 */
48
Peng Xue1e7e382017-02-24 01:30:16 -080049#ifdef __cplusplus
50extern "C" {
51#endif
52
Peng Xue1e7e382017-02-24 01:30:16 -080053/**
54 * Create a shared memory region.
55 *
56 * Create shared memory region and returns an file descriptor. The resulting file descriptor can be
57 * mmap'ed to process memory space with PROT_READ | PROT_WRITE | PROT_EXEC. Access to shared memory
58 * region can be restricted with {@link ASharedMemory_setProt}.
59 *
60 * Use close() to release the shared memory region.
61 *
Elliott Hughes8a6843d2019-11-12 11:54:46 -080062 * Use {@link android.os.ParcelFileDescriptor} to pass the file descriptor to
John Reck58e18f92019-11-13 10:44:52 -080063 * another process. File descriptors may also be sent to other processes over a Unix domain
64 * socket with sendmsg and SCM_RIGHTS. See sendmsg(3) and cmsg(3) man pages for more information.
Elliott Hughes8a6843d2019-11-12 11:54:46 -080065 *
Elliott Hughesf74f0b72020-09-03 11:02:17 -070066 * If you intend to share this file descriptor with a child process after
67 * calling exec(3), note that you will need to use fcntl(2) with FD_SETFD
68 * to clear the FD_CLOEXEC flag for this to work on all versions of Android.
69 *
Elliott Hughes0c757122018-07-31 12:10:19 -070070 * Available since API level 26.
71 *
Peng Xue1e7e382017-02-24 01:30:16 -080072 * \param name an optional name.
73 * \param size size of the shared memory region
Elliott Hughes8a6843d2019-11-12 11:54:46 -080074 * \return file descriptor that denotes the shared memory; -1 and sets errno on failure, or -EINVAL if the error is that size was 0.
Peng Xue1e7e382017-02-24 01:30:16 -080075 */
Elliott Hughes78e548d2018-06-18 12:28:46 -070076int ASharedMemory_create(const char *name, size_t size) __INTRODUCED_IN(26);
Peng Xue1e7e382017-02-24 01:30:16 -080077
78/**
79 * Get the size of the shared memory region.
80 *
Elliott Hughes0c757122018-07-31 12:10:19 -070081 * Available since API level 26.
82 *
Peng Xue1e7e382017-02-24 01:30:16 -080083 * \param fd file descriptor of the shared memory region
84 * \return size in bytes; 0 if fd is not a valid shared memory file descriptor.
85 */
Elliott Hughes78e548d2018-06-18 12:28:46 -070086size_t ASharedMemory_getSize(int fd) __INTRODUCED_IN(26);
Peng Xue1e7e382017-02-24 01:30:16 -080087
88/**
89 * Restrict access of shared memory region.
90 *
91 * This function restricts access of a shared memory region. Access can only be removed. The effect
92 * applies globally to all file descriptors in all processes across the system that refer to this
93 * shared memory region. Existing memory mapped regions are not affected.
94 *
95 * It is a common use case to create a shared memory region, map it read/write locally to intialize
96 * content, and then send the shared memory to another process with read only access. Code example
Quddus Chong51633572017-05-09 10:39:23 -070097 * as below (error handling omited).
Peng Xue1e7e382017-02-24 01:30:16 -080098 *
Peng Xue1e7e382017-02-24 01:30:16 -080099 *
Quddus Chong51633572017-05-09 10:39:23 -0700100 * int fd = ASharedMemory_create("memory", 128);
Peng Xue1e7e382017-02-24 01:30:16 -0800101 *
Quddus Chong51633572017-05-09 10:39:23 -0700102 * // By default it has PROT_READ | PROT_WRITE | PROT_EXEC.
Phong Trane0df58f2018-10-14 09:39:10 +0700103 * size_t memSize = ASharedMemory_getSize(fd);
104 * char *buffer = (char *) mmap(NULL, memSize, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
Peng Xue1e7e382017-02-24 01:30:16 -0800105 *
Quddus Chong51633572017-05-09 10:39:23 -0700106 * strcpy(buffer, "This is an example."); // trivially initialize content
Peng Xue1e7e382017-02-24 01:30:16 -0800107 *
Quddus Chong51633572017-05-09 10:39:23 -0700108 * // limit access to read only
109 * ASharedMemory_setProt(fd, PROT_READ);
110 *
111 * // share fd with another process here and the other process can only map with PROT_READ.
Peng Xue1e7e382017-02-24 01:30:16 -0800112 *
Elliott Hughes0c757122018-07-31 12:10:19 -0700113 * Available since API level 26.
114 *
Peng Xue1e7e382017-02-24 01:30:16 -0800115 * \param fd file descriptor of the shared memory region.
116 * \param prot any bitwise-or'ed combination of PROT_READ, PROT_WRITE, PROT_EXEC denoting
117 * updated access. Note access can only be removed, but not added back.
Elliott Hughes8a6843d2019-11-12 11:54:46 -0800118 * \return 0 for success, -1 and sets errno on failure.
Peng Xue1e7e382017-02-24 01:30:16 -0800119 */
Elliott Hughes78e548d2018-06-18 12:28:46 -0700120int ASharedMemory_setProt(int fd, int prot) __INTRODUCED_IN(26);
Peng Xue1e7e382017-02-24 01:30:16 -0800121
Peng Xue1e7e382017-02-24 01:30:16 -0800122#ifdef __cplusplus
123};
124#endif
125
126#endif // ANDROID_SHARED_MEMORY_H
127
128/** @} */