2014-05-13 00:41:46 +08:00
|
|
|
/*
|
|
|
|
The MIT License (MIT)
|
|
|
|
|
|
|
|
Copyright (c) 2014 Antonio SJ Musumeci <trapexit@spawn.link>
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/resource.h>
|
|
|
|
|
|
|
|
namespace mergerfs
|
|
|
|
{
|
|
|
|
namespace resources
|
|
|
|
{
|
|
|
|
int
|
|
|
|
reset_umask(void)
|
|
|
|
{
|
|
|
|
umask(0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2015-03-18 08:39:20 +08:00
|
|
|
maxout_rlimit(const int resource)
|
2014-05-13 00:41:46 +08:00
|
|
|
{
|
2015-02-18 00:46:54 +08:00
|
|
|
int rv;
|
2014-05-13 00:41:46 +08:00
|
|
|
struct rlimit rlim;
|
|
|
|
|
2015-02-18 00:46:54 +08:00
|
|
|
rlim.rlim_cur = RLIM_INFINITY;
|
|
|
|
rlim.rlim_max = RLIM_INFINITY;
|
|
|
|
rv = ::setrlimit(resource,&rlim);
|
|
|
|
if(rv == 0)
|
|
|
|
return 0;
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2015-02-18 00:46:54 +08:00
|
|
|
rv = ::getrlimit(resource,&rlim);
|
|
|
|
if(rv == -1)
|
|
|
|
return -1;
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2015-02-18 00:46:54 +08:00
|
|
|
rv = 0;
|
|
|
|
rlim.rlim_cur = rlim.rlim_max;
|
|
|
|
while(rv == 0)
|
|
|
|
{
|
|
|
|
rv = ::setrlimit(resource,&rlim);
|
|
|
|
rlim.rlim_max *= 2;
|
|
|
|
rlim.rlim_cur = rlim.rlim_max;
|
2014-05-13 00:41:46 +08:00
|
|
|
}
|
|
|
|
|
2015-02-18 00:46:54 +08:00
|
|
|
return rv;
|
2014-05-13 00:41:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
maxout_rlimit_nofile(void)
|
|
|
|
{
|
|
|
|
return maxout_rlimit(RLIMIT_NOFILE);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
maxout_rlimit_fsize(void)
|
|
|
|
{
|
|
|
|
return maxout_rlimit(RLIMIT_FSIZE);
|
|
|
|
}
|
2015-03-18 08:39:20 +08:00
|
|
|
|
|
|
|
int
|
|
|
|
setpriority(const int prio)
|
|
|
|
{
|
|
|
|
const int SELF = 0;
|
|
|
|
|
|
|
|
return ::setpriority(PRIO_PROCESS,SELF,prio);
|
|
|
|
}
|
2014-05-13 00:41:46 +08:00
|
|
|
}
|
|
|
|
}
|