aboutsummaryrefslogtreecommitdiff
path: root/lib/init/svc_tsort.c
blob: 37f3eb813df55fb449313102e01c123c29d6e513 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/* SPDX-License-Identifier: ISC */
#include <stdbool.h>
#include <stddef.h>
#include <string.h>
#include <errno.h>

#include "service.h"

static bool has_dependencies(service_t *list, service_t *svc)
{
	const char *ptr;
	int i;

	while (list != NULL) {
		for (ptr = svc->after, i = 0; i < svc->num_after; ++i) {
			if (!strcmp(ptr, list->name))
				return true;
			ptr += strlen(ptr) + 1;
		}

		for (ptr = list->before, i = 0; i < list->num_before; ++i) {
			if (!strcmp(ptr, svc->name))
				return true;
			ptr += strlen(ptr) + 1;
		}

		list = list->next;
	}

	return false;
}

service_t *svc_tsort(service_t *list)
{
	service_t *nl = NULL, *end = NULL;
	service_t *svc, *prev;

	while (list != NULL) {
		/* remove first service without dependencies */
		prev = NULL;
		svc = list;

		while (svc != NULL) {
			if (has_dependencies(list, svc)) {
				prev = svc;
				svc = svc->next;
			} else {
				if (prev != NULL) {
					prev->next = svc->next;
				} else {
					list = svc->next;
				}
				svc->next = NULL;
				break;
			}
		}

		/* cycle! */
		if (svc == NULL) {
			if (end == NULL) {
				nl = list;
			} else {
				end->next = list;
			}
			errno = ELOOP;
			break;
		}

		/* append to new list */
		if (end == NULL) {
			nl = end = svc;
		} else {
			end->next = svc;
			end = svc;
		}
	}

	return nl;
}