linux-security-module.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Seergey Nazarov <s-nazarov@yandex.ru>
To: linux-security-module@vger.kernel.org
Cc: paul@paul-moore.com
Subject: [PATCH] CIPSO: Fix unaligned memory access in cipso_v4_gentag_hdr
Date: Fri, 05 Mar 2021 00:00:32 +0300	[thread overview]
Message-ID: <a93d1b4c1d027d037ec341eabfc8e7920e589a49.camel@yandex.ru> (raw)

We need to use put_unaligned when writing 32-bit DOI value
in cipso_v4_gentag_hdr to avoid unaligned memory access.

Signed-off-by: Sergey Nazarov <s-nazarov@yandex.ru>
---
 net/ipv4/cipso_ipv4.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/ipv4/cipso_ipv4.c b/net/ipv4/cipso_ipv4.c
index 471d33a..28dfe40 100644
--- a/net/ipv4/cipso_ipv4.c
+++ b/net/ipv4/cipso_ipv4.c
@@ -1162,7 +1162,7 @@ static void cipso_v4_gentag_hdr(const struct
cipso_v4_doi *doi_def,
 {
 	buf[0] = IPOPT_CIPSO;
 	buf[1] = CIPSO_V4_HDR_LEN + len;
-	*(__be32 *)&buf[2] = htonl(doi_def->doi);
+	put_unaligned_be32(doi_def->doi, (__be32 *)&buf[2]);
 }
 
 /**
-- 
1.8.3.1



             reply	other threads:[~2021-03-04 21:09 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-04 21:00 Seergey Nazarov [this message]
2021-03-04 21:17 ` [PATCH] CIPSO: Fix unaligned memory access in cipso_v4_gentag_hdr Ondrej Mosnacek
2021-03-04 21:45   ` Paul Moore
2021-03-05  7:40     ` Seergey Nazarov
2021-03-05  7:28   ` Seergey Nazarov

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=a93d1b4c1d027d037ec341eabfc8e7920e589a49.camel@yandex.ru \
    --to=s-nazarov@yandex.ru \
    --cc=linux-security-module@vger.kernel.org \
    --cc=paul@paul-moore.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).