Linux Audio

Check our new training course

Loading...
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * dir.c
  4 *
  5 * PURPOSE
  6 *  Directory handling routines for the OSTA-UDF(tm) filesystem.
  7 *
  8 * COPYRIGHT
 
 
 
 
 
  9 *  (C) 1998-2004 Ben Fennema
 10 *
 11 * HISTORY
 12 *
 13 *  10/05/98 dgb  Split directory operations into its own file
 14 *                Implemented directory reads via do_udf_readdir
 15 *  10/06/98      Made directory operations work!
 16 *  11/17/98      Rewrote directory to support ICBTAG_FLAG_AD_LONG
 17 *  11/25/98 blf  Rewrote directory handling (readdir+lookup) to support reading
 18 *                across blocks.
 19 *  12/12/98      Split out the lookup code to namei.c. bulk of directory
 20 *                code now in directory.c:udf_fileident_read.
 21 */
 22
 23#include "udfdecl.h"
 24
 25#include <linux/string.h>
 26#include <linux/errno.h>
 27#include <linux/mm.h>
 28#include <linux/slab.h>
 29#include <linux/bio.h>
 30#include <linux/iversion.h>
 31
 32#include "udf_i.h"
 33#include "udf_sb.h"
 34
 35static int udf_readdir(struct file *file, struct dir_context *ctx)
 
 36{
 37	struct inode *dir = file_inode(file);
 38	loff_t nf_pos, emit_pos = 0;
 
 
 
 39	int flen;
 40	unsigned char *fname = NULL;
 41	int ret = 0;
 42	struct super_block *sb = dir->i_sb;
 43	bool pos_valid = false;
 44	struct udf_fileident_iter iter;
 
 
 
 
 
 
 
 
 45
 46	if (ctx->pos == 0) {
 47		if (!dir_emit_dot(file, ctx))
 48			return 0;
 49		ctx->pos = 1;
 50	}
 51	nf_pos = (ctx->pos - 1) << 2;
 52	if (nf_pos >= dir->i_size)
 53		goto out;
 54
 55	/*
 56	 * Something changed since last readdir (either lseek was called or dir
 57	 * changed)?  We need to verify the position correctly points at the
 58	 * beginning of some dir entry so that the directory parsing code does
 59	 * not get confused. Since UDF does not have any reliable way of
 60	 * identifying beginning of dir entry (names are under user control),
 61	 * we need to scan the directory from the beginning.
 62	 */
 63	if (!inode_eq_iversion(dir, *(u64 *)file->private_data)) {
 64		emit_pos = nf_pos;
 65		nf_pos = 0;
 66	} else {
 67		pos_valid = true;
 68	}
 69
 70	fname = kmalloc(UDF_NAME_LEN, GFP_KERNEL);
 71	if (!fname) {
 72		ret = -ENOMEM;
 73		goto out;
 74	}
 75
 76	for (ret = udf_fiiter_init(&iter, dir, nf_pos);
 77	     !ret && iter.pos < dir->i_size;
 78	     ret = udf_fiiter_advance(&iter)) {
 79		struct kernel_lb_addr tloc;
 80		udf_pblk_t iblock;
 81
 82		/* Still not at offset where user asked us to read from? */
 83		if (iter.pos < emit_pos)
 84			continue;
 85
 86		/* Update file position only if we got past the current one */
 87		pos_valid = true;
 88		ctx->pos = (iter.pos >> 2) + 1;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 89
 90		if (iter.fi.fileCharacteristics & FID_FILE_CHAR_DELETED) {
 91			if (!UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE))
 92				continue;
 93		}
 94
 95		if (iter.fi.fileCharacteristics & FID_FILE_CHAR_HIDDEN) {
 96			if (!UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE))
 97				continue;
 98		}
 99
100		if (iter.fi.fileCharacteristics & FID_FILE_CHAR_PARENT) {
101			if (!dir_emit_dotdot(file, ctx))
102				goto out_iter;
103			continue;
 
 
 
 
 
 
 
104		}
105
106		flen = udf_get_filename(sb, iter.name,
107				iter.fi.lengthFileIdent, fname, UDF_NAME_LEN);
108		if (flen < 0)
109			continue;
110
111		tloc = lelb_to_cpu(iter.fi.icb.extLocation);
112		iblock = udf_get_lb_pblock(sb, &tloc, 0);
113		if (!dir_emit(ctx, fname, flen, iblock, DT_UNKNOWN))
114			goto out_iter;
115	}
116
117	if (!ret) {
118		ctx->pos = (iter.pos >> 2) + 1;
119		pos_valid = true;
120	}
121out_iter:
122	udf_fiiter_release(&iter);
123out:
124	if (pos_valid)
125		*(u64 *)file->private_data = inode_query_iversion(dir);
 
 
126	kfree(fname);
127
128	return ret;
129}
130
131static int udf_dir_open(struct inode *inode, struct file *file)
132{
133	file->private_data = kzalloc(sizeof(u64), GFP_KERNEL);
134	if (!file->private_data)
135		return -ENOMEM;
136	return 0;
137}
138
139static int udf_dir_release(struct inode *inode, struct file *file)
140{
141	kfree(file->private_data);
142	return 0;
143}
 
144
145static loff_t udf_dir_llseek(struct file *file, loff_t offset, int whence)
146{
147	return generic_llseek_cookie(file, offset, whence,
148				     (u64 *)file->private_data);
149}
150
151/* readdir and lookup functions */
152const struct file_operations udf_dir_operations = {
153	.open			= udf_dir_open,
154	.release		= udf_dir_release,
155	.llseek			= udf_dir_llseek,
156	.read			= generic_read_dir,
157	.iterate_shared		= udf_readdir,
158	.unlocked_ioctl		= udf_ioctl,
159	.fsync			= generic_file_fsync,
160};
v3.5.6
 
  1/*
  2 * dir.c
  3 *
  4 * PURPOSE
  5 *  Directory handling routines for the OSTA-UDF(tm) filesystem.
  6 *
  7 * COPYRIGHT
  8 *	This file is distributed under the terms of the GNU General Public
  9 *	License (GPL). Copies of the GPL can be obtained from:
 10 *		ftp://prep.ai.mit.edu/pub/gnu/GPL
 11 *	Each contributing author retains all rights to their own work.
 12 *
 13 *  (C) 1998-2004 Ben Fennema
 14 *
 15 * HISTORY
 16 *
 17 *  10/05/98 dgb  Split directory operations into its own file
 18 *                Implemented directory reads via do_udf_readdir
 19 *  10/06/98      Made directory operations work!
 20 *  11/17/98      Rewrote directory to support ICBTAG_FLAG_AD_LONG
 21 *  11/25/98 blf  Rewrote directory handling (readdir+lookup) to support reading
 22 *                across blocks.
 23 *  12/12/98      Split out the lookup code to namei.c. bulk of directory
 24 *                code now in directory.c:udf_fileident_read.
 25 */
 26
 27#include "udfdecl.h"
 28
 29#include <linux/string.h>
 30#include <linux/errno.h>
 31#include <linux/mm.h>
 32#include <linux/slab.h>
 33#include <linux/buffer_head.h>
 
 34
 35#include "udf_i.h"
 36#include "udf_sb.h"
 37
 38static int do_udf_readdir(struct inode *dir, struct file *filp,
 39			  filldir_t filldir, void *dirent)
 40{
 41	struct udf_fileident_bh fibh = { .sbh = NULL, .ebh = NULL};
 42	struct fileIdentDesc *fi = NULL;
 43	struct fileIdentDesc cfi;
 44	int block, iblock;
 45	loff_t nf_pos = (filp->f_pos - 1) << 2;
 46	int flen;
 47	unsigned char *fname = NULL;
 48	unsigned char *nameptr;
 49	uint16_t liu;
 50	uint8_t lfi;
 51	loff_t size = udf_ext0_offset(dir) + dir->i_size;
 52	struct buffer_head *tmp, *bha[16];
 53	struct kernel_lb_addr eloc;
 54	uint32_t elen;
 55	sector_t offset;
 56	int i, num, ret = 0;
 57	unsigned int dt_type;
 58	struct extent_position epos = { NULL, 0, {0, 0} };
 59	struct udf_inode_info *iinfo;
 60
 61	if (nf_pos >= size)
 
 
 
 
 
 
 62		goto out;
 63
 64	fname = kmalloc(UDF_NAME_LEN, GFP_NOFS);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 65	if (!fname) {
 66		ret = -ENOMEM;
 67		goto out;
 68	}
 69
 70	if (nf_pos == 0)
 71		nf_pos = udf_ext0_offset(dir);
 72
 73	fibh.soffset = fibh.eoffset = nf_pos & (dir->i_sb->s_blocksize - 1);
 74	iinfo = UDF_I(dir);
 75	if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
 76		if (inode_bmap(dir, nf_pos >> dir->i_sb->s_blocksize_bits,
 77		    &epos, &eloc, &elen, &offset)
 78		    != (EXT_RECORDED_ALLOCATED >> 30)) {
 79			ret = -ENOENT;
 80			goto out;
 81		}
 82		block = udf_get_lb_pblock(dir->i_sb, &eloc, offset);
 83		if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
 84			if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
 85				epos.offset -= sizeof(struct short_ad);
 86			else if (iinfo->i_alloc_type ==
 87					ICBTAG_FLAG_AD_LONG)
 88				epos.offset -= sizeof(struct long_ad);
 89		} else {
 90			offset = 0;
 91		}
 92
 93		if (!(fibh.sbh = fibh.ebh = udf_tread(dir->i_sb, block))) {
 94			ret = -EIO;
 95			goto out;
 96		}
 97
 98		if (!(offset & ((16 >> (dir->i_sb->s_blocksize_bits - 9)) - 1))) {
 99			i = 16 >> (dir->i_sb->s_blocksize_bits - 9);
100			if (i + offset > (elen >> dir->i_sb->s_blocksize_bits))
101				i = (elen >> dir->i_sb->s_blocksize_bits) - offset;
102			for (num = 0; i > 0; i--) {
103				block = udf_get_lb_pblock(dir->i_sb, &eloc, offset + i);
104				tmp = udf_tgetblk(dir->i_sb, block);
105				if (tmp && !buffer_uptodate(tmp) && !buffer_locked(tmp))
106					bha[num++] = tmp;
107				else
108					brelse(tmp);
109			}
110			if (num) {
111				ll_rw_block(READA, num, bha);
112				for (i = 0; i < num; i++)
113					brelse(bha[i]);
114			}
115		}
116	}
117
118	while (nf_pos < size) {
119		filp->f_pos = (nf_pos >> 2) + 1;
120
121		fi = udf_fileident_read(dir, &nf_pos, &fibh, &cfi, &epos, &eloc,
122					&elen, &offset);
123		if (!fi)
124			goto out;
125
126		liu = le16_to_cpu(cfi.lengthOfImpUse);
127		lfi = cfi.lengthFileIdent;
128
129		if (fibh.sbh == fibh.ebh) {
130			nameptr = fi->fileIdent + liu;
131		} else {
132			int poffset;	/* Unpaded ending offset */
133
134			poffset = fibh.soffset + sizeof(struct fileIdentDesc) + liu + lfi;
135
136			if (poffset >= lfi) {
137				nameptr = (char *)(fibh.ebh->b_data + poffset - lfi);
138			} else {
139				nameptr = fname;
140				memcpy(nameptr, fi->fileIdent + liu,
141				       lfi - poffset);
142				memcpy(nameptr + lfi - poffset,
143				       fibh.ebh->b_data, poffset);
144			}
145		}
146
147		if ((cfi.fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
148			if (!UDF_QUERY_FLAG(dir->i_sb, UDF_FLAG_UNDELETE))
149				continue;
150		}
151
152		if ((cfi.fileCharacteristics & FID_FILE_CHAR_HIDDEN) != 0) {
153			if (!UDF_QUERY_FLAG(dir->i_sb, UDF_FLAG_UNHIDE))
154				continue;
155		}
156
157		if (cfi.fileCharacteristics & FID_FILE_CHAR_PARENT) {
158			iblock = parent_ino(filp->f_path.dentry);
159			flen = 2;
160			memcpy(fname, "..", flen);
161			dt_type = DT_DIR;
162		} else {
163			struct kernel_lb_addr tloc = lelb_to_cpu(cfi.icb.extLocation);
164
165			iblock = udf_get_lb_pblock(dir->i_sb, &tloc, 0);
166			flen = udf_get_filename(dir->i_sb, nameptr, fname, lfi);
167			dt_type = DT_UNKNOWN;
168		}
169
170		if (flen && filldir(dirent, fname, flen, filp->f_pos,
171				    iblock, dt_type) < 0)
172			goto out;
173	} /* end while */
174
175	filp->f_pos = (nf_pos >> 2) + 1;
 
 
 
 
176
 
 
 
 
 
 
177out:
178	if (fibh.sbh != fibh.ebh)
179		brelse(fibh.ebh);
180	brelse(fibh.sbh);
181	brelse(epos.bh);
182	kfree(fname);
183
184	return ret;
185}
186
187static int udf_readdir(struct file *filp, void *dirent, filldir_t filldir)
188{
189	struct inode *dir = filp->f_path.dentry->d_inode;
190	int result;
 
 
 
191
192	if (filp->f_pos == 0) {
193		if (filldir(dirent, ".", 1, filp->f_pos, dir->i_ino, DT_DIR) < 0) {
194			return 0;
195		}
196		filp->f_pos++;
197	}
198
199	result = do_udf_readdir(dir, filp, filldir, dirent);
200 	return result;
 
 
201}
202
203/* readdir and lookup functions */
204const struct file_operations udf_dir_operations = {
205	.llseek			= generic_file_llseek,
 
 
206	.read			= generic_read_dir,
207	.readdir		= udf_readdir,
208	.unlocked_ioctl		= udf_ioctl,
209	.fsync			= generic_file_fsync,
210};