blob: 8fe1b0aa2896bc547955b8760bffea0ec326d7e8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * hugetlbpage-backed filesystem. Based on ramfs.
3 *
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01004 * Nadia Yvette Chambers, 2002
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Copyright (C) 2002 Linus Torvalds.
Paul Gortmaker3e89e1c2016-01-14 15:21:52 -08007 * License: GPL
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
Andrew Morton9b857d22014-06-04 16:07:21 -070010#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/thread_info.h>
13#include <asm/current.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010014#include <linux/sched/signal.h> /* remove ASAP */
Mike Kravetz70c35472015-09-08 15:01:54 -070015#include <linux/falloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/fs.h>
17#include <linux/mount.h>
18#include <linux/file.h>
Randy Dunlape73a75f2007-07-15 23:40:52 -070019#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/writeback.h>
21#include <linux/pagemap.h>
22#include <linux/highmem.h>
23#include <linux/init.h>
24#include <linux/string.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080025#include <linux/capability.h>
Randy Dunlape73a75f2007-07-15 23:40:52 -070026#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/backing-dev.h>
28#include <linux/hugetlb.h>
29#include <linux/pagevec.h>
Randy Dunlape73a75f2007-07-15 23:40:52 -070030#include <linux/parser.h>
Benjamin Herrenschmidt036e0852007-05-06 14:50:12 -070031#include <linux/mman.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/slab.h>
33#include <linux/dnotify.h>
34#include <linux/statfs.h>
35#include <linux/security.h>
Nick Black1fd7317d2009-09-22 16:43:33 -070036#include <linux/magic.h>
Naoya Horiguchi290408d2010-09-08 10:19:35 +090037#include <linux/migrate.h>
Al Viro34d06402015-04-03 11:31:35 -040038#include <linux/uio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080040#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -080042static const struct super_operations hugetlbfs_ops;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -070043static const struct address_space_operations hugetlbfs_aops;
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080044const struct file_operations hugetlbfs_file_operations;
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -080045static const struct inode_operations hugetlbfs_dir_inode_operations;
46static const struct inode_operations hugetlbfs_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
David Gibsona1d776e2012-03-21 16:34:12 -070048struct hugetlbfs_config {
David Howells4a252202017-07-05 16:24:18 +010049 struct hstate *hstate;
50 long max_hpages;
51 long nr_inodes;
52 long min_hpages;
53 kuid_t uid;
54 kgid_t gid;
55 umode_t mode;
David Gibsona1d776e2012-03-21 16:34:12 -070056};
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058int sysctl_hugetlb_shm_group;
59
Randy Dunlape73a75f2007-07-15 23:40:52 -070060enum {
61 Opt_size, Opt_nr_inodes,
62 Opt_mode, Opt_uid, Opt_gid,
Mike Kravetz7ca02d02015-04-15 16:13:42 -070063 Opt_pagesize, Opt_min_size,
Randy Dunlape73a75f2007-07-15 23:40:52 -070064 Opt_err,
65};
66
Steven Whitehousea447c092008-10-13 10:46:57 +010067static const match_table_t tokens = {
Randy Dunlape73a75f2007-07-15 23:40:52 -070068 {Opt_size, "size=%s"},
69 {Opt_nr_inodes, "nr_inodes=%s"},
70 {Opt_mode, "mode=%o"},
71 {Opt_uid, "uid=%u"},
72 {Opt_gid, "gid=%u"},
Andi Kleena137e1c2008-07-23 21:27:43 -070073 {Opt_pagesize, "pagesize=%s"},
Mike Kravetz7ca02d02015-04-15 16:13:42 -070074 {Opt_min_size, "min_size=%s"},
Randy Dunlape73a75f2007-07-15 23:40:52 -070075 {Opt_err, NULL},
76};
77
Mike Kravetz70c35472015-09-08 15:01:54 -070078#ifdef CONFIG_NUMA
79static inline void hugetlb_set_vma_policy(struct vm_area_struct *vma,
80 struct inode *inode, pgoff_t index)
81{
82 vma->vm_policy = mpol_shared_policy_lookup(&HUGETLBFS_I(inode)->policy,
83 index);
84}
85
86static inline void hugetlb_drop_vma_policy(struct vm_area_struct *vma)
87{
88 mpol_cond_put(vma->vm_policy);
89}
90#else
91static inline void hugetlb_set_vma_policy(struct vm_area_struct *vma,
92 struct inode *inode, pgoff_t index)
93{
94}
95
96static inline void hugetlb_drop_vma_policy(struct vm_area_struct *vma)
97{
98}
99#endif
100
Adam Litke2e9b3672005-10-29 18:16:47 -0700101static void huge_pagevec_release(struct pagevec *pvec)
102{
103 int i;
104
105 for (i = 0; i < pagevec_count(pvec); ++i)
106 put_page(pvec->pages[i]);
107
108 pagevec_reinit(pvec);
109}
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111static int hugetlbfs_file_mmap(struct file *file, struct vm_area_struct *vma)
112{
Al Viro496ad9a2013-01-23 17:07:38 -0500113 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 loff_t len, vma_len;
115 int ret;
Andi Kleena5516432008-07-23 21:27:41 -0700116 struct hstate *h = hstate_file(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Hugh Dickins68589bc2006-11-14 02:03:32 -0800118 /*
David Gibsondec4ad82007-08-30 23:56:40 -0700119 * vma address alignment (but not the pgoff alignment) has
120 * already been checked by prepare_hugepage_range. If you add
121 * any error returns here, do so after setting VM_HUGETLB, so
122 * is_vm_hugetlb_page tests below unmap_region go the right
123 * way when do_mmap_pgoff unwinds (may be important on powerpc
124 * and ia64).
Hugh Dickins68589bc2006-11-14 02:03:32 -0800125 */
Naoya Horiguchia2fce912013-04-17 15:58:27 -0700126 vma->vm_flags |= VM_HUGETLB | VM_DONTEXPAND;
Hugh Dickins68589bc2006-11-14 02:03:32 -0800127 vma->vm_ops = &hugetlb_vm_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Mike Kravetz045c7a32017-04-13 14:56:32 -0700129 /*
130 * Offset passed to mmap (before page shift) could have been
131 * negative when represented as a (l)off_t.
132 */
133 if (((loff_t)vma->vm_pgoff << PAGE_SHIFT) < 0)
134 return -EINVAL;
135
Becky Bruce2b37c352011-07-25 17:11:49 -0700136 if (vma->vm_pgoff & (~huge_page_mask(h) >> PAGE_SHIFT))
David Gibsondec4ad82007-08-30 23:56:40 -0700137 return -EINVAL;
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 vma_len = (loff_t)(vma->vm_end - vma->vm_start);
Mike Kravetz045c7a32017-04-13 14:56:32 -0700140 len = vma_len + ((loff_t)vma->vm_pgoff << PAGE_SHIFT);
141 /* check for overflow */
142 if (len < vma_len)
143 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Al Viro59551022016-01-22 15:40:57 -0500145 inode_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 file_accessed(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 ret = -ENOMEM;
Mel Gormana1e78772008-07-23 21:27:23 -0700149 if (hugetlb_reserve_pages(inode,
Andi Kleena5516432008-07-23 21:27:41 -0700150 vma->vm_pgoff >> huge_page_order(h),
Mel Gorman5a6fe122009-02-10 14:02:27 +0000151 len >> huge_page_shift(h), vma,
152 vma->vm_flags))
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -0700153 goto out;
David Gibsonb45b5bd2006-03-22 00:08:55 -0800154
Adam Litke4c887262005-10-29 18:16:46 -0700155 ret = 0;
Zhang, Yanminb6174df2006-07-10 04:44:49 -0700156 if (vma->vm_flags & VM_WRITE && inode->i_size < len)
Mike Kravetz045c7a32017-04-13 14:56:32 -0700157 i_size_write(inode, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158out:
Al Viro59551022016-01-22 15:40:57 -0500159 inode_unlock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 return ret;
162}
163
164/*
Hugh Dickins508034a2005-10-29 18:16:30 -0700165 * Called under down_write(mmap_sem).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 */
167
Adrian Bunkd2ba27e82007-05-06 14:49:00 -0700168#ifndef HAVE_ARCH_HUGETLB_UNMAPPED_AREA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169static unsigned long
170hugetlb_get_unmapped_area(struct file *file, unsigned long addr,
171 unsigned long len, unsigned long pgoff, unsigned long flags)
172{
173 struct mm_struct *mm = current->mm;
174 struct vm_area_struct *vma;
Andi Kleena5516432008-07-23 21:27:41 -0700175 struct hstate *h = hstate_file(file);
Michel Lespinasse08659352012-12-11 16:02:00 -0800176 struct vm_unmapped_area_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Andi Kleena5516432008-07-23 21:27:41 -0700178 if (len & ~huge_page_mask(h))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return -EINVAL;
180 if (len > TASK_SIZE)
181 return -ENOMEM;
182
Benjamin Herrenschmidt036e0852007-05-06 14:50:12 -0700183 if (flags & MAP_FIXED) {
Andi Kleena5516432008-07-23 21:27:41 -0700184 if (prepare_hugepage_range(file, addr, len))
Benjamin Herrenschmidt036e0852007-05-06 14:50:12 -0700185 return -EINVAL;
186 return addr;
187 }
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (addr) {
Andi Kleena5516432008-07-23 21:27:41 -0700190 addr = ALIGN(addr, huge_page_size(h));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 vma = find_vma(mm, addr);
192 if (TASK_SIZE - len >= addr &&
Hugh Dickins1be71072017-06-19 04:03:24 -0700193 (!vma || addr + len <= vm_start_gap(vma)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return addr;
195 }
196
Michel Lespinasse08659352012-12-11 16:02:00 -0800197 info.flags = 0;
198 info.length = len;
199 info.low_limit = TASK_UNMAPPED_BASE;
200 info.high_limit = TASK_SIZE;
201 info.align_mask = PAGE_MASK & ~huge_page_mask(h);
202 info.align_offset = 0;
203 return vm_unmapped_area(&info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205#endif
206
Al Viro34d06402015-04-03 11:31:35 -0400207static size_t
Badari Pulavartye63e1e52007-10-16 01:26:22 -0700208hugetlbfs_read_actor(struct page *page, unsigned long offset,
Al Viro34d06402015-04-03 11:31:35 -0400209 struct iov_iter *to, unsigned long size)
Badari Pulavartye63e1e52007-10-16 01:26:22 -0700210{
Al Viro34d06402015-04-03 11:31:35 -0400211 size_t copied = 0;
Badari Pulavartye63e1e52007-10-16 01:26:22 -0700212 int i, chunksize;
213
Badari Pulavartye63e1e52007-10-16 01:26:22 -0700214 /* Find which 4k chunk and offset with in that chunk */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300215 i = offset >> PAGE_SHIFT;
216 offset = offset & ~PAGE_MASK;
Badari Pulavartye63e1e52007-10-16 01:26:22 -0700217
218 while (size) {
Al Viro34d06402015-04-03 11:31:35 -0400219 size_t n;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300220 chunksize = PAGE_SIZE;
Badari Pulavartye63e1e52007-10-16 01:26:22 -0700221 if (offset)
222 chunksize -= offset;
223 if (chunksize > size)
224 chunksize = size;
Al Viro34d06402015-04-03 11:31:35 -0400225 n = copy_page_to_iter(&page[i], offset, chunksize, to);
226 copied += n;
227 if (n != chunksize)
228 return copied;
Badari Pulavartye63e1e52007-10-16 01:26:22 -0700229 offset = 0;
230 size -= chunksize;
Badari Pulavartye63e1e52007-10-16 01:26:22 -0700231 i++;
232 }
Al Viro34d06402015-04-03 11:31:35 -0400233 return copied;
Badari Pulavartye63e1e52007-10-16 01:26:22 -0700234}
235
236/*
237 * Support for read() - Find the page attached to f_mapping and copy out the
238 * data. Its *very* similar to do_generic_mapping_read(), we can't use that
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +0300239 * since it has PAGE_SIZE assumptions.
Badari Pulavartye63e1e52007-10-16 01:26:22 -0700240 */
Al Viro34d06402015-04-03 11:31:35 -0400241static ssize_t hugetlbfs_read_iter(struct kiocb *iocb, struct iov_iter *to)
Badari Pulavartye63e1e52007-10-16 01:26:22 -0700242{
Al Viro34d06402015-04-03 11:31:35 -0400243 struct file *file = iocb->ki_filp;
244 struct hstate *h = hstate_file(file);
245 struct address_space *mapping = file->f_mapping;
Badari Pulavartye63e1e52007-10-16 01:26:22 -0700246 struct inode *inode = mapping->host;
Al Viro34d06402015-04-03 11:31:35 -0400247 unsigned long index = iocb->ki_pos >> huge_page_shift(h);
248 unsigned long offset = iocb->ki_pos & ~huge_page_mask(h);
Badari Pulavartye63e1e52007-10-16 01:26:22 -0700249 unsigned long end_index;
250 loff_t isize;
251 ssize_t retval = 0;
252
Al Viro34d06402015-04-03 11:31:35 -0400253 while (iov_iter_count(to)) {
Badari Pulavartye63e1e52007-10-16 01:26:22 -0700254 struct page *page;
Al Viro34d06402015-04-03 11:31:35 -0400255 size_t nr, copied;
Badari Pulavartye63e1e52007-10-16 01:26:22 -0700256
257 /* nr is the maximum number of bytes to copy from this page */
Andi Kleena5516432008-07-23 21:27:41 -0700258 nr = huge_page_size(h);
Aneesh Kumar K.Va05b0852012-03-21 16:34:08 -0700259 isize = i_size_read(inode);
260 if (!isize)
Al Viro34d06402015-04-03 11:31:35 -0400261 break;
Aneesh Kumar K.Va05b0852012-03-21 16:34:08 -0700262 end_index = (isize - 1) >> huge_page_shift(h);
Al Viro34d06402015-04-03 11:31:35 -0400263 if (index > end_index)
264 break;
265 if (index == end_index) {
Andi Kleena5516432008-07-23 21:27:41 -0700266 nr = ((isize - 1) & ~huge_page_mask(h)) + 1;
Aneesh Kumar K.Va05b0852012-03-21 16:34:08 -0700267 if (nr <= offset)
Al Viro34d06402015-04-03 11:31:35 -0400268 break;
Badari Pulavartye63e1e52007-10-16 01:26:22 -0700269 }
270 nr = nr - offset;
271
272 /* Find the page */
Aneesh Kumar K.Va05b0852012-03-21 16:34:08 -0700273 page = find_lock_page(mapping, index);
Badari Pulavartye63e1e52007-10-16 01:26:22 -0700274 if (unlikely(page == NULL)) {
275 /*
276 * We have a HOLE, zero out the user-buffer for the
277 * length of the hole or request.
278 */
Al Viro34d06402015-04-03 11:31:35 -0400279 copied = iov_iter_zero(nr, to);
Badari Pulavartye63e1e52007-10-16 01:26:22 -0700280 } else {
Aneesh Kumar K.Va05b0852012-03-21 16:34:08 -0700281 unlock_page(page);
282
Badari Pulavartye63e1e52007-10-16 01:26:22 -0700283 /*
284 * We have the page, copy it to user space buffer.
285 */
Al Viro34d06402015-04-03 11:31:35 -0400286 copied = hugetlbfs_read_actor(page, offset, to, nr);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300287 put_page(page);
Badari Pulavartye63e1e52007-10-16 01:26:22 -0700288 }
Al Viro34d06402015-04-03 11:31:35 -0400289 offset += copied;
290 retval += copied;
291 if (copied != nr && iov_iter_count(to)) {
292 if (!retval)
293 retval = -EFAULT;
294 break;
Badari Pulavartye63e1e52007-10-16 01:26:22 -0700295 }
Andi Kleena5516432008-07-23 21:27:41 -0700296 index += offset >> huge_page_shift(h);
297 offset &= ~huge_page_mask(h);
Badari Pulavartye63e1e52007-10-16 01:26:22 -0700298 }
Al Viro34d06402015-04-03 11:31:35 -0400299 iocb->ki_pos = ((loff_t)index << huge_page_shift(h)) + offset;
Badari Pulavartye63e1e52007-10-16 01:26:22 -0700300 return retval;
301}
302
Nick Piggin800d15a2007-10-16 01:25:03 -0700303static int hugetlbfs_write_begin(struct file *file,
304 struct address_space *mapping,
305 loff_t pos, unsigned len, unsigned flags,
306 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
308 return -EINVAL;
309}
310
Nick Piggin800d15a2007-10-16 01:25:03 -0700311static int hugetlbfs_write_end(struct file *file, struct address_space *mapping,
312 loff_t pos, unsigned len, unsigned copied,
313 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Nick Piggin800d15a2007-10-16 01:25:03 -0700315 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return -EINVAL;
317}
318
Mike Kravetzb5cec282015-09-08 15:01:41 -0700319static void remove_huge_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -0700321 ClearPageDirty(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 ClearPageUptodate(page);
Minchan Kimbd65cb82011-03-22 16:30:54 -0700323 delete_from_page_cache(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
Mike Kravetz4aae8d12016-01-15 16:57:40 -0800326static void
Davidlohr Buesof808c132017-09-08 16:15:08 -0700327hugetlb_vmdelete_list(struct rb_root_cached *root, pgoff_t start, pgoff_t end)
Mike Kravetz4aae8d12016-01-15 16:57:40 -0800328{
329 struct vm_area_struct *vma;
330
331 /*
332 * end == 0 indicates that the entire range after
333 * start should be unmapped.
334 */
335 vma_interval_tree_foreach(vma, root, start, end ? end : ULONG_MAX) {
336 unsigned long v_offset;
337 unsigned long v_end;
338
339 /*
340 * Can the expression below overflow on 32-bit arches?
341 * No, because the interval tree returns us only those vmas
342 * which overlap the truncated area starting at pgoff,
343 * and no vma on a 32-bit arch can span beyond the 4GB.
344 */
345 if (vma->vm_pgoff < start)
346 v_offset = (start - vma->vm_pgoff) << PAGE_SHIFT;
347 else
348 v_offset = 0;
349
350 if (!end)
351 v_end = vma->vm_end;
352 else {
353 v_end = ((end - vma->vm_pgoff) << PAGE_SHIFT)
354 + vma->vm_start;
355 if (v_end > vma->vm_end)
356 v_end = vma->vm_end;
357 }
358
359 unmap_hugepage_range(vma, vma->vm_start + v_offset, v_end,
360 NULL);
361 }
362}
Mike Kravetzb5cec282015-09-08 15:01:41 -0700363
364/*
365 * remove_inode_hugepages handles two distinct cases: truncation and hole
366 * punch. There are subtle differences in operation for each case.
Mike Kravetz4aae8d12016-01-15 16:57:40 -0800367 *
Mike Kravetzb5cec282015-09-08 15:01:41 -0700368 * truncation is indicated by end of range being LLONG_MAX
369 * In this case, we first scan the range and release found pages.
370 * After releasing pages, hugetlb_unreserve_pages cleans up region/reserv
Mike Kravetz18178892015-11-20 15:57:13 -0800371 * maps and global counts. Page faults can not race with truncation
372 * in this routine. hugetlb_no_page() prevents page faults in the
373 * truncated range. It checks i_size before allocation, and again after
374 * with the page table lock for the page held. The same lock must be
375 * acquired to unmap a page.
Mike Kravetzb5cec282015-09-08 15:01:41 -0700376 * hole punch is indicated if end is not LLONG_MAX
377 * In the hole punch case we scan the range and release found pages.
378 * Only when releasing a page is the associated region/reserv map
379 * deleted. The region/reserv map for ranges without associated
Mike Kravetz18178892015-11-20 15:57:13 -0800380 * pages are not modified. Page faults can race with hole punch.
381 * This is indicated if we find a mapped page.
Mike Kravetzb5cec282015-09-08 15:01:41 -0700382 * Note: If the passed end of range value is beyond the end of file, but
383 * not LLONG_MAX this routine still performs a hole punch operation.
384 */
385static void remove_inode_hugepages(struct inode *inode, loff_t lstart,
386 loff_t lend)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
Andi Kleena5516432008-07-23 21:27:41 -0700388 struct hstate *h = hstate_inode(inode);
David Gibsonb45b5bd2006-03-22 00:08:55 -0800389 struct address_space *mapping = &inode->i_data;
Andi Kleena5516432008-07-23 21:27:41 -0700390 const pgoff_t start = lstart >> huge_page_shift(h);
Mike Kravetzb5cec282015-09-08 15:01:41 -0700391 const pgoff_t end = lend >> huge_page_shift(h);
392 struct vm_area_struct pseudo_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 struct pagevec pvec;
Jan Karad72dc8a2017-09-06 16:21:18 -0700394 pgoff_t next, index;
Chen, Kenneth Wa43a8c32006-06-23 02:03:15 -0700395 int i, freed = 0;
Mike Kravetzb5cec282015-09-08 15:01:41 -0700396 bool truncate_op = (lend == LLONG_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Mike Kravetzb5cec282015-09-08 15:01:41 -0700398 memset(&pseudo_vma, 0, sizeof(struct vm_area_struct));
399 pseudo_vma.vm_flags = (VM_HUGETLB | VM_MAYSHARE | VM_SHARED);
Mel Gorman86679822017-11-15 17:37:52 -0800400 pagevec_init(&pvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 next = start;
Mike Kravetzb5cec282015-09-08 15:01:41 -0700402 while (next < end) {
403 /*
Mike Kravetz18178892015-11-20 15:57:13 -0800404 * When no more pages are found, we are done.
Mike Kravetzb5cec282015-09-08 15:01:41 -0700405 */
Jan Kara397162f2017-09-06 16:21:43 -0700406 if (!pagevec_lookup_range(&pvec, mapping, &next, end - 1))
Mike Kravetz18178892015-11-20 15:57:13 -0800407 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 for (i = 0; i < pagevec_count(&pvec); ++i) {
410 struct page *page = pvec.pages[i];
Mike Kravetzb5cec282015-09-08 15:01:41 -0700411 u32 hash;
412
Jan Karad72dc8a2017-09-06 16:21:18 -0700413 index = page->index;
Mike Kravetzb5cec282015-09-08 15:01:41 -0700414 hash = hugetlb_fault_mutex_hash(h, current->mm,
415 &pseudo_vma,
Jan Karad72dc8a2017-09-06 16:21:18 -0700416 mapping, index, 0);
Mike Kravetzb5cec282015-09-08 15:01:41 -0700417 mutex_lock(&hugetlb_fault_mutex_table[hash]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Mike Kravetz4aae8d12016-01-15 16:57:40 -0800419 /*
420 * If page is mapped, it was faulted in after being
421 * unmapped in caller. Unmap (again) now after taking
422 * the fault mutex. The mutex will prevent faults
423 * until we finish removing the page.
424 *
425 * This race can only happen in the hole punch case.
426 * Getting here in a truncate operation is a bug.
427 */
428 if (unlikely(page_mapped(page))) {
Mike Kravetz18178892015-11-20 15:57:13 -0800429 BUG_ON(truncate_op);
Mike Kravetz4aae8d12016-01-15 16:57:40 -0800430
431 i_mmap_lock_write(mapping);
432 hugetlb_vmdelete_list(&mapping->i_mmap,
Jan Karad72dc8a2017-09-06 16:21:18 -0700433 index * pages_per_huge_page(h),
434 (index + 1) * pages_per_huge_page(h));
Mike Kravetz4aae8d12016-01-15 16:57:40 -0800435 i_mmap_unlock_write(mapping);
436 }
437
438 lock_page(page);
439 /*
440 * We must free the huge page and remove from page
441 * cache (remove_huge_page) BEFORE removing the
442 * region/reserve map (hugetlb_unreserve_pages). In
443 * rare out of memory conditions, removal of the
zhong jiang72e29362016-10-07 17:02:01 -0700444 * region/reserve map could fail. Correspondingly,
445 * the subpool and global reserve usage count can need
446 * to be adjusted.
Mike Kravetz4aae8d12016-01-15 16:57:40 -0800447 */
zhong jiang72e29362016-10-07 17:02:01 -0700448 VM_BUG_ON(PagePrivate(page));
Mike Kravetz4aae8d12016-01-15 16:57:40 -0800449 remove_huge_page(page);
450 freed++;
451 if (!truncate_op) {
452 if (unlikely(hugetlb_unreserve_pages(inode,
Jan Karad72dc8a2017-09-06 16:21:18 -0700453 index, index + 1, 1)))
zhong jiang72e29362016-10-07 17:02:01 -0700454 hugetlb_fix_reserve_counts(inode);
Mike Kravetzb5cec282015-09-08 15:01:41 -0700455 }
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 unlock_page(page);
Mike Kravetzb5cec282015-09-08 15:01:41 -0700458 mutex_unlock(&hugetlb_fault_mutex_table[hash]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 }
460 huge_pagevec_release(&pvec);
Mike Kravetz18178892015-11-20 15:57:13 -0800461 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
Mike Kravetzb5cec282015-09-08 15:01:41 -0700463
464 if (truncate_op)
465 (void)hugetlb_unreserve_pages(inode, start, LONG_MAX, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
Al Viro2bbbda32010-06-04 19:52:12 -0400468static void hugetlbfs_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Joonsoo Kim9119a412014-04-03 14:47:25 -0700470 struct resv_map *resv_map;
471
Mike Kravetzb5cec282015-09-08 15:01:41 -0700472 remove_inode_hugepages(inode, 0, LLONG_MAX);
Joonsoo Kim9119a412014-04-03 14:47:25 -0700473 resv_map = (struct resv_map *)inode->i_mapping->private_data;
474 /* root inode doesn't have the resv_map, so we should check it */
475 if (resv_map)
476 resv_map_release(&resv_map->refs);
Jan Karadbd57682012-05-03 14:48:02 +0200477 clear_inode(inode);
Christoph Hellwig149f4212005-10-29 18:16:43 -0700478}
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480static int hugetlb_vmtruncate(struct inode *inode, loff_t offset)
481{
Hugh Dickins856fc292006-10-28 10:38:43 -0700482 pgoff_t pgoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 struct address_space *mapping = inode->i_mapping;
Andi Kleena5516432008-07-23 21:27:41 -0700484 struct hstate *h = hstate_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Andi Kleena5516432008-07-23 21:27:41 -0700486 BUG_ON(offset & ~huge_page_mask(h));
Hugh Dickins856fc292006-10-28 10:38:43 -0700487 pgoff = offset >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Ken Chen7aa91e12007-10-16 01:26:21 -0700489 i_size_write(inode, offset);
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800490 i_mmap_lock_write(mapping);
Davidlohr Buesof808c132017-09-08 16:15:08 -0700491 if (!RB_EMPTY_ROOT(&mapping->i_mmap.rb_root))
Mike Kravetz1bfad992015-09-08 15:01:38 -0700492 hugetlb_vmdelete_list(&mapping->i_mmap, pgoff, 0);
Davidlohr Bueso83cde9e2014-12-12 16:54:21 -0800493 i_mmap_unlock_write(mapping);
Mike Kravetzb5cec282015-09-08 15:01:41 -0700494 remove_inode_hugepages(inode, offset, LLONG_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 return 0;
496}
497
Mike Kravetz70c35472015-09-08 15:01:54 -0700498static long hugetlbfs_punch_hole(struct inode *inode, loff_t offset, loff_t len)
499{
500 struct hstate *h = hstate_inode(inode);
501 loff_t hpage_size = huge_page_size(h);
502 loff_t hole_start, hole_end;
503
504 /*
505 * For hole punch round up the beginning offset of the hole and
506 * round down the end.
507 */
508 hole_start = round_up(offset, hpage_size);
509 hole_end = round_down(offset + len, hpage_size);
510
511 if (hole_end > hole_start) {
512 struct address_space *mapping = inode->i_mapping;
Marc-André Lureauff62a342018-01-31 16:19:25 -0800513 struct hugetlbfs_inode_info *info = HUGETLBFS_I(inode);
Mike Kravetz70c35472015-09-08 15:01:54 -0700514
Al Viro59551022016-01-22 15:40:57 -0500515 inode_lock(inode);
Marc-André Lureauff62a342018-01-31 16:19:25 -0800516
517 /* protected by i_mutex */
518 if (info->seals & F_SEAL_WRITE) {
519 inode_unlock(inode);
520 return -EPERM;
521 }
522
Mike Kravetz70c35472015-09-08 15:01:54 -0700523 i_mmap_lock_write(mapping);
Davidlohr Buesof808c132017-09-08 16:15:08 -0700524 if (!RB_EMPTY_ROOT(&mapping->i_mmap.rb_root))
Mike Kravetz70c35472015-09-08 15:01:54 -0700525 hugetlb_vmdelete_list(&mapping->i_mmap,
526 hole_start >> PAGE_SHIFT,
527 hole_end >> PAGE_SHIFT);
528 i_mmap_unlock_write(mapping);
529 remove_inode_hugepages(inode, hole_start, hole_end);
Al Viro59551022016-01-22 15:40:57 -0500530 inode_unlock(inode);
Mike Kravetz70c35472015-09-08 15:01:54 -0700531 }
532
533 return 0;
534}
535
536static long hugetlbfs_fallocate(struct file *file, int mode, loff_t offset,
537 loff_t len)
538{
539 struct inode *inode = file_inode(file);
Marc-André Lureauff62a342018-01-31 16:19:25 -0800540 struct hugetlbfs_inode_info *info = HUGETLBFS_I(inode);
Mike Kravetz70c35472015-09-08 15:01:54 -0700541 struct address_space *mapping = inode->i_mapping;
542 struct hstate *h = hstate_inode(inode);
543 struct vm_area_struct pseudo_vma;
544 struct mm_struct *mm = current->mm;
545 loff_t hpage_size = huge_page_size(h);
546 unsigned long hpage_shift = huge_page_shift(h);
547 pgoff_t start, index, end;
548 int error;
549 u32 hash;
550
551 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
552 return -EOPNOTSUPP;
553
554 if (mode & FALLOC_FL_PUNCH_HOLE)
555 return hugetlbfs_punch_hole(inode, offset, len);
556
557 /*
558 * Default preallocate case.
559 * For this range, start is rounded down and end is rounded up
560 * as well as being converted to page offsets.
561 */
562 start = offset >> hpage_shift;
563 end = (offset + len + hpage_size - 1) >> hpage_shift;
564
Al Viro59551022016-01-22 15:40:57 -0500565 inode_lock(inode);
Mike Kravetz70c35472015-09-08 15:01:54 -0700566
567 /* We need to check rlimit even when FALLOC_FL_KEEP_SIZE */
568 error = inode_newsize_ok(inode, offset + len);
569 if (error)
570 goto out;
571
Marc-André Lureauff62a342018-01-31 16:19:25 -0800572 if ((info->seals & F_SEAL_GROW) && offset + len > inode->i_size) {
573 error = -EPERM;
574 goto out;
575 }
576
Mike Kravetz70c35472015-09-08 15:01:54 -0700577 /*
578 * Initialize a pseudo vma as this is required by the huge page
579 * allocation routines. If NUMA is configured, use page index
580 * as input to create an allocation policy.
581 */
582 memset(&pseudo_vma, 0, sizeof(struct vm_area_struct));
583 pseudo_vma.vm_flags = (VM_HUGETLB | VM_MAYSHARE | VM_SHARED);
584 pseudo_vma.vm_file = file;
585
586 for (index = start; index < end; index++) {
587 /*
588 * This is supposed to be the vaddr where the page is being
589 * faulted in, but we have no vaddr here.
590 */
591 struct page *page;
592 unsigned long addr;
593 int avoid_reserve = 0;
594
595 cond_resched();
596
597 /*
598 * fallocate(2) manpage permits EINTR; we may have been
599 * interrupted because we are using up too much memory.
600 */
601 if (signal_pending(current)) {
602 error = -EINTR;
603 break;
604 }
605
606 /* Set numa allocation policy based on index */
607 hugetlb_set_vma_policy(&pseudo_vma, inode, index);
608
609 /* addr is the offset within the file (zero based) */
610 addr = index * hpage_size;
611
612 /* mutex taken here, fault path and hole punch */
613 hash = hugetlb_fault_mutex_hash(h, mm, &pseudo_vma, mapping,
614 index, addr);
615 mutex_lock(&hugetlb_fault_mutex_table[hash]);
616
617 /* See if already present in mapping to avoid alloc/free */
618 page = find_get_page(mapping, index);
619 if (page) {
620 put_page(page);
621 mutex_unlock(&hugetlb_fault_mutex_table[hash]);
622 hugetlb_drop_vma_policy(&pseudo_vma);
623 continue;
624 }
625
626 /* Allocate page and add to page cache */
627 page = alloc_huge_page(&pseudo_vma, addr, avoid_reserve);
628 hugetlb_drop_vma_policy(&pseudo_vma);
629 if (IS_ERR(page)) {
630 mutex_unlock(&hugetlb_fault_mutex_table[hash]);
631 error = PTR_ERR(page);
632 goto out;
633 }
634 clear_huge_page(page, addr, pages_per_huge_page(h));
635 __SetPageUptodate(page);
636 error = huge_add_to_page_cache(page, mapping, index);
637 if (unlikely(error)) {
638 put_page(page);
639 mutex_unlock(&hugetlb_fault_mutex_table[hash]);
640 goto out;
641 }
642
643 mutex_unlock(&hugetlb_fault_mutex_table[hash]);
644
645 /*
Mike Kravetz70c35472015-09-08 15:01:54 -0700646 * unlock_page because locked by add_to_page_cache()
Nadav Amit72639e62017-11-29 16:11:33 -0800647 * page_put due to reference from alloc_huge_page()
Mike Kravetz70c35472015-09-08 15:01:54 -0700648 */
Mike Kravetz70c35472015-09-08 15:01:54 -0700649 unlock_page(page);
Nadav Amit72639e62017-11-29 16:11:33 -0800650 put_page(page);
Mike Kravetz70c35472015-09-08 15:01:54 -0700651 }
652
653 if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size)
654 i_size_write(inode, offset + len);
Deepa Dinamani078cd822016-09-14 07:48:04 -0700655 inode->i_ctime = current_time(inode);
Mike Kravetz70c35472015-09-08 15:01:54 -0700656out:
Al Viro59551022016-01-22 15:40:57 -0500657 inode_unlock(inode);
Mike Kravetz70c35472015-09-08 15:01:54 -0700658 return error;
659}
660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661static int hugetlbfs_setattr(struct dentry *dentry, struct iattr *attr)
662{
David Howells2b0143b2015-03-17 22:25:59 +0000663 struct inode *inode = d_inode(dentry);
Andi Kleena5516432008-07-23 21:27:41 -0700664 struct hstate *h = hstate_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 int error;
666 unsigned int ia_valid = attr->ia_valid;
Marc-André Lureauff62a342018-01-31 16:19:25 -0800667 struct hugetlbfs_inode_info *info = HUGETLBFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 BUG_ON(!inode);
670
Jan Kara31051c82016-05-26 16:55:18 +0200671 error = setattr_prepare(dentry, attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 if (error)
Christoph Hellwig10257742010-06-04 11:30:02 +0200673 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 if (ia_valid & ATTR_SIZE) {
Marc-André Lureauff62a342018-01-31 16:19:25 -0800676 loff_t oldsize = inode->i_size;
677 loff_t newsize = attr->ia_size;
678
679 if (newsize & ~huge_page_mask(h))
Christoph Hellwig10257742010-06-04 11:30:02 +0200680 return -EINVAL;
Marc-André Lureauff62a342018-01-31 16:19:25 -0800681 /* protected by i_mutex */
682 if ((newsize < oldsize && (info->seals & F_SEAL_SHRINK)) ||
683 (newsize > oldsize && (info->seals & F_SEAL_GROW)))
684 return -EPERM;
685 error = hugetlb_vmtruncate(inode, newsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 if (error)
Christoph Hellwig10257742010-06-04 11:30:02 +0200687 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 }
Christoph Hellwig10257742010-06-04 11:30:02 +0200689
690 setattr_copy(inode, attr);
691 mark_inode_dirty(inode);
692 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
Al Viro7d54fa62011-07-24 20:20:48 -0400695static struct inode *hugetlbfs_get_root(struct super_block *sb,
696 struct hugetlbfs_config *config)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
698 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 inode = new_inode(sb);
701 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400702 inode->i_ino = get_next_ino();
Al Viro7d54fa62011-07-24 20:20:48 -0400703 inode->i_mode = S_IFDIR | config->mode;
704 inode->i_uid = config->uid;
705 inode->i_gid = config->gid;
Deepa Dinamani078cd822016-09-14 07:48:04 -0700706 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
Al Viro7d54fa62011-07-24 20:20:48 -0400707 inode->i_op = &hugetlbfs_dir_inode_operations;
708 inode->i_fop = &simple_dir_operations;
709 /* directory inodes start off with i_nlink == 2 (for "." entry) */
710 inc_nlink(inode);
Aneesh Kumar K.V65ed7602012-04-25 16:01:50 -0700711 lockdep_annotate_inode_mutex_key(inode);
Al Viro7d54fa62011-07-24 20:20:48 -0400712 }
713 return inode;
714}
715
Michal Hockob610ded2013-08-13 16:00:55 -0700716/*
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -0800717 * Hugetlbfs is not reclaimable; therefore its i_mmap_rwsem will never
Michal Hockob610ded2013-08-13 16:00:55 -0700718 * be taken from reclaim -- unlike regular filesystems. This needs an
Kirill A. Shutemov88f306b2016-01-15 16:57:31 -0800719 * annotation because huge_pmd_share() does an allocation under hugetlb's
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -0800720 * i_mmap_rwsem.
Michal Hockob610ded2013-08-13 16:00:55 -0700721 */
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -0800722static struct lock_class_key hugetlbfs_i_mmap_rwsem_key;
Michal Hockob610ded2013-08-13 16:00:55 -0700723
Al Viro7d54fa62011-07-24 20:20:48 -0400724static struct inode *hugetlbfs_get_inode(struct super_block *sb,
725 struct inode *dir,
Al Viro18df2252011-07-24 23:17:40 -0400726 umode_t mode, dev_t dev)
Al Viro7d54fa62011-07-24 20:20:48 -0400727{
728 struct inode *inode;
Joonsoo Kim9119a412014-04-03 14:47:25 -0700729 struct resv_map *resv_map;
730
731 resv_map = resv_map_alloc();
732 if (!resv_map)
733 return NULL;
Al Viro7d54fa62011-07-24 20:20:48 -0400734
735 inode = new_inode(sb);
736 if (inode) {
Marc-André Lureauff62a342018-01-31 16:19:25 -0800737 struct hugetlbfs_inode_info *info = HUGETLBFS_I(inode);
738
Al Viro7d54fa62011-07-24 20:20:48 -0400739 inode->i_ino = get_next_ino();
740 inode_init_owner(inode, dir, mode);
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -0800741 lockdep_set_class(&inode->i_mapping->i_mmap_rwsem,
742 &hugetlbfs_i_mmap_rwsem_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 inode->i_mapping->a_ops = &hugetlbfs_aops;
Deepa Dinamani078cd822016-09-14 07:48:04 -0700744 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
Joonsoo Kim9119a412014-04-03 14:47:25 -0700745 inode->i_mapping->private_data = resv_map;
Marc-André Lureauff62a342018-01-31 16:19:25 -0800746 info->seals = F_SEAL_SEAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 switch (mode & S_IFMT) {
748 default:
749 init_special_inode(inode, mode, dev);
750 break;
751 case S_IFREG:
752 inode->i_op = &hugetlbfs_inode_operations;
753 inode->i_fop = &hugetlbfs_file_operations;
754 break;
755 case S_IFDIR:
756 inode->i_op = &hugetlbfs_dir_inode_operations;
757 inode->i_fop = &simple_dir_operations;
758
759 /* directory inodes start off with i_nlink == 2 (for "." entry) */
Dave Hansend8c76e62006-09-30 23:29:04 -0700760 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 break;
762 case S_IFLNK:
763 inode->i_op = &page_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -0500764 inode_nohighmem(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 break;
766 }
Josh Boyere096d0c2011-08-25 07:48:12 -0400767 lockdep_annotate_inode_mutex_key(inode);
Joonsoo Kim9119a412014-04-03 14:47:25 -0700768 } else
769 kref_put(&resv_map->refs, resv_map_release);
770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 return inode;
772}
773
774/*
775 * File creation. Allocate an inode, and we're done..
776 */
777static int hugetlbfs_mknod(struct inode *dir,
Al Viro1a67aaf2011-07-26 01:52:52 -0400778 struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
780 struct inode *inode;
781 int error = -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Al Viro7d54fa62011-07-24 20:20:48 -0400783 inode = hugetlbfs_get_inode(dir->i_sb, dir, mode, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (inode) {
Deepa Dinamani078cd822016-09-14 07:48:04 -0700785 dir->i_ctime = dir->i_mtime = current_time(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 d_instantiate(dentry, inode);
787 dget(dentry); /* Extra count - pin the dentry in core */
788 error = 0;
789 }
790 return error;
791}
792
Al Viro18bb1db2011-07-26 01:41:39 -0400793static int hugetlbfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
795 int retval = hugetlbfs_mknod(dir, dentry, mode | S_IFDIR, 0);
796 if (!retval)
Dave Hansend8c76e62006-09-30 23:29:04 -0700797 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 return retval;
799}
800
Al Viroebfc3b42012-06-10 18:05:36 -0400801static int hugetlbfs_create(struct inode *dir, struct dentry *dentry, umode_t mode, bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
803 return hugetlbfs_mknod(dir, dentry, mode | S_IFREG, 0);
804}
805
806static int hugetlbfs_symlink(struct inode *dir,
807 struct dentry *dentry, const char *symname)
808{
809 struct inode *inode;
810 int error = -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Al Viro7d54fa62011-07-24 20:20:48 -0400812 inode = hugetlbfs_get_inode(dir->i_sb, dir, S_IFLNK|S_IRWXUGO, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (inode) {
814 int l = strlen(symname)+1;
815 error = page_symlink(inode, symname, l);
816 if (!error) {
817 d_instantiate(dentry, inode);
818 dget(dentry);
819 } else
820 iput(inode);
821 }
Deepa Dinamani078cd822016-09-14 07:48:04 -0700822 dir->i_ctime = dir->i_mtime = current_time(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 return error;
825}
826
827/*
Ken Chen6649a382007-02-08 14:20:27 -0800828 * mark the head page dirty
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 */
830static int hugetlbfs_set_page_dirty(struct page *page)
831{
Christoph Lameterd85f3382007-05-06 14:49:39 -0700832 struct page *head = compound_head(page);
Ken Chen6649a382007-02-08 14:20:27 -0800833
834 SetPageDirty(head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 return 0;
836}
837
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900838static int hugetlbfs_migrate_page(struct address_space *mapping,
Mel Gormanb969c4a2012-01-12 17:19:34 -0800839 struct page *newpage, struct page *page,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800840 enum migrate_mode mode)
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900841{
842 int rc;
843
844 rc = migrate_huge_page_move_mapping(mapping, newpage, page);
Rafael Aquini78bd5202012-12-11 16:02:31 -0800845 if (rc != MIGRATEPAGE_SUCCESS)
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900846 return rc;
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700847 if (mode != MIGRATE_SYNC_NO_COPY)
848 migrate_page_copy(newpage, page);
849 else
850 migrate_page_states(newpage, page);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900851
Rafael Aquini78bd5202012-12-11 16:02:31 -0800852 return MIGRATEPAGE_SUCCESS;
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900853}
854
Naoya Horiguchi78bb9202017-07-10 15:47:50 -0700855static int hugetlbfs_error_remove_page(struct address_space *mapping,
856 struct page *page)
857{
858 struct inode *inode = mapping->host;
Mike Kravetzab615a52017-11-02 15:59:41 -0700859 pgoff_t index = page->index;
Naoya Horiguchi78bb9202017-07-10 15:47:50 -0700860
861 remove_huge_page(page);
Mike Kravetzab615a52017-11-02 15:59:41 -0700862 if (unlikely(hugetlb_unreserve_pages(inode, index, index + 1, 1)))
863 hugetlb_fix_reserve_counts(inode);
864
Naoya Horiguchi78bb9202017-07-10 15:47:50 -0700865 return 0;
866}
867
David Howells4a252202017-07-05 16:24:18 +0100868/*
869 * Display the mount options in /proc/mounts.
870 */
871static int hugetlbfs_show_options(struct seq_file *m, struct dentry *root)
872{
873 struct hugetlbfs_sb_info *sbinfo = HUGETLBFS_SB(root->d_sb);
874 struct hugepage_subpool *spool = sbinfo->spool;
875 unsigned long hpage_size = huge_page_size(sbinfo->hstate);
876 unsigned hpage_shift = huge_page_shift(sbinfo->hstate);
877 char mod;
878
879 if (!uid_eq(sbinfo->uid, GLOBAL_ROOT_UID))
880 seq_printf(m, ",uid=%u",
881 from_kuid_munged(&init_user_ns, sbinfo->uid));
882 if (!gid_eq(sbinfo->gid, GLOBAL_ROOT_GID))
883 seq_printf(m, ",gid=%u",
884 from_kgid_munged(&init_user_ns, sbinfo->gid));
885 if (sbinfo->mode != 0755)
886 seq_printf(m, ",mode=%o", sbinfo->mode);
887 if (sbinfo->max_inodes != -1)
888 seq_printf(m, ",nr_inodes=%lu", sbinfo->max_inodes);
889
890 hpage_size /= 1024;
891 mod = 'K';
892 if (hpage_size >= 1024) {
893 hpage_size /= 1024;
894 mod = 'M';
895 }
896 seq_printf(m, ",pagesize=%lu%c", hpage_size, mod);
897 if (spool) {
898 if (spool->max_hpages != -1)
899 seq_printf(m, ",size=%llu",
900 (unsigned long long)spool->max_hpages << hpage_shift);
901 if (spool->min_hpages != -1)
902 seq_printf(m, ",min_size=%llu",
903 (unsigned long long)spool->min_hpages << hpage_shift);
904 }
905 return 0;
906}
907
David Howells726c3342006-06-23 02:02:58 -0700908static int hugetlbfs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
David Howells726c3342006-06-23 02:02:58 -0700910 struct hugetlbfs_sb_info *sbinfo = HUGETLBFS_SB(dentry->d_sb);
David Howells2b0143b2015-03-17 22:25:59 +0000911 struct hstate *h = hstate_inode(d_inode(dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913 buf->f_type = HUGETLBFS_MAGIC;
Andi Kleena5516432008-07-23 21:27:41 -0700914 buf->f_bsize = huge_page_size(h);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 if (sbinfo) {
916 spin_lock(&sbinfo->stat_lock);
David Gibson74a8a652005-11-21 21:32:24 -0800917 /* If no limits set, just report 0 for max/free/used
918 * blocks, like simple_statfs() */
David Gibson90481622012-03-21 16:34:12 -0700919 if (sbinfo->spool) {
920 long free_pages;
921
922 spin_lock(&sbinfo->spool->lock);
923 buf->f_blocks = sbinfo->spool->max_hpages;
924 free_pages = sbinfo->spool->max_hpages
925 - sbinfo->spool->used_hpages;
926 buf->f_bavail = buf->f_bfree = free_pages;
927 spin_unlock(&sbinfo->spool->lock);
David Gibson74a8a652005-11-21 21:32:24 -0800928 buf->f_files = sbinfo->max_inodes;
929 buf->f_ffree = sbinfo->free_inodes;
930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 spin_unlock(&sbinfo->stat_lock);
932 }
933 buf->f_namelen = NAME_MAX;
934 return 0;
935}
936
937static void hugetlbfs_put_super(struct super_block *sb)
938{
939 struct hugetlbfs_sb_info *sbi = HUGETLBFS_SB(sb);
940
941 if (sbi) {
942 sb->s_fs_info = NULL;
David Gibson90481622012-03-21 16:34:12 -0700943
944 if (sbi->spool)
945 hugepage_put_subpool(sbi->spool);
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 kfree(sbi);
948 }
949}
950
Christoph Hellwig96527982005-10-29 18:16:42 -0700951static inline int hugetlbfs_dec_free_inodes(struct hugetlbfs_sb_info *sbinfo)
952{
953 if (sbinfo->free_inodes >= 0) {
954 spin_lock(&sbinfo->stat_lock);
955 if (unlikely(!sbinfo->free_inodes)) {
956 spin_unlock(&sbinfo->stat_lock);
957 return 0;
958 }
959 sbinfo->free_inodes--;
960 spin_unlock(&sbinfo->stat_lock);
961 }
962
963 return 1;
964}
965
966static void hugetlbfs_inc_free_inodes(struct hugetlbfs_sb_info *sbinfo)
967{
968 if (sbinfo->free_inodes >= 0) {
969 spin_lock(&sbinfo->stat_lock);
970 sbinfo->free_inodes++;
971 spin_unlock(&sbinfo->stat_lock);
972 }
973}
974
975
Christoph Lametere18b8902006-12-06 20:33:20 -0800976static struct kmem_cache *hugetlbfs_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
978static struct inode *hugetlbfs_alloc_inode(struct super_block *sb)
979{
Christoph Hellwig96527982005-10-29 18:16:42 -0700980 struct hugetlbfs_sb_info *sbinfo = HUGETLBFS_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 struct hugetlbfs_inode_info *p;
982
Christoph Hellwig96527982005-10-29 18:16:42 -0700983 if (unlikely(!hugetlbfs_dec_free_inodes(sbinfo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 return NULL;
Christoph Lametere94b1762006-12-06 20:33:17 -0800985 p = kmem_cache_alloc(hugetlbfs_inode_cachep, GFP_KERNEL);
Christoph Hellwig96527982005-10-29 18:16:42 -0700986 if (unlikely(!p)) {
987 hugetlbfs_inc_free_inodes(sbinfo);
988 return NULL;
989 }
Mike Kravetz4742a352017-03-31 15:12:01 -0700990
991 /*
992 * Any time after allocation, hugetlbfs_destroy_inode can be called
993 * for the inode. mpol_free_shared_policy is unconditionally called
994 * as part of hugetlbfs_destroy_inode. So, initialize policy here
995 * in case of a quick call to destroy.
996 *
997 * Note that the policy is initialized even if we are creating a
998 * private inode. This simplifies hugetlbfs_destroy_inode.
999 */
1000 mpol_shared_policy_init(&p->policy, NULL);
1001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 return &p->vfs_inode;
1003}
1004
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11001005static void hugetlbfs_i_callback(struct rcu_head *head)
1006{
1007 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11001008 kmem_cache_free(hugetlbfs_inode_cachep, HUGETLBFS_I(inode));
1009}
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011static void hugetlbfs_destroy_inode(struct inode *inode)
1012{
Christoph Hellwig96527982005-10-29 18:16:42 -07001013 hugetlbfs_inc_free_inodes(HUGETLBFS_SB(inode->i_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 mpol_free_shared_policy(&HUGETLBFS_I(inode)->policy);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +11001015 call_rcu(&inode->i_rcu, hugetlbfs_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016}
1017
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001018static const struct address_space_operations hugetlbfs_aops = {
Nick Piggin800d15a2007-10-16 01:25:03 -07001019 .write_begin = hugetlbfs_write_begin,
1020 .write_end = hugetlbfs_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 .set_page_dirty = hugetlbfs_set_page_dirty,
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001022 .migratepage = hugetlbfs_migrate_page,
Naoya Horiguchi78bb9202017-07-10 15:47:50 -07001023 .error_remove_page = hugetlbfs_error_remove_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024};
1025
Christoph Hellwig96527982005-10-29 18:16:42 -07001026
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001027static void init_once(void *foo)
Christoph Hellwig96527982005-10-29 18:16:42 -07001028{
1029 struct hugetlbfs_inode_info *ei = (struct hugetlbfs_inode_info *)foo;
1030
Christoph Lametera35afb82007-05-16 22:10:57 -07001031 inode_init_once(&ei->vfs_inode);
Christoph Hellwig96527982005-10-29 18:16:42 -07001032}
1033
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001034const struct file_operations hugetlbfs_file_operations = {
Al Viro34d06402015-04-03 11:31:35 -04001035 .read_iter = hugetlbfs_read_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 .mmap = hugetlbfs_file_mmap,
Christoph Hellwig1b061d92010-05-26 17:53:41 +02001037 .fsync = noop_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 .get_unmapped_area = hugetlb_get_unmapped_area,
Mike Kravetz70c35472015-09-08 15:01:54 -07001039 .llseek = default_llseek,
1040 .fallocate = hugetlbfs_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041};
1042
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001043static const struct inode_operations hugetlbfs_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 .create = hugetlbfs_create,
1045 .lookup = simple_lookup,
1046 .link = simple_link,
1047 .unlink = simple_unlink,
1048 .symlink = hugetlbfs_symlink,
1049 .mkdir = hugetlbfs_mkdir,
1050 .rmdir = simple_rmdir,
1051 .mknod = hugetlbfs_mknod,
1052 .rename = simple_rename,
1053 .setattr = hugetlbfs_setattr,
1054};
1055
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08001056static const struct inode_operations hugetlbfs_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 .setattr = hugetlbfs_setattr,
1058};
1059
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -08001060static const struct super_operations hugetlbfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 .alloc_inode = hugetlbfs_alloc_inode,
1062 .destroy_inode = hugetlbfs_destroy_inode,
Al Viro2bbbda32010-06-04 19:52:12 -04001063 .evict_inode = hugetlbfs_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 .statfs = hugetlbfs_statfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 .put_super = hugetlbfs_put_super,
David Howells4a252202017-07-05 16:24:18 +01001066 .show_options = hugetlbfs_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067};
1068
David Howells4a252202017-07-05 16:24:18 +01001069enum hugetlbfs_size_type { NO_SIZE, SIZE_STD, SIZE_PERCENT };
Mike Kravetz7ca02d02015-04-15 16:13:42 -07001070
1071/*
1072 * Convert size option passed from command line to number of huge pages
1073 * in the pool specified by hstate. Size option could be in bytes
1074 * (val_type == SIZE_STD) or percentage of the pool (val_type == SIZE_PERCENT).
1075 */
David Howells4a252202017-07-05 16:24:18 +01001076static long
Mike Kravetz7ca02d02015-04-15 16:13:42 -07001077hugetlbfs_size_to_hpages(struct hstate *h, unsigned long long size_opt,
David Howells4a252202017-07-05 16:24:18 +01001078 enum hugetlbfs_size_type val_type)
Mike Kravetz7ca02d02015-04-15 16:13:42 -07001079{
1080 if (val_type == NO_SIZE)
1081 return -1;
1082
1083 if (val_type == SIZE_PERCENT) {
1084 size_opt <<= huge_page_shift(h);
1085 size_opt *= h->max_huge_pages;
1086 do_div(size_opt, 100);
1087 }
1088
1089 size_opt >>= huge_page_shift(h);
1090 return size_opt;
1091}
1092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093static int
1094hugetlbfs_parse_options(char *options, struct hugetlbfs_config *pconfig)
1095{
Randy Dunlape73a75f2007-07-15 23:40:52 -07001096 char *p, *rest;
1097 substring_t args[MAX_OPT_ARGS];
1098 int option;
Mike Kravetz7ca02d02015-04-15 16:13:42 -07001099 unsigned long long max_size_opt = 0, min_size_opt = 0;
David Howells4a252202017-07-05 16:24:18 +01001100 enum hugetlbfs_size_type max_val_type = NO_SIZE, min_val_type = NO_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
1102 if (!options)
1103 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Randy Dunlape73a75f2007-07-15 23:40:52 -07001105 while ((p = strsep(&options, ",")) != NULL) {
1106 int token;
Lee Schermerhornb4c07bc2007-07-15 23:40:54 -07001107 if (!*p)
1108 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Randy Dunlape73a75f2007-07-15 23:40:52 -07001110 token = match_token(p, tokens, args);
1111 switch (token) {
1112 case Opt_uid:
1113 if (match_int(&args[0], &option))
1114 goto bad_val;
Eric W. Biedermana0eb3a02012-02-07 16:19:25 -08001115 pconfig->uid = make_kuid(current_user_ns(), option);
1116 if (!uid_valid(pconfig->uid))
1117 goto bad_val;
Randy Dunlape73a75f2007-07-15 23:40:52 -07001118 break;
1119
1120 case Opt_gid:
1121 if (match_int(&args[0], &option))
1122 goto bad_val;
Eric W. Biedermana0eb3a02012-02-07 16:19:25 -08001123 pconfig->gid = make_kgid(current_user_ns(), option);
1124 if (!gid_valid(pconfig->gid))
1125 goto bad_val;
Randy Dunlape73a75f2007-07-15 23:40:52 -07001126 break;
1127
1128 case Opt_mode:
1129 if (match_octal(&args[0], &option))
1130 goto bad_val;
Ken Chen75897d62008-02-04 22:28:36 -08001131 pconfig->mode = option & 01777U;
Randy Dunlape73a75f2007-07-15 23:40:52 -07001132 break;
1133
1134 case Opt_size: {
Randy Dunlape73a75f2007-07-15 23:40:52 -07001135 /* memparse() will accept a K/M/G without a digit */
1136 if (!isdigit(*args[0].from))
1137 goto bad_val;
Mike Kravetz7ca02d02015-04-15 16:13:42 -07001138 max_size_opt = memparse(args[0].from, &rest);
1139 max_val_type = SIZE_STD;
Andi Kleena137e1c2008-07-23 21:27:43 -07001140 if (*rest == '%')
Mike Kravetz7ca02d02015-04-15 16:13:42 -07001141 max_val_type = SIZE_PERCENT;
Randy Dunlape73a75f2007-07-15 23:40:52 -07001142 break;
1143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Randy Dunlape73a75f2007-07-15 23:40:52 -07001145 case Opt_nr_inodes:
1146 /* memparse() will accept a K/M/G without a digit */
1147 if (!isdigit(*args[0].from))
1148 goto bad_val;
1149 pconfig->nr_inodes = memparse(args[0].from, &rest);
1150 break;
1151
Andi Kleena137e1c2008-07-23 21:27:43 -07001152 case Opt_pagesize: {
1153 unsigned long ps;
1154 ps = memparse(args[0].from, &rest);
1155 pconfig->hstate = size_to_hstate(ps);
1156 if (!pconfig->hstate) {
Andrew Morton9b857d22014-06-04 16:07:21 -07001157 pr_err("Unsupported page size %lu MB\n",
Andi Kleena137e1c2008-07-23 21:27:43 -07001158 ps >> 20);
1159 return -EINVAL;
1160 }
1161 break;
1162 }
1163
Mike Kravetz7ca02d02015-04-15 16:13:42 -07001164 case Opt_min_size: {
1165 /* memparse() will accept a K/M/G without a digit */
1166 if (!isdigit(*args[0].from))
1167 goto bad_val;
1168 min_size_opt = memparse(args[0].from, &rest);
1169 min_val_type = SIZE_STD;
1170 if (*rest == '%')
1171 min_val_type = SIZE_PERCENT;
1172 break;
1173 }
1174
Randy Dunlape73a75f2007-07-15 23:40:52 -07001175 default:
Andrew Morton9b857d22014-06-04 16:07:21 -07001176 pr_err("Bad mount option: \"%s\"\n", p);
Lee Schermerhornb4c07bc2007-07-15 23:40:54 -07001177 return -EINVAL;
Randy Dunlape73a75f2007-07-15 23:40:52 -07001178 break;
1179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 }
Andi Kleena137e1c2008-07-23 21:27:43 -07001181
Mike Kravetz7ca02d02015-04-15 16:13:42 -07001182 /*
1183 * Use huge page pool size (in hstate) to convert the size
1184 * options to number of huge pages. If NO_SIZE, -1 is returned.
1185 */
1186 pconfig->max_hpages = hugetlbfs_size_to_hpages(pconfig->hstate,
1187 max_size_opt, max_val_type);
1188 pconfig->min_hpages = hugetlbfs_size_to_hpages(pconfig->hstate,
1189 min_size_opt, min_val_type);
1190
1191 /*
1192 * If max_size was specified, then min_size must be smaller
1193 */
1194 if (max_val_type > NO_SIZE &&
1195 pconfig->min_hpages > pconfig->max_hpages) {
1196 pr_err("minimum size can not be greater than maximum size\n");
1197 return -EINVAL;
Andi Kleena137e1c2008-07-23 21:27:43 -07001198 }
1199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 return 0;
Randy Dunlape73a75f2007-07-15 23:40:52 -07001201
1202bad_val:
Andrew Morton9b857d22014-06-04 16:07:21 -07001203 pr_err("Bad value '%s' for mount option '%s'\n", args[0].from, p);
Akinobu Mitac12ddba2009-04-21 12:24:05 -07001204 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205}
1206
1207static int
1208hugetlbfs_fill_super(struct super_block *sb, void *data, int silent)
1209{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 int ret;
1211 struct hugetlbfs_config config;
1212 struct hugetlbfs_sb_info *sbinfo;
1213
Mike Kravetz7ca02d02015-04-15 16:13:42 -07001214 config.max_hpages = -1; /* No limit on size by default */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 config.nr_inodes = -1; /* No limit on number of inodes by default */
David Howells77c70de2008-11-14 10:38:56 +11001216 config.uid = current_fsuid();
1217 config.gid = current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 config.mode = 0755;
Andi Kleena137e1c2008-07-23 21:27:43 -07001219 config.hstate = &default_hstate;
Mike Kravetz7ca02d02015-04-15 16:13:42 -07001220 config.min_hpages = -1; /* No default minimum size */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 ret = hugetlbfs_parse_options(data, &config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 if (ret)
1223 return ret;
1224
1225 sbinfo = kmalloc(sizeof(struct hugetlbfs_sb_info), GFP_KERNEL);
1226 if (!sbinfo)
1227 return -ENOMEM;
1228 sb->s_fs_info = sbinfo;
Andi Kleena137e1c2008-07-23 21:27:43 -07001229 sbinfo->hstate = config.hstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 spin_lock_init(&sbinfo->stat_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 sbinfo->max_inodes = config.nr_inodes;
1232 sbinfo->free_inodes = config.nr_inodes;
David Gibson90481622012-03-21 16:34:12 -07001233 sbinfo->spool = NULL;
David Howells4a252202017-07-05 16:24:18 +01001234 sbinfo->uid = config.uid;
1235 sbinfo->gid = config.gid;
1236 sbinfo->mode = config.mode;
1237
Mike Kravetz7ca02d02015-04-15 16:13:42 -07001238 /*
1239 * Allocate and initialize subpool if maximum or minimum size is
1240 * specified. Any needed reservations (for minimim size) are taken
1241 * taken when the subpool is created.
1242 */
1243 if (config.max_hpages != -1 || config.min_hpages != -1) {
1244 sbinfo->spool = hugepage_new_subpool(config.hstate,
1245 config.max_hpages,
1246 config.min_hpages);
David Gibson90481622012-03-21 16:34:12 -07001247 if (!sbinfo->spool)
1248 goto out_free;
1249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 sb->s_maxbytes = MAX_LFS_FILESIZE;
Andi Kleena137e1c2008-07-23 21:27:43 -07001251 sb->s_blocksize = huge_page_size(config.hstate);
1252 sb->s_blocksize_bits = huge_page_shift(config.hstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 sb->s_magic = HUGETLBFS_MAGIC;
1254 sb->s_op = &hugetlbfs_ops;
1255 sb->s_time_gran = 1;
Al Viro48fde702012-01-08 22:15:13 -05001256 sb->s_root = d_make_root(hugetlbfs_get_root(sb, &config));
1257 if (!sb->s_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 return 0;
1260out_free:
Fabian Frederick6e6870d2014-06-04 16:10:40 -07001261 kfree(sbinfo->spool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 kfree(sbinfo);
1263 return -ENOMEM;
1264}
1265
Al Viro3c26ff62010-07-25 11:46:36 +04001266static struct dentry *hugetlbfs_mount(struct file_system_type *fs_type,
1267 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
Al Viro3c26ff62010-07-25 11:46:36 +04001269 return mount_nodev(fs_type, flags, data, hugetlbfs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270}
1271
1272static struct file_system_type hugetlbfs_fs_type = {
1273 .name = "hugetlbfs",
Al Viro3c26ff62010-07-25 11:46:36 +04001274 .mount = hugetlbfs_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 .kill_sb = kill_litter_super,
1276};
1277
Andi Kleen42d73952012-12-11 16:01:34 -08001278static struct vfsmount *hugetlbfs_vfsmount[HUGE_MAX_HSTATE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
From: Mel Gormanef1ff6b2009-09-23 15:56:05 -07001280static int can_do_hugetlb_shm(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
Eric W. Biedermana0eb3a02012-02-07 16:19:25 -08001282 kgid_t shm_group;
1283 shm_group = make_kgid(&init_user_ns, sysctl_hugetlb_shm_group);
1284 return capable(CAP_IPC_LOCK) || in_group_p(shm_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285}
1286
Andi Kleen42d73952012-12-11 16:01:34 -08001287static int get_hstate_idx(int page_size_log)
1288{
Naoya Horiguchiaf73e4d2013-05-07 16:18:13 -07001289 struct hstate *h = hstate_sizelog(page_size_log);
Andi Kleen42d73952012-12-11 16:01:34 -08001290
Andi Kleen42d73952012-12-11 16:01:34 -08001291 if (!h)
1292 return -1;
1293 return h - hstates;
1294}
1295
Fabian Frederickbe1d2cf2014-06-04 16:10:39 -07001296static const struct dentry_operations anon_ops = {
Al Viro118b2302013-08-24 12:08:17 -04001297 .d_dname = simple_dname
Al Viro0df4d6e2013-02-14 22:39:53 -05001298};
1299
Naoya Horiguchiaf73e4d2013-05-07 16:18:13 -07001300/*
1301 * Note that size should be aligned to proper hugepage size in caller side,
1302 * otherwise hugetlb_reserve_pages reserves one less hugepages than intended.
1303 */
1304struct file *hugetlb_file_setup(const char *name, size_t size,
1305 vm_flags_t acctflag, struct user_struct **user,
Andi Kleen42d73952012-12-11 16:01:34 -08001306 int creat_flags, int page_size_log)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307{
Anatol Pomozov39b65252012-09-12 20:11:55 -07001308 struct file *file = ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 struct inode *inode;
Al Viro2c48b9c2009-08-09 00:52:35 +04001310 struct path path;
Al Viro0df4d6e2013-02-14 22:39:53 -05001311 struct super_block *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 struct qstr quick_string;
Andi Kleen42d73952012-12-11 16:01:34 -08001313 int hstate_idx;
1314
1315 hstate_idx = get_hstate_idx(page_size_log);
1316 if (hstate_idx < 0)
1317 return ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Hugh Dickins353d5c32009-08-24 16:30:28 +01001319 *user = NULL;
Andi Kleen42d73952012-12-11 16:01:34 -08001320 if (!hugetlbfs_vfsmount[hstate_idx])
Akinobu Mita5bc98592007-05-06 14:50:18 -07001321 return ERR_PTR(-ENOENT);
1322
From: Mel Gormanef1ff6b2009-09-23 15:56:05 -07001323 if (creat_flags == HUGETLB_SHMFS_INODE && !can_do_hugetlb_shm()) {
Hugh Dickins353d5c32009-08-24 16:30:28 +01001324 *user = current_user();
1325 if (user_shm_lock(size, *user)) {
David Rientjes21a3c272012-03-21 16:34:13 -07001326 task_lock(current);
Andrew Morton9b857d22014-06-04 16:07:21 -07001327 pr_warn_once("%s (%d): Using mlock ulimits for SHM_HUGETLB is deprecated\n",
David Rientjes21a3c272012-03-21 16:34:13 -07001328 current->comm, current->pid);
1329 task_unlock(current);
Hugh Dickins353d5c32009-08-24 16:30:28 +01001330 } else {
1331 *user = NULL;
Ravikiran G Thirumalai2584e512009-03-31 15:21:26 -07001332 return ERR_PTR(-EPERM);
Hugh Dickins353d5c32009-08-24 16:30:28 +01001333 }
Ravikiran G Thirumalai2584e512009-03-31 15:21:26 -07001334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Al Viro0df4d6e2013-02-14 22:39:53 -05001336 sb = hugetlbfs_vfsmount[hstate_idx]->mnt_sb;
Eric W. Biederman9d665862007-06-16 10:16:16 -07001337 quick_string.name = name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 quick_string.len = strlen(quick_string.name);
1339 quick_string.hash = 0;
Al Viro0df4d6e2013-02-14 22:39:53 -05001340 path.dentry = d_alloc_pseudo(sb, &quick_string);
Al Viro2c48b9c2009-08-09 00:52:35 +04001341 if (!path.dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 goto out_shm_unlock;
1343
Al Viro0df4d6e2013-02-14 22:39:53 -05001344 d_set_d_op(path.dentry, &anon_ops);
Andi Kleen42d73952012-12-11 16:01:34 -08001345 path.mnt = mntget(hugetlbfs_vfsmount[hstate_idx]);
Anatol Pomozov39b65252012-09-12 20:11:55 -07001346 file = ERR_PTR(-ENOSPC);
Al Viro0df4d6e2013-02-14 22:39:53 -05001347 inode = hugetlbfs_get_inode(sb, NULL, S_IFREG | S_IRWXUGO, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 if (!inode)
Dave Hansence8d2cd2007-10-16 23:31:13 -07001349 goto out_dentry;
Stephen Smalleye1832f22015-08-06 15:46:55 -07001350 if (creat_flags == HUGETLB_SHMFS_INODE)
1351 inode->i_flags |= S_PRIVATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Anatol Pomozov39b65252012-09-12 20:11:55 -07001353 file = ERR_PTR(-ENOMEM);
Naoya Horiguchiaf73e4d2013-05-07 16:18:13 -07001354 if (hugetlb_reserve_pages(inode, 0,
1355 size >> huge_page_shift(hstate_inode(inode)), NULL,
1356 acctflag))
David Gibsonb45b5bd2006-03-22 00:08:55 -08001357 goto out_inode;
1358
Al Viro2c48b9c2009-08-09 00:52:35 +04001359 d_instantiate(path.dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 inode->i_size = size;
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +02001361 clear_nlink(inode);
Dave Hansence8d2cd2007-10-16 23:31:13 -07001362
Al Viro2c48b9c2009-08-09 00:52:35 +04001363 file = alloc_file(&path, FMODE_WRITE | FMODE_READ,
Dave Hansence8d2cd2007-10-16 23:31:13 -07001364 &hugetlbfs_file_operations);
Anatol Pomozov39b65252012-09-12 20:11:55 -07001365 if (IS_ERR(file))
Al Virob4d232e2008-02-23 05:59:19 -05001366 goto out_dentry; /* inode is already attached */
Dave Hansence8d2cd2007-10-16 23:31:13 -07001367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 return file;
1369
David Gibsonb45b5bd2006-03-22 00:08:55 -08001370out_inode:
1371 iput(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372out_dentry:
Al Viro2c48b9c2009-08-09 00:52:35 +04001373 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374out_shm_unlock:
Hugh Dickins353d5c32009-08-24 16:30:28 +01001375 if (*user) {
1376 user_shm_unlock(size, *user);
1377 *user = NULL;
1378 }
Anatol Pomozov39b65252012-09-12 20:11:55 -07001379 return file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380}
1381
1382static int __init init_hugetlbfs_fs(void)
1383{
Andi Kleen42d73952012-12-11 16:01:34 -08001384 struct hstate *h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 int error;
Andi Kleen42d73952012-12-11 16:01:34 -08001386 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
Nishanth Aravamudan457c1b22014-05-06 12:50:00 -07001388 if (!hugepages_supported()) {
Andrew Morton9b857d22014-06-04 16:07:21 -07001389 pr_info("disabling because there are no supported hugepage sizes\n");
Nishanth Aravamudan457c1b22014-05-06 12:50:00 -07001390 return -ENOTSUPP;
1391 }
1392
Hillf Dantond1d5e052012-03-21 16:34:15 -07001393 error = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 hugetlbfs_inode_cachep = kmem_cache_create("hugetlbfs_inode_cache",
1395 sizeof(struct hugetlbfs_inode_info),
Vladimir Davydov5d097052016-01-14 15:18:21 -08001396 0, SLAB_ACCOUNT, init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 if (hugetlbfs_inode_cachep == NULL)
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -07001398 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
1400 error = register_filesystem(&hugetlbfs_fs_type);
1401 if (error)
1402 goto out;
1403
Andi Kleen42d73952012-12-11 16:01:34 -08001404 i = 0;
1405 for_each_hstate(h) {
1406 char buf[50];
1407 unsigned ps_kb = 1U << (h->order + PAGE_SHIFT - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
Andi Kleen42d73952012-12-11 16:01:34 -08001409 snprintf(buf, sizeof(buf), "pagesize=%uK", ps_kb);
1410 hugetlbfs_vfsmount[i] = kern_mount_data(&hugetlbfs_fs_type,
1411 buf);
1412
1413 if (IS_ERR(hugetlbfs_vfsmount[i])) {
Andrew Morton9b857d22014-06-04 16:07:21 -07001414 pr_err("Cannot mount internal hugetlbfs for "
Andi Kleen42d73952012-12-11 16:01:34 -08001415 "page size %uK", ps_kb);
1416 error = PTR_ERR(hugetlbfs_vfsmount[i]);
1417 hugetlbfs_vfsmount[i] = NULL;
1418 }
1419 i++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 }
Andi Kleen42d73952012-12-11 16:01:34 -08001421 /* Non default hstates are optional */
1422 if (!IS_ERR_OR_NULL(hugetlbfs_vfsmount[default_hstate_idx]))
1423 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
1425 out:
Hillf Dantond1d5e052012-03-21 16:34:15 -07001426 kmem_cache_destroy(hugetlbfs_inode_cachep);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -07001427 out2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 return error;
1429}
Paul Gortmaker3e89e1c2016-01-14 15:21:52 -08001430fs_initcall(init_hugetlbfs_fs)