summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole/gestores/gestor_pxe.php
blob: 22a5e29271772961f52e5505d681839b61a4ab06 (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
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
<?php
include_once("../includes/ctrlacc.php");
include_once("../clases/AdoPhp.php");
include_once("../clases/XmlPhp.php");
include_once("../clases/MenuContextual.php");
include_once("../includes/constantes.php");
include_once("../includes/comunes.php");
include_once("../includes/CreaComando.php");
include_once("../idiomas/php/".$idioma."/aulas_".$idioma.".php");

$cmd=CreaComando($cadenaconexion);
if (!$cmd)
	Header('Location: '.$pagerror.'?herror=2'); // Error de conexión con servidor B.D.
//________________________________________________________________________________________________________


echo "<html>";
echo "<head>";
echo "<meta http-equiv='Refresh' content='1;URL=../principal/boot.php?idambito=". $_GET['idaula'] ."&nombreambito=" . $_GET['nombreambito'] . "&litambito=" . $_GET['litambito'] . "'>";
echo "<title> gestion de equipos </title>";
echo "<base target='principal'>";
echo "</head>";
echo "<body>";



#echo('litambito con valor:     '. $_GET['litambito']);
#echo ('idambito con valor:      ' . $_GET['idaula']);
#echo ('nombreambito con valor:      ' . $_GET['nombreambito']);

$lista = explode(";",$_POST['listOfItems']);
foreach ($lista as $sublista) {
	$elementos = explode("|",$sublista);
	$hostname=$elementos[1];
	$optboot=$elementos[0];
	ogBootServer($cmd,$optboot,$hostname,$idioma);
}
echo " </body>";
echo " </html> ";

function ogBootServer($cmd,$optboot,$hostname,$idioma) 
{	
global $cmd;
global $hostname;
global $optboot;
$cmd->CreaParametro("@optboot",$optboot,0);
$cmd->CreaParametro("@hostname",$hostname,0);
$cmd->texto="update ordenadores set arranque=@optboot where nombreordenador=@hostname";
$cmd->Ejecutar();

$cmd->texto="SELECT ordenadores.ip AS ip, ordenadores.mac AS mac, 
                        ordenadores.netiface AS netiface, aulas.netmask AS netmask,
                        aulas.router AS router, repositorios.ip AS iprepo,
                        aulas.nombreaula AS grupo,
                        menus.resolucion AS vga
                        FROM ordenadores 
                        JOIN aulas ON ordenadores.idaula=aulas.idaula 
                        JOIN repositorios ON ordenadores.idrepositorio=repositorios.idrepositorio 
                        LEFT JOIN menus ON ordenadores.idmenu=menus.idmenu 
                        WHERE ordenadores.nombreordenador='". $hostname ."'";


$rs=new Recordset; 
$rs->Comando=&$cmd; 
if (!$rs->Abrir()) echo "error";
$rs->Primero(); 
	$mac=$rs->campos["mac"];
	$netiface=$rs->campos["netiface"];
	$ip=$rs->campos["ip"];
	$router=$rs->campos["router"];
	$netmask=$rs->campos["netmask"]; 
	$repo=$rs->campos["iprepo"];   			
	$group=cleanString($rs->campos["grupo"]);
        if($rs->campos["vga"]== null)
                $vga="788";
        else
                $vga=$rs->campos["vga"];

$rs->Cerrar();

$cmd->texto="SELECT ipserveradm from entornos";
$rs=new Recordset;
$rs->Comando=&$cmd;
if (!$rs->Abrir()) echo "error";

$rs->Primero();
        $server=$rs->campos["ipserveradm"];
$rs->Cerrar();

switch ($idioma) {
    case eng:
        $idioma=en_GB;
        break;
    case esp:
        $idioma=es_ES;
        break;
    case cat:
        $idioma=ca_ES;
        break;
}


$infohost="vga=$vga ".
          "LANG=$idioma ".
          "ip=$ip:$server:$router:$netmask:$hostname:$netiface:none" .
          " group=$group" .
          " ogrepo=$repo" .
          " oglive=$repo" .
          " oglog=$server" .
          " ogshare=$server";

###################obtenemos las variables de red del aula.

	#02.1 obtenemos nombre fichero mac
	$pxedir="/opt/opengnsys/tftpboot/pxelinux.cfg";
	$mac=  substr($mac,0,2) . ":" . substr($mac,2,2) . ":" . substr($mac,4,2) . ":" . substr($mac,6,2) . ":" . substr($mac,8,2) . ":" . substr($mac,10,2);
	$macfile="$pxedir/01-" . str_replace(":","-",strtolower($mac));	


########## Escribimos el fichero mac
if (!$gestion=fopen($macfile, 'w+')) 
{
	echo "No se puede abrir el archivo ($macfile)";
	return;
}	
# cuales son los parametros del menu
fwrite($gestion, "DEFAULT syslinux/vesamenu.c32 \n");
fwrite($gestion, "MENU TITLE Aplicacion OpenGnsys \n");

$cmd->texto="SELECT itemboot.label, itemboot.kernel, 
			itemboot.append, menuboot.timeout, menuboot.prompt,
			 menuboot.description, menuboot_itemboot.default 
			From itemboot,menuboot_itemboot,menuboot 
			WHERE menuboot_itemboot.labelmenu=menuboot.label 
			AND menuboot_itemboot.labelitem=itemboot.label 
			AND menuboot.label='" . $optboot   . "'";
 
$rs->Comando=&$cmd; 
if (!$rs->Abrir()) echo "error";
$rs->Primero(); 
while (!$rs->EOF)
{ 
		fwrite($gestion, " \n");     
		fwrite($gestion, "LABEL " .  $rs->campos['label'] . " \n");
		fwrite($gestion, "MENU LABEL " . $rs->campos['label'] . " \n");
		if ( $rs->campos["default"] == true)
		{
			fwrite($gestion, "MENU DEFAULT \n");
		}
		fwrite($gestion, $rs->campos["kernel"] . " \n");
		# set netmask cird para ogclient
		$isnfsroot=substr_count($rs->campos["append"] , "boot=oginit");
		if ($isnfsroot > 0)
		{
			$netmask=$netmask;
		}	
		else
		{
			$netmask=netmask2cidr($netmask);
		}

		$iseac=substr_count($rs->campos["append"] , "boot=oginit");
		$isinitrd=substr_count($rs->campos["append"] , "initrd.gz");
		
		// delete vga value (included in the variable infohost)
		// borramos valor vga (incluido en la variable infohost)
		$append=preg_replace('/vga=.../','',$rs->campos["append"]);
		if ($iseac > 0)
		{
			fwrite($gestion, $append . " " . $infohost . " \n ");
		}

		elseif ($isinitrd > 0)
		{
		fwrite($gestion, $append . " ogrepo=" . $repo . " \n");
		}
		else
		{
			fwrite($gestion, $append . " \n"); 
		}

		$prompt=$rs->campos["prompt"];
		$timeout=$rs->campos["timeout"];

		$rs->Siguiente();
}
$rs->Cerrar();


	fwrite($gestion, " \n");  
	fwrite($gestion, "PROMPT " . $prompt ." \n");
	fwrite($gestion, "TIMEOUT " . $timeout . " \n");
	fwrite($gestion, " \n");  
	fclose($gestion); 
	exec("chmod 777 $macfile");
}

function netmask2cidr($netmask) {
          $cidr = 0;
          foreach (explode('.', $netmask) as $number) {
              for (;$number> 0; $number = ($number <<1) % 256) {
                  $cidr++;
               }
           }
           return $cidr;
 }

// Sustituye espacio por "_" y quita acentos y tildes.
function cleanString ($cadena) {
        $patron = array ('/ /','/á/','/é/','/í/','/ó/','/ú/','/ñ/','/Á/','/É/','/Í/','/Ó/','/Ú/','/Ñ/');
        $reemplazo = array ('_','a','e','i','o','u','n','A','E','I','O','U','N');
        return  preg_replace($patron,$reemplazo,$cadena);
}