This file is indexed.

/usr/share/perl5/EBox/Firewall/Model/SNAT.pm is in zentyal-firewall 2.3.9+quantal1.

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
# Copyright (C) 2012 eBox Technologies S.L.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, version 2, as
# published by the Free Software Foundation.
#
# 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

use strict;
use warnings;

package EBox::Firewall::Model::SNAT;
use base 'EBox::Model::DataTable';

use EBox::Global;
use EBox::Gettext;
use EBox::Validate qw(:all);
use EBox::Exceptions::External;

use EBox::Types::Text;
use EBox::Types::Union::Text;
use EBox::Types::Boolean;
use EBox::Types::Select;
use EBox::Types::Port;
use EBox::Types::PortRange;
use EBox::Types::Union;
use EBox::Types::HostIP;
use EBox::Sudo;

sub interfacePopulateSub
{
    my ($self) = @_;
    my $net = $self->global()->modInstance('network');
    return sub {
        my $ifaces = $net->allIfaces();

        my @options;
        foreach my $iface (@{$ifaces}) {
            push(@options, { 'value' => $iface,
                             'printableValue' => $net->ifaceAlias($iface) });
        }

        return \@options;
    }
}

# Method: _fieldDescription
#
#   Return the field description for a firewall redirect table. You have to
#   decided if you need destination, source, or both of them.
#
# Returns:
#
#   Array ref of objects derivated of <EBox::Types::Abstract>
#
sub _fieldDescription
{
    my ($self) = @_;

    my @tableHead;

    my $snat = new EBox::Types::HostIP(
            'fieldName' => 'snat',
            'printableName' => __('SNAT address'),
            'editable' => 1,
            'help' => __()
    );
    push (@tableHead, $snat);

    my $iface = new EBox::Types::Select(
             'fieldName' => 'interface',
             'printableName' => __('Outgoing interface'),
             'populate' => $self->interfacePopulateSub,
             'editable' => 1);
    push (@tableHead, $iface);

    my $source = new EBox::Types::Union(
            'fieldName' => 'source',
            'printableName' => __('Source'),
            'subtypes' =>
            [
            new EBox::Types::Union::Text(
                'fieldName' => 'source_any',
                'printableName' => __('Any')),
            new EBox::Types::IPAddr(
                'fieldName' => 'source_ipaddr',
                'printableName' => __('Source IP'),
                'editable' => 1,),
            new EBox::Types::Select(
                'fieldName' => 'source_object',
                'printableName' => __('Source object'),
                'foreignModel' => $self->modelGetter('objects', 'ObjectTable'),
                'foreignField' => 'name',
                'foreignNextPageField' => 'members',
                'editable' => 1),
            ],
            'unique' => 1,
            'editable' => 1);
    push (@tableHead, $source);

    my $destination = new EBox::Types::Union(
            'fieldName' => 'destination',
            'printableName' => __('Destination'),
            'subtypes' =>
            [
            new EBox::Types::Union::Text(
                'fieldName' => 'destination_any',
                'printableName' => __('Any')),
            new EBox::Types::IPAddr(
                'fieldName' => 'destination_ipaddr',
                'printableName' => __('IP Address'),
                'editable' => 1,),
            new EBox::Types::Select(
                'fieldName' => 'destination_object',
                'printableName' => __('Object'),
                'foreignModel' => $self->modelGetter('objects', 'ObjectTable'),
                'foreignField' => 'name',
                'foreignNextPageField' => 'members',
                'editable' => 1),
            ]);

    push (@tableHead, $destination);

    my $service =  new EBox::Types::InverseMatchSelect(
                'fieldName' => 'service',
                'printableName' => __('Service'),
                'foreignModel' => $self->modelGetter('services', 'ServiceTable'),
                'foreignField' => 'printableName',
                'foreignNextPageField' => 'configuration',
                'editable' => 1,
                'help' => __('If inverse match is ticked, any ' .
                             'service but the selected one will match this rule')

                );
    push (@tableHead, $service);

    my $plog = new EBox::Types::Boolean(
            'fieldName' => 'log',
            'printableName' => __('Log'),
            'editable' => 1,
            'help' => __('Log new forwarded connections'));
    push (@tableHead, $plog);

    my $desc = new EBox::Types::Text(
            'fieldName' => 'description',
            'printableName' => __('Description'),
            'size' => '32',
            'editable' => 1,
            'optional' => 1);
    push (@tableHead, $desc);

    return \@tableHead;
}

sub _table
{
    my ($self) = @_;

    my $dataTable =
    {
        'tableName' => 'SNAT',
        'printableTableName' => __('Source Network Address Translation rules'),
        'pageTitle' => __('SNAT'),
        'automaticRemove' => 1,
        'defaultController' =>
            '/Firewall/Controller/SNAT',
        'defaultActions' =>
            [ 'add', 'del', 'move', 'editField', 'changeView', 'clone',  ],
        'order' => 1,
        'tableDescription' => $self->_fieldDescription(),
        'menuNamespace' => 'Firewall/View/SNAT',
        'printableRowName' => __('SNAT rule'),
    };

    return $dataTable;
}

sub usesIface
{
    my ($self, $iface) = @_;
    my $row = $self->find(interface => $iface);
    return $row ? 1 : 0;
}

sub freeIface
{
    my ($self, $iface) = @_;
    $self->_removeIfaceRules($iface);
}

sub freeViface
{
    my ($self, $iface, $viface) = @_;
    $self->_removeIfaceRules("$iface:$viface");
}

sub _removeIfaceRules
{
    my ($self, $iface) = @_;
    my @idsToRemove = $self->findAll(interface => $iface);
    foreach my $id (@idsToRemove) {
        $self->removeRow($id);
    }
}

1;