Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Fix pgm_read_ptr in AVR pgmspace.h #118

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
aentinger merged 1 commit into arduino:master from tttapa:patch-1
Oct 7, 2020
Merged

Conversation

Copy link
Contributor

@tttapa tttapa commented Jul 27, 2020

Originally, pgm_read_ptr used to cast its argument to const void *, i.e. a pointer to read-only data.
This is incorrect, because the argument is a pointer to a pointer in "flash memory". You cannot cast it to
const void * and then dereference it, because void is not an object type.
Also, the pointer itself is read-only, but the data could in theory be mutable.
The correct type should be void *const *, i.e. a pointer to a read-only pointer to any data.

bblanchon and CriptoCosmo reacted with thumbs up emoji
Originally, `pgm_read_ptr` used to cast its argument to `const void *`, i.e. a pointer to read-only data. 
This is incorrect, because the argument is a pointer to a pointer in "flash memory". You cannot cast it to
`const void *` and then dereference it, because `void` is not an object type.
Also, the pointer itself is read-only, but the data could in theory be mutable. 
The correct type should be `void *const *`, i.e. a pointer to a read-only pointer to any data.
Copy link

I confirm that this change is necessary to fix the following error:

arduino/api/deprecated-avr-comp/avr/pgmspace.h:107:49: error: 'const void*' is not a pointer-to-object type
 #define pgm_read_ptr(addr) (*(const void *)(addr))
 ^

Please merge this pull request.

Copy link
Collaborator

@matthijskooijman matthijskooijman left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also looks good to me.

One nitpick: I would have a small preference to use const void ** instead of void *const *, which is a bit easier to read but AFAIU equivalent. This is also what is already used in practice in e.g. the SAMD core: https://github.com/adafruit/ArduinoCore-samd/blob/6a59e8347d01a9a7a51cd71f7981d154d851ba35/cores/arduino/avr/pgmspace.h#L106

Copy link

Copy link

Copy link

Copy link

Copy link

As you see, there are many variants out there.
However, if we go back to the original definition in avr-libc, we see that the macro casts the result to void*.
Therefore, to emulate the original macro, we should use void *const *, as @tttapa wrote.

Copy link
Collaborator

But I'm saying that, AFAIU, const void** is exactly the same type as void *const *, it's just written in an IMHO more readable/common way. Or are you arguing that these types are different?

Copy link

It's not a matter of taste; they are different types:

  • *(const void**) is const void*
  • *(void *const *) is void*

Copy link
Collaborator

Hm, seems I was wrong indeed, thanks for insisting.

So with that out of the way, the PR as it is now is indeed correct, so I'm for merging it.

Note that this also means that the SAMD and Arduino_STM32 versions are indeed also subtly broken (returning const void* instead of void*), though not as broken as the version in the ArduinoCore-API repo right now (which does not even dereference successfully).

bblanchon reacted with thumbs up emoji

Copy link
Contributor

Thank you to both @bblanchon and @matthijskooijman 🚀 I'll merge now.

@aentinger aentinger merged commit 76e931e into arduino:master Oct 7, 2020
Copy link

Thanks !!!

aentinger reacted with thumbs up emoji

bblanchon added a commit to bblanchon/ClearCore-Arduino-wrapper that referenced this pull request Jul 14, 2023
Calling this macro causes the error "'const void*' is not a pointer-to-object type"
Related to arduino/ArduinoCore-API#118
Fixes bblanchon/ArduinoJson#1947 
piernov added a commit to piernov/UCA_AIoT_Core that referenced this pull request Nov 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Reviewers

@matthijskooijman matthijskooijman matthijskooijman approved these changes

+1 more reviewer

@bblanchon bblanchon bblanchon approved these changes

Reviewers whose approvals may not affect merge requirements
Assignees
No one assigned
Labels
None yet
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

AltStyle によって変換されたページ (->オリジナル) /