overlay.c revision 1.1 1 1.1 thorpej /* $NetBSD: overlay.c,v 1.1 2020/06/26 03:23:04 thorpej Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*-
4 1.1 thorpej * Copyright (c) 2020 The NetBSD Foundation, Inc.
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.1 thorpej * by Jared McNeill <jmcneill (at) invisible.ca> and Jason R. Thorpe.
9 1.1 thorpej *
10 1.1 thorpej * Redistribution and use in source and binary forms, with or without
11 1.1 thorpej * modification, are permitted provided that the following conditions
12 1.1 thorpej * are met:
13 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
14 1.1 thorpej * notice, this list of conditions and the following disclaimer.
15 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
17 1.1 thorpej * documentation and/or other materials provided with the distribution.
18 1.1 thorpej *
19 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.1 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
30 1.1 thorpej */
31 1.1 thorpej
32 1.1 thorpej #include "efiboot.h"
33 1.1 thorpej #include "overlay.h"
34 1.1 thorpej
35 1.1 thorpej #include <sys/queue.h>
36 1.1 thorpej
37 1.1 thorpej int dtoverlay_enabled = 1;
38 1.1 thorpej
39 1.1 thorpej struct dtoverlay_entry {
40 1.1 thorpej TAILQ_ENTRY(dtoverlay_entry) entries;
41 1.1 thorpej char overlay_path[];
42 1.1 thorpej };
43 1.1 thorpej TAILQ_HEAD(, dtoverlay_entry) dtoverlay_entries =
44 1.1 thorpej TAILQ_HEAD_INITIALIZER(dtoverlay_entries);
45 1.1 thorpej
46 1.1 thorpej #define DTOVERLAY_ENTRY_SIZE(p) (sizeof(struct dtoverlay_entry) + strlen(p) + 1)
47 1.1 thorpej
48 1.1 thorpej void
49 1.1 thorpej dtoverlay_foreach(void (*fn)(const char *))
50 1.1 thorpej {
51 1.1 thorpej struct dtoverlay_entry *d;
52 1.1 thorpej
53 1.1 thorpej TAILQ_FOREACH(d, &dtoverlay_entries, entries) {
54 1.1 thorpej fn(d->overlay_path);
55 1.1 thorpej }
56 1.1 thorpej }
57 1.1 thorpej
58 1.1 thorpej void
59 1.1 thorpej dtoverlay_add(const char *overlay_path)
60 1.1 thorpej {
61 1.1 thorpej struct dtoverlay_entry *d;
62 1.1 thorpej
63 1.1 thorpej /* Trim leading whitespace */
64 1.1 thorpej while (*overlay_path == ' ' || *overlay_path == '\t')
65 1.1 thorpej ++overlay_path;
66 1.1 thorpej
67 1.1 thorpej /* Duplicate check */
68 1.1 thorpej TAILQ_FOREACH(d, &dtoverlay_entries, entries) {
69 1.1 thorpej if (strcmp(d->overlay_path, overlay_path) == 0)
70 1.1 thorpej return;
71 1.1 thorpej }
72 1.1 thorpej
73 1.1 thorpej /* Add to list of overlays. */
74 1.1 thorpej d = alloc(DTOVERLAY_ENTRY_SIZE(overlay_path));
75 1.1 thorpej strcpy(d->overlay_path, overlay_path);
76 1.1 thorpej TAILQ_INSERT_TAIL(&dtoverlay_entries, d, entries);
77 1.1 thorpej }
78 1.1 thorpej
79 1.1 thorpej #if 0
80 1.1 thorpej void
81 1.1 thorpej dtoverlay_remove(const char *overlay_path)
82 1.1 thorpej {
83 1.1 thorpej struct dtoverlay_entry *d;
84 1.1 thorpej
85 1.1 thorpej /* Trim leading whitespace */
86 1.1 thorpej while (*overlay_path == ' ' || *overlay_path == '\t')
87 1.1 thorpej ++overlay_path;
88 1.1 thorpej
89 1.1 thorpej TAILQ_FOREACH(d, &dtoverlay_entries, entries) {
90 1.1 thorpej if (strcmp(d->overlay_path, overlay_path) == 0) {
91 1.1 thorpej TAILQ_REMOVE(&dtoverlay_entries, d, entries);
92 1.1 thorpej dealloc(d, DTOVERLAY_ENTRY_SIZE(d->overlay_path));
93 1.1 thorpej return;
94 1.1 thorpej }
95 1.1 thorpej }
96 1.1 thorpej }
97 1.1 thorpej #endif
98 1.1 thorpej
99 1.1 thorpej void
100 1.1 thorpej dtoverlay_remove_all(void)
101 1.1 thorpej {
102 1.1 thorpej struct dtoverlay_entry *d;
103 1.1 thorpej
104 1.1 thorpej while ((d = TAILQ_FIRST(&dtoverlay_entries)) != NULL) {
105 1.1 thorpej TAILQ_REMOVE(&dtoverlay_entries, d, entries);
106 1.1 thorpej dealloc(d, DTOVERLAY_ENTRY_SIZE(d->overlay_path));
107 1.1 thorpej }
108 1.1 thorpej }
109 1.1 thorpej
110 1.1 thorpej void
111 1.1 thorpej dtoverlay_enable(int onoff)
112 1.1 thorpej {
113 1.1 thorpej dtoverlay_enabled = onoff;
114 1.1 thorpej }
115