xref: /illumos-gate/usr/src/uts/common/sys/fs/pc_dir.h (revision 5b024a5b)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #ifndef	_SYS_FS_PC_DIR_H
27 #define	_SYS_FS_PC_DIR_H
28 
29 #pragma ident	"%Z%%M%	%I%	%E% SMI"
30 
31 #include <sys/dirent.h>
32 
33 #ifdef	__cplusplus
34 extern "C" {
35 #endif
36 
37 #define	PCFNAMESIZE	8
38 #define	PCFEXTSIZE	3
39 #define	PCMAXPATHLEN	MAXPATHLEN
40 #define	PCMAXNAMLEN	255
41 #define	PCLFNCHUNKSIZE	13
42 
43 struct pctime {
44 	ushort_t pct_time;		/* hh:mm:ss (little endian) */
45 	ushort_t pct_date;		/* yy:mm:dd (little endian) */
46 };
47 
48 /*
49  * Shifts and masks for time and date fields, in host byte order.
50  */
51 #define	SECSHIFT	0
52 #define	SECMASK		0x1F
53 #define	MINSHIFT	5
54 #define	MINMASK		0x3F
55 #define	HOURSHIFT	11
56 #define	HOURMASK	0x1F
57 
58 #define	DAYSHIFT	0
59 #define	DAYMASK		0x1F
60 #define	MONSHIFT	5
61 #define	MONMASK		0x0F
62 #define	YEARSHIFT	9
63 #define	YEARMASK	0x7F
64 
65 struct pcdir {
66 	char pcd_filename[PCFNAMESIZE];	/* file name */
67 	char pcd_ext[PCFEXTSIZE];	/* file extension */
68 	uchar_t	pcd_attr;		/* file attributes */
69 	uchar_t	pcd_ntattr;		/* reserved for NT attributes */
70 	uchar_t	pcd_crtime_msec;	/* milliseconds after the minute */
71 	struct pctime pcd_crtime;	/* creation time/date */
72 	ushort_t pcd_ladate;		/* last-access date */
73 	union {
74 		uint16_t pcd_eattr;	/* OS/2 extended attribute */
75 		pc_cluster16_t pcd_scluster_hi;
76 	} un;
77 	struct pctime pcd_mtime;	/* last modified time/date */
78 	pc_cluster16_t pcd_scluster_lo;	/* starting cluster (little endian) */
79 	uint_t	pcd_size;		/* file size (little endian) */
80 };
81 
82 #ifdef	__cplusplus
83 }
84 #endif
85 
86 #include <sys/fs/pc_node.h>
87 
88 #ifdef	__cplusplus
89 extern "C" {
90 #endif
91 
92 /*
93  * Long filename support (introduced by Windows 95) is an interesting
94  * exercise in compatibility. Basically, it is now no longer the case
95  * that an entry in a directory (as described by the 'pcdir' structure above)
96  * contains the entire name of a file. Now, a directory entry can consist of
97  * a long filename component (a series of 'pcdir'-like structures) followed
98  * by a short filename (the old form). Each long filename component is
99  * identified by having it's Read-Only, Hidden, System, and Volume Label
100  * attributes set.  Each can store 13 Unicode characters (16-bits, of
101  * which we only look at the lower 8 for now), broken into (gak) three
102  * sections of the entry (since that's the way the available bits fall out).
103  * In addition, each long filename entry has a sequence number (starting
104  * from 1). The first entry has bit 7 (0x40) set in the sequence number, and
105  * has the maximum value in the sequence. This may seem a bit backwards, and
106  * it gets worse: the first entry stores the last component of
107  * the name. So the directory entry for a file named
108  * "This is a very long filename indeed" might look like this:
109  *
110  * Offset  Sequence      Component         Attributes    Cluster    Size
111  *    0      0x43       "me indeed"          RSHV           0         0
112  *   32      0x02       "y long filena"      RSHV           0         0
113  *   64      0x01       "This is a ver"      RSHV           0         0
114  *   96      ----       "THISIS~1.TXT"       <whatever>  2122       110
115  *
116  * The last entry is for the short filename, which stores actual information
117  * about the file (like type, permissions, cluster, and size). The short name
118  * is also used by non-long-filename aware applications (like Windows 3.X and
119  * DOS). This name is generated by Windows 95 (and now Solaris) from the
120  * long name, and must (of course) be unique within the directory.
121  * Solaris continues to this entry to actually identify the file and its
122  * attributes (filenames only really matter when names are used, like at
123  * lookup/readdir/remove/create/rename time - for general access to the file
124  * they aren't used).
125  *
126  * Long filenames can also be broken by applications that don't
127  * understand them (for example, a Solaris 2.5.1 user could rename
128  * "THISIS~1.TXT" to "test.exe"). This can be detected because each long
129  * filename component has a checksum which is based on the short filename.
130  * After reading the long filename entry, if the checksum doesn't match the
131  * short name that follows, we simply ignore it and use the short name.
132  *
133  * One subtle thing - though long file names are case-sensitive,
134  * searches for them are not.
135  *
136  * Another _very_ subtle thing. The number of characters in the
137  * last long filename chunk (the first entry, with the 0x40 bit set) is
138  * either all the characters (if there is no null, '\0'), or all the
139  * characters up to the null. _However_, if the remaining characters are
140  * null, Norton Disk Doctor and Microsoft ScanDisk will claim
141  * that the filename entry is damaged. The remaining bytes must actually
142  * contain 0xff (discovered with Disk Doctor).
143  *
144  * Some information about long filename support can be found in the
145  * book "Inside Windows 95" by Adrian King.
146  */
147 
148 /*
149  * The number of bytes in each section of the name in a long filename
150  * entry. This is _bytes_, not characters: each character is actually
151  * 16 bits.
152  */
153 #define	PCLF_FIRSTNAMESIZE	10
154 #define	PCLF_SECONDNAMESIZE	12
155 #define	PCLF_THIRDNAMESIZE	4
156 
157 /*
158  * A long filename entry. It must match the 'pcdir' structure in size,
159  * and pcdl_attr must overlap pcd_attr.
160  */
161 struct pcdir_lfn {
162 	uchar_t pcdl_ordinal;	/* lfn order. First is 01, next 02, */
163 				/* last has bit 7 (0x40) set */
164 	uchar_t pcdl_firstfilename[PCLF_FIRSTNAMESIZE];
165 	uchar_t pcdl_attr;
166 	uchar_t pcdl_type;	/* type - always contains 0 for an LFN entry */
167 	uchar_t pcdl_checksum;	/* checksum to validate the LFN entry - */
168 				/* based on the short name */
169 	uchar_t pcdl_secondfilename[PCLF_SECONDNAMESIZE];
170 	pc_cluster16_t pcd_scluster;	/* (not used, always 0) */
171 	uchar_t pcdl_thirdfilename[PCLF_THIRDNAMESIZE];
172 };
173 
174 #define	PCDL_IS_LAST_LFN(x) ((x->pcdl_ordinal) & 0x40)
175 #define	PCDL_LFN_BITS (PCA_RDONLY | PCA_HIDDEN | PCA_SYSTEM | PCA_LABEL)
176 #define	PCDL_IS_LFN(x) (enable_long_filenames && \
177 			    (((x)->pcd_attr & PCDL_LFN_BITS) == PCDL_LFN_BITS))
178 
179 /*
180  * The first char of the file name has special meaning as follows:
181  */
182 #define	PCD_UNUSED	((char)0x00)	/* entry has never been used */
183 #define	PCD_ERASED	((char)0xE5)	/* entry was erased */
184 
185 /*
186  * File attributes.
187  */
188 #define	PCA_RDONLY	0x01	/* file is read only */
189 #define	PCA_HIDDEN	0x02	/* file is hidden */
190 #define	PCA_SYSTEM	0x04	/* system file */
191 #define	PCA_LABEL	0x08	/* entry contains the volume label */
192 #define	PCA_DIR		0x10	/* subdirectory */
193 #define	PCA_ARCH	0x20	/* file has been modified since last backup */
194 
195 /*
196  * Avoid hidden files unless the private variable is set.
197  * Always avoid the label.
198  */
199 #define	PCA_IS_HIDDEN(fsp, attr) \
200 	((((attr) & PCA_LABEL) == PCA_LABEL) || \
201 	((((fsp)->pcfs_flags & PCFS_HIDDEN) == 0) && \
202 	    ((attr) & (PCA_HIDDEN | PCA_SYSTEM))))
203 
204 #define	PC_NAME_IS_DOT(namep) \
205 	(((namep)[0] == '.') && ((namep)[1] == '\0'))
206 #define	PC_NAME_IS_DOTDOT(namep) \
207 	(((namep)[0] == '.') && ((namep)[1] == '.') && ((namep)[2] == '\0'))
208 #define	PC_SHORTNAME_IS_DOT(namep) \
209 	(((namep)[0] == '.') && ((namep)[1] == ' '))
210 #define	PC_SHORTNAME_IS_DOTDOT(namep) \
211 	(((namep)[0] == '.') && ((namep)[1] == '.') && ((namep)[2] == ' '))
212 /*
213  * slot structure is used by the directory search routine to return
214  * the results of the search.  If the search is successful sl_blkno and
215  * sl_offset reflect the disk address of the entry and sl_ep points to
216  * the actual entry data in buffer sl_bp. sl_flags is set to whether the
217  * entry is dot or dotdot. If the search is unsuccessful sl_blkno and
218  * sl_offset points to an empty directory slot if there are any. Otherwise
219  * it is set to -1.
220  */
221 struct pcslot {
222 	enum {SL_NONE, SL_FOUND, SL_EXTEND} sl_status;	/* slot status */
223 	daddr_t		sl_blkno;	/* disk block number which has entry */
224 	int		sl_offset;	/* offset of entry within block */
225 	struct buf	*sl_bp;		/* buffer containing entry data */
226 	struct pcdir	*sl_ep;		/* pointer to entry data */
227 	int		sl_flags;	/* flags (see below) */
228 };
229 #define	SL_DOT		1	/* entry point to self */
230 #define	SL_DOTDOT	2	/* entry points to parent */
231 
232 /*
233  * A pcfs directory entry. Directory entries are actually variable
234  * length, but this is the maximum size.
235  *
236  * This _must_ match a dirent64 structure in format.
237  */
238 struct pc_dirent {
239 	ino64_t		d_ino;		/* "inode number" of entry */
240 	off64_t		d_off;		/* offset of disk directory entry */
241 	unsigned short	d_reclen;	/* length of this record */
242 	char		d_name[PCMAXNAMLEN + 1];
243 };
244 
245 #ifdef _KERNEL
246 
247 /*
248  * macros for converting to/from upper or lower case.
249  * users may give and get names in lower case, but they are stored on the
250  * disk in upper case to be PCDOS compatible
251  */
252 #define	toupper(C)	(((C) >= 'a' && (C) <= 'z') ? (C) - 'a' + 'A' : (C))
253 #define	tolower(C)	(((C) >= 'A' && (C) <= 'Z') ? (C) - 'A' + 'a' : (C))
254 
255 extern void pc_tvtopct(timestruc_t *, struct pctime *);	/* timeval to pctime */
256 extern void pc_pcttotv(struct pctime *, timestruc_t *);	/* pctime to timeval */
257 extern int pc_validchar(char);			/* valid filename ch */
258 extern int pc_valid_lfn_char(char);		/* valid long filename ch */
259 
260 extern int pc_read_long_fn(struct vnode *, struct uio *,
261     struct pc_dirent *, struct pcdir **, offset_t *, struct buf **);
262 extern int pc_read_short_fn(struct vnode *, struct uio *,
263     struct pc_dirent *, struct pcdir **, offset_t *, struct buf **);
264 extern int pc_match_long_fn(struct pcnode *, char *, struct pcdir **,
265     struct pcslot *, offset_t *);
266 extern int pc_match_short_fn(struct pcnode *, char *,
267     struct pcdir **, struct pcslot *, offset_t *);
268 extern uchar_t pc_checksum_long_fn(char *, char *);
269 extern void set_long_fn_chunk(struct pcdir_lfn *, char *, int);
270 extern int pc_valid_long_fn(char *);
271 extern int pc_extract_long_fn(struct pcnode *, char *,
272     struct pcdir **, offset_t *offset, struct buf **);
273 extern int pc_fname_ext_to_name(char *, char *, char *, int);
274 
275 extern pc_cluster32_t pc_getstartcluster(struct pcfs *, struct pcdir *);
276 extern void pc_setstartcluster(struct pcfs *, struct pcdir *, pc_cluster32_t);
277 
278 /*
279  * Private tunables
280  */
281 
282 /*
283  * Use long filenames (Windows 95). Disabling this causes pcfs
284  * to not recognize long filenames at all, which may cause it to
285  * break associations between the short and long names. This is likely
286  * to leave unused long filename entries  in directories (which may make
287  * apparently empty directories unremovable), and would require a fsck_pcfs
288  * to find and fix (or a Windows utility like Norton Disk Doctor or
289  * Microsoft ScanDisk).
290  */
291 extern int enable_long_filenames;	/* default: on */
292 
293 #endif
294 
295 #ifdef	__cplusplus
296 }
297 #endif
298 
299 #endif	/* _SYS_FS_PC_DIR_H */
300