diff options
author | attilio <attilio@FreeBSD.org> | 2009-11-25 15:12:24 +0000 |
---|---|---|
committer | attilio <attilio@FreeBSD.org> | 2009-11-25 15:12:24 +0000 |
commit | 99524169bf3f72fffa8e41ace1a952854e3f97d3 (patch) | |
tree | f308da7e1d86252ddb2bfef1aafa5f589034f693 /crypto/openssh | |
parent | c984dc56360945b3348330530b2cec41b26e99e5 (diff) | |
download | FreeBSD-src-99524169bf3f72fffa8e41ace1a952854e3f97d3.zip FreeBSD-src-99524169bf3f72fffa8e41ace1a952854e3f97d3.tar.gz |
Avoid sshd, cron, syslogd and inetd to be killed under high-pressure swap
environments.
Please note that this can't be done while such processes run in jails.
Note: in future it would be interesting to find a way to do that
selectively for any desired proccess (choosen by user himself), probabilly
via a ptrace interface or whatever.
Obtained from: Sandvine Incorporated
Reviewed by: emaste, arch@
Sponsored by: Sandvine Incorporated
MFC: 1 month
Diffstat (limited to 'crypto/openssh')
-rw-r--r-- | crypto/openssh/sshd.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/crypto/openssh/sshd.c b/crypto/openssh/sshd.c index 249e20f..422f0cb 100644 --- a/crypto/openssh/sshd.c +++ b/crypto/openssh/sshd.c @@ -47,6 +47,7 @@ __RCSID("$FreeBSD$"); #include <sys/types.h> #include <sys/ioctl.h> +#include <sys/mman.h> #include <sys/socket.h> #ifdef HAVE_SYS_STAT_H # include <sys/stat.h> @@ -1293,6 +1294,10 @@ main(int ac, char **av) /* Initialize configuration options to their default values. */ initialize_server_options(&options); + /* Avoid killing the process in high-pressure swapping environments. */ + if (madvise(NULL, 0, MADV_PROTECT) != 0) + debug("madvise(): %.200s", strerror(errno)); + /* Parse command-line arguments. */ while ((opt = getopt(ac, av, "f:p:b:k:h:g:u:o:C:dDeiqrtQRT46")) != -1) { switch (opt) { |