Merge "update gps sdk 147.20.23.566805" into udc-dev
diff --git a/dauntless/gsc.mk b/dauntless/gsc.mk
index 326fc6d..892f71a 100644
--- a/dauntless/gsc.mk
+++ b/dauntless/gsc.mk
@@ -1,5 +1,6 @@
# Dauntless
BOARD_VENDOR_SEPOLICY_DIRS += device/google/gs-common/dauntless/sepolicy
+ifneq ($(wildcard vendor),)
PRODUCT_SOONG_NAMESPACES += vendor/google_nos/init/dauntless
PRODUCT_PACKAGES += \
@@ -19,3 +20,4 @@
pwntest \
nugget_targeted_tests \
CitadelProvision
+endif
\ No newline at end of file
diff --git a/gear/dumpstate/Dumpstate.cpp b/gear/dumpstate/Dumpstate.cpp
index 1e4d982..8abc237 100644
--- a/gear/dumpstate/Dumpstate.cpp
+++ b/gear/dumpstate/Dumpstate.cpp
@@ -154,7 +154,11 @@
int64_t in_timeoutMillis) {
// Unused arguments.
(void) in_timeoutMillis;
- (void) in_mode;
+
+ if (in_mode < IDumpstateDevice::DumpstateMode::FULL || in_mode > IDumpstateDevice::DumpstateMode::PROTO) {
+ ALOGE("Invalid mode: %d\n", in_mode);
+ return ndk::ScopedAStatus::fromExceptionCodeWithMessage(EX_ILLEGAL_ARGUMENT, "Invalid mode");
+ }
if (in_fds.size() < 1) {
ALOGE("no FDs\n");
@@ -171,6 +175,7 @@
if (in_fds.size() < 2) {
ALOGE("no FD for dumpstate_board binary\n");
+ dumpTextSection(fd, "");
} else {
int fd_bin = in_fds[1].get();
dumpLogSection(fd, fd_bin);
diff --git a/gear/dumpstate/sepolicy/file.te b/gear/dumpstate/sepolicy/file.te
index 6c686a0..1777353 100644
--- a/gear/dumpstate/sepolicy/file.te
+++ b/gear/dumpstate/sepolicy/file.te
@@ -1,3 +1,4 @@
+# dumpstate packing directory
type radio_vendor_data_file, file_type, data_file_type;
userdebug_or_eng(`
typeattribute radio_vendor_data_file mlstrustedobject;
diff --git a/gear/dumpstate/sepolicy/file_contexts b/gear/dumpstate/sepolicy/file_contexts
index 5c65e43..086b481 100644
--- a/gear/dumpstate/sepolicy/file_contexts
+++ b/gear/dumpstate/sepolicy/file_contexts
@@ -1,3 +1,4 @@
+# generic dumpstate for pixel
/vendor/bin/hw/android\.hardware\.dumpstate-service u:object_r:hal_dumpstate_default_exec:s0
/data/vendor/radio(/.*)? u:object_r:radio_vendor_data_file:s0
diff --git a/gear/dumpstate/sepolicy/hal_dumpstate_default.te b/gear/dumpstate/sepolicy/hal_dumpstate_default.te
index 3e4db45..06ebb75 100644
--- a/gear/dumpstate/sepolicy/hal_dumpstate_default.te
+++ b/gear/dumpstate/sepolicy/hal_dumpstate_default.te
@@ -1,5 +1,7 @@
+# required permission to use tar to pack dumpsate_board.bin
allow hal_dumpstate_default vendor_toolbox_exec:file execute_no_trans;
allow hal_dumpstate_default radio_vendor_data_file:dir create_dir_perms;
allow hal_dumpstate_default radio_vendor_data_file:file create_file_perms;
allow hal_dumpstate_default shell_data_file:file getattr;
+set_prop(hal_dumpstate_default, vendor_logger_prop)
diff --git a/gear/dumpstate/sepolicy/property.te b/gear/dumpstate/sepolicy/property.te
new file mode 100644
index 0000000..c6f5a4f
--- /dev/null
+++ b/gear/dumpstate/sepolicy/property.te
@@ -0,0 +1,3 @@
+# verbose property
+vendor_internal_prop(vendor_logger_prop)
+
diff --git a/gear/dumpstate/sepolicy/property_contexts b/gear/dumpstate/sepolicy/property_contexts
new file mode 100644
index 0000000..5ead16f
--- /dev/null
+++ b/gear/dumpstate/sepolicy/property_contexts
@@ -0,0 +1,3 @@
+# verbose property name
+persist.vendor.verbose_logging_enabled u:object_r:vendor_logger_prop:s0
+
diff --git a/gxp/dump_gxp.cpp b/gxp/dump_gxp.cpp
index 80730fa..5a0bb3b 100644
--- a/gxp/dump_gxp.cpp
+++ b/gxp/dump_gxp.cpp
@@ -17,10 +17,11 @@
#include <android-base/properties.h>
#include <android-base/file.h>
-#define maxGxpDebugDumps 8
+#define maxGxpDebugDumps 3
int main() {
- if(::android::base::GetBoolProperty("vendor.gxp.attach_to_bugreport", false)) {
+ /* TODO(b/277094681): Set default value to false around device beta milestone. */
+ if(::android::base::GetBoolProperty("vendor.gxp.attach_to_bugreport", true)) {
std::string outputDir = concatenatePath(BUGREPORT_PACKING_DIR, "gxp_ssrdump");
printf("Creating %s", outputDir.c_str());
if (mkdir(outputDir.c_str(), 0777) == -1) {
diff --git a/wlan/Android.bp b/wlan/Android.bp
new file mode 100644
index 0000000..d8103e5
--- /dev/null
+++ b/wlan/Android.bp
@@ -0,0 +1,18 @@
+package {
+ default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+cc_binary {
+ name: "dump_wlan",
+ srcs: ["dump_wlan.cpp"],
+ cflags: [
+ "-Wall",
+ "-Wextra",
+ "-Werror",
+ ],
+ shared_libs: [
+ "libdump",
+ ],
+ vendor: true,
+ relative_install_path: "dump",
+}
diff --git a/wlan/dump.mk b/wlan/dump.mk
new file mode 100644
index 0000000..1d90d22
--- /dev/null
+++ b/wlan/dump.mk
@@ -0,0 +1,4 @@
+BOARD_VENDOR_SEPOLICY_DIRS += device/google/gs-common/wlan/sepolicy/
+
+PRODUCT_PACKAGES_DEBUG += dump_wlan
+
diff --git a/wlan/dump_wlan.cpp b/wlan/dump_wlan.cpp
new file mode 100644
index 0000000..86d3fc7
--- /dev/null
+++ b/wlan/dump_wlan.cpp
@@ -0,0 +1,27 @@
+/*
+ * Copyright 2023 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+//#include <stdio.h>
+#include <dump/pixel_dump.h>
+
+int main() {
+ //This line is required to avoid output out of order
+ //setbuf(stdout, NULL);
+ dumpFileContent("WLAN FW Log Symbol Table", "/vendor/firmware/Data.msc");
+ //runCommand("WLAN TWT Dump", "cat /sys/wlan_ptracker/twt/*");
+ return 0;
+}
+
diff --git a/wlan/sepolicy/dump_wlan.te b/wlan/sepolicy/dump_wlan.te
new file mode 100644
index 0000000..983d71c
--- /dev/null
+++ b/wlan/sepolicy/dump_wlan.te
@@ -0,0 +1,4 @@
+
+pixel_bugreport(dump_wlan)
+
+
diff --git a/wlan/sepolicy/file_contexts b/wlan/sepolicy/file_contexts
new file mode 100644
index 0000000..318a610
--- /dev/null
+++ b/wlan/sepolicy/file_contexts
@@ -0,0 +1,3 @@
+
+/vendor/bin/dump/dump_wlan u:object_r:dump_wlan_exec:s0
+