]>
git.ipfire.org Git - ipfire-2.x.git/blob - html/cgi-bin/extrahd.cgi
2 ###############################################################################
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2011 IPFire Team <info@ipfire.org> #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
20 ###############################################################################
23 # enable only the following on debugging purpose
25 #use CGI::Carp 'fatalsToBrowser';
27 require '/var/ipfire/general-functions.pl' ;
28 require "${General::swroot}/lang.pl" ;
29 require "${General::swroot}/header.pl" ;
31 my %extrahdsettings = ();
33 my $errormessage = "" ;
46 my @partitionline = ();
47 my $partitionentry = "" ;
48 my $devicefile = "/var/ipfire/extrahd/devices" ;
49 my $scanfile = "/var/ipfire/extrahd/scan" ;
50 my $partitionsfile = "/var/ipfire/extrahd/partitions" ;
51 system ( "/usr/local/bin/extrahdctrl scanhd ide" );
52 system ( "/usr/local/bin/extrahdctrl scanhd partitions" );
54 & Header
:: showhttpheaders
();
56 ### Values that have to be initialized
57 $extrahdsettings { 'PATH' } = '' ;
58 $extrahdsettings { 'FS' } = '' ;
59 $extrahdsettings { 'DEVICE' } = '' ;
60 $extrahdsettings { 'ACTION' } = '' ;
61 $extrahdsettings { 'UUID' } = '' ;
63 & General
:: readhash
( "${General::swroot}/extrahd/settings" , \
%extrahdsettings );
64 & Header
:: getcgihash
( \
%extrahdsettings );
66 & Header
:: openpage
( 'ExtraHD' , 1 , '' );
67 & Header
:: openbigbox
( '100%' , 'left' , '' , $errormessage );
69 ############################################################################################################################
70 ############################################################################################################################
72 if ( $extrahdsettings { 'ACTION' } eq $Lang :: tr
{ 'add' })
74 open ( FILE
, "< $devicefile " ) or die "Unable to read $devicefile " ;
77 foreach $deviceentry ( sort @devices )
79 @deviceline = split ( /\;/ , $deviceentry );
80 if ( " $extrahdsettings {'PATH'}" eq " $deviceline [2]" ) {
82 $errormessage = " $Lang ::tr{'extrahd you cant mount'} $extrahdsettings {'DEVICE'} $Lang ::tr{'extrahd to'} $extrahdsettings {'PATH'} $Lang ::tr{'extrahd because there is already a device mounted'}." ;
84 if ( " $extrahdsettings {'PATH'}" eq "/" ) {
86 $errormessage = " $Lang ::tr{'extrahd you cant mount'} $extrahdsettings {'DEVICE'} $Lang ::tr{'extrahd to root'}." ;
90 if ( " $ok " eq "true" ) {
91 open ( FILE
, ">> $devicefile " ) or die "Unable to write $devicefile " ;
93 UUID= $extrahdsettings {'UUID'}; $extrahdsettings {'FS'}; $extrahdsettings {'PATH'};
96 system ( "/usr/local/bin/extrahdctrl mount $extrahdsettings {'PATH'}" );
99 elsif ( $extrahdsettings { 'ACTION' } eq $Lang :: tr
{ 'delete' })
101 if ( `/usr/local/bin/extrahdctrl umount $extrahdsettings {'PATH'}` ) {
102 open ( FILE
, "< $devicefile " ) or die "Unable to read $devicefile " ;
105 open ( FILE
, "> $devicefile " ) or die "Unable to write $devicefile " ;
106 foreach $deviceentry ( sort @tmp )
108 @tmpline = split ( /\;/ , $deviceentry );
109 if ( $tmpline [ 2 ] ne $extrahdsettings { 'PATH' } )
111 print FILE
$deviceentry ;
116 $errormessage = " $Lang ::tr{'extrahd cant umount'} $extrahdsettings {'PATH'} $Lang ::tr{'extrahd maybe the device is in use'}?" ;
121 & Header
:: openbox
( '100%' , 'left' , $Lang :: tr
{ 'error messages' });
122 print "<class name='base'> $errormessage \n " ;
123 print " </class> \n " ;
127 ############################################################################################################################
128 ############################################################################################################################
130 open ( FILE
, "< $devicefile " ) or die "Unable to read $devicefile " ;
134 <table border='0' width='600' cellspacing="0">
137 foreach $deviceentry ( sort @devices )
139 @deviceline = split ( /\;/ , $deviceentry );
140 my $color = " $Header ::colourred" ;
141 if ( ! `/bin/mountpoint $deviceline [2] | grep " not "` ) {
142 $color = $Header :: colourgreen
;
145 <tr><td colspan="4"> </td></tr>
146 <tr><td align='left'><font color= $color ><b> $deviceline [0]</b></font></td>
147 <td align='left'> $deviceline [1]</td>
148 <td align='left'> $deviceline [2]</td>
150 <form method='post' action=' $ENV {'SCRIPT_NAME'}'>
151 <input type='hidden' name='DEVICE' value=' $deviceline [0]' />
152 <input type='hidden' name='FS' value=' $deviceline [1]' />
153 <input type='hidden' name='PATH' value=' $deviceline [2]' />
154 <input type='hidden' name='ACTION' value= $Lang ::tr{'delete'} />
155 <input type='image' alt=' $Lang ::tr{'delete'}' title=' $Lang ::tr{'delete'}' src='/images/delete.gif' />
164 & Header
:: openbox
( '100%' , 'center' , $Lang :: tr
{ 'extrahd detected drives' });
166 <table border='0' width='600' cellspacing="0">
169 open ( FILE
, "< $scanfile " ) or die "Unable to read $scanfile " ;
172 open ( FILE
, "< $partitionsfile " ) or die "Unable to read $partitionsfile " ;
173 @partitions = < FILE
>;
175 foreach $scanentry ( sort @scans )
177 @scanline = split ( /\;/ , $scanentry );
178 # remove wrong entries like usb controller name
179 if ( $scanline [ 1 ] ne " \n " )
182 <tr><td colspan="5"> </td></tr>
183 <tr><td align='left' colspan="2"><b>/dev/ $scanline [0]</b></td>
184 <td align='center' colspan="2"> $scanline [1]</td>
189 foreach $partitionentry ( sort @partitions )
191 @partitionline = split ( /\;/ , $partitionentry );
192 if ( " $partitionline [0]" eq " $scanline [0]" ) {
193 $size = int ( $partitionline [ 1 ] / 1024 );
195 <td align='center'> $Lang ::tr{'size'} $size MB</td>
197 <tr><td colspan="5"> </td></tr>
203 foreach $partitionentry ( sort @partitions )
205 @partitionline = split ( /\;/ , $partitionentry );
206 if (( " $partitionline [0]" =~ /^$scanline[0]/ ) && !( " $partitionline [2]" eq "" )) {
207 $size = int ( $partitionline [ 1 ] / 1024 );
209 <form method='post' action=' $ENV {'SCRIPT_NAME'}'>
210 <tr><td align="left" colspan=5><strong>UUID= $partitionline [2]</strong></td></tr>
212 <td align="list">/dev/ $partitionline [0]</td>
213 <td align="center"> $Lang ::tr{'size'} $size MB</td>
214 <td align="center"><select name="FS">
215 <option value="auto">auto</option>
216 <option value="ext3">ext3</option>
217 <option value="ext4">ext4</option>
218 <option value="reiserfs">reiserfs</option>
219 <option value="vfat">fat</option>
220 <option value="ntfs-3g">ntfs (experimental)</option>
222 <td align="center"><input type='text' name='PATH' value=/mnt/harddisk /></td>
224 <input type='hidden' name='DEVICE' value=' $partitionline [0]' />
225 <input type='hidden' name='UUID' value=' $partitionline [2]' />
226 <input type='hidden' name='ACTION' value= $Lang ::tr{'add'} />
227 <input type='image' alt=' $Lang ::tr{'add'}' title=' $Lang ::tr{'add'}' src='/images/add.gif' />
239 <tr><td align="center" colspan="5"> </td></tr>
240 <tr><td align="center" colspan="5"> </td></tr>
241 <tr><td align="center" colspan="5"> $Lang ::tr{'extrahd install or load driver'}</td></tr>
247 & Header
:: closebigbox
();
248 & Header
:: closepage
();