xref: /DragonStub/apps/lib/libfdt/fdt_rw.c (revision 3e6106c4d60a23aae3c0740979c5e6fb728b63c3)
1*3e6106c4SLoGin // SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-2-Clause)
2*3e6106c4SLoGin /*
3*3e6106c4SLoGin  * libfdt - Flat Device Tree manipulation
4*3e6106c4SLoGin  * Copyright (C) 2006 David Gibson, IBM Corporation.
5*3e6106c4SLoGin  */
6*3e6106c4SLoGin #include "libfdt_env.h"
7*3e6106c4SLoGin 
8*3e6106c4SLoGin #include <fdt.h>
9*3e6106c4SLoGin #include <libfdt.h>
10*3e6106c4SLoGin 
11*3e6106c4SLoGin #include "libfdt_internal.h"
12*3e6106c4SLoGin 
fdt_blocks_misordered_(const void * fdt,int mem_rsv_size,int struct_size)13*3e6106c4SLoGin static int fdt_blocks_misordered_(const void *fdt,
14*3e6106c4SLoGin 				  int mem_rsv_size, int struct_size)
15*3e6106c4SLoGin {
16*3e6106c4SLoGin 	return (fdt_off_mem_rsvmap(fdt) < FDT_ALIGN(sizeof(struct fdt_header), 8))
17*3e6106c4SLoGin 		|| (fdt_off_dt_struct(fdt) <
18*3e6106c4SLoGin 		    (fdt_off_mem_rsvmap(fdt) + mem_rsv_size))
19*3e6106c4SLoGin 		|| (fdt_off_dt_strings(fdt) <
20*3e6106c4SLoGin 		    (fdt_off_dt_struct(fdt) + struct_size))
21*3e6106c4SLoGin 		|| (fdt_totalsize(fdt) <
22*3e6106c4SLoGin 		    (fdt_off_dt_strings(fdt) + fdt_size_dt_strings(fdt)));
23*3e6106c4SLoGin }
24*3e6106c4SLoGin 
fdt_rw_probe_(void * fdt)25*3e6106c4SLoGin static int fdt_rw_probe_(void *fdt)
26*3e6106c4SLoGin {
27*3e6106c4SLoGin 	if (can_assume(VALID_DTB))
28*3e6106c4SLoGin 		return 0;
29*3e6106c4SLoGin 	FDT_RO_PROBE(fdt);
30*3e6106c4SLoGin 
31*3e6106c4SLoGin 	if (!can_assume(LATEST) && fdt_version(fdt) < 17)
32*3e6106c4SLoGin 		return -FDT_ERR_BADVERSION;
33*3e6106c4SLoGin 	if (fdt_blocks_misordered_(fdt, sizeof(struct fdt_reserve_entry),
34*3e6106c4SLoGin 				   fdt_size_dt_struct(fdt)))
35*3e6106c4SLoGin 		return -FDT_ERR_BADLAYOUT;
36*3e6106c4SLoGin 	if (!can_assume(LATEST) && fdt_version(fdt) > 17)
37*3e6106c4SLoGin 		fdt_set_version(fdt, 17);
38*3e6106c4SLoGin 
39*3e6106c4SLoGin 	return 0;
40*3e6106c4SLoGin }
41*3e6106c4SLoGin 
42*3e6106c4SLoGin #define FDT_RW_PROBE(fdt) \
43*3e6106c4SLoGin 	{ \
44*3e6106c4SLoGin 		int err_; \
45*3e6106c4SLoGin 		if ((err_ = fdt_rw_probe_(fdt)) != 0) \
46*3e6106c4SLoGin 			return err_; \
47*3e6106c4SLoGin 	}
48*3e6106c4SLoGin 
fdt_data_size_(void * fdt)49*3e6106c4SLoGin static inline unsigned int fdt_data_size_(void *fdt)
50*3e6106c4SLoGin {
51*3e6106c4SLoGin 	return fdt_off_dt_strings(fdt) + fdt_size_dt_strings(fdt);
52*3e6106c4SLoGin }
53*3e6106c4SLoGin 
fdt_splice_(void * fdt,void * splicepoint,int oldlen,int newlen)54*3e6106c4SLoGin static int fdt_splice_(void *fdt, void *splicepoint, int oldlen, int newlen)
55*3e6106c4SLoGin {
56*3e6106c4SLoGin 	char *p = splicepoint;
57*3e6106c4SLoGin 	unsigned int dsize = fdt_data_size_(fdt);
58*3e6106c4SLoGin 	size_t soff = p - (char *)fdt;
59*3e6106c4SLoGin 
60*3e6106c4SLoGin 	if ((oldlen < 0) || (soff + oldlen < soff) || (soff + oldlen > dsize))
61*3e6106c4SLoGin 		return -FDT_ERR_BADOFFSET;
62*3e6106c4SLoGin 	if ((p < (char *)fdt) || (dsize + newlen < (unsigned)oldlen))
63*3e6106c4SLoGin 		return -FDT_ERR_BADOFFSET;
64*3e6106c4SLoGin 	if (dsize - oldlen + newlen > fdt_totalsize(fdt))
65*3e6106c4SLoGin 		return -FDT_ERR_NOSPACE;
66*3e6106c4SLoGin 	memmove(p + newlen, p + oldlen, ((char *)fdt + dsize) - (p + oldlen));
67*3e6106c4SLoGin 	return 0;
68*3e6106c4SLoGin }
69*3e6106c4SLoGin 
fdt_splice_mem_rsv_(void * fdt,struct fdt_reserve_entry * p,int oldn,int newn)70*3e6106c4SLoGin static int fdt_splice_mem_rsv_(void *fdt, struct fdt_reserve_entry *p,
71*3e6106c4SLoGin 			       int oldn, int newn)
72*3e6106c4SLoGin {
73*3e6106c4SLoGin 	int delta = (newn - oldn) * sizeof(*p);
74*3e6106c4SLoGin 	int err;
75*3e6106c4SLoGin 	err = fdt_splice_(fdt, p, oldn * sizeof(*p), newn * sizeof(*p));
76*3e6106c4SLoGin 	if (err)
77*3e6106c4SLoGin 		return err;
78*3e6106c4SLoGin 	fdt_set_off_dt_struct(fdt, fdt_off_dt_struct(fdt) + delta);
79*3e6106c4SLoGin 	fdt_set_off_dt_strings(fdt, fdt_off_dt_strings(fdt) + delta);
80*3e6106c4SLoGin 	return 0;
81*3e6106c4SLoGin }
82*3e6106c4SLoGin 
fdt_splice_struct_(void * fdt,void * p,int oldlen,int newlen)83*3e6106c4SLoGin static int fdt_splice_struct_(void *fdt, void *p,
84*3e6106c4SLoGin 			      int oldlen, int newlen)
85*3e6106c4SLoGin {
86*3e6106c4SLoGin 	int delta = newlen - oldlen;
87*3e6106c4SLoGin 	int err;
88*3e6106c4SLoGin 
89*3e6106c4SLoGin 	if ((err = fdt_splice_(fdt, p, oldlen, newlen)))
90*3e6106c4SLoGin 		return err;
91*3e6106c4SLoGin 
92*3e6106c4SLoGin 	fdt_set_size_dt_struct(fdt, fdt_size_dt_struct(fdt) + delta);
93*3e6106c4SLoGin 	fdt_set_off_dt_strings(fdt, fdt_off_dt_strings(fdt) + delta);
94*3e6106c4SLoGin 	return 0;
95*3e6106c4SLoGin }
96*3e6106c4SLoGin 
97*3e6106c4SLoGin /* Must only be used to roll back in case of error */
fdt_del_last_string_(void * fdt,const char * s)98*3e6106c4SLoGin static void fdt_del_last_string_(void *fdt, const char *s)
99*3e6106c4SLoGin {
100*3e6106c4SLoGin 	int newlen = strlen(s) + 1;
101*3e6106c4SLoGin 
102*3e6106c4SLoGin 	fdt_set_size_dt_strings(fdt, fdt_size_dt_strings(fdt) - newlen);
103*3e6106c4SLoGin }
104*3e6106c4SLoGin 
fdt_splice_string_(void * fdt,int newlen)105*3e6106c4SLoGin static int fdt_splice_string_(void *fdt, int newlen)
106*3e6106c4SLoGin {
107*3e6106c4SLoGin 	void *p = (char *)fdt
108*3e6106c4SLoGin 		+ fdt_off_dt_strings(fdt) + fdt_size_dt_strings(fdt);
109*3e6106c4SLoGin 	int err;
110*3e6106c4SLoGin 
111*3e6106c4SLoGin 	if ((err = fdt_splice_(fdt, p, 0, newlen)))
112*3e6106c4SLoGin 		return err;
113*3e6106c4SLoGin 
114*3e6106c4SLoGin 	fdt_set_size_dt_strings(fdt, fdt_size_dt_strings(fdt) + newlen);
115*3e6106c4SLoGin 	return 0;
116*3e6106c4SLoGin }
117*3e6106c4SLoGin 
118*3e6106c4SLoGin /**
119*3e6106c4SLoGin  * fdt_find_add_string_() - Find or allocate a string
120*3e6106c4SLoGin  *
121*3e6106c4SLoGin  * @fdt: pointer to the device tree to check/adjust
122*3e6106c4SLoGin  * @s: string to find/add
123*3e6106c4SLoGin  * @allocated: Set to 0 if the string was found, 1 if not found and so
124*3e6106c4SLoGin  *	allocated. Ignored if can_assume(NO_ROLLBACK)
125*3e6106c4SLoGin  * @return offset of string in the string table (whether found or added)
126*3e6106c4SLoGin  */
fdt_find_add_string_(void * fdt,const char * s,int * allocated)127*3e6106c4SLoGin static int fdt_find_add_string_(void *fdt, const char *s, int *allocated)
128*3e6106c4SLoGin {
129*3e6106c4SLoGin 	char *strtab = (char *)fdt + fdt_off_dt_strings(fdt);
130*3e6106c4SLoGin 	const char *p;
131*3e6106c4SLoGin 	char *new;
132*3e6106c4SLoGin 	int len = strlen(s) + 1;
133*3e6106c4SLoGin 	int err;
134*3e6106c4SLoGin 
135*3e6106c4SLoGin 	if (!can_assume(NO_ROLLBACK))
136*3e6106c4SLoGin 		*allocated = 0;
137*3e6106c4SLoGin 
138*3e6106c4SLoGin 	p = fdt_find_string_(strtab, fdt_size_dt_strings(fdt), s);
139*3e6106c4SLoGin 	if (p)
140*3e6106c4SLoGin 		/* found it */
141*3e6106c4SLoGin 		return (p - strtab);
142*3e6106c4SLoGin 
143*3e6106c4SLoGin 	new = strtab + fdt_size_dt_strings(fdt);
144*3e6106c4SLoGin 	err = fdt_splice_string_(fdt, len);
145*3e6106c4SLoGin 	if (err)
146*3e6106c4SLoGin 		return err;
147*3e6106c4SLoGin 
148*3e6106c4SLoGin 	if (!can_assume(NO_ROLLBACK))
149*3e6106c4SLoGin 		*allocated = 1;
150*3e6106c4SLoGin 
151*3e6106c4SLoGin 	memcpy(new, s, len);
152*3e6106c4SLoGin 	return (new - strtab);
153*3e6106c4SLoGin }
154*3e6106c4SLoGin 
fdt_add_mem_rsv(void * fdt,uint64_t address,uint64_t size)155*3e6106c4SLoGin int fdt_add_mem_rsv(void *fdt, uint64_t address, uint64_t size)
156*3e6106c4SLoGin {
157*3e6106c4SLoGin 	struct fdt_reserve_entry *re;
158*3e6106c4SLoGin 	int err;
159*3e6106c4SLoGin 
160*3e6106c4SLoGin 	FDT_RW_PROBE(fdt);
161*3e6106c4SLoGin 
162*3e6106c4SLoGin 	re = fdt_mem_rsv_w_(fdt, fdt_num_mem_rsv(fdt));
163*3e6106c4SLoGin 	err = fdt_splice_mem_rsv_(fdt, re, 0, 1);
164*3e6106c4SLoGin 	if (err)
165*3e6106c4SLoGin 		return err;
166*3e6106c4SLoGin 
167*3e6106c4SLoGin 	re->address = cpu_to_fdt64(address);
168*3e6106c4SLoGin 	re->size = cpu_to_fdt64(size);
169*3e6106c4SLoGin 	return 0;
170*3e6106c4SLoGin }
171*3e6106c4SLoGin 
fdt_del_mem_rsv(void * fdt,int n)172*3e6106c4SLoGin int fdt_del_mem_rsv(void *fdt, int n)
173*3e6106c4SLoGin {
174*3e6106c4SLoGin 	struct fdt_reserve_entry *re = fdt_mem_rsv_w_(fdt, n);
175*3e6106c4SLoGin 
176*3e6106c4SLoGin 	FDT_RW_PROBE(fdt);
177*3e6106c4SLoGin 
178*3e6106c4SLoGin 	if (n >= fdt_num_mem_rsv(fdt))
179*3e6106c4SLoGin 		return -FDT_ERR_NOTFOUND;
180*3e6106c4SLoGin 
181*3e6106c4SLoGin 	return fdt_splice_mem_rsv_(fdt, re, 1, 0);
182*3e6106c4SLoGin }
183*3e6106c4SLoGin 
fdt_resize_property_(void * fdt,int nodeoffset,const char * name,int len,struct fdt_property ** prop)184*3e6106c4SLoGin static int fdt_resize_property_(void *fdt, int nodeoffset, const char *name,
185*3e6106c4SLoGin 				int len, struct fdt_property **prop)
186*3e6106c4SLoGin {
187*3e6106c4SLoGin 	int oldlen;
188*3e6106c4SLoGin 	int err;
189*3e6106c4SLoGin 
190*3e6106c4SLoGin 	*prop = fdt_get_property_w(fdt, nodeoffset, name, &oldlen);
191*3e6106c4SLoGin 	if (!*prop)
192*3e6106c4SLoGin 		return oldlen;
193*3e6106c4SLoGin 
194*3e6106c4SLoGin 	if ((err = fdt_splice_struct_(fdt, (*prop)->data, FDT_TAGALIGN(oldlen),
195*3e6106c4SLoGin 				      FDT_TAGALIGN(len))))
196*3e6106c4SLoGin 		return err;
197*3e6106c4SLoGin 
198*3e6106c4SLoGin 	(*prop)->len = cpu_to_fdt32(len);
199*3e6106c4SLoGin 	return 0;
200*3e6106c4SLoGin }
201*3e6106c4SLoGin 
fdt_add_property_(void * fdt,int nodeoffset,const char * name,int len,struct fdt_property ** prop)202*3e6106c4SLoGin static int fdt_add_property_(void *fdt, int nodeoffset, const char *name,
203*3e6106c4SLoGin 			     int len, struct fdt_property **prop)
204*3e6106c4SLoGin {
205*3e6106c4SLoGin 	int proplen;
206*3e6106c4SLoGin 	int nextoffset;
207*3e6106c4SLoGin 	int namestroff;
208*3e6106c4SLoGin 	int err;
209*3e6106c4SLoGin 	int allocated;
210*3e6106c4SLoGin 
211*3e6106c4SLoGin 	if ((nextoffset = fdt_check_node_offset_(fdt, nodeoffset)) < 0)
212*3e6106c4SLoGin 		return nextoffset;
213*3e6106c4SLoGin 
214*3e6106c4SLoGin 	namestroff = fdt_find_add_string_(fdt, name, &allocated);
215*3e6106c4SLoGin 	if (namestroff < 0)
216*3e6106c4SLoGin 		return namestroff;
217*3e6106c4SLoGin 
218*3e6106c4SLoGin 	*prop = fdt_offset_ptr_w_(fdt, nextoffset);
219*3e6106c4SLoGin 	proplen = sizeof(**prop) + FDT_TAGALIGN(len);
220*3e6106c4SLoGin 
221*3e6106c4SLoGin 	err = fdt_splice_struct_(fdt, *prop, 0, proplen);
222*3e6106c4SLoGin 	if (err) {
223*3e6106c4SLoGin 		/* Delete the string if we failed to add it */
224*3e6106c4SLoGin 		if (!can_assume(NO_ROLLBACK) && allocated)
225*3e6106c4SLoGin 			fdt_del_last_string_(fdt, name);
226*3e6106c4SLoGin 		return err;
227*3e6106c4SLoGin 	}
228*3e6106c4SLoGin 
229*3e6106c4SLoGin 	(*prop)->tag = cpu_to_fdt32(FDT_PROP);
230*3e6106c4SLoGin 	(*prop)->nameoff = cpu_to_fdt32(namestroff);
231*3e6106c4SLoGin 	(*prop)->len = cpu_to_fdt32(len);
232*3e6106c4SLoGin 	return 0;
233*3e6106c4SLoGin }
234*3e6106c4SLoGin 
fdt_set_name(void * fdt,int nodeoffset,const char * name)235*3e6106c4SLoGin int fdt_set_name(void *fdt, int nodeoffset, const char *name)
236*3e6106c4SLoGin {
237*3e6106c4SLoGin 	char *namep;
238*3e6106c4SLoGin 	int oldlen, newlen;
239*3e6106c4SLoGin 	int err;
240*3e6106c4SLoGin 
241*3e6106c4SLoGin 	FDT_RW_PROBE(fdt);
242*3e6106c4SLoGin 
243*3e6106c4SLoGin 	namep = (char *)(uintptr_t)fdt_get_name(fdt, nodeoffset, &oldlen);
244*3e6106c4SLoGin 	if (!namep)
245*3e6106c4SLoGin 		return oldlen;
246*3e6106c4SLoGin 
247*3e6106c4SLoGin 	newlen = strlen(name);
248*3e6106c4SLoGin 
249*3e6106c4SLoGin 	err = fdt_splice_struct_(fdt, namep, FDT_TAGALIGN(oldlen+1),
250*3e6106c4SLoGin 				 FDT_TAGALIGN(newlen+1));
251*3e6106c4SLoGin 	if (err)
252*3e6106c4SLoGin 		return err;
253*3e6106c4SLoGin 
254*3e6106c4SLoGin 	memcpy(namep, name, newlen+1);
255*3e6106c4SLoGin 	return 0;
256*3e6106c4SLoGin }
257*3e6106c4SLoGin 
fdt_setprop_placeholder(void * fdt,int nodeoffset,const char * name,int len,void ** prop_data)258*3e6106c4SLoGin int fdt_setprop_placeholder(void *fdt, int nodeoffset, const char *name,
259*3e6106c4SLoGin 			    int len, void **prop_data)
260*3e6106c4SLoGin {
261*3e6106c4SLoGin 	struct fdt_property *prop;
262*3e6106c4SLoGin 	int err;
263*3e6106c4SLoGin 
264*3e6106c4SLoGin 	FDT_RW_PROBE(fdt);
265*3e6106c4SLoGin 
266*3e6106c4SLoGin 	err = fdt_resize_property_(fdt, nodeoffset, name, len, &prop);
267*3e6106c4SLoGin 	if (err == -FDT_ERR_NOTFOUND)
268*3e6106c4SLoGin 		err = fdt_add_property_(fdt, nodeoffset, name, len, &prop);
269*3e6106c4SLoGin 	if (err)
270*3e6106c4SLoGin 		return err;
271*3e6106c4SLoGin 
272*3e6106c4SLoGin 	*prop_data = prop->data;
273*3e6106c4SLoGin 	return 0;
274*3e6106c4SLoGin }
275*3e6106c4SLoGin 
fdt_setprop(void * fdt,int nodeoffset,const char * name,const void * val,int len)276*3e6106c4SLoGin int fdt_setprop(void *fdt, int nodeoffset, const char *name,
277*3e6106c4SLoGin 		const void *val, int len)
278*3e6106c4SLoGin {
279*3e6106c4SLoGin 	void *prop_data;
280*3e6106c4SLoGin 	int err;
281*3e6106c4SLoGin 
282*3e6106c4SLoGin 	err = fdt_setprop_placeholder(fdt, nodeoffset, name, len, &prop_data);
283*3e6106c4SLoGin 	if (err)
284*3e6106c4SLoGin 		return err;
285*3e6106c4SLoGin 
286*3e6106c4SLoGin 	if (len)
287*3e6106c4SLoGin 		memcpy(prop_data, val, len);
288*3e6106c4SLoGin 	return 0;
289*3e6106c4SLoGin }
290*3e6106c4SLoGin 
fdt_appendprop(void * fdt,int nodeoffset,const char * name,const void * val,int len)291*3e6106c4SLoGin int fdt_appendprop(void *fdt, int nodeoffset, const char *name,
292*3e6106c4SLoGin 		   const void *val, int len)
293*3e6106c4SLoGin {
294*3e6106c4SLoGin 	struct fdt_property *prop;
295*3e6106c4SLoGin 	int err, oldlen, newlen;
296*3e6106c4SLoGin 
297*3e6106c4SLoGin 	FDT_RW_PROBE(fdt);
298*3e6106c4SLoGin 
299*3e6106c4SLoGin 	prop = fdt_get_property_w(fdt, nodeoffset, name, &oldlen);
300*3e6106c4SLoGin 	if (prop) {
301*3e6106c4SLoGin 		newlen = len + oldlen;
302*3e6106c4SLoGin 		err = fdt_splice_struct_(fdt, prop->data,
303*3e6106c4SLoGin 					 FDT_TAGALIGN(oldlen),
304*3e6106c4SLoGin 					 FDT_TAGALIGN(newlen));
305*3e6106c4SLoGin 		if (err)
306*3e6106c4SLoGin 			return err;
307*3e6106c4SLoGin 		prop->len = cpu_to_fdt32(newlen);
308*3e6106c4SLoGin 		memcpy(prop->data + oldlen, val, len);
309*3e6106c4SLoGin 	} else {
310*3e6106c4SLoGin 		err = fdt_add_property_(fdt, nodeoffset, name, len, &prop);
311*3e6106c4SLoGin 		if (err)
312*3e6106c4SLoGin 			return err;
313*3e6106c4SLoGin 		memcpy(prop->data, val, len);
314*3e6106c4SLoGin 	}
315*3e6106c4SLoGin 	return 0;
316*3e6106c4SLoGin }
317*3e6106c4SLoGin 
fdt_delprop(void * fdt,int nodeoffset,const char * name)318*3e6106c4SLoGin int fdt_delprop(void *fdt, int nodeoffset, const char *name)
319*3e6106c4SLoGin {
320*3e6106c4SLoGin 	struct fdt_property *prop;
321*3e6106c4SLoGin 	int len, proplen;
322*3e6106c4SLoGin 
323*3e6106c4SLoGin 	FDT_RW_PROBE(fdt);
324*3e6106c4SLoGin 
325*3e6106c4SLoGin 	prop = fdt_get_property_w(fdt, nodeoffset, name, &len);
326*3e6106c4SLoGin 	if (!prop)
327*3e6106c4SLoGin 		return len;
328*3e6106c4SLoGin 
329*3e6106c4SLoGin 	proplen = sizeof(*prop) + FDT_TAGALIGN(len);
330*3e6106c4SLoGin 	return fdt_splice_struct_(fdt, prop, proplen, 0);
331*3e6106c4SLoGin }
332*3e6106c4SLoGin 
fdt_add_subnode_namelen(void * fdt,int parentoffset,const char * name,int namelen)333*3e6106c4SLoGin int fdt_add_subnode_namelen(void *fdt, int parentoffset,
334*3e6106c4SLoGin 			    const char *name, int namelen)
335*3e6106c4SLoGin {
336*3e6106c4SLoGin 	struct fdt_node_header *nh;
337*3e6106c4SLoGin 	int offset, nextoffset;
338*3e6106c4SLoGin 	int nodelen;
339*3e6106c4SLoGin 	int err;
340*3e6106c4SLoGin 	uint32_t tag;
341*3e6106c4SLoGin 	fdt32_t *endtag;
342*3e6106c4SLoGin 
343*3e6106c4SLoGin 	FDT_RW_PROBE(fdt);
344*3e6106c4SLoGin 
345*3e6106c4SLoGin 	offset = fdt_subnode_offset_namelen(fdt, parentoffset, name, namelen);
346*3e6106c4SLoGin 	if (offset >= 0)
347*3e6106c4SLoGin 		return -FDT_ERR_EXISTS;
348*3e6106c4SLoGin 	else if (offset != -FDT_ERR_NOTFOUND)
349*3e6106c4SLoGin 		return offset;
350*3e6106c4SLoGin 
351*3e6106c4SLoGin 	/* Try to place the new node after the parent's properties */
352*3e6106c4SLoGin 	tag = fdt_next_tag(fdt, parentoffset, &nextoffset);
353*3e6106c4SLoGin 	/* the fdt_subnode_offset_namelen() should ensure this never hits */
354*3e6106c4SLoGin 	if (!can_assume(LIBFDT_FLAWLESS) && (tag != FDT_BEGIN_NODE))
355*3e6106c4SLoGin 		return -FDT_ERR_INTERNAL;
356*3e6106c4SLoGin 	do {
357*3e6106c4SLoGin 		offset = nextoffset;
358*3e6106c4SLoGin 		tag = fdt_next_tag(fdt, offset, &nextoffset);
359*3e6106c4SLoGin 	} while ((tag == FDT_PROP) || (tag == FDT_NOP));
360*3e6106c4SLoGin 
361*3e6106c4SLoGin 	nh = fdt_offset_ptr_w_(fdt, offset);
362*3e6106c4SLoGin 	nodelen = sizeof(*nh) + FDT_TAGALIGN(namelen+1) + FDT_TAGSIZE;
363*3e6106c4SLoGin 
364*3e6106c4SLoGin 	err = fdt_splice_struct_(fdt, nh, 0, nodelen);
365*3e6106c4SLoGin 	if (err)
366*3e6106c4SLoGin 		return err;
367*3e6106c4SLoGin 
368*3e6106c4SLoGin 	nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE);
369*3e6106c4SLoGin 	memset(nh->name, 0, FDT_TAGALIGN(namelen+1));
370*3e6106c4SLoGin 	memcpy(nh->name, name, namelen);
371*3e6106c4SLoGin 	endtag = (fdt32_t *)((char *)nh + nodelen - FDT_TAGSIZE);
372*3e6106c4SLoGin 	*endtag = cpu_to_fdt32(FDT_END_NODE);
373*3e6106c4SLoGin 
374*3e6106c4SLoGin 	return offset;
375*3e6106c4SLoGin }
376*3e6106c4SLoGin 
fdt_add_subnode(void * fdt,int parentoffset,const char * name)377*3e6106c4SLoGin int fdt_add_subnode(void *fdt, int parentoffset, const char *name)
378*3e6106c4SLoGin {
379*3e6106c4SLoGin 	return fdt_add_subnode_namelen(fdt, parentoffset, name, strlen(name));
380*3e6106c4SLoGin }
381*3e6106c4SLoGin 
fdt_del_node(void * fdt,int nodeoffset)382*3e6106c4SLoGin int fdt_del_node(void *fdt, int nodeoffset)
383*3e6106c4SLoGin {
384*3e6106c4SLoGin 	int endoffset;
385*3e6106c4SLoGin 
386*3e6106c4SLoGin 	FDT_RW_PROBE(fdt);
387*3e6106c4SLoGin 
388*3e6106c4SLoGin 	endoffset = fdt_node_end_offset_(fdt, nodeoffset);
389*3e6106c4SLoGin 	if (endoffset < 0)
390*3e6106c4SLoGin 		return endoffset;
391*3e6106c4SLoGin 
392*3e6106c4SLoGin 	return fdt_splice_struct_(fdt, fdt_offset_ptr_w_(fdt, nodeoffset),
393*3e6106c4SLoGin 				  endoffset - nodeoffset, 0);
394*3e6106c4SLoGin }
395*3e6106c4SLoGin 
fdt_packblocks_(const char * old,char * new,int mem_rsv_size,int struct_size,int strings_size)396*3e6106c4SLoGin static void fdt_packblocks_(const char *old, char *new,
397*3e6106c4SLoGin 			    int mem_rsv_size,
398*3e6106c4SLoGin 			    int struct_size,
399*3e6106c4SLoGin 			    int strings_size)
400*3e6106c4SLoGin {
401*3e6106c4SLoGin 	int mem_rsv_off, struct_off, strings_off;
402*3e6106c4SLoGin 
403*3e6106c4SLoGin 	mem_rsv_off = FDT_ALIGN(sizeof(struct fdt_header), 8);
404*3e6106c4SLoGin 	struct_off = mem_rsv_off + mem_rsv_size;
405*3e6106c4SLoGin 	strings_off = struct_off + struct_size;
406*3e6106c4SLoGin 
407*3e6106c4SLoGin 	memmove(new + mem_rsv_off, old + fdt_off_mem_rsvmap(old), mem_rsv_size);
408*3e6106c4SLoGin 	fdt_set_off_mem_rsvmap(new, mem_rsv_off);
409*3e6106c4SLoGin 
410*3e6106c4SLoGin 	memmove(new + struct_off, old + fdt_off_dt_struct(old), struct_size);
411*3e6106c4SLoGin 	fdt_set_off_dt_struct(new, struct_off);
412*3e6106c4SLoGin 	fdt_set_size_dt_struct(new, struct_size);
413*3e6106c4SLoGin 
414*3e6106c4SLoGin 	memmove(new + strings_off, old + fdt_off_dt_strings(old), strings_size);
415*3e6106c4SLoGin 	fdt_set_off_dt_strings(new, strings_off);
416*3e6106c4SLoGin 	fdt_set_size_dt_strings(new, fdt_size_dt_strings(old));
417*3e6106c4SLoGin }
418*3e6106c4SLoGin 
fdt_open_into(const void * fdt,void * buf,int bufsize)419*3e6106c4SLoGin int fdt_open_into(const void *fdt, void *buf, int bufsize)
420*3e6106c4SLoGin {
421*3e6106c4SLoGin 	int err;
422*3e6106c4SLoGin 	int mem_rsv_size, struct_size;
423*3e6106c4SLoGin 	int newsize;
424*3e6106c4SLoGin 	const char *fdtstart = fdt;
425*3e6106c4SLoGin 	const char *fdtend = fdtstart + fdt_totalsize(fdt);
426*3e6106c4SLoGin 	char *tmp;
427*3e6106c4SLoGin 
428*3e6106c4SLoGin 	FDT_RO_PROBE(fdt);
429*3e6106c4SLoGin 
430*3e6106c4SLoGin 	mem_rsv_size = (fdt_num_mem_rsv(fdt)+1)
431*3e6106c4SLoGin 		* sizeof(struct fdt_reserve_entry);
432*3e6106c4SLoGin 
433*3e6106c4SLoGin 	if (can_assume(LATEST) || fdt_version(fdt) >= 17) {
434*3e6106c4SLoGin 		struct_size = fdt_size_dt_struct(fdt);
435*3e6106c4SLoGin 	} else if (fdt_version(fdt) == 16) {
436*3e6106c4SLoGin 		struct_size = 0;
437*3e6106c4SLoGin 		while (fdt_next_tag(fdt, struct_size, &struct_size) != FDT_END)
438*3e6106c4SLoGin 			;
439*3e6106c4SLoGin 		if (struct_size < 0)
440*3e6106c4SLoGin 			return struct_size;
441*3e6106c4SLoGin 	} else {
442*3e6106c4SLoGin 		return -FDT_ERR_BADVERSION;
443*3e6106c4SLoGin 	}
444*3e6106c4SLoGin 
445*3e6106c4SLoGin 	if (can_assume(LIBFDT_ORDER) ||
446*3e6106c4SLoGin 	    !fdt_blocks_misordered_(fdt, mem_rsv_size, struct_size)) {
447*3e6106c4SLoGin 		/* no further work necessary */
448*3e6106c4SLoGin 		err = fdt_move(fdt, buf, bufsize);
449*3e6106c4SLoGin 		if (err)
450*3e6106c4SLoGin 			return err;
451*3e6106c4SLoGin 		fdt_set_version(buf, 17);
452*3e6106c4SLoGin 		fdt_set_size_dt_struct(buf, struct_size);
453*3e6106c4SLoGin 		fdt_set_totalsize(buf, bufsize);
454*3e6106c4SLoGin 		return 0;
455*3e6106c4SLoGin 	}
456*3e6106c4SLoGin 
457*3e6106c4SLoGin 	/* Need to reorder */
458*3e6106c4SLoGin 	newsize = FDT_ALIGN(sizeof(struct fdt_header), 8) + mem_rsv_size
459*3e6106c4SLoGin 		+ struct_size + fdt_size_dt_strings(fdt);
460*3e6106c4SLoGin 
461*3e6106c4SLoGin 	if (bufsize < newsize)
462*3e6106c4SLoGin 		return -FDT_ERR_NOSPACE;
463*3e6106c4SLoGin 
464*3e6106c4SLoGin 	/* First attempt to build converted tree at beginning of buffer */
465*3e6106c4SLoGin 	tmp = buf;
466*3e6106c4SLoGin 	/* But if that overlaps with the old tree... */
467*3e6106c4SLoGin 	if (((tmp + newsize) > fdtstart) && (tmp < fdtend)) {
468*3e6106c4SLoGin 		/* Try right after the old tree instead */
469*3e6106c4SLoGin 		tmp = (char *)(uintptr_t)fdtend;
470*3e6106c4SLoGin 		if ((tmp + newsize) > ((char *)buf + bufsize))
471*3e6106c4SLoGin 			return -FDT_ERR_NOSPACE;
472*3e6106c4SLoGin 	}
473*3e6106c4SLoGin 
474*3e6106c4SLoGin 	fdt_packblocks_(fdt, tmp, mem_rsv_size, struct_size,
475*3e6106c4SLoGin 			fdt_size_dt_strings(fdt));
476*3e6106c4SLoGin 	memmove(buf, tmp, newsize);
477*3e6106c4SLoGin 
478*3e6106c4SLoGin 	fdt_set_magic(buf, FDT_MAGIC);
479*3e6106c4SLoGin 	fdt_set_totalsize(buf, bufsize);
480*3e6106c4SLoGin 	fdt_set_version(buf, 17);
481*3e6106c4SLoGin 	fdt_set_last_comp_version(buf, 16);
482*3e6106c4SLoGin 	fdt_set_boot_cpuid_phys(buf, fdt_boot_cpuid_phys(fdt));
483*3e6106c4SLoGin 
484*3e6106c4SLoGin 	return 0;
485*3e6106c4SLoGin }
486*3e6106c4SLoGin 
fdt_pack(void * fdt)487*3e6106c4SLoGin int fdt_pack(void *fdt)
488*3e6106c4SLoGin {
489*3e6106c4SLoGin 	int mem_rsv_size;
490*3e6106c4SLoGin 
491*3e6106c4SLoGin 	FDT_RW_PROBE(fdt);
492*3e6106c4SLoGin 
493*3e6106c4SLoGin 	mem_rsv_size = (fdt_num_mem_rsv(fdt)+1)
494*3e6106c4SLoGin 		* sizeof(struct fdt_reserve_entry);
495*3e6106c4SLoGin 	fdt_packblocks_(fdt, fdt, mem_rsv_size, fdt_size_dt_struct(fdt),
496*3e6106c4SLoGin 			fdt_size_dt_strings(fdt));
497*3e6106c4SLoGin 	fdt_set_totalsize(fdt, fdt_data_size_(fdt));
498*3e6106c4SLoGin 
499*3e6106c4SLoGin 	return 0;
500*3e6106c4SLoGin }
501