blob: a509584e5d714634a4df10ad71e0affd36ca1d26 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002/*
3 * This file is part of UBIFS.
4 *
5 * Copyright (C) 2006-2008 Nokia Corporation.
6 *
Stefan Roeseb1a14f82010-11-01 17:28:00 +01007 * (C) Copyright 2008-2010
Stefan Roese9eefe2a2009-03-19 15:35:05 +01008 * Stefan Roese, DENX Software Engineering, sr@denx.de.
9 *
Stefan Roese9eefe2a2009-03-19 15:35:05 +010010 * Authors: Artem Bityutskiy (Битюцкий Артём)
11 * Adrian Hunter
12 */
13
Simon Glass6e295182015-09-02 17:24:57 -060014#include <common.h>
Simon Glassc7694dd2019-08-01 09:46:46 -060015#include <env.h>
Simon Glass0c670fc2019-08-01 09:46:36 -060016#include <gzip.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060017#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070018#include <malloc.h>
Simon Glass6e295182015-09-02 17:24:57 -060019#include <memalign.h>
Simon Glass401d1c42020-10-30 21:38:53 -060020#include <asm/global_data.h>
Stefan Roese9eefe2a2009-03-19 15:35:05 +010021#include "ubifs.h"
Simon Glasse6f6f9e2020-05-10 11:39:58 -060022#include <part.h>
Simon Glass61b29b82020-02-03 07:36:15 -070023#include <dm/devres.h>
Ricardo Ribalda Delgadoc1a0fd52009-04-27 18:33:33 +020024#include <u-boot/zlib.h>
Stefan Roese9eefe2a2009-03-19 15:35:05 +010025
AKASHI Takahiro4839e862019-11-13 09:44:47 +090026#include <linux/compat.h>
Heiko Schocherff94bc42014-06-24 10:10:04 +020027#include <linux/err.h>
28#include <linux/lzo.h>
29
Stefan Roese9eefe2a2009-03-19 15:35:05 +010030DECLARE_GLOBAL_DATA_PTR;
31
32/* compress.c */
33
34/*
Ricardo Ribalda Delgadoc1a0fd52009-04-27 18:33:33 +020035 * We need a wrapper for zunzip() because the parameters are
Stefan Roese9eefe2a2009-03-19 15:35:05 +010036 * incompatible with the lzo decompressor.
37 */
38static int gzip_decompress(const unsigned char *in, size_t in_len,
39 unsigned char *out, size_t *out_len)
40{
Veli-Pekka Peltola8044c132012-09-05 18:05:14 +030041 return zunzip(out, *out_len, (unsigned char *)in,
42 (unsigned long *)out_len, 0, 0);
Stefan Roese9eefe2a2009-03-19 15:35:05 +010043}
44
45/* Fake description object for the "none" compressor */
46static struct ubifs_compressor none_compr = {
47 .compr_type = UBIFS_COMPR_NONE,
Heiko Schocherff94bc42014-06-24 10:10:04 +020048 .name = "none",
Stefan Roese9eefe2a2009-03-19 15:35:05 +010049 .capi_name = "",
50 .decompress = NULL,
51};
52
53static struct ubifs_compressor lzo_compr = {
54 .compr_type = UBIFS_COMPR_LZO,
Heiko Schocherff94bc42014-06-24 10:10:04 +020055#ifndef __UBOOT__
56 .comp_mutex = &lzo_mutex,
57#endif
58 .name = "lzo",
Stefan Roese9eefe2a2009-03-19 15:35:05 +010059 .capi_name = "lzo",
60 .decompress = lzo1x_decompress_safe,
61};
62
63static struct ubifs_compressor zlib_compr = {
64 .compr_type = UBIFS_COMPR_ZLIB,
Heiko Schocherff94bc42014-06-24 10:10:04 +020065#ifndef __UBOOT__
66 .comp_mutex = &deflate_mutex,
67 .decomp_mutex = &inflate_mutex,
68#endif
Stefan Roese9eefe2a2009-03-19 15:35:05 +010069 .name = "zlib",
70 .capi_name = "deflate",
71 .decompress = gzip_decompress,
72};
73
74/* All UBIFS compressors */
75struct ubifs_compressor *ubifs_compressors[UBIFS_COMPR_TYPES_CNT];
76
Heiko Schocherff94bc42014-06-24 10:10:04 +020077
78#ifdef __UBOOT__
Heiko Schocherff94bc42014-06-24 10:10:04 +020079
80struct crypto_comp {
81 int compressor;
82};
83
Heiko Schocher0195a7b2015-10-22 06:19:21 +020084static inline struct crypto_comp
85*crypto_alloc_comp(const char *alg_name, u32 type, u32 mask)
Heiko Schocherff94bc42014-06-24 10:10:04 +020086{
87 struct ubifs_compressor *comp;
88 struct crypto_comp *ptr;
89 int i = 0;
90
Marcel Ziswiler45196682015-08-18 13:06:37 +020091 ptr = malloc_cache_aligned(sizeof(struct crypto_comp));
Heiko Schocherff94bc42014-06-24 10:10:04 +020092 while (i < UBIFS_COMPR_TYPES_CNT) {
93 comp = ubifs_compressors[i];
94 if (!comp) {
95 i++;
96 continue;
97 }
98 if (strncmp(alg_name, comp->capi_name, strlen(alg_name)) == 0) {
99 ptr->compressor = i;
100 return ptr;
101 }
102 i++;
103 }
104 if (i >= UBIFS_COMPR_TYPES_CNT) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200105 dbg_gen("invalid compression type %s", alg_name);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200106 free (ptr);
107 return NULL;
108 }
109 return ptr;
110}
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200111static inline int
112crypto_comp_decompress(const struct ubifs_info *c, struct crypto_comp *tfm,
113 const u8 *src, unsigned int slen, u8 *dst,
114 unsigned int *dlen)
Heiko Schocherff94bc42014-06-24 10:10:04 +0200115{
116 struct ubifs_compressor *compr = ubifs_compressors[tfm->compressor];
117 int err;
Paul Daveye4aa10b2018-11-05 18:09:29 +1300118 size_t tmp_len = *dlen;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200119
120 if (compr->compr_type == UBIFS_COMPR_NONE) {
121 memcpy(dst, src, slen);
122 *dlen = slen;
123 return 0;
124 }
125
Paul Daveye4aa10b2018-11-05 18:09:29 +1300126 err = compr->decompress(src, slen, dst, &tmp_len);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200127 if (err)
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200128 ubifs_err(c, "cannot decompress %d bytes, compressor %s, "
Heiko Schocherff94bc42014-06-24 10:10:04 +0200129 "error %d", slen, compr->name, err);
130
Paul Daveye4aa10b2018-11-05 18:09:29 +1300131 *dlen = tmp_len;
Heiko Schocherff94bc42014-06-24 10:10:04 +0200132 return err;
133
134 return 0;
135}
Anton Habeggerdc288432015-01-22 22:29:10 +0100136
137/* from shrinker.c */
138
139/* Global clean znode counter (for all mounted UBIFS instances) */
140atomic_long_t ubifs_clean_zn_cnt;
141
Heiko Schocherff94bc42014-06-24 10:10:04 +0200142#endif
143
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100144/**
145 * ubifs_decompress - decompress data.
146 * @in_buf: data to decompress
147 * @in_len: length of the data to decompress
148 * @out_buf: output buffer where decompressed data should
149 * @out_len: output length is returned here
150 * @compr_type: type of compression
151 *
152 * This function decompresses data from buffer @in_buf into buffer @out_buf.
153 * The length of the uncompressed data is returned in @out_len. This functions
154 * returns %0 on success or a negative error code on failure.
155 */
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200156int ubifs_decompress(const struct ubifs_info *c, const void *in_buf,
157 int in_len, void *out_buf, int *out_len, int compr_type)
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100158{
159 int err;
160 struct ubifs_compressor *compr;
161
162 if (unlikely(compr_type < 0 || compr_type >= UBIFS_COMPR_TYPES_CNT)) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200163 ubifs_err(c, "invalid compression type %d", compr_type);
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100164 return -EINVAL;
165 }
166
167 compr = ubifs_compressors[compr_type];
168
169 if (unlikely(!compr->capi_name)) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200170 ubifs_err(c, "%s compression is not compiled in", compr->name);
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100171 return -EINVAL;
172 }
173
174 if (compr_type == UBIFS_COMPR_NONE) {
175 memcpy(out_buf, in_buf, in_len);
176 *out_len = in_len;
177 return 0;
178 }
179
Heiko Schocherff94bc42014-06-24 10:10:04 +0200180 if (compr->decomp_mutex)
181 mutex_lock(compr->decomp_mutex);
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200182 err = crypto_comp_decompress(c, compr->cc, in_buf, in_len, out_buf,
Heiko Schocherff94bc42014-06-24 10:10:04 +0200183 (unsigned int *)out_len);
184 if (compr->decomp_mutex)
185 mutex_unlock(compr->decomp_mutex);
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100186 if (err)
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200187 ubifs_err(c, "cannot decompress %d bytes, compressor %s,"
188 " error %d", in_len, compr->name, err);
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100189
190 return err;
191}
192
193/**
194 * compr_init - initialize a compressor.
195 * @compr: compressor description object
196 *
197 * This function initializes the requested compressor and returns zero in case
198 * of success or a negative error code in case of failure.
199 */
200static int __init compr_init(struct ubifs_compressor *compr)
201{
202 ubifs_compressors[compr->compr_type] = compr;
Peter Tyser521af042009-09-21 11:20:36 -0500203
Heiko Schocherff94bc42014-06-24 10:10:04 +0200204 if (compr->capi_name) {
205 compr->cc = crypto_alloc_comp(compr->capi_name, 0, 0);
206 if (IS_ERR(compr->cc)) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200207 dbg_gen("cannot initialize compressor %s,"
208 " error %ld", compr->name,
209 PTR_ERR(compr->cc));
Heiko Schocherff94bc42014-06-24 10:10:04 +0200210 return PTR_ERR(compr->cc);
211 }
212 }
213
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100214 return 0;
215}
216
217/**
218 * ubifs_compressors_init - initialize UBIFS compressors.
219 *
220 * This function initializes the compressor which were compiled in. Returns
221 * zero in case of success and a negative error code in case of failure.
222 */
223int __init ubifs_compressors_init(void)
224{
225 int err;
226
227 err = compr_init(&lzo_compr);
228 if (err)
229 return err;
230
231 err = compr_init(&zlib_compr);
232 if (err)
233 return err;
234
Michael Lawnickfaac4fd2009-03-19 10:06:41 +0100235 err = compr_init(&none_compr);
236 if (err)
237 return err;
238
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100239 return 0;
240}
241
242/*
243 * ubifsls...
244 */
245
246static int filldir(struct ubifs_info *c, const char *name, int namlen,
247 u64 ino, unsigned int d_type)
248{
249 struct inode *inode;
250 char filetime[32];
251
252 switch (d_type) {
253 case UBIFS_ITYPE_REG:
254 printf("\t");
255 break;
256 case UBIFS_ITYPE_DIR:
257 printf("<DIR>\t");
258 break;
259 case UBIFS_ITYPE_LNK:
260 printf("<LNK>\t");
261 break;
262 default:
263 printf("other\t");
264 break;
265 }
266
267 inode = ubifs_iget(c->vfs_sb, ino);
268 if (IS_ERR(inode)) {
269 printf("%s: Error in ubifs_iget(), ino=%lld ret=%p!\n",
270 __func__, ino, inode);
271 return -1;
272 }
273 ctime_r((time_t *)&inode->i_mtime, filetime);
274 printf("%9lld %24.24s ", inode->i_size, filetime);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200275#ifndef __UBOOT__
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100276 ubifs_iput(inode);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200277#endif
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100278
279 printf("%s\n", name);
280
281 return 0;
282}
283
284static int ubifs_printdir(struct file *file, void *dirent)
285{
286 int err, over = 0;
287 struct qstr nm;
288 union ubifs_key key;
289 struct ubifs_dent_node *dent;
290 struct inode *dir = file->f_path.dentry->d_inode;
291 struct ubifs_info *c = dir->i_sb->s_fs_info;
292
293 dbg_gen("dir ino %lu, f_pos %#llx", dir->i_ino, file->f_pos);
294
295 if (file->f_pos > UBIFS_S_KEY_HASH_MASK || file->f_pos == 2)
296 /*
297 * The directory was seek'ed to a senseless position or there
298 * are no more entries.
299 */
300 return 0;
301
302 if (file->f_pos == 1) {
303 /* Find the first entry in TNC and save it */
304 lowest_dent_key(c, &key, dir->i_ino);
305 nm.name = NULL;
306 dent = ubifs_tnc_next_ent(c, &key, &nm);
307 if (IS_ERR(dent)) {
308 err = PTR_ERR(dent);
309 goto out;
310 }
311
312 file->f_pos = key_hash_flash(c, &dent->key);
313 file->private_data = dent;
314 }
315
316 dent = file->private_data;
317 if (!dent) {
318 /*
319 * The directory was seek'ed to and is now readdir'ed.
320 * Find the entry corresponding to @file->f_pos or the
321 * closest one.
322 */
323 dent_key_init_hash(c, &key, dir->i_ino, file->f_pos);
324 nm.name = NULL;
325 dent = ubifs_tnc_next_ent(c, &key, &nm);
326 if (IS_ERR(dent)) {
327 err = PTR_ERR(dent);
328 goto out;
329 }
330 file->f_pos = key_hash_flash(c, &dent->key);
331 file->private_data = dent;
332 }
333
334 while (1) {
335 dbg_gen("feed '%s', ino %llu, new f_pos %#x",
336 dent->name, (unsigned long long)le64_to_cpu(dent->inum),
337 key_hash_flash(c, &dent->key));
Patrice Chotard87deefe2018-04-27 15:51:23 +0200338#ifndef __UBOOT__
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100339 ubifs_assert(le64_to_cpu(dent->ch.sqnum) > ubifs_inode(dir)->creat_sqnum);
Patrice Chotard87deefe2018-04-27 15:51:23 +0200340#endif
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100341
342 nm.len = le16_to_cpu(dent->nlen);
343 over = filldir(c, (char *)dent->name, nm.len,
344 le64_to_cpu(dent->inum), dent->type);
345 if (over)
346 return 0;
347
348 /* Switch to the next entry */
349 key_read(c, &dent->key, &key);
350 nm.name = (char *)dent->name;
351 dent = ubifs_tnc_next_ent(c, &key, &nm);
352 if (IS_ERR(dent)) {
353 err = PTR_ERR(dent);
354 goto out;
355 }
356
357 kfree(file->private_data);
358 file->f_pos = key_hash_flash(c, &dent->key);
359 file->private_data = dent;
360 cond_resched();
361 }
362
363out:
364 if (err != -ENOENT) {
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200365 ubifs_err(c, "cannot find next direntry, error %d", err);
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100366 return err;
367 }
368
369 kfree(file->private_data);
370 file->private_data = NULL;
371 file->f_pos = 2;
372 return 0;
373}
374
375static int ubifs_finddir(struct super_block *sb, char *dirname,
376 unsigned long root_inum, unsigned long *inum)
377{
378 int err;
379 struct qstr nm;
380 union ubifs_key key;
381 struct ubifs_dent_node *dent;
382 struct ubifs_info *c;
383 struct file *file;
384 struct dentry *dentry;
385 struct inode *dir;
Stefan Roesebe739132012-08-28 14:00:24 +0200386 int ret = 0;
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100387
388 file = kzalloc(sizeof(struct file), 0);
389 dentry = kzalloc(sizeof(struct dentry), 0);
390 dir = kzalloc(sizeof(struct inode), 0);
391 if (!file || !dentry || !dir) {
392 printf("%s: Error, no memory for malloc!\n", __func__);
393 err = -ENOMEM;
394 goto out;
395 }
396
397 dir->i_sb = sb;
398 file->f_path.dentry = dentry;
399 file->f_path.dentry->d_parent = dentry;
400 file->f_path.dentry->d_inode = dir;
401 file->f_path.dentry->d_inode->i_ino = root_inum;
402 c = sb->s_fs_info;
403
404 dbg_gen("dir ino %lu, f_pos %#llx", dir->i_ino, file->f_pos);
405
406 /* Find the first entry in TNC and save it */
407 lowest_dent_key(c, &key, dir->i_ino);
408 nm.name = NULL;
409 dent = ubifs_tnc_next_ent(c, &key, &nm);
410 if (IS_ERR(dent)) {
411 err = PTR_ERR(dent);
412 goto out;
413 }
414
415 file->f_pos = key_hash_flash(c, &dent->key);
416 file->private_data = dent;
417
418 while (1) {
419 dbg_gen("feed '%s', ino %llu, new f_pos %#x",
420 dent->name, (unsigned long long)le64_to_cpu(dent->inum),
421 key_hash_flash(c, &dent->key));
Patrice Chotard87deefe2018-04-27 15:51:23 +0200422#ifndef __UBOOT__
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100423 ubifs_assert(le64_to_cpu(dent->ch.sqnum) > ubifs_inode(dir)->creat_sqnum);
Patrice Chotard87deefe2018-04-27 15:51:23 +0200424#endif
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100425
426 nm.len = le16_to_cpu(dent->nlen);
427 if ((strncmp(dirname, (char *)dent->name, nm.len) == 0) &&
428 (strlen(dirname) == nm.len)) {
429 *inum = le64_to_cpu(dent->inum);
Stefan Roesebe739132012-08-28 14:00:24 +0200430 ret = 1;
431 goto out_free;
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100432 }
433
434 /* Switch to the next entry */
435 key_read(c, &dent->key, &key);
436 nm.name = (char *)dent->name;
437 dent = ubifs_tnc_next_ent(c, &key, &nm);
438 if (IS_ERR(dent)) {
439 err = PTR_ERR(dent);
440 goto out;
441 }
442
443 kfree(file->private_data);
444 file->f_pos = key_hash_flash(c, &dent->key);
445 file->private_data = dent;
446 cond_resched();
447 }
448
449out:
Stefan Roesebe739132012-08-28 14:00:24 +0200450 if (err != -ENOENT)
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200451 dbg_gen("cannot find next direntry, error %d", err);
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100452
Stefan Roesebe739132012-08-28 14:00:24 +0200453out_free:
Heinrich Schuchardt4b299752017-11-08 22:28:47 +0100454 kfree(file->private_data);
455 free(file);
456 free(dentry);
457 free(dir);
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100458
Stefan Roesebe739132012-08-28 14:00:24 +0200459 return ret;
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100460}
461
462static unsigned long ubifs_findfile(struct super_block *sb, char *filename)
463{
464 int ret;
465 char *next;
466 char fpath[128];
Simon Kagstrom9d7952e2009-09-15 09:53:29 +0200467 char symlinkpath[128];
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100468 char *name = fpath;
469 unsigned long root_inum = 1;
470 unsigned long inum;
Simon Kagstrom9d7952e2009-09-15 09:53:29 +0200471 int symlink_count = 0; /* Don't allow symlink recursion */
Ricardo Ribalda Delgado64b68172010-12-02 15:02:35 +0100472 char link_name[64];
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100473
474 strcpy(fpath, filename);
475
476 /* Remove all leading slashes */
477 while (*name == '/')
478 name++;
479
480 /*
481 * Handle root-direcoty ('/')
482 */
483 inum = root_inum;
484 if (!name || *name == '\0')
485 return inum;
486
487 for (;;) {
Simon Kagstrom9d7952e2009-09-15 09:53:29 +0200488 struct inode *inode;
489 struct ubifs_inode *ui;
490
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100491 /* Extract the actual part from the pathname. */
492 next = strchr(name, '/');
493 if (next) {
494 /* Remove all leading slashes. */
495 while (*next == '/')
496 *(next++) = '\0';
497 }
498
499 ret = ubifs_finddir(sb, name, root_inum, &inum);
Simon Kagstrom9d7952e2009-09-15 09:53:29 +0200500 if (!ret)
501 return 0;
502 inode = ubifs_iget(sb, inum);
503
504 if (!inode)
505 return 0;
506 ui = ubifs_inode(inode);
507
508 if ((inode->i_mode & S_IFMT) == S_IFLNK) {
Simon Kagstrom9d7952e2009-09-15 09:53:29 +0200509 char buf[128];
510
511 /* We have some sort of symlink recursion, bail out */
512 if (symlink_count++ > 8) {
513 printf("Symlink recursion, aborting\n");
514 return 0;
515 }
516 memcpy(link_name, ui->data, ui->data_len);
517 link_name[ui->data_len] = '\0';
518
519 if (link_name[0] == '/') {
520 /* Absolute path, redo everything without
521 * the leading slash */
522 next = name = link_name + 1;
523 root_inum = 1;
524 continue;
525 }
526 /* Relative to cur dir */
Simon Kagstromef37c682009-09-25 14:05:57 +0200527 sprintf(buf, "%s/%s",
Simon Kagstrom9d7952e2009-09-15 09:53:29 +0200528 link_name, next == NULL ? "" : next);
529 memcpy(symlinkpath, buf, sizeof(buf));
530 next = name = symlinkpath;
531 continue;
532 }
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100533
534 /*
535 * Check if directory with this name exists
536 */
537
538 /* Found the node! */
Simon Kagstrom9d7952e2009-09-15 09:53:29 +0200539 if (!next || *next == '\0')
540 return inum;
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100541
542 root_inum = inum;
543 name = next;
544 }
545
546 return 0;
547}
548
Simon Glass05289792020-05-10 11:39:57 -0600549int ubifs_set_blk_dev(struct blk_desc *rbdd, struct disk_partition *info)
Hans de Goede29cc5bc2015-09-17 18:46:57 -0400550{
551 if (rbdd) {
552 debug("UBIFS cannot be used with normal block devices\n");
553 return -1;
554 }
555
556 /*
Simon Glasse35929e2016-02-29 15:25:44 -0700557 * Should never happen since blk_get_device_part_str() already checks
Hans de Goede29cc5bc2015-09-17 18:46:57 -0400558 * this, but better safe then sorry.
559 */
560 if (!ubifs_is_mounted()) {
561 debug("UBIFS not mounted, use ubifsmount to mount volume first!\n");
562 return -1;
563 }
564
565 return 0;
566}
567
Hans de Goedead157492015-09-17 18:46:56 -0400568int ubifs_ls(const char *filename)
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100569{
570 struct ubifs_info *c = ubifs_sb->s_fs_info;
571 struct file *file;
572 struct dentry *dentry;
573 struct inode *dir;
574 void *dirent = NULL;
575 unsigned long inum;
576 int ret = 0;
577
578 c->ubi = ubi_open_volume(c->vi.ubi_num, c->vi.vol_id, UBI_READONLY);
Hans de Goedead157492015-09-17 18:46:56 -0400579 inum = ubifs_findfile(ubifs_sb, (char *)filename);
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100580 if (!inum) {
581 ret = -1;
582 goto out;
583 }
584
585 file = kzalloc(sizeof(struct file), 0);
586 dentry = kzalloc(sizeof(struct dentry), 0);
587 dir = kzalloc(sizeof(struct inode), 0);
588 if (!file || !dentry || !dir) {
589 printf("%s: Error, no memory for malloc!\n", __func__);
590 ret = -ENOMEM;
591 goto out_mem;
592 }
593
594 dir->i_sb = ubifs_sb;
595 file->f_path.dentry = dentry;
596 file->f_path.dentry->d_parent = dentry;
597 file->f_path.dentry->d_inode = dir;
598 file->f_path.dentry->d_inode->i_ino = inum;
599 file->f_pos = 1;
600 file->private_data = NULL;
601 ubifs_printdir(file, dirent);
602
603out_mem:
604 if (file)
605 free(file);
606 if (dentry)
607 free(dentry);
608 if (dir)
609 free(dir);
610
611out:
612 ubi_close_volume(c->ubi);
613 return ret;
614}
615
Hans de Goede29cc5bc2015-09-17 18:46:57 -0400616int ubifs_exists(const char *filename)
617{
618 struct ubifs_info *c = ubifs_sb->s_fs_info;
619 unsigned long inum;
620
621 c->ubi = ubi_open_volume(c->vi.ubi_num, c->vi.vol_id, UBI_READONLY);
622 inum = ubifs_findfile(ubifs_sb, (char *)filename);
623 ubi_close_volume(c->ubi);
624
625 return inum != 0;
626}
627
628int ubifs_size(const char *filename, loff_t *size)
629{
630 struct ubifs_info *c = ubifs_sb->s_fs_info;
631 unsigned long inum;
632 struct inode *inode;
633 int err = 0;
634
635 c->ubi = ubi_open_volume(c->vi.ubi_num, c->vi.vol_id, UBI_READONLY);
636
637 inum = ubifs_findfile(ubifs_sb, (char *)filename);
638 if (!inum) {
639 err = -1;
640 goto out;
641 }
642
643 inode = ubifs_iget(ubifs_sb, inum);
644 if (IS_ERR(inode)) {
645 printf("%s: Error reading inode %ld!\n", __func__, inum);
646 err = PTR_ERR(inode);
647 goto out;
648 }
649
650 *size = inode->i_size;
651
652 ubifs_iput(inode);
653out:
654 ubi_close_volume(c->ubi);
655 return err;
656}
657
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100658/*
659 * ubifsload...
660 */
661
662/* file.c */
663
664static inline void *kmap(struct page *page)
665{
666 return page->addr;
667}
668
669static int read_block(struct inode *inode, void *addr, unsigned int block,
670 struct ubifs_data_node *dn)
671{
672 struct ubifs_info *c = inode->i_sb->s_fs_info;
673 int err, len, out_len;
674 union ubifs_key key;
675 unsigned int dlen;
676
677 data_key_init(c, &key, inode->i_ino, block);
678 err = ubifs_tnc_lookup(c, &key, dn);
679 if (err) {
680 if (err == -ENOENT)
681 /* Not found, so it must be a hole */
682 memset(addr, 0, UBIFS_BLOCK_SIZE);
683 return err;
684 }
685
686 ubifs_assert(le64_to_cpu(dn->ch.sqnum) > ubifs_inode(inode)->creat_sqnum);
687
688 len = le32_to_cpu(dn->size);
689 if (len <= 0 || len > UBIFS_BLOCK_SIZE)
690 goto dump;
691
692 dlen = le32_to_cpu(dn->ch.len) - UBIFS_DATA_NODE_SZ;
693 out_len = UBIFS_BLOCK_SIZE;
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200694 err = ubifs_decompress(c, &dn->data, dlen, addr, &out_len,
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100695 le16_to_cpu(dn->compr_type));
696 if (err || len != out_len)
697 goto dump;
698
699 /*
700 * Data length can be less than a full block, even for blocks that are
701 * not the last in the file (e.g., as a result of making a hole and
702 * appending data). Ensure that the remainder is zeroed out.
703 */
704 if (len < UBIFS_BLOCK_SIZE)
705 memset(addr + len, 0, UBIFS_BLOCK_SIZE - len);
706
707 return 0;
708
709dump:
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200710 ubifs_err(c, "bad data node (block %u, inode %lu)",
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100711 block, inode->i_ino);
Heiko Schocherff94bc42014-06-24 10:10:04 +0200712 ubifs_dump_node(c, dn);
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100713 return -EINVAL;
714}
715
Stefan Roeseb1a14f82010-11-01 17:28:00 +0100716static int do_readpage(struct ubifs_info *c, struct inode *inode,
717 struct page *page, int last_block_size)
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100718{
719 void *addr;
720 int err = 0, i;
721 unsigned int block, beyond;
722 struct ubifs_data_node *dn;
723 loff_t i_size = inode->i_size;
724
725 dbg_gen("ino %lu, pg %lu, i_size %lld",
726 inode->i_ino, page->index, i_size);
727
728 addr = kmap(page);
729
730 block = page->index << UBIFS_BLOCKS_PER_PAGE_SHIFT;
731 beyond = (i_size + UBIFS_BLOCK_SIZE - 1) >> UBIFS_BLOCK_SHIFT;
732 if (block >= beyond) {
733 /* Reading beyond inode */
734 memset(addr, 0, PAGE_CACHE_SIZE);
735 goto out;
736 }
737
738 dn = kmalloc(UBIFS_MAX_DATA_NODE_SZ, GFP_NOFS);
Daniel Mack165f9852009-06-04 19:44:12 +0200739 if (!dn)
740 return -ENOMEM;
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100741
742 i = 0;
743 while (1) {
744 int ret;
745
746 if (block >= beyond) {
747 /* Reading beyond inode */
748 err = -ENOENT;
749 memset(addr, 0, UBIFS_BLOCK_SIZE);
750 } else {
Stefan Roeseb1a14f82010-11-01 17:28:00 +0100751 /*
752 * Reading last block? Make sure to not write beyond
753 * the requested size in the destination buffer.
754 */
755 if (((block + 1) == beyond) || last_block_size) {
756 void *buff;
757 int dlen;
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100758
Stefan Roeseb1a14f82010-11-01 17:28:00 +0100759 /*
760 * We need to buffer the data locally for the
761 * last block. This is to not pad the
762 * destination area to a multiple of
763 * UBIFS_BLOCK_SIZE.
764 */
Marcel Ziswiler45196682015-08-18 13:06:37 +0200765 buff = malloc_cache_aligned(UBIFS_BLOCK_SIZE);
Stefan Roeseb1a14f82010-11-01 17:28:00 +0100766 if (!buff) {
767 printf("%s: Error, malloc fails!\n",
768 __func__);
769 err = -ENOMEM;
770 break;
771 }
772
773 /* Read block-size into temp buffer */
774 ret = read_block(inode, buff, block, dn);
775 if (ret) {
776 err = ret;
777 if (err != -ENOENT) {
778 free(buff);
779 break;
780 }
781 }
782
783 if (last_block_size)
784 dlen = last_block_size;
Pali Rohár339f6522022-05-17 22:45:28 +0200785 else if (ret)
786 dlen = UBIFS_BLOCK_SIZE;
Stefan Roeseb1a14f82010-11-01 17:28:00 +0100787 else
788 dlen = le32_to_cpu(dn->size);
789
790 /* Now copy required size back to dest */
791 memcpy(addr, buff, dlen);
792
793 free(buff);
794 } else {
795 ret = read_block(inode, addr, block, dn);
796 if (ret) {
797 err = ret;
798 if (err != -ENOENT)
799 break;
800 }
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100801 }
802 }
803 if (++i >= UBIFS_BLOCKS_PER_PAGE)
804 break;
805 block += 1;
806 addr += UBIFS_BLOCK_SIZE;
807 }
808 if (err) {
809 if (err == -ENOENT) {
810 /* Not found, so it must be a hole */
811 dbg_gen("hole");
812 goto out_free;
813 }
Heiko Schocher0195a7b2015-10-22 06:19:21 +0200814 ubifs_err(c, "cannot read page %lu of inode %lu, error %d",
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100815 page->index, inode->i_ino, err);
816 goto error;
817 }
818
819out_free:
820 kfree(dn);
821out:
822 return 0;
823
824error:
825 kfree(dn);
826 return err;
827}
828
Hans de Goedead157492015-09-17 18:46:56 -0400829int ubifs_read(const char *filename, void *buf, loff_t offset,
830 loff_t size, loff_t *actread)
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100831{
832 struct ubifs_info *c = ubifs_sb->s_fs_info;
833 unsigned long inum;
834 struct inode *inode;
835 struct page page;
836 int err = 0;
837 int i;
838 int count;
Stefan Roeseb1a14f82010-11-01 17:28:00 +0100839 int last_block_size = 0;
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100840
Hans de Goedead157492015-09-17 18:46:56 -0400841 *actread = 0;
842
843 if (offset & (PAGE_SIZE - 1)) {
Vagrant Cascadian13819012016-10-23 20:45:16 -0700844 printf("ubifs: Error offset must be a multiple of %d\n",
Hans de Goedead157492015-09-17 18:46:56 -0400845 PAGE_SIZE);
846 return -1;
847 }
848
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100849 c->ubi = ubi_open_volume(c->vi.ubi_num, c->vi.vol_id, UBI_READONLY);
Simon Kagstrom9d7952e2009-09-15 09:53:29 +0200850 /* ubifs_findfile will resolve symlinks, so we know that we get
851 * the real file here */
Hans de Goedead157492015-09-17 18:46:56 -0400852 inum = ubifs_findfile(ubifs_sb, (char *)filename);
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100853 if (!inum) {
854 err = -1;
855 goto out;
856 }
857
858 /*
859 * Read file inode
860 */
861 inode = ubifs_iget(ubifs_sb, inum);
862 if (IS_ERR(inode)) {
863 printf("%s: Error reading inode %ld!\n", __func__, inum);
864 err = PTR_ERR(inode);
865 goto out;
866 }
867
Hans de Goedead157492015-09-17 18:46:56 -0400868 if (offset > inode->i_size) {
869 printf("ubifs: Error offset (%lld) > file-size (%lld)\n",
870 offset, size);
871 err = -1;
872 goto put_inode;
873 }
874
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100875 /*
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100876 * If no size was specified or if size bigger than filesize
877 * set size to filesize
878 */
Hans de Goedead157492015-09-17 18:46:56 -0400879 if ((size == 0) || (size > (inode->i_size - offset)))
880 size = inode->i_size - offset;
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100881
882 count = (size + UBIFS_BLOCK_SIZE - 1) >> UBIFS_BLOCK_SHIFT;
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100883
Hans de Goedead157492015-09-17 18:46:56 -0400884 page.addr = buf;
885 page.index = offset / PAGE_SIZE;
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100886 page.inode = inode;
887 for (i = 0; i < count; i++) {
Stefan Roeseb1a14f82010-11-01 17:28:00 +0100888 /*
889 * Make sure to not read beyond the requested size
890 */
891 if (((i + 1) == count) && (size < inode->i_size))
892 last_block_size = size - (i * PAGE_SIZE);
893
894 err = do_readpage(c, inode, &page, last_block_size);
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100895 if (err)
896 break;
897
898 page.addr += PAGE_SIZE;
899 page.index++;
900 }
901
Hans de Goedead157492015-09-17 18:46:56 -0400902 if (err) {
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100903 printf("Error reading file '%s'\n", filename);
Hans de Goedead157492015-09-17 18:46:56 -0400904 *actread = i * PAGE_SIZE;
905 } else {
906 *actread = size;
Bastian Ruppert46d72742011-09-05 03:03:57 +0000907 }
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100908
Hans de Goedead157492015-09-17 18:46:56 -0400909put_inode:
Stefan Roese9eefe2a2009-03-19 15:35:05 +0100910 ubifs_iput(inode);
911
912out:
913 ubi_close_volume(c->ubi);
914 return err;
915}
Hans de Goedead157492015-09-17 18:46:56 -0400916
Hans de Goede29cc5bc2015-09-17 18:46:57 -0400917void ubifs_close(void)
918{
919}
920
Hans de Goedead157492015-09-17 18:46:56 -0400921/* Compat wrappers for common/cmd_ubifs.c */
Ben Dooksb46cec42023-06-06 09:23:28 +0100922int ubifs_load(char *filename, unsigned long addr, u32 size)
Hans de Goedead157492015-09-17 18:46:56 -0400923{
924 loff_t actread;
925 int err;
926
Ben Dooksb46cec42023-06-06 09:23:28 +0100927 printf("Loading file '%s' to addr 0x%08lx...\n", filename, addr);
Hans de Goedead157492015-09-17 18:46:56 -0400928
Siva Durga Prasad Paladugu34cc30a2017-05-30 14:29:06 +0200929 err = ubifs_read(filename, (void *)(uintptr_t)addr, 0, size, &actread);
Hans de Goedead157492015-09-17 18:46:56 -0400930 if (err == 0) {
Simon Glass018f5302017-08-03 12:22:10 -0600931 env_set_hex("filesize", actread);
Hans de Goedead157492015-09-17 18:46:56 -0400932 printf("Done\n");
933 }
934
935 return err;
936}
937
938void uboot_ubifs_umount(void)
939{
940 if (ubifs_sb) {
941 printf("Unmounting UBIFS volume %s!\n",
942 ((struct ubifs_info *)(ubifs_sb->s_fs_info))->vi.name);
943 ubifs_umount(ubifs_sb->s_fs_info);
944 ubifs_sb = NULL;
945 }
946}