Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date: Thu, 11 Apr 2019 14:55:16 -0700
From: Kees Cook <keescook@...omium.org>
To: Shyam Saini <mayhs11saini@...il.com>
Cc: Kernel Hardening <kernel-hardening@...ts.openwall.com>
Subject: Re: willing to involve in KSPP

On Wed, Apr 10, 2019 at 6:34 AM Shyam Saini <mayhs11saini@...il.com> wrote:
>  Hello Everyone,

Hi!

> I'm Shyam, currently working in linux kernel and embedded domain.
>
> I'm interested work in Kernel Self Protection Project.
>
> Would you please suggest which task should i pick ?
>
> I'd like to pick some simple task to get started.
> I see a list of todo [1] but this page is not updated since 31st October

I've updated this list now. Sorry for the delay!

> I don't have much experience in linux kernel so I'm not sure to pick which particular task,  please suggest me  some task.

One item on there that looks pretty simple and would get you started
would be to regularized the use of three different macros that all do
the same thing: replace sizeof_field() and SIZEOF_FIELD() with the
more common FIELD_SIZEOF()

$ git grep '\bsizeof_field\b' | wc -l
30
$ git grep '\bSIZEOF_FIELD\b' | wc -l
2
$ git grep '\bFIELD_SIZEOF\b' | wc -l
291

Which likely means moving the FIELD_SIZEOF macro into
include/linux/stddef.h for reuse in offsetofend().

> Looking forward to hearing from you.
>
> [1] https://kernsec.org/wiki/index.php/Kernel_Self_Protection_Project/Work
>
>
> Thanks a lot,

Thanks for reaching out!

-- 
Kees Cook

Powered by blists - more mailing lists

Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.