-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
pkg-utils.inc
1621 lines (1400 loc) · 42.2 KB
/
pkg-utils.inc
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/*
* pkg-utils.inc
*
* part of pfSense (https://www.pfsense.org)
* Copyright (c) 2005-2006 Colin Smith (ethethlay@gmail.com)
* Copyright (c) 2004-2013 BSD Perimeter
* Copyright (c) 2013-2016 Electric Sheep Fencing
* Copyright (c) 2014-2024 Rubicon Communications, LLC (Netgate)
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
require_once("globals.inc");
require_once("service-utils.inc");
require_once("/usr/local/www/includes/functions.inc.php");
require_once("xmlparse.inc");
require_once("pfsense-utils.inc");
if (!function_exists("pkg_debug")) {
/* set up logging if needed */
function pkg_debug($msg) {
global $g, $debug, $fd_log;
if (!$debug) {
return;
}
if (!$fd_log) {
$fd_log = fopen("{$g['tmp_path']}/pkg_mgr_debug.log",
"w");
}
if (!$fd_log) {
update_status(gettext("Warning, could not open log " .
"for writing.") . "\n");
return;
}
@fwrite($fd_log, $msg);
}
}
/* Validate if pkg name is valid */
function pkg_valid_name($pkgname) {
global $g;
$pattern = "/^{$g['pkg_prefix']}[a-zA-Z0-9\.\-_]+$/";
return preg_match($pattern, $pkgname);
}
/* Remove pkg_prefix or flavor_prefix from package name if it's present */
function pkg_remove_prefix(&$pkg_name) {
$pres = [g_get('pkg_prefix')];
if (!is_null(g_get('flavor_prefix'))) {
$pres[] = g_get('flavor_prefix');
}
foreach ( $pres as $pre) {
if (str_starts_with($pkg_name, $pre)) {
$pkg_name = substr($pkg_name, strlen($pre));
break;
}
}
}
/* Execute pkg update when it's necessary */
function pkg_update($force = false) {
global $g;
return pkg_call("update" . ($force ? " -f" : ""));
}
/* return an array with necessary environment vars for pkg */
function pkg_env($extra_env = array()) {
global $g;
$user_agent = g_get('product_label') . '/' . g_get('product_version');
if (!config_path_enabled('system','do_not_send_uniqueid')) {
$user_agent .= ':' . system_get_uniqueid();
}
$pkg_env_vars = array(
"LANG" => "C",
"HTTP_USER_AGENT" => $user_agent,
"ASSUME_ALWAYS_YES" => "true",
"FETCH_TIMEOUT" => 5,
"FETCH_RETRY" => 2
);
$http_proxy = config_get_path('system/proxyurl');
$http_proxyport = config_get_path('system/proxyport');
if (!empty($http_proxy)) {
if (!empty($http_proxyport)) {
$http_proxy .= ':' . $http_proxyport;
}
$pkg_env_vars['HTTP_PROXY'] = $http_proxy;
$proxyuser = config_get_path('system/proxyuser');
$proxypass = config_get_path('system/proxypass');
if (!empty($proxyuser) && !empty($proxypass)) {
$pkg_env_vars['HTTP_PROXY_AUTH'] = $proxyuser . ":" . $proxypass;
}
}
# if (config_path_enabled('system','use_mfs_tmpvar') &&
# !file_exists("/conf/ram_disks_failed")) {
# $pkg_env_vars['PKG_DBDIR'] = '/root/var/db/pkg';
# $pkg_env_vars['PKG_CACHEDIR'] = '/root/var/cache/pkg';
# }
foreach ($extra_env as $key => $value) {
$pkg_env_vars[$key] = $value;
}
return $pkg_env_vars;
}
/* Execute a pkg call */
function pkg_call($params, $mute = false, $extra_env = array()) {
if (empty($params)) {
return false;
}
$descriptorspec = array(
1 => array("pipe", "w"), /* stdout */
2 => array("pipe", "w") /* stderr */
);
pkg_debug("pkg_call(): {$params}\n");
$process = proc_open("/usr/local/sbin/pkg-static {$params}",
$descriptorspec, $pipes, '/', pkg_env($extra_env));
if (!is_resource($process)) {
return false;
}
stream_set_blocking($pipes[1], 0);
stream_set_blocking($pipes[2], 0);
/* XXX: should be a tunable? */
$timeout = 60; // seconds
$error_log = '';
do {
$write = array();
$read = array($pipes[1], $pipes[2]);
$except = array();
$stream = @stream_select($read, $write, $except, $timeout);
if ($stream !== FALSE && $stream > 0) {
foreach ($read as $pipe) {
$content = stream_get_contents($pipe);
if ($content == '') {
continue;
}
if ($pipe === $pipes[1]) {
if (!$mute) {
update_status($content);
}
flush();
} else if ($pipe === $pipes[2]) {
$error_log .= $content;
}
}
}
$status = proc_get_status($process);
} while ($status['running']);
fclose($pipes[1]);
fclose($pipes[2]);
proc_close($process);
$rc = $status['exitcode'];
pkg_debug("pkg_call(): rc = {$rc}\n");
if ($rc == 0) {
return true;
}
pkg_debug("pkg_call(): error_log\n{$error_log}\n");
if (!$mute) {
update_status("\n\n" . sprintf(gettext("ERROR!!! An error " .
"occurred on pkg execution (rc = %d) with parameters " .
"'%s':"), $rc, $params) . "\n" . $error_log . "\n");
}
return false;
}
/* Execute pkg with $params, fill stdout and stderr and return pkg rc */
function pkg_exec($params, &$stdout, &$stderr, $extra_env = array()) {
if (empty($params)) {
return -1;
}
$descriptorspec = array(
1 => array("pipe", "w"), /* stdout */
2 => array("pipe", "w") /* stderr */
);
pkg_debug("pkg_exec(): {$params}\n");
$process = proc_open("/usr/local/sbin/pkg-static {$params}",
$descriptorspec, $pipes, '/', pkg_env($extra_env));
if (!is_resource($process)) {
return -1;
}
$stdout = '';
while (($l = fgets($pipes[1])) !== FALSE) {
$stdout .= $l;
}
fclose($pipes[1]);
$stderr = '';
while (($l = fgets($pipes[2])) !== FALSE) {
$stderr .= $l;
}
fclose($pipes[2]);
return proc_close($process);
}
/* Compare 2 pkg versions and return:
* '=' - versions are the same
* '>' - $v1 > $v2
* '<' - $v1 < $v2
* '?' - Error
*/
function pkg_version_compare($v1, $v2) {
if (empty($v1) || empty($v2)) {
return '?';
}
$rc = pkg_exec("version -t '{$v1}' '{$v2}'", $stdout, $stderr);
if ($rc != 0) {
return '?';
}
return str_replace("\n", "", $stdout);
}
/* Check if package is installed */
function is_pkg_installed($pkg_name) {
global $g;
if (empty($pkg_name)) {
return false;
}
return pkg_call("info -e " . $pkg_name, true);
}
/* Install package, $pkg_name should not contain prefix */
function pkg_install($pkg_name, $force = false) {
global $g;
$result = false;
$shortname = $pkg_name;
pkg_remove_prefix($shortname);
$pkg_force = "";
if ($force) {
$pkg_force = "-f ";
}
pkg_debug("Installing package {$shortname}\n");
if ($force || !is_pkg_installed($pkg_name)) {
$result = pkg_call("install -y " . $pkg_force . $pkg_name);
/* Cleanup cache to free disk space */
pkg_call("clean -y");
}
return $result;
}
/* Delete package from FreeBSD, $pkg_name should not contain prefix */
function pkg_delete($pkg_name) {
global $g;
$shortname = $pkg_name;
pkg_remove_prefix($shortname);
pkg_debug("Removing package {$shortname}\n");
if (is_pkg_installed($pkg_name)) {
pkg_call("delete -y " . $pkg_name);
/* Cleanup unnecessary dependencies */
pkg_call("autoremove -y");
}
}
/* Check if package is present in config.xml */
function is_package_installed($package_name) {
return (get_package_id($package_name) != -1);
}
/* Find package array index */
function get_package_id($package_name) {
foreach (config_get_path('installedpackages/package', []) as $idx => $pkg) {
if ($pkg['name'] == $package_name ||
get_package_internal_name($pkg) == $package_name) {
return $idx;
}
}
return -1;
}
/* Return internal_name when it's defined, otherwise, returns name */
function get_package_internal_name($package_data) {
if (isset($package_data['internal_name']) &&
($package_data['internal_name'] != "")) {
/* e.g. name is Ipguard-dev, internal name is ipguard */
return $package_data['internal_name'];
} else {
return $package_data['name'];
}
}
// Get information about packages.
function get_pkg_info($pkgs = 'all', $remote_repo_usage_disabled = false,
$installed_pkgs_only = false) {
global $g, $input_errors;
$out = $err = $extra_param = '';
$rc = 0;
unset($pkg_filter);
if (is_array($pkgs)) {
$pkg_filter = $pkgs;
$pkgs = g_get('pkg_prefix') . '*';
} elseif ($pkgs == 'all') {
$pkgs = g_get('pkg_prefix') . '*';
}
$base_packages = (substr($pkgs, 0, strlen(g_get('pkg_prefix'))) !=
g_get('pkg_prefix'));
if ($installed_pkgs_only && !is_pkg_installed($pkgs)) {
/*
* Return early if the caller wants just installed packages
* and there are none. Saves doing any calls that might
* access a remote package repo.
*/
return array();
}
if (!function_exists('is_subsystem_dirty')) {
require_once("util.inc");
}
/* Do not run remote operations if pkg has a lock */
if (is_subsystem_dirty('pkg')) {
$remote_repo_usage_disabled = true;
$lock = false;
} else {
$lock = true;
}
if ($lock) {
mark_subsystem_dirty('pkg');
}
if ($remote_repo_usage_disabled) {
$extra_param = "-U ";
}
$did_search = false;
$search_rc = 0;
$info_rc = 0;
$search_items = array();
$info_items = array();
if ($base_packages) {
$repo_param = "";
} else {
$repo_param = "-r {$g['product_name']}";
}
/*
* If we want more than just the currently installed packages or
* we want up-to-date remote repo info then do a full pkg search
*/
if (!$installed_pkgs_only || !$remote_repo_usage_disabled) {
$did_search = true;
/* Update the repository access credentials. */
mwexec("/usr/local/sbin/{$g['product_name']}-repo-setup");
$search_rc = pkg_exec("search {$repo_param} " .
"{$extra_param}-R --raw-format json-compact " .
$pkgs, $search_out, $search_err);
if ($search_rc == 0) {
$search_items = explode("\n", chop($search_out));
array_walk($search_items, function(&$v, &$k) {
$v = json_decode($v, true);
});
}
}
/*
* We always should look for local items to detect packages that
* were removed from remote repo but are already installed locally
*
* Take pkg search return code into consideration to fallback to local
* information when remote repo is not accessible
*/
if (is_pkg_installed($pkgs) || $search_rc != 0) {
$info_rc = pkg_exec("info -R --raw-format json-compact " .
$pkgs, $info_out, $info_err);
if ($info_rc == 0) {
$info_items = explode("\n", chop($info_out));
array_walk($info_items, function(&$v, &$k) {
$v = json_decode($v, true);
});
}
}
if ($lock) {
clear_subsystem_dirty('pkg');
}
if ($search_rc != 0 && $info_rc != 0) {
update_status("\n" . gettext(
"ERROR: Error trying to get packages list. Aborting...")
. "\n");
update_status($search_err . "\n" . $info_err);
$input_errors[] = gettext(
"ERROR: Error trying to get packages list. Aborting...") .
"\n";
$input_errors[] = $search_err . "\n" . $info_err;
return array();
}
/* It was not possible to search, use local information only */
if ($search_rc != 0 || !$did_search) {
$search_items = $info_items;
} else {
foreach ($info_items as $pkg_info) {
if (empty($pkg_info['name'])) {
continue;
}
if (array_search($pkg_info['name'], array_column(
$search_items, 'name')) === FALSE) {
$pkg_info['obsolete'] = true;
$search_items[] = $pkg_info;
}
}
}
$result = array();
foreach ($search_items as $pkg_info) {
if (empty($pkg_info['name'])) {
continue;
}
if (isset($pkg_filter) && !in_array($pkg_info['name'],
$pkg_filter)) {
continue;
}
$pkg_info['shortname'] = $pkg_info['name'];
pkg_remove_prefix($pkg_info['shortname']);
/* XXX: Add it to globals.inc? */
$pkg_info['changeloglink'] =
"https://github.com/pfsense/FreeBSD-ports/commits/devel/" .
$pkg_info['categories'][0] . '/' . $pkg_info['name'];
$pkg_is_installed = false;
if (is_pkg_installed($pkg_info['name'])) {
$rc = pkg_exec("query %R {$pkg_info['name']}", $out,
$err);
if (!$base_packages &&
rtrim($out) != g_get('product_name')) {
continue;
}
$pkg_info['installed'] = true;
$pkg_is_installed = true;
$rc = pkg_exec("query %v {$pkg_info['name']}", $out,
$err);
if ($rc != 0) {
update_status("\n" . gettext("ERROR: Error " .
"trying to get package version. " .
"Aborting...") . "\n");
update_status($err);
$input_errors[] = gettext("ERROR: Error " .
"trying to get package version. " .
"Aborting...") . "\n";
$input_errors[] = $err;
return array();
}
$pkg_info['installed_version'] = str_replace("\n", "",
$out);
/*
* We used pkg info to collect pkg data so remote
* version is not available. Lets try to collect it
* using rquery if possible
*/
if ($search_rc != 0 || !$did_search) {
$rc = pkg_exec(
"rquery -U %v {$pkg_info['name']}", $out,
$err);
if ($rc == 0) {
/*
* just consider the first line of output from rquery
* ref: https://github.com/freebsd/pkg/issues/2164
*/
$pkg_info['version'] = explode("\n", $out)[0];
}
}
} else if (is_package_installed($pkg_info['shortname'])) {
$pkg_info['broken'] = true;
$pkg_is_installed = true;
}
$pkg_info['desc'] = preg_replace('/\n+WWW:.*$/', '',
$pkg_info['desc']);
if (!$installed_pkgs_only || $pkg_is_installed) {
$result[] = $pkg_info;
}
unset($pkg_info);
}
/* Sort result alphabetically */
usort($result, function($a, $b) {
return(strcasecmp ($a['name'], $b['name']));
});
return $result;
}
/*
* If binary pkg is installed but post-install tasks were not
* executed yet, do it now.
* This scenario can happen when a pkg is pre-installed during
* build phase, and at this point, cannot find a running system
* to register itself in config.xml and also execute custom
* install functions
*/
function register_all_installed_packages(bool $force = false) {
$pkg_info = get_pkg_info('all', true, true);
foreach ($pkg_info as $pkg) {
pkg_remove_prefix($pkg['name']);
if (!$force && is_package_installed($pkg['name'])) {
continue;
}
update_status(sprintf(gettext(
"Running last steps of %s installation.") . "\n",
$pkg['name']));
install_package_xml($pkg['name']);
}
}
/*
* resync_all_package_configs() Force packages to setup their configuration
* and rc.d files. This function may also print output to the terminal
* indicating progress.
*/
function resync_all_package_configs($show_message = false) {
log_error(gettext("Resyncing configuration for all packages."));
if ($show_message == true) {
echo "Syncing packages:";
}
foreach (config_get_path('installedpackages/package', []) as $idx => $package) {
if (empty($package['name'])) {
continue;
}
if ($show_message == true) {
echo " " . $package['name'];
}
if (!is_platform_booting()) {
stop_service(get_package_internal_name($package));
}
sync_package($package['name']);
update_status(gettext("Syncing packages...") . "\n");
}
if ($show_message == true) {
echo " done.\n";
}
}
function uninstall_package($package_name) {
global $g;
$internal_name = $package_name;
$id = get_package_id($package_name);
if ($id >= 0) {
$internal_name = get_package_internal_name(
config_get_path("installedpackages/package/{$id}"));
stop_service($internal_name);
}
$pkg_name = g_get('pkg_prefix') . $internal_name;
if (is_pkg_installed($pkg_name)) {
update_status(gettext("Removing package...") . "\n");
pkg_delete($pkg_name);
} else {
delete_package_xml($package_name);
}
update_status(gettext("done.") . "\n");
}
function reinstall_package($package_name) {
global $g;
$internal_name = $package_name;
$id = get_package_id($package_name);
if ($id >= 0) {
$internal_name = get_package_internal_name(
config_get_path("installedpackages/package/{$id}"));
}
$pkg_name = g_get('pkg_prefix') . $internal_name;
pkg_install($pkg_name);
}
/* Run <custom_php_resync_config_command> */
function sync_package($package_name) {
global $builder_package_install;
// If this code is being called by pfspkg_installer
// which the builder system uses then return (ignore).
if ($builder_package_install) {
return;
}
if (empty(config_get_path('installedpackages/package', []))) {
return;
}
if (($pkg_id = get_package_id($package_name)) == -1) {
// This package doesn't really exist - exit the function.
return;
}
$package = config_get_path("installedpackages/package/{$pkg_id}");
if (empty($package)) {
// No package belongs to the pkg_id passed to this function.
return;
}
if (!file_exists("/usr/local/pkg/" . $package['configurationfile'])) {
log_error(sprintf(gettext("The %s package is missing its " .
"configuration file and must be reinstalled."),
$package['name']));
delete_package_xml($package['name']);
return;
}
$pkg_config = parse_xml_config_pkg("/usr/local/pkg/" .
$package['configurationfile'], "packagegui");
if (isset($pkg_config['nosync'])) {
return;
}
/* Bring in package include files */
if (!empty($pkg_config['include_file'])) {
$include_file = $pkg_config['include_file'];
if (file_exists($include_file)) {
require_once($include_file);
} else {
log_error(sprintf(gettext('Reinstalling package %1$s " .
"because its include file(%2$s) is missing!'),
$package['name'], $include_file));
uninstall_package($package['name']);
if (reinstall_package($package['name']) != 0) {
log_error(sprintf(gettext("Reinstalling " .
"package %s failed. Take appropriate " .
"measures!!!"), $package['name']));
return;
}
if (file_exists($include_file)) {
require_once($include_file);
} else {
return;
}
}
}
if (!empty($pkg_config['custom_php_global_functions'])) {
eval($pkg_config['custom_php_global_functions']);
}
if (!empty($pkg_config['custom_php_resync_config_command'])) {
eval($pkg_config['custom_php_resync_config_command']);
}
}
/* Read info.xml installed by package and return an array */
function read_package_config($package_name) {
global $g;
$pkg_info_xml = '/usr/local/share/' . g_get('pkg_prefix') . $package_name .
'/info.xml';
if (!file_exists($pkg_info_xml)) {
return false;
}
$pkg_info = parse_xml_config_pkg($pkg_info_xml, 'pfsensepkgs');
if (empty($pkg_info)) {
return false;
}
/* it always returns an array with 1 item */
return $pkg_info['package'][0];
}
/* Read package configurationfile and return an array */
function read_package_configurationfile($package_name) {
$pkg_config = array();
$id = get_package_id($package_name);
$pkg_data = config_get_path("installedpackages/package/{$id}", []);
if ($id < 0 || empty($pkg_data)) {
return $pkg_config;
}
if (empty($pkg_data['configurationfile'])) {
return $pkg_config;
}
if (!file_exists('/usr/local/pkg/' . $pkg_data['configurationfile'])) {
return $pkg_config;
}
$pkg_config = parse_xml_config_pkg('/usr/local/pkg/' .
$pkg_data['configurationfile'], "packagegui");
return $pkg_config;
}
function get_after_install_info($package_name) {
$pkg_config = read_package_config($package_name);
if (isset($pkg_config['after_install_info'])) {
return $pkg_config['after_install_info'];
}
return '';
}
function eval_once($toeval) {
global $evaled;
if (!$evaled) {
$evaled = array();
}
$evalmd5 = md5($toeval);
if (!in_array($evalmd5, $evaled)) {
@eval($toeval);
$evaled[] = $evalmd5;
}
return;
}
function install_package_xml($package_name) {
if (($pkg_info = read_package_config($package_name)) == false) {
return false;
}
pkg_debug(gettext("Beginning package installation.") . "\n");
log_error(sprintf(gettext('Beginning package installation for %s .'),
$pkg_info['name']));
/* add package information to config.xml */
$pkgid = get_package_id($pkg_info['name']);
update_status(gettext("Saving updated package information...") . "\n");
$pkgs = config_get_path('installedpackages/package', []);
if ($pkgid == -1) {
$pkgs[] = $pkg_info;
$changedesc = sprintf(gettext("Installed %s package."),
$pkg_info['name']);
$to_output = gettext("done.") . "\n";
} else {
$pkgs[$pkgid] = $pkg_info;
$changedesc = sprintf(gettext("Overwrote previous " .
"installation of %s."), $pkg_info['name']);
$to_output = gettext("overwrite!") . "\n";
}
config_set_path('installedpackages/package', $pkgs);
write_config(sprintf(gettext("Intermediate config write during " .
"package install for %s."), $pkg_info['name']));
update_status($to_output);
if (($pkgid = get_package_id($package_name)) == -1) {
update_status(sprintf(gettext('The %1$s package is not ' .
'installed.%2$sInstallation aborted.'), $package_name,
"\n\n"));
uninstall_package($package_name);
write_config($changedesc);
log_error(sprintf(gettext("Failed to install package: %s."),
$pkg_info['name']));
update_status(gettext("Failed to install package.") . "\n");
return false;
}
if (!file_exists("/usr/local/pkg/" . $pkg_info['configurationfile'])) {
pkg_debug("Unable to find config file\n");
update_status(gettext("Loading package configuration... " .
"failed!") . "\n\n" . gettext("Installation aborted."));
pkg_debug(gettext("Unable to load package configuration. " .
"Installation aborted.") ."\n");
uninstall_package($package_name);
write_config($changedesc);
log_error(sprintf(gettext("Failed to install package: %s."),
$pkg_info['name']));
update_status(gettext("Failed to install package.") . "\n");
return false;
}
update_status(gettext("Loading package configuration... "));
$pkg_config = parse_xml_config_pkg("/usr/local/pkg/" .
$pkg_info['configurationfile'], "packagegui");
update_status(gettext("done.") . "\n");
update_status(gettext("Configuring package components...") .
"\n");
if (!empty($pkg_config['filter_rules_needed'])) {
config_set_path("installedpackages/package/{$pkgid}/filter_rule_function",
$pkg_config['filter_rules_needed']);
}
/* modify system files */
/* if a require exists, include it. this will
* show us where an error exists in a package
* instead of making us blindly guess
*/
$missing_include = false;
if ($pkg_config['include_file'] <> "") {
update_status(gettext("Loading package instructions...") .
"\n");
if (file_exists($pkg_config['include_file'])) {
pkg_debug("require_once('" .
$pkg_config['include_file'] . "')\n");
require_once($pkg_config['include_file']);
} else {
pkg_debug("Missing include " .
"{$pkg_config['include_file']}\n");
$missing_include = true;
update_status(sprintf(gettext("Include %s is missing!"),
basename($pkg_config['include_file'])) . "\n");
uninstall_package($package_name);
write_config($changedesc);
log_error(sprintf(gettext(
"Failed to install package: %s."),
$pkg_info['name']));
update_status(gettext("Failed to install package.") .
"\n");
return false;
}
}
/* custom commands */
update_status(gettext("Custom commands...") . "\n");
if ($missing_include == false) {
if ($pkg_config['custom_php_global_functions'] <> "") {
update_status(gettext(
"Executing custom_php_global_functions()..."));
eval_once($pkg_config['custom_php_global_functions']);
update_status(gettext("done.") . "\n");
}
if ($pkg_config['custom_php_install_command']) {
update_status(gettext(
"Executing custom_php_install_command()..."));
eval_once($pkg_config['custom_php_install_command']);
update_status(gettext("done.") . "\n");
}
if ($pkg_config['custom_php_resync_config_command'] <> "") {
update_status(gettext(
"Executing custom_php_resync_config_command()..."));
eval_once(
$pkg_config['custom_php_resync_config_command']);
update_status(gettext("done.") . "\n");
}
}
/* sidebar items */
if (is_array($pkg_config['menu'])) {
$menus = config_get_path('installedpackages/menu', []);
update_status(gettext("Menu items... "));
foreach ($pkg_config['menu'] as $menu) {
foreach ($menus as $amenu) {
if ((trim($amenu['name']) == trim($menu['name'])) &&
($amenu['section'] == $menu['section'])) {
continue 2;
}
}
$menus[] = $menu;
}
config_set_path('installedpackages/menu', $menus);
update_status(gettext("done.") . "\n");
}
/* services */
if (is_array($pkg_config['service'])) {
update_status(gettext("Services... "));
$services = config_get_path('installedpackages/service', []);
foreach ($pkg_config['service'] as $service) {
if (empty($service)) {
continue;
}
foreach ($services as $aservice) {
if (empty($aservice)) {
continue;
}
if (trim($aservice['name']) == trim($service['name'])) {
continue 2;
}
}
$services[] = $service;
}
config_set_path('installedpackages/service', $services);
update_status(gettext("done.") . "\n");
}
if (is_array($pkg_config['tabs'])) {
config_set_path("installedpackages/package/{$pkgid}/tabs",$pkg_config['tabs']);
}
/* plugins */
if (isset($pkg_config['include_file'])) {
config_set_path("installedpackages/package/{$pkgid}/include_file", $pkg_config['include_file']);
}
if (is_array($pkg_config['plugins'])) {
config_set_path("installedpackages/package/{$pkgid}/plugins", $pkg_config['plugins']);
}
update_status(gettext("Writing configuration... "));
write_config($changedesc);
log_error(sprintf(gettext("Successfully installed package: %s."),
$pkg_info['name']));
update_status(gettext("done.") . "\n");
if ($pkg_info['after_install_info']) {
update_status($pkg_info['after_install_info']);
}
/* set up package logging streams */
if ($pkg_info['logging']) {
system_syslogd_start(true);
}
return true;
}
function delete_package_xml($package_name, $when = "post-deinstall") {
global $g;
$pkgid = get_package_id($package_name);
if ($pkgid == -1) {
update_status(sprintf(gettext('The %1$s package is not ' .
'installed.%2$sDeletion aborted.'), $package_name, "\n\n"));
ob_flush();
sleep(1);
return;
}
pkg_debug(sprintf(gettext("Removing %s package... "), $package_name));
update_status(sprintf(gettext("Removing %s components..."),
$package_name) . "\n");
/* parse package configuration */
$pkg_info = config_get_path("installedpackages/package/{$pkgid}",[]);
$services = config_get_path('installedpackages/service', []);
if (file_exists("/usr/local/pkg/" . $pkg_info['configurationfile'])) {
$pkg_config = parse_xml_config_pkg("/usr/local/pkg/" .
$pkg_info['configurationfile'], "packagegui");
/* remove menu items */
if (is_array($pkg_config['menu'])) {
$menus = config_get_path('installedpackages/menu', []);
update_status(gettext("Menu items... "));
foreach ($pkg_config['menu'] as $menu) {
foreach ($menus as $key => $amenu) {