source: client/engine/Inventory.lib @ 0a735488

918-git-images-111dconfigfileconfigure-oglivegit-imageslgromero-new-oglivemainmaint-cronmount-efivarfsmultivmmultivm-ogboot-installerogClonningEngineogboot-installer-jenkinsoglive-ipv6test-python-scriptsticket-301ticket-50ticket-50-oldticket-577ticket-585ticket-611ticket-612ticket-693ticket-700ubu24tplunification2use-local-agent-oglivevarios-instalacionwebconsole3
Last change on this file since 0a735488 was bc2279a, checked in by ramon <ramongomez@…>, 10 years ago

#677: Mejoras en función ogListSoftware:

  • Proceso según tipo de sistema operativo en vez de tipo de sistema de archivos.
  • Soporte para paquetes RPM en GNU/Linux y para paquetes en FreeBSD (se debe crear un nuevo cliente ogLive con los programas necesarios).

git-svn-id: https://opengnsys.es/svn/branches/version1.0@4443 a21b9725-9963-47de-94b9-378ad31fedc9

  • Property mode set to 100755
File size: 15.0 KB
RevLine 
[b550747]1#!/bin/bash
2#/**
3#@file    Inventory.lib
4#@brief   Librería o clase Inventory
5#@class   Inventory
6#@brief   Funciones para recogida de datos de inventario de hardware y software de los clientes.
[5acde60]7#@version 1.0.6
[b550747]8#@warning License: GNU GPLv3+
9#*/
10
11
12#/**
[cb5997b]13#         ogGetArch
14#@brief   Devuelve el tipo de arquitectura del cliente.
15#@return  str_arch - Arquitectura (i386 para 32 bits, x86_64 para 64 bits).
16#@version 0.9.2 - Primera versión para OpenGnSys.
17#@author  Ramon Gomez, ETSII Universidad de Sevilla
18#@date    2010-07-17
19#*/
[e4dafd6]20function ogGetArch ()
21{
22if [ "$*" == "help" ]; then
23    ogHelp "$FUNCNAME" "$FUNCNAME" "$FUNCNAME  =>  x86_64"
24    return
25fi
26
27[ -d /lib64 ] && echo "x86_64" || echo "i386"
[cb5997b]28}
29
30
31#/**
[045fd2d]32#         ogGetOsType int_ndisk int_npartition
33#@brief   Devuelve el tipo del sistema operativo instalado.
34#@param   int_ndisk      nº de orden del disco
35#@param   int_npartition nº de orden de la partición
36#@return  OSType - Tipo de sistema operativo.
37#@see     ogGetOsVersion
38#*/ ##
39function ogGetOsType ()
40{
41# Si se solicita, mostrar ayuda.
42if [ "$*" == "help" ]; then
43    ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_npartition" \
44           "$FUNCNAME 1 2  =>  Linux"
45    return
46fi
47ogGetOsVersion "$@" | cut -sf1 -d:
48}
49
50
51#/**
[4d2b852]52#         ogGetOsVersion int_ndisk int_nfilesys
[1d531f9]53#@brief   Devuelve la versión del sistema operativo instalado en un sistema de archivos.
[42669ebf]54#@param   int_ndisk      nº de orden del disco
[4d2b852]55#@param   int_nfilesys   nº de orden de la partición
[f35fadc]56#@return  OSType:OSVersion - tipo y versión del sistema operativo.
[4d2b852]57#@note    OSType = { Android, BSD, GrubLoader, Hurd, Linux, MacOS, Solaris, Windows, WinLoader }
[1d531f9]58#@note    Requisitos: awk, head, chroot
59#@exception OG_ERR_FORMAT    Formato incorrecto.
60#@exception OG_ERR_NOTFOUND  Disco o partición no corresponden con un dispositiv
61#@exception OG_ERR_PARTITION Fallo al montar el sistema de archivos.
[f35fadc]62#@version 0.9 - Primera versión para OpenGnSys
[1d531f9]63#@author  Ramon Gomez, ETSII Universidad de Sevilla
64#@date    2009-09-15
[f35fadc]65#@version 1.0.4 - Incluir tipos BSD, MacOS y Solaris.
66#@author  Ramon Gomez, ETSII Universidad de Sevilla
67#@date    2012-06-29
[4d2b852]68#@version 1.0.5 - Incluir tipos GrubLoader, Hurd y WinLoader, leer por defecto fichero /etc/os-release.
[988438f]69#@author  Ramon Gomez, ETSII Universidad de Sevilla
[6f4e407]70#@date    2013-10-07
[5acde60]71#@version 1.0.6 - Detectar GrubLoader al final.
72#@author  Ramon Gomez, ETSII Universidad de Sevilla
73#@date    2014-08-27
[1e7eaab]74#*/ ##
[42669ebf]75function ogGetOsVersion ()
76{
[1d531f9]77# Variables locales.
[988438f]78local MNTDIR TYPE DISTRIB VERSION IS64BIT FILE
[42669ebf]79# Si se solicita, mostrar ayuda.
[be74e2d]80if [ "$*" == "help" ]; then
[4d2b852]81    ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_nfilesys" \
82           "$FUNCNAME 1 2  =>  Linux:Ubuntu precise (12.04 LTS) 64 bits"
[1d531f9]83    return
84fi
[42669ebf]85# Error si no se reciben 2 parametros.
[055adcf]86[ $# = 2 ] || ogRaiseError $OG_ERR_FORMAT || return $?
[1d531f9]87
88# Montar la particion, si no lo estaba previamente.
89MNTDIR=$(ogMount $1 $2) || return $?
90
[988438f]91# Buscar tipo de sistema operativo.
92# Para GNU/Linux: leer descripción.
93TYPE="Linux"
[825dd06]94FILE="$MNTDIR/etc/os-release"
95[ -r $FILE ] && VERSION="$(awk -F= '$1~/PRETTY_NAME/ {gsub(/\"/,"",$2); print $2}' $FILE)"
[988438f]96# Si no se puede obtener, buscar en ficheros del sistema.
97if [ -z "$VERSION" ]; then
98    FILE="$MNTDIR/etc/lsb-release"
[825dd06]99    [ -r $FILE ] && VERSION="$(awk -F= '$1~/DESCRIPTION/ {gsub(/\"/,"",$2); print $2}' $FILE)"
[988438f]100    for DISTRIB in redhat SuSE mandrake gentoo; do
101        FILE="$MNTDIR/etc/${DISTRIB}-release"
[f35fadc]102        [ -r $FILE ] && VERSION="$(head -1 $FILE)"
[988438f]103    done
104    FILE="$MNTDIR/etc/arch-release"
105    [ -r $FILE ] && VERSION="Arch Linux"
106    FILE="$MNTDIR/etc/slackware-version"
107    [ -r $FILE ] && VERSION="Slackware $(cat $FILE)"
108fi
[825dd06]109# Si no se encuentra, intentar ejecutar "lsb_release".
110[ -z "$VERSION" ] && VERSION=$(chroot $MNTDIR lsb_release -d 2>/dev/null | awk -F":\t" '{print $2}')
111# Comprobar Linux de 64 bits.
112[ -n "$VERSION" ] && [ -e $MNTDIR/lib64 ] && IS64BIT="$MSG_64BIT"
[988438f]113# Para Android, leer fichero de propiedades.
114if [ -z "$VERSION" ]; then
115    TYPE="Android"
116    FILE="$MNTDIR/android*/system/build.prop"
117    [ -r $FILE ] && VERSION="Android $(awk -F= '$1~/(product.brand|build.version.release)/ {print $2}' $FILE | tr '\n' ' ')"
118    [ -e $MNTDIR/lib64 ] && IS64BIT="$MSG_64BIT"
119fi
120# Para GNU/Hurd, comprobar fichero de inicio (basado en os-prober).
121if [ -z "$VERSION" ]; then
122    TYPE="Hurd"
123    FILE="$MNTDIR/hurd/init"
124    [ -r $FILE ] && VERSION="GNU/Hurd"
125fi
126# Para Windows: leer la version del registro.
127if [ -z "$VERSION" ]; then
128    TYPE="Windows"
[b762358]129    VERSION=$(ogGetRegistryValue $MNTDIR software '\Microsoft\Windows NT\CurrentVersion\ProductName' 2>/dev/null)
[988438f]130    [ -n "$(ogGetRegistryValue $MNTDIR software '\Microsoft\Windows\CurrentVersion\ProgramW6432Dir' 2>/dev/null)" ] && IS64BIT="$MSG_64BIT"
131fi
132# Para cargador Windows: buscar versión en fichero BCD (basado en os-prober).
133if [ -z "$VERSION" ]; then
134    TYPE="WinLoader"
135    FILE="$(ogGetPath $MNTDIR/boot/bcd)"
136    if [ -n "$FILE" ]; then
137        for DISTRIB in "Windows 8" "Windows 7" "Windows Vista" \
138                       "Windwos Server 2008" "Windwos Server 2008 R2" \
139                       "Windwos Recovery Environment"; do
140            if grep -qs "$(echo "$DISTRIB" | sed 's/./&./g')" $FILE; then
141               VERSION="$DISTRIB loader"
142            fi
143        done
144    fi
145fi
[6f4e407]146# Para MacOS: detectar kernel y completar con fichero plist de información del sistema.
[988438f]147if [ -z "$VERSION" ]; then
148    TYPE="MacOS"
[045fd2d]149    # Kernel de Mac OS (no debe ser fichero de texto).
[6f4e407]150    FILE="$MNTDIR/mach_kernel"
[045fd2d]151    if [ -z "$(file -b $FILE | grep 'text')" ]; then
152        # Obtener tipo de kernel.
153        [ -n "$(file -b $FILE | grep 'Mach-O')" ] && VERSION="Mac OS"
154        [ -n "$(file -b $FILE | grep 'Mach-O 64-bit')" ] && IS64BIT="$MSG_64BIT"
155        # Datos de configuración de versión de Mac OS.
156        FILE="$MNTDIR/System/Library/CoreServices/SystemVersion.plist"
157        [ -r $FILE ] && VERSION=$(awk -F"[<>]" '
158                                      /ProductName/ {getline;s=$3}
159                                      /ProductVersion/ {getline;v=$3}
160                                      END {print s,v}' $FILE)
161        # Datos de recuperación de Mac OS.
162        FILE="$MNTDIR/com.apple.recovery.boot"
163        [ -r $FILE -a -n "$VERSION" ] && VERSION="$VERSION recovery"
164    fi
[988438f]165fi
166# Para FreeBSD: obtener datos del Kernel.
167### TODO Revisar solución.
168if [ -z "$VERSION" ]; then
169    TYPE="BSD"
170    FILE="$MNTDIR/boot/kernel/kernel"
171    if [ -r $FILE ]; then
172        VERSION="$(strings $FILE|awk '/@.*RELEASE/ {print $1,$2}')"
173        [ -n "$(file -b $FILE | grep 'x86-64')" ] && IS64BIT="$MSG_64BIT"
174    fi
175fi
176# Para Solaris: leer el fichero de versión.
177### TODO Revisar solución.
178if [ -z "$VERSION" ]; then
179    TYPE="Solaris"
180    FILE="$MNTDIR/etc/release"
181    [ -r $FILE ] && VERSION="$(head -1 $FILE)"
182fi
[5acde60]183# Para cargador GRUB, comprobar fichero de configuración.
184if [ -z "$VERSION" ]; then
185    TYPE="GrubLoader"
186    for FILE in $MNTDIR/{,boot/}grub/menu.lst; do
187        [ -r $FILE ] && VERSION="GRUB Loader"
188    done
189    for FILE in $MNTDIR/{,boot/}{grub{,2},EFI/*}/grub.cfg; do
190        [ -r $FILE ] && VERSION="GRUB2 Loader"
191    done
192fi
[1d531f9]193
[42669ebf]194# Mostrar resultado y salir sin errores.
[988438f]195[ -n "$VERSION" ] && echo "$TYPE:$VERSION $IS64BIT"
[d071d9b]196return 0
[1d531f9]197}
198
199
200#/**
[b550747]201#         ogListHardwareInfo
202#@brief   Lista el inventario de hardware de la máquina cliente.
203#@return  TipoDispositivo:Modelo    (por determinar)
204#@warning Se ignoran los parámetros de entrada.
205#@note    TipoDispositivo = { ata, bio, boa, cdr, cpu, dis, fir, mem, mod, mul, net, ser, vga }
206#@note    Requisitos: lshw, awk
[f35fadc]207#@version 0.1 - Primeras pruebas con OpenGnSys
[b550747]208#@author  Ramon Gomez, ETSII Universidad de Sevilla
209#@date    2009-07-28
[1e7eaab]210#*/ ##
[42669ebf]211function ogListHardwareInfo ()
212{
213# Si se solicita, mostrar ayuda.
[be74e2d]214if [ "$*" == "help" ]; then
[b550747]215    ogHelp "$FUNCNAME" "$FUNCNAME"
216    return
217fi
218
[42669ebf]219# Recopilación de disposibivos procesando la salida de \c lshw
[b550747]220ogEcho info "$MSG_HARDWAREINVENTORY}"
221lshw | awk 'BEGIN {type="mod";}
222        /product:/ {sub(/ *product: */,"");  prod=$0;}
223        /vendor:/  {sub(/ *vendor: */,"");   vend=$0;}
224        /version:/ {sub(/ *version: */,"v.");vers=$0;}
225        /size:/    {sub(/ *size: */,"");     size=$0;}
226        /\*-/      {if (type=="mem")
[c2b03eb]227                    print type"="size;
228                else
229                    if (type!="" && prod!="")
230                        print type"="vend,prod,size,vers;
231                type=prod=vend=vers=size="";}
[b550747]232        /-core/    {type="boa";}
233        /-firmware/ {type="bio";}
234        /-cpu/     {type="cpu";}
235        /-memory/  {type="mem";}
236        /-ide/     {type="ide";}
237        /-disk/    {type="dis";}
238        /-cdrom/   {type="cdr";}
239        /-display/ {type="vga";}
240        /-network/ {type="net";}
241        /-multimedia/ {type="mul";}
242        /-usb/     {type="usb";}
243        /-firewire/ {type="fir";}
244        /-serial/  {type="bus";}
245        END        {if (type!="" && prod!="")
[c2b03eb]246                    print type"="vend,prod,size,vers;}
[b550747]247      '
[42669ebf]248# */ (comentario para Doxygen)
[b550747]249}
250
251
[50a094c]252#/**
[42669ebf]253#         ogListSoftware int_ndisk int_npartition
[50a094c]254#@brief   Lista el inventario de software instalado en un sistema operativo.
[42669ebf]255#@param   int_ndisk      nº de orden del disco
256#@param   int_npartition nº de orden de la partición
257#@return  programa versión ...
[50a094c]258#@warning Se ignoran los parámetros de entrada.
259#@note    Requisitos: ...
260#@todo    Detectar software en Linux
[f35fadc]261#@version 0.1 - Primeras pruebas con OpenGnSys
[50a094c]262#@author  Ramon Gomez, ETSII Universidad de Sevilla
263#@date    2009-09-23
[89a5166]264#@version 1.0.5 - Aproximación para inventario de software de Mac OS.
265#@author  Ramon Gomez, ETSII Universidad de Sevilla
266#@date    2013-10-08
[bc2279a]267#@version 1.0.6 - Proceso depende del tipo de SO y sporte para FreeBSD.
268#@author  Ramon Gomez, ETSII Universidad de Sevilla
269#@date    2014-11-13
[1e7eaab]270#*/ ##
[42669ebf]271function ogListSoftware ()
272{
[50a094c]273# Variables locales.
[e4dafd6]274local MNTDIR TYPE DPKGDIR RPMDIR PACMANDIR KEYS KEYS32 k PROG VERS
[50a094c]275
[42669ebf]276# Si se solicita, mostrar ayuda.
[be74e2d]277if [ "$*" == "help" ]; then
[50a094c]278    ogHelp "$FUNCNAME" "$FUNCNAME 1 1"
279    return
280fi
[42669ebf]281# Error si no se reciben 2 parametros.
[50a094c]282[ $# = 2 ] || ogRaiseError $OG_ERR_FORMAT || return $?
283
[42669ebf]284# Obtener tipo de sistema de archivos y montarlo.
[50a094c]285MNTDIR=$(ogMount $1 $2) || return $?
[bc2279a]286TYPE=$(ogGetOsType $1 $2) || return $?
[50a094c]287
288case "$TYPE" in
[bc2279a]289    Linux)          # Software de GNU/Linux.
[c2b03eb]290        # Procesar paquetes dpkg.
291        DPKGDIR="${MNTDIR}/var/lib/dpkg"
292        if [ -r $DPKGDIR ]; then
293        #    dpkg --admindir=$DPKGDIR -l | \
294            # Proceso de fichero en sistemas de 64 bits.
295            if [ -e $MNTDIR/lib64 ]; then
296                awk '/Package:/ {if (pack!="") print pack,vers;
297                                 sub(/-dev$/,"",$2);
298                                 pack=$2}
299                     /Version:/ {sub(/^.*:/,"",$2); sub(/-.*$/,"",$2);
300                                 vers=$2}
301                     /Status:/  {if ($2!="install") pack=vers=""}
302                     END        {if (pack!="") print pack,vers}
[bc2279a]303                    ' $DPKGDIR/status | sort | uniq
[c2b03eb]304            else
305                # FIXME Sólo 32 bits
306                chroot "$MNTDIR" /usr/bin/dpkg -l | \
307                    awk '$1~/ii/ {sub(/-dev$/,"",$2); sub(/^.*:/,"",$3);
308                                  sub(/-.*$/,"",$3); print $2,$3}
309                        ' | sort | uniq
310            fi
311        fi
312        # Procesar paquetes RPM.
313        RPMDIR="${MNTDIR}/var/lib/rpm"
314        if [ -r $RPMDIR ]; then
[bc2279a]315            # Listar si está instalado el paquete "rpm" en el cliente.
316            if which rpm &>/dev/null; then
317                rm -f ${RPMDIR}/__db.*
318                rpm --dbpath $RPMDIR -qa --qf "%{NAME} %{VERSION}\n" 2>/dev/null | \
319                    awk '$1!~/-devel$/ {sub(/-.*$/,"",$2); print $0}' | sort | uniq
320                rm -f ${RPMDIR}/__db.*
321            else
322                # FIXME Sólo 32 bits
323                chroot $MNTDIR /bin/rpm -qa --qf "%{NAME} %{VERSION}\n" | \
324                    awk '$1!~/-devel$/ {sub(/-.*$/,"",$2); print $0}' | sort | uniq
325            fi
[c2b03eb]326        fi
[2e472ef3]327        # Procesar paquetes pacman.
328        PACMANDIR="${MNTDIR}/var/lib/pacman/local"
329        if [ -r $PACMANDIR ]; then
330            # FIXME Separar nombre y versión de los paquetes
331            ls -A $PACMANDIR
332        fi
[c2b03eb]333        ;;
[bc2279a]334    Windows)        # Software de Windows.
[c2b03eb]335        # Claves de registro para programas instalados: formato "{clave}".
336        KEYS=$(ogListRegistryKeys $MNTDIR software '\Microsoft\Windows\CurrentVersion\Uninstall')
[180f43e]337        KEYS32=$(ogListRegistryKeys $MNTDIR software '\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall')
[c2b03eb]338        # Mostrar los valores "DisplayName" y "DisplayVersion" para cada clave.
339        (for k in $KEYS; do
340            PROG=$(ogGetRegistryValue $MNTDIR software "\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\$k\\DisplayName")
341            if [ -n "$PROG" ]; then
342                VERS=$(ogGetRegistryValue $MNTDIR software "\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\$k\\DisplayVersion")
343                echo "$PROG $VERS"
344            fi
[180f43e]345        done
346        for k in $KEYS32; do
347            PROG=$(ogGetRegistryValue $MNTDIR software "\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\$k\\DisplayName")
348            if [ -n "$PROG" ]; then
349                VERS=$(ogGetRegistryValue $MNTDIR software "\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\$k\\DisplayVersion")
350                echo "$PROG $VERS"
351            fi
[c2b03eb]352        done) | sort | uniq
353        ;;
[bc2279a]354    MacOS)          # Software de Mac OS.
[89a5166]355        # Listar directorios de aplicaciones (falta buscar versiones en ficheros .plist).
356        find "${MNTDIR}/Applications" -type d -name "*.app" -prune -print | \
357                while read k; do
358                    echo "$(basename "$k" .app)"
359                done | sort
360        ;;
[bc2279a]361    BSD)            # Software de FreeBSD.
362        sqlite3 $MNTDIR/var/db/pkg/local.sqlite <<<"SELECT name FROM pkg_search;" 2>/dev/null | \
363                sed 's/\(.*\)-\(.*\)/\1 \2/g' | sort
364        ;;
[c2b03eb]365    *)  ogRaiseError $OG_ERR_PARTITION "$1, $2"
[50a094c]366        return $? ;;
367esac
368}
369
[bc2279a]370
[be74e2d]371#/**  @function ogInfoCache: @brief muestra la informacion de la CACHE.
372#@param  sin parametros
373#@return  texto que se almacena en $IP.-InfoCache.  punto_montaje, tama?oTotal, TamanioOcupado, TaminioLibre, imagenes dentro de la cahce
374#@warning  Salidas de errores no determinada
375#@warning   printf no soportado por busybox
376#@attention
377#@version 0.1   Date: 27/10/2008 Author Antonio J. Doblas Viso. Universidad de Malaga
378#*/
[e4dafd6]379function ogInfoCache ()
380{
381local info infoFilesystem infoSize infoUsed infoUsedPorcet infoMountedOn content
[be74e2d]382if ogMountCache
383then
384        info=`df -h | grep $OGCAC`
385        infoFilesystem=`echo $info | cut -f1 -d" "`
386        infoSize=`echo $info | cut -f2 -d" "`
387        infoUsed=`echo $info | cut -f3 -d" "`
388        infoAvail=`echo $info | cut -f4 -d" "`
389        infoUsedPorcet=`echo $info | cut -f5 -d" "`
390        infoMountedOn=`echo $info | cut -f2 -d" "`
391        if `ls  ${OGCAC}$OGIMG > /dev/null 2>&1`
392        then
393               cd ${OGCAC}${OPENGNSYS}
394                #content=`find images/ -type f -printf "%h/  %f  %s \n"`   busybox no soporta printf
395                content=`find images/ -type f`
396                cd /
397                echo $info
398                echo -ne $content
399                echo " "
400                #echo "$info" > ${OGLOG}/${IP}-InfoCache
401                #echo "$content" >> {$OGLOG}/${IP}-InfoCache
402        else
403                echo $info
404                #echo "$info" > {$OGLOG}/${IP}-InfoCache
405        fi
406        ogUnmountCache
407else
408        echo " "
409        #echo " " > {$OGLOG}/${IP}-InfoCache
410
411fi
412}
[e4dafd6]413
Note: See TracBrowser for help on using the repository browser.