mem.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980
  1. /*
  2. * linux/drivers/char/mem.c
  3. *
  4. * Copyright (C) 1991, 1992 Linus Torvalds
  5. *
  6. * Added devfs support.
  7. * Jan-11-1998, C. Scott Ananian <cananian@alumni.princeton.edu>
  8. * Shared /dev/zero mmapping support, Feb 2000, Kanoj Sarcar <kanoj@sgi.com>
  9. */
  10. #include <linux/mm.h>
  11. #include <linux/miscdevice.h>
  12. #include <linux/slab.h>
  13. #include <linux/vmalloc.h>
  14. #include <linux/mman.h>
  15. #include <linux/random.h>
  16. #include <linux/init.h>
  17. #include <linux/raw.h>
  18. #include <linux/tty.h>
  19. #include <linux/capability.h>
  20. #include <linux/ptrace.h>
  21. #include <linux/device.h>
  22. #include <linux/highmem.h>
  23. #include <linux/crash_dump.h>
  24. #include <linux/backing-dev.h>
  25. #include <linux/bootmem.h>
  26. #include <linux/splice.h>
  27. #include <linux/pfn.h>
  28. #include <linux/export.h>
  29. #include <asm/uaccess.h>
  30. #include <asm/io.h>
  31. #ifdef CONFIG_IA64
  32. # include <linux/efi.h>
  33. #endif
  34. static inline unsigned long size_inside_page(unsigned long start,
  35. unsigned long size)
  36. {
  37. unsigned long sz;
  38. sz = PAGE_SIZE - (start & (PAGE_SIZE - 1));
  39. return min(sz, size);
  40. }
  41. #ifndef ARCH_HAS_VALID_PHYS_ADDR_RANGE
  42. static inline int valid_phys_addr_range(unsigned long addr, size_t count)
  43. {
  44. return addr + count <= __pa(high_memory);
  45. }
  46. static inline int valid_mmap_phys_addr_range(unsigned long pfn, size_t size)
  47. {
  48. return 1;
  49. }
  50. #endif
  51. #if defined(CONFIG_DEVMEM) || defined(CONFIG_DEVKMEM)
  52. #ifdef CONFIG_STRICT_DEVMEM
  53. static inline int page_is_allowed(unsigned long pfn)
  54. {
  55. return devmem_is_allowed(pfn);
  56. }
  57. static inline int range_is_allowed(unsigned long pfn, unsigned long size)
  58. {
  59. u64 from = ((u64)pfn) << PAGE_SHIFT;
  60. u64 to = from + size;
  61. u64 cursor = from;
  62. while (cursor < to) {
  63. if (!devmem_is_allowed(pfn)) {
  64. printk(KERN_INFO
  65. "Program %s tried to access /dev/mem between %Lx->%Lx.\n",
  66. current->comm, from, to);
  67. return 0;
  68. }
  69. cursor += PAGE_SIZE;
  70. pfn++;
  71. }
  72. return 1;
  73. }
  74. #else
  75. static inline int page_is_allowed(unsigned long pfn)
  76. {
  77. return 1;
  78. }
  79. static inline int range_is_allowed(unsigned long pfn, unsigned long size)
  80. {
  81. return 1;
  82. }
  83. #endif
  84. #endif
  85. #ifdef CONFIG_DEVMEM
  86. void __weak unxlate_dev_mem_ptr(unsigned long phys, void *addr)
  87. {
  88. }
  89. /*
  90. * This funcion reads the *physical* memory. The f_pos points directly to the
  91. * memory location.
  92. */
  93. static ssize_t read_mem(struct file *file, char __user *buf,
  94. size_t count, loff_t *ppos)
  95. {
  96. unsigned long p = *ppos;
  97. ssize_t read, sz;
  98. char *ptr;
  99. if (!valid_phys_addr_range(p, count))
  100. return -EFAULT;
  101. read = 0;
  102. #ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
  103. /* we don't have page 0 mapped on sparc and m68k.. */
  104. if (p < PAGE_SIZE) {
  105. sz = size_inside_page(p, count);
  106. if (sz > 0) {
  107. if (clear_user(buf, sz))
  108. return -EFAULT;
  109. buf += sz;
  110. p += sz;
  111. count -= sz;
  112. read += sz;
  113. }
  114. }
  115. #endif
  116. while (count > 0) {
  117. unsigned long remaining;
  118. int allowed;
  119. sz = size_inside_page(p, count);
  120. allowed = page_is_allowed(p >> PAGE_SHIFT);
  121. if (!allowed)
  122. return -EPERM;
  123. if (allowed == 2) {
  124. /* Show zeros for restricted memory. */
  125. remaining = clear_user(buf, sz);
  126. } else {
  127. /*
  128. * On ia64 if a page has been mapped somewhere as
  129. * uncached, then it must also be accessed uncached
  130. * by the kernel or data corruption may occur.
  131. */
  132. ptr = xlate_dev_mem_ptr(p);
  133. if (!ptr)
  134. return -EFAULT;
  135. remaining = copy_to_user(buf, ptr, sz);
  136. unxlate_dev_mem_ptr(p, ptr);
  137. }
  138. if (remaining)
  139. return -EFAULT;
  140. buf += sz;
  141. p += sz;
  142. count -= sz;
  143. read += sz;
  144. }
  145. *ppos += read;
  146. return read;
  147. }
  148. static ssize_t write_mem(struct file *file, const char __user *buf,
  149. size_t count, loff_t *ppos)
  150. {
  151. unsigned long p = *ppos;
  152. ssize_t written, sz;
  153. unsigned long copied;
  154. void *ptr;
  155. if (!valid_phys_addr_range(p, count))
  156. return -EFAULT;
  157. written = 0;
  158. #ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
  159. /* we don't have page 0 mapped on sparc and m68k.. */
  160. if (p < PAGE_SIZE) {
  161. sz = size_inside_page(p, count);
  162. /* Hmm. Do something? */
  163. buf += sz;
  164. p += sz;
  165. count -= sz;
  166. written += sz;
  167. }
  168. #endif
  169. while (count > 0) {
  170. int allowed;
  171. sz = size_inside_page(p, count);
  172. allowed = page_is_allowed(p >> PAGE_SHIFT);
  173. if (!allowed)
  174. return -EPERM;
  175. /* Skip actual writing when a page is marked as restricted. */
  176. if (allowed == 1) {
  177. /*
  178. * On ia64 if a page has been mapped somewhere as
  179. * uncached, then it must also be accessed uncached
  180. * by the kernel or data corruption may occur.
  181. */
  182. ptr = xlate_dev_mem_ptr(p);
  183. if (!ptr) {
  184. if (written)
  185. break;
  186. return -EFAULT;
  187. }
  188. copied = copy_from_user(ptr, buf, sz);
  189. unxlate_dev_mem_ptr(p, ptr);
  190. if (copied) {
  191. written += sz - copied;
  192. if (written)
  193. break;
  194. return -EFAULT;
  195. }
  196. }
  197. buf += sz;
  198. p += sz;
  199. count -= sz;
  200. written += sz;
  201. }
  202. *ppos += written;
  203. return written;
  204. }
  205. #endif /* CONFIG_DEVMEM */
  206. #if defined(CONFIG_DEVMEM) || defined(CONFIG_DEVKMEM)
  207. int __weak phys_mem_access_prot_allowed(struct file *file,
  208. unsigned long pfn, unsigned long size, pgprot_t *vma_prot)
  209. {
  210. return 1;
  211. }
  212. #ifndef __HAVE_PHYS_MEM_ACCESS_PROT
  213. /*
  214. * Architectures vary in how they handle caching for addresses
  215. * outside of main memory.
  216. *
  217. */
  218. #ifdef pgprot_noncached
  219. static int uncached_access(struct file *file, unsigned long addr)
  220. {
  221. #if defined(CONFIG_IA64)
  222. /*
  223. * On ia64, we ignore O_DSYNC because we cannot tolerate memory
  224. * attribute aliases.
  225. */
  226. return !(efi_mem_attributes(addr) & EFI_MEMORY_WB);
  227. #elif defined(CONFIG_MIPS)
  228. {
  229. extern int __uncached_access(struct file *file,
  230. unsigned long addr);
  231. return __uncached_access(file, addr);
  232. }
  233. #else
  234. /*
  235. * Accessing memory above the top the kernel knows about or through a
  236. * file pointer
  237. * that was marked O_DSYNC will be done non-cached.
  238. */
  239. if (file->f_flags & O_DSYNC)
  240. return 1;
  241. return addr >= __pa(high_memory);
  242. #endif
  243. }
  244. #endif
  245. static pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
  246. unsigned long size, pgprot_t vma_prot)
  247. {
  248. #ifdef pgprot_noncached
  249. unsigned long offset = pfn << PAGE_SHIFT;
  250. if (uncached_access(file, offset))
  251. return pgprot_noncached(vma_prot);
  252. #endif
  253. return vma_prot;
  254. }
  255. #endif
  256. #ifndef CONFIG_MMU
  257. static unsigned long get_unmapped_area_mem(struct file *file,
  258. unsigned long addr,
  259. unsigned long len,
  260. unsigned long pgoff,
  261. unsigned long flags)
  262. {
  263. if (!valid_mmap_phys_addr_range(pgoff, len))
  264. return (unsigned long) -EINVAL;
  265. return pgoff << PAGE_SHIFT;
  266. }
  267. /* can't do an in-place private mapping if there's no MMU */
  268. static inline int private_mapping_ok(struct vm_area_struct *vma)
  269. {
  270. return vma->vm_flags & VM_MAYSHARE;
  271. }
  272. #else
  273. #define get_unmapped_area_mem NULL
  274. static inline int private_mapping_ok(struct vm_area_struct *vma)
  275. {
  276. return 1;
  277. }
  278. #endif
  279. static const struct vm_operations_struct mmap_mem_ops = {
  280. #ifdef CONFIG_HAVE_IOREMAP_PROT
  281. .access = generic_access_phys
  282. #endif
  283. };
  284. static int mmap_mem(struct file *file, struct vm_area_struct *vma)
  285. {
  286. size_t size = vma->vm_end - vma->vm_start;
  287. if (!valid_mmap_phys_addr_range(vma->vm_pgoff, size))
  288. return -EINVAL;
  289. if (!private_mapping_ok(vma))
  290. return -ENOSYS;
  291. if (!range_is_allowed(vma->vm_pgoff, size))
  292. return -EPERM;
  293. if (!phys_mem_access_prot_allowed(file, vma->vm_pgoff, size,
  294. &vma->vm_page_prot))
  295. return -EINVAL;
  296. vma->vm_page_prot = phys_mem_access_prot(file, vma->vm_pgoff,
  297. size,
  298. vma->vm_page_prot);
  299. vma->vm_ops = &mmap_mem_ops;
  300. /* Remap-pfn-range will mark the range VM_IO and VM_RESERVED */
  301. if (remap_pfn_range(vma,
  302. vma->vm_start,
  303. vma->vm_pgoff,
  304. size,
  305. vma->vm_page_prot)) {
  306. return -EAGAIN;
  307. }
  308. return 0;
  309. }
  310. #endif /* CONFIG_DEVMEM */
  311. #ifdef CONFIG_DEVKMEM
  312. static int mmap_kmem(struct file *file, struct vm_area_struct *vma)
  313. {
  314. unsigned long pfn;
  315. /* Turn a kernel-virtual address into a physical page frame */
  316. pfn = __pa((u64)vma->vm_pgoff << PAGE_SHIFT) >> PAGE_SHIFT;
  317. /*
  318. * RED-PEN: on some architectures there is more mapped memory than
  319. * available in mem_map which pfn_valid checks for. Perhaps should add a
  320. * new macro here.
  321. *
  322. * RED-PEN: vmalloc is not supported right now.
  323. */
  324. if (!pfn_valid(pfn))
  325. return -EIO;
  326. vma->vm_pgoff = pfn;
  327. return mmap_mem(file, vma);
  328. }
  329. #endif
  330. #ifdef CONFIG_CRASH_DUMP
  331. /*
  332. * Read memory corresponding to the old kernel.
  333. */
  334. static ssize_t read_oldmem(struct file *file, char __user *buf,
  335. size_t count, loff_t *ppos)
  336. {
  337. unsigned long pfn, offset;
  338. size_t read = 0, csize;
  339. int rc = 0;
  340. while (count) {
  341. pfn = *ppos / PAGE_SIZE;
  342. if (pfn > saved_max_pfn)
  343. return read;
  344. offset = (unsigned long)(*ppos % PAGE_SIZE);
  345. if (count > PAGE_SIZE - offset)
  346. csize = PAGE_SIZE - offset;
  347. else
  348. csize = count;
  349. rc = copy_oldmem_page(pfn, buf, csize, offset, 1);
  350. if (rc < 0)
  351. return rc;
  352. buf += csize;
  353. *ppos += csize;
  354. read += csize;
  355. count -= csize;
  356. }
  357. return read;
  358. }
  359. #endif
  360. #ifdef CONFIG_DEVKMEM
  361. /*
  362. * This function reads the *virtual* memory as seen by the kernel.
  363. */
  364. static ssize_t read_kmem(struct file *file, char __user *buf,
  365. size_t count, loff_t *ppos)
  366. {
  367. unsigned long p = *ppos;
  368. ssize_t low_count, read, sz;
  369. char * kbuf; /* k-addr because vread() takes vmlist_lock rwlock */
  370. int err = 0;
  371. read = 0;
  372. if (p < (unsigned long) high_memory) {
  373. low_count = count;
  374. if (count > (unsigned long)high_memory - p)
  375. low_count = (unsigned long)high_memory - p;
  376. #ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
  377. /* we don't have page 0 mapped on sparc and m68k.. */
  378. if (p < PAGE_SIZE && low_count > 0) {
  379. sz = size_inside_page(p, low_count);
  380. if (clear_user(buf, sz))
  381. return -EFAULT;
  382. buf += sz;
  383. p += sz;
  384. read += sz;
  385. low_count -= sz;
  386. count -= sz;
  387. }
  388. #endif
  389. while (low_count > 0) {
  390. sz = size_inside_page(p, low_count);
  391. /*
  392. * On ia64 if a page has been mapped somewhere as
  393. * uncached, then it must also be accessed uncached
  394. * by the kernel or data corruption may occur
  395. */
  396. kbuf = xlate_dev_kmem_ptr((char *)p);
  397. if (copy_to_user(buf, kbuf, sz))
  398. return -EFAULT;
  399. buf += sz;
  400. p += sz;
  401. read += sz;
  402. low_count -= sz;
  403. count -= sz;
  404. }
  405. }
  406. if (count > 0) {
  407. kbuf = (char *)__get_free_page(GFP_KERNEL);
  408. if (!kbuf)
  409. return -ENOMEM;
  410. while (count > 0) {
  411. sz = size_inside_page(p, count);
  412. if (!is_vmalloc_or_module_addr((void *)p)) {
  413. err = -ENXIO;
  414. break;
  415. }
  416. sz = vread(kbuf, (char *)p, sz);
  417. if (!sz)
  418. break;
  419. if (copy_to_user(buf, kbuf, sz)) {
  420. err = -EFAULT;
  421. break;
  422. }
  423. count -= sz;
  424. buf += sz;
  425. read += sz;
  426. p += sz;
  427. }
  428. free_page((unsigned long)kbuf);
  429. }
  430. *ppos = p;
  431. return read ? read : err;
  432. }
  433. static ssize_t do_write_kmem(unsigned long p, const char __user *buf,
  434. size_t count, loff_t *ppos)
  435. {
  436. ssize_t written, sz;
  437. unsigned long copied;
  438. written = 0;
  439. #ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
  440. /* we don't have page 0 mapped on sparc and m68k.. */
  441. if (p < PAGE_SIZE) {
  442. sz = size_inside_page(p, count);
  443. /* Hmm. Do something? */
  444. buf += sz;
  445. p += sz;
  446. count -= sz;
  447. written += sz;
  448. }
  449. #endif
  450. while (count > 0) {
  451. char *ptr;
  452. sz = size_inside_page(p, count);
  453. /*
  454. * On ia64 if a page has been mapped somewhere as uncached, then
  455. * it must also be accessed uncached by the kernel or data
  456. * corruption may occur.
  457. */
  458. ptr = xlate_dev_kmem_ptr((char *)p);
  459. copied = copy_from_user(ptr, buf, sz);
  460. if (copied) {
  461. written += sz - copied;
  462. if (written)
  463. break;
  464. return -EFAULT;
  465. }
  466. buf += sz;
  467. p += sz;
  468. count -= sz;
  469. written += sz;
  470. }
  471. *ppos += written;
  472. return written;
  473. }
  474. /*
  475. * This function writes to the *virtual* memory as seen by the kernel.
  476. */
  477. static ssize_t write_kmem(struct file *file, const char __user *buf,
  478. size_t count, loff_t *ppos)
  479. {
  480. unsigned long p = *ppos;
  481. ssize_t wrote = 0;
  482. ssize_t virtr = 0;
  483. char * kbuf; /* k-addr because vwrite() takes vmlist_lock rwlock */
  484. int err = 0;
  485. if (p < (unsigned long) high_memory) {
  486. unsigned long to_write = min_t(unsigned long, count,
  487. (unsigned long)high_memory - p);
  488. wrote = do_write_kmem(p, buf, to_write, ppos);
  489. if (wrote != to_write)
  490. return wrote;
  491. p += wrote;
  492. buf += wrote;
  493. count -= wrote;
  494. }
  495. if (count > 0) {
  496. kbuf = (char *)__get_free_page(GFP_KERNEL);
  497. if (!kbuf)
  498. return wrote ? wrote : -ENOMEM;
  499. while (count > 0) {
  500. unsigned long sz = size_inside_page(p, count);
  501. unsigned long n;
  502. if (!is_vmalloc_or_module_addr((void *)p)) {
  503. err = -ENXIO;
  504. break;
  505. }
  506. n = copy_from_user(kbuf, buf, sz);
  507. if (n) {
  508. err = -EFAULT;
  509. break;
  510. }
  511. vwrite(kbuf, (char *)p, sz);
  512. count -= sz;
  513. buf += sz;
  514. virtr += sz;
  515. p += sz;
  516. }
  517. free_page((unsigned long)kbuf);
  518. }
  519. *ppos = p;
  520. return virtr + wrote ? : err;
  521. }
  522. #endif
  523. #ifdef CONFIG_DEVPORT
  524. static ssize_t read_port(struct file *file, char __user *buf,
  525. size_t count, loff_t *ppos)
  526. {
  527. unsigned long i = *ppos;
  528. char __user *tmp = buf;
  529. if (!access_ok(VERIFY_WRITE, buf, count))
  530. return -EFAULT;
  531. while (count-- > 0 && i < 65536) {
  532. if (__put_user(inb(i), tmp) < 0)
  533. return -EFAULT;
  534. i++;
  535. tmp++;
  536. }
  537. *ppos = i;
  538. return tmp-buf;
  539. }
  540. static ssize_t write_port(struct file *file, const char __user *buf,
  541. size_t count, loff_t *ppos)
  542. {
  543. unsigned long i = *ppos;
  544. const char __user * tmp = buf;
  545. if (!access_ok(VERIFY_READ, buf, count))
  546. return -EFAULT;
  547. while (count-- > 0 && i < 65536) {
  548. char c;
  549. if (__get_user(c, tmp)) {
  550. if (tmp > buf)
  551. break;
  552. return -EFAULT;
  553. }
  554. outb(c, i);
  555. i++;
  556. tmp++;
  557. }
  558. *ppos = i;
  559. return tmp-buf;
  560. }
  561. #endif
  562. static ssize_t read_null(struct file *file, char __user *buf,
  563. size_t count, loff_t *ppos)
  564. {
  565. return 0;
  566. }
  567. static ssize_t write_null(struct file *file, const char __user *buf,
  568. size_t count, loff_t *ppos)
  569. {
  570. return count;
  571. }
  572. static int pipe_to_null(struct pipe_inode_info *info, struct pipe_buffer *buf,
  573. struct splice_desc *sd)
  574. {
  575. return sd->len;
  576. }
  577. static ssize_t splice_write_null(struct pipe_inode_info *pipe, struct file *out,
  578. loff_t *ppos, size_t len, unsigned int flags)
  579. {
  580. return splice_from_pipe(pipe, out, ppos, len, flags, pipe_to_null);
  581. }
  582. static ssize_t read_zero(struct file *file, char __user *buf,
  583. size_t count, loff_t *ppos)
  584. {
  585. size_t written;
  586. if (!count)
  587. return 0;
  588. if (!access_ok(VERIFY_WRITE, buf, count))
  589. return -EFAULT;
  590. written = 0;
  591. while (count) {
  592. unsigned long unwritten;
  593. size_t chunk = count;
  594. if (chunk > PAGE_SIZE)
  595. chunk = PAGE_SIZE; /* Just for latency reasons */
  596. unwritten = __clear_user(buf, chunk);
  597. written += chunk - unwritten;
  598. if (unwritten)
  599. break;
  600. if (signal_pending(current))
  601. return written ? written : -ERESTARTSYS;
  602. buf += chunk;
  603. count -= chunk;
  604. cond_resched();
  605. }
  606. return written ? written : -EFAULT;
  607. }
  608. static int mmap_zero(struct file *file, struct vm_area_struct *vma)
  609. {
  610. #ifndef CONFIG_MMU
  611. return -ENOSYS;
  612. #endif
  613. if (vma->vm_flags & VM_SHARED)
  614. return shmem_zero_setup(vma);
  615. return 0;
  616. }
  617. static ssize_t write_full(struct file *file, const char __user *buf,
  618. size_t count, loff_t *ppos)
  619. {
  620. return -ENOSPC;
  621. }
  622. /*
  623. * Special lseek() function for /dev/null and /dev/zero. Most notably, you
  624. * can fopen() both devices with "a" now. This was previously impossible.
  625. * -- SRB.
  626. */
  627. static loff_t null_lseek(struct file *file, loff_t offset, int orig)
  628. {
  629. return file->f_pos = 0;
  630. }
  631. #if defined(CONFIG_DEVMEM) || defined(CONFIG_DEVKMEM) || defined(CONFIG_DEVPORT)
  632. /*
  633. * The memory devices use the full 32/64 bits of the offset, and so we cannot
  634. * check against negative addresses: they are ok. The return value is weird,
  635. * though, in that case (0).
  636. *
  637. * also note that seeking relative to the "end of file" isn't supported:
  638. * it has no meaning, so it returns -EINVAL.
  639. */
  640. static loff_t memory_lseek(struct file *file, loff_t offset, int orig)
  641. {
  642. loff_t ret;
  643. mutex_lock(&file->f_path.dentry->d_inode->i_mutex);
  644. switch (orig) {
  645. case SEEK_CUR:
  646. offset += file->f_pos;
  647. case SEEK_SET:
  648. /* to avoid userland mistaking f_pos=-9 as -EBADF=-9 */
  649. if ((unsigned long long)offset >= ~0xFFFULL) {
  650. ret = -EOVERFLOW;
  651. break;
  652. }
  653. file->f_pos = offset;
  654. ret = file->f_pos;
  655. force_successful_syscall_return();
  656. break;
  657. default:
  658. ret = -EINVAL;
  659. }
  660. mutex_unlock(&file->f_path.dentry->d_inode->i_mutex);
  661. return ret;
  662. }
  663. #endif
  664. #if defined(CONFIG_DEVMEM) || defined(CONFIG_DEVKMEM) || defined(CONFIG_DEVPORT)
  665. static int open_port(struct inode * inode, struct file * filp)
  666. {
  667. return capable(CAP_SYS_RAWIO) ? 0 : -EPERM;
  668. }
  669. #endif
  670. #define zero_lseek null_lseek
  671. #define full_lseek null_lseek
  672. #define write_zero write_null
  673. #define read_full read_zero
  674. #define open_mem open_port
  675. #define open_kmem open_mem
  676. #define open_oldmem open_mem
  677. #ifdef CONFIG_DEVMEM
  678. static const struct file_operations mem_fops = {
  679. .llseek = memory_lseek,
  680. .read = read_mem,
  681. .write = write_mem,
  682. .mmap = mmap_mem,
  683. .open = open_mem,
  684. .get_unmapped_area = get_unmapped_area_mem,
  685. };
  686. #endif
  687. #ifdef CONFIG_DEVKMEM
  688. static const struct file_operations kmem_fops = {
  689. .llseek = memory_lseek,
  690. .read = read_kmem,
  691. .write = write_kmem,
  692. .mmap = mmap_kmem,
  693. .open = open_kmem,
  694. .get_unmapped_area = get_unmapped_area_mem,
  695. };
  696. #endif
  697. static const struct file_operations null_fops = {
  698. .llseek = null_lseek,
  699. .read = read_null,
  700. .write = write_null,
  701. .splice_write = splice_write_null,
  702. };
  703. #ifdef CONFIG_DEVPORT
  704. static const struct file_operations port_fops = {
  705. .llseek = memory_lseek,
  706. .read = read_port,
  707. .write = write_port,
  708. .open = open_port,
  709. };
  710. #endif
  711. static const struct file_operations zero_fops = {
  712. .llseek = zero_lseek,
  713. .read = read_zero,
  714. .write = write_zero,
  715. .mmap = mmap_zero,
  716. };
  717. /*
  718. * capabilities for /dev/zero
  719. * - permits private mappings, "copies" are taken of the source of zeros
  720. * - no writeback happens
  721. */
  722. static struct backing_dev_info zero_bdi = {
  723. .name = "char/mem",
  724. .capabilities = BDI_CAP_MAP_COPY | BDI_CAP_NO_ACCT_AND_WRITEBACK,
  725. };
  726. static const struct file_operations full_fops = {
  727. .llseek = full_lseek,
  728. .read = read_full,
  729. .write = write_full,
  730. };
  731. #ifdef CONFIG_CRASH_DUMP
  732. static const struct file_operations oldmem_fops = {
  733. .read = read_oldmem,
  734. .open = open_oldmem,
  735. .llseek = default_llseek,
  736. };
  737. #endif
  738. static ssize_t kmsg_writev(struct kiocb *iocb, const struct iovec *iv,
  739. unsigned long count, loff_t pos)
  740. {
  741. char *line, *p;
  742. int i;
  743. ssize_t ret = -EFAULT;
  744. size_t len = iov_length(iv, count);
  745. line = kmalloc(len + 1, GFP_KERNEL);
  746. if (line == NULL)
  747. return -ENOMEM;
  748. /*
  749. * copy all vectors into a single string, to ensure we do
  750. * not interleave our log line with other printk calls
  751. */
  752. p = line;
  753. for (i = 0; i < count; i++) {
  754. if (copy_from_user(p, iv[i].iov_base, iv[i].iov_len))
  755. goto out;
  756. p += iv[i].iov_len;
  757. }
  758. p[0] = '\0';
  759. ret = printk("%s", line);
  760. /* printk can add a prefix */
  761. if (ret > len)
  762. ret = len;
  763. out:
  764. kfree(line);
  765. return ret;
  766. }
  767. static const struct file_operations kmsg_fops = {
  768. .aio_write = kmsg_writev,
  769. .llseek = noop_llseek,
  770. };
  771. static const struct memdev {
  772. const char *name;
  773. umode_t mode;
  774. const struct file_operations *fops;
  775. struct backing_dev_info *dev_info;
  776. } devlist[] = {
  777. #ifdef CONFIG_DEVMEM
  778. [1] = { "mem", 0, &mem_fops, &directly_mappable_cdev_bdi },
  779. #endif
  780. #ifdef CONFIG_DEVKMEM
  781. [2] = { "kmem", 0, &kmem_fops, &directly_mappable_cdev_bdi },
  782. #endif
  783. [3] = { "null", 0666, &null_fops, NULL },
  784. #ifdef CONFIG_DEVPORT
  785. [4] = { "port", 0, &port_fops, NULL },
  786. #endif
  787. [5] = { "zero", 0666, &zero_fops, &zero_bdi },
  788. [7] = { "full", 0666, &full_fops, NULL },
  789. [8] = { "random", 0666, &random_fops, NULL },
  790. [9] = { "urandom", 0666, &urandom_fops, NULL },
  791. [11] = { "kmsg", 0, &kmsg_fops, NULL },
  792. #ifdef CONFIG_CRASH_DUMP
  793. [12] = { "oldmem", 0, &oldmem_fops, NULL },
  794. #endif
  795. };
  796. static int memory_open(struct inode *inode, struct file *filp)
  797. {
  798. int minor;
  799. const struct memdev *dev;
  800. minor = iminor(inode);
  801. if (minor >= ARRAY_SIZE(devlist))
  802. return -ENXIO;
  803. dev = &devlist[minor];
  804. if (!dev->fops)
  805. return -ENXIO;
  806. filp->f_op = dev->fops;
  807. if (dev->dev_info)
  808. filp->f_mapping->backing_dev_info = dev->dev_info;
  809. /* Is /dev/mem or /dev/kmem ? */
  810. if (dev->dev_info == &directly_mappable_cdev_bdi)
  811. filp->f_mode |= FMODE_UNSIGNED_OFFSET;
  812. if (dev->fops->open)
  813. return dev->fops->open(inode, filp);
  814. return 0;
  815. }
  816. static const struct file_operations memory_fops = {
  817. .open = memory_open,
  818. .llseek = noop_llseek,
  819. };
  820. static char *mem_devnode(struct device *dev, umode_t *mode)
  821. {
  822. if (mode && devlist[MINOR(dev->devt)].mode)
  823. *mode = devlist[MINOR(dev->devt)].mode;
  824. return NULL;
  825. }
  826. static struct class *mem_class;
  827. static int __init chr_dev_init(void)
  828. {
  829. int minor;
  830. int err;
  831. err = bdi_init(&zero_bdi);
  832. if (err)
  833. return err;
  834. if (register_chrdev(MEM_MAJOR, "mem", &memory_fops))
  835. printk("unable to get major %d for memory devs\n", MEM_MAJOR);
  836. mem_class = class_create(THIS_MODULE, "mem");
  837. if (IS_ERR(mem_class))
  838. return PTR_ERR(mem_class);
  839. mem_class->devnode = mem_devnode;
  840. for (minor = 1; minor < ARRAY_SIZE(devlist); minor++) {
  841. if (!devlist[minor].name)
  842. continue;
  843. device_create(mem_class, NULL, MKDEV(MEM_MAJOR, minor),
  844. NULL, devlist[minor].name);
  845. }
  846. return tty_init();
  847. }
  848. fs_initcall(chr_dev_init);