From: Cyril Hrubis <chrubis@suse.cz>
To: Andrea Cervesato <andrea.cervesato@suse.de>
Cc: ltp@lists.linux.it
Subject: Re: [LTP] [PATCH v4 1/2] Add SAFE_MPROTECT() macro
Date: Mon, 4 Mar 2024 16:54:23 +0100 [thread overview]
Message-ID: <ZeXur_8TD_YwfOI6@yuki> (raw)
In-Reply-To: <20240304152119.31688-2-andrea.cervesato@suse.de>
Hi!
> + int rval;
> + char prot_buf[16];
> +
> + switch (prot) {
> + case PROT_NONE:
> + snprintf(prot_buf, 16, "PROT_NONE");
> + break;
> + case PROT_WRITE:
> + snprintf(prot_buf, 16, "PROT_WRITE");
> + break;
> + case PROT_READ:
> + snprintf(prot_buf, 16, "PROT_READ");
> + break;
> + case PROT_EXEC:
> + snprintf(prot_buf, 16, "PROT_EXEC");
> + break;
> + default:
> + snprintf(prot_buf, 16, "UNKNOWN");
> + break;
> + }
This is ugly and does not work.
First of all we can just do:
char *prot_name;
switch (prot) {
case PROT_NONE:
prot_name = "PROT_NONE";
break;
...
}
And secondly it does not work for common combinations, like (PROT_READ | PROT_WRITE).
So I guess that the easiest solution is to walk the bits and append the
string something as:
#define PROT_READ_NAME "PROT_READ | "
#define PROT_WRITE_NAME "PROT_WRITE | "
#define PROT_EXEC_NAME "PROT_EXEC | "
static const char *prot_to_str(int prot, char *buf, size_t buf_len)
{
char *orig_buf = buf;
if (buf_len < sizeof(PROT_READ_NAME) + sizeof(PROT_WRITE_NAME) + sizeof(PROT_EXEC_NAME))
return "BUFFER TOO SMALL!!!";
if (prot == 0)
return "PROT_NONE";
*buf = 0;
if (prot & PROT_READ) {
strcpy(buf, PROT_READ_NAME);
buf += sizeof(PROT_READ_NAME)-1;
}
if (prot & PROT_WRITE) {
strcpy(buf, PROT_WRITE_NAME);
buf += sizeof(PROT_WRITE_NAME)-1;
}
if (prot & PROT_EXEC) {
strcpy(buf, PROT_EXEC_NAME);
buf += sizeof(PROT_EXEC_NAME)-1;
}
if (orig_buf != buf)
buf[-3] = 0;
return buf;
}
Also I would put the code that translates the prot into string into a
separate function because that code should be used in the safe_mmap() as
well.
> + tst_res_(file, lineno, TDEBUG,
> + "mprotect(%p, %d, %s)", addr, len, prot_buf);
Can we print hexadecimal value of the prot here as well?
"mprotect(%p, %d, %s(%x))", addr, len, prot_to_str(prot, buf, sizeof(buf)), prot);
> + rval = mprotect(addr, len, prot);
> +
> + if (rval == -1) {
> + tst_brkm_(file, lineno, TBROK | TERRNO, NULL,
> + "mprotect() failed");
> + } else if (rval) {
> + tst_brkm_(file, lineno, TBROK | TERRNO, NULL,
> + "Invalid mprotect() return value %d", rval);
> + }
> +
> + return rval;
> +}
> +
> int safe_mincore(const char *file, const int lineno, void *start,
> size_t length, unsigned char *vec)
> {
> --
> 2.35.3
>
>
> --
> Mailing list info: https://lists.linux.it/listinfo/ltp
--
Cyril Hrubis
chrubis@suse.cz
--
Mailing list info: https://lists.linux.it/listinfo/ltp
next prev parent reply other threads:[~2024-03-04 15:55 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-04 15:21 [LTP] [PATCH v4 0/2] SysV IPC bug reproducer Andrea Cervesato
2024-03-04 15:21 ` [LTP] [PATCH v4 1/2] Add SAFE_MPROTECT() macro Andrea Cervesato
2024-03-04 15:54 ` Cyril Hrubis [this message]
2024-03-04 16:35 ` Petr Vorel
2024-03-04 15:21 ` [LTP] [PATCH v4 2/2] Add shmat04 SysV IPC bug reproducer Andrea Cervesato
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZeXur_8TD_YwfOI6@yuki \
--to=chrubis@suse.cz \
--cc=andrea.cervesato@suse.de \
--cc=ltp@lists.linux.it \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.