/usr/include/proftpd/mod_quotatab.h is in proftpd-dev 1.3.5~rc3-2.1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 | /*
* ProFTPD: mod_quotatab -- a module for managing FTP byte/file quotas via
* centralized tables
*
* Copyright (c) 2001-2012 TJ Saunders
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA.
*
* As a special exemption, TJ Saunders and other respective copyright holders
* give permission to link this program with OpenSSL, and distribute the
* resulting executable, without including the source code for OpenSSL in the
* source distribution.
*
* This is mod_quotatab, contrib software for proftpd 1.2/1.3.x and above.
* For more information contact TJ Saunders <tj@castaglia.org>. It is based
* the ideas in Eric Estabrook's mod_quota, available from
* ftp://pooh.urbanrage.com/pub/c/. This module, however, has been written
* from scratch to implement quotas in a different way.
*
* $Id: mod_quotatab.h,v 1.13 2012/03/31 00:35:43 castaglia Exp $
*/
#ifndef MOD_QUOTATAB_H
#define MOD_QUOTATAB_H
#include "conf.h"
#include "privs.h"
#define MOD_QUOTATAB_VERSION "mod_quotatab/1.3.1"
/* Make sure the version of proftpd is as necessary. */
#if PROFTPD_VERSION_NUMBER < 0x0001030001
# error "ProFTPD 1.3.0rc1 or later required"
#endif
/* Quota types */
typedef enum {
ALL_QUOTA = 10,
USER_QUOTA = 20,
GROUP_QUOTA = 30,
CLASS_QUOTA = 40
} quota_type_t;
/* Bytes quota limit types */
typedef enum {
HARD_LIMIT = 1,
SOFT_LIMIT = 2
} quota_limit_type_t;
/* Quota objects */
typedef struct {
char name[81];
/* name refers to user, group, or class */
quota_type_t quota_type;
/* are quotas enforced per session or not? */
unsigned char quota_per_session;
/* are byte quotas hard or soft? */
quota_limit_type_t quota_limit_type;
/* Configured bytes limits. */
double bytes_in_avail;
double bytes_out_avail;
double bytes_xfer_avail;
/* Configured files limits. These have no "limit type", as they are
* always hard.
*/
unsigned int files_in_avail;
unsigned int files_out_avail;
unsigned int files_xfer_avail;
} quota_limit_t;
typedef struct {
char name[81];
quota_type_t quota_type;
/* Current bytes tallies. */
double bytes_in_used;
double bytes_out_used;
double bytes_xfer_used;
/* Current files tallies. */
unsigned int files_in_used;
unsigned int files_out_used;
unsigned int files_xfer_used;
} quota_tally_t;
/* Quota table type (ie limit or tally) */
typedef enum {
TYPE_LIMIT = 100,
TYPE_TALLY
} quota_tabtype_t;
/* Quota display units */
typedef enum {
BYTE = 10,
KILO,
MEGA,
GIGA
} quota_units_t;
typedef enum {
IN = 100,
OUT,
XFER,
} quota_xfer_t;
/* Quota deltas -- used to mark the changes in tallies per-operation.
* This structure is useful for submodules (eg mod_quotatab_sql) that are
* more interested in the deltas, rather than in the current tallies.
*/
typedef struct {
/* Deltas of bytes tallies. */
double bytes_in_delta;
double bytes_out_delta;
double bytes_xfer_delta;
/* Deltas of files tallies. */
int files_in_delta;
int files_out_delta;
int files_xfer_delta;
} quota_deltas_t;
typedef struct table_obj {
/* Memory pool for this object */
pool *tab_pool;
/* Table type, limit or tally */
quota_tabtype_t tab_type;
/* Table handle */
int tab_handle;
/* Table "magic" number */
unsigned int tab_magic;
/* Table record length */
unsigned int tab_quotalen;
/* Arbitrary data pointer */
void *tab_data;
/* Table I/O routines */
int (*tab_close)(struct table_obj *);
int (*tab_create)(struct table_obj *, void *);
unsigned char (*tab_lookup)(struct table_obj *, void *, const char *,
quota_type_t);
int (*tab_read)(struct table_obj *, void *);
unsigned char (*tab_verify)(struct table_obj *);
int (*tab_write)(struct table_obj *, void *);
/* Table locking routines */
struct flock tab_lock;
int tab_lockfd;
int (*tab_rlock)(struct table_obj *);
int (*tab_unlock)(struct table_obj *);
int (*tab_wlock)(struct table_obj *);
/* Table locking counters */
unsigned int rlock_count;
unsigned int wlock_count;
} quota_table_t;
#define QUOTATAB_LIMIT_SRC 0x0001
#define QUOTATAB_TALLY_SRC 0x0002
/* Quota objects for the current session. */
quota_deltas_t quotatab_deltas;
/* Function prototypes necessary for quotatab sub-modules */
int quotatab_log(const char *, ...)
#ifdef __GNUC__
__attribute__ ((format (printf, 1, 2)));
#else
;
#endif
int quotatab_openlog(void);
int quotatab_register_backend(const char *,
quota_table_t *(*tab_open)(pool *, quota_tabtype_t, const char *),
unsigned int);
int quotatab_unregister_backend(const char *, unsigned int);
/* Function prototypes necessary for consumers of quotatab data. */
/* Note: this function will only find the first occurrence of the given
* name and type in the table. This means that if there is a malformed
* quota table, with duplicate name/type pairs, the duplicates will be
* ignored. Returns TRUE if found, FALSE otherwise.
*/
unsigned char quotatab_lookup(quota_tabtype_t, void *, const char *,
quota_type_t);
/* Reads via this function are only ever done on tally tables. Limit tables
* are read via the quotatab_lookup function. Returns 0 on success,
* -1 on failure (with errno set appropriately).
*/
int quotatab_read(quota_tally_t *);
/* Writes via this function are only ever done on tally tables. Returns 0
* on success, -1 on failure (with errno set appropriately).
*/
int quotatab_write(quota_tally_t *, double, double, double, int, int, int);
#endif /* no MOD_QUOTATAB_H */
|