blob: 611e2448b30c2f139aea06540c96bf44deb723c7 [file] [log] [blame]
Tom Cherry91094e02018-01-02 11:50: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#include <getopt.h>
18#include <sys/system_properties.h>
19
20#include <iostream>
21#include <string>
22#include <vector>
23
24#include <android-base/properties.h>
25#include <property_info_parser/property_info_parser.h>
26
27using android::base::GetProperty;
28using android::properties::PropertyInfoAreaFile;
29
30PropertyInfoAreaFile property_info_file;
31
32void PrintAllProperties(bool print_property_context) {
33 std::vector<std::pair<std::string, std::string>> properties;
34 __system_property_foreach(
35 [](const prop_info* pi, void* cookie) {
36 __system_property_read_callback(
37 pi,
38 [](void* cookie, const char* name, const char* value, unsigned) {
39 auto properties =
40 reinterpret_cast<std::vector<std::pair<std::string, std::string>>*>(cookie);
41 properties->emplace_back(name, value);
42 },
43 cookie);
44 },
45 &properties);
46
47 std::sort(properties.begin(), properties.end());
48
49 if (print_property_context) {
50 for (auto& [name, value] : properties) {
51 const char* context = nullptr;
52 property_info_file->GetPropertyInfo(name.c_str(), &context, nullptr);
53 value = context;
54 }
55 }
56
57 for (const auto& [name, value] : properties) {
58 std::cout << "[" << name << "]: [" << value << "]" << std::endl;
59 }
60}
61
62void PrintProperty(const char* name, const char* default_value, bool print_property_context) {
63 if (print_property_context) {
64 const char* context = nullptr;
65 property_info_file->GetPropertyInfo(name, &context, nullptr);
66 std::cout << context << std::endl;
67 } else {
68 std::cout << GetProperty(name, default_value) << std::endl;
69 }
70}
71
72extern "C" int getprop_main(int argc, char** argv) {
73 bool print_property_context = false;
74
75 while (true) {
76 static const struct option long_options[] = {
77 {"help", no_argument, nullptr, 'h'},
78 {nullptr, 0, nullptr, 0},
79 };
80
81 int arg = getopt_long(argc, argv, "Z", long_options, nullptr);
82
83 if (arg == -1) {
84 break;
85 }
86
87 switch (arg) {
88 case 'h':
89 std::cout << "usage: getprop [-Z] [NAME [DEFAULT]]\n\n"
90 "Gets an Android system property, or lists them all.\n"
91 "Use -Z to return the property context instead of the property value\n"
92 << std::endl;
93 return 0;
94 case 'Z':
95 print_property_context = true;
96 break;
97 case '?':
98 return -1;
99 default:
100 std::cerr << "getprop: getopt returned invalid result: " << arg << std::endl;
101 return -1;
102 }
103 }
104
105 if (print_property_context) {
106 property_info_file.LoadDefaultPath();
107 if (!property_info_file) {
108 std::cerr << "Unable to load property info file" << std::endl;
109 return -1;
110 }
111 }
112
113 if (optind >= argc) {
114 PrintAllProperties(print_property_context);
115 return 0;
116 }
117
118 if (optind < argc - 2) {
119 std::cerr << "getprop: Max 2 arguments (see \"getprop --help\")" << std::endl;
120 return -1;
121 }
122
123 PrintProperty(argv[optind], (optind == argc - 1) ? "" : argv[optind + 1],
124 print_property_context);
125
126 return 0;
127}