mbox series

[0/3] lib80211: Constify struct lib80211_crypto_ops

Message ID cover.1715443223.git.christophe.jaillet@wanadoo.fr
Headers show
Series lib80211: Constify struct lib80211_crypto_ops | expand

Message

Christophe JAILLET May 11, 2024, 4:32 p.m. UTC
This serie constify struct lib80211_crypto_ops. This sutructure is
mostly some function pointers, so having it in a read-only section
when possible is safer.


The 1st patch, update some function prototypes and data structures in
lib80211.

The 2nd patch constifies some struct lib80211_crypto_ops in lib80211.
This moves some data to a read-only section, so increase overall
security.

The 3rd patch does the same for staging/rtl8192e.

Note that the functions have looked in staging/rtl8192e look really
similar to the ones in lib80211. Maybe it could be removed in favor of
the latter.


Each patch in the serie has been compile tested ony.

Christophe JAILLET (3):
  lib80211: Handle const struct lib80211_crypto_ops in lib80211
  lib80211: Constify struct lib80211_crypto_ops
  staging: rtl8192e: Constify struct lib80211_crypto_ops

 drivers/staging/rtl8192e/rtllib_crypt_ccmp.c |  2 +-
 drivers/staging/rtl8192e/rtllib_crypt_tkip.c |  2 +-
 drivers/staging/rtl8192e/rtllib_crypt_wep.c  |  2 +-
 drivers/staging/rtl8192e/rtllib_wx.c         |  2 +-
 include/net/lib80211.h                       |  8 ++++----
 net/wireless/lib80211.c                      | 10 +++++-----
 net/wireless/lib80211_crypt_ccmp.c           |  2 +-
 net/wireless/lib80211_crypt_tkip.c           |  2 +-
 net/wireless/lib80211_crypt_wep.c            |  2 +-
 9 files changed, 16 insertions(+), 16 deletions(-)