xref: /netbsd/lib/libquota/quotapvt.h (revision f38061f1)
1*f38061f1Sdholland /*	$NetBSD: quotapvt.h,v 1.7 2012/01/09 15:43:19 dholland Exp $	*/
25a065375Sdholland /*-
35a065375Sdholland  * Copyright (c) 2011 The NetBSD Foundation, Inc.
45a065375Sdholland  * All rights reserved.
55a065375Sdholland  *
65a065375Sdholland  * This code is derived from software contributed to The NetBSD Foundation
75a065375Sdholland  * by David A. Holland.
85a065375Sdholland  *
95a065375Sdholland  * Redistribution and use in source and binary forms, with or without
105a065375Sdholland  * modification, are permitted provided that the following conditions
115a065375Sdholland  * are met:
125a065375Sdholland  * 1. Redistributions of source code must retain the above copyright
135a065375Sdholland  *    notice, this list of conditions and the following disclaimer.
145a065375Sdholland  * 2. Redistributions in binary form must reproduce the above copyright
155a065375Sdholland  *    notice, this list of conditions and the following disclaimer in the
165a065375Sdholland  *    documentation and/or other materials provided with the distribution.
175a065375Sdholland  *
185a065375Sdholland  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
195a065375Sdholland  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
205a065375Sdholland  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
215a065375Sdholland  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
225a065375Sdholland  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
235a065375Sdholland  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
245a065375Sdholland  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
255a065375Sdholland  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
265a065375Sdholland  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
275a065375Sdholland  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
285a065375Sdholland  * POSSIBILITY OF SUCH DAMAGE.
295a065375Sdholland  */
305a065375Sdholland 
315a065375Sdholland struct quotahandle {
325a065375Sdholland 	char *qh_mountpoint;
3301237e81Sdholland 	char *qh_mountdevice;
3401237e81Sdholland 	int qh_isnfs;
352b7e44b3Sdholland 
362b7e44b3Sdholland 	/* these are used only by quota_oldfiles */
372b7e44b3Sdholland 	int qh_hasoldfiles;
382b7e44b3Sdholland 	int qh_userfile;
392b7e44b3Sdholland 	int qh_groupfile;
402b7e44b3Sdholland 
412b7e44b3Sdholland 	char spare[14*sizeof(char *) + 12 * sizeof(int)];
425a065375Sdholland };
435a065375Sdholland 
440599112cSdholland struct quotacursor {
450599112cSdholland 	struct quotahandle *qc_qh;
462b7e44b3Sdholland 	enum { QC_PROPLIB, QC_OLDFILES } qc_type;
470599112cSdholland 	union {
480599112cSdholland 		struct proplib_quotacursor *qc_proplib;
492b7e44b3Sdholland 		struct oldfiles_quotacursor *qc_oldfiles;
500599112cSdholland 	} u;
510599112cSdholland };
520599112cSdholland 
530599112cSdholland 
545a065375Sdholland /* proplib kernel interface */
552b7e44b3Sdholland int __quota_proplib_getversion(struct quotahandle *qh, int8_t *version_ret);
56ef4f90bcSdholland const char *__quota_proplib_getimplname(struct quotahandle *);
575a065375Sdholland int __quota_proplib_get(struct quotahandle *qh, const struct quotakey *qk,
585a065375Sdholland 			struct quotaval *qv);
59*f38061f1Sdholland int __quota_proplib_put(struct quotahandle *qh, const struct quotakey *qk,
60*f38061f1Sdholland 			const struct quotaval *qv);
61*f38061f1Sdholland int __quota_proplib_delete(struct quotahandle *qh, const struct quotakey *qk);
620599112cSdholland struct proplib_quotacursor *__quota_proplib_cursor_create(void);
630599112cSdholland void __quota_proplib_cursor_destroy(struct proplib_quotacursor *);
640599112cSdholland int __quota_proplib_cursor_skipidtype(struct proplib_quotacursor *,
650599112cSdholland 				      unsigned idtype);
660599112cSdholland int __quota_proplib_cursor_get(struct quotahandle *,
670599112cSdholland 			       struct proplib_quotacursor *,
680599112cSdholland 			       struct quotakey *, struct quotaval *);
690599112cSdholland int __quota_proplib_cursor_getn(struct quotahandle *,
700599112cSdholland 				struct proplib_quotacursor *,
710599112cSdholland 				struct quotakey *, struct quotaval *,
720599112cSdholland 				unsigned);
730599112cSdholland int __quota_proplib_cursor_atend(struct quotahandle *,
740599112cSdholland 				 struct proplib_quotacursor *);
750599112cSdholland int __quota_proplib_cursor_rewind(struct proplib_quotacursor *);
760599112cSdholland 
7701237e81Sdholland 
7801237e81Sdholland /* nfs rquotad interface */
7901237e81Sdholland int __quota_nfs_get(struct quotahandle *qh, const struct quotakey *qk,
8001237e81Sdholland 		    struct quotaval *qv);
8101237e81Sdholland 
820599112cSdholland 
832b7e44b3Sdholland /* direct interface to old (quota1-type) files */
842b7e44b3Sdholland int __quota_oldfiles_initialize(struct quotahandle *qh);
852b7e44b3Sdholland const char *__quota_oldfiles_getimplname(struct quotahandle *);
862b7e44b3Sdholland int __quota_oldfiles_get(struct quotahandle *qh, const struct quotakey *qk,
872b7e44b3Sdholland 			struct quotaval *qv);
882b7e44b3Sdholland struct oldfiles_quotacursor *
892b7e44b3Sdholland 	__quota_oldfiles_cursor_create(struct quotahandle *);
902b7e44b3Sdholland void __quota_oldfiles_cursor_destroy(struct oldfiles_quotacursor *);
912b7e44b3Sdholland int __quota_oldfiles_cursor_skipidtype(struct oldfiles_quotacursor *,
922b7e44b3Sdholland 				      unsigned idtype);
932b7e44b3Sdholland int __quota_oldfiles_cursor_get(struct quotahandle *,
942b7e44b3Sdholland 			       struct oldfiles_quotacursor *,
952b7e44b3Sdholland 			       struct quotakey *, struct quotaval *);
962b7e44b3Sdholland int __quota_oldfiles_cursor_getn(struct quotahandle *,
972b7e44b3Sdholland 				struct oldfiles_quotacursor *,
982b7e44b3Sdholland 				struct quotakey *, struct quotaval *,
992b7e44b3Sdholland 				unsigned);
1002b7e44b3Sdholland int __quota_oldfiles_cursor_atend(struct oldfiles_quotacursor *);
1012b7e44b3Sdholland int __quota_oldfiles_cursor_rewind(struct oldfiles_quotacursor *);
1022b7e44b3Sdholland 
1032b7e44b3Sdholland 
1045082b605Sdholland /* compat for old library */
1055082b605Sdholland int __quota_getquota(const char *path, struct quotaval *qv, uid_t id,
1065082b605Sdholland 		     const char *class);
1075082b605Sdholland 
108