]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/hugetlbfs/inode.c
PowerPC: Disable SLUB for configurations in which slab page structs are modified
[net-next-2.6.git] / fs / hugetlbfs / inode.c
CommitLineData
1da177e4
LT
1/*
2 * hugetlbpage-backed filesystem. Based on ramfs.
3 *
4 * William Irwin, 2002
5 *
6 * Copyright (C) 2002 Linus Torvalds.
7 */
8
9#include <linux/module.h>
10#include <linux/thread_info.h>
11#include <asm/current.h>
12#include <linux/sched.h> /* remove ASAP */
13#include <linux/fs.h>
14#include <linux/mount.h>
15#include <linux/file.h>
16#include <linux/writeback.h>
17#include <linux/pagemap.h>
18#include <linux/highmem.h>
19#include <linux/init.h>
20#include <linux/string.h>
16f7e0fe 21#include <linux/capability.h>
1da177e4
LT
22#include <linux/backing-dev.h>
23#include <linux/hugetlb.h>
24#include <linux/pagevec.h>
25#include <linux/quotaops.h>
26#include <linux/slab.h>
27#include <linux/dnotify.h>
28#include <linux/statfs.h>
29#include <linux/security.h>
30
31#include <asm/uaccess.h>
32
33/* some random number */
34#define HUGETLBFS_MAGIC 0x958458f6
35
ee9b6d61 36static const struct super_operations hugetlbfs_ops;
f5e54d6e 37static const struct address_space_operations hugetlbfs_aops;
4b6f5d20 38const struct file_operations hugetlbfs_file_operations;
92e1d5be
AV
39static const struct inode_operations hugetlbfs_dir_inode_operations;
40static const struct inode_operations hugetlbfs_inode_operations;
1da177e4
LT
41
42static struct backing_dev_info hugetlbfs_backing_dev_info = {
43 .ra_pages = 0, /* No readahead */
44 .capabilities = BDI_CAP_NO_ACCT_DIRTY | BDI_CAP_NO_WRITEBACK,
45};
46
47int sysctl_hugetlb_shm_group;
48
2e9b367c
AL
49static void huge_pagevec_release(struct pagevec *pvec)
50{
51 int i;
52
53 for (i = 0; i < pagevec_count(pvec); ++i)
54 put_page(pvec->pages[i]);
55
56 pagevec_reinit(pvec);
57}
58
1da177e4
LT
59static int hugetlbfs_file_mmap(struct file *file, struct vm_area_struct *vma)
60{
b39424e2 61 struct inode *inode = file->f_path.dentry->d_inode;
1da177e4
LT
62 loff_t len, vma_len;
63 int ret;
64
68589bc3
HD
65 /*
66 * vma alignment has already been checked by prepare_hugepage_range.
67 * If you add any error returns here, do so after setting VM_HUGETLB,
68 * so is_vm_hugetlb_page tests below unmap_region go the right way
69 * when do_mmap_pgoff unwinds (may be important on powerpc and ia64).
70 */
71 vma->vm_flags |= VM_HUGETLB | VM_RESERVED;
72 vma->vm_ops = &hugetlb_vm_ops;
1da177e4
LT
73
74 vma_len = (loff_t)(vma->vm_end - vma->vm_start);
75
1b1dcc1b 76 mutex_lock(&inode->i_mutex);
1da177e4 77 file_accessed(file);
1da177e4
LT
78
79 ret = -ENOMEM;
80 len = vma_len + ((loff_t)vma->vm_pgoff << PAGE_SHIFT);
1da177e4 81
a43a8c39
KC
82 if (vma->vm_flags & VM_MAYSHARE &&
83 hugetlb_reserve_pages(inode, vma->vm_pgoff >> (HPAGE_SHIFT-PAGE_SHIFT),
84 len >> HPAGE_SHIFT))
85 goto out;
b45b5bd6 86
4c887265
AL
87 ret = 0;
88 hugetlb_prefault_arch_hook(vma->vm_mm);
b6174df5 89 if (vma->vm_flags & VM_WRITE && inode->i_size < len)
1da177e4
LT
90 inode->i_size = len;
91out:
1b1dcc1b 92 mutex_unlock(&inode->i_mutex);
1da177e4
LT
93
94 return ret;
95}
96
97/*
508034a3 98 * Called under down_write(mmap_sem).
1da177e4
LT
99 */
100
d2ba27e8 101#ifndef HAVE_ARCH_HUGETLB_UNMAPPED_AREA
1da177e4
LT
102static unsigned long
103hugetlb_get_unmapped_area(struct file *file, unsigned long addr,
104 unsigned long len, unsigned long pgoff, unsigned long flags)
105{
106 struct mm_struct *mm = current->mm;
107 struct vm_area_struct *vma;
108 unsigned long start_addr;
109
110 if (len & ~HPAGE_MASK)
111 return -EINVAL;
112 if (len > TASK_SIZE)
113 return -ENOMEM;
114
115 if (addr) {
116 addr = ALIGN(addr, HPAGE_SIZE);
117 vma = find_vma(mm, addr);
118 if (TASK_SIZE - len >= addr &&
119 (!vma || addr + len <= vma->vm_start))
120 return addr;
121 }
122
123 start_addr = mm->free_area_cache;
124
1363c3cd
WW
125 if (len <= mm->cached_hole_size)
126 start_addr = TASK_UNMAPPED_BASE;
127
1da177e4
LT
128full_search:
129 addr = ALIGN(start_addr, HPAGE_SIZE);
130
131 for (vma = find_vma(mm, addr); ; vma = vma->vm_next) {
132 /* At this point: (!vma || addr < vma->vm_end). */
133 if (TASK_SIZE - len < addr) {
134 /*
135 * Start a new search - just in case we missed
136 * some holes.
137 */
138 if (start_addr != TASK_UNMAPPED_BASE) {
139 start_addr = TASK_UNMAPPED_BASE;
140 goto full_search;
141 }
142 return -ENOMEM;
143 }
144
145 if (!vma || addr + len <= vma->vm_start)
146 return addr;
147 addr = ALIGN(vma->vm_end, HPAGE_SIZE);
148 }
149}
150#endif
151
152/*
153 * Read a page. Again trivial. If it didn't already exist
154 * in the page cache, it is zero-filled.
155 */
156static int hugetlbfs_readpage(struct file *file, struct page * page)
157{
158 unlock_page(page);
159 return -EINVAL;
160}
161
162static int hugetlbfs_prepare_write(struct file *file,
163 struct page *page, unsigned offset, unsigned to)
164{
165 return -EINVAL;
166}
167
168static int hugetlbfs_commit_write(struct file *file,
169 struct page *page, unsigned offset, unsigned to)
170{
171 return -EINVAL;
172}
173
1da177e4
LT
174static void truncate_huge_page(struct page *page)
175{
fba2591b 176 cancel_dirty_page(page, /* No IO accounting for huge pages? */0);
1da177e4
LT
177 ClearPageUptodate(page);
178 remove_from_page_cache(page);
179 put_page(page);
180}
181
b45b5bd6 182static void truncate_hugepages(struct inode *inode, loff_t lstart)
1da177e4 183{
b45b5bd6 184 struct address_space *mapping = &inode->i_data;
1da177e4
LT
185 const pgoff_t start = lstart >> HPAGE_SHIFT;
186 struct pagevec pvec;
187 pgoff_t next;
a43a8c39 188 int i, freed = 0;
1da177e4
LT
189
190 pagevec_init(&pvec, 0);
191 next = start;
192 while (1) {
193 if (!pagevec_lookup(&pvec, mapping, next, PAGEVEC_SIZE)) {
194 if (next == start)
195 break;
196 next = start;
197 continue;
198 }
199
200 for (i = 0; i < pagevec_count(&pvec); ++i) {
201 struct page *page = pvec.pages[i];
202
203 lock_page(page);
204 if (page->index > next)
205 next = page->index;
206 ++next;
207 truncate_huge_page(page);
208 unlock_page(page);
209 hugetlb_put_quota(mapping);
a43a8c39 210 freed++;
1da177e4
LT
211 }
212 huge_pagevec_release(&pvec);
213 }
214 BUG_ON(!lstart && mapping->nrpages);
a43a8c39 215 hugetlb_unreserve_pages(inode, start, freed);
1da177e4
LT
216}
217
218static void hugetlbfs_delete_inode(struct inode *inode)
219{
b45b5bd6 220 truncate_hugepages(inode, 0);
149f4211
CH
221 clear_inode(inode);
222}
223
ddc0a51d 224static void hugetlbfs_forget_inode(struct inode *inode) __releases(inode_lock)
1da177e4 225{
0b1533f6
CH
226 struct super_block *sb = inode->i_sb;
227
228 if (!hlist_unhashed(&inode->i_hash)) {
229 if (!(inode->i_state & (I_DIRTY|I_LOCK)))
230 list_move(&inode->i_list, &inode_unused);
231 inodes_stat.nr_unused++;
232 if (!sb || (sb->s_flags & MS_ACTIVE)) {
233 spin_unlock(&inode_lock);
234 return;
235 }
236 inode->i_state |= I_WILL_FREE;
1da177e4 237 spin_unlock(&inode_lock);
0b1533f6
CH
238 /*
239 * write_inode_now is a noop as we set BDI_CAP_NO_WRITEBACK
240 * in our backing_dev_info.
241 */
242 write_inode_now(inode, 1);
243 spin_lock(&inode_lock);
244 inode->i_state &= ~I_WILL_FREE;
245 inodes_stat.nr_unused--;
246 hlist_del_init(&inode->i_hash);
1da177e4 247 }
1da177e4
LT
248 list_del_init(&inode->i_list);
249 list_del_init(&inode->i_sb_list);
250 inode->i_state |= I_FREEING;
251 inodes_stat.nr_inodes--;
252 spin_unlock(&inode_lock);
b45b5bd6 253 truncate_hugepages(inode, 0);
1da177e4
LT
254 clear_inode(inode);
255 destroy_inode(inode);
256}
257
258static void hugetlbfs_drop_inode(struct inode *inode)
259{
260 if (!inode->i_nlink)
6b09b9df 261 generic_delete_inode(inode);
1da177e4
LT
262 else
263 hugetlbfs_forget_inode(inode);
264}
265
1da177e4 266static inline void
856fc295 267hugetlb_vmtruncate_list(struct prio_tree_root *root, pgoff_t pgoff)
1da177e4
LT
268{
269 struct vm_area_struct *vma;
270 struct prio_tree_iter iter;
271
856fc295 272 vma_prio_tree_foreach(vma, &iter, root, pgoff, ULONG_MAX) {
1da177e4
LT
273 unsigned long v_offset;
274
1da177e4 275 /*
856fc295
HD
276 * Can the expression below overflow on 32-bit arches?
277 * No, because the prio_tree returns us only those vmas
278 * which overlap the truncated area starting at pgoff,
279 * and no vma on a 32-bit arch can span beyond the 4GB.
1da177e4 280 */
856fc295
HD
281 if (vma->vm_pgoff < pgoff)
282 v_offset = (pgoff - vma->vm_pgoff) << PAGE_SHIFT;
283 else
1da177e4
LT
284 v_offset = 0;
285
502717f4 286 __unmap_hugepage_range(vma,
508034a3 287 vma->vm_start + v_offset, vma->vm_end);
1da177e4
LT
288 }
289}
290
291/*
292 * Expanding truncates are not allowed.
293 */
294static int hugetlb_vmtruncate(struct inode *inode, loff_t offset)
295{
856fc295 296 pgoff_t pgoff;
1da177e4
LT
297 struct address_space *mapping = inode->i_mapping;
298
299 if (offset > inode->i_size)
300 return -EINVAL;
301
302 BUG_ON(offset & ~HPAGE_MASK);
856fc295 303 pgoff = offset >> PAGE_SHIFT;
1da177e4
LT
304
305 inode->i_size = offset;
306 spin_lock(&mapping->i_mmap_lock);
307 if (!prio_tree_empty(&mapping->i_mmap))
308 hugetlb_vmtruncate_list(&mapping->i_mmap, pgoff);
309 spin_unlock(&mapping->i_mmap_lock);
b45b5bd6 310 truncate_hugepages(inode, offset);
1da177e4
LT
311 return 0;
312}
313
314static int hugetlbfs_setattr(struct dentry *dentry, struct iattr *attr)
315{
316 struct inode *inode = dentry->d_inode;
317 int error;
318 unsigned int ia_valid = attr->ia_valid;
319
320 BUG_ON(!inode);
321
322 error = inode_change_ok(inode, attr);
323 if (error)
324 goto out;
325
326 if (ia_valid & ATTR_SIZE) {
327 error = -EINVAL;
328 if (!(attr->ia_size & ~HPAGE_MASK))
329 error = hugetlb_vmtruncate(inode, attr->ia_size);
330 if (error)
331 goto out;
332 attr->ia_valid &= ~ATTR_SIZE;
333 }
334 error = inode_setattr(inode, attr);
335out:
336 return error;
337}
338
339static struct inode *hugetlbfs_get_inode(struct super_block *sb, uid_t uid,
340 gid_t gid, int mode, dev_t dev)
341{
342 struct inode *inode;
1da177e4
LT
343
344 inode = new_inode(sb);
345 if (inode) {
346 struct hugetlbfs_inode_info *info;
347 inode->i_mode = mode;
348 inode->i_uid = uid;
349 inode->i_gid = gid;
1da177e4
LT
350 inode->i_blocks = 0;
351 inode->i_mapping->a_ops = &hugetlbfs_aops;
352 inode->i_mapping->backing_dev_info =&hugetlbfs_backing_dev_info;
353 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
a43a8c39 354 INIT_LIST_HEAD(&inode->i_mapping->private_list);
1da177e4 355 info = HUGETLBFS_I(inode);
7339ff83 356 mpol_shared_policy_init(&info->policy, MPOL_DEFAULT, NULL);
1da177e4
LT
357 switch (mode & S_IFMT) {
358 default:
359 init_special_inode(inode, mode, dev);
360 break;
361 case S_IFREG:
362 inode->i_op = &hugetlbfs_inode_operations;
363 inode->i_fop = &hugetlbfs_file_operations;
364 break;
365 case S_IFDIR:
366 inode->i_op = &hugetlbfs_dir_inode_operations;
367 inode->i_fop = &simple_dir_operations;
368
369 /* directory inodes start off with i_nlink == 2 (for "." entry) */
d8c76e6f 370 inc_nlink(inode);
1da177e4
LT
371 break;
372 case S_IFLNK:
373 inode->i_op = &page_symlink_inode_operations;
374 break;
375 }
376 }
377 return inode;
378}
379
380/*
381 * File creation. Allocate an inode, and we're done..
382 */
383static int hugetlbfs_mknod(struct inode *dir,
384 struct dentry *dentry, int mode, dev_t dev)
385{
386 struct inode *inode;
387 int error = -ENOSPC;
388 gid_t gid;
389
390 if (dir->i_mode & S_ISGID) {
391 gid = dir->i_gid;
392 if (S_ISDIR(mode))
393 mode |= S_ISGID;
394 } else {
395 gid = current->fsgid;
396 }
397 inode = hugetlbfs_get_inode(dir->i_sb, current->fsuid, gid, mode, dev);
398 if (inode) {
399 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
400 d_instantiate(dentry, inode);
401 dget(dentry); /* Extra count - pin the dentry in core */
402 error = 0;
403 }
404 return error;
405}
406
407static int hugetlbfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
408{
409 int retval = hugetlbfs_mknod(dir, dentry, mode | S_IFDIR, 0);
410 if (!retval)
d8c76e6f 411 inc_nlink(dir);
1da177e4
LT
412 return retval;
413}
414
415static int hugetlbfs_create(struct inode *dir, struct dentry *dentry, int mode, struct nameidata *nd)
416{
417 return hugetlbfs_mknod(dir, dentry, mode | S_IFREG, 0);
418}
419
420static int hugetlbfs_symlink(struct inode *dir,
421 struct dentry *dentry, const char *symname)
422{
423 struct inode *inode;
424 int error = -ENOSPC;
425 gid_t gid;
426
427 if (dir->i_mode & S_ISGID)
428 gid = dir->i_gid;
429 else
430 gid = current->fsgid;
431
432 inode = hugetlbfs_get_inode(dir->i_sb, current->fsuid,
433 gid, S_IFLNK|S_IRWXUGO, 0);
434 if (inode) {
435 int l = strlen(symname)+1;
436 error = page_symlink(inode, symname, l);
437 if (!error) {
438 d_instantiate(dentry, inode);
439 dget(dentry);
440 } else
441 iput(inode);
442 }
443 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
444
445 return error;
446}
447
448/*
6649a386 449 * mark the head page dirty
1da177e4
LT
450 */
451static int hugetlbfs_set_page_dirty(struct page *page)
452{
6649a386
KC
453 struct page *head = (struct page *)page_private(page);
454
455 SetPageDirty(head);
1da177e4
LT
456 return 0;
457}
458
726c3342 459static int hugetlbfs_statfs(struct dentry *dentry, struct kstatfs *buf)
1da177e4 460{
726c3342 461 struct hugetlbfs_sb_info *sbinfo = HUGETLBFS_SB(dentry->d_sb);
1da177e4
LT
462
463 buf->f_type = HUGETLBFS_MAGIC;
464 buf->f_bsize = HPAGE_SIZE;
465 if (sbinfo) {
466 spin_lock(&sbinfo->stat_lock);
74a8a65c
DG
467 /* If no limits set, just report 0 for max/free/used
468 * blocks, like simple_statfs() */
469 if (sbinfo->max_blocks >= 0) {
470 buf->f_blocks = sbinfo->max_blocks;
471 buf->f_bavail = buf->f_bfree = sbinfo->free_blocks;
472 buf->f_files = sbinfo->max_inodes;
473 buf->f_ffree = sbinfo->free_inodes;
474 }
1da177e4
LT
475 spin_unlock(&sbinfo->stat_lock);
476 }
477 buf->f_namelen = NAME_MAX;
478 return 0;
479}
480
481static void hugetlbfs_put_super(struct super_block *sb)
482{
483 struct hugetlbfs_sb_info *sbi = HUGETLBFS_SB(sb);
484
485 if (sbi) {
486 sb->s_fs_info = NULL;
487 kfree(sbi);
488 }
489}
490
96527980
CH
491static inline int hugetlbfs_dec_free_inodes(struct hugetlbfs_sb_info *sbinfo)
492{
493 if (sbinfo->free_inodes >= 0) {
494 spin_lock(&sbinfo->stat_lock);
495 if (unlikely(!sbinfo->free_inodes)) {
496 spin_unlock(&sbinfo->stat_lock);
497 return 0;
498 }
499 sbinfo->free_inodes--;
500 spin_unlock(&sbinfo->stat_lock);
501 }
502
503 return 1;
504}
505
506static void hugetlbfs_inc_free_inodes(struct hugetlbfs_sb_info *sbinfo)
507{
508 if (sbinfo->free_inodes >= 0) {
509 spin_lock(&sbinfo->stat_lock);
510 sbinfo->free_inodes++;
511 spin_unlock(&sbinfo->stat_lock);
512 }
513}
514
515
e18b890b 516static struct kmem_cache *hugetlbfs_inode_cachep;
1da177e4
LT
517
518static struct inode *hugetlbfs_alloc_inode(struct super_block *sb)
519{
96527980 520 struct hugetlbfs_sb_info *sbinfo = HUGETLBFS_SB(sb);
1da177e4
LT
521 struct hugetlbfs_inode_info *p;
522
96527980
CH
523 if (unlikely(!hugetlbfs_dec_free_inodes(sbinfo)))
524 return NULL;
e94b1766 525 p = kmem_cache_alloc(hugetlbfs_inode_cachep, GFP_KERNEL);
96527980
CH
526 if (unlikely(!p)) {
527 hugetlbfs_inc_free_inodes(sbinfo);
1da177e4 528 return NULL;
96527980 529 }
1da177e4
LT
530 return &p->vfs_inode;
531}
532
1da177e4
LT
533static void hugetlbfs_destroy_inode(struct inode *inode)
534{
96527980 535 hugetlbfs_inc_free_inodes(HUGETLBFS_SB(inode->i_sb));
1da177e4
LT
536 mpol_free_shared_policy(&HUGETLBFS_I(inode)->policy);
537 kmem_cache_free(hugetlbfs_inode_cachep, HUGETLBFS_I(inode));
538}
539
f5e54d6e 540static const struct address_space_operations hugetlbfs_aops = {
1da177e4
LT
541 .readpage = hugetlbfs_readpage,
542 .prepare_write = hugetlbfs_prepare_write,
543 .commit_write = hugetlbfs_commit_write,
544 .set_page_dirty = hugetlbfs_set_page_dirty,
545};
546
96527980 547
e18b890b 548static void init_once(void *foo, struct kmem_cache *cachep, unsigned long flags)
96527980
CH
549{
550 struct hugetlbfs_inode_info *ei = (struct hugetlbfs_inode_info *)foo;
551
552 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
553 SLAB_CTOR_CONSTRUCTOR)
554 inode_init_once(&ei->vfs_inode);
555}
556
4b6f5d20 557const struct file_operations hugetlbfs_file_operations = {
1da177e4
LT
558 .mmap = hugetlbfs_file_mmap,
559 .fsync = simple_sync_file,
560 .get_unmapped_area = hugetlb_get_unmapped_area,
561};
562
92e1d5be 563static const struct inode_operations hugetlbfs_dir_inode_operations = {
1da177e4
LT
564 .create = hugetlbfs_create,
565 .lookup = simple_lookup,
566 .link = simple_link,
567 .unlink = simple_unlink,
568 .symlink = hugetlbfs_symlink,
569 .mkdir = hugetlbfs_mkdir,
570 .rmdir = simple_rmdir,
571 .mknod = hugetlbfs_mknod,
572 .rename = simple_rename,
573 .setattr = hugetlbfs_setattr,
574};
575
92e1d5be 576static const struct inode_operations hugetlbfs_inode_operations = {
1da177e4
LT
577 .setattr = hugetlbfs_setattr,
578};
579
ee9b6d61 580static const struct super_operations hugetlbfs_ops = {
1da177e4
LT
581 .alloc_inode = hugetlbfs_alloc_inode,
582 .destroy_inode = hugetlbfs_destroy_inode,
583 .statfs = hugetlbfs_statfs,
149f4211 584 .delete_inode = hugetlbfs_delete_inode,
1da177e4
LT
585 .drop_inode = hugetlbfs_drop_inode,
586 .put_super = hugetlbfs_put_super,
587};
588
589static int
590hugetlbfs_parse_options(char *options, struct hugetlbfs_config *pconfig)
591{
592 char *opt, *value, *rest;
593
594 if (!options)
595 return 0;
596 while ((opt = strsep(&options, ",")) != NULL) {
597 if (!*opt)
598 continue;
599
600 value = strchr(opt, '=');
601 if (!value || !*value)
602 return -EINVAL;
603 else
604 *value++ = '\0';
605
606 if (!strcmp(opt, "uid"))
607 pconfig->uid = simple_strtoul(value, &value, 0);
608 else if (!strcmp(opt, "gid"))
609 pconfig->gid = simple_strtoul(value, &value, 0);
610 else if (!strcmp(opt, "mode"))
611 pconfig->mode = simple_strtoul(value,&value,0) & 0777U;
612 else if (!strcmp(opt, "size")) {
613 unsigned long long size = memparse(value, &rest);
614 if (*rest == '%') {
615 size <<= HPAGE_SHIFT;
616 size *= max_huge_pages;
617 do_div(size, 100);
618 rest++;
619 }
1da177e4
LT
620 pconfig->nr_blocks = (size >> HPAGE_SHIFT);
621 value = rest;
622 } else if (!strcmp(opt,"nr_inodes")) {
623 pconfig->nr_inodes = memparse(value, &rest);
624 value = rest;
625 } else
626 return -EINVAL;
627
628 if (*value)
629 return -EINVAL;
630 }
631 return 0;
632}
633
634static int
635hugetlbfs_fill_super(struct super_block *sb, void *data, int silent)
636{
637 struct inode * inode;
638 struct dentry * root;
639 int ret;
640 struct hugetlbfs_config config;
641 struct hugetlbfs_sb_info *sbinfo;
642
643 config.nr_blocks = -1; /* No limit on size by default */
644 config.nr_inodes = -1; /* No limit on number of inodes by default */
645 config.uid = current->fsuid;
646 config.gid = current->fsgid;
647 config.mode = 0755;
648 ret = hugetlbfs_parse_options(data, &config);
649
650 if (ret)
651 return ret;
652
653 sbinfo = kmalloc(sizeof(struct hugetlbfs_sb_info), GFP_KERNEL);
654 if (!sbinfo)
655 return -ENOMEM;
656 sb->s_fs_info = sbinfo;
657 spin_lock_init(&sbinfo->stat_lock);
658 sbinfo->max_blocks = config.nr_blocks;
659 sbinfo->free_blocks = config.nr_blocks;
660 sbinfo->max_inodes = config.nr_inodes;
661 sbinfo->free_inodes = config.nr_inodes;
662 sb->s_maxbytes = MAX_LFS_FILESIZE;
663 sb->s_blocksize = HPAGE_SIZE;
664 sb->s_blocksize_bits = HPAGE_SHIFT;
665 sb->s_magic = HUGETLBFS_MAGIC;
666 sb->s_op = &hugetlbfs_ops;
667 sb->s_time_gran = 1;
668 inode = hugetlbfs_get_inode(sb, config.uid, config.gid,
669 S_IFDIR | config.mode, 0);
670 if (!inode)
671 goto out_free;
672
673 root = d_alloc_root(inode);
674 if (!root) {
675 iput(inode);
676 goto out_free;
677 }
678 sb->s_root = root;
679 return 0;
680out_free:
681 kfree(sbinfo);
682 return -ENOMEM;
683}
684
685int hugetlb_get_quota(struct address_space *mapping)
686{
687 int ret = 0;
688 struct hugetlbfs_sb_info *sbinfo = HUGETLBFS_SB(mapping->host->i_sb);
689
690 if (sbinfo->free_blocks > -1) {
691 spin_lock(&sbinfo->stat_lock);
692 if (sbinfo->free_blocks > 0)
693 sbinfo->free_blocks--;
694 else
695 ret = -ENOMEM;
696 spin_unlock(&sbinfo->stat_lock);
697 }
698
699 return ret;
700}
701
702void hugetlb_put_quota(struct address_space *mapping)
703{
704 struct hugetlbfs_sb_info *sbinfo = HUGETLBFS_SB(mapping->host->i_sb);
705
706 if (sbinfo->free_blocks > -1) {
707 spin_lock(&sbinfo->stat_lock);
708 sbinfo->free_blocks++;
709 spin_unlock(&sbinfo->stat_lock);
710 }
711}
712
454e2398
DH
713static int hugetlbfs_get_sb(struct file_system_type *fs_type,
714 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
1da177e4 715{
454e2398 716 return get_sb_nodev(fs_type, flags, data, hugetlbfs_fill_super, mnt);
1da177e4
LT
717}
718
719static struct file_system_type hugetlbfs_fs_type = {
720 .name = "hugetlbfs",
721 .get_sb = hugetlbfs_get_sb,
722 .kill_sb = kill_litter_super,
723};
724
725static struct vfsmount *hugetlbfs_vfsmount;
726
1da177e4
LT
727static int can_do_hugetlb_shm(void)
728{
729 return likely(capable(CAP_IPC_LOCK) ||
730 in_group_p(sysctl_hugetlb_shm_group) ||
731 can_do_mlock());
732}
733
734struct file *hugetlb_zero_setup(size_t size)
735{
736 int error = -ENOMEM;
737 struct file *file;
738 struct inode *inode;
739 struct dentry *dentry, *root;
740 struct qstr quick_string;
741 char buf[16];
bba1e9b2 742 static atomic_t counter;
1da177e4
LT
743
744 if (!can_do_hugetlb_shm())
745 return ERR_PTR(-EPERM);
746
1da177e4
LT
747 if (!user_shm_lock(size, current->user))
748 return ERR_PTR(-ENOMEM);
749
750 root = hugetlbfs_vfsmount->mnt_root;
bba1e9b2 751 snprintf(buf, 16, "%u", atomic_inc_return(&counter));
1da177e4
LT
752 quick_string.name = buf;
753 quick_string.len = strlen(quick_string.name);
754 quick_string.hash = 0;
755 dentry = d_alloc(root, &quick_string);
756 if (!dentry)
757 goto out_shm_unlock;
758
759 error = -ENFILE;
760 file = get_empty_filp();
761 if (!file)
762 goto out_dentry;
763
764 error = -ENOSPC;
765 inode = hugetlbfs_get_inode(root->d_sb, current->fsuid,
766 current->fsgid, S_IFREG | S_IRWXUGO, 0);
767 if (!inode)
768 goto out_file;
769
b45b5bd6 770 error = -ENOMEM;
a43a8c39 771 if (hugetlb_reserve_pages(inode, 0, size >> HPAGE_SHIFT))
b45b5bd6
DG
772 goto out_inode;
773
1da177e4
LT
774 d_instantiate(dentry, inode);
775 inode->i_size = size;
776 inode->i_nlink = 0;
b39424e2
JS
777 file->f_path.mnt = mntget(hugetlbfs_vfsmount);
778 file->f_path.dentry = dentry;
1da177e4
LT
779 file->f_mapping = inode->i_mapping;
780 file->f_op = &hugetlbfs_file_operations;
781 file->f_mode = FMODE_WRITE | FMODE_READ;
782 return file;
783
b45b5bd6
DG
784out_inode:
785 iput(inode);
1da177e4
LT
786out_file:
787 put_filp(file);
788out_dentry:
789 dput(dentry);
790out_shm_unlock:
791 user_shm_unlock(size, current->user);
792 return ERR_PTR(error);
793}
794
795static int __init init_hugetlbfs_fs(void)
796{
797 int error;
798 struct vfsmount *vfsmount;
799
800 hugetlbfs_inode_cachep = kmem_cache_create("hugetlbfs_inode_cache",
801 sizeof(struct hugetlbfs_inode_info),
802 0, 0, init_once, NULL);
803 if (hugetlbfs_inode_cachep == NULL)
804 return -ENOMEM;
805
806 error = register_filesystem(&hugetlbfs_fs_type);
807 if (error)
808 goto out;
809
810 vfsmount = kern_mount(&hugetlbfs_fs_type);
811
812 if (!IS_ERR(vfsmount)) {
813 hugetlbfs_vfsmount = vfsmount;
814 return 0;
815 }
816
817 error = PTR_ERR(vfsmount);
818
819 out:
820 if (error)
821 kmem_cache_destroy(hugetlbfs_inode_cachep);
822 return error;
823}
824
825static void __exit exit_hugetlbfs_fs(void)
826{
827 kmem_cache_destroy(hugetlbfs_inode_cachep);
828 unregister_filesystem(&hugetlbfs_fs_type);
829}
830
831module_init(init_hugetlbfs_fs)
832module_exit(exit_hugetlbfs_fs)
833
834MODULE_LICENSE("GPL");