Blame view

scripts/dtc/srcpos.c 6.83 KB
a4da2e3ec   David Gibson   [POWERPC] Merge d...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  /*
   * Copyright 2007 Jon Loeliger, Freescale Semiconductor, Inc.
   *
   * This program is free software; you can redistribute it and/or
   * modify it under the terms of the GNU General Public License as
   * published by the Free Software Foundation; either version 2 of the
   * License, or (at your option) any later version.
   *
   *  This program is distributed in the hope that it will be useful,
   *  but WITHOUT ANY WARRANTY; without even the implied warranty of
   *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   *  General Public License for more details.
   *
   *  You should have received a copy of the GNU General Public License
   *  along with this program; if not, write to the Free Software
   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
   *                                                                   USA
   */
658f29a51   John Bonesio   of/flattree: Upda...
19
20
21
  #define _GNU_SOURCE
  
  #include <stdio.h>
a4da2e3ec   David Gibson   [POWERPC] Merge d...
22
23
  #include "dtc.h"
  #include "srcpos.h"
cd296721a   Stephen Warren   dtc: import lates...
24
25
26
27
28
29
30
31
  /* 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;
a4da2e3ec   David Gibson   [POWERPC] Merge d...
32

476059711   Rob Herring   scripts/dtc: Upda...
33
  static char *get_dirname(const char *path)
658f29a51   John Bonesio   of/flattree: Upda...
34
35
36
37
38
39
40
41
42
43
44
45
46
  {
  	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;
  }
136ec2049   Stephen Warren   dtc: Implement -d...
47
  FILE *depfile; /* = NULL */
658f29a51   John Bonesio   of/flattree: Upda...
48
  struct srcfile_state *current_srcfile; /* = NULL */
a4da2e3ec   David Gibson   [POWERPC] Merge d...
49

658f29a51   John Bonesio   of/flattree: Upda...
50
51
52
  /* Detect infinite include recursion. */
  #define MAX_SRCFILE_DEPTH     (100)
  static int srcfile_depth; /* = 0 */
cd296721a   Stephen Warren   dtc: import lates...
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
  
  /**
   * 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);
476059711   Rob Herring   scripts/dtc: Upda...
73
  	*fp = fopen(fullname, "rb");
cd296721a   Stephen Warren   dtc: import lates...
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
  	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;
  }
658f29a51   John Bonesio   of/flattree: Upda...
109
  FILE *srcfile_relative_open(const char *fname, char **fullnamep)
a4da2e3ec   David Gibson   [POWERPC] Merge d...
110
  {
658f29a51   John Bonesio   of/flattree: Upda...
111
  	FILE *f;
ed95d7450   David Gibson   powerpc: Update i...
112
  	char *fullname;
a4da2e3ec   David Gibson   [POWERPC] Merge d...
113

658f29a51   John Bonesio   of/flattree: Upda...
114
115
116
  	if (streq(fname, "-")) {
  		f = stdin;
  		fullname = xstrdup("<stdin>");
ed95d7450   David Gibson   powerpc: Update i...
117
  	} else {
cd296721a   Stephen Warren   dtc: import lates...
118
  		fullname = fopen_any_on_path(fname, &f);
658f29a51   John Bonesio   of/flattree: Upda...
119
120
121
122
  		if (!f)
  			die("Couldn't open \"%s\": %s
  ", fname,
  			    strerror(errno));
ed95d7450   David Gibson   powerpc: Update i...
123
  	}
a4da2e3ec   David Gibson   [POWERPC] Merge d...
124

136ec2049   Stephen Warren   dtc: Implement -d...
125
126
  	if (depfile)
  		fprintf(depfile, " %s", fullname);
658f29a51   John Bonesio   of/flattree: Upda...
127
128
129
  	if (fullnamep)
  		*fullnamep = fullname;
  	else
ed95d7450   David Gibson   powerpc: Update i...
130
  		free(fullname);
a4da2e3ec   David Gibson   [POWERPC] Merge d...
131

658f29a51   John Bonesio   of/flattree: Upda...
132
  	return f;
a4da2e3ec   David Gibson   [POWERPC] Merge d...
133
  }
658f29a51   John Bonesio   of/flattree: Upda...
134
135
136
137
138
139
140
141
142
143
  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);
476059711   Rob Herring   scripts/dtc: Upda...
144
  	srcfile->dir = get_dirname(srcfile->name);
658f29a51   John Bonesio   of/flattree: Upda...
145
146
147
148
149
150
151
  	srcfile->prev = current_srcfile;
  
  	srcfile->lineno = 1;
  	srcfile->colno = 1;
  
  	current_srcfile = srcfile;
  }
a4da2e3ec   David Gibson   [POWERPC] Merge d...
152

476059711   Rob Herring   scripts/dtc: Upda...
153
  bool srcfile_pop(void)
ed95d7450   David Gibson   powerpc: Update i...
154
  {
658f29a51   John Bonesio   of/flattree: Upda...
155
  	struct srcfile_state *srcfile = current_srcfile;
a4da2e3ec   David Gibson   [POWERPC] Merge d...
156

658f29a51   John Bonesio   of/flattree: Upda...
157
  	assert(srcfile);
a4da2e3ec   David Gibson   [POWERPC] Merge d...
158

658f29a51   John Bonesio   of/flattree: Upda...
159
  	current_srcfile = srcfile->prev;
a4da2e3ec   David Gibson   [POWERPC] Merge d...
160

658f29a51   John Bonesio   of/flattree: Upda...
161
162
163
164
  	if (fclose(srcfile->f))
  		die("Error closing \"%s\": %s
  ", srcfile->name,
  		    strerror(errno));
ed95d7450   David Gibson   powerpc: Update i...
165

658f29a51   John Bonesio   of/flattree: Upda...
166
167
168
169
170
  	/* 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. */
a4da2e3ec   David Gibson   [POWERPC] Merge d...
171

476059711   Rob Herring   scripts/dtc: Upda...
172
  	return current_srcfile ? true : false;
658f29a51   John Bonesio   of/flattree: Upda...
173
  }
a4da2e3ec   David Gibson   [POWERPC] Merge d...
174

cd296721a   Stephen Warren   dtc: import lates...
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
  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;
  }
658f29a51   John Bonesio   of/flattree: Upda...
191
192
193
  /*
   * The empty source position.
   */
ed95d7450   David Gibson   powerpc: Update i...
194

658f29a51   John Bonesio   of/flattree: Upda...
195
196
197
198
199
200
201
  struct srcpos srcpos_empty = {
  	.first_line = 0,
  	.first_column = 0,
  	.last_line = 0,
  	.last_column = 0,
  	.file = NULL,
  };
a4da2e3ec   David Gibson   [POWERPC] Merge d...
202

658f29a51   John Bonesio   of/flattree: Upda...
203
  #define TAB_SIZE      8
a4da2e3ec   David Gibson   [POWERPC] Merge d...
204

658f29a51   John Bonesio   of/flattree: Upda...
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
  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] == '
  ') {
  			current_srcfile->lineno++;
  			current_srcfile->colno = 1;
  		} else if (text[i] == '\t') {
  			current_srcfile->colno =
  				ALIGN(current_srcfile->colno, TAB_SIZE);
  		} else {
  			current_srcfile->colno++;
  		}
  
  	pos->last_line = current_srcfile->lineno;
  	pos->last_column = current_srcfile->colno;
  }
ed95d7450   David Gibson   powerpc: Update i...
229

658f29a51   John Bonesio   of/flattree: Upda...
230
231
232
233
  struct srcpos *
  srcpos_copy(struct srcpos *pos)
  {
  	struct srcpos *pos_new;
ed95d7450   David Gibson   powerpc: Update i...
234

658f29a51   John Bonesio   of/flattree: Upda...
235
236
237
238
239
  	pos_new = xmalloc(sizeof(struct srcpos));
  	memcpy(pos_new, pos, sizeof(struct srcpos));
  
  	return pos_new;
  }
658f29a51   John Bonesio   of/flattree: Upda...
240
241
242
243
244
  char *
  srcpos_string(struct srcpos *pos)
  {
  	const char *fname = "<no-file>";
  	char *pos_str;
658f29a51   John Bonesio   of/flattree: Upda...
245

89d123106   Rob Herring   scripts/dtc: Upda...
246
  	if (pos->file && pos->file->name)
658f29a51   John Bonesio   of/flattree: Upda...
247
248
249
250
  		fname = pos->file->name;
  
  
  	if (pos->first_line != pos->last_line)
6f05afcbb   Rob Herring   scripts/dtc: Upda...
251
252
253
  		xasprintf(&pos_str, "%s:%d.%d-%d.%d", fname,
  			  pos->first_line, pos->first_column,
  			  pos->last_line, pos->last_column);
658f29a51   John Bonesio   of/flattree: Upda...
254
  	else if (pos->first_column != pos->last_column)
6f05afcbb   Rob Herring   scripts/dtc: Upda...
255
256
257
  		xasprintf(&pos_str, "%s:%d.%d-%d", fname,
  			  pos->first_line, pos->first_column,
  			  pos->last_column);
658f29a51   John Bonesio   of/flattree: Upda...
258
  	else
6f05afcbb   Rob Herring   scripts/dtc: Upda...
259
260
  		xasprintf(&pos_str, "%s:%d.%d", fname,
  			  pos->first_line, pos->first_column);
658f29a51   John Bonesio   of/flattree: Upda...
261
262
263
  
  	return pos_str;
  }
476059711   Rob Herring   scripts/dtc: Upda...
264
265
  void srcpos_verror(struct srcpos *pos, const char *prefix,
  		   const char *fmt, va_list va)
658f29a51   John Bonesio   of/flattree: Upda...
266
  {
476059711   Rob Herring   scripts/dtc: Upda...
267
  	char *srcstr;
658f29a51   John Bonesio   of/flattree: Upda...
268

476059711   Rob Herring   scripts/dtc: Upda...
269
  	srcstr = srcpos_string(pos);
a4da2e3ec   David Gibson   [POWERPC] Merge d...
270

476059711   Rob Herring   scripts/dtc: Upda...
271
272
273
274
  	fprintf(stderr, "%s: %s ", prefix, srcstr);
  	vfprintf(stderr, fmt, va);
  	fprintf(stderr, "
  ");
658f29a51   John Bonesio   of/flattree: Upda...
275

476059711   Rob Herring   scripts/dtc: Upda...
276
  	free(srcstr);
658f29a51   John Bonesio   of/flattree: Upda...
277
  }
476059711   Rob Herring   scripts/dtc: Upda...
278
279
  void srcpos_error(struct srcpos *pos, const char *prefix,
  		  const char *fmt, ...)
658f29a51   John Bonesio   of/flattree: Upda...
280
  {
658f29a51   John Bonesio   of/flattree: Upda...
281
  	va_list va;
ed95d7450   David Gibson   powerpc: Update i...
282

476059711   Rob Herring   scripts/dtc: Upda...
283
284
  	va_start(va, fmt);
  	srcpos_verror(pos, prefix, fmt, va);
658f29a51   John Bonesio   of/flattree: Upda...
285
  	va_end(va);
a4da2e3ec   David Gibson   [POWERPC] Merge d...
286
  }
cd296721a   Stephen Warren   dtc: import lates...
287
288
289
290
291
292
  
  void srcpos_set_line(char *f, int l)
  {
  	current_srcfile->name = f;
  	current_srcfile->lineno = l;
  }