boot_serial: Add optional processing of PERUSER group

The commit adds optional processing of MGMT_GROUP_ID_PERUSER,
as defined by mcumgr library, and above; the processing requires
systems to provide own functions as these groups are system
specific.

Signed-off-by: Dominik Ermel <dominik.ermel@nordicsemi.no>
diff --git a/boot/zephyr/Kconfig b/boot/zephyr/Kconfig
index dde97dd..8ef5345 100644
--- a/boot/zephyr/Kconfig
+++ b/boot/zephyr/Kconfig
@@ -552,6 +552,16 @@
 	  This option specifies the name of UART device to be used for
 	  serial recovery.
 
+config ENABLE_MGMT_PERUSER
+	bool "Enables system specific mcumgr commands"
+	depends on BOOT_SERIAL_UART
+	help
+	  The option enables processing of system specific mcumgr commands;
+	  system specific commands are within group MGMT_GROUP_ID_PERUSER (64)
+	  and above, as defined within mcumgr library.
+	  These are system specific command and system specific implementation
+	  function is required to process these commands.
+
 endif # MCUBOOT_SERIAL
 
 config BOOT_INTR_VEC_RELOC
diff --git a/boot/zephyr/boot_serial_extensions.c b/boot/zephyr/boot_serial_extensions.c
new file mode 100644
index 0000000..9983f62
--- /dev/null
+++ b/boot/zephyr/boot_serial_extensions.c
@@ -0,0 +1,46 @@
+/*
+ * Copyright (c) 2021 Nordic Semiconductor ASA
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ */
+
+#include <zephyr.h>
+#include <drivers/flash.h>
+#include <mgmt/mcumgr/zephyr_groups.h>
+
+#include <flash_map_backend/flash_map_backend.h>
+#include <sysflash/sysflash.h>
+
+#include "bootutil/bootutil_log.h"
+#include "../boot_serial/src/boot_serial_priv.h"
+#include "../boot_serial/src/cbor_encode.h"
+
+MCUBOOT_LOG_MODULE_DECLARE(mcuboot);
+
+int bs_peruser_system_specific(const struct nmgr_hdr *hdr, const char *buffer,
+                               int len, cbor_state_t *cs)
+{
+    const struct flash_area *fa;
+    int rc = flash_area_open(FLASH_AREA_ID(storage), &fa);
+
+    if (rc < 0) {
+        LOG_ERR("failed to open flash area");
+    } else {
+	rc = flash_area_erase(fa, 0, FLASH_AREA_SIZE(storage));
+	if (rc < 0) {
+		LOG_ERR("failed to erase flash area");
+	}
+	flash_area_close(fa);
+    }
+
+    map_start_encode(cs, 10);
+    tstrx_put(cs, "rc");
+    if (rc != 0) {
+        uintx32_put(cs, MGMT_ERR_EUNKNOWN);
+    } else {
+        uintx32_put(cs, 0);
+    }
+    map_end_encode(cs, 10);
+
+    return rc;
+}