]> git.ipfire.org Git - people/ms/systemd.git/blame - load-dropin.c
util: add chars_intersect() call
[people/ms/systemd.git] / load-dropin.c
CommitLineData
5cb5a6ff
LP
1/*-*- Mode: C; c-basic-offset: 8 -*-*/
2
a7334b09
LP
3/***
4 This file is part of systemd.
5
6 Copyright 2010 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 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 General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
0301abf4
LP
22#include <dirent.h>
23#include <errno.h>
24
25#include "unit.h"
5cb5a6ff 26#include "load-dropin.h"
b952f2e1 27#include "log.h"
036643a2 28#include "strv.h"
5cb5a6ff 29
87f0e418 30int unit_load_dropin(Unit *u) {
0301abf4
LP
31 Iterator i;
32 int r;
33 char *t;
34
87f0e418 35 assert(u);
5cb5a6ff
LP
36
37 /* Load dependencies from supplementary drop-in directories */
38
0301abf4
LP
39 SET_FOREACH(t, u->meta.names, i) {
40 char *path;
41 DIR *d;
42 struct dirent *de;
036643a2 43 char **p;
0301abf4 44
036643a2 45 STRV_FOREACH(p, u->meta.manager->unit_path) {
0301abf4 46
036643a2
LP
47 if (asprintf(&path, "%s/%s.wants", *p, t) < 0)
48 return -ENOMEM;
0301abf4 49
036643a2
LP
50 if (!(d = opendir(path))) {
51 r = -errno;
52 free(path);
0301abf4 53
036643a2
LP
54 if (r == -ENOENT)
55 continue;
0301abf4 56
036643a2
LP
57 return r;
58 }
0301abf4 59
036643a2 60 free(path);
0301abf4 61
036643a2 62 while ((de = readdir(d))) {
0301abf4 63
c85dc17b 64 if (ignore_file(de->d_name))
036643a2 65 continue;
0301abf4 66
036643a2
LP
67 if (asprintf(&path, "%s/%s.wants/%s", *p, t, de->d_name) < 0) {
68 closedir(d);
69 return -ENOMEM;
70 }
b952f2e1 71
036643a2
LP
72 if (!unit_name_is_valid(de->d_name)) {
73 log_info("Name of %s is not a valid unit name. Ignoring.", path);
74 free(path);
75 continue;
76 }
0301abf4 77
036643a2
LP
78 r = unit_add_dependency_by_name(u, UNIT_WANTS, path);
79 free(path);
80
81 if (r < 0) {
82 closedir(d);
83 return r;
84 }
0301abf4 85 }
0301abf4 86
036643a2
LP
87 closedir(d);
88 }
0301abf4
LP
89 }
90
5cb5a6ff
LP
91 return 0;
92}