[ Avaa Bypassed ]




Upload:

Command:

www-data@3.144.19.6: ~ $
#!/usr/bin/perl
# dependency/dependent tree viewer
# Display a form for displaying/editing SMF service states in dependency
# and dependent trees.

require './smf-lib.pl';
&ReadParse();

# get instance fmri
if (defined($in{'fmri'})) {
	$fmri = $in{'fmri'};
	# remove quotes...
	$fmri =~ /\'([^\']*)\'/;
	$fmri = $1;
} else {
	&error("No fmri supplied to dep viewer!");
	}

# deal with application of state changes first. this way
# dep lists will show new states...
if (defined($in{'change_state'})) {
	$cmd = "$in{'change_state'}";
	# get update fmri list
	@update_fmris = split(/\0/, $in{'applyto'});
	&svc_state_cmd("$cmd", \@update_fmris);
	}

@depy_expand_list = ();
# which dependency fmris do we expand?
if (defined($in{'dependency_expandlist'})) {
	# get required expansions. each is fmri
	@depy_expand_list = split(/\0/, $in{'dependency_expandlist'});
	}
# Expand list - list of fmris to expand. By default, expand top fmri.
push(@depy_expand_list, $fmri);

@dept_expand_list = ();
# which dependent fmris do we expand?
if (defined($in{'dependent_expandlist'})) {
	# get required expansions. each is fmri
	@dept_expand_list = split(/\0/, $in{'dependent_expandlist'});
	}
# Expand list - list of fmris to expand. By default, expand top fmri.
push(@dept_expand_list, $fmri);

# get new expansion/contractions submitted...
@inkeys = keys(%in);
foreach $inkey (@inkeys) {
	if ($inkey =~ /dependency_expand_(.*)$/) {
		$expand_fmri = $1;
		push(@depy_expand_list, $expand_fmri);
		}
	if ($inkey =~ /dependency_contract_(.*)$/) {
		$contract_fmri = $1;
		foreach $e (@depy_expand_list) {
			$old = shift(@depy_expand_list);
			if ($old eq $contract_fmri) {
				next;
				}
			push(@depy_expand_list, $old);
			}
		}
	if ($inkey =~ /dependent_expand_(.*)$/) {
		$expand_fmri = $1;
		push(@dept_expand_list, $expand_fmri);
		}
	if ($inkey =~ /dependent_contract_(.*)$/) {
		$contract_fmri = $1;
		foreach $e (@dept_expand_list) {
			$old = shift(@dept_expand_list);
			if ($old eq $contract_fmri) {
				next;
				}
			push(@dept_expand_list, $old);
			}
		}
	}

# Gather service description, and state info
$description = &run_smf_cmds("/usr/bin/svcs -H -oDESC $fmri", 0);

%depy_tree = ();
%dept_tree = ();
$depy_treeref = \%depy_tree;
$dept_treeref= \%dept_tree;
$instance_state = &svc_get_state_cmd($fmri);
&build_dep_tree("dependent", $dept_treeref, $fmri, 0, \@dept_expand_list,
	$instance_state);
&build_dep_tree("dependency", $depy_treeref, $fmri, 0, \@depy_expand_list,
	$instance_state);

&ui_print_header(undef, $text{'dep_viewer_title'}, "", undef);

print "<form method=\"POST\" action=\"dep_viewer.cgi?fmri='$fmri'\">\n";

print "<h2>$description</h2>\n";
print "<h2>";
&text_and_whats_this("dep_viewer_detail");
print "</h2>";

print "<h2>$text{'dep_viewer_depy_info'}</h2>\n";
print "<p>$text{'dep_viewer_apply'}:&nbsp\n";
&print_state_buttons();
print "</p>\n";
&print_dep_tree("dependency", $depy_treeref, $fmri, 0, \@depy_expand_list);

print "<h2>$text{'dep_viewer_dept_info'}</h2>\n";
print "<p>$text{'dep_viewer_apply'}:&nbsp\n";
&print_state_buttons();
print "</p>\n";
&print_dep_tree("dependent", $dept_treeref, $fmri, 0, \@dept_expand_list);

print "</form>\n";

&print_cmds_run();

&ui_print_footer("instance_viewer.cgi?fmri='$fmri'",
        $text{'dep_viewer_back'});

Filemanager

Name Type Size Permission Actions
help Folder 0755
images Folder 0755
lang Folder 0755
config-solaris File 20 B 0644
config.info File 73 B 0644
config.info.ca File 80 B 0644
config.info.de File 98 B 0644
config.info.nl File 88 B 0644
dep_viewer.cgi File 3.22 KB 0755
dependency_template.xml File 140 B 0644
dependent_template.xml File 138 B 0644
exec_template.xml File 143 B 0644
index.cgi File 4.91 KB 0755
instance_template.xml File 60 B 0644
instance_template_end.xml File 12 B 0644
instance_viewer.cgi File 1.13 KB 0755
log_viewer.cgi File 1.33 KB 0755
manpage_template.xml File 88 B 0644
module.info File 201 B 0644
module.info.af File 0 B 0644
module.info.af.auto File 156 B 0644
module.info.ar File 0 B 0644
module.info.ar.auto File 162 B 0644
module.info.be File 0 B 0644
module.info.be.auto File 181 B 0644
module.info.bg File 0 B 0644
module.info.bg.auto File 234 B 0644
module.info.ca File 146 B 0644
module.info.ca.auto File 12 B 0644
module.info.cs File 0 B 0644
module.info.cs.auto File 144 B 0644
module.info.da File 0 B 0644
module.info.da.auto File 144 B 0644
module.info.de File 0 B 0644
module.info.de.auto File 164 B 0644
module.info.el File 0 B 0644
module.info.el.auto File 266 B 0644
module.info.es File 0 B 0644
module.info.es.auto File 165 B 0644
module.info.eu File 0 B 0644
module.info.eu.auto File 141 B 0644
module.info.fa File 0 B 0644
module.info.fa.auto File 153 B 0644
module.info.fi File 0 B 0644
module.info.fi.auto File 143 B 0644
module.info.fr File 0 B 0644
module.info.fr.auto File 169 B 0644
module.info.he File 0 B 0644
module.info.he.auto File 159 B 0644
module.info.hr File 0 B 0644
module.info.hr.auto File 122 B 0644
module.info.hu File 0 B 0644
module.info.hu.auto File 180 B 0644
module.info.it File 0 B 0644
module.info.it.auto File 167 B 0644
module.info.ja File 0 B 0644
module.info.ja.auto File 154 B 0644
module.info.ko File 0 B 0644
module.info.ko.auto File 141 B 0644
module.info.lt File 0 B 0644
module.info.lt.auto File 151 B 0644
module.info.lv File 0 B 0644
module.info.lv.auto File 166 B 0644
module.info.ms File 0 B 0644
module.info.ms.auto File 163 B 0644
module.info.mt File 0 B 0644
module.info.mt.auto File 183 B 0644
module.info.nl File 51 B 0644
module.info.nl.auto File 99 B 0644
module.info.no File 0 B 0644
module.info.no.auto File 148 B 0644
module.info.pl File 0 B 0644
module.info.pl.auto File 149 B 0644
module.info.pt File 0 B 0644
module.info.pt.auto File 149 B 0644
module.info.pt_BR File 0 B 0644
module.info.pt_BR.auto File 158 B 0644
module.info.ro File 0 B 0644
module.info.ro.auto File 179 B 0644
module.info.ru File 0 B 0644
module.info.ru.auto File 193 B 0644
module.info.sk File 0 B 0644
module.info.sk.auto File 147 B 0644
module.info.sl File 0 B 0644
module.info.sl.auto File 119 B 0644
module.info.sv File 0 B 0644
module.info.sv.auto File 149 B 0644
module.info.th File 0 B 0644
module.info.th.auto File 290 B 0644
module.info.tr File 0 B 0644
module.info.tr.auto File 153 B 0644
module.info.uk File 0 B 0644
module.info.uk.auto File 189 B 0644
module.info.ur File 0 B 0644
module.info.ur.auto File 225 B 0644
module.info.vi File 0 B 0644
module.info.vi.auto File 180 B 0644
module.info.zh File 0 B 0644
module.info.zh.auto File 116 B 0644
module.info.zh_TW File 0 B 0644
module.info.zh_TW.auto File 125 B 0644
path_chooser.cgi File 3.27 KB 0755
property_editor.cgi File 4.42 KB 0755
property_group_editor.cgi File 3.74 KB 0755
property_group_template.xml File 74 B 0644
property_group_template_end.xml File 18 B 0644
property_template.xml File 67 B 0644
restarter_template.xml File 41 B 0644
search_instance.cgi File 1.45 KB 0755
service_template.xml File 225 B 0644
service_template_end.xml File 29 B 0644
smf-lib.pl File 27.22 KB 0755
smfwizard_dependency.cgi File 2 KB 0755
smfwizard_dependent.cgi File 1.97 KB 0755
smfwizard_exec.cgi File 1.55 KB 0755
smfwizard_instance.cgi File 764 B 0755
smfwizard_manpage.cgi File 897 B 0755
smfwizard_process_submit.cgi File 359 B 0755
smfwizard_property.cgi File 1.46 KB 0755
smfwizard_property_group.cgi File 1020 B 0755
smfwizard_restarter.cgi File 601 B 0755
smfwizard_service.cgi File 852 B 0755
smfwizard_template.cgi File 790 B 0755
svc_chooser.cgi File 4.41 KB 0755
svc_chooser_test.cgi File 759 B 0755
template_template.xml File 187 B 0644
template_template_end.xml File 28 B 0644
wizard.pl File 20.12 KB 0755
wizardtest.cgi File 767 B 0755