forked from Minki/linux
b24413180f
Many source files in the tree are missing licensing information, which makes it harder for compliance tools to determine the correct license. By default all files without license information are under the default license of the kernel, which is GPL version 2. Update the files which contain no license information with the 'GPL-2.0' SPDX license identifier. The SPDX identifier is a legally binding shorthand, which can be used instead of the full boiler plate text. This patch is based on work done by Thomas Gleixner and Kate Stewart and Philippe Ombredanne. How this work was done: Patches were generated and checked against linux-4.14-rc6 for a subset of the use cases: - file had no licensing information it it. - file was a */uapi/* one with no licensing information in it, - file was a */uapi/* one with existing licensing information, Further patches will be generated in subsequent months to fix up cases where non-standard license headers were used, and references to license had to be inferred by heuristics based on keywords. The analysis to determine which SPDX License Identifier to be applied to a file was done in a spreadsheet of side by side results from of the output of two independent scanners (ScanCode & Windriver) producing SPDX tag:value files created by Philippe Ombredanne. Philippe prepared the base worksheet, and did an initial spot review of a few 1000 files. The 4.13 kernel was the starting point of the analysis with 60,537 files assessed. Kate Stewart did a file by file comparison of the scanner results in the spreadsheet to determine which SPDX license identifier(s) to be applied to the file. She confirmed any determination that was not immediately clear with lawyers working with the Linux Foundation. Criteria used to select files for SPDX license identifier tagging was: - Files considered eligible had to be source code files. - Make and config files were included as candidates if they contained >5 lines of source - File already had some variant of a license header in it (even if <5 lines). All documentation files were explicitly excluded. The following heuristics were used to determine which SPDX license identifiers to apply. - when both scanners couldn't find any license traces, file was considered to have no license information in it, and the top level COPYING file license applied. For non */uapi/* files that summary was: SPDX license identifier # files ---------------------------------------------------|------- GPL-2.0 11139 and resulted in the first patch in this series. If that file was a */uapi/* path one, it was "GPL-2.0 WITH Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was: SPDX license identifier # files ---------------------------------------------------|------- GPL-2.0 WITH Linux-syscall-note 930 and resulted in the second patch in this series. - if a file had some form of licensing information in it, and was one of the */uapi/* ones, it was denoted with the Linux-syscall-note if any GPL family license was found in the file or had no licensing in it (per prior point). Results summary: SPDX license identifier # files ---------------------------------------------------|------ GPL-2.0 WITH Linux-syscall-note 270 GPL-2.0+ WITH Linux-syscall-note 169 ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21 ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17 LGPL-2.1+ WITH Linux-syscall-note 15 GPL-1.0+ WITH Linux-syscall-note 14 ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5 LGPL-2.0+ WITH Linux-syscall-note 4 LGPL-2.1 WITH Linux-syscall-note 3 ((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3 ((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1 and that resulted in the third patch in this series. - when the two scanners agreed on the detected license(s), that became the concluded license(s). - when there was disagreement between the two scanners (one detected a license but the other didn't, or they both detected different licenses) a manual inspection of the file occurred. - In most cases a manual inspection of the information in the file resulted in a clear resolution of the license that should apply (and which scanner probably needed to revisit its heuristics). - When it was not immediately clear, the license identifier was confirmed with lawyers working with the Linux Foundation. - If there was any question as to the appropriate license identifier, the file was flagged for further research and to be revisited later in time. In total, over 70 hours of logged manual review was done on the spreadsheet to determine the SPDX license identifiers to apply to the source files by Kate, Philippe, Thomas and, in some cases, confirmation by lawyers working with the Linux Foundation. Kate also obtained a third independent scan of the 4.13 code base from FOSSology, and compared selected files where the other two scanners disagreed against that SPDX file, to see if there was new insights. The Windriver scanner is based on an older version of FOSSology in part, so they are related. Thomas did random spot checks in about 500 files from the spreadsheets for the uapi headers and agreed with SPDX license identifier in the files he inspected. For the non-uapi files Thomas did random spot checks in about 15000 files. In initial set of patches against 4.14-rc6, 3 files were found to have copy/paste license identifier errors, and have been fixed to reflect the correct identifier. Additionally Philippe spent 10 hours this week doing a detailed manual inspection and review of the 12,461 patched files from the initial patch version early this week with: - a full scancode scan run, collecting the matched texts, detected license ids and scores - reviewing anything where there was a license detected (about 500+ files) to ensure that the applied SPDX license was correct - reviewing anything where there was no detection but the patch license was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied SPDX license was correct This produced a worksheet with 20 files needing minor correction. This worksheet was then exported into 3 different .csv files for the different types of files to be modified. These .csv files were then reviewed by Greg. Thomas wrote a script to parse the csv files and add the proper SPDX tag to the file, in the format that the file expected. This script was further refined by Greg based on the output to detect more types of files automatically and to distinguish between header and source .c files (which need different comment types.) Finally Greg ran the script using the .csv files to generate the patches. Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com> Reviewed-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
394 lines
7.9 KiB
C
394 lines
7.9 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* tree.c: Basic device tree traversal/scanning for the Linux
|
|
* prom library.
|
|
*
|
|
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
|
|
* Copyright (C) 1996,1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
|
|
*/
|
|
|
|
#include <linux/string.h>
|
|
#include <linux/types.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/sched.h>
|
|
#include <linux/module.h>
|
|
|
|
#include <asm/openprom.h>
|
|
#include <asm/oplib.h>
|
|
#include <asm/ldc.h>
|
|
|
|
static phandle prom_node_to_node(const char *type, phandle node)
|
|
{
|
|
unsigned long args[5];
|
|
|
|
args[0] = (unsigned long) type;
|
|
args[1] = 1;
|
|
args[2] = 1;
|
|
args[3] = (unsigned int) node;
|
|
args[4] = (unsigned long) -1;
|
|
|
|
p1275_cmd_direct(args);
|
|
|
|
return (phandle) args[4];
|
|
}
|
|
|
|
/* Return the child of node 'node' or zero if no this node has no
|
|
* direct descendent.
|
|
*/
|
|
inline phandle __prom_getchild(phandle node)
|
|
{
|
|
return prom_node_to_node("child", node);
|
|
}
|
|
|
|
phandle prom_getchild(phandle node)
|
|
{
|
|
phandle cnode;
|
|
|
|
if ((s32)node == -1)
|
|
return 0;
|
|
cnode = __prom_getchild(node);
|
|
if ((s32)cnode == -1)
|
|
return 0;
|
|
return cnode;
|
|
}
|
|
EXPORT_SYMBOL(prom_getchild);
|
|
|
|
inline phandle prom_getparent(phandle node)
|
|
{
|
|
phandle cnode;
|
|
|
|
if ((s32)node == -1)
|
|
return 0;
|
|
cnode = prom_node_to_node("parent", node);
|
|
if ((s32)cnode == -1)
|
|
return 0;
|
|
return cnode;
|
|
}
|
|
|
|
/* Return the next sibling of node 'node' or zero if no more siblings
|
|
* at this level of depth in the tree.
|
|
*/
|
|
inline phandle __prom_getsibling(phandle node)
|
|
{
|
|
return prom_node_to_node(prom_peer_name, node);
|
|
}
|
|
|
|
phandle prom_getsibling(phandle node)
|
|
{
|
|
phandle sibnode;
|
|
|
|
if ((s32)node == -1)
|
|
return 0;
|
|
sibnode = __prom_getsibling(node);
|
|
if ((s32)sibnode == -1)
|
|
return 0;
|
|
|
|
return sibnode;
|
|
}
|
|
EXPORT_SYMBOL(prom_getsibling);
|
|
|
|
/* Return the length in bytes of property 'prop' at node 'node'.
|
|
* Return -1 on error.
|
|
*/
|
|
int prom_getproplen(phandle node, const char *prop)
|
|
{
|
|
unsigned long args[6];
|
|
|
|
if (!node || !prop)
|
|
return -1;
|
|
|
|
args[0] = (unsigned long) "getproplen";
|
|
args[1] = 2;
|
|
args[2] = 1;
|
|
args[3] = (unsigned int) node;
|
|
args[4] = (unsigned long) prop;
|
|
args[5] = (unsigned long) -1;
|
|
|
|
p1275_cmd_direct(args);
|
|
|
|
return (int) args[5];
|
|
}
|
|
EXPORT_SYMBOL(prom_getproplen);
|
|
|
|
/* Acquire a property 'prop' at node 'node' and place it in
|
|
* 'buffer' which has a size of 'bufsize'. If the acquisition
|
|
* was successful the length will be returned, else -1 is returned.
|
|
*/
|
|
int prom_getproperty(phandle node, const char *prop,
|
|
char *buffer, int bufsize)
|
|
{
|
|
unsigned long args[8];
|
|
int plen;
|
|
|
|
plen = prom_getproplen(node, prop);
|
|
if ((plen > bufsize) || (plen == 0) || (plen == -1))
|
|
return -1;
|
|
|
|
args[0] = (unsigned long) prom_getprop_name;
|
|
args[1] = 4;
|
|
args[2] = 1;
|
|
args[3] = (unsigned int) node;
|
|
args[4] = (unsigned long) prop;
|
|
args[5] = (unsigned long) buffer;
|
|
args[6] = bufsize;
|
|
args[7] = (unsigned long) -1;
|
|
|
|
p1275_cmd_direct(args);
|
|
|
|
return (int) args[7];
|
|
}
|
|
EXPORT_SYMBOL(prom_getproperty);
|
|
|
|
/* Acquire an integer property and return its value. Returns -1
|
|
* on failure.
|
|
*/
|
|
int prom_getint(phandle node, const char *prop)
|
|
{
|
|
int intprop;
|
|
|
|
if (prom_getproperty(node, prop, (char *) &intprop, sizeof(int)) != -1)
|
|
return intprop;
|
|
|
|
return -1;
|
|
}
|
|
EXPORT_SYMBOL(prom_getint);
|
|
|
|
/* Acquire an integer property, upon error return the passed default
|
|
* integer.
|
|
*/
|
|
|
|
int prom_getintdefault(phandle node, const char *property, int deflt)
|
|
{
|
|
int retval;
|
|
|
|
retval = prom_getint(node, property);
|
|
if (retval == -1)
|
|
return deflt;
|
|
|
|
return retval;
|
|
}
|
|
EXPORT_SYMBOL(prom_getintdefault);
|
|
|
|
/* Acquire a boolean property, 1=TRUE 0=FALSE. */
|
|
int prom_getbool(phandle node, const char *prop)
|
|
{
|
|
int retval;
|
|
|
|
retval = prom_getproplen(node, prop);
|
|
if (retval == -1)
|
|
return 0;
|
|
return 1;
|
|
}
|
|
EXPORT_SYMBOL(prom_getbool);
|
|
|
|
/* Acquire a property whose value is a string, returns a null
|
|
* string on error. The char pointer is the user supplied string
|
|
* buffer.
|
|
*/
|
|
void prom_getstring(phandle node, const char *prop, char *user_buf,
|
|
int ubuf_size)
|
|
{
|
|
int len;
|
|
|
|
len = prom_getproperty(node, prop, user_buf, ubuf_size);
|
|
if (len != -1)
|
|
return;
|
|
user_buf[0] = 0;
|
|
}
|
|
EXPORT_SYMBOL(prom_getstring);
|
|
|
|
/* Does the device at node 'node' have name 'name'?
|
|
* YES = 1 NO = 0
|
|
*/
|
|
int prom_nodematch(phandle node, const char *name)
|
|
{
|
|
char namebuf[128];
|
|
prom_getproperty(node, "name", namebuf, sizeof(namebuf));
|
|
if (strcmp(namebuf, name) == 0)
|
|
return 1;
|
|
return 0;
|
|
}
|
|
|
|
/* Search siblings at 'node_start' for a node with name
|
|
* 'nodename'. Return node if successful, zero if not.
|
|
*/
|
|
phandle prom_searchsiblings(phandle node_start, const char *nodename)
|
|
{
|
|
phandle thisnode;
|
|
int error;
|
|
char promlib_buf[128];
|
|
|
|
for(thisnode = node_start; thisnode;
|
|
thisnode=prom_getsibling(thisnode)) {
|
|
error = prom_getproperty(thisnode, "name", promlib_buf,
|
|
sizeof(promlib_buf));
|
|
/* Should this ever happen? */
|
|
if(error == -1) continue;
|
|
if(strcmp(nodename, promlib_buf)==0) return thisnode;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
EXPORT_SYMBOL(prom_searchsiblings);
|
|
|
|
static const char *prom_nextprop_name = "nextprop";
|
|
|
|
/* Return the first property type for node 'node'.
|
|
* buffer should be at least 32B in length
|
|
*/
|
|
char *prom_firstprop(phandle node, char *buffer)
|
|
{
|
|
unsigned long args[7];
|
|
|
|
*buffer = 0;
|
|
if ((s32)node == -1)
|
|
return buffer;
|
|
|
|
args[0] = (unsigned long) prom_nextprop_name;
|
|
args[1] = 3;
|
|
args[2] = 1;
|
|
args[3] = (unsigned int) node;
|
|
args[4] = 0;
|
|
args[5] = (unsigned long) buffer;
|
|
args[6] = (unsigned long) -1;
|
|
|
|
p1275_cmd_direct(args);
|
|
|
|
return buffer;
|
|
}
|
|
EXPORT_SYMBOL(prom_firstprop);
|
|
|
|
/* Return the property type string after property type 'oprop'
|
|
* at node 'node' . Returns NULL string if no more
|
|
* property types for this node.
|
|
*/
|
|
char *prom_nextprop(phandle node, const char *oprop, char *buffer)
|
|
{
|
|
unsigned long args[7];
|
|
char buf[32];
|
|
|
|
if ((s32)node == -1) {
|
|
*buffer = 0;
|
|
return buffer;
|
|
}
|
|
if (oprop == buffer) {
|
|
strcpy (buf, oprop);
|
|
oprop = buf;
|
|
}
|
|
|
|
args[0] = (unsigned long) prom_nextprop_name;
|
|
args[1] = 3;
|
|
args[2] = 1;
|
|
args[3] = (unsigned int) node;
|
|
args[4] = (unsigned long) oprop;
|
|
args[5] = (unsigned long) buffer;
|
|
args[6] = (unsigned long) -1;
|
|
|
|
p1275_cmd_direct(args);
|
|
|
|
return buffer;
|
|
}
|
|
EXPORT_SYMBOL(prom_nextprop);
|
|
|
|
phandle prom_finddevice(const char *name)
|
|
{
|
|
unsigned long args[5];
|
|
|
|
if (!name)
|
|
return 0;
|
|
args[0] = (unsigned long) "finddevice";
|
|
args[1] = 1;
|
|
args[2] = 1;
|
|
args[3] = (unsigned long) name;
|
|
args[4] = (unsigned long) -1;
|
|
|
|
p1275_cmd_direct(args);
|
|
|
|
return (int) args[4];
|
|
}
|
|
EXPORT_SYMBOL(prom_finddevice);
|
|
|
|
int prom_node_has_property(phandle node, const char *prop)
|
|
{
|
|
char buf [32];
|
|
|
|
*buf = 0;
|
|
do {
|
|
prom_nextprop(node, buf, buf);
|
|
if (!strcmp(buf, prop))
|
|
return 1;
|
|
} while (*buf);
|
|
return 0;
|
|
}
|
|
EXPORT_SYMBOL(prom_node_has_property);
|
|
|
|
/* Set property 'pname' at node 'node' to value 'value' which has a length
|
|
* of 'size' bytes. Return the number of bytes the prom accepted.
|
|
*/
|
|
int
|
|
prom_setprop(phandle node, const char *pname, char *value, int size)
|
|
{
|
|
unsigned long args[8];
|
|
|
|
if (size == 0)
|
|
return 0;
|
|
if ((pname == 0) || (value == 0))
|
|
return 0;
|
|
|
|
#ifdef CONFIG_SUN_LDOMS
|
|
if (ldom_domaining_enabled) {
|
|
ldom_set_var(pname, value);
|
|
return 0;
|
|
}
|
|
#endif
|
|
args[0] = (unsigned long) "setprop";
|
|
args[1] = 4;
|
|
args[2] = 1;
|
|
args[3] = (unsigned int) node;
|
|
args[4] = (unsigned long) pname;
|
|
args[5] = (unsigned long) value;
|
|
args[6] = size;
|
|
args[7] = (unsigned long) -1;
|
|
|
|
p1275_cmd_direct(args);
|
|
|
|
return (int) args[7];
|
|
}
|
|
EXPORT_SYMBOL(prom_setprop);
|
|
|
|
inline phandle prom_inst2pkg(int inst)
|
|
{
|
|
unsigned long args[5];
|
|
phandle node;
|
|
|
|
args[0] = (unsigned long) "instance-to-package";
|
|
args[1] = 1;
|
|
args[2] = 1;
|
|
args[3] = (unsigned int) inst;
|
|
args[4] = (unsigned long) -1;
|
|
|
|
p1275_cmd_direct(args);
|
|
|
|
node = (int) args[4];
|
|
if ((s32)node == -1)
|
|
return 0;
|
|
return node;
|
|
}
|
|
|
|
int prom_ihandle2path(int handle, char *buffer, int bufsize)
|
|
{
|
|
unsigned long args[7];
|
|
|
|
args[0] = (unsigned long) "instance-to-path";
|
|
args[1] = 3;
|
|
args[2] = 1;
|
|
args[3] = (unsigned int) handle;
|
|
args[4] = (unsigned long) buffer;
|
|
args[5] = bufsize;
|
|
args[6] = (unsigned long) -1;
|
|
|
|
p1275_cmd_direct(args);
|
|
|
|
return (int) args[6];
|
|
}
|