blob: 21ada332d55571021bda02fb55be74da43952388 [file] [log] [blame]
Thomas Gleixner7336d0e2019-05-31 01:09:56 -07001/* SPDX-License-Identifier: GPL-2.0-only */
David Teiglandb3b94fa2006-01-16 16:50:04 +00002/*
3 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04004 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00005 */
6
7#ifndef __QUOTA_DOT_H__
8#define __QUOTA_DOT_H__
9
Steven Whitehouse2147dbf2013-11-04 10:15:08 +000010#include <linux/list_lru.h>
11
Steven Whitehousef2f7ba52006-09-05 10:39:21 -040012struct gfs2_inode;
13struct gfs2_sbd;
14
Eric W. Biedermanf4108a62013-01-31 17:49:26 -080015#define NO_UID_QUOTA_CHANGE INVALID_UID
16#define NO_GID_QUOTA_CHANGE INVALID_GID
David Teiglandb3b94fa2006-01-16 16:50:04 +000017
Bob Peterson2fba46a2020-02-27 12:47:53 -060018extern int gfs2_qa_get(struct gfs2_inode *ip);
19extern void gfs2_qa_put(struct gfs2_inode *ip);
Eric W. Biederman7c06b5d2013-01-31 20:27:54 -080020extern int gfs2_quota_hold(struct gfs2_inode *ip, kuid_t uid, kgid_t gid);
Steven Whitehouse9ac1b4d2008-11-19 10:08:22 +000021extern void gfs2_quota_unhold(struct gfs2_inode *ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +000022
Eric W. Biederman7c06b5d2013-01-31 20:27:54 -080023extern int gfs2_quota_lock(struct gfs2_inode *ip, kuid_t uid, kgid_t gid);
Steven Whitehouse9ac1b4d2008-11-19 10:08:22 +000024extern void gfs2_quota_unlock(struct gfs2_inode *ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +000025
Abhi Dasb8fbf472015-03-18 12:03:41 -050026extern int gfs2_quota_check(struct gfs2_inode *ip, kuid_t uid, kgid_t gid,
27 struct gfs2_alloc_parms *ap);
Steven Whitehouse9ac1b4d2008-11-19 10:08:22 +000028extern void gfs2_quota_change(struct gfs2_inode *ip, s64 change,
Eric W. Biederman7c06b5d2013-01-31 20:27:54 -080029 kuid_t uid, kgid_t gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +000030
Jan Karaceed1722012-07-03 16:45:28 +020031extern int gfs2_quota_sync(struct super_block *sb, int type);
Eric W. Biedermaned87dab2013-01-31 19:42:40 -080032extern int gfs2_quota_refresh(struct gfs2_sbd *sdp, struct kqid qid);
David Teiglandb3b94fa2006-01-16 16:50:04 +000033
Steven Whitehouse9ac1b4d2008-11-19 10:08:22 +000034extern int gfs2_quota_init(struct gfs2_sbd *sdp);
35extern void gfs2_quota_cleanup(struct gfs2_sbd *sdp);
36extern int gfs2_quotad(void *data);
David Teiglandb3b94fa2006-01-16 16:50:04 +000037
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -050038extern void gfs2_wake_up_statfs(struct gfs2_sbd *sdp);
39
Abhi Dasb8fbf472015-03-18 12:03:41 -050040static inline int gfs2_quota_lock_check(struct gfs2_inode *ip,
41 struct gfs2_alloc_parms *ap)
Steven Whitehoused82661d2008-03-10 15:34:50 +000042{
43 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
44 int ret;
Andreas Gruenbacher174d1232018-02-20 08:03:24 -070045
46 ap->allowed = UINT_MAX; /* Assume we are permitted a whole lot */
Bob Peterson4ed0c302020-05-05 11:53:21 -050047 if (capable(CAP_SYS_RESOURCE) ||
48 sdp->sd_args.ar_quota == GFS2_QUOTA_OFF)
Steven Whitehoused82661d2008-03-10 15:34:50 +000049 return 0;
Eric W. Biedermanf4108a62013-01-31 17:49:26 -080050 ret = gfs2_quota_lock(ip, NO_UID_QUOTA_CHANGE, NO_GID_QUOTA_CHANGE);
Steven Whitehoused82661d2008-03-10 15:34:50 +000051 if (ret)
52 return ret;
53 if (sdp->sd_args.ar_quota != GFS2_QUOTA_ON)
54 return 0;
Abhi Dasb8fbf472015-03-18 12:03:41 -050055 ret = gfs2_quota_check(ip, ip->i_inode.i_uid, ip->i_inode.i_gid, ap);
Steven Whitehoused82661d2008-03-10 15:34:50 +000056 if (ret)
57 gfs2_quota_unlock(ip);
58 return ret;
59}
60
Steven Whitehousecc632e72009-09-15 09:59:02 +010061extern const struct quotactl_ops gfs2_quotactl_ops;
Steven Whitehouse2147dbf2013-11-04 10:15:08 +000062extern struct shrinker gfs2_qd_shrinker;
63extern struct list_lru gfs2_qd_lru;
Steven Whitehousec754fbb2013-12-12 10:47:59 +000064extern void __init gfs2_quota_hash_init(void);
Abhijith Das0a7ab792009-01-07 16:03:37 -060065
David Teiglandb3b94fa2006-01-16 16:50:04 +000066#endif /* __QUOTA_DOT_H__ */