Linux 4.19.133
[linux/fpc-iii.git] / drivers / staging / android / ashmem.c
blobe3df4bf521b50edb008a481bab2973155ea1f897
1 // SPDX-License-Identifier: GPL-2.0
2 /* mm/ashmem.c
4 * Anonymous Shared Memory Subsystem, ashmem
6 * Copyright (C) 2008 Google, Inc.
8 * Robert Love <rlove@google.com>
9 */
11 #define pr_fmt(fmt) "ashmem: " fmt
13 #include <linux/init.h>
14 #include <linux/export.h>
15 #include <linux/file.h>
16 #include <linux/fs.h>
17 #include <linux/falloc.h>
18 #include <linux/miscdevice.h>
19 #include <linux/security.h>
20 #include <linux/mm.h>
21 #include <linux/mman.h>
22 #include <linux/uaccess.h>
23 #include <linux/personality.h>
24 #include <linux/bitops.h>
25 #include <linux/mutex.h>
26 #include <linux/shmem_fs.h>
27 #include "ashmem.h"
29 #define ASHMEM_NAME_PREFIX "dev/ashmem/"
30 #define ASHMEM_NAME_PREFIX_LEN (sizeof(ASHMEM_NAME_PREFIX) - 1)
31 #define ASHMEM_FULL_NAME_LEN (ASHMEM_NAME_LEN + ASHMEM_NAME_PREFIX_LEN)
33 /**
34 * struct ashmem_area - The anonymous shared memory area
35 * @name: The optional name in /proc/pid/maps
36 * @unpinned_list: The list of all ashmem areas
37 * @file: The shmem-based backing file
38 * @size: The size of the mapping, in bytes
39 * @prot_mask: The allowed protection bits, as vm_flags
41 * The lifecycle of this structure is from our parent file's open() until
42 * its release(). It is also protected by 'ashmem_mutex'
44 * Warning: Mappings do NOT pin this structure; It dies on close()
46 struct ashmem_area {
47 char name[ASHMEM_FULL_NAME_LEN];
48 struct list_head unpinned_list;
49 struct file *file;
50 size_t size;
51 unsigned long prot_mask;
54 /**
55 * struct ashmem_range - A range of unpinned/evictable pages
56 * @lru: The entry in the LRU list
57 * @unpinned: The entry in its area's unpinned list
58 * @asma: The associated anonymous shared memory area.
59 * @pgstart: The starting page (inclusive)
60 * @pgend: The ending page (inclusive)
61 * @purged: The purge status (ASHMEM_NOT or ASHMEM_WAS_PURGED)
63 * The lifecycle of this structure is from unpin to pin.
64 * It is protected by 'ashmem_mutex'
66 struct ashmem_range {
67 struct list_head lru;
68 struct list_head unpinned;
69 struct ashmem_area *asma;
70 size_t pgstart;
71 size_t pgend;
72 unsigned int purged;
75 /* LRU list of unpinned pages, protected by ashmem_mutex */
76 static LIST_HEAD(ashmem_lru_list);
78 static atomic_t ashmem_shrink_inflight = ATOMIC_INIT(0);
79 static DECLARE_WAIT_QUEUE_HEAD(ashmem_shrink_wait);
82 * long lru_count - The count of pages on our LRU list.
84 * This is protected by ashmem_mutex.
86 static unsigned long lru_count;
89 * ashmem_mutex - protects the list of and each individual ashmem_area
91 * Lock Ordering: ashmex_mutex -> i_mutex -> i_alloc_sem
93 static DEFINE_MUTEX(ashmem_mutex);
95 static struct kmem_cache *ashmem_area_cachep __read_mostly;
96 static struct kmem_cache *ashmem_range_cachep __read_mostly;
98 static inline unsigned long range_size(struct ashmem_range *range)
100 return range->pgend - range->pgstart + 1;
103 static inline bool range_on_lru(struct ashmem_range *range)
105 return range->purged == ASHMEM_NOT_PURGED;
108 static inline bool page_range_subsumes_range(struct ashmem_range *range,
109 size_t start, size_t end)
111 return (range->pgstart >= start) && (range->pgend <= end);
114 static inline bool page_range_subsumed_by_range(struct ashmem_range *range,
115 size_t start, size_t end)
117 return (range->pgstart <= start) && (range->pgend >= end);
120 static inline bool page_in_range(struct ashmem_range *range, size_t page)
122 return (range->pgstart <= page) && (range->pgend >= page);
125 static inline bool page_range_in_range(struct ashmem_range *range,
126 size_t start, size_t end)
128 return page_in_range(range, start) || page_in_range(range, end) ||
129 page_range_subsumes_range(range, start, end);
132 static inline bool range_before_page(struct ashmem_range *range, size_t page)
134 return range->pgend < page;
137 #define PROT_MASK (PROT_EXEC | PROT_READ | PROT_WRITE)
140 * lru_add() - Adds a range of memory to the LRU list
141 * @range: The memory range being added.
143 * The range is first added to the end (tail) of the LRU list.
144 * After this, the size of the range is added to @lru_count
146 static inline void lru_add(struct ashmem_range *range)
148 list_add_tail(&range->lru, &ashmem_lru_list);
149 lru_count += range_size(range);
153 * lru_del() - Removes a range of memory from the LRU list
154 * @range: The memory range being removed
156 * The range is first deleted from the LRU list.
157 * After this, the size of the range is removed from @lru_count
159 static inline void lru_del(struct ashmem_range *range)
161 list_del(&range->lru);
162 lru_count -= range_size(range);
166 * range_alloc() - Allocates and initializes a new ashmem_range structure
167 * @asma: The associated ashmem_area
168 * @prev_range: The previous ashmem_range in the sorted asma->unpinned list
169 * @purged: Initial purge status (ASMEM_NOT_PURGED or ASHMEM_WAS_PURGED)
170 * @start: The starting page (inclusive)
171 * @end: The ending page (inclusive)
173 * This function is protected by ashmem_mutex.
175 static void range_alloc(struct ashmem_area *asma,
176 struct ashmem_range *prev_range, unsigned int purged,
177 size_t start, size_t end,
178 struct ashmem_range **new_range)
180 struct ashmem_range *range = *new_range;
182 *new_range = NULL;
183 range->asma = asma;
184 range->pgstart = start;
185 range->pgend = end;
186 range->purged = purged;
188 list_add_tail(&range->unpinned, &prev_range->unpinned);
190 if (range_on_lru(range))
191 lru_add(range);
195 * range_del() - Deletes and dealloctes an ashmem_range structure
196 * @range: The associated ashmem_range that has previously been allocated
198 static void range_del(struct ashmem_range *range)
200 list_del(&range->unpinned);
201 if (range_on_lru(range))
202 lru_del(range);
203 kmem_cache_free(ashmem_range_cachep, range);
207 * range_shrink() - Shrinks an ashmem_range
208 * @range: The associated ashmem_range being shrunk
209 * @start: The starting byte of the new range
210 * @end: The ending byte of the new range
212 * This does not modify the data inside the existing range in any way - It
213 * simply shrinks the boundaries of the range.
215 * Theoretically, with a little tweaking, this could eventually be changed
216 * to range_resize, and expand the lru_count if the new range is larger.
218 static inline void range_shrink(struct ashmem_range *range,
219 size_t start, size_t end)
221 size_t pre = range_size(range);
223 range->pgstart = start;
224 range->pgend = end;
226 if (range_on_lru(range))
227 lru_count -= pre - range_size(range);
231 * ashmem_open() - Opens an Anonymous Shared Memory structure
232 * @inode: The backing file's index node(?)
233 * @file: The backing file
235 * Please note that the ashmem_area is not returned by this function - It is
236 * instead written to "file->private_data".
238 * Return: 0 if successful, or another code if unsuccessful.
240 static int ashmem_open(struct inode *inode, struct file *file)
242 struct ashmem_area *asma;
243 int ret;
245 ret = generic_file_open(inode, file);
246 if (ret)
247 return ret;
249 asma = kmem_cache_zalloc(ashmem_area_cachep, GFP_KERNEL);
250 if (!asma)
251 return -ENOMEM;
253 INIT_LIST_HEAD(&asma->unpinned_list);
254 memcpy(asma->name, ASHMEM_NAME_PREFIX, ASHMEM_NAME_PREFIX_LEN);
255 asma->prot_mask = PROT_MASK;
256 file->private_data = asma;
258 return 0;
262 * ashmem_release() - Releases an Anonymous Shared Memory structure
263 * @ignored: The backing file's Index Node(?) - It is ignored here.
264 * @file: The backing file
266 * Return: 0 if successful. If it is anything else, go have a coffee and
267 * try again.
269 static int ashmem_release(struct inode *ignored, struct file *file)
271 struct ashmem_area *asma = file->private_data;
272 struct ashmem_range *range, *next;
274 mutex_lock(&ashmem_mutex);
275 list_for_each_entry_safe(range, next, &asma->unpinned_list, unpinned)
276 range_del(range);
277 mutex_unlock(&ashmem_mutex);
279 if (asma->file)
280 fput(asma->file);
281 kmem_cache_free(ashmem_area_cachep, asma);
283 return 0;
286 static ssize_t ashmem_read_iter(struct kiocb *iocb, struct iov_iter *iter)
288 struct ashmem_area *asma = iocb->ki_filp->private_data;
289 int ret = 0;
291 mutex_lock(&ashmem_mutex);
293 /* If size is not set, or set to 0, always return EOF. */
294 if (asma->size == 0)
295 goto out_unlock;
297 if (!asma->file) {
298 ret = -EBADF;
299 goto out_unlock;
303 * asma and asma->file are used outside the lock here. We assume
304 * once asma->file is set it will never be changed, and will not
305 * be destroyed until all references to the file are dropped and
306 * ashmem_release is called.
308 mutex_unlock(&ashmem_mutex);
309 ret = vfs_iter_read(asma->file, iter, &iocb->ki_pos, 0);
310 mutex_lock(&ashmem_mutex);
311 if (ret > 0)
312 asma->file->f_pos = iocb->ki_pos;
313 out_unlock:
314 mutex_unlock(&ashmem_mutex);
315 return ret;
318 static loff_t ashmem_llseek(struct file *file, loff_t offset, int origin)
320 struct ashmem_area *asma = file->private_data;
321 loff_t ret;
323 mutex_lock(&ashmem_mutex);
325 if (asma->size == 0) {
326 mutex_unlock(&ashmem_mutex);
327 return -EINVAL;
330 if (!asma->file) {
331 mutex_unlock(&ashmem_mutex);
332 return -EBADF;
335 mutex_unlock(&ashmem_mutex);
337 ret = vfs_llseek(asma->file, offset, origin);
338 if (ret < 0)
339 return ret;
341 /** Copy f_pos from backing file, since f_ops->llseek() sets it */
342 file->f_pos = asma->file->f_pos;
343 return ret;
346 static inline vm_flags_t calc_vm_may_flags(unsigned long prot)
348 return _calc_vm_trans(prot, PROT_READ, VM_MAYREAD) |
349 _calc_vm_trans(prot, PROT_WRITE, VM_MAYWRITE) |
350 _calc_vm_trans(prot, PROT_EXEC, VM_MAYEXEC);
353 static int ashmem_vmfile_mmap(struct file *file, struct vm_area_struct *vma)
355 /* do not allow to mmap ashmem backing shmem file directly */
356 return -EPERM;
359 static unsigned long
360 ashmem_vmfile_get_unmapped_area(struct file *file, unsigned long addr,
361 unsigned long len, unsigned long pgoff,
362 unsigned long flags)
364 return current->mm->get_unmapped_area(file, addr, len, pgoff, flags);
367 static int ashmem_mmap(struct file *file, struct vm_area_struct *vma)
369 static struct file_operations vmfile_fops;
370 struct ashmem_area *asma = file->private_data;
371 int ret = 0;
373 mutex_lock(&ashmem_mutex);
375 /* user needs to SET_SIZE before mapping */
376 if (!asma->size) {
377 ret = -EINVAL;
378 goto out;
381 /* requested mapping size larger than object size */
382 if (vma->vm_end - vma->vm_start > PAGE_ALIGN(asma->size)) {
383 ret = -EINVAL;
384 goto out;
387 /* requested protection bits must match our allowed protection mask */
388 if ((vma->vm_flags & ~calc_vm_prot_bits(asma->prot_mask, 0)) &
389 calc_vm_prot_bits(PROT_MASK, 0)) {
390 ret = -EPERM;
391 goto out;
393 vma->vm_flags &= ~calc_vm_may_flags(~asma->prot_mask);
395 if (!asma->file) {
396 char *name = ASHMEM_NAME_DEF;
397 struct file *vmfile;
399 if (asma->name[ASHMEM_NAME_PREFIX_LEN] != '\0')
400 name = asma->name;
402 /* ... and allocate the backing shmem file */
403 vmfile = shmem_file_setup(name, asma->size, vma->vm_flags);
404 if (IS_ERR(vmfile)) {
405 ret = PTR_ERR(vmfile);
406 goto out;
408 vmfile->f_mode |= FMODE_LSEEK;
409 asma->file = vmfile;
411 * override mmap operation of the vmfile so that it can't be
412 * remapped which would lead to creation of a new vma with no
413 * asma permission checks. Have to override get_unmapped_area
414 * as well to prevent VM_BUG_ON check for f_ops modification.
416 if (!vmfile_fops.mmap) {
417 vmfile_fops = *vmfile->f_op;
418 vmfile_fops.mmap = ashmem_vmfile_mmap;
419 vmfile_fops.get_unmapped_area =
420 ashmem_vmfile_get_unmapped_area;
422 vmfile->f_op = &vmfile_fops;
424 get_file(asma->file);
427 * XXX - Reworked to use shmem_zero_setup() instead of
428 * shmem_set_file while we're in staging. -jstultz
430 if (vma->vm_flags & VM_SHARED) {
431 ret = shmem_zero_setup(vma);
432 if (ret) {
433 fput(asma->file);
434 goto out;
436 } else {
437 vma_set_anonymous(vma);
440 if (vma->vm_file)
441 fput(vma->vm_file);
442 vma->vm_file = asma->file;
444 out:
445 mutex_unlock(&ashmem_mutex);
446 return ret;
450 * ashmem_shrink - our cache shrinker, called from mm/vmscan.c
452 * 'nr_to_scan' is the number of objects to scan for freeing.
454 * 'gfp_mask' is the mask of the allocation that got us into this mess.
456 * Return value is the number of objects freed or -1 if we cannot
457 * proceed without risk of deadlock (due to gfp_mask).
459 * We approximate LRU via least-recently-unpinned, jettisoning unpinned partial
460 * chunks of ashmem regions LRU-wise one-at-a-time until we hit 'nr_to_scan'
461 * pages freed.
463 static unsigned long
464 ashmem_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
466 unsigned long freed = 0;
468 /* We might recurse into filesystem code, so bail out if necessary */
469 if (!(sc->gfp_mask & __GFP_FS))
470 return SHRINK_STOP;
472 if (!mutex_trylock(&ashmem_mutex))
473 return -1;
475 while (!list_empty(&ashmem_lru_list)) {
476 struct ashmem_range *range =
477 list_first_entry(&ashmem_lru_list, typeof(*range), lru);
478 loff_t start = range->pgstart * PAGE_SIZE;
479 loff_t end = (range->pgend + 1) * PAGE_SIZE;
480 struct file *f = range->asma->file;
482 get_file(f);
483 atomic_inc(&ashmem_shrink_inflight);
484 range->purged = ASHMEM_WAS_PURGED;
485 lru_del(range);
487 freed += range_size(range);
488 mutex_unlock(&ashmem_mutex);
489 f->f_op->fallocate(f,
490 FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
491 start, end - start);
492 fput(f);
493 if (atomic_dec_and_test(&ashmem_shrink_inflight))
494 wake_up_all(&ashmem_shrink_wait);
495 if (!mutex_trylock(&ashmem_mutex))
496 goto out;
497 if (--sc->nr_to_scan <= 0)
498 break;
500 mutex_unlock(&ashmem_mutex);
501 out:
502 return freed;
505 static unsigned long
506 ashmem_shrink_count(struct shrinker *shrink, struct shrink_control *sc)
509 * note that lru_count is count of pages on the lru, not a count of
510 * objects on the list. This means the scan function needs to return the
511 * number of pages freed, not the number of objects scanned.
513 return lru_count;
516 static struct shrinker ashmem_shrinker = {
517 .count_objects = ashmem_shrink_count,
518 .scan_objects = ashmem_shrink_scan,
520 * XXX (dchinner): I wish people would comment on why they need on
521 * significant changes to the default value here
523 .seeks = DEFAULT_SEEKS * 4,
526 static int set_prot_mask(struct ashmem_area *asma, unsigned long prot)
528 int ret = 0;
530 mutex_lock(&ashmem_mutex);
532 /* the user can only remove, not add, protection bits */
533 if ((asma->prot_mask & prot) != prot) {
534 ret = -EINVAL;
535 goto out;
538 /* does the application expect PROT_READ to imply PROT_EXEC? */
539 if ((prot & PROT_READ) && (current->personality & READ_IMPLIES_EXEC))
540 prot |= PROT_EXEC;
542 asma->prot_mask = prot;
544 out:
545 mutex_unlock(&ashmem_mutex);
546 return ret;
549 static int set_name(struct ashmem_area *asma, void __user *name)
551 int len;
552 int ret = 0;
553 char local_name[ASHMEM_NAME_LEN];
556 * Holding the ashmem_mutex while doing a copy_from_user might cause
557 * an data abort which would try to access mmap_sem. If another
558 * thread has invoked ashmem_mmap then it will be holding the
559 * semaphore and will be waiting for ashmem_mutex, there by leading to
560 * deadlock. We'll release the mutex and take the name to a local
561 * variable that does not need protection and later copy the local
562 * variable to the structure member with lock held.
564 len = strncpy_from_user(local_name, name, ASHMEM_NAME_LEN);
565 if (len < 0)
566 return len;
567 if (len == ASHMEM_NAME_LEN)
568 local_name[ASHMEM_NAME_LEN - 1] = '\0';
569 mutex_lock(&ashmem_mutex);
570 /* cannot change an existing mapping's name */
571 if (asma->file)
572 ret = -EINVAL;
573 else
574 strcpy(asma->name + ASHMEM_NAME_PREFIX_LEN, local_name);
576 mutex_unlock(&ashmem_mutex);
577 return ret;
580 static int get_name(struct ashmem_area *asma, void __user *name)
582 int ret = 0;
583 size_t len;
585 * Have a local variable to which we'll copy the content
586 * from asma with the lock held. Later we can copy this to the user
587 * space safely without holding any locks. So even if we proceed to
588 * wait for mmap_sem, it won't lead to deadlock.
590 char local_name[ASHMEM_NAME_LEN];
592 mutex_lock(&ashmem_mutex);
593 if (asma->name[ASHMEM_NAME_PREFIX_LEN] != '\0') {
595 * Copying only `len', instead of ASHMEM_NAME_LEN, bytes
596 * prevents us from revealing one user's stack to another.
598 len = strlen(asma->name + ASHMEM_NAME_PREFIX_LEN) + 1;
599 memcpy(local_name, asma->name + ASHMEM_NAME_PREFIX_LEN, len);
600 } else {
601 len = sizeof(ASHMEM_NAME_DEF);
602 memcpy(local_name, ASHMEM_NAME_DEF, len);
604 mutex_unlock(&ashmem_mutex);
607 * Now we are just copying from the stack variable to userland
608 * No lock held
610 if (copy_to_user(name, local_name, len))
611 ret = -EFAULT;
612 return ret;
616 * ashmem_pin - pin the given ashmem region, returning whether it was
617 * previously purged (ASHMEM_WAS_PURGED) or not (ASHMEM_NOT_PURGED).
619 * Caller must hold ashmem_mutex.
621 static int ashmem_pin(struct ashmem_area *asma, size_t pgstart, size_t pgend,
622 struct ashmem_range **new_range)
624 struct ashmem_range *range, *next;
625 int ret = ASHMEM_NOT_PURGED;
627 list_for_each_entry_safe(range, next, &asma->unpinned_list, unpinned) {
628 /* moved past last applicable page; we can short circuit */
629 if (range_before_page(range, pgstart))
630 break;
633 * The user can ask us to pin pages that span multiple ranges,
634 * or to pin pages that aren't even unpinned, so this is messy.
636 * Four cases:
637 * 1. The requested range subsumes an existing range, so we
638 * just remove the entire matching range.
639 * 2. The requested range overlaps the start of an existing
640 * range, so we just update that range.
641 * 3. The requested range overlaps the end of an existing
642 * range, so we just update that range.
643 * 4. The requested range punches a hole in an existing range,
644 * so we have to update one side of the range and then
645 * create a new range for the other side.
647 if (page_range_in_range(range, pgstart, pgend)) {
648 ret |= range->purged;
650 /* Case #1: Easy. Just nuke the whole thing. */
651 if (page_range_subsumes_range(range, pgstart, pgend)) {
652 range_del(range);
653 continue;
656 /* Case #2: We overlap from the start, so adjust it */
657 if (range->pgstart >= pgstart) {
658 range_shrink(range, pgend + 1, range->pgend);
659 continue;
662 /* Case #3: We overlap from the rear, so adjust it */
663 if (range->pgend <= pgend) {
664 range_shrink(range, range->pgstart,
665 pgstart - 1);
666 continue;
670 * Case #4: We eat a chunk out of the middle. A bit
671 * more complicated, we allocate a new range for the
672 * second half and adjust the first chunk's endpoint.
674 range_alloc(asma, range, range->purged,
675 pgend + 1, range->pgend, new_range);
676 range_shrink(range, range->pgstart, pgstart - 1);
677 break;
681 return ret;
685 * ashmem_unpin - unpin the given range of pages. Returns zero on success.
687 * Caller must hold ashmem_mutex.
689 static int ashmem_unpin(struct ashmem_area *asma, size_t pgstart, size_t pgend,
690 struct ashmem_range **new_range)
692 struct ashmem_range *range, *next;
693 unsigned int purged = ASHMEM_NOT_PURGED;
695 restart:
696 list_for_each_entry_safe(range, next, &asma->unpinned_list, unpinned) {
697 /* short circuit: this is our insertion point */
698 if (range_before_page(range, pgstart))
699 break;
702 * The user can ask us to unpin pages that are already entirely
703 * or partially pinned. We handle those two cases here.
705 if (page_range_subsumed_by_range(range, pgstart, pgend))
706 return 0;
707 if (page_range_in_range(range, pgstart, pgend)) {
708 pgstart = min(range->pgstart, pgstart);
709 pgend = max(range->pgend, pgend);
710 purged |= range->purged;
711 range_del(range);
712 goto restart;
716 range_alloc(asma, range, purged, pgstart, pgend, new_range);
717 return 0;
721 * ashmem_get_pin_status - Returns ASHMEM_IS_UNPINNED if _any_ pages in the
722 * given interval are unpinned and ASHMEM_IS_PINNED otherwise.
724 * Caller must hold ashmem_mutex.
726 static int ashmem_get_pin_status(struct ashmem_area *asma, size_t pgstart,
727 size_t pgend)
729 struct ashmem_range *range;
730 int ret = ASHMEM_IS_PINNED;
732 list_for_each_entry(range, &asma->unpinned_list, unpinned) {
733 if (range_before_page(range, pgstart))
734 break;
735 if (page_range_in_range(range, pgstart, pgend)) {
736 ret = ASHMEM_IS_UNPINNED;
737 break;
741 return ret;
744 static int ashmem_pin_unpin(struct ashmem_area *asma, unsigned long cmd,
745 void __user *p)
747 struct ashmem_pin pin;
748 size_t pgstart, pgend;
749 int ret = -EINVAL;
750 struct ashmem_range *range = NULL;
752 if (copy_from_user(&pin, p, sizeof(pin)))
753 return -EFAULT;
755 if (cmd == ASHMEM_PIN || cmd == ASHMEM_UNPIN) {
756 range = kmem_cache_zalloc(ashmem_range_cachep, GFP_KERNEL);
757 if (!range)
758 return -ENOMEM;
761 mutex_lock(&ashmem_mutex);
762 wait_event(ashmem_shrink_wait, !atomic_read(&ashmem_shrink_inflight));
764 if (!asma->file)
765 goto out_unlock;
767 /* per custom, you can pass zero for len to mean "everything onward" */
768 if (!pin.len)
769 pin.len = PAGE_ALIGN(asma->size) - pin.offset;
771 if ((pin.offset | pin.len) & ~PAGE_MASK)
772 goto out_unlock;
774 if (((__u32)-1) - pin.offset < pin.len)
775 goto out_unlock;
777 if (PAGE_ALIGN(asma->size) < pin.offset + pin.len)
778 goto out_unlock;
780 pgstart = pin.offset / PAGE_SIZE;
781 pgend = pgstart + (pin.len / PAGE_SIZE) - 1;
783 switch (cmd) {
784 case ASHMEM_PIN:
785 ret = ashmem_pin(asma, pgstart, pgend, &range);
786 break;
787 case ASHMEM_UNPIN:
788 ret = ashmem_unpin(asma, pgstart, pgend, &range);
789 break;
790 case ASHMEM_GET_PIN_STATUS:
791 ret = ashmem_get_pin_status(asma, pgstart, pgend);
792 break;
795 out_unlock:
796 mutex_unlock(&ashmem_mutex);
797 if (range)
798 kmem_cache_free(ashmem_range_cachep, range);
800 return ret;
803 static long ashmem_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
805 struct ashmem_area *asma = file->private_data;
806 long ret = -ENOTTY;
808 switch (cmd) {
809 case ASHMEM_SET_NAME:
810 ret = set_name(asma, (void __user *)arg);
811 break;
812 case ASHMEM_GET_NAME:
813 ret = get_name(asma, (void __user *)arg);
814 break;
815 case ASHMEM_SET_SIZE:
816 ret = -EINVAL;
817 mutex_lock(&ashmem_mutex);
818 if (!asma->file) {
819 ret = 0;
820 asma->size = (size_t)arg;
822 mutex_unlock(&ashmem_mutex);
823 break;
824 case ASHMEM_GET_SIZE:
825 ret = asma->size;
826 break;
827 case ASHMEM_SET_PROT_MASK:
828 ret = set_prot_mask(asma, arg);
829 break;
830 case ASHMEM_GET_PROT_MASK:
831 ret = asma->prot_mask;
832 break;
833 case ASHMEM_PIN:
834 case ASHMEM_UNPIN:
835 case ASHMEM_GET_PIN_STATUS:
836 ret = ashmem_pin_unpin(asma, cmd, (void __user *)arg);
837 break;
838 case ASHMEM_PURGE_ALL_CACHES:
839 ret = -EPERM;
840 if (capable(CAP_SYS_ADMIN)) {
841 struct shrink_control sc = {
842 .gfp_mask = GFP_KERNEL,
843 .nr_to_scan = LONG_MAX,
845 ret = ashmem_shrink_count(&ashmem_shrinker, &sc);
846 ashmem_shrink_scan(&ashmem_shrinker, &sc);
848 break;
851 return ret;
854 /* support of 32bit userspace on 64bit platforms */
855 #ifdef CONFIG_COMPAT
856 static long compat_ashmem_ioctl(struct file *file, unsigned int cmd,
857 unsigned long arg)
859 switch (cmd) {
860 case COMPAT_ASHMEM_SET_SIZE:
861 cmd = ASHMEM_SET_SIZE;
862 break;
863 case COMPAT_ASHMEM_SET_PROT_MASK:
864 cmd = ASHMEM_SET_PROT_MASK;
865 break;
867 return ashmem_ioctl(file, cmd, arg);
869 #endif
870 #ifdef CONFIG_PROC_FS
871 static void ashmem_show_fdinfo(struct seq_file *m, struct file *file)
873 struct ashmem_area *asma = file->private_data;
875 mutex_lock(&ashmem_mutex);
877 if (asma->file)
878 seq_printf(m, "inode:\t%ld\n", file_inode(asma->file)->i_ino);
880 if (asma->name[ASHMEM_NAME_PREFIX_LEN] != '\0')
881 seq_printf(m, "name:\t%s\n",
882 asma->name + ASHMEM_NAME_PREFIX_LEN);
884 mutex_unlock(&ashmem_mutex);
886 #endif
887 static const struct file_operations ashmem_fops = {
888 .owner = THIS_MODULE,
889 .open = ashmem_open,
890 .release = ashmem_release,
891 .read_iter = ashmem_read_iter,
892 .llseek = ashmem_llseek,
893 .mmap = ashmem_mmap,
894 .unlocked_ioctl = ashmem_ioctl,
895 #ifdef CONFIG_COMPAT
896 .compat_ioctl = compat_ashmem_ioctl,
897 #endif
898 #ifdef CONFIG_PROC_FS
899 .show_fdinfo = ashmem_show_fdinfo,
900 #endif
903 static struct miscdevice ashmem_misc = {
904 .minor = MISC_DYNAMIC_MINOR,
905 .name = "ashmem",
906 .fops = &ashmem_fops,
909 static int __init ashmem_init(void)
911 int ret = -ENOMEM;
913 ashmem_area_cachep = kmem_cache_create("ashmem_area_cache",
914 sizeof(struct ashmem_area),
915 0, 0, NULL);
916 if (!ashmem_area_cachep) {
917 pr_err("failed to create slab cache\n");
918 goto out;
921 ashmem_range_cachep = kmem_cache_create("ashmem_range_cache",
922 sizeof(struct ashmem_range),
923 0, 0, NULL);
924 if (!ashmem_range_cachep) {
925 pr_err("failed to create slab cache\n");
926 goto out_free1;
929 ret = misc_register(&ashmem_misc);
930 if (ret) {
931 pr_err("failed to register misc device!\n");
932 goto out_free2;
935 ret = register_shrinker(&ashmem_shrinker);
936 if (ret) {
937 pr_err("failed to register shrinker!\n");
938 goto out_demisc;
941 pr_info("initialized\n");
943 return 0;
945 out_demisc:
946 misc_deregister(&ashmem_misc);
947 out_free2:
948 kmem_cache_destroy(ashmem_range_cachep);
949 out_free1:
950 kmem_cache_destroy(ashmem_area_cachep);
951 out:
952 return ret;
954 device_initcall(ashmem_init);