7 Commits

Author SHA1 Message Date
Maximilian Luz
14cb1ee69f rmtfs: Fix command line argument parsing for '-o' optarg
Commit 2ee01bf ("storage: Try opening the slot-suffixed partition")
introduced a bug where option '-o' is incorrectly specified as having no
argument. Therefore, passing -o with a path incorrectly sets that path
to the default '/boot' one as optarg evaluates to NULL. Fix this by
telling getopt that we expect an argument.

Fixes: 2ee01bf ("storage: Try opening the slot-suffixed partition")
Signed-off-by: Maximilian Luz <luzmaximilian@gmail.com>
2026-01-23 20:11:07 -06:00
Dmitry Baryshkov
f9847a777c Merge pull request #27 from quic-kdybcio/topic/slotsuffix
storage: Try opening the slot-suffixed partition
2025-12-23 04:55:11 +02:00
Konrad Dybcio
f7566e4c82 Merge pull request #28 from z3ntu/modem_study
storage: Add modem_study into partition_table
2025-09-26 13:41:45 +02:00
Luca Weiss
27b3a6f00f storage: Add modem_study into partition_table
The partition /boot/modem_study needs to be served on the Milos/SM7635
Fairphone (Gen. 6) smartphone.

Signed-off-by: Luca Weiss <luca.weiss@fairphone.com>
2025-07-28 16:35:04 +02:00
Konrad Dybcio
2ee01bf752 storage: Try opening the slot-suffixed partition
Some devices ship 2 copies of remote partitions (see e.g. #22), which
the current code can't cope with.

Add parsing of a slot suffix (via '-S', single character) and if
passed, retry opening partition (via a partlabel) with it.

Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
2025-07-02 12:58:29 +02:00
Konrad Dybcio
586372e575 Merge pull request #26 from quic-kdybcio/topic/formatspecifier
sharedmem: Fix build warning on 32-bit arm
2025-06-30 17:39:29 +02:00
Konrad Dybcio
19d1acb728 sharedmem: Fix build warning on 32-bit arm
Format specifiers won't stop biting.

Closes: https://github.com/linux-msm/rmtfs/issues/25
Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
2025-06-30 17:35:31 +02:00
4 changed files with 61 additions and 26 deletions

19
rmtfs.c
View File

@@ -27,6 +27,7 @@
static struct rmtfs_mem *rmem; static struct rmtfs_mem *rmem;
static sig_atomic_t sig_int_count; static sig_atomic_t sig_int_count;
static char slot_suffix[SLOT_SUFFIX_LEN];
static bool dbgprintf_enabled; static bool dbgprintf_enabled;
static void dbgprintf(const char *fmt, ...) static void dbgprintf(const char *fmt, ...)
@@ -69,7 +70,7 @@ static void rmtfs_open(int sock, const struct qrtr_packet *pkt)
goto respond; goto respond;
} }
rmtfd = storage_open(pkt->node, req.path); rmtfd = storage_open(pkt->node, req.path, slot_suffix);
if (!rmtfd) { if (!rmtfd) {
qmi_result_error(&resp.result, QMI_RMTFS_ERR_INTERNAL); qmi_result_error(&resp.result, QMI_RMTFS_ERR_INTERNAL);
goto respond; goto respond;
@@ -504,7 +505,7 @@ int main(int argc, char **argv)
int option; int option;
const char *storage_root = NULL; const char *storage_root = NULL;
while ((option = getopt(argc, argv, "o:Prsv")) != -1) { while ((option = getopt(argc, argv, "o:S:Prsv")) != -1) {
switch (option) { switch (option) {
/* /*
* -o sets the directory where EFS images are stored, * -o sets the directory where EFS images are stored,
@@ -535,6 +536,20 @@ int main(int argc, char **argv)
break; break;
/* Partlabel slot suffix on A/B devices */
case 'S':
if (strnlen(optarg, 1 + 1) != 1) {
fprintf(stderr, "Couldn't parse slot name (too long?)\n");
return -1;
}
ret = snprintf(slot_suffix, SLOT_SUFFIX_LEN, "_%s", optarg);
if (ret != SLOT_SUFFIX_LEN - 1)
return -1;
dbgprintf("Using slot %s\n", slot_suffix);
break;
/* -v is for verbose */ /* -v is for verbose */
case 'v': case 'v':
dbgprintf_enabled = 1; dbgprintf_enabled = 1;

View File

@@ -26,7 +26,8 @@ ssize_t rmtfs_mem_write(struct rmtfs_mem *rmem, unsigned long phys_address, cons
struct rmtfd; struct rmtfd;
int storage_init(const char *storage_root, bool read_only, bool use_partitions); int storage_init(const char *storage_root, bool read_only, bool use_partitions);
struct rmtfd *storage_open(unsigned node, const char *path); #define SLOT_SUFFIX_LEN (2 + 1) /* "_a" or "_b", null-terminated */
struct rmtfd *storage_open(unsigned node, const char *path, const char *slot_suffix);
struct rmtfd *storage_get(unsigned node, int caller_id); struct rmtfd *storage_get(unsigned node, int caller_id);
void storage_close(struct rmtfd *rmtfd); void storage_close(struct rmtfd *rmtfd);
int storage_get_caller_id(const struct rmtfd *rmtfd); int storage_get_caller_id(const struct rmtfd *rmtfd);

View File

@@ -4,6 +4,7 @@
#include <dirent.h> #include <dirent.h>
#include <errno.h> #include <errno.h>
#include <fcntl.h> #include <fcntl.h>
#include <inttypes.h>
#ifndef ANDROID #ifndef ANDROID
#include <libudev.h> #include <libudev.h>
#else #else
@@ -322,7 +323,7 @@ int64_t rmtfs_mem_alloc(struct rmtfs_mem *rmem, size_t alloc_size)
{ {
if (alloc_size > rmem->size) { if (alloc_size > rmem->size) {
fprintf(stderr, fprintf(stderr,
"[RMTFS] rmtfs shared memory not large enough for allocation request 0x%zx vs 0x%lx\n", "[RMTFS] rmtfs shared memory not large enough for allocation request 0x%zx vs %" PRIu64 "\n",
alloc_size, rmem->size); alloc_size, rmem->size);
return -EINVAL; return -EINVAL;
} }

View File

@@ -41,6 +41,7 @@ static const struct partition partition_table[] = {
{ "/boot/modem_fs2", "modem_fs2", "modemst2" }, { "/boot/modem_fs2", "modem_fs2", "modemst2" },
{ "/boot/modem_fsc", "modem_fsc", "fsc" }, { "/boot/modem_fsc", "modem_fsc", "fsc" },
{ "/boot/modem_fsg", "modem_fsg", "fsg" }, { "/boot/modem_fsg", "modem_fsg", "fsg" },
{ "/boot/modem_study", "modem_study", "study" },
{ "/boot/modem_tunning", "modem_tunning", "tunning" }, { "/boot/modem_tunning", "modem_tunning", "tunning" },
{ "/boot/modem_tng", "modem_tng", "tunning" }, { "/boot/modem_tng", "modem_tng", "tunning" },
{} {}
@@ -74,16 +75,43 @@ int storage_init(const char *storage_root, bool read_only, bool use_partitions)
return 0; return 0;
} }
struct rmtfd *storage_open(unsigned node, const char *path) static int fd_open(struct rmtfd *rmtfd, const char *fspath, const struct partition *part)
{
int saved_errno;
int ret;
int fd;
if (!storage_read_only) {
fd = open(fspath, O_RDWR);
if (fd < 0) {
saved_errno = errno;
fprintf(stderr, "[storage] failed to open '%s' (requested '%s'): %s\n",
fspath, part->path, strerror(saved_errno));
return saved_errno;
}
rmtfd->fd = fd;
rmtfd->shadow_len = 0;
} else {
ret = storage_populate_shadow_buf(rmtfd, fspath);
if (ret < 0) {
saved_errno = errno;
fprintf(stderr, "[storage] failed to open '%s' (requested '%s'): %s\n",
fspath, part->path, strerror(saved_errno));
return saved_errno;
}
}
return 0;
}
struct rmtfd *storage_open(unsigned node, const char *path, const char *slot_suffix)
{ {
char *fspath; char *fspath;
const struct partition *part; const struct partition *part;
struct rmtfd *rmtfd = NULL; struct rmtfd *rmtfd = NULL;
const char *file; const char *file;
size_t pathlen; size_t pathlen;
int saved_errno;
int ret; int ret;
int fd;
int i; int i;
for (part = partition_table; part->path; part++) { for (part = partition_table; part->path; part++) {
@@ -119,29 +147,19 @@ found:
else else
file = part->actual; file = part->actual;
pathlen = strlen(storage_dir) + strlen(file) + 2; pathlen = strlen(storage_dir) + strlen(file) + 2 + strnlen(slot_suffix, SLOT_SUFFIX_LEN);
fspath = alloca(pathlen); fspath = alloca(pathlen);
snprintf(fspath, pathlen, "%s/%s", storage_dir, file); snprintf(fspath, pathlen, "%s/%s", storage_dir, file);
if (!storage_read_only) { ret = fd_open(rmtfd, fspath, part);
fd = open(fspath, O_RDWR); if (ret) {
if (fd < 0) { /* Try again with the slot suffix before giving up */
saved_errno = errno; if (!slot_suffix)
fprintf(stderr, "[storage] failed to open '%s' (requested '%s'): %s\n",
fspath, part->path, strerror(saved_errno));
errno = saved_errno;
return NULL; return NULL;
}
rmtfd->fd = fd; snprintf(fspath, pathlen, "%s/%s%s", storage_dir, file, slot_suffix);
rmtfd->shadow_len = 0; ret = fd_open(rmtfd, fspath, part);
} else { if (ret)
ret = storage_populate_shadow_buf(rmtfd, fspath);
if (ret < 0) {
saved_errno = errno;
fprintf(stderr, "[storage] failed to open '%s' (requested '%s'): %s\n",
fspath, part->path, strerror(saved_errno));
errno = saved_errno;
return NULL; return NULL;
}
} }
rmtfd->node = node; rmtfd->node = node;