lkml.org 
[lkml]   [2016]   [Feb]   [12]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[RFC v2a 04/12] fs: cifs: Make cnvrtDosUnixTm() y2038 safe
    Date
    The seconds calculated from the server(DOS format)
    cannot be saved in int data type as this cannot save
    seconds since epoch after the year 2038.

    Use long long for seconds field in cnvrtDosUnixTm(). This will
    help represent 64 bit time even on 32 bit systems.

    Note that even though the theoretical max on DOS times is 2107,
    its APIs only support until the year 2099. This means we can
    get away with 32 bit unsigned sec field. But, the sec field uses
    long long to maintain uniformity in the kernel as the
    theoretical max is used everywhere else.

    Signed-off-by: Deepa Dinamani <deepa.kernel@gmail.com>
    ---
    fs/cifs/netmisc.c | 5 +++--
    1 file changed, 3 insertions(+), 2 deletions(-)

    diff --git a/fs/cifs/netmisc.c b/fs/cifs/netmisc.c
    index 86bc0e5..52b41bd 100644
    --- a/fs/cifs/netmisc.c
    +++ b/fs/cifs/netmisc.c
    @@ -962,7 +962,8 @@ static const int total_days_of_prev_months[] = {
    struct vfs_time cnvrtDosUnixTm(__le16 le_date, __le16 le_time, int offset)
    {
    struct vfs_time ts;
    - int sec, min, days, month, year;
    + long long sec;
    + int min, days, month, year;
    u16 date = le16_to_cpu(le_date);
    u16 time = le16_to_cpu(le_time);
    SMB_TIME *st = (SMB_TIME *)&time;
    @@ -973,7 +974,7 @@ struct vfs_time cnvrtDosUnixTm(__le16 le_date, __le16 le_time, int offset)
    sec = 2 * st->TwoSeconds;
    min = st->Minutes;
    if ((sec > 59) || (min > 59))
    - cifs_dbg(VFS, "illegal time min %d sec %d\n", min, sec);
    + cifs_dbg(VFS, "illegal time min %d sec %lld\n", min, sec);
    sec += (min * 60);
    sec += 60 * 60 * st->Hours;
    if (st->Hours > 24)
    --
    1.9.1
    \
     
     \ /
      Last update: 2016-02-12 11:01    [W:3.837 / U:0.004 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site