Loading...
1 2 3 4 5 6 7 8 9 10 11 12 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 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 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 | /* * linux/fs/msdos/namei.c * * Written 1992,1993 by Werner Almesberger * Hidden files 1995 by Albert Cahalan <albert@ccs.neu.edu> <adc@coe.neu.edu> * Rewritten for constant inumbers 1999 by Al Viro */ #define __NO_VERSION__ #include <linux/config.h> #include <linux/module.h> #include <linux/sched.h> #include <linux/msdos_fs.h> #include <linux/errno.h> #include <linux/string.h> #include <asm/uaccess.h> #include "../fat/msbuffer.h" #define MSDOS_DEBUG 0 #define PRINTK(x) /* MS-DOS "device special files" */ static const char *reserved_names[] = { #ifndef CONFIG_ATARI /* GEMDOS is less stupid */ "CON ","PRN ","NUL ","AUX ", "LPT1 ","LPT2 ","LPT3 ","LPT4 ", "COM1 ","COM2 ","COM3 ","COM4 ", #endif NULL }; /* Characters that are undesirable in an MS-DOS file name */ static char bad_chars[] = "*?<>|\""; #ifdef CONFIG_ATARI /* GEMDOS is less restrictive */ static char bad_if_strict[] = " "; #else static char bad_if_strict[] = "+=,; "; #endif /* Must die */ void msdos_put_super(struct super_block *sb) { fat_put_super(sb); } /***** Formats an MS-DOS file name. Rejects invalid names. */ static int msdos_format_name(char conv,const char *name,int len, char *res,char dotsOK) /* conv is relaxed/normal/strict, name is proposed name, * len is the length of the proposed name, res is the result name, * dotsOK is if hidden files get dots. */ { char *walk; const char **reserved; unsigned char c; int space; if (name[0] == '.') { /* dotfile because . and .. already done */ if (!dotsOK) return -EINVAL; /* Get rid of dot - test for it elsewhere */ name++; len--; } #ifndef CONFIG_ATARI space = 1; /* disallow names that _really_ start with a dot */ #else space = 0; /* GEMDOS does not care */ #endif c = 0; for (walk = res; len && walk-res < 8; walk++) { c = *name++; len--; if (conv != 'r' && strchr(bad_chars,c)) return -EINVAL; if (conv == 's' && strchr(bad_if_strict,c)) return -EINVAL; if (c >= 'A' && c <= 'Z' && conv == 's') return -EINVAL; if (c < ' ' || c == ':' || c == '\\') return -EINVAL; /* 0xE5 is legal as a first character, but we must substitute 0x05 */ /* because 0xE5 marks deleted files. Yes, DOS really does this. */ /* It seems that Microsoft hacked DOS to support non-US characters */ /* after the 0xE5 character was already in use to mark deleted files. */ if((res==walk) && (c==0xE5)) c=0x05; if (c == '.') break; space = (c == ' '); *walk = (c >= 'a' && c <= 'z') ? c-32 : c; } if (space) return -EINVAL; if (conv == 's' && len && c != '.') { c = *name++; len--; if (c != '.') return -EINVAL; } while (c != '.' && len--) c = *name++; if (c == '.') { while (walk-res < 8) *walk++ = ' '; while (len > 0 && walk-res < MSDOS_NAME) { c = *name++; len--; if (conv != 'r' && strchr(bad_chars,c)) return -EINVAL; if (conv == 's' && strchr(bad_if_strict,c)) return -EINVAL; if (c < ' ' || c == ':' || c == '\\') return -EINVAL; if (c == '.') { if (conv == 's') return -EINVAL; break; } if (c >= 'A' && c <= 'Z' && conv == 's') return -EINVAL; space = c == ' '; *walk++ = c >= 'a' && c <= 'z' ? c-32 : c; } if (space) return -EINVAL; if (conv == 's' && len) return -EINVAL; } while (walk-res < MSDOS_NAME) *walk++ = ' '; for (reserved = reserved_names; *reserved; reserved++) if (!strncmp(res,*reserved,8)) return -EINVAL; return 0; } /***** Locates a directory entry. Uses unformatted name. */ static int msdos_find(struct inode *dir,const char *name,int len, struct buffer_head **bh,struct msdos_dir_entry **de,int *ino) { int res; char dotsOK; char msdos_name[MSDOS_NAME]; dotsOK = MSDOS_SB(dir->i_sb)->options.dotsOK; res = msdos_format_name(MSDOS_SB(dir->i_sb)->options.name_check, name,len, msdos_name,dotsOK); if (res < 0) return -ENOENT; res = fat_scan(dir,msdos_name,bh,de,ino); if (!res && dotsOK) { if (name[0]=='.') { if (!((*de)->attr & ATTR_HIDDEN)) res = -ENOENT; } else { if ((*de)->attr & ATTR_HIDDEN) res = -ENOENT; } } return res; } /* * Compute the hash for the msdos name corresponding to the dentry. * Note: if the name is invalid, we leave the hash code unchanged so * that the existing dentry can be used. The msdos fs routines will * return ENOENT or EINVAL as appropriate. */ static int msdos_hash(struct dentry *dentry, struct qstr *qstr) { struct fat_mount_options *options = & (MSDOS_SB(dentry->d_sb)->options); int error; char msdos_name[MSDOS_NAME]; error = msdos_format_name(options->name_check, qstr->name, qstr->len, msdos_name, options->dotsOK); if (!error) qstr->hash = full_name_hash(msdos_name, MSDOS_NAME); return 0; } /* * Compare two msdos names. If either of the names are invalid, * we fall back to doing the standard name comparison. */ static int msdos_cmp(struct dentry *dentry, struct qstr *a, struct qstr *b) { struct fat_mount_options *options = & (MSDOS_SB(dentry->d_sb)->options); int error; char a_msdos_name[MSDOS_NAME], b_msdos_name[MSDOS_NAME]; error = msdos_format_name(options->name_check, a->name, a->len, a_msdos_name, options->dotsOK); if (error) goto old_compare; error = msdos_format_name(options->name_check, b->name, b->len, b_msdos_name, options->dotsOK); if (error) goto old_compare; error = memcmp(a_msdos_name, b_msdos_name, MSDOS_NAME); out: return error; old_compare: error = 1; if (a->len == b->len) error = memcmp(a->name, b->name, a->len); goto out; } static struct dentry_operations msdos_dentry_operations = { NULL, /* d_revalidate */ msdos_hash, msdos_cmp, NULL, /* d_delete */ NULL, NULL }; /* * AV. Wrappers for FAT sb operations. Is it wise? */ /***** Get inode using directory and name */ struct dentry *msdos_lookup(struct inode *dir,struct dentry *dentry) { struct super_block *sb = dir->i_sb; struct inode *inode = NULL; struct msdos_dir_entry *de; struct buffer_head *bh = NULL; int ino,res; PRINTK (("msdos_lookup\n")); dentry->d_op = &msdos_dentry_operations; res = msdos_find(dir, dentry->d_name.name, dentry->d_name.len, &bh, &de, &ino); if (res == -ENOENT) goto add; if (res < 0) goto out; inode = fat_build_inode(sb, de, ino, &res); if (res) goto out; add: d_add(dentry, inode); res = 0; out: if (bh) fat_brelse(sb, bh); return ERR_PTR(res); } /***** Creates a directory entry (name is already formatted). */ static int msdos_add_entry(struct inode *dir, const char *name, struct buffer_head **bh, struct msdos_dir_entry **de, int *ino, int is_dir, int is_hid) { struct super_block *sb = dir->i_sb; int res; if ((res = fat_add_entries(dir, 1, bh, de, ino))<0) return res; /* * XXX all times should be set by caller upon successful completion. */ dir->i_ctime = dir->i_mtime = CURRENT_TIME; mark_inode_dirty(dir); memcpy((*de)->name,name,MSDOS_NAME); (*de)->attr = is_dir ? ATTR_DIR : ATTR_ARCH; if (is_hid) (*de)->attr |= ATTR_HIDDEN; (*de)->start = 0; (*de)->starthi = 0; fat_date_unix2dos(dir->i_mtime,&(*de)->time,&(*de)->date); (*de)->size = 0; fat_mark_buffer_dirty(sb, *bh, 1); return 0; } /* * AV. Huh??? It's exported. Oughtta check usage. */ /***** Create a file */ int msdos_create(struct inode *dir,struct dentry *dentry,int mode) { struct super_block *sb = dir->i_sb; struct buffer_head *bh; struct msdos_dir_entry *de; struct inode *inode; int ino,res,is_hid; char msdos_name[MSDOS_NAME]; res = msdos_format_name(MSDOS_SB(sb)->options.name_check, dentry->d_name.name,dentry->d_name.len, msdos_name, MSDOS_SB(sb)->options.dotsOK); if (res < 0) return res; is_hid = (dentry->d_name.name[0]=='.') && (msdos_name[0]!='.'); /* Have to do it due to foo vs. .foo conflicts */ if (fat_scan(dir,msdos_name,&bh,&de,&ino) >= 0) { fat_brelse(sb, bh); return -EINVAL; } inode = NULL; res = msdos_add_entry(dir, msdos_name, &bh, &de, &ino, 0, is_hid); if (res) return res; inode = fat_build_inode(dir->i_sb, de, ino, &res); fat_brelse(sb, bh); if (!inode) return res; inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; mark_inode_dirty(inode); d_instantiate(dentry, inode); return 0; } /***** Remove a directory */ int msdos_rmdir(struct inode *dir, struct dentry *dentry) { struct super_block *sb = dir->i_sb; struct inode *inode = dentry->d_inode; int res,ino; struct buffer_head *bh; struct msdos_dir_entry *de; bh = NULL; res = msdos_find(dir, dentry->d_name.name, dentry->d_name.len, &bh, &de, &ino); if (res < 0) goto rmdir_done; /* * Check whether the directory is not in use, then check * whether it is empty. */ res = -EBUSY; if (!list_empty(&dentry->d_hash)) goto rmdir_done; res = fat_dir_empty(inode); if (res) goto rmdir_done; de->name[0] = DELETED_FLAG; fat_mark_buffer_dirty(sb, bh, 1); fat_detach(inode); inode->i_nlink = 0; inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME; dir->i_nlink--; mark_inode_dirty(inode); mark_inode_dirty(dir); d_delete(dentry); res = 0; rmdir_done: fat_brelse(sb, bh); return res; } /***** Make a directory */ int msdos_mkdir(struct inode *dir,struct dentry *dentry,int mode) { struct super_block *sb = dir->i_sb; struct buffer_head *bh; struct msdos_dir_entry *de; struct inode *inode; int res,is_hid; char msdos_name[MSDOS_NAME]; struct buffer_head *bh1; struct msdos_dir_entry *de1; int ino; res = msdos_format_name(MSDOS_SB(sb)->options.name_check, dentry->d_name.name,dentry->d_name.len, msdos_name,MSDOS_SB(sb)->options.dotsOK); if (res < 0) return res; is_hid = (dentry->d_name.name[0]=='.') && (msdos_name[0]!='.'); /* foo vs .foo situation */ if (fat_scan(dir,msdos_name,&bh,&de,&ino) >= 0) goto out_exist; res = msdos_add_entry(dir, msdos_name, &bh, &de, &ino, 1, is_hid); if (res) goto out_unlock; inode = fat_build_inode(dir->i_sb, de, ino, &res); if (!inode) { fat_brelse(sb, bh); goto out_unlock; } inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; mark_inode_dirty(inode); res = 0; dir->i_nlink++; inode->i_nlink = 2; /* no need to mark them dirty */ if (!(bh1 = fat_add_cluster1(inode))) { res = -ENOSPC; goto mkdir_error; } fat_brelse(sb, bh); de1 = (struct msdos_dir_entry *)bh1->b_data; inode->i_ctime = inode->i_mtime = CURRENT_TIME; mark_inode_dirty(inode); memcpy(de1->name,MSDOS_DOT,MSDOS_NAME); de1->attr = ATTR_DIR; de1->start = CT_LE_W(MSDOS_I(inode)->i_logstart); de1->starthi = CT_LE_W(MSDOS_I(inode)->i_logstart >> 16); fat_date_unix2dos(inode->i_mtime,&de1->time,&de1->date); de1->size = 0; de1->time = CT_LE_W(de1->time); de1->date = CT_LE_W(de1->date); de1++; memcpy(de1->name,MSDOS_DOTDOT,MSDOS_NAME); de1->attr = ATTR_DIR; de1->start = CT_LE_W(MSDOS_I(dir)->i_logstart); de1->starthi = CT_LE_W(MSDOS_I(dir)->i_logstart >> 16); fat_date_unix2dos(dir->i_mtime,&de1->time,&de1->date); de1->size = 0; de1->time = CT_LE_W(de1->time); de1->date = CT_LE_W(de1->date); fat_mark_buffer_dirty(sb, bh1, 1); fat_brelse(sb, bh1); d_instantiate(dentry, inode); res = 0; out_unlock: return res; mkdir_error: printk("msdos_mkdir: error=%d, attempting cleanup\n", res); inode->i_nlink = 0; inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME; dir->i_nlink--; mark_inode_dirty(inode); mark_inode_dirty(dir); de->name[0] = DELETED_FLAG; fat_mark_buffer_dirty(sb, bh, 1); fat_brelse(sb, bh); fat_detach(inode); iput(inode); goto out_unlock; out_exist: fat_brelse(sb, bh); res = -EINVAL; goto out_unlock; } /***** Unlink a file */ int msdos_unlink( struct inode *dir, struct dentry *dentry) { struct super_block *sb = dir->i_sb; struct inode *inode = dentry->d_inode; int res,ino; struct buffer_head *bh; struct msdos_dir_entry *de; bh = NULL; res = msdos_find(dir, dentry->d_name.name, dentry->d_name.len, &bh, &de, &ino); if (res < 0) goto unlink_done; de->name[0] = DELETED_FLAG; fat_mark_buffer_dirty(sb, bh, 1); fat_detach(inode); fat_brelse(sb, bh); inode->i_nlink = 0; inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME; mark_inode_dirty(inode); mark_inode_dirty(dir); d_delete(dentry); /* This also frees the inode */ res = 0; unlink_done: return res; } static int do_msdos_rename(struct inode *old_dir, char *old_name, struct dentry *old_dentry, struct inode *new_dir,char *new_name, struct dentry *new_dentry, struct buffer_head *old_bh, struct msdos_dir_entry *old_de, int old_ino, int is_hid) { struct super_block *sb = old_dir->i_sb; struct buffer_head *new_bh=NULL,*dotdot_bh=NULL; struct msdos_dir_entry *new_de,*dotdot_de; struct inode *old_inode,*new_inode; int new_ino,dotdot_ino; int error; int is_dir; old_inode = old_dentry->d_inode; new_inode = new_dentry->d_inode; is_dir = S_ISDIR(old_inode->i_mode); if (fat_scan(new_dir,new_name,&new_bh,&new_de,&new_ino)>=0 &&!new_inode) goto degenerate_case; if (is_dir) { if (new_inode) { error = fat_dir_empty(new_inode); if (error) goto out; } error = fat_scan(old_inode, MSDOS_DOTDOT, &dotdot_bh, &dotdot_de, &dotdot_ino); if (error < 0) { printk(KERN_WARNING "MSDOS: %s/%s, get dotdot failed, ret=%d\n", old_dentry->d_parent->d_name.name, old_dentry->d_name.name, error); goto out; } } if (!new_bh) { error = msdos_add_entry(new_dir, new_name, &new_bh, &new_de, &new_ino, is_dir, is_hid); if (error) goto out; } new_dir->i_version = ++event; /* There we go */ if (new_inode) fat_detach(new_inode); old_de->name[0] = DELETED_FLAG; fat_mark_buffer_dirty(sb, old_bh, 1); fat_detach(old_inode); fat_attach(old_inode, new_ino); if (is_hid) MSDOS_I(old_inode)->i_attrs |= ATTR_HIDDEN; else MSDOS_I(old_inode)->i_attrs &= ~ATTR_HIDDEN; mark_inode_dirty(old_inode); old_dir->i_version = ++event; old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME; mark_inode_dirty(old_dir); if (new_inode) { new_inode->i_nlink--; new_inode->i_ctime = CURRENT_TIME; mark_inode_dirty(new_inode); } if (dotdot_bh) { dotdot_de->start = CT_LE_W(MSDOS_I(new_dir)->i_logstart); dotdot_de->starthi = CT_LE_W((MSDOS_I(new_dir)->i_logstart) >> 16); fat_mark_buffer_dirty(sb, dotdot_bh, 1); old_dir->i_nlink--; mark_inode_dirty(old_dir); if (new_inode) { new_inode->i_nlink--; mark_inode_dirty(new_inode); } else { new_dir->i_nlink++; mark_inode_dirty(new_dir); } } error = 0; out: fat_brelse(sb, new_bh); fat_brelse(sb, dotdot_bh); return error; degenerate_case: error = -EINVAL; if (new_de!=old_de) goto out; if (is_hid) MSDOS_I(old_inode)->i_attrs |= ATTR_HIDDEN; else MSDOS_I(old_inode)->i_attrs &= ~ATTR_HIDDEN; mark_inode_dirty(old_inode); old_dir->i_version = ++event; old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME; mark_inode_dirty(old_dir); return 0; } /***** Rename, a wrapper for rename_same_dir & rename_diff_dir */ int msdos_rename(struct inode *old_dir,struct dentry *old_dentry, struct inode *new_dir,struct dentry *new_dentry) { struct super_block *sb = old_dir->i_sb; struct buffer_head *old_bh; struct msdos_dir_entry *old_de; int old_ino, error; int is_hid,old_hid; /* if new file and old file are hidden */ char old_msdos_name[MSDOS_NAME], new_msdos_name[MSDOS_NAME]; error = msdos_format_name(MSDOS_SB(sb)->options.name_check, old_dentry->d_name.name, old_dentry->d_name.len, old_msdos_name,MSDOS_SB(sb)->options.dotsOK); if (error < 0) goto rename_done; error = msdos_format_name(MSDOS_SB(sb)->options.name_check, new_dentry->d_name.name, new_dentry->d_name.len, new_msdos_name,MSDOS_SB(sb)->options.dotsOK); if (error < 0) goto rename_done; is_hid = (new_dentry->d_name.name[0]=='.') && (new_msdos_name[0]!='.'); old_hid = (old_dentry->d_name.name[0]=='.') && (old_msdos_name[0]!='.'); error = fat_scan(old_dir, old_msdos_name, &old_bh, &old_de, &old_ino); if (error < 0) goto rename_done; error = do_msdos_rename(old_dir, old_msdos_name, old_dentry, new_dir, new_msdos_name, new_dentry, old_bh, old_de, (ino_t)old_ino, is_hid); fat_brelse(sb, old_bh); rename_done: return error; } /* The public inode operations for the msdos fs */ struct inode_operations msdos_dir_inode_operations = { &fat_dir_operations, /* default directory file-ops */ msdos_create, /* create */ msdos_lookup, /* lookup */ NULL, /* link */ msdos_unlink, /* unlink */ NULL, /* symlink */ msdos_mkdir, /* mkdir */ msdos_rmdir, /* rmdir */ NULL, /* mknod */ msdos_rename, /* rename */ NULL, /* readlink */ NULL, /* follow_link */ NULL, /* get_block */ NULL, /* readpage */ NULL, /* writepage */ NULL, /* flushpage */ NULL, /* truncate */ NULL, /* permission */ NULL, /* smap */ NULL, /* revalidate */ }; static void msdos_put_super_callback(struct super_block *sb) { MOD_DEC_USE_COUNT; } struct super_block *msdos_read_super(struct super_block *sb,void *data, int silent) { struct super_block *res; MOD_INC_USE_COUNT; MSDOS_SB(sb)->options.isvfat = 0; res = fat_read_super(sb, data, silent, &msdos_dir_inode_operations); if (res == NULL) goto out_fail; MSDOS_SB(sb)->put_super_callback=msdos_put_super_callback; sb->s_root->d_op = &msdos_dentry_operations; return res; out_fail: sb->s_dev = 0; MOD_DEC_USE_COUNT; return NULL; } #ifdef MODULE int init_module(void) { return init_msdos_fs(); } void cleanup_module(void) { unregister_filesystem(&msdos_fs_type); } #endif |