inode.c 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * linux/fs/adfs/inode.c
  4. *
  5. * Copyright (C) 1997-1999 Russell King
  6. */
  7. #include <linux/buffer_head.h>
  8. #include <linux/mpage.h>
  9. #include <linux/writeback.h>
  10. #include "adfs.h"
  11. /*
  12. * Lookup/Create a block at offset 'block' into 'inode'. We currently do
  13. * not support creation of new blocks, so we return -EIO for this case.
  14. */
  15. static int
  16. adfs_get_block(struct inode *inode, sector_t block, struct buffer_head *bh,
  17. int create)
  18. {
  19. if (!create) {
  20. if (block >= inode->i_blocks)
  21. goto abort_toobig;
  22. block = __adfs_block_map(inode->i_sb, ADFS_I(inode)->indaddr,
  23. block);
  24. if (block)
  25. map_bh(bh, inode->i_sb, block);
  26. return 0;
  27. }
  28. /* don't support allocation of blocks yet */
  29. return -EIO;
  30. abort_toobig:
  31. return 0;
  32. }
  33. static int adfs_writepages(struct address_space *mapping,
  34. struct writeback_control *wbc)
  35. {
  36. return mpage_writepages(mapping, wbc, adfs_get_block);
  37. }
  38. static int adfs_read_folio(struct file *file, struct folio *folio)
  39. {
  40. return block_read_full_folio(folio, adfs_get_block);
  41. }
  42. static void adfs_write_failed(struct address_space *mapping, loff_t to)
  43. {
  44. struct inode *inode = mapping->host;
  45. if (to > inode->i_size)
  46. truncate_pagecache(inode, inode->i_size);
  47. }
  48. static int adfs_write_begin(const struct kiocb *iocb,
  49. struct address_space *mapping,
  50. loff_t pos, unsigned len,
  51. struct folio **foliop, void **fsdata)
  52. {
  53. int ret;
  54. ret = cont_write_begin(iocb, mapping, pos, len, foliop, fsdata,
  55. adfs_get_block,
  56. &ADFS_I(mapping->host)->mmu_private);
  57. if (unlikely(ret))
  58. adfs_write_failed(mapping, pos + len);
  59. return ret;
  60. }
  61. static sector_t _adfs_bmap(struct address_space *mapping, sector_t block)
  62. {
  63. return generic_block_bmap(mapping, block, adfs_get_block);
  64. }
  65. static const struct address_space_operations adfs_aops = {
  66. .dirty_folio = block_dirty_folio,
  67. .invalidate_folio = block_invalidate_folio,
  68. .read_folio = adfs_read_folio,
  69. .writepages = adfs_writepages,
  70. .write_begin = adfs_write_begin,
  71. .write_end = generic_write_end,
  72. .migrate_folio = buffer_migrate_folio,
  73. .bmap = _adfs_bmap,
  74. };
  75. /*
  76. * Convert ADFS attributes and filetype to Linux permission.
  77. */
  78. static umode_t
  79. adfs_atts2mode(struct super_block *sb, struct inode *inode)
  80. {
  81. unsigned int attr = ADFS_I(inode)->attr;
  82. umode_t mode, rmask;
  83. struct adfs_sb_info *asb = ADFS_SB(sb);
  84. if (attr & ADFS_NDA_DIRECTORY) {
  85. mode = S_IRUGO & asb->s_owner_mask;
  86. return S_IFDIR | S_IXUGO | mode;
  87. }
  88. switch (adfs_filetype(ADFS_I(inode)->loadaddr)) {
  89. case 0xfc0: /* LinkFS */
  90. return S_IFLNK|S_IRWXUGO;
  91. case 0xfe6: /* UnixExec */
  92. rmask = S_IRUGO | S_IXUGO;
  93. break;
  94. default:
  95. rmask = S_IRUGO;
  96. }
  97. mode = S_IFREG;
  98. if (attr & ADFS_NDA_OWNER_READ)
  99. mode |= rmask & asb->s_owner_mask;
  100. if (attr & ADFS_NDA_OWNER_WRITE)
  101. mode |= S_IWUGO & asb->s_owner_mask;
  102. if (attr & ADFS_NDA_PUBLIC_READ)
  103. mode |= rmask & asb->s_other_mask;
  104. if (attr & ADFS_NDA_PUBLIC_WRITE)
  105. mode |= S_IWUGO & asb->s_other_mask;
  106. return mode;
  107. }
  108. /*
  109. * Convert Linux permission to ADFS attribute. We try to do the reverse
  110. * of atts2mode, but there is not a 1:1 translation.
  111. */
  112. static int adfs_mode2atts(struct super_block *sb, struct inode *inode,
  113. umode_t ia_mode)
  114. {
  115. struct adfs_sb_info *asb = ADFS_SB(sb);
  116. umode_t mode;
  117. int attr;
  118. /* FIXME: should we be able to alter a link? */
  119. if (S_ISLNK(inode->i_mode))
  120. return ADFS_I(inode)->attr;
  121. /* Directories do not have read/write permissions on the media */
  122. if (S_ISDIR(inode->i_mode))
  123. return ADFS_NDA_DIRECTORY;
  124. attr = 0;
  125. mode = ia_mode & asb->s_owner_mask;
  126. if (mode & S_IRUGO)
  127. attr |= ADFS_NDA_OWNER_READ;
  128. if (mode & S_IWUGO)
  129. attr |= ADFS_NDA_OWNER_WRITE;
  130. mode = ia_mode & asb->s_other_mask;
  131. mode &= ~asb->s_owner_mask;
  132. if (mode & S_IRUGO)
  133. attr |= ADFS_NDA_PUBLIC_READ;
  134. if (mode & S_IWUGO)
  135. attr |= ADFS_NDA_PUBLIC_WRITE;
  136. return attr;
  137. }
  138. static const s64 nsec_unix_epoch_diff_risc_os_epoch = 2208988800000000000LL;
  139. /*
  140. * Convert an ADFS time to Unix time. ADFS has a 40-bit centi-second time
  141. * referenced to 1 Jan 1900 (til 2248) so we need to discard 2208988800 seconds
  142. * of time to convert from RISC OS epoch to Unix epoch.
  143. */
  144. static void
  145. adfs_adfs2unix_time(struct timespec64 *tv, struct inode *inode)
  146. {
  147. unsigned int high, low;
  148. /* 01 Jan 1970 00:00:00 (Unix epoch) as nanoseconds since
  149. * 01 Jan 1900 00:00:00 (RISC OS epoch)
  150. */
  151. s64 nsec;
  152. if (!adfs_inode_is_stamped(inode))
  153. goto cur_time;
  154. high = ADFS_I(inode)->loadaddr & 0xFF; /* top 8 bits of timestamp */
  155. low = ADFS_I(inode)->execaddr; /* bottom 32 bits of timestamp */
  156. /* convert 40-bit centi-seconds to 32-bit seconds
  157. * going via nanoseconds to retain precision
  158. */
  159. nsec = (((s64) high << 32) | (s64) low) * 10000000; /* cs to ns */
  160. /* Files dated pre 01 Jan 1970 00:00:00. */
  161. if (nsec < nsec_unix_epoch_diff_risc_os_epoch)
  162. goto too_early;
  163. /* convert from RISC OS to Unix epoch */
  164. nsec -= nsec_unix_epoch_diff_risc_os_epoch;
  165. *tv = ns_to_timespec64(nsec);
  166. return;
  167. cur_time:
  168. *tv = current_time(inode);
  169. return;
  170. too_early:
  171. tv->tv_sec = tv->tv_nsec = 0;
  172. return;
  173. }
  174. /* Convert an Unix time to ADFS time for an entry that is already stamped. */
  175. static void adfs_unix2adfs_time(struct inode *inode,
  176. const struct timespec64 *ts)
  177. {
  178. s64 cs, nsec = timespec64_to_ns(ts);
  179. /* convert from Unix to RISC OS epoch */
  180. nsec += nsec_unix_epoch_diff_risc_os_epoch;
  181. /* convert from nanoseconds to centiseconds */
  182. cs = div_s64(nsec, 10000000);
  183. cs = clamp_t(s64, cs, 0, 0xffffffffff);
  184. ADFS_I(inode)->loadaddr &= ~0xff;
  185. ADFS_I(inode)->loadaddr |= (cs >> 32) & 0xff;
  186. ADFS_I(inode)->execaddr = cs;
  187. }
  188. /*
  189. * Fill in the inode information from the object information.
  190. *
  191. * Note that this is an inode-less filesystem, so we can't use the inode
  192. * number to reference the metadata on the media. Instead, we use the
  193. * inode number to hold the object ID, which in turn will tell us where
  194. * the data is held. We also save the parent object ID, and with these
  195. * two, we can locate the metadata.
  196. *
  197. * This does mean that we rely on an objects parent remaining the same at
  198. * all times - we cannot cope with a cross-directory rename (yet).
  199. */
  200. struct inode *
  201. adfs_iget(struct super_block *sb, struct object_info *obj)
  202. {
  203. struct inode *inode;
  204. struct timespec64 ts;
  205. inode = new_inode(sb);
  206. if (!inode)
  207. goto out;
  208. inode->i_uid = ADFS_SB(sb)->s_uid;
  209. inode->i_gid = ADFS_SB(sb)->s_gid;
  210. inode->i_ino = obj->indaddr;
  211. inode->i_size = obj->size;
  212. set_nlink(inode, 2);
  213. inode->i_blocks = (inode->i_size + sb->s_blocksize - 1) >>
  214. sb->s_blocksize_bits;
  215. /*
  216. * we need to save the parent directory ID so that
  217. * write_inode can update the directory information
  218. * for this file. This will need special handling
  219. * for cross-directory renames.
  220. */
  221. ADFS_I(inode)->parent_id = obj->parent_id;
  222. ADFS_I(inode)->indaddr = obj->indaddr;
  223. ADFS_I(inode)->loadaddr = obj->loadaddr;
  224. ADFS_I(inode)->execaddr = obj->execaddr;
  225. ADFS_I(inode)->attr = obj->attr;
  226. inode->i_mode = adfs_atts2mode(sb, inode);
  227. adfs_adfs2unix_time(&ts, inode);
  228. inode_set_atime_to_ts(inode, ts);
  229. inode_set_mtime_to_ts(inode, ts);
  230. inode_set_ctime_to_ts(inode, ts);
  231. if (S_ISDIR(inode->i_mode)) {
  232. inode->i_op = &adfs_dir_inode_operations;
  233. inode->i_fop = &adfs_dir_operations;
  234. } else if (S_ISREG(inode->i_mode)) {
  235. inode->i_op = &adfs_file_inode_operations;
  236. inode->i_fop = &adfs_file_operations;
  237. inode->i_mapping->a_ops = &adfs_aops;
  238. ADFS_I(inode)->mmu_private = inode->i_size;
  239. }
  240. inode_fake_hash(inode);
  241. out:
  242. return inode;
  243. }
  244. /*
  245. * Validate and convert a changed access mode/time to their ADFS equivalents.
  246. * adfs_write_inode will actually write the information back to the directory
  247. * later.
  248. */
  249. int
  250. adfs_notify_change(struct mnt_idmap *idmap, struct dentry *dentry,
  251. struct iattr *attr)
  252. {
  253. struct inode *inode = d_inode(dentry);
  254. struct super_block *sb = inode->i_sb;
  255. unsigned int ia_valid = attr->ia_valid;
  256. int error;
  257. error = setattr_prepare(&nop_mnt_idmap, dentry, attr);
  258. /*
  259. * we can't change the UID or GID of any file -
  260. * we have a global UID/GID in the superblock
  261. */
  262. if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, ADFS_SB(sb)->s_uid)) ||
  263. (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, ADFS_SB(sb)->s_gid)))
  264. error = -EPERM;
  265. if (error)
  266. goto out;
  267. /* XXX: this is missing some actual on-disk truncation.. */
  268. if (ia_valid & ATTR_SIZE)
  269. truncate_setsize(inode, attr->ia_size);
  270. if (ia_valid & ATTR_MTIME && adfs_inode_is_stamped(inode)) {
  271. adfs_unix2adfs_time(inode, &attr->ia_mtime);
  272. adfs_adfs2unix_time(&attr->ia_mtime, inode);
  273. inode_set_mtime_to_ts(inode, attr->ia_mtime);
  274. }
  275. /*
  276. * FIXME: should we make these == to i_mtime since we don't
  277. * have the ability to represent them in our filesystem?
  278. */
  279. if (ia_valid & ATTR_ATIME)
  280. inode_set_atime_to_ts(inode, attr->ia_atime);
  281. if (ia_valid & ATTR_CTIME)
  282. inode_set_ctime_to_ts(inode, attr->ia_ctime);
  283. if (ia_valid & ATTR_MODE) {
  284. ADFS_I(inode)->attr = adfs_mode2atts(sb, inode, attr->ia_mode);
  285. inode->i_mode = adfs_atts2mode(sb, inode);
  286. }
  287. /*
  288. * FIXME: should we be marking this inode dirty even if
  289. * we don't have any metadata to write back?
  290. */
  291. if (ia_valid & (ATTR_SIZE | ATTR_MTIME | ATTR_MODE))
  292. mark_inode_dirty(inode);
  293. out:
  294. return error;
  295. }
  296. /*
  297. * write an existing inode back to the directory, and therefore the disk.
  298. * The adfs-specific inode data has already been updated by
  299. * adfs_notify_change()
  300. */
  301. int adfs_write_inode(struct inode *inode, struct writeback_control *wbc)
  302. {
  303. struct super_block *sb = inode->i_sb;
  304. struct object_info obj;
  305. obj.indaddr = ADFS_I(inode)->indaddr;
  306. obj.name_len = 0;
  307. obj.parent_id = ADFS_I(inode)->parent_id;
  308. obj.loadaddr = ADFS_I(inode)->loadaddr;
  309. obj.execaddr = ADFS_I(inode)->execaddr;
  310. obj.attr = ADFS_I(inode)->attr;
  311. obj.size = inode->i_size;
  312. return adfs_dir_update(sb, &obj, wbc->sync_mode == WB_SYNC_ALL);
  313. }