2016-08-17 03:14:26 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 The Android Open Source Project
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/shm.h>
|
|
|
|
|
2018-11-13 16:35:21 +01:00
|
|
|
#include <android-base/file.h>
|
|
|
|
#include <gtest/gtest.h>
|
2016-08-17 03:14:26 +02:00
|
|
|
|
|
|
|
TEST(sys_shm, smoke) {
|
2016-08-27 03:33:19 +02:00
|
|
|
if (shmctl(-1, IPC_STAT, nullptr) == -1 && errno == ENOSYS) {
|
2019-03-09 00:20:23 +01:00
|
|
|
GTEST_SKIP() << "no <sys/shm.h> support in this kernel";
|
2016-08-27 03:33:19 +02:00
|
|
|
}
|
|
|
|
|
2016-08-17 03:14:26 +02:00
|
|
|
// Create a segment.
|
|
|
|
TemporaryDir dir;
|
2018-11-13 16:35:21 +01:00
|
|
|
key_t key = ftok(dir.path, 1);
|
2016-08-17 03:14:26 +02:00
|
|
|
int id = shmget(key, 1234, IPC_CREAT|0666);
|
|
|
|
ASSERT_NE(id, -1);
|
|
|
|
|
|
|
|
// Check segment info.
|
|
|
|
shmid_ds ds;
|
|
|
|
memset(&ds, 0, sizeof(ds));
|
|
|
|
ASSERT_EQ(0, shmctl(id, IPC_STAT, &ds));
|
|
|
|
ASSERT_EQ(1234U, ds.shm_segsz);
|
|
|
|
|
|
|
|
// Attach.
|
2018-08-03 02:31:13 +02:00
|
|
|
void* p = shmat(id, nullptr, SHM_RDONLY);
|
2016-08-17 03:14:26 +02:00
|
|
|
ASSERT_NE(p, nullptr);
|
|
|
|
|
|
|
|
// Detach.
|
|
|
|
ASSERT_EQ(0, shmdt(p));
|
|
|
|
|
|
|
|
// Destroy the segment.
|
2018-08-03 02:31:13 +02:00
|
|
|
ASSERT_EQ(0, shmctl(id, IPC_RMID, nullptr));
|
2016-08-17 03:14:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(sys_shm, shmat_failure) {
|
|
|
|
errno = 0;
|
2018-08-03 02:31:13 +02:00
|
|
|
ASSERT_EQ(reinterpret_cast<void*>(-1), shmat(-1, nullptr, SHM_RDONLY));
|
2016-08-27 03:33:19 +02:00
|
|
|
ASSERT_TRUE(errno == EINVAL || errno == ENOSYS);
|
2016-08-17 03:14:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(sys_shm, shmctl_failure) {
|
|
|
|
errno = 0;
|
|
|
|
ASSERT_EQ(-1, shmctl(-1, IPC_STAT, nullptr));
|
2016-08-27 03:33:19 +02:00
|
|
|
ASSERT_TRUE(errno == EINVAL || errno == ENOSYS);
|
2016-08-17 03:14:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(sys_shm, shmdt_failure) {
|
2023-05-23 21:13:13 +02:00
|
|
|
#pragma clang diagnostic push
|
|
|
|
#pragma clang diagnostic ignored "-Wnonnull"
|
2016-08-17 03:14:26 +02:00
|
|
|
errno = 0;
|
|
|
|
ASSERT_EQ(-1, shmdt(nullptr));
|
2016-08-27 03:33:19 +02:00
|
|
|
ASSERT_TRUE(errno == EINVAL || errno == ENOSYS);
|
2023-05-23 21:13:13 +02:00
|
|
|
#pragma clang diagnostic pop
|
2016-08-17 03:14:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(sys_shm, shmget_failure) {
|
|
|
|
errno = 0;
|
|
|
|
ASSERT_EQ(-1, shmget(-1, 1234, 0));
|
2016-08-27 03:33:19 +02:00
|
|
|
ASSERT_TRUE(errno == ENOENT || errno == ENOSYS);
|
2016-08-17 03:14:26 +02:00
|
|
|
}
|