summaryrefslogtreecommitdiffstats
path: root/etc/phpshellsessions/cvssync
blob: 0800c8673ebe859c47cc8de97acebc30ca92921c (plain)
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
/*   cvs_sync
 *   Written by Scott Ullrich
 *   (C)2005-2007 Scott Ullrich
 *   Part of the pfSense project pfSsh.php subsystem
 */

$GIT_REPO="http://gitweb.pfsense.org/pfsense/mainline.git";

global $argv;
global $command_split;

conf_mount_rw();

if(is_dir("/home/pfsense")) {
	echo "\nRemoving downloaded cvssync data, please wait...";
	exec("rm -rf /home/pfsense");
	echo " done.\n";
}

unlink_if_exists("/tmp/config.cache");

if(!file_exists("/usr/local/bin/git")) {
	echo "Cannot find git, fetching static git...";
	system("fetch -o /usr/local/bin/git http://files.pfsense.org/extras/7/git");
	system("chmod a+rx /usr/local/bin/git");
}

/* NOTE: Set branches here */
$branches = array(
	"master" => "2.0 development branch",
	"RELENG_1_2" => "1.2* release branch"
);

if(file_exists("/root/cvssync_backup.tgz")) {
	$backup_date = `ls -lah /root/cvssync_backup.tgz | awk '{ print $6,$7,$8 }'`;
	$tmp = array("RESTORE" => "Restores prior CVSSync backup data performed at {$backup_date}");
	$branches = array_merge($branches, $tmp);
}

if($command_split[2]) {
	$branch = $command_split[2];
} else {
	if(!$argv[3]) {
		echo "\nPlease select which branch you would like to sync against:\n\n";
		foreach($branches as $branchname => $branchdesc) {
			echo "{$branchname} \t {$branchdesc}\n";
		}
		$branch = readline("> ");
		echo "\n";
	} else {
		$branch = $argv[3];
	}
}

if($argv[4] == "NOBACKUP") 
	$nobackup=true;
else 
	$nobackup = false;

$CODIR =  "/root/pfsense/";

exec("mkdir -p /root/pfsense/$BRANCHTAG");

$found = false;
foreach($branches as $branchname => $branchdesc) {
	if($branchname == $branch) 
		$found = true;
}
if(!$found) {
	echo "\nInvalid branch.\n";
	exit;
}

if($branch == "RESTORE" && $g['platform'] == "pfSense") {
	if(!file_exists("/root/cvssync_backup.tgz")) {
		echo "Sorry, we could not find a previous CVSSync backup file.\n";
		exit();
	}
	echo "===> Restoring previous CVSSync backup... Please wait...\n";
	exec("tar Uxpf /root/cvssync_backup.tgz -C /");
	post_cvssync_commands();
	exit();
} else {
	$nobackup = true; // do not backup embedded, livecd
}

if($nobackup == false) {
	echo "===> Backing up current pfSense information...\n";
	echo "===> Please wait... ";
	exec("tar czPf /root/cvssync_backup.tgz --exclude /root --exclude /dev --exclude /var/db/racoon/racoon.sock --exclude /tmp --exclude /var/run --exclude /var/empty /");
	$size = filesize("/root/cvssync_backup.tgz");
	echo "{$size} bytes.\n\n";
	sleep(5);
}

echo "===> Checking out $branch\n";
exec("mkdir -p /root/pfsense/$branch");

// Git 'er done!
if(is_dir("$CODIR/mainline")) {
	exec("cd $CODIR/mainline && git fetch");
} else {
	exec("cd $CODIR && git clone $GIT_REPO");
	exec("cd $CODIR/mainline && git fetch");
}

if($branch == "master") {
	exec("cd $CODIR/mainline && git checkout master");
} else {
	$current_branch=`git branch | grep $BRANCHTAG`;
	if($current_branch == "") 
		exec("cd $CODIR/mainline && git fetch && git checkout -b $BRANCHTAG origin/$BRANCHTAG");		
	else
		exec("cd $CODIR/mainline && git checkout $BRANCHTAG");
}

exec("mkdir -p /tmp/lighttpd/cache/compress/");

// Nuke CVS and pfSense tarballs
exec("cd ${CODIR}/mainline && find . -name CVS -exec rm -rf {} \; 2>/dev/null");
exec("cd ${CODIR}/mainline && find . -name pfSense.tgz -exec rm {} \; 2>/dev/null");

// Remove files that we do not want to overwrite the system with 
exec("rm ${CODIR}/mainline/usr/local/www/trigger_initial_wizard 2>/dev/null");
exec("rm ${CODIR}/mainline/etc/crontab 2>/dev/null");
exec("rm ${CODIR}/mainline/etc/master.passwd 2>/dev/null");
exec("rm ${CODIR}/mainline/etc/passwd 2>/dev/null");
exec("rm ${CODIR}/mainline/etc/fstab 2>/dev/null");
exec("rm ${CODIR}/mainline/etc/ttys 2>/dev/null");
exec("rm ${CODIR}/mainline/etc/group 2>/dev/null");
exec("rm ${CODIR}/mainline/etc/fstab 2>/dev/null");
exec("rm ${CODIR}/mainline/etc/platform 2>/dev/null");
exec("rm ${CODIR}/mainline/boot/device.hints 2>/dev/null");
exec("rm ${CODIR}/mainline/boot/loader.conf 2>/dev/null");
exec("rm ${CODIR}/mainline/boot/loader.rc 2>/dev/null");
exec("rm -rf ${CODIR}/mainline/conf*");
exec("rm -rf ${CODIR}/mainline/cf 2>/dev/null");
exec("rm -rf ${CODIR}/mainline/root/.shrc");
exec("rm -rf ${CODIR}/mainline/root/.tcshrc");
exec("rm -f ${CODIR}/mainline/etc/syslog.conf 2>/dev/null");

echo "===> Installing new files...\n";

if($g['platform'] == "pfSense") 
	$command = "cd $CODIR/mainline ; tar -cpf - . | (cd / ; tar -Uxpf -)";
else 
	$command = "cd $CODIR/mainline ; tar -cpf - . | (cd / ; tar -xpf -) 2>/dev/null";
exec($command);

post_cvssync_commands();

echo "===> Checkout complete.\n";
echo "\n";
echo "Your system is now sync'd and PHP and Lighty will be restarted in 5 seconds.\n\n";

function post_cvssync_commands() {
	echo "===> Removing FAST-CGI temporary files...\n";
	exec("find /tmp -name \"php-fastcgi.socket*\" -exec rm -rf {} \;");
	exec("find /tmp -name \"*.tmp\" -exec rm -rf {} \;");

	exec("rm -rf /tmp/xcache/* 2>/dev/null");

	echo "===> Upgrading configuration (if needed)...\n";
	convert_config();

	echo "===> Restarting check_reload_status...\n";
	exec("killall check_reload_status");
	mwexec_bg("nohup /usr/bin/nice -n20 /usr/local/sbin/check_reload_status");

	echo "===> Configuring filter...";
	exec("/etc/rc.filter_configure_sync");
	exec("pfctl -f /tmp/rules.debug");
	echo "\n";

	echo "===> Signaling PHP and Lighty restart...";
	$fd = fopen("/tmp/restart_lighty", "w");
	fwrite($fd, "#!/bin/sh\n");
	fwrite($fd, "sleep 5\n");
	fwrite($fd, "killall php\n");
	fwrite($fd, "touch /tmp/restart_webgui\n");
	fclose($fd);
	mwexec_bg("sh /tmp/restart_lighty");
	echo "\n";
}

conf_mount_ro();
OpenPOWER on IntegriCloud