-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path600-jailkit_maintenance.inc.php
More file actions
182 lines (146 loc) · 8.58 KB
/
600-jailkit_maintenance.inc.php
File metadata and controls
182 lines (146 loc) · 8.58 KB
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
<?php
/*
Copyright (c) 2020, Jesse Norell <jesse@kci.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of ISPConfig nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
class cronjob_jailkit_maintenance extends cronjob {
// job schedule
protected $_schedule = '*/5 * * * *';
protected $_run_at_new = true;
public function onRunJob() {
global $app, $conf;
$jailkit_config = $app->getconf->get_server_config($conf['server_id'], 'jailkit');
if(isset($this->jailkit_config) && isset($this->jailkit_config['jailkit_hardlinks'])) {
if($this->jailkit_config['jailkit_hardlinks'] == 'yes') {
$global_options = array('hardlink');
} elseif($this->jailkit_config['jailkit_hardlinks'] == 'no') {
$global_options = array();
}
} else {
$global_options = array('allow_hardlink');
}
// force all jails to update every 2 weeks
if(!is_file('/usr/local/ispconfig/server/temp/jailkit_force_update.ts')) {
if(!@is_dir('/usr/local/ispconfig/server/temp')) {
$app->system->mkdirpath('/usr/local/ispconfig/server/temp');
}
$app->system->touch('/usr/local/ispconfig/server/temp/jailkit_force_update.ts');
} elseif(time() - filemtime('/usr/local/ispconfig/server/temp/jailkit_force_update.ts') > 60 * 60 * 24 * 14) {
$update_hash = 'force_update'.time();
$app->db->query("UPDATE web_domain SET last_jailkit_hash = ? WHERE type = 'vhost' AND server_id = ?", $update_hash, $conf['server_id']);
$app->system->touch('/usr/local/ispconfig/server/temp/jailkit_force_update.ts');
}
// limit the number of jails we update at one time according to time of day
$num_jails_to_update = (date('H') < 6) ? 25 : 3;
$sql = "SELECT domain_id, domain, document_root, system_user, system_group, php_fpm_chroot, jailkit_chroot_app_sections, jailkit_chroot_app_programs, delete_unused_jailkit, last_jailkit_hash, `php_cli_binary`, server_php.php_jk_section
FROM web_domain
LEFT JOIN server_php ON web_domain.server_php_id = server_php.server_php_id
WHERE type = 'vhost' AND (last_jailkit_update IS NULL OR last_jailkit_update < (NOW() - INTERVAL 24 HOUR)) AND web_domain.server_id = ?
ORDER by last_jailkit_update
LIMIT ?";
$records = $app->db->queryAllRecords($sql, $conf['server_id'], $num_jails_to_update);
foreach($records as $rec) {
if (!is_dir($rec['document_root']) || !is_dir($rec['document_root'].'/etc/jailkit')) {
$app->db->query("UPDATE `web_domain` SET `last_jailkit_update` = NOW() WHERE `document_root` = ?", $rec['document_root']);
continue;
}
$options = $global_options;
$options['domain'] = $rec['domain'];
if(empty($rec['php_cli_binary'])) {
$options['php_cli_binary'] = "/usr/bin/php";
} else {
$options['php_cli_binary'] = $rec['php_cli_binary'];
}
$shelluser_list = $app->db->queryAllRecords("SELECT * FROM shell_user WHERE parent_domain_id = ? and chroot = 'jailkit' and active = 'y'", $rec['domain_id']);
if(is_array($shelluser_list) && !empty($shelluser_list)) {
$options['jk_php_maintenance_check'] = "yes";
$options['homedir_usernames'] = array();
foreach($shelluser_list as $shelluser) {
$options['homedir_usernames'][] = $shelluser['username'];
}
} else {
$options['jk_php_maintenance_check'] = "no";
}
//$app->log('Beginning jailkit maintenance for domain '.$rec['domain'].' at '.$rec['document_root'], LOGLEVEL_DEBUG);
print 'Beginning jailkit maintenance for domain '.$rec['domain'].' at '.$rec['document_root']."\n";
// check for any shell_user using this jail
$shell_user_inuse = $app->db->queryOneRecord('SELECT shell_user_id FROM `shell_user` WHERE `parent_domain_id` = ? AND `chroot` = ? AND `server_id` = ?', $rec['domain_id'], 'jailkit', $conf['server_id']);
// check for any cron job using this jail
$cron_inuse = $app->db->queryOneRecord('SELECT id FROM `cron` WHERE `parent_domain_id` = ? AND `type` = ? AND `server_id` = ?', $rec['domain_id'], 'chrooted', $conf['server_id']);
$records2 = $app->db->queryAllRecords('SELECT web_folder FROM `web_domain` WHERE `parent_domain_id` = ? AND `document_root` = ? AND web_folder != \'\' AND web_folder IS NOT NULL AND `server_id` = ?', $rec['domain_id'], $rec['document_root'], $conf['server_id']);
foreach ($records2 as $record2) {
if ($record2['web_folder'] == NULL || $record2['web_folder'] == '') {
continue;
}
$options[] = 'skip='.$record2['web_folder'];
}
if ($shell_user_inuse || $cron_inuse || $rec['php_fpm_chroot'] == 'y' || $rec['delete_unused_jailkit'] != 'y') {
$sections = $jailkit_config['jailkit_chroot_app_sections'];
if (isset($rec['jailkit_chroot_app_sections']) && $rec['jailkit_chroot_app_sections'] != '') {
$sections = $rec['jailkit_chroot_app_sections'];
}
$programs = $jailkit_config['jailkit_chroot_app_programs'];
if (isset($rec['jailkit_chroot_app_programs']) && $rec['jailkit_chroot_app_programs'] != '') {
$programs = $rec['jailkit_chroot_app_programs'];
}
$programs .= ' '.$jailkit_config['jailkit_chroot_cron_programs'];
if (isset($rec['php_jk_section']) && $rec['php_jk_section'] != '') {
$sections .= ' '.$rec['php_jk_section'];
}
$last_updated = preg_split('/[\s,]+/', $sections.' '.$programs);
$last_updated = array_unique($last_updated, SORT_REGULAR);
sort($last_updated, SORT_STRING);
$update_hash = hash('md5', implode(' ', $last_updated));
if (isset($rec['last_jailkit_hash']) && substr($rec['last_jailkit_hash'], 0, strlen('force_update')) === 'force_update') {
$options[] = 'force';
} elseif (is_file( $rec['document_root']."/bin/bash" )) {
# test that /bin/bash functions in the jail
$app->system->exec_safe("chroot --userspec ?:? ? /bin/bash -c true 2>/dev/null", $rec['system_user'], $rec['system_group'], $rec['document_root']);
if ($app->system->last_exec_retcode()) { # return 0 means success
$options[] = 'force';
# bogus hash will not match, triggering an update
$update_hash = 'force_update'.time();
}
}
if ($update_hash != $rec['last_jailkit_hash']) {
$app->system->web_folder_protection($rec['document_root'], false);
$app->system->update_jailkit_chroot($rec['document_root'], $sections, $programs, $options);
$app->system->web_folder_protection($rec['document_root'], true);
$app->db->query("UPDATE `web_domain` SET `last_jailkit_update` = NOW(), `last_jailkit_hash` = ? WHERE `document_root` = ?", $update_hash, $rec['document_root']);
} else {
$app->db->query("UPDATE `web_domain` SET `last_jailkit_update` = NOW() WHERE `document_root` = ?", $rec['document_root']);
}
} elseif ($rec['delete_unused_jailkit'] == 'y') {
//$app->log('Removing unused jail: '.$rec['document_root'], LOGLEVEL_DEBUG);
print 'Removing unused jail: '.$rec['document_root']."\n";
$app->system->web_folder_protection($rec['document_root'], false);
$app->system->delete_jailkit_chroot($rec['document_root'], $options);
$app->system->web_folder_protection($rec['document_root'], true);
$app->db->query("UPDATE `web_domain` SET `last_jailkit_update` = NOW(), `last_jailkit_hash` = NULL WHERE `document_root` = ?", $rec['document_root']);
} else {
$app->db->query("UPDATE `web_domain` SET `last_jailkit_update` = NOW() WHERE `document_root` = ?", $rec['document_root']);
}
}
parent::onRunJob();
}
}