Message ID | 20181130125447.32218-1-wsa+renesas@sang-engineering.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [mmc-utils] use proper type for RPMB blocks_cnt | expand |
> > The JEDEC standard is confusing. The number of max blocks for reading > RPMB is determined by CMD23 which can hold an unsigned int and not only > u16. It is true that the current maximum is 64K of blocks, yet this may > be extended in the future. Let's not apply a limit here which should be > checked by the card. > > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Reviewed-by: Avri Altman <avri.altman@wdc.com> > --- > > It is a bit academic, since we will be limited by MMC_IOC_MAX_BYTES in the > kernel anyhow. Still, because this is a subtle issue, I think it is worth > documenting the proper use. > > mmc_cmds.c | 7 ++++++- > 1 file changed, 6 insertions(+), 1 deletion(-) > > diff --git a/mmc_cmds.c b/mmc_cmds.c > index 44623fe..69485e9 100644 > --- a/mmc_cmds.c > +++ b/mmc_cmds.c > @@ -2070,7 +2070,12 @@ int do_rpmb_read_counter(int nargs, char > **argv) > int do_rpmb_read_block(int nargs, char **argv) > { > int i, ret, dev_fd, data_fd, key_fd = -1; > - uint16_t addr, blocks_cnt; > + uint16_t addr; > + /* > + * for reading RPMB, number of blocks is set by CMD23 only, the > packet > + * frame field for that is set to 0. So, the type is not u16 but uint! > + */ > + unsigned int blocks_cnt; > unsigned char key[32]; > struct rpmb_frame frame_in = { > .req_resp = htobe16(MMC_RPMB_READ), > -- > 2.11.0
Hi Wolfram, On Fri, Nov 30, 2018 at 01:54:47PM +0100, Wolfram Sang wrote: > The JEDEC standard is confusing. The number of max blocks for reading > RPMB is determined by CMD23 which can hold an unsigned int and not only > u16. It is true that the current maximum is 64K of blocks, yet this may > be extended in the future. Let's not apply a limit here which should be > checked by the card. > > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Thanks, applied to mmc-utils master.
On Fri, Nov 30, 2018 at 01:54:47PM +0100, Wolfram Sang wrote: > The JEDEC standard is confusing. The number of max blocks for reading > RPMB is determined by CMD23 which can hold an unsigned int and not only > u16. It is true that the current maximum is 64K of blocks, yet this may > be extended in the future. Let's not apply a limit here which should be > checked by the card. > > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> I am a little confused. What is the width of an unsigned int? If 4 bytes, would using uint32_t make this clearer? > --- > > It is a bit academic, since we will be limited by MMC_IOC_MAX_BYTES in the > kernel anyhow. Still, because this is a subtle issue, I think it is worth > documenting the proper use. > > mmc_cmds.c | 7 ++++++- > 1 file changed, 6 insertions(+), 1 deletion(-) > > diff --git a/mmc_cmds.c b/mmc_cmds.c > index 44623fe..69485e9 100644 > --- a/mmc_cmds.c > +++ b/mmc_cmds.c > @@ -2070,7 +2070,12 @@ int do_rpmb_read_counter(int nargs, char **argv) > int do_rpmb_read_block(int nargs, char **argv) > { > int i, ret, dev_fd, data_fd, key_fd = -1; > - uint16_t addr, blocks_cnt; > + uint16_t addr; > + /* > + * for reading RPMB, number of blocks is set by CMD23 only, the packet > + * frame field for that is set to 0. So, the type is not u16 but uint! > + */ > + unsigned int blocks_cnt; > unsigned char key[32]; > struct rpmb_frame frame_in = { > .req_resp = htobe16(MMC_RPMB_READ), > -- > 2.11.0 >
On Mon, Dec 10, 2018 at 01:19:08PM +0100, Simon Horman wrote: > On Fri, Nov 30, 2018 at 01:54:47PM +0100, Wolfram Sang wrote: > > The JEDEC standard is confusing. The number of max blocks for reading > > RPMB is determined by CMD23 which can hold an unsigned int and not only > > u16. It is true that the current maximum is 64K of blocks, yet this may > > be extended in the future. Let's not apply a limit here which should be > > checked by the card. > > > > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> > > I am a little confused. What is the width of an unsigned int? > If 4 bytes, would using uint32_t make this clearer? Nope, because in struct mmc_ioc_cmd (used for the ioctl), the 'blocks' variable which this value ultimately ends up in, is also unsigned int.
diff --git a/mmc_cmds.c b/mmc_cmds.c index 44623fe..69485e9 100644 --- a/mmc_cmds.c +++ b/mmc_cmds.c @@ -2070,7 +2070,12 @@ int do_rpmb_read_counter(int nargs, char **argv) int do_rpmb_read_block(int nargs, char **argv) { int i, ret, dev_fd, data_fd, key_fd = -1; - uint16_t addr, blocks_cnt; + uint16_t addr; + /* + * for reading RPMB, number of blocks is set by CMD23 only, the packet + * frame field for that is set to 0. So, the type is not u16 but uint! + */ + unsigned int blocks_cnt; unsigned char key[32]; struct rpmb_frame frame_in = { .req_resp = htobe16(MMC_RPMB_READ),
The JEDEC standard is confusing. The number of max blocks for reading RPMB is determined by CMD23 which can hold an unsigned int and not only u16. It is true that the current maximum is 64K of blocks, yet this may be extended in the future. Let's not apply a limit here which should be checked by the card. Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> --- It is a bit academic, since we will be limited by MMC_IOC_MAX_BYTES in the kernel anyhow. Still, because this is a subtle issue, I think it is worth documenting the proper use. mmc_cmds.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-)