swaylock: Securely zero-out password.

- Replace char* with static array. Any chars > 1024 will be discarded.
- mlock() password buffer so it can't be written to swap.
- Clear password buffer after auth succeeds or fails.

This is basically the same treatment I gave the 0.15 branch in https://github.com/swaywm/sway/pull/1519
This commit is contained in:
Geoff Greer 2018-04-12 17:38:24 -07:00
parent 200d0360ea
commit ad6aa21c43
3 changed files with 34 additions and 26 deletions

View file

@ -24,9 +24,8 @@ struct swaylock_args {
};
struct swaylock_password {
size_t size;
size_t len;
char *buffer;
char buffer[1024];
};
struct swaylock_state {