This file is indexed.

/usr/share/gosa/plugins/admin/systems/services/class_goService.inc is in gosa-plugin-systems 2.7.4+reloaded2-13+deb9u1.

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
<?php
/*
 * This code is part of GOsa (http://www.gosa-project.org)
 * Copyright (C) 2003-2008 GONICUS GmbH
 *
 * ID: $$Id: class_goService.inc 19118 2010-07-26 15:46:29Z hickert $$
 *
 * 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

class goService extends plugin{

    /* This plugin only writes its objectClass */
    var $objectclasses    = array();
    var $attributes       = array();
    var $StatusFlag       = "";

    /* This class can't be assigned twice so it conflicts with itsself */
    var $conflicts            = array();
    var $dn                   = NULL;
    var $cn                   = "";
    var $DisplayName          = "";
    var $view_logged          = FALSE;

    var $krb_service_prefix   = "";
    var $krb_host_key         = NULL; 

    /* Construcktion */ 
    function __construct(&$config,$dn,$parent = NULL)
    {
        plugin::__construct($config,$dn);
        $this->DisplayName = _("Empty service");
    }


    /* Create content */
    function execute()
    {
        plugin::execute();

        if($this->is_account && !$this->view_logged){
            $this->view_logged = TRUE;
            new log("view","server/".get_class($this),$this->dn);
        }

        $str ="<div style='width:100%; text-align:right;'>".
            "  <input type='submit' name='SaveService' value='".msgPool::saveButton()."'>&nbsp;".
            "  <input type='submit' name='CancelService' value='".msgPool::cancelButton()."'>".
            "</div>";
        return($str);
    }


    /* Get service information for serverService plugin */
    function getListEntry()
    {

        $this->updateStatusState();

        /* Assign status flag */
        if(!empty($this->StatusFlag)){
            $flag                   = $this->StatusFlag;
            $fields['Status']       = $this->$flag;
        }else{
            $fields['Status']       = "";
        }

        /* Name displayed in service overview */
        $fields['Message']      = _("Empty service");

        /* Allow/disallow some functions */
        $sf = !empty($this->StatusFlag);
        $fields['AllowStart']   = $sf && $this->acl_is_writeable("start");
        $fields['AllowStop']    = $sf && $this->acl_is_writeable("stop");
        $fields['AllowRestart'] = $sf && $this->acl_is_writeable("restart");
        $fields['AllowRemove']  = $this->acl_is_removeable();
        $fields['AllowEdit']    = $this->acl_is_readable("");
        return($fields);
    }


    /* Remove service */
    function remove_from_parent()
    {
        if(!$this->initially_was_account || !$this->acl_is_removeable()){
            return;
        }

        plugin::remove_from_parent();

        /* Remove status flag, it is not a memeber of 
           this->attributes, so ensure that it is deleted too */
        if(!empty($this->StatusFlag)){
            $this->attrs[$this->StatusFlag] = array();
        }

        /* Check if this is a new entry ... add/modify */
        $ldap = $this->config->get_ldap_link();
        $ldap->cat($this->dn,array("objectClass"));
        if($ldap->count()){
            $ldap->cd($this->dn);
            $ldap->modify($this->attrs);
        }else{
            $ldap->cd($this->dn);
            $ldap->add($this->attrs);

        }

        new log("remove","server/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());

        if (!$ldap->success()){
            msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, 0, get_class()));
        }
        $this->handle_post_events("remove");
    }


    /* Save service */
    function save()
    {
        plugin::save();
        /* Check if this is a new entry ... add/modify */
        $ldap = $this->config->get_ldap_link();
        $ldap->cat($this->dn,array("objectClass"));
        if($ldap->count()){
            $ldap->cd($this->dn);
            $ldap->modify($this->attrs);
        }else{
            $ldap->cd($this->dn);
            $ldap->add($this->attrs);
        }
        if($this->initially_was_account){
            new log("modify","server/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
            $this->handle_post_events("modify");
        }else{
            $this->handle_post_events("add");
            new log("create","server/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
        }
        if (!$ldap->success()){
            msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, 0, get_class()));
        }
    }


    /* Directly save new status flag */
    function setStatus($value)
    {
        if($value == "none") return;

        /* Can't set status flag for new services (Object doesn't exists in ldap tree) */
        if(!$this->initially_was_account) return;

        /* Can't set status flag, if no flag is specified  */
        if(empty($this->StatusFlag)){
            return;
        }

        /* Get object (server), update status flag and save changes */
        $ldap = $this->config->get_ldap_link();
        $ldap->cd($this->dn);
        $ldap->cat($this->dn,array("objectClass"));
        if($ldap->count()){

            $tmp = $ldap->fetch();
            for($i = 0; $i < $tmp['objectClass']['count']; $i ++){
                $attrs['objectClass'][] = $tmp['objectClass'][$i];
            }
            $flag = $this->StatusFlag;
            $attrs[$flag] = $value;
            $this->$flag = $value;
            $ldap->modify($attrs);
            if (!$ldap->success()){
                msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, LDAP_MOD, get_class()));
            }
            $this->action_hook();
        }
    }


    function check()
    { 
        $message = plugin::check();
        return($message);
    }


    function save_object()
    {
        plugin::save_object();
    }  


    function action_hook($addAttrs= array())
    {
        $this->callHook('SERVICEACTIONHOOK', $addAttrs);
    }


    /* Get updates for status flag */
    function updateStatusState()
    {
        if(empty($this->StatusFlag)) return;

        $attrs = array();
        $flag = $this->StatusFlag;
        $ldap = $this->config->get_ldap_link();
        $ldap->cd($this->cn);
        $ldap->cat($this->dn,array($flag));
        if($ldap->count()){
            $attrs = $ldap->fetch();
        }
        if(isset($attrs[$flag][0])){
            $this->$flag = $attrs[$flag][0];
        }
    }
}
// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
?>