All of lore.kernel.org
 help / color / mirror / Atom feed
From: Baolin Wang <baolin.wang@linaro.org>
To: linux-security-module@vger.kernel.org
Subject: [PATCH 0/3] Fix y2038 issues for security/keys subsystem
Date: Wed, 09 Aug 2017 02:51:29 +0000	[thread overview]
Message-ID: <cover.1502246501.git.baolin.wang@linaro.org> (raw)

Since 'time_t', 'timeval' and 'timespec' types are not year 2038 safe on
32 bits system, this patchset tries to fix this issues for security/keys
subsystem and net/rxrpc subsystem which is connected with security/keys
subsystem.

Baolin Wang (3):
  security: keys: Replace time_t/timespec with time64_t
  security: keys: Replace time_t with time64_t for struct
    key_preparsed_payload
  net: rxrpc: Replace time_t type with time64_t type

 include/keys/rxrpc-type.h    |   21 +++++++++++++++++++++
 include/linux/key-type.h     |    2 +-
 include/linux/key.h          |    7 ++++---
 net/rxrpc/ar-internal.h      |    2 +-
 net/rxrpc/key.c              |   22 ++++++++++++++--------
 net/rxrpc/rxkad.c            |   14 +++++++-------
 security/keys/gc.c           |   20 ++++++++++----------
 security/keys/internal.h     |    8 ++++----
 security/keys/key.c          |   27 ++++++++++-----------------
 security/keys/keyring.c      |   18 +++++++++---------
 security/keys/permission.c   |    3 +--
 security/keys/proc.c         |   20 ++++++++++----------
 security/keys/process_keys.c |    2 +-
 13 files changed, 93 insertions(+), 73 deletions(-)

-- 
1.7.9.5


WARNING: multiple messages have this Message-ID (diff)
From: baolin.wang@linaro.org (Baolin Wang)
To: linux-security-module@vger.kernel.org
Subject: [PATCH 0/3] Fix y2038 issues for security/keys subsystem
Date: Wed,  9 Aug 2017 10:51:29 +0800	[thread overview]
Message-ID: <cover.1502246501.git.baolin.wang@linaro.org> (raw)

Since 'time_t', 'timeval' and 'timespec' types are not year 2038 safe on
32 bits system, this patchset tries to fix this issues for security/keys
subsystem and net/rxrpc subsystem which is connected with security/keys
subsystem.

Baolin Wang (3):
  security: keys: Replace time_t/timespec with time64_t
  security: keys: Replace time_t with time64_t for struct
    key_preparsed_payload
  net: rxrpc: Replace time_t type with time64_t type

 include/keys/rxrpc-type.h    |   21 +++++++++++++++++++++
 include/linux/key-type.h     |    2 +-
 include/linux/key.h          |    7 ++++---
 net/rxrpc/ar-internal.h      |    2 +-
 net/rxrpc/key.c              |   22 ++++++++++++++--------
 net/rxrpc/rxkad.c            |   14 +++++++-------
 security/keys/gc.c           |   20 ++++++++++----------
 security/keys/internal.h     |    8 ++++----
 security/keys/key.c          |   27 ++++++++++-----------------
 security/keys/keyring.c      |   18 +++++++++---------
 security/keys/permission.c   |    3 +--
 security/keys/proc.c         |   20 ++++++++++----------
 security/keys/process_keys.c |    2 +-
 13 files changed, 93 insertions(+), 73 deletions(-)

-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-security-module" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

WARNING: multiple messages have this Message-ID (diff)
From: Baolin Wang <baolin.wang@linaro.org>
To: dhowells@redhat.com, davem@davemloft.net
Cc: james.l.morris@oracle.com, serge@hallyn.com,
	marc.dionne@auristor.com, dan.carpenter@oracle.com,
	Jason@zx2c4.com, arnd@arndb.de, broonie@kernel.org,
	keyrings@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-security-module@vger.kernel.org, netdev@vger.kernel.org,
	baolin.wang@linaro.org
Subject: [PATCH 0/3] Fix y2038 issues for security/keys subsystem
Date: Wed,  9 Aug 2017 10:51:29 +0800	[thread overview]
Message-ID: <cover.1502246501.git.baolin.wang@linaro.org> (raw)

Since 'time_t', 'timeval' and 'timespec' types are not year 2038 safe on
32 bits system, this patchset tries to fix this issues for security/keys
subsystem and net/rxrpc subsystem which is connected with security/keys
subsystem.

Baolin Wang (3):
  security: keys: Replace time_t/timespec with time64_t
  security: keys: Replace time_t with time64_t for struct
    key_preparsed_payload
  net: rxrpc: Replace time_t type with time64_t type

 include/keys/rxrpc-type.h    |   21 +++++++++++++++++++++
 include/linux/key-type.h     |    2 +-
 include/linux/key.h          |    7 ++++---
 net/rxrpc/ar-internal.h      |    2 +-
 net/rxrpc/key.c              |   22 ++++++++++++++--------
 net/rxrpc/rxkad.c            |   14 +++++++-------
 security/keys/gc.c           |   20 ++++++++++----------
 security/keys/internal.h     |    8 ++++----
 security/keys/key.c          |   27 ++++++++++-----------------
 security/keys/keyring.c      |   18 +++++++++---------
 security/keys/permission.c   |    3 +--
 security/keys/proc.c         |   20 ++++++++++----------
 security/keys/process_keys.c |    2 +-
 13 files changed, 93 insertions(+), 73 deletions(-)

-- 
1.7.9.5

             reply	other threads:[~2017-08-09  2:51 UTC|newest]

Thread overview: 48+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-09  2:51 Baolin Wang [this message]
2017-08-09  2:51 ` [PATCH 0/3] Fix y2038 issues for security/keys subsystem Baolin Wang
2017-08-09  2:51 ` Baolin Wang
2017-08-09  2:51 ` [PATCH 1/3] security: keys: Replace time_t/timespec with time64_t Baolin Wang
2017-08-09  2:51   ` Baolin Wang
2017-08-09  2:51   ` Baolin Wang
2017-08-09  2:51 ` [PATCH 2/3] security: keys: Replace time_t with time64_t for struct key_preparsed_payload Baolin Wang
2017-08-09  2:51   ` Baolin Wang
2017-08-09  2:51   ` Baolin Wang
2017-08-09  2:51 ` [PATCH 3/3] net: rxrpc: Replace time_t type with time64_t type Baolin Wang
2017-08-09  2:51   ` Baolin Wang
2017-08-09  2:51   ` Baolin Wang
2017-08-09  9:01   ` Arnd Bergmann
2017-08-09  9:01     ` Arnd Bergmann
2017-08-09  9:01     ` Arnd Bergmann
2017-08-09  9:33     ` David Howells
2017-08-09  9:33       ` David Howells
2017-08-09  9:33       ` David Howells
2017-08-09 10:00       ` Arnd Bergmann
2017-08-09 10:00         ` Arnd Bergmann
2017-08-09 10:00         ` Arnd Bergmann
2017-08-09 13:26         ` David Howells
2017-08-09 13:26           ` David Howells
2017-08-09 13:26           ` David Howells
2017-08-09 15:12           ` Arnd Bergmann
2017-08-09 15:12             ` Arnd Bergmann
2017-08-09 15:12             ` Arnd Bergmann
2017-08-09 15:45             ` David Howells
2017-08-09 15:45               ` David Howells
2017-08-09 15:45               ` David Howells
2017-08-09  8:28 ` [PATCH 0/3] Fix y2038 issues for security/keys subsystem David Howells
2017-08-09  8:28   ` David Howells
2017-08-09  8:28   ` David Howells
2017-08-10  1:59   ` Baolin Wang
2017-08-10  1:59     ` Baolin Wang
2017-08-10  1:59     ` Baolin Wang
2017-08-21 12:12   ` Baolin Wang
2017-08-21 12:12     ` Baolin Wang
2017-08-21 12:12     ` Baolin Wang
2017-09-15  8:38     ` Baolin Wang
2017-09-15  8:38       ` Baolin Wang
2017-09-15  8:38       ` Baolin Wang
2017-08-09  8:44 ` Arnd Bergmann
2017-08-09  8:44   ` Arnd Bergmann
2017-08-09  8:44   ` Arnd Bergmann
2017-08-10  2:00   ` Baolin Wang
2017-08-10  2:00     ` Baolin Wang
2017-08-10  2:00     ` Baolin Wang

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=cover.1502246501.git.baolin.wang@linaro.org \
    --to=baolin.wang@linaro.org \
    --cc=linux-security-module@vger.kernel.org \
    /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.