blob: 7d70aa61fef173c8eee0f8b1765ff737b681e619 [file] [log] [blame]
Kenny Root2a54e5e2012-09-13 10:52:52 -07001/*
2 * Copyright (C) 2012 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#include <gtest/gtest.h>
18
19#include <sys/types.h>
20#include <sys/cdefs.h>
21#include <pwd.h>
22#include <errno.h>
23#include <limits.h>
24#include <unistd.h>
25
Christopher Ferrisf04935c2013-12-20 18:43:21 -080026#if defined(__BIONIC__)
Kenny Root2a54e5e2012-09-13 10:52:52 -070027#define CHECK_GETPWNAM_FOR(username, uid, uid_type) \
28 SCOPED_TRACE(username); \
29 ASSERT_NO_FATAL_FAILURE(check_getpwnam(username, uid, uid_type));
30
31typedef enum {
32 TYPE_SYSTEM,
33 TYPE_APP
34} uid_type_t;
35
Elliott Hughesac184b22012-09-26 14:20:22 -070036static void check_getpwnam(const char* username, uid_t uid, uid_type_t uid_type) {
Kenny Root2a54e5e2012-09-13 10:52:52 -070037 errno = 0;
38 passwd* pwd = getpwuid(uid);
39 ASSERT_TRUE(pwd != NULL);
Elliott Hughes5e3fc432013-02-11 16:36:48 -080040 ASSERT_EQ(0, errno);
Kenny Root2a54e5e2012-09-13 10:52:52 -070041 EXPECT_STREQ(username, pwd->pw_name);
42 EXPECT_EQ(uid, pwd->pw_uid);
43 EXPECT_EQ(uid, pwd->pw_gid);
44
45 if (uid_type == TYPE_SYSTEM) {
46 EXPECT_STREQ("/", pwd->pw_dir);
47 } else if (uid_type == TYPE_APP) {
48 EXPECT_STREQ("/data", pwd->pw_dir);
49 }
50
51 EXPECT_STREQ("/system/bin/sh", pwd->pw_shell);
52}
Christopher Ferrisf04935c2013-12-20 18:43:21 -080053#else
54#define CHECK_GETPWNAM_FOR(username, uid, uid_type) \
55 GTEST_LOG_(INFO) << "This test does nothing.\n";
56#endif
Kenny Root2a54e5e2012-09-13 10:52:52 -070057
58TEST(getpwnam, system_id_root) {
59 CHECK_GETPWNAM_FOR("root", 0, TYPE_SYSTEM);
60}
61
62TEST(getpwnam, system_id_system) {
63 CHECK_GETPWNAM_FOR("system", 1000, TYPE_SYSTEM);
64}
65
66TEST(getpwnam, app_id_radio) {
67 CHECK_GETPWNAM_FOR("radio", 1001, TYPE_SYSTEM);
68}
69
70TEST(getpwnam, app_id_nobody) {
71 CHECK_GETPWNAM_FOR("nobody", 9999, TYPE_SYSTEM);
72}
73
Kenny Root8a05a012012-09-13 14:31:50 -070074TEST(getpwnam, app_id_all_a0) {
75 CHECK_GETPWNAM_FOR("all_a0", 50000, TYPE_APP);
76}
77
78TEST(getpwnam, app_id_u1_a40000) {
79 CHECK_GETPWNAM_FOR("u1_a40000", 150000, TYPE_APP);
80}
81
Kenny Root2a54e5e2012-09-13 10:52:52 -070082TEST(getpwnam, app_id_u0_a0) {
83 CHECK_GETPWNAM_FOR("u0_a0", 10000, TYPE_APP);
84}
85
86TEST(getpwnam, app_id_u0_a1234) {
87 CHECK_GETPWNAM_FOR("u0_a1234", 11234, TYPE_APP);
88}
89
90TEST(getpwnam, app_id_u0_a9999) {
91 CHECK_GETPWNAM_FOR("u0_a9999", 19999, TYPE_APP);
92}
93
94// nonsensical, but expected
95TEST(getpwnam, app_id_u1_root) {
96 CHECK_GETPWNAM_FOR("u1_root", 100000, TYPE_SYSTEM);
97}
98
99TEST(getpwnam, app_id_u1_radio) {
100 CHECK_GETPWNAM_FOR("u1_radio", 101001, TYPE_SYSTEM);
101}
102
103TEST(getpwnam, app_id_u1_a0) {
104 CHECK_GETPWNAM_FOR("u1_a0", 110000, TYPE_APP);
105}
106
107TEST(getpwnam, app_id_u1_i0) {
108 CHECK_GETPWNAM_FOR("u1_i0", 199000, TYPE_APP);
109}