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