namei_vfat.c 26 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106
  1. /*
  2. * linux/fs/vfat/namei.c
  3. *
  4. * Written 1992,1993 by Werner Almesberger
  5. *
  6. * Windows95/Windows NT compatible extended MSDOS filesystem
  7. * by Gordon Chaffee Copyright (C) 1995. Send bug reports for the
  8. * VFAT filesystem to <chaffee@cs.berkeley.edu>. Specify
  9. * what file operation caused you trouble and if you can duplicate
  10. * the problem, send a script that demonstrates it.
  11. *
  12. * Short name translation 1999, 2001 by Wolfram Pienkoss <wp@bszh.de>
  13. *
  14. * Support Multibyte characters and cleanup by
  15. * OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
  16. */
  17. #include <linux/module.h>
  18. #include <linux/jiffies.h>
  19. #include <linux/ctype.h>
  20. #include <linux/slab.h>
  21. #include <linux/buffer_head.h>
  22. #include <linux/namei.h>
  23. #include "fat.h"
  24. /*
  25. * If new entry was created in the parent, it could create the 8.3
  26. * alias (the shortname of logname). So, the parent may have the
  27. * negative-dentry which matches the created 8.3 alias.
  28. *
  29. * If it happened, the negative dentry isn't actually negative
  30. * anymore. So, drop it.
  31. */
  32. static int vfat_revalidate_shortname(struct dentry *dentry)
  33. {
  34. int ret = 1;
  35. spin_lock(&dentry->d_lock);
  36. if (dentry->d_time != dentry->d_parent->d_inode->i_version)
  37. ret = 0;
  38. spin_unlock(&dentry->d_lock);
  39. return ret;
  40. }
  41. static int vfat_revalidate(struct dentry *dentry, struct nameidata *nd)
  42. {
  43. if (nd && nd->flags & LOOKUP_RCU)
  44. return -ECHILD;
  45. /* This is not negative dentry. Always valid. */
  46. if (dentry->d_inode)
  47. return 1;
  48. return vfat_revalidate_shortname(dentry);
  49. }
  50. static int vfat_revalidate_ci(struct dentry *dentry, struct nameidata *nd)
  51. {
  52. if (nd && nd->flags & LOOKUP_RCU)
  53. return -ECHILD;
  54. /*
  55. * This is not negative dentry. Always valid.
  56. *
  57. * Note, rename() to existing directory entry will have ->d_inode,
  58. * and will use existing name which isn't specified name by user.
  59. *
  60. * We may be able to drop this positive dentry here. But dropping
  61. * positive dentry isn't good idea. So it's unsupported like
  62. * rename("filename", "FILENAME") for now.
  63. */
  64. if (dentry->d_inode)
  65. return 1;
  66. /*
  67. * This may be nfsd (or something), anyway, we can't see the
  68. * intent of this. So, since this can be for creation, drop it.
  69. */
  70. if (!nd)
  71. return 0;
  72. /*
  73. * Drop the negative dentry, in order to make sure to use the
  74. * case sensitive name which is specified by user if this is
  75. * for creation.
  76. */
  77. if (nd->flags & (LOOKUP_CREATE | LOOKUP_RENAME_TARGET))
  78. return 0;
  79. return vfat_revalidate_shortname(dentry);
  80. }
  81. /* returns the length of a struct qstr, ignoring trailing dots */
  82. static unsigned int __vfat_striptail_len(unsigned int len, const char *name)
  83. {
  84. while (len && name[len - 1] == '.')
  85. len--;
  86. return len;
  87. }
  88. static unsigned int vfat_striptail_len(const struct qstr *qstr)
  89. {
  90. return __vfat_striptail_len(qstr->len, qstr->name);
  91. }
  92. /*
  93. * Compute the hash for the vfat name corresponding to the dentry.
  94. * Note: if the name is invalid, we leave the hash code unchanged so
  95. * that the existing dentry can be used. The vfat fs routines will
  96. * return ENOENT or EINVAL as appropriate.
  97. */
  98. static int vfat_hash(const struct dentry *dentry, const struct inode *inode,
  99. struct qstr *qstr)
  100. {
  101. qstr->hash = full_name_hash(qstr->name, vfat_striptail_len(qstr));
  102. return 0;
  103. }
  104. /*
  105. * Compute the hash for the vfat name corresponding to the dentry.
  106. * Note: if the name is invalid, we leave the hash code unchanged so
  107. * that the existing dentry can be used. The vfat fs routines will
  108. * return ENOENT or EINVAL as appropriate.
  109. */
  110. static int vfat_hashi(const struct dentry *dentry, const struct inode *inode,
  111. struct qstr *qstr)
  112. {
  113. struct nls_table *t = MSDOS_SB(dentry->d_sb)->nls_io;
  114. const unsigned char *name;
  115. unsigned int len;
  116. unsigned long hash;
  117. name = qstr->name;
  118. len = vfat_striptail_len(qstr);
  119. hash = init_name_hash();
  120. while (len--)
  121. hash = partial_name_hash(nls_tolower(t, *name++), hash);
  122. qstr->hash = end_name_hash(hash);
  123. return 0;
  124. }
  125. /*
  126. * Case insensitive compare of two vfat names.
  127. */
  128. static int vfat_cmpi(const struct dentry *parent, const struct inode *pinode,
  129. const struct dentry *dentry, const struct inode *inode,
  130. unsigned int len, const char *str, const struct qstr *name)
  131. {
  132. struct nls_table *t = MSDOS_SB(parent->d_sb)->nls_io;
  133. unsigned int alen, blen;
  134. /* A filename cannot end in '.' or we treat it like it has none */
  135. alen = vfat_striptail_len(name);
  136. blen = __vfat_striptail_len(len, str);
  137. if (alen == blen) {
  138. if (nls_strnicmp(t, name->name, str, alen) == 0)
  139. return 0;
  140. }
  141. return 1;
  142. }
  143. /*
  144. * Case sensitive compare of two vfat names.
  145. */
  146. static int vfat_cmp(const struct dentry *parent, const struct inode *pinode,
  147. const struct dentry *dentry, const struct inode *inode,
  148. unsigned int len, const char *str, const struct qstr *name)
  149. {
  150. unsigned int alen, blen;
  151. /* A filename cannot end in '.' or we treat it like it has none */
  152. alen = vfat_striptail_len(name);
  153. blen = __vfat_striptail_len(len, str);
  154. if (alen == blen) {
  155. if (strncmp(name->name, str, alen) == 0)
  156. return 0;
  157. }
  158. return 1;
  159. }
  160. static const struct dentry_operations vfat_ci_dentry_ops = {
  161. .d_revalidate = vfat_revalidate_ci,
  162. .d_hash = vfat_hashi,
  163. .d_compare = vfat_cmpi,
  164. };
  165. static const struct dentry_operations vfat_dentry_ops = {
  166. .d_revalidate = vfat_revalidate,
  167. .d_hash = vfat_hash,
  168. .d_compare = vfat_cmp,
  169. };
  170. /* Characters that are undesirable in an MS-DOS file name */
  171. static inline wchar_t vfat_bad_char(wchar_t w)
  172. {
  173. return (w < 0x0020)
  174. || (w == '*') || (w == '?') || (w == '<') || (w == '>')
  175. || (w == '|') || (w == '"') || (w == ':') || (w == '/')
  176. || (w == '\\');
  177. }
  178. static inline wchar_t vfat_replace_char(wchar_t w)
  179. {
  180. return (w == '[') || (w == ']') || (w == ';') || (w == ',')
  181. || (w == '+') || (w == '=');
  182. }
  183. static wchar_t vfat_skip_char(wchar_t w)
  184. {
  185. return (w == '.') || (w == ' ');
  186. }
  187. static inline int vfat_is_used_badchars(const wchar_t *s, int len)
  188. {
  189. int i;
  190. for (i = 0; i < len; i++)
  191. if (vfat_bad_char(s[i]))
  192. return -EINVAL;
  193. if (s[i - 1] == ' ') /* last character cannot be space */
  194. return -EINVAL;
  195. return 0;
  196. }
  197. static int vfat_find_form(struct inode *dir, unsigned char *name)
  198. {
  199. struct fat_slot_info sinfo;
  200. int err = fat_scan(dir, name, &sinfo);
  201. if (err)
  202. return -ENOENT;
  203. brelse(sinfo.bh);
  204. return 0;
  205. }
  206. /*
  207. * 1) Valid characters for the 8.3 format alias are any combination of
  208. * letters, uppercase alphabets, digits, any of the
  209. * following special characters:
  210. * $ % ' ` - @ { } ~ ! # ( ) & _ ^
  211. * In this case Longfilename is not stored in disk.
  212. *
  213. * WinNT's Extension:
  214. * File name and extension name is contain uppercase/lowercase
  215. * only. And it is expressed by CASE_LOWER_BASE and CASE_LOWER_EXT.
  216. *
  217. * 2) File name is 8.3 format, but it contain the uppercase and
  218. * lowercase char, muliti bytes char, etc. In this case numtail is not
  219. * added, but Longfilename is stored.
  220. *
  221. * 3) When the one except for the above, or the following special
  222. * character are contained:
  223. * . [ ] ; , + =
  224. * numtail is added, and Longfilename must be stored in disk .
  225. */
  226. struct shortname_info {
  227. unsigned char lower:1,
  228. upper:1,
  229. valid:1;
  230. };
  231. #define INIT_SHORTNAME_INFO(x) do { \
  232. (x)->lower = 1; \
  233. (x)->upper = 1; \
  234. (x)->valid = 1; \
  235. } while (0)
  236. static inline int to_shortname_char(struct nls_table *nls,
  237. unsigned char *buf, int buf_size,
  238. wchar_t *src, struct shortname_info *info)
  239. {
  240. int len;
  241. if (vfat_skip_char(*src)) {
  242. info->valid = 0;
  243. return 0;
  244. }
  245. if (vfat_replace_char(*src)) {
  246. info->valid = 0;
  247. buf[0] = '_';
  248. return 1;
  249. }
  250. len = nls->uni2char(*src, buf, buf_size);
  251. if (len <= 0) {
  252. info->valid = 0;
  253. buf[0] = '_';
  254. len = 1;
  255. } else if (len == 1) {
  256. unsigned char prev = buf[0];
  257. if (buf[0] >= 0x7F) {
  258. info->lower = 0;
  259. info->upper = 0;
  260. }
  261. buf[0] = nls_toupper(nls, buf[0]);
  262. if (isalpha(buf[0])) {
  263. if (buf[0] == prev)
  264. info->lower = 0;
  265. else
  266. info->upper = 0;
  267. }
  268. } else {
  269. info->lower = 0;
  270. info->upper = 0;
  271. }
  272. return len;
  273. }
  274. /*
  275. * Given a valid longname, create a unique shortname. Make sure the
  276. * shortname does not exist
  277. * Returns negative number on error, 0 for a normal
  278. * return, and 1 for valid shortname
  279. */
  280. static int vfat_create_shortname(struct inode *dir, struct nls_table *nls,
  281. wchar_t *uname, int ulen,
  282. unsigned char *name_res, unsigned char *lcase)
  283. {
  284. struct fat_mount_options *opts = &MSDOS_SB(dir->i_sb)->options;
  285. wchar_t *ip, *ext_start, *end, *name_start;
  286. unsigned char base[9], ext[4], buf[5], *p;
  287. unsigned char charbuf[NLS_MAX_CHARSET_SIZE];
  288. int chl, chi;
  289. int sz = 0, extlen, baselen, i, numtail_baselen, numtail2_baselen;
  290. int is_shortname;
  291. struct shortname_info base_info, ext_info;
  292. is_shortname = 1;
  293. INIT_SHORTNAME_INFO(&base_info);
  294. INIT_SHORTNAME_INFO(&ext_info);
  295. /* Now, we need to create a shortname from the long name */
  296. ext_start = end = &uname[ulen];
  297. while (--ext_start >= uname) {
  298. if (*ext_start == 0x002E) { /* is `.' */
  299. if (ext_start == end - 1) {
  300. sz = ulen;
  301. ext_start = NULL;
  302. }
  303. break;
  304. }
  305. }
  306. if (ext_start == uname - 1) {
  307. sz = ulen;
  308. ext_start = NULL;
  309. } else if (ext_start) {
  310. /*
  311. * Names which start with a dot could be just
  312. * an extension eg. "...test". In this case Win95
  313. * uses the extension as the name and sets no extension.
  314. */
  315. name_start = &uname[0];
  316. while (name_start < ext_start) {
  317. if (!vfat_skip_char(*name_start))
  318. break;
  319. name_start++;
  320. }
  321. if (name_start != ext_start) {
  322. sz = ext_start - uname;
  323. ext_start++;
  324. } else {
  325. sz = ulen;
  326. ext_start = NULL;
  327. }
  328. }
  329. numtail_baselen = 6;
  330. numtail2_baselen = 2;
  331. for (baselen = i = 0, p = base, ip = uname; i < sz; i++, ip++) {
  332. chl = to_shortname_char(nls, charbuf, sizeof(charbuf),
  333. ip, &base_info);
  334. if (chl == 0)
  335. continue;
  336. if (baselen < 2 && (baselen + chl) > 2)
  337. numtail2_baselen = baselen;
  338. if (baselen < 6 && (baselen + chl) > 6)
  339. numtail_baselen = baselen;
  340. for (chi = 0; chi < chl; chi++) {
  341. *p++ = charbuf[chi];
  342. baselen++;
  343. if (baselen >= 8)
  344. break;
  345. }
  346. if (baselen >= 8) {
  347. if ((chi < chl - 1) || (ip + 1) - uname < sz)
  348. is_shortname = 0;
  349. break;
  350. }
  351. }
  352. if (baselen == 0) {
  353. return -EINVAL;
  354. }
  355. extlen = 0;
  356. if (ext_start) {
  357. for (p = ext, ip = ext_start; extlen < 3 && ip < end; ip++) {
  358. chl = to_shortname_char(nls, charbuf, sizeof(charbuf),
  359. ip, &ext_info);
  360. if (chl == 0)
  361. continue;
  362. if ((extlen + chl) > 3) {
  363. is_shortname = 0;
  364. break;
  365. }
  366. for (chi = 0; chi < chl; chi++) {
  367. *p++ = charbuf[chi];
  368. extlen++;
  369. }
  370. if (extlen >= 3) {
  371. if (ip + 1 != end)
  372. is_shortname = 0;
  373. break;
  374. }
  375. }
  376. }
  377. ext[extlen] = '\0';
  378. base[baselen] = '\0';
  379. /* Yes, it can happen. ".\xe5" would do it. */
  380. if (base[0] == DELETED_FLAG)
  381. base[0] = 0x05;
  382. /* OK, at this point we know that base is not longer than 8 symbols,
  383. * ext is not longer than 3, base is nonempty, both don't contain
  384. * any bad symbols (lowercase transformed to uppercase).
  385. */
  386. memset(name_res, ' ', MSDOS_NAME);
  387. memcpy(name_res, base, baselen);
  388. memcpy(name_res + 8, ext, extlen);
  389. *lcase = 0;
  390. if (is_shortname && base_info.valid && ext_info.valid) {
  391. if (vfat_find_form(dir, name_res) == 0)
  392. return -EEXIST;
  393. if (opts->shortname & VFAT_SFN_CREATE_WIN95) {
  394. return (base_info.upper && ext_info.upper);
  395. } else if (opts->shortname & VFAT_SFN_CREATE_WINNT) {
  396. if ((base_info.upper || base_info.lower) &&
  397. (ext_info.upper || ext_info.lower)) {
  398. if (!base_info.upper && base_info.lower)
  399. *lcase |= CASE_LOWER_BASE;
  400. if (!ext_info.upper && ext_info.lower)
  401. *lcase |= CASE_LOWER_EXT;
  402. return 1;
  403. }
  404. return 0;
  405. } else {
  406. BUG();
  407. }
  408. }
  409. if (opts->numtail == 0)
  410. if (vfat_find_form(dir, name_res) < 0)
  411. return 0;
  412. /*
  413. * Try to find a unique extension. This used to
  414. * iterate through all possibilities sequentially,
  415. * but that gave extremely bad performance. Windows
  416. * only tries a few cases before using random
  417. * values for part of the base.
  418. */
  419. if (baselen > 6) {
  420. baselen = numtail_baselen;
  421. name_res[7] = ' ';
  422. }
  423. name_res[baselen] = '~';
  424. for (i = 1; i < 10; i++) {
  425. name_res[baselen + 1] = i + '0';
  426. if (vfat_find_form(dir, name_res) < 0)
  427. return 0;
  428. }
  429. i = jiffies;
  430. sz = (jiffies >> 16) & 0x7;
  431. if (baselen > 2) {
  432. baselen = numtail2_baselen;
  433. name_res[7] = ' ';
  434. }
  435. name_res[baselen + 4] = '~';
  436. name_res[baselen + 5] = '1' + sz;
  437. while (1) {
  438. snprintf(buf, sizeof(buf), "%04X", i & 0xffff);
  439. memcpy(&name_res[baselen], buf, 4);
  440. if (vfat_find_form(dir, name_res) < 0)
  441. break;
  442. i -= 11;
  443. }
  444. return 0;
  445. }
  446. /* Translate a string, including coded sequences into Unicode */
  447. static int
  448. xlate_to_uni(const unsigned char *name, int len, unsigned char *outname,
  449. int *longlen, int *outlen, int escape, int utf8,
  450. struct nls_table *nls)
  451. {
  452. const unsigned char *ip;
  453. unsigned char nc;
  454. unsigned char *op;
  455. unsigned int ec;
  456. int i, k, fill;
  457. int charlen;
  458. if (utf8) {
  459. *outlen = utf8s_to_utf16s(name, len, UTF16_HOST_ENDIAN,
  460. (wchar_t *) outname, FAT_LFN_LEN + 2);
  461. if (*outlen < 0)
  462. return *outlen;
  463. else if (*outlen > FAT_LFN_LEN)
  464. return -ENAMETOOLONG;
  465. op = &outname[*outlen * sizeof(wchar_t)];
  466. } else {
  467. for (i = 0, ip = name, op = outname, *outlen = 0;
  468. i < len && *outlen < FAT_LFN_LEN;
  469. *outlen += 1) {
  470. if (escape && (*ip == ':')) {
  471. if (i > len - 5)
  472. return -EINVAL;
  473. ec = 0;
  474. for (k = 1; k < 5; k++) {
  475. nc = ip[k];
  476. ec <<= 4;
  477. if (nc >= '0' && nc <= '9') {
  478. ec |= nc - '0';
  479. continue;
  480. }
  481. if (nc >= 'a' && nc <= 'f') {
  482. ec |= nc - ('a' - 10);
  483. continue;
  484. }
  485. if (nc >= 'A' && nc <= 'F') {
  486. ec |= nc - ('A' - 10);
  487. continue;
  488. }
  489. return -EINVAL;
  490. }
  491. *op++ = ec & 0xFF;
  492. *op++ = ec >> 8;
  493. ip += 5;
  494. i += 5;
  495. } else {
  496. charlen = nls->char2uni(ip, len - i,
  497. (wchar_t *)op);
  498. if (charlen < 0)
  499. return -EINVAL;
  500. ip += charlen;
  501. i += charlen;
  502. op += 2;
  503. }
  504. }
  505. if (i < len)
  506. return -ENAMETOOLONG;
  507. }
  508. *longlen = *outlen;
  509. if (*outlen % 13) {
  510. *op++ = 0;
  511. *op++ = 0;
  512. *outlen += 1;
  513. if (*outlen % 13) {
  514. fill = 13 - (*outlen % 13);
  515. for (i = 0; i < fill; i++) {
  516. *op++ = 0xff;
  517. *op++ = 0xff;
  518. }
  519. *outlen += fill;
  520. }
  521. }
  522. return 0;
  523. }
  524. static int vfat_build_slots(struct inode *dir, const unsigned char *name,
  525. int len, int is_dir, int cluster,
  526. struct timespec *ts,
  527. struct msdos_dir_slot *slots, int *nr_slots)
  528. {
  529. struct msdos_sb_info *sbi = MSDOS_SB(dir->i_sb);
  530. struct fat_mount_options *opts = &sbi->options;
  531. struct msdos_dir_slot *ps;
  532. struct msdos_dir_entry *de;
  533. unsigned char cksum, lcase;
  534. unsigned char msdos_name[MSDOS_NAME];
  535. wchar_t *uname;
  536. __le16 time, date;
  537. u8 time_cs;
  538. int err, ulen, usize, i;
  539. loff_t offset;
  540. *nr_slots = 0;
  541. uname = __getname();
  542. if (!uname)
  543. return -ENOMEM;
  544. err = xlate_to_uni(name, len, (unsigned char *)uname, &ulen, &usize,
  545. opts->unicode_xlate, opts->utf8, sbi->nls_io);
  546. if (err)
  547. goto out_free;
  548. err = vfat_is_used_badchars(uname, ulen);
  549. if (err)
  550. goto out_free;
  551. err = vfat_create_shortname(dir, sbi->nls_disk, uname, ulen,
  552. msdos_name, &lcase);
  553. if (err < 0)
  554. goto out_free;
  555. else if (err == 1) {
  556. de = (struct msdos_dir_entry *)slots;
  557. err = 0;
  558. goto shortname;
  559. }
  560. /* build the entry of long file name */
  561. cksum = fat_checksum(msdos_name);
  562. *nr_slots = usize / 13;
  563. for (ps = slots, i = *nr_slots; i > 0; i--, ps++) {
  564. ps->id = i;
  565. ps->attr = ATTR_EXT;
  566. ps->reserved = 0;
  567. ps->alias_checksum = cksum;
  568. ps->start = 0;
  569. offset = (i - 1) * 13;
  570. fatwchar_to16(ps->name0_4, uname + offset, 5);
  571. fatwchar_to16(ps->name5_10, uname + offset + 5, 6);
  572. fatwchar_to16(ps->name11_12, uname + offset + 11, 2);
  573. }
  574. slots[0].id |= 0x40;
  575. de = (struct msdos_dir_entry *)ps;
  576. shortname:
  577. /* build the entry of 8.3 alias name */
  578. (*nr_slots)++;
  579. memcpy(de->name, msdos_name, MSDOS_NAME);
  580. de->attr = is_dir ? ATTR_DIR : ATTR_ARCH;
  581. de->lcase = lcase;
  582. fat_time_unix2fat(sbi, ts, &time, &date, &time_cs);
  583. de->time = de->ctime = time;
  584. de->date = de->cdate = de->adate = date;
  585. de->ctime_cs = time_cs;
  586. de->start = cpu_to_le16(cluster);
  587. de->starthi = cpu_to_le16(cluster >> 16);
  588. de->size = 0;
  589. out_free:
  590. __putname(uname);
  591. return err;
  592. }
  593. static int vfat_add_entry(struct inode *dir, struct qstr *qname, int is_dir,
  594. int cluster, struct timespec *ts,
  595. struct fat_slot_info *sinfo)
  596. {
  597. struct msdos_dir_slot *slots;
  598. unsigned int len;
  599. int err, nr_slots;
  600. len = vfat_striptail_len(qname);
  601. if (len == 0)
  602. return -ENOENT;
  603. slots = kmalloc(sizeof(*slots) * MSDOS_SLOTS, GFP_NOFS);
  604. if (slots == NULL)
  605. return -ENOMEM;
  606. err = vfat_build_slots(dir, qname->name, len, is_dir, cluster, ts,
  607. slots, &nr_slots);
  608. if (err)
  609. goto cleanup;
  610. err = fat_add_entries(dir, slots, nr_slots, sinfo);
  611. if (err)
  612. goto cleanup;
  613. /* update timestamp */
  614. dir->i_ctime = dir->i_mtime = dir->i_atime = *ts;
  615. if (IS_DIRSYNC(dir))
  616. (void)fat_sync_inode(dir);
  617. else
  618. mark_inode_dirty(dir);
  619. cleanup:
  620. kfree(slots);
  621. return err;
  622. }
  623. static int vfat_find(struct inode *dir, struct qstr *qname,
  624. struct fat_slot_info *sinfo)
  625. {
  626. unsigned int len = vfat_striptail_len(qname);
  627. if (len == 0)
  628. return -ENOENT;
  629. return fat_search_long(dir, qname->name, len, sinfo);
  630. }
  631. /*
  632. * (nfsd's) anonymous disconnected dentry?
  633. * NOTE: !IS_ROOT() is not anonymous (I.e. d_splice_alias() did the job).
  634. */
  635. static int vfat_d_anon_disconn(struct dentry *dentry)
  636. {
  637. return IS_ROOT(dentry) && (dentry->d_flags & DCACHE_DISCONNECTED);
  638. }
  639. static struct dentry *vfat_lookup(struct inode *dir, struct dentry *dentry,
  640. struct nameidata *nd)
  641. {
  642. struct super_block *sb = dir->i_sb;
  643. struct fat_slot_info sinfo;
  644. struct inode *inode;
  645. struct dentry *alias;
  646. int err;
  647. lock_super(sb);
  648. err = vfat_find(dir, &dentry->d_name, &sinfo);
  649. if (err) {
  650. if (err == -ENOENT) {
  651. inode = NULL;
  652. goto out;
  653. }
  654. goto error;
  655. }
  656. inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos);
  657. brelse(sinfo.bh);
  658. if (IS_ERR(inode)) {
  659. err = PTR_ERR(inode);
  660. goto error;
  661. }
  662. alias = d_find_alias(inode);
  663. if (alias && !vfat_d_anon_disconn(alias)) {
  664. /*
  665. * This inode has non anonymous-DCACHE_DISCONNECTED
  666. * dentry. This means, the user did ->lookup() by an
  667. * another name (longname vs 8.3 alias of it) in past.
  668. *
  669. * Switch to new one for reason of locality if possible.
  670. */
  671. BUG_ON(d_unhashed(alias));
  672. if (!S_ISDIR(inode->i_mode))
  673. d_move(alias, dentry);
  674. iput(inode);
  675. unlock_super(sb);
  676. return alias;
  677. } else
  678. dput(alias);
  679. out:
  680. unlock_super(sb);
  681. dentry->d_time = dentry->d_parent->d_inode->i_version;
  682. dentry = d_splice_alias(inode, dentry);
  683. if (dentry)
  684. dentry->d_time = dentry->d_parent->d_inode->i_version;
  685. return dentry;
  686. error:
  687. unlock_super(sb);
  688. return ERR_PTR(err);
  689. }
  690. static int vfat_create(struct inode *dir, struct dentry *dentry, umode_t mode,
  691. struct nameidata *nd)
  692. {
  693. struct super_block *sb = dir->i_sb;
  694. struct inode *inode;
  695. struct fat_slot_info sinfo;
  696. struct timespec ts;
  697. int err;
  698. lock_super(sb);
  699. ts = CURRENT_TIME_SEC;
  700. err = vfat_add_entry(dir, &dentry->d_name, 0, 0, &ts, &sinfo);
  701. if (err)
  702. goto out;
  703. dir->i_version++;
  704. inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos);
  705. brelse(sinfo.bh);
  706. if (IS_ERR(inode)) {
  707. err = PTR_ERR(inode);
  708. goto out;
  709. }
  710. inode->i_version++;
  711. inode->i_mtime = inode->i_atime = inode->i_ctime = ts;
  712. /* timestamp is already written, so mark_inode_dirty() is unneeded. */
  713. dentry->d_time = dentry->d_parent->d_inode->i_version;
  714. d_instantiate(dentry, inode);
  715. out:
  716. unlock_super(sb);
  717. return err;
  718. }
  719. static int vfat_rmdir(struct inode *dir, struct dentry *dentry)
  720. {
  721. struct inode *inode = dentry->d_inode;
  722. struct super_block *sb = dir->i_sb;
  723. struct fat_slot_info sinfo;
  724. int err;
  725. lock_super(sb);
  726. err = fat_dir_empty(inode);
  727. if (err)
  728. goto out;
  729. err = vfat_find(dir, &dentry->d_name, &sinfo);
  730. if (err)
  731. goto out;
  732. err = fat_remove_entries(dir, &sinfo); /* and releases bh */
  733. if (err)
  734. goto out;
  735. drop_nlink(dir);
  736. clear_nlink(inode);
  737. inode->i_mtime = inode->i_atime = CURRENT_TIME_SEC;
  738. fat_detach(inode);
  739. out:
  740. unlock_super(sb);
  741. return err;
  742. }
  743. static int vfat_unlink(struct inode *dir, struct dentry *dentry)
  744. {
  745. struct inode *inode = dentry->d_inode;
  746. struct super_block *sb = dir->i_sb;
  747. struct fat_slot_info sinfo;
  748. int err;
  749. lock_super(sb);
  750. err = vfat_find(dir, &dentry->d_name, &sinfo);
  751. if (err)
  752. goto out;
  753. err = fat_remove_entries(dir, &sinfo); /* and releases bh */
  754. if (err)
  755. goto out;
  756. clear_nlink(inode);
  757. inode->i_mtime = inode->i_atime = CURRENT_TIME_SEC;
  758. fat_detach(inode);
  759. out:
  760. unlock_super(sb);
  761. return err;
  762. }
  763. static int vfat_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
  764. {
  765. struct super_block *sb = dir->i_sb;
  766. struct inode *inode;
  767. struct fat_slot_info sinfo;
  768. struct timespec ts;
  769. int err, cluster;
  770. lock_super(sb);
  771. ts = CURRENT_TIME_SEC;
  772. cluster = fat_alloc_new_dir(dir, &ts);
  773. if (cluster < 0) {
  774. err = cluster;
  775. goto out;
  776. }
  777. err = vfat_add_entry(dir, &dentry->d_name, 1, cluster, &ts, &sinfo);
  778. if (err)
  779. goto out_free;
  780. dir->i_version++;
  781. inc_nlink(dir);
  782. inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos);
  783. brelse(sinfo.bh);
  784. if (IS_ERR(inode)) {
  785. err = PTR_ERR(inode);
  786. /* the directory was completed, just return a error */
  787. goto out;
  788. }
  789. inode->i_version++;
  790. set_nlink(inode, 2);
  791. inode->i_mtime = inode->i_atime = inode->i_ctime = ts;
  792. /* timestamp is already written, so mark_inode_dirty() is unneeded. */
  793. dentry->d_time = dentry->d_parent->d_inode->i_version;
  794. d_instantiate(dentry, inode);
  795. unlock_super(sb);
  796. return 0;
  797. out_free:
  798. fat_free_clusters(dir, cluster);
  799. out:
  800. unlock_super(sb);
  801. return err;
  802. }
  803. static int vfat_rename(struct inode *old_dir, struct dentry *old_dentry,
  804. struct inode *new_dir, struct dentry *new_dentry)
  805. {
  806. struct buffer_head *dotdot_bh;
  807. struct msdos_dir_entry *dotdot_de;
  808. struct inode *old_inode, *new_inode;
  809. struct fat_slot_info old_sinfo, sinfo;
  810. struct timespec ts;
  811. loff_t dotdot_i_pos, new_i_pos;
  812. int err, is_dir, update_dotdot, corrupt = 0;
  813. struct super_block *sb = old_dir->i_sb;
  814. old_sinfo.bh = sinfo.bh = dotdot_bh = NULL;
  815. old_inode = old_dentry->d_inode;
  816. new_inode = new_dentry->d_inode;
  817. lock_super(sb);
  818. err = vfat_find(old_dir, &old_dentry->d_name, &old_sinfo);
  819. if (err)
  820. goto out;
  821. is_dir = S_ISDIR(old_inode->i_mode);
  822. update_dotdot = (is_dir && old_dir != new_dir);
  823. if (update_dotdot) {
  824. if (fat_get_dotdot_entry(old_inode, &dotdot_bh, &dotdot_de,
  825. &dotdot_i_pos) < 0) {
  826. err = -EIO;
  827. goto out;
  828. }
  829. }
  830. ts = CURRENT_TIME_SEC;
  831. if (new_inode) {
  832. if (is_dir) {
  833. err = fat_dir_empty(new_inode);
  834. if (err)
  835. goto out;
  836. }
  837. new_i_pos = MSDOS_I(new_inode)->i_pos;
  838. fat_detach(new_inode);
  839. } else {
  840. err = vfat_add_entry(new_dir, &new_dentry->d_name, is_dir, 0,
  841. &ts, &sinfo);
  842. if (err)
  843. goto out;
  844. new_i_pos = sinfo.i_pos;
  845. }
  846. new_dir->i_version++;
  847. fat_detach(old_inode);
  848. fat_attach(old_inode, new_i_pos);
  849. if (IS_DIRSYNC(new_dir)) {
  850. err = fat_sync_inode(old_inode);
  851. if (err)
  852. goto error_inode;
  853. } else
  854. mark_inode_dirty(old_inode);
  855. if (update_dotdot) {
  856. int start = MSDOS_I(new_dir)->i_logstart;
  857. dotdot_de->start = cpu_to_le16(start);
  858. dotdot_de->starthi = cpu_to_le16(start >> 16);
  859. mark_buffer_dirty_inode(dotdot_bh, old_inode);
  860. if (IS_DIRSYNC(new_dir)) {
  861. err = sync_dirty_buffer(dotdot_bh);
  862. if (err)
  863. goto error_dotdot;
  864. }
  865. drop_nlink(old_dir);
  866. if (!new_inode)
  867. inc_nlink(new_dir);
  868. }
  869. err = fat_remove_entries(old_dir, &old_sinfo); /* and releases bh */
  870. old_sinfo.bh = NULL;
  871. if (err)
  872. goto error_dotdot;
  873. old_dir->i_version++;
  874. old_dir->i_ctime = old_dir->i_mtime = ts;
  875. if (IS_DIRSYNC(old_dir))
  876. (void)fat_sync_inode(old_dir);
  877. else
  878. mark_inode_dirty(old_dir);
  879. if (new_inode) {
  880. drop_nlink(new_inode);
  881. if (is_dir)
  882. drop_nlink(new_inode);
  883. new_inode->i_ctime = ts;
  884. }
  885. out:
  886. brelse(sinfo.bh);
  887. brelse(dotdot_bh);
  888. brelse(old_sinfo.bh);
  889. unlock_super(sb);
  890. return err;
  891. error_dotdot:
  892. /* data cluster is shared, serious corruption */
  893. corrupt = 1;
  894. if (update_dotdot) {
  895. int start = MSDOS_I(old_dir)->i_logstart;
  896. dotdot_de->start = cpu_to_le16(start);
  897. dotdot_de->starthi = cpu_to_le16(start >> 16);
  898. mark_buffer_dirty_inode(dotdot_bh, old_inode);
  899. corrupt |= sync_dirty_buffer(dotdot_bh);
  900. }
  901. error_inode:
  902. fat_detach(old_inode);
  903. fat_attach(old_inode, old_sinfo.i_pos);
  904. if (new_inode) {
  905. fat_attach(new_inode, new_i_pos);
  906. if (corrupt)
  907. corrupt |= fat_sync_inode(new_inode);
  908. } else {
  909. /*
  910. * If new entry was not sharing the data cluster, it
  911. * shouldn't be serious corruption.
  912. */
  913. int err2 = fat_remove_entries(new_dir, &sinfo);
  914. if (corrupt)
  915. corrupt |= err2;
  916. sinfo.bh = NULL;
  917. }
  918. if (corrupt < 0) {
  919. fat_fs_error(new_dir->i_sb,
  920. "%s: Filesystem corrupted (i_pos %lld)",
  921. __func__, sinfo.i_pos);
  922. }
  923. goto out;
  924. }
  925. static const struct inode_operations vfat_dir_inode_operations = {
  926. .create = vfat_create,
  927. .lookup = vfat_lookup,
  928. .unlink = vfat_unlink,
  929. .mkdir = vfat_mkdir,
  930. .rmdir = vfat_rmdir,
  931. .rename = vfat_rename,
  932. .setattr = fat_setattr,
  933. .getattr = fat_getattr,
  934. #ifdef CONFIG_FAT_VIRTUAL_XATTR
  935. .setxattr = fat_setxattr,
  936. .getxattr = fat_getxattr,
  937. .listxattr = fat_listxattr,
  938. .removexattr = fat_removexattr,
  939. #endif
  940. };
  941. static void setup(struct super_block *sb)
  942. {
  943. MSDOS_SB(sb)->dir_ops = &vfat_dir_inode_operations;
  944. if (MSDOS_SB(sb)->options.name_check != 's')
  945. sb->s_d_op = &vfat_ci_dentry_ops;
  946. else
  947. sb->s_d_op = &vfat_dentry_ops;
  948. }
  949. static int vfat_fill_super(struct super_block *sb, void *data, int silent)
  950. {
  951. return fat_fill_super(sb, data, silent, 1, setup);
  952. }
  953. static struct dentry *vfat_mount(struct file_system_type *fs_type,
  954. int flags, const char *dev_name,
  955. void *data)
  956. {
  957. return mount_bdev(fs_type, flags, dev_name, data, vfat_fill_super);
  958. }
  959. static struct file_system_type vfat_fs_type = {
  960. .owner = THIS_MODULE,
  961. .name = "vfat",
  962. .mount = vfat_mount,
  963. .kill_sb = kill_block_super,
  964. .fs_flags = FS_REQUIRES_DEV,
  965. };
  966. MODULE_ALIAS_FS("vfat");
  967. static int __init init_vfat_fs(void)
  968. {
  969. return register_filesystem(&vfat_fs_type);
  970. }
  971. static void __exit exit_vfat_fs(void)
  972. {
  973. unregister_filesystem(&vfat_fs_type);
  974. }
  975. MODULE_LICENSE("GPL");
  976. MODULE_DESCRIPTION("VFAT filesystem support");
  977. MODULE_AUTHOR("Gordon Chaffee");
  978. module_init(init_vfat_fs)
  979. module_exit(exit_vfat_fs)