mirror of
				https://github.com/torvalds/linux.git
				synced 2025-10-31 00:28:52 +02:00 
			
		
		
		
	 c072d2b495
			
		
	
	
		c072d2b495
		
	
	
	
	
		
			
			This adds the following commits from upstream: 52f07dcca47c dtc: Add informative error for stray identifier 9cabae6b0351 checks: Fix detection of 'i2c-bus' node 605dc044c3fe New helper to add markers 7da5d106c740 fdtput: Fix documentation about existing nodes 53c63dd421d7 dtdiff: Use input format dtb for dtbo files 84d9dd2fcbc8 dtc: Add data_insert_data function 97011d1f4e98 meson: use override_find_program/override_dependency b841391bbd08 srcpos: Define srcpos_free e0b7749c26a9 Add alloc_marker ecb21febfdd3 meson: port python bindings to build natively via meson and meson-python 7ebfcac8520e Makefile: deprecate in favor of Meson f4c53f4ebf78 Use __ASSEMBLER__ instead of __ASSEMBLY__ 205fbef17b7b Fix some typos da85f91931e5 Remove duplicated words in documentation and comments dd1b3e532d22 meson: support building libfdt without static library 1ccd232709d4 meson: don't build test programs by default ce1d8588880a tests: When building .so from -O asm output mark as non-executable stack 915daadbb62d Start with empty __local_fixups__ and __fixups__ nodes 4ea851f5a44d Let get_subnode() not return deleted nodes 175d2a564c47 Use build_root_node() instead of open-coding it 18f4f305fdd7 build: fix -Dtools=false build 267efc7d4694 checks: Warn about missing #address-cells for interrupt parents 755db115355b libfdt: Add fdt_setprop_namelen_string() bdca8612009e libfdt: Add fdt_setprop_namelen() 0f69cedc08fc libfdt_internal: fdt_find_string_len_() 56b2b30c5bd0 libfdt: add fdt_get_property_namelen_w() 1e8c5f60e127 Add clang-format config 6f183c7d9246 checks: Relax avoid_unnecessary_addr_size check to allow child ranges properties 66c7d0e6f4f3 tests/sw_tree1.c: fix unitialized saveptr 9a969f3b70b0 pylibfdt/libfdt.i: fix backwards compatibility of return values 4292b072a23a .github/workflows: update ubuntu runner to supported version 1c745a9bd169 libfdt: Remove fdt parameter from overlay_fixup_one_phandle b3bbee6b1242 libfdt: Move the SBOM authors section d1656730abfb Add a SBOM file in CycloneDX format b75515af4576 libfdt: Remove extra semi-colons outside functions 2d10aa2afe35 Bump version to v1.7.2 48795c82bdb6 pylibfdt: Don't emit warnings from swig generate C code 838f11e830e3 fdtoverlay: provide better error message for missing `/__symbols__` d1e2384185c5 pylibfdt/libfdt.i: Use SWIG_AppendOutput 18aa49a9f68d Escape spaces in depfile with backslashes. f9968fa06921 libfdt.h: whitespace consistency fixups 9b5f65fb3d8d libfdt.h: typo and consistency fixes 99031e3a4a6e Bump version to v1.7.1 3d5e376925fd setup: Move setting of srcdir down to the bottom e277553b9880 setup: Collect top-level code together 7e5a88984081 setup: Move version and full_description into a function 78b6a85c113b Tidy up some pylint warnings 3501d373f0a2 Require Python 3 The added include of string.h in libfdt_internal.h breaks the kernel overriding libfdt_env.h with its own string functions, so it is dropped. An upstream fix is pending. Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
		
			
				
	
	
		
			421 lines
		
	
	
	
		
			8.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			421 lines
		
	
	
	
		
			8.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0-or-later
 | |
| /*
 | |
|  * Copyright 2007 Jon Loeliger, Freescale Semiconductor, Inc.
 | |
|  */
 | |
| 
 | |
| #ifndef _GNU_SOURCE
 | |
| #define _GNU_SOURCE
 | |
| #endif
 | |
| 
 | |
| #include <stdio.h>
 | |
| 
 | |
| #include "dtc.h"
 | |
| #include "srcpos.h"
 | |
| 
 | |
| /* A node in our list of directories to search for source/include files */
 | |
| struct search_path {
 | |
| 	struct search_path *next;	/* next node in list, NULL for end */
 | |
| 	const char *dirname;		/* name of directory to search */
 | |
| };
 | |
| 
 | |
| /* This is the list of directories that we search for source files */
 | |
| static struct search_path *search_path_head, **search_path_tail;
 | |
| 
 | |
| /* Detect infinite include recursion. */
 | |
| #define MAX_SRCFILE_DEPTH     (200)
 | |
| static int srcfile_depth; /* = 0 */
 | |
| 
 | |
| static char *get_dirname(const char *path)
 | |
| {
 | |
| 	const char *slash = strrchr(path, '/');
 | |
| 
 | |
| 	if (slash) {
 | |
| 		int len = slash - path;
 | |
| 		char *dir = xmalloc(len + 1);
 | |
| 
 | |
| 		memcpy(dir, path, len);
 | |
| 		dir[len] = '\0';
 | |
| 		return dir;
 | |
| 	}
 | |
| 	return NULL;
 | |
| }
 | |
| 
 | |
| FILE *depfile; /* = NULL */
 | |
| struct srcfile_state *current_srcfile; /* = NULL */
 | |
| static char *initial_path; /* = NULL */
 | |
| static int initial_pathlen; /* = 0 */
 | |
| static bool initial_cpp = true;
 | |
| 
 | |
| static void set_initial_path(char *fname)
 | |
| {
 | |
| 	int i, len = strlen(fname);
 | |
| 
 | |
| 	xasprintf(&initial_path, "%s", fname);
 | |
| 	initial_pathlen = 0;
 | |
| 	for (i = 0; i != len; i++)
 | |
| 		if (initial_path[i] == '/')
 | |
| 			initial_pathlen++;
 | |
| }
 | |
| 
 | |
| static char *shorten_to_initial_path(char *fname)
 | |
| {
 | |
| 	char *p1, *p2, *prevslash1 = NULL;
 | |
| 	int slashes = 0;
 | |
| 
 | |
| 	for (p1 = fname, p2 = initial_path; *p1 && *p2; p1++, p2++) {
 | |
| 		if (*p1 != *p2)
 | |
| 			break;
 | |
| 		if (*p1 == '/') {
 | |
| 			prevslash1 = p1;
 | |
| 			slashes++;
 | |
| 		}
 | |
| 	}
 | |
| 	p1 = prevslash1 + 1;
 | |
| 	if (prevslash1) {
 | |
| 		int diff = initial_pathlen - slashes, i, j;
 | |
| 		int restlen = strlen(fname) - (p1 - fname);
 | |
| 		char *res;
 | |
| 
 | |
| 		res = xmalloc((3 * diff) + restlen + 1);
 | |
| 		for (i = 0, j = 0; i != diff; i++) {
 | |
| 			res[j++] = '.';
 | |
| 			res[j++] = '.';
 | |
| 			res[j++] = '/';
 | |
| 		}
 | |
| 		strcpy(res + j, p1);
 | |
| 		return res;
 | |
| 	}
 | |
| 	return NULL;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * Try to open a file in a given directory.
 | |
|  *
 | |
|  * If the filename is an absolute path, then dirname is ignored. If it is a
 | |
|  * relative path, then we look in that directory for the file.
 | |
|  *
 | |
|  * @param dirname	Directory to look in, or NULL for none
 | |
|  * @param fname		Filename to look for
 | |
|  * @param fp		Set to NULL if file did not open
 | |
|  * @return allocated filename on success (caller must free), NULL on failure
 | |
|  */
 | |
| static char *try_open(const char *dirname, const char *fname, FILE **fp)
 | |
| {
 | |
| 	char *fullname;
 | |
| 
 | |
| 	if (!dirname || fname[0] == '/')
 | |
| 		fullname = xstrdup(fname);
 | |
| 	else
 | |
| 		fullname = join_path(dirname, fname);
 | |
| 
 | |
| 	*fp = fopen(fullname, "rb");
 | |
| 	if (!*fp) {
 | |
| 		free(fullname);
 | |
| 		fullname = NULL;
 | |
| 	}
 | |
| 
 | |
| 	return fullname;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * Open a file for read access
 | |
|  *
 | |
|  * If it is a relative filename, we search the full search path for it.
 | |
|  *
 | |
|  * @param fname	Filename to open
 | |
|  * @param fp	Returns pointer to opened FILE, or NULL on failure
 | |
|  * @return pointer to allocated filename, which caller must free
 | |
|  */
 | |
| static char *fopen_any_on_path(const char *fname, FILE **fp)
 | |
| {
 | |
| 	const char *cur_dir = NULL;
 | |
| 	struct search_path *node;
 | |
| 	char *fullname;
 | |
| 
 | |
| 	/* Try current directory first */
 | |
| 	assert(fp);
 | |
| 	if (current_srcfile)
 | |
| 		cur_dir = current_srcfile->dir;
 | |
| 	fullname = try_open(cur_dir, fname, fp);
 | |
| 
 | |
| 	/* Failing that, try each search path in turn */
 | |
| 	for (node = search_path_head; !*fp && node; node = node->next)
 | |
| 		fullname = try_open(node->dirname, fname, fp);
 | |
| 
 | |
| 	return fullname;
 | |
| }
 | |
| 
 | |
| FILE *srcfile_relative_open(const char *fname, char **fullnamep)
 | |
| {
 | |
| 	FILE *f;
 | |
| 	char *fullname;
 | |
| 
 | |
| 	if (streq(fname, "-")) {
 | |
| 		f = stdin;
 | |
| 		fullname = xstrdup("<stdin>");
 | |
| 	} else {
 | |
| 		fullname = fopen_any_on_path(fname, &f);
 | |
| 		if (!f)
 | |
| 			die("Couldn't open \"%s\": %s\n", fname,
 | |
| 			    strerror(errno));
 | |
| 	}
 | |
| 
 | |
| 	if (depfile) {
 | |
| 		fputc(' ', depfile);
 | |
| 		fprint_path_escaped(depfile, fullname);
 | |
| 	}
 | |
| 
 | |
| 	if (fullnamep)
 | |
| 		*fullnamep = fullname;
 | |
| 	else
 | |
| 		free(fullname);
 | |
| 
 | |
| 	return f;
 | |
| }
 | |
| 
 | |
| void srcfile_push(const char *fname)
 | |
| {
 | |
| 	struct srcfile_state *srcfile;
 | |
| 
 | |
| 	if (srcfile_depth++ >= MAX_SRCFILE_DEPTH)
 | |
| 		die("Includes nested too deeply");
 | |
| 
 | |
| 	srcfile = xmalloc(sizeof(*srcfile));
 | |
| 
 | |
| 	srcfile->f = srcfile_relative_open(fname, &srcfile->name);
 | |
| 	srcfile->dir = get_dirname(srcfile->name);
 | |
| 	srcfile->prev = current_srcfile;
 | |
| 
 | |
| 	srcfile->lineno = 1;
 | |
| 	srcfile->colno = 1;
 | |
| 
 | |
| 	current_srcfile = srcfile;
 | |
| 
 | |
| 	if (srcfile_depth == 1)
 | |
| 		set_initial_path(srcfile->name);
 | |
| }
 | |
| 
 | |
| bool srcfile_pop(void)
 | |
| {
 | |
| 	struct srcfile_state *srcfile = current_srcfile;
 | |
| 
 | |
| 	assert(srcfile);
 | |
| 
 | |
| 	current_srcfile = srcfile->prev;
 | |
| 
 | |
| 	if (fclose(srcfile->f))
 | |
| 		die("Error closing \"%s\": %s\n", srcfile->name,
 | |
| 		    strerror(errno));
 | |
| 
 | |
| 	/* FIXME: We allow the srcfile_state structure to leak,
 | |
| 	 * because it could still be referenced from a location
 | |
| 	 * variable being carried through the parser somewhere.  To
 | |
| 	 * fix this we could either allocate all the files from a
 | |
| 	 * table, or use a pool allocator. */
 | |
| 
 | |
| 	return current_srcfile ? true : false;
 | |
| }
 | |
| 
 | |
| void srcfile_add_search_path(const char *dirname)
 | |
| {
 | |
| 	struct search_path *node;
 | |
| 
 | |
| 	/* Create the node */
 | |
| 	node = xmalloc(sizeof(*node));
 | |
| 	node->next = NULL;
 | |
| 	node->dirname = xstrdup(dirname);
 | |
| 
 | |
| 	/* Add to the end of our list */
 | |
| 	if (search_path_tail)
 | |
| 		*search_path_tail = node;
 | |
| 	else
 | |
| 		search_path_head = node;
 | |
| 	search_path_tail = &node->next;
 | |
| }
 | |
| 
 | |
| void srcpos_update(struct srcpos *pos, const char *text, int len)
 | |
| {
 | |
| 	int i;
 | |
| 
 | |
| 	pos->file = current_srcfile;
 | |
| 
 | |
| 	pos->first_line = current_srcfile->lineno;
 | |
| 	pos->first_column = current_srcfile->colno;
 | |
| 
 | |
| 	for (i = 0; i < len; i++)
 | |
| 		if (text[i] == '\n') {
 | |
| 			current_srcfile->lineno++;
 | |
| 			current_srcfile->colno = 1;
 | |
| 		} else {
 | |
| 			current_srcfile->colno++;
 | |
| 		}
 | |
| 
 | |
| 	pos->last_line = current_srcfile->lineno;
 | |
| 	pos->last_column = current_srcfile->colno;
 | |
| }
 | |
| 
 | |
| struct srcpos *
 | |
| srcpos_copy(struct srcpos *pos)
 | |
| {
 | |
| 	struct srcpos *pos_new;
 | |
| 	struct srcfile_state *srcfile_state;
 | |
| 
 | |
| 	if (!pos)
 | |
| 		return NULL;
 | |
| 
 | |
| 	pos_new = xmalloc(sizeof(struct srcpos));
 | |
| 	assert(pos->next == NULL);
 | |
| 	memcpy(pos_new, pos, sizeof(struct srcpos));
 | |
| 
 | |
| 	/* allocate without free */
 | |
| 	srcfile_state = xmalloc(sizeof(struct srcfile_state));
 | |
| 	memcpy(srcfile_state, pos->file, sizeof(struct srcfile_state));
 | |
| 	pos_new->file = srcfile_state;
 | |
| 
 | |
| 	return pos_new;
 | |
| }
 | |
| 
 | |
| struct srcpos *srcpos_extend(struct srcpos *pos, struct srcpos *newtail)
 | |
| {
 | |
| 	struct srcpos *p;
 | |
| 
 | |
| 	if (!pos)
 | |
| 		return newtail;
 | |
| 
 | |
| 	for (p = pos; p->next != NULL; p = p->next);
 | |
| 	p->next = newtail;
 | |
| 	return pos;
 | |
| }
 | |
| 
 | |
| void srcpos_free(struct srcpos *pos)
 | |
| {
 | |
| 	struct srcpos *p_next;
 | |
| 
 | |
| 	while (pos) {
 | |
| 		p_next = pos->next;
 | |
| 		free(pos);
 | |
| 		pos = p_next;
 | |
| 	}
 | |
| }
 | |
| 
 | |
| char *
 | |
| srcpos_string(struct srcpos *pos)
 | |
| {
 | |
| 	const char *fname = "<no-file>";
 | |
| 	char *pos_str;
 | |
| 
 | |
| 	if (pos->file && pos->file->name)
 | |
| 		fname = pos->file->name;
 | |
| 
 | |
| 
 | |
| 	if (pos->first_line != pos->last_line)
 | |
| 		xasprintf(&pos_str, "%s:%d.%d-%d.%d", fname,
 | |
| 			  pos->first_line, pos->first_column,
 | |
| 			  pos->last_line, pos->last_column);
 | |
| 	else if (pos->first_column != pos->last_column)
 | |
| 		xasprintf(&pos_str, "%s:%d.%d-%d", fname,
 | |
| 			  pos->first_line, pos->first_column,
 | |
| 			  pos->last_column);
 | |
| 	else
 | |
| 		xasprintf(&pos_str, "%s:%d.%d", fname,
 | |
| 			  pos->first_line, pos->first_column);
 | |
| 
 | |
| 	return pos_str;
 | |
| }
 | |
| 
 | |
| static char *
 | |
| srcpos_string_comment(struct srcpos *pos, bool first_line, int level)
 | |
| {
 | |
| 	char *pos_str, *fresh_fname = NULL, *first, *rest;
 | |
| 	const char *fname;
 | |
| 
 | |
| 	if (!pos) {
 | |
| 		if (level > 1) {
 | |
| 			xasprintf(&pos_str, "<no-file>:<no-line>");
 | |
| 			return pos_str;
 | |
| 		} else {
 | |
| 			return NULL;
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if (!pos->file)
 | |
| 		fname = "<no-file>";
 | |
| 	else if (!pos->file->name)
 | |
| 		fname = "<no-filename>";
 | |
| 	else if (level > 1)
 | |
| 		fname = pos->file->name;
 | |
| 	else {
 | |
| 		fresh_fname = shorten_to_initial_path(pos->file->name);
 | |
| 		if (fresh_fname)
 | |
| 			fname = fresh_fname;
 | |
| 		else
 | |
| 			fname = pos->file->name;
 | |
| 	}
 | |
| 
 | |
| 	if (level > 1)
 | |
| 		xasprintf(&first, "%s:%d:%d-%d:%d", fname,
 | |
| 			  pos->first_line, pos->first_column,
 | |
| 			  pos->last_line, pos->last_column);
 | |
| 	else
 | |
| 		xasprintf(&first, "%s:%d", fname,
 | |
| 			  first_line ? pos->first_line : pos->last_line);
 | |
| 
 | |
| 	if (fresh_fname)
 | |
| 		free(fresh_fname);
 | |
| 
 | |
| 	if (pos->next != NULL) {
 | |
| 		rest = srcpos_string_comment(pos->next, first_line, level);
 | |
| 		xasprintf(&pos_str, "%s, %s", first, rest);
 | |
| 		free(first);
 | |
| 		free(rest);
 | |
| 	} else {
 | |
| 		pos_str = first;
 | |
| 	}
 | |
| 
 | |
| 	return pos_str;
 | |
| }
 | |
| 
 | |
| char *srcpos_string_first(struct srcpos *pos, int level)
 | |
| {
 | |
| 	return srcpos_string_comment(pos, true, level);
 | |
| }
 | |
| 
 | |
| char *srcpos_string_last(struct srcpos *pos, int level)
 | |
| {
 | |
| 	return srcpos_string_comment(pos, false, level);
 | |
| }
 | |
| 
 | |
| void srcpos_verror(struct srcpos *pos, const char *prefix,
 | |
| 		   const char *fmt, va_list va)
 | |
| {
 | |
| 	char *srcstr;
 | |
| 
 | |
| 	srcstr = srcpos_string(pos);
 | |
| 
 | |
| 	fprintf(stderr, "%s: %s ", prefix, srcstr);
 | |
| 	vfprintf(stderr, fmt, va);
 | |
| 	fprintf(stderr, "\n");
 | |
| 
 | |
| 	free(srcstr);
 | |
| }
 | |
| 
 | |
| void srcpos_error(struct srcpos *pos, const char *prefix,
 | |
| 		  const char *fmt, ...)
 | |
| {
 | |
| 	va_list va;
 | |
| 
 | |
| 	va_start(va, fmt);
 | |
| 	srcpos_verror(pos, prefix, fmt, va);
 | |
| 	va_end(va);
 | |
| }
 | |
| 
 | |
| void srcpos_set_line(char *f, int l)
 | |
| {
 | |
| 	current_srcfile->name = f;
 | |
| 	current_srcfile->lineno = l;
 | |
| 
 | |
| 	if (initial_cpp) {
 | |
| 		initial_cpp = false;
 | |
| 		set_initial_path(f);
 | |
| 	}
 | |
| }
 |