Blame view

common/bloblist.c 5.24 KB
9f407d4ef   Simon Glass   Add core support ...
1
2
3
4
5
6
7
8
9
10
11
  // SPDX-License-Identifier: GPL-2.0+
  /*
   * Copyright 2018 Google, Inc
   * Written by Simon Glass <sjg@chromium.org>
   */
  
  #include <common.h>
  #include <bloblist.h>
  #include <log.h>
  #include <mapmem.h>
  #include <spl.h>
3db711085   Simon Glass   crc32: Use the cr...
12
  #include <u-boot/crc.h>
9f407d4ef   Simon Glass   Add core support ...
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
  
  DECLARE_GLOBAL_DATA_PTR;
  
  struct bloblist_rec *bloblist_first_blob(struct bloblist_hdr *hdr)
  {
  	if (hdr->alloced <= hdr->hdr_size)
  		return NULL;
  	return (struct bloblist_rec *)((void *)hdr + hdr->hdr_size);
  }
  
  struct bloblist_rec *bloblist_next_blob(struct bloblist_hdr *hdr,
  					struct bloblist_rec *rec)
  {
  	ulong offset;
  
  	offset = (void *)rec - (void *)hdr;
  	offset += rec->hdr_size + ALIGN(rec->size, BLOBLIST_ALIGN);
  	if (offset >= hdr->alloced)
  		return NULL;
  	return (struct bloblist_rec *)((void *)hdr + offset);
  }
  
  #define foreach_rec(_rec, _hdr) \
  	for (_rec = bloblist_first_blob(_hdr); \
  	     _rec; \
  	     _rec = bloblist_next_blob(_hdr, _rec))
  
  static struct bloblist_rec *bloblist_findrec(uint tag)
  {
  	struct bloblist_hdr *hdr = gd->bloblist;
  	struct bloblist_rec *rec;
  
  	if (!hdr)
  		return NULL;
  
  	foreach_rec(rec, hdr) {
  		if (rec->tag == tag)
  			return rec;
  	}
  
  	return NULL;
  }
  
  static int bloblist_addrec(uint tag, int size, struct bloblist_rec **recp)
  {
  	struct bloblist_hdr *hdr = gd->bloblist;
  	struct bloblist_rec *rec;
  	int new_alloced;
02247c188   Simon Glass   bloblist: Tidy up...
61
  	new_alloced = hdr->alloced + sizeof(*rec) + ALIGN(size, BLOBLIST_ALIGN);
9f407d4ef   Simon Glass   Add core support ...
62
63
  	if (new_alloced >= hdr->size) {
  		log(LOGC_BLOBLIST, LOGL_ERR,
02247c188   Simon Glass   bloblist: Tidy up...
64
65
  		    "Failed to allocate %x bytes size=%x, need size=%x
  ",
9f407d4ef   Simon Glass   Add core support ...
66
67
68
69
70
71
72
73
74
75
  		    size, hdr->size, new_alloced);
  		return log_msg_ret("bloblist add", -ENOSPC);
  	}
  	rec = (void *)hdr + hdr->alloced;
  	hdr->alloced = new_alloced;
  
  	rec->tag = tag;
  	rec->hdr_size = sizeof(*rec);
  	rec->size = size;
  	rec->spare = 0;
b83994dec   Simon Glass   bloblist: Zero re...
76
77
78
  
  	/* Zero the record data */
  	memset(rec + 1, '\0', rec->size);
9f407d4ef   Simon Glass   Add core support ...
79
80
81
82
83
84
85
86
87
88
89
  	*recp = rec;
  
  	return 0;
  }
  
  static int bloblist_ensurerec(uint tag, struct bloblist_rec **recp, int size)
  {
  	struct bloblist_rec *rec;
  
  	rec = bloblist_findrec(tag);
  	if (rec) {
5b044548f   Simon Glass   bloblist: Add a n...
90
91
  		if (size && size != rec->size) {
  			*recp = rec;
9f407d4ef   Simon Glass   Add core support ...
92
  			return -ESPIPE;
5b044548f   Simon Glass   bloblist: Add a n...
93
  		}
9f407d4ef   Simon Glass   Add core support ...
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
  	} else {
  		int ret;
  
  		ret = bloblist_addrec(tag, size, &rec);
  		if (ret)
  			return ret;
  	}
  	*recp = rec;
  
  	return 0;
  }
  
  void *bloblist_find(uint tag, int size)
  {
  	struct bloblist_rec *rec;
  
  	rec = bloblist_findrec(tag);
  	if (!rec)
  		return NULL;
  	if (size && size != rec->size)
  		return NULL;
  
  	return (void *)rec + rec->hdr_size;
  }
  
  void *bloblist_add(uint tag, int size)
  {
  	struct bloblist_rec *rec;
  
  	if (bloblist_addrec(tag, size, &rec))
  		return NULL;
  
  	return rec + 1;
  }
  
  int bloblist_ensure_size(uint tag, int size, void **blobp)
  {
  	struct bloblist_rec *rec;
  	int ret;
  
  	ret = bloblist_ensurerec(tag, &rec, size);
  	if (ret)
  		return ret;
  	*blobp = (void *)rec + rec->hdr_size;
  
  	return 0;
  }
  
  void *bloblist_ensure(uint tag, int size)
  {
  	struct bloblist_rec *rec;
  
  	if (bloblist_ensurerec(tag, &rec, size))
  		return NULL;
  
  	return (void *)rec + rec->hdr_size;
  }
5b044548f   Simon Glass   bloblist: Add a n...
151
152
153
154
155
156
157
158
159
160
161
162
163
164
  int bloblist_ensure_size_ret(uint tag, int *sizep, void **blobp)
  {
  	struct bloblist_rec *rec;
  	int ret;
  
  	ret = bloblist_ensurerec(tag, &rec, *sizep);
  	if (ret == -ESPIPE)
  		*sizep = rec->size;
  	else if (ret)
  		return ret;
  	*blobp = (void *)rec + rec->hdr_size;
  
  	return 0;
  }
9f407d4ef   Simon Glass   Add core support ...
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
  static u32 bloblist_calc_chksum(struct bloblist_hdr *hdr)
  {
  	struct bloblist_rec *rec;
  	u32 chksum;
  
  	chksum = crc32(0, (unsigned char *)hdr,
  		       offsetof(struct bloblist_hdr, chksum));
  	foreach_rec(rec, hdr) {
  		chksum = crc32(chksum, (void *)rec, rec->hdr_size);
  		chksum = crc32(chksum, (void *)rec + rec->hdr_size, rec->size);
  	}
  
  	return chksum;
  }
  
  int bloblist_new(ulong addr, uint size, uint flags)
  {
  	struct bloblist_hdr *hdr;
  
  	if (size < sizeof(*hdr))
  		return log_ret(-ENOSPC);
  	if (addr & (BLOBLIST_ALIGN - 1))
  		return log_ret(-EFAULT);
  	hdr = map_sysmem(addr, size);
  	memset(hdr, '\0', sizeof(*hdr));
  	hdr->version = BLOBLIST_VERSION;
  	hdr->hdr_size = sizeof(*hdr);
  	hdr->flags = flags;
  	hdr->magic = BLOBLIST_MAGIC;
  	hdr->size = size;
  	hdr->alloced = hdr->hdr_size;
  	hdr->chksum = 0;
  	gd->bloblist = hdr;
  
  	return 0;
  }
  
  int bloblist_check(ulong addr, uint size)
  {
  	struct bloblist_hdr *hdr;
  	u32 chksum;
  
  	hdr = map_sysmem(addr, sizeof(*hdr));
  	if (hdr->magic != BLOBLIST_MAGIC)
  		return log_msg_ret("Bad magic", -ENOENT);
  	if (hdr->version != BLOBLIST_VERSION)
  		return log_msg_ret("Bad version", -EPROTONOSUPPORT);
  	if (size && hdr->size != size)
  		return log_msg_ret("Bad size", -EFBIG);
  	chksum = bloblist_calc_chksum(hdr);
  	if (hdr->chksum != chksum) {
  		log(LOGC_BLOBLIST, LOGL_ERR, "Checksum %x != %x
  ", hdr->chksum,
  		    chksum);
  		return log_msg_ret("Bad checksum", -EIO);
  	}
  	gd->bloblist = hdr;
  
  	return 0;
  }
  
  int bloblist_finish(void)
  {
  	struct bloblist_hdr *hdr = gd->bloblist;
  
  	hdr->chksum = bloblist_calc_chksum(hdr);
  
  	return 0;
  }
  
  int bloblist_init(void)
  {
  	bool expected;
  	int ret = -ENOENT;
  
  	/**
  	 * Wed expect to find an existing bloblist in the first phase of U-Boot
  	 * that runs
  	 */
  	expected = !u_boot_first_phase();
  	if (expected)
  		ret = bloblist_check(CONFIG_BLOBLIST_ADDR,
  				     CONFIG_BLOBLIST_SIZE);
  	if (ret) {
  		log(LOGC_BLOBLIST, expected ? LOGL_WARNING : LOGL_DEBUG,
  		    "Existing bloblist not found: creating new bloblist
  ");
  		ret = bloblist_new(CONFIG_BLOBLIST_ADDR, CONFIG_BLOBLIST_SIZE,
  				   0);
  	} else {
  		log(LOGC_BLOBLIST, LOGL_DEBUG, "Found existing bloblist
  ");
  	}
  
  	return ret;
  }