sysctl.c revision 2c21044f05e32ec483b6ab13e175278779e9ebe3
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2010 Lennart Poettering
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <stdlib.h>
#include <stdbool.h>
#include <errno.h>
#include <string.h>
#include <stdio.h>
#include <limits.h>
#include <getopt.h>
#include "log.h"
#include "strv.h"
#include "util.h"
#include "strv.h"
#include "conf-files.h"
#define PROC_SYS_PREFIX "/proc/sys/"
static char **arg_prefixes = NULL;
char *p, *n;
int r = 0, k;
if (!p) {
log_error("Out of memory");
return -ENOMEM;
}
n = stpcpy(p, PROC_SYS_PREFIX);
for (; *n; n++)
if (*n == '.')
*n = '/';
if (!strv_isempty(arg_prefixes)) {
char **i;
bool good = false;
if (path_startswith(p, *i)) {
good = true;
break;
}
if (!good) {
log_debug("Skipping %s", p);
free(p);
return 0;
}
}
k = write_one_line_file(p, value);
if (k < 0) {
if (k != -ENOENT && r == 0)
r = k;
}
free(p);
return r;
}
FILE *f;
int r = 0;
return 0;
return -errno;
}
while (!feof(f)) {
int k;
if (!fgets(l, sizeof(l), f)) {
if (feof(f))
break;
r = -errno;
goto finish;
}
p = strstrip(l);
if (!*p)
continue;
continue;
if (r == 0)
r = -EINVAL;
continue;
}
*value = 0;
value++;
r = k;
}
fclose(f);
return r;
}
static int help(void) {
printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n\n"
"Applies kernel sysctl settings.\n\n"
" -h --help Show this help\n"
" --prefix=PATH Only apply rules that apply to paths with the specified prefix\n",
return 0;
}
enum {
};
};
int c;
switch (c) {
case 'h':
help();
return 0;
case ARG_PREFIX: {
char *p;
char **l;
for (p = optarg; *p; p++)
if (*p == '.')
*p = '/';
if (!l) {
log_error("Out of memory");
return -ENOMEM;
}
arg_prefixes = l;
break;
}
case '?':
return -EINVAL;
default:
log_error("Unknown option code %c", c);
return -EINVAL;
}
}
return 1;
}
int r = 0;
if (r <= 0)
return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
log_open();
umask(0022);
int i;
int k;
k = apply_file(argv[i], false);
if (k < 0 && r == 0)
r = k;
}
} else {
char **files, **f;
int k;
#ifdef HAVE_SPLIT_USR
#endif
NULL);
if (r < 0) {
goto finish;
}
STRV_FOREACH(f, files) {
k = apply_file(*f, true);
if (k < 0 && r == 0)
r = k;
}
k = apply_file("/etc/sysctl.conf", true);
if (k < 0 && r == 0)
r = k;
}
return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
}