chiark / gitweb /
util: rename ignore_file() to hidden_file()
[elogind.git] / src / shared / cap-list.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2014 Lennart Poettering
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU Lesser General Public License as published by
10   the Free Software Foundation; either version 2.1 of the License, or
11   (at your option) any later version.
12
13   systemd is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   Lesser General Public License for more details.
17
18   You should have received a copy of the GNU Lesser General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <linux/capability.h>
23 #include <string.h>
24
25 #include "util.h"
26 #include "cap-list.h"
27 #include "missing.h"
28
29 static const struct capability_name* lookup_capability(register const char *str, register unsigned int len);
30
31 #include "cap-to-name.h"
32 #include "cap-from-name.h"
33
34 const char *capability_to_name(int id) {
35
36         if (id < 0)
37                 return NULL;
38
39         if (id >= (int) ELEMENTSOF(capability_names))
40                 return NULL;
41
42         return capability_names[id];
43 }
44
45 int capability_from_name(const char *name) {
46         const struct capability_name *sc;
47         int r, i;
48
49         assert(name);
50
51         /* Try to parse numeric capability */
52         r = safe_atoi(name, &i);
53         if (r >= 0 && i >= 0)
54                 return i;
55
56         /* Try to parse string capability */
57         sc = lookup_capability(name, strlen(name));
58         if (!sc)
59                 return -EINVAL;
60
61         return sc->id;
62 }