/usr/share/perl5/Argonaut/Libraries/Quota.pm is in argonaut-quota 0.9.2-1.
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 | #######################################################################
#
# Argonaut::Libraries::Quota packages - get quota from ldap
#
# Copyright (c) 2012-2015 FusionDirectory project
#
# Author: Côme BERNIGAUD
#
# 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 St, Fifth Floor, Boston, MA 02110-1301, USA.
#
#######################################################################
package Argonaut::Libraries::Quota;
use strict;
use warnings;
use 5.008;
use Quota;
use Argonaut::Libraries::Common qw(:ldap);
BEGIN
{
use Exporter ();
use vars qw(@EXPORT_OK @ISA $VERSION);
$VERSION = '2012-04-24';
@ISA = qw(Exporter);
@EXPORT_OK = qw(write_warnquota_file write_quotatab_file get_quota_settings apply_quotas);
}
=head1
Warnquota
Write warnquota and quotatab files
=cut
sub write_warnquota_file {
my ($settings,$warnquota_file) = @_;
open (WARNQUOTA, ">", $warnquota_file) or die "Could not open file $warnquota_file";
# edition of warnquota.conf
print WARNQUOTA "MAIL_CMD = ".$settings->{'mail_cmd'}."\n";
print WARNQUOTA "CC_TO = ".$settings->{'cc_to'}."\n";
print WARNQUOTA "FROM = ".$settings->{'from'}."\n";
print WARNQUOTA "SUBJECT = ".$settings->{'subject'}."\n";
# Support email for assistance (included in generated mail)
print WARNQUOTA "SUPPORT = ".$settings->{'support'}."\n";
# Support phone for assistance (included in generated mail)
# The message to send
print WARNQUOTA "MESSAGE = ".$settings->{'message'}."\n";
# The signature of the mail
print WARNQUOTA "SIGNATURE = ".$settings->{'signature'}."\n";
# character set the email is to be send in
print WARNQUOTA "CHARSET = ".$settings->{'charset'}."\n";
# add LDAP support
print WARNQUOTA "LDAP_MAIL = true"."\n";
print WARNQUOTA "LDAP_SEARCH_ATTRIBUTE = ".$settings->{'ldap_searchattribute'}."\n";
print WARNQUOTA "LDAP_MAIL_ATTRIBUTE = mail\n";
print WARNQUOTA "LDAP_BASEDN = ".$settings->{'ldap_basedn'}."\n";
print WARNQUOTA "LDAP_HOST = ".$settings->{'ldap_host'}."\n";
print WARNQUOTA "LDAP_PORT = ".$settings->{'ldap_port'}."\n";
print WARNQUOTA "LDAP_USER_DN = ".$settings->{'ldap_userdn'}."\n";
print WARNQUOTA "LDAP_PASSWORD = ".$settings->{'ldap_userpwd'}."\n";
# end of warnquota.conf
}
sub write_quotatab_file {
my ($settings,$quotatab_file) = @_;
open (QUOTATAB, ">", $quotatab_file) or die "Could not open file $quotatab_file";
# Begin of quota tab edition
my @quotaDeviceParameters = @{$settings->{'device_parameters'}};
if ($#quotaDeviceParameters >= 0) {
foreach (@quotaDeviceParameters) {
my @quotaDeviceParameter = split /:/;
print QUOTATAB $quotaDeviceParameter[0].":".$quotaDeviceParameter[2]."\n";
}
}
# end of quota tab edition
}
sub get_quota_settings {
my ($config,$filter,$inheritance) = @_;
my $settings = argonaut_get_generic_settings(
'quotaService',
{
'hostname' => 'cn',
'mail_cmd' => "quotaMailCommand",
'cc_to' => "quotaCarbonCopyMail",
'from' => "quotaMsgFromSupport",
'subject' => "quotaMsgSubjectSupport",
'support' => "quotaMsgContactSupport",
'message' => "quotaMsgContentSupport",
'signature' => "quotaMsgSignatureSupport",
'charset' => "quotaMsgCharsetSupport",
'ldap_searchattribute' => "quotaLdapSearchIdAttribute",
'ldap_userdn' => "quotaLdapServerUserDn",
'ldap_userpwd' => 'quotaLdapServerUserPassword',
'ldap_dn' => 'quotaLdapServer',
'device_parameters' => ['quotaDeviceParameters', asref => 1],
},
$config,$filter,$inheritance
);
my ($ldap,$ldap_base) = argonaut_ldap_handle($config);
my $mesg = $ldap->search( # perform a search
base => $settings->{'ldap_dn'},
scope => 'base',
filter => "(objectClass=goLdapServer)",
attrs => ['goLdapBase','goLdapURI']
);
if ($mesg->count <= 0) {
die "Could not found LDAP server ".$settings->{'ldap_dn'}."\n";
}
my $uri = URI->new(($mesg->entries)[0]->get_value('goLdapURI'));
$settings->{'ldap_basedn'} = ($mesg->entries)[0]->get_value('goLdapBase');
$settings->{'ldap_host'} = $uri->host;
$settings->{'ldap_port'} = $uri->port;
return $settings;
}
sub apply_quotas {
my ($config,$hostname) = @_;
my ($ldap,$ldap_base) = argonaut_ldap_handle($config);
my $mesg = $ldap->search( # perform a search
base => $ldap_base,
filter => "(objectClass=systemQuotas)",
attrs => ['quota','uid','uidNumber','gidNumber']
);
foreach my $entry ($mesg->entries) {
my $uid = $entry->get_value("uidNumber");
my $gid = $entry->get_value("gidNumber");
my $isUser = (defined $entry->get_value("uid"));
my @quotas = $entry->get_value("quota");
foreach my $quota (@quotas) {
my ($dev,$blocksoft,$blockhard,$inodesoft,$inodehard,$server,$adminlist) = split (':',$quota);
if ($server eq $hostname) {
if ($isUser) {
print "applying quota ($blocksoft, $blockhard, $inodesoft, $inodehard) on $dev for uid $uid\n";
Quota::setqlim($dev, $uid, $blocksoft,$blockhard, $inodesoft,$inodehard);
} else {
print "applying quota ($blocksoft, $blockhard, $inodesoft, $inodehard) on $dev for gid $gid\n";
Quota::setqlim($dev, $gid, $blocksoft, $blockhard, $inodesoft, $inodehard, 0, 1);
}
}
}
}
Quota::sync();
}
END {}
1;
__END__
|