]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/cap-list.c
util-lib: split string parsing related calls from util.[ch] into parse-util.[ch]
[thirdparty/systemd.git] / src / basic / cap-list.c
CommitLineData
2822da4f
LP
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
2822da4f
LP
22#include <string.h>
23
2822da4f
LP
24#include "cap-list.h"
25#include "missing.h"
6bedfcbb
LP
26#include "parse-util.h"
27#include "util.h"
2822da4f
LP
28
29static 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
34const 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
45int 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}
097df453
FB
63
64int capability_list_length(void) {
65 return (int) ELEMENTSOF(capability_names);
66}