source: client/engine/FileSystem.lib @ c26ed4c

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 c26ed4c was 8044615, checked in by ramon <ramongomez@…>, 11 years ago

#397: Mejorar rendimiento en detección de sistemas de archivos FAT en función ogGetFsType.

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

  • Property mode set to 100755
File size: 33.4 KB
RevLine 
[2e15649]1#!/bin/bash
2#/**
3#@file    FileSystem.lib
[9f57de01]4#@brief   Librería o clase FileSystem
[2e15649]5#@class   FileSystem
6#@brief   Funciones para gestión de sistemas de archivos.
[452ade2]7#@version 1.0.5
[2e15649]8#@warning License: GNU GPLv3+
9#*/
10
11
[be81649]12#/**
[b6208d8]13#         ogCheckFs int_ndisk int_nfilesys
[be81649]14#@brief   Comprueba el estado de un sistema de archivos.
[42669ebf]15#@param   int_ndisk      nº de orden del disco
[b6208d8]16#@param   int_nfilesys   nº de orden del sistema de archivos
[be81649]17#@return  (nada)
18#@exception OG_ERR_FORMAT    Formato incorrecto.
19#@exception OG_ERR_NOTFOUND  Disco o particion no corresponden con un dispositivo.
20#@exception OG_ERR_PARTITION Partición desconocida o no accesible.
21#@note    Requisitos: *fsck*
[a3348ce]22#@warning No se comprueban sistemas de archivos montados o bloqueados.
23#@todo    Definir salidas.
[1616b6e]24#@version 0.9 - Primera adaptación para OpenGnSys.
[be81649]25#@author  Ramon Gomez, ETSII Universidad de Sevilla
26#@date    2009-10-07
[1616b6e]27#@version 1.0.2 - Ignorar códigos de salida de comprobación (no erróneos).
28#@author  Ramon Gomez, ETSII Universidad de Sevilla
29#@date    2011-09-23
[02f271b]30#@version 1.0.4 - Soportar HFS/HFS+.
31#@author  Ramon Gomez, ETSII Universidad de Sevilla
32#@date    2012-05-21
[3198512]33#@version 1.0.5 - Desmontar antes de comprobar, soportar Btrfs y ExFAT.
[3011075]34#@author  Ramon Gomez, ETSII Universidad de Sevilla
35#@date    2012-09-05
[6e390b1]36#*/ ##
[42669ebf]37function ogCheckFs ()
38{
[3458879]39# Variables locales.
[cbbb046]40local PART TYPE PROG PARAMS CODES ERRCODE
41# Si se solicita, mostrar ayuda.
42if [ "$*" == "help" ]; then
[e087194]43    ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_nfilesys" \
[cbbb046]44           "$FUNCNAME 1 1"
45    return
46fi
[be81649]47
[1616b6e]48# Error si no se reciben 2 parámetros.
[1956672]49[ $# == 2 ] || ogRaiseError $OG_ERR_FORMAT || return $?
[1616b6e]50# Obtener partición.
[1956672]51PART="$(ogDiskToDev $1 $2)" || return $?
[be81649]52
53TYPE=$(ogGetFsType $1 $2)
54case "$TYPE" in
[99d1786]55    EXT[234])     PROG="e2fsck"; PARAMS="-y"; CODES=(1 2) ;;
[e79df1d]56    BTRFS)        PROG="btrfsck"; CODES=1 ;;
[ea8051a]57    REISERFS)     PROG="fsck.reiserfs"; PARAMS="<<<\"Yes\""; CODES=(1 2) ;;
[1616b6e]58    REISER4)      PROG="fsck.reiser4"; PARAMS="-ay" ;;
[ea8051a]59    JFS)          PROG="fsck.jfs"; CODES=(1 2) ;;
[a3348ce]60    XFS)          PROG="fsck.xfs" ;;
[5804229]61    NTFS)         PROG="ntfsfix" ;;
[3198512]62    EXFAT)        PROG="fsck.exfat" ;;
[5804229]63    FAT32)        PROG="dosfsck"; PARAMS="-a"; CODES=1 ;;
64    FAT16)        PROG="dosfsck"; PARAMS="-a"; CODES=1 ;;
65    FAT12)        PROG="dosfsck"; PARAMS="-a"; CODES=1 ;;
[1cbf9e0]66    HFS)          PROG="fsck.hfs"; PARAMS="-f" ;;
67    HFSPLUS)      PROG="fsck.hfs"; PARAMS="-f" ;;
[3198512]68    UFS)          PROG="fsck.ufs" ;;
[c7d9af7]69    *)            ogRaiseError $OG_ERR_PARTITION "$1, $2, $TYPE"
[1616b6e]70                  return $? ;;
[1956672]71esac
[1616b6e]72# Error si el sistema de archivos esta montado o bloqueado.
[3011075]73ogUnmount $1 $2
[a3348ce]74if ogIsMounted $1 $2; then
[7250491]75    ogRaiseError $OG_ERR_PARTITION "$1 $2"       # Indicar nuevo error
[a3348ce]76    return $?
77fi
78if ogIsLocked $1 $2; then
79    ogRaiseError $OG_ERR_LOCKED "$1 $2"
80    return $?
81fi
[1616b6e]82# Comprobar en modo uso exclusivo.
[a3348ce]83ogLock $1 $2
[7b9dedd]84trap "ogUnlock $1 $2" 1 2 3 6 9
[a3348ce]85eval $PROG $PARAMS $PART
86ERRCODE=$?
87case $ERRCODE in
[ea8051a]88    0|${CODES[*]})
89            ERRCODE=0 ;;
90    127)    ogRaiseError $OG_ERR_NOTEXEC "$PROG"
91            ERRCODE=$OG_ERR_NOTEXEC ;;
92    *)      ogRaiseError $OG_ERR_PARTITION "$1 $2"
93            ERRCODE=$OG_ERR_PARTITION ;;
[a3348ce]94esac
95ogUnlock $1 $2
96return $ERRCODE
[1956672]97}
98
99
[2e15649]100#/**
[e087194]101#         ogExtendFs int_ndisk int_nfilesys
[3f49cf7]102#@brief   Extiende un sistema de archivos al tamaño de su partición.
[42669ebf]103#@param   int_ndisk      nº de orden del disco
[b6208d8]104#@param   int_nfilesys   nº de orden del sistema de archivos
[3f49cf7]105#@return  (nada)
106#@exception OG_ERR_FORMAT   Formato incorrecto.
107#@exception OG_ERR_NOTFOUND Disco o particion no corresponden con un dispositivo.
108#@exception OG_ERR_PARTITION Partición desconocida o no accesible.
109#@note    Requisitos: *resize*
[985bef0]110#@version 0.1 -  Integracion para Opengnsys  -  EAC:   EnlargeFileSystem() en ATA.lib
111#@author  Antonio J. Doblas Viso. Universidad de Malaga
112#@date    2008-10-27
[b6208d8]113#@version 0.9 - Primera adaptacion para OpenGnSys.
[3f49cf7]114#@author  Ramon Gomez, ETSII Universidad de Sevilla
115#@date    2009-09-23
[452ade2]116#@version 1.0.5 - Soporte para BTRFS.
117#@author  Ramon Gomez, ETSII Universidad de Sevilla
118#@date    2012-06-28
[6e390b1]119#*/ ##
[42669ebf]120function ogExtendFs ()
121{
[3f49cf7]122# Variables locales.
[3198512]123local PART TYPE PROG PARAMS ERRCODE DOMOUNT
[3f49cf7]124
[1616b6e]125# Si se solicita, mostrar ayuda.
[3f49cf7]126if [ "$*" == "help" ]; then
[e087194]127    ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_nfilesys" \
[3f49cf7]128           "$FUNCNAME 1 1"
129    return
130fi
[1616b6e]131# Error si no se reciben 2 parámetros.
[3f49cf7]132[ $# == 2 ] || ogRaiseError $OG_ERR_FORMAT || return $?
133
[1616b6e]134# Obtener partición.
[3f49cf7]135PART="$(ogDiskToDev $1 $2)" || return $?
136
[1616b6e]137# Redimensionar al tamano máximo según el tipo de partición.
[be81649]138TYPE=$(ogGetFsType $1 $2)
139case "$TYPE" in
[2717297]140    EXT[234])   PROG="resize2fs"; PARAMS="-f" ;;
[3198512]141    BTRFS)      PROG="btrfs"; PARAMS="filesystem resize max"
142                DOMOUNT=1     # Debe estar montado.
143                ;;
144    REISERFS|REISER4)
145                PROG="resize_reiserfs"; PARAMS="-f" ;;
[c452625]146    JFS)        ;;            # No se reduce (por el momento).
147    XFS)        ;;            # No se reduce (por el momento).
[5804229]148    NTFS)       PROG="ntfsresize"; PARAMS="<<<\"y\" -f" ;;
[c452625]149    EXFAT)      ;;            # No se reduce (por el momento).
150    FAT32|FAT16)  ;;          # No se reduce (probar "fatresize").
151    HFS|HFSPLUS)  ;;          # No se reduce (por el momento).
152    UFS)        ;;            # No se reduce (por el momento).
[2717297]153    *)          ogRaiseError $OG_ERR_PARTITION "$1 $2 $TYPE"
154                return $? ;;
[3f49cf7]155esac
[c452625]156# Salida normal si no se va a aplicar la operación.
157[ -z "$PROG" ] && return
[3198512]158# Error si el sistema de archivos no se queda en el estado de montaje adecuado.
159if [ "$DOMOUNT" ]; then
[5962edd]160    PART=$(ogMount $1 $2) || return $?                      # Indicar nuevo error
[3198512]161else
162    ogUnmount $1 $2 2>/dev/null
[7376c5b]163    if ogIsMounted $1 $2; then
164         ogRaiseError $OG_ERR_PARTITION "$1 $2"             # Indicar nuevo error
165         return $?
166    fi
[2717297]167fi
[3198512]168# Error si el sistema de archivos está bloqueado.
[2717297]169if ogIsLocked $1 $2; then
170    ogRaiseError $OG_ERR_LOCKED "$1 $2"
171    return $?
172fi
[1616b6e]173# Redimensionar en modo uso exclusivo.
[2717297]174ogLock $1 $2
[7b9dedd]175trap "ogUnlock $1 $2" 1 2 3 6 9
[1c04494]176eval $PROG $PARAMS $PART &>/dev/null
[2717297]177ERRCODE=$?
178case $ERRCODE in
179    0)    ;;
[ea8051a]180    127)  ogRaiseError $OG_ERR_NOTEXEC "$PROG"
181          ERRCODE=$OG_ERR_NOTEXEC ;;
182    *)    ogRaiseError $OG_ERR_PARTITION "$1 $2"
183          ERRCODE=$OG_ERR_PARTITION ;;
[2717297]184esac
185ogUnlock $1 $2
186return $ERRCODE
[3f49cf7]187}
188
189
190#/**
[e087194]191#         ogFormat int_ndisk int_nfilesys | CACHE
[e09311f]192#@see     ogFormatFs ogFormatCache
[6e390b1]193#*/ ##
[42669ebf]194function ogFormat ()
195{
[e09311f]196case "$*" in
197    CACHE|cache)  ogFormatCache ;;
198    *)            ogFormatFs "$@" ;;
199esac
[40488da]200}
201
202
203#/**
[b6208d8]204#         ogFormatFs int_ndisk int_nfilesys [type_fstype] [str_label]
[40488da]205#@brief   Formatea un sistema de ficheros según el tipo de su partición.
[42669ebf]206#@param   int_ndisk      nº de orden del disco
[b6208d8]207#@param   int_nfilesys   nº de orden del sistema de archivos
[3198512]208#@param   type_fstype    mnemónico de sistema de ficheros a formatear (opcional al reformatear)
[42669ebf]209#@param   str_label      etiqueta de volumen (opcional)
[40488da]210#@return  (por determinar)
[3198512]211#@exception OG_ERR_FORMAT    Formato de ejecución incorrecto.
[40488da]212#@exception OG_ERR_NOTFOUND  Disco o particion no corresponden con un dispositivo.
213#@exception OG_ERR_PARTITION Partición no accesible o desconocida.
[a3348ce]214#@note    Requisitos:   mkfs*
215#@warning No formatea particiones montadas ni bloqueadas.
216#@todo    Definir salidas.
[b6208d8]217#@version 0.9 - Primera versión para OpenGnSys.
[40488da]218#@author  Ramon Gomez, ETSII Universidad de Sevilla
[a3348ce]219#@date    2009-10-08
[066fa01]220#@version 1.0.4 - Solucionado error cuando no se detecta tipo de sistema de ficheros pero si se indica.
[e068946]221#@author  Universidad de Huelva
222#@date    2012-04-11
[3198512]223#@version 1.0.5 - Comprobar errores al inicio e independizar del tipo de tabla de particiones.
[066fa01]224#@author  Universidad de Huelva
[3198512]225#@date    2013-05-16
[1e7eaab]226#*/ ##
[42669ebf]227function ogFormatFs ()
228{
[40488da]229# Variables locales
[3198512]230local PART ID TYPE LABEL PROG PARAMS LABELPARAM ERRCODE
[40488da]231
[42669ebf]232# Si se solicita, mostrar ayuda.
[40488da]233if [ "$*" == "help" ]; then
[e087194]234    ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_nfilesys [str_label]" \
[40488da]235           "$FUNCNAME 1 1" \
[be81649]236           "$FUNCNAME 1 1 EXT4" \
[55ad138c]237           "$FUNCNAME 1 1 \"DATA\"" \
238           "$FUNCNAME 1 1 EXT4 \"DATA\""
[40488da]239    return
240fi
[1e7eaab]241# Error si no se reciben entre 2 y 4 parámetros.
[be81649]242[ $# -ge 2 -a $# -le 4 ] || ogRaiseError $OG_ERR_FORMAT || return $?
[8e29877]243# Obtener fichero de dispositivo.
[40488da]244PART="$(ogDiskToDev $1 $2)" || return $?
[8e29877]245# Error si la partición está montada o bloqueada.
246if ogIsMounted $1 $2; then
247    ogRaiseError $OG_ERR_PARTITION "$1 $2"       # Indicar nuevo error
248    return $?
249fi
250if ogIsLocked $1 $2; then
251    ogRaiseError $OG_ERR_LOCKED "$1 $2"
252    return $?
253fi
[3198512]254# Si no se indica el tipo de sisitema de archivos, intentar obtenerlo.
255TYPE="${3:-$(ogGetFsType $1 $2)}"
256# Error, si no especifica el tipo de sistema de archivos a formatear.
257[ -n "$TYPE" ] || ogRaiseError $OG_ERR_FORMAT "$1 $2 ..." || return $?
[be81649]258
[3198512]259# Elegir tipo de formato.
260case "$TYPE" in
261    EXT2)         PROG="mkfs.ext2" ;;
262    EXT3)         PROG="mkfs.ext3" ;;
263    EXT4)         PROG="mkfs.ext4" ;;
264    BTRFS)        PROG="mkfs.btrfs" ;;
265    REISERFS)     PROG="mkfs.reiserfs"; PARAMS="-f"; LABELPARAM="-l" ;;
266    REISER4)      PROG="mkfs.reiser4"; PARAMS="-fy" ;;
267    XFS)          PROG="mkfs.xfs"; PARAMS="-f" ;;
268    JFS)          PROG="mkfs.jfs"; PARAMS="<<<\"y\"" ;;
269    LINUX-SWAP)   PROG="mkswap" ;;
270    NTFS)         PROG="mkntfs"; PARAMS="-f" ;;
271    EXFAT)        PROG="mkfs.exfat"; LABELPARAM="-n" ;;
272    FAT32)        PROG="mkdosfs"; PARAMS="-F 32"; LABELPARAM="-n" ;;
273    FAT16)        PROG="mkdosfs"; PARAMS="-F 16"; LABELPARAM="-n" ;;
274    FAT12)        PROG="mkdosfs"; PARAMS="-F 12"; LABELPARAM="-n" ;;
275    HFS)          PROG="mkfs.hfs" ;;
276    HFSPLUS)      PROG="mkfs.hfsplus"; LABELPARAM="-v" ;;
277    UFS)          PROG="mkfs.ufs"; PARAMS="-O 2" ;;
278    *)            ogRaiseError $OG_ERR_PARTITION "$1 $2 $TYPE"
279                  return $? ;;
[40488da]280esac
[be81649]281
[1e7eaab]282# Etiquetas de particion.
[be81649]283if [ -z "$LABEL" ]; then
284    [ "$4" != "CACHE" ] || ogRaiseError $OG_ERR_FORMAT "$MSG_RESERVEDVALUE: CACHE" || return $?
[3198512]285    [ -n "$4" ] && PARAMS="$PARAMS ${LABELPARAM:-"-L"} $4"
[be81649]286else
[3198512]287    PARAMS="$PARAMS ${LABELPARAM:-"-L"} $LABEL"
[be81649]288fi
[40488da]289
[8e29877]290# Formatear en modo uso exclusivo (desmontar siempre).
[40488da]291ogLock $1 $2
[7b9dedd]292trap "ogUnlock $1 $2" 1 2 3 6 9
[3198512]293umount $PART 2>/dev/null
[a3348ce]294eval $PROG $PARAMS $PART 2>/dev/null
[be81649]295ERRCODE=$?
296case $ERRCODE in
297    0)    ;;
298    127)  ogRaiseError $OG_ERR_NOTEXEC "$PROG" ;;
299    *)    ogRaiseError $OG_ERR_PARTITION "$1 $2" ;;
300esac
[40488da]301ogUnlock $1 $2
[be81649]302return $ERRCODE
[40488da]303}
304
305
306#/**
[7b9dedd]307#         ogGetFsSize int_ndisk int_npartition [str_unit]
308#@brief Muestra el tamanio del sistema de archivos indicado, permite definir la unidad de medida, por defecto GB
309#@param   int_ndisk      nº de orden del disco
310#@param   int_npartition nº de orden de la partición
311#@param   str_unit       unidad (opcional, por defecto: KB)
312#@return  float_size - Tamaño del sistema de archivos
313#@note    str_unit = { KB, MB, GB, TB }
314#@exception OG_ERR_FORMAT   Formato incorrecto.
315#@exception OG_ERR_NOTFOUND Disco o partición no corresponden con un dispositivo.
316#@version 0.1 -  Integracion para Opengnsys  -  EAC:  SizeFileSystem() en FileSystem.lib
317#@author  Antonio J. Doblas Viso. Universidad de Malaga
318#@date    2008-10-27
319#@version 1.0.4 - Adaptación de las salidas.
320#@author  Ramon Gomez, ETSII Universidad de Sevilla
321#@date    2012-06-18
322#*/ ##
323function ogGetFsSize ()
324{
325# Variables locales.
[68f360e]326local MNTDIR UNIT VALUE FACTOR SIZE
[7b9dedd]327# Si se solicita, mostrar ayuda.
328if [ "$*" == "help" ]; then
329    ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_npartition [str_unit]" \
330           "$FUNCNAME 1 1  =>  15624188" \
331           "$FUNCNAME 1 1 KB  =>  15624188"
332    return
333fi
334# Error si no se reciben 2 o 3 parámetros.
335[ $# == 2 ] || [ $# == 3 ] || ogRaiseError $OG_ERR_FORMAT || return $?
[68f360e]336# Obtener unidad y factor de medida.
[7b9dedd]337UNIT="$3"
338UNIT=${UNIT:-"KB"}
339case "$UNIT" in
340    [kK]B)
341        FACTOR=1 ;;
342    MB) FACTOR=1024 ;;
343    GB) FACTOR=$[1024*1024] ;;
344    TB) FACTOR=$[1024*1024*1024] ;;
345    *)  ogRaiseError $OG_ERR_FORMAT "$3 != { KB, MB, GB, TB }"
346        return $? ;;
347esac
[68f360e]348
349# Obtener el tamaño del sistema de archivo (si no está formateado; tamaño = 0).
350MNTDIR="$(ogMount $1 $2 2>/dev/null)"
351if [ -n "$MNTDIR" ]; then
352    VALUE=$(df -BK "$MNTDIR" | awk '{getline; print $2}')
353    SIZE=$(echo "$VALUE $FACTOR" | awk '{printf "%f\n", $1/$2}')
354else
355    SIZE=0
356fi
357# Devolver el tamaño (quitar decimales si son 0).
358echo ${SIZE%.0*}
[7b9dedd]359}
360
361
362#/**
[b6208d8]363#         ogGetFsType int_ndisk int_nfilesys
[9f57de01]364#@brief   Devuelve el mnemonico con el tipo de sistema de archivos.
[42669ebf]365#@param   int_ndisk      nº de orden del disco
[b6208d8]366#@param   int_nfilesys   nº de orden del sistema de archivos
[9f57de01]367#@return  Mnemonico
[264b1bc]368#@note    Mnemonico: { EXT2, EXT3, EXT4, BTRFS, REISERFS, XFS, JFS, FAT12, FAT16, FAT32, NTFS, LINUX-SWAP, LINUX-LVM, LINUX-RAID, HFS, HFSPLUS, CACHE }
[9f57de01]369#@exception OG_ERR_FORMAT   Formato incorrecto.
370#@exception OG_ERR_NOTFOUND Disco o particion no corresponden con un dispositivo.
[985bef0]371#@version 0.1 -  Integracion para Opengnsys  -  EAC:   TypeFS() en ATA.lib
372#@author  Antonio J. Doblas Viso. Universidad de Malaga
373#@date    2008-10-27
[5804229]374#@version 0.9 - Primera adaptacion para OpenGnSys.
[9f57de01]375#@author  Ramon Gomez, ETSII Universidad de Sevilla
[5dbb046]376#@date    2009-07-21
[5804229]377#@version 1.0.2 - Obtención de datos reales de sistemas de ficheros.
378#@author  Ramon Gomez, ETSII Universidad de Sevilla
379#@date    2011-12-02
[264b1bc]380#@version 1.0.5 - Usar "blkid" para detectar tipo de sistema de archivo.
[b6208d8]381#@author  Ramon Gomez, ETSII Universidad de Sevilla
[264b1bc]382#@date    2014-06-10
[1e7eaab]383#*/ ##
[cbbb046]384function ogGetFsType ()
385{
[59f9ad2]386# Variables locales.
[b6208d8]387local PART ID TYPE
[1e7eaab]388# Si se solicita, mostrar ayuda.
[59f9ad2]389if [ "$*" == "help" ]; then
[e087194]390    ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_nfilesys" \
[59f9ad2]391           "$FUNCNAME 1 1  =>  NTFS"
392    return
393fi
[1e7eaab]394# Error si no se reciben 2 parámetros.
[a5df9b9]395[ $# == 2 ] || ogRaiseError $OG_ERR_FORMAT || return $?
[2e15649]396
[264b1bc]397# Detectar tipo de sistema de archivo (independientemente del tipo de partición).
[b6208d8]398PART=$(ogDiskToDev "$1" "$2") || return $?
[264b1bc]399TYPE=$(blkid -o export $PART | awk -F= '$1~/^TYPE/ { print toupper($2) }')
400
401# Componer valores correctos.
402case "$TYPE" in
403    EXT4)      # Comprobar si es caché o Ext4.
404               if [ "$1 $2" == "$(ogFindCache)" ]; then
405                   ogIsFormated $1 $2 2>/dev/null && TYPE="CACHE"
406               fi
[5804229]407               ;;
[8044615]408    VFAT)      TYPE="$(blkid -po export $PART | awk -F= '$1~/^VERSION$/ { print toupper($2) }')" ;;
[264b1bc]409    SWAP)      TYPE="LINUX-SWAP" ;;
410    LVM*)      TYPE="LINUX-LVM" ;;
411    *RAID*)    TYPE="LINUX-RAID" ;;
412    *_MEMBER)  TYPE="${TYPE/_MEMBER/}" ;;
[2e15649]413esac
[5804229]414
415[ -n "$TYPE" ] && echo "$TYPE"
[2e15649]416}
417
[aae34f6]418
[a3348ce]419#/**
[b6208d8]420#         ogGetMountPoint int_ndisk int_nfilesys
[a3348ce]421#@brief   Devuelve el punto de montaje de un sistema de archivos.
[42669ebf]422#@param   int_ndisk      nº de orden del disco
[b6208d8]423#@param   int_nfilesys   nº de orden del sistema de archivos
[f8f4dfa]424#@return  Punto de montaje
425#@exception OG_ERR_FORMAT    Formato incorrecto.
426#@exception OG_ERR_NOTFOUND  Disco o particion no corresponden con un dispositivo.
[3458879]427#@note    Requisitos: \c mount* \c awk
[b6208d8]428#@version 0.9 - Primera versión para OpenGnSys.
[f8f4dfa]429#@author  Ramon Gomez, ETSII Universidad de Sevilla
430#@date    2009-10-15
[1e7eaab]431#*/ ##
[42669ebf]432function ogGetMountPoint ()
433{
[a3348ce]434# Variables locales
435local PART
[1e7eaab]436# Si se solicita, mostrar ayuda.
[a3348ce]437if [ "$*" == "help" ]; then
[e087194]438    ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_nfilesys" \
[a3348ce]439           "$FUNCNAME 1 1  =>  /mnt/sda1"
440    return
441fi
[1e7eaab]442# Error si no se reciben 2 parámetros.
[a3348ce]443[ $# == 2 ] || ogRaiseError $OG_ERR_FORMAT || return $?
[1e7eaab]444# Obtener partición.
[a3348ce]445PART="$(ogDiskToDev $1 $2)" || return $?
446
[2af9738]447mount | awk -v P=$PART '{if ($1==P) {print $3}}'
[a3348ce]448}
449
450
451#/**
[b6208d8]452#         ogIsFormated int_ndisk int_nfilesys
[5a4f399]453#@brief   Comprueba si un sistema de archivos está formateado.
454#@param   int_ndisk      nº de orden del disco o volumen.
[b6208d8]455#@param   int_nfilesys   nº de orden del sistema de archivos
[7685100]456#@return  Código de salida: 0 - formateado, 1 - sin formato o error.
[5a4f399]457#@version 0.91 - Adaptación inicial para comprobar que existe caché.
458#@author  Ramon Gomez, ETSII Universidad de Sevilla
459#@date    2010-03-18
[7685100]460#@version 1.0.1 - Devolver falso en caso de error.
461#@author  Ramon Gomez, ETSII Universidad de Sevilla
462#@date    2011-05-18
[b6208d8]463#@version 1.0.5 - Dejar de usar "parted".
464#@author  Ramon Gomez, ETSII Universidad de Sevilla
[3011075]465#@date    2012-09-04
[5a4f399]466#*/ ##
467function ogIsFormated ()
468{
469# Variables locales
470local DISK
471if [ "$*" == "help" ]; then
[e087194]472    ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_nfilesys" \
[5a4f399]473           "if $FUNCNAME 1 1; then ... ; fi"
474    return
475fi
[7685100]476# Falso, en caso de error.
477[ $# == 2 ] || return 1
[5a4f399]478
[5962edd]479test -n "$(ogMount "$1" "$2" 2>/dev/null)"
[5a4f399]480}
481
482
483#/**
[b32f902]484#         ogIsLocked int_ndisk int_npartition
485#@brief   Comprueba si una partición está bloqueada por una operación de uso exclusivo.
486#@param   int_ndisk      nº de orden del disco
487#@param   int_npartition nº de orden de la partición
488#@return  Código de salida: 0 - bloqueado, 1 - sin bloquear o error.
489#@note    El fichero de bloqueo se localiza en \c /var/lock/part, siendo \c part el dispositivo de la partición, sustituyendo el carácter "/" por "-".
490#@version 0.9 - Primera versión para OpenGnSys.
491#@author  Ramon Gomez, ETSII Universidad de Sevilla
492#@date    2009-09-03
493#@version 1.0.1 - Devolver falso en caso de error.
494#@author  Ramon Gomez, ETSII Universidad de Sevilla
495#@date    2011-05-18
496#*/ ##
497function ogIsLocked ()
498{
499# Variables locales
500local PART LOCKFILE
501
502# Si se solicita, mostrar ayuda.
503if [ "$*" == "help" ]; then
504    ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_npartition" \
505           "if $FUNCNAME 1 1; then ... ; fi"
506    return
507fi
508# Falso, en caso de error.
509[ $# == 2 ] || return 1
510
511# Obtener partición.
512PART="$(ogDiskToDev $1 $2)" || return 1
513
514# Comprobar existencia del fichero de bloqueo.
515LOCKFILE="/var/lock/lock${PART//\//-}"
516test -f $LOCKFILE
517}
518
519
520#/**
[b6208d8]521#         ogIsMounted int_ndisk int_nfilesys
[a3348ce]522#@brief   Comprueba si un sistema de archivos está montado.
[42669ebf]523#@param   int_ndisk      nº de orden del disco
[b6208d8]524#@param   int_nfilesys   nº de orden del sistema de archivos
[7685100]525#@return  Código de salida: 0 - montado, 1 - sin montar o error.
[b6208d8]526#@version 0.9 - Primera versión para OpenGnSys.
[f8f4dfa]527#@author  Ramon Gomez, ETSII Universidad de Sevilla
528#@date    2009-10-15
[7685100]529#@version 1.0.1 - Devolver falso en caso de error.
530#@author  Ramon Gomez, ETSII Universidad de Sevilla
531#@date    2011-05-18
[1e7eaab]532#*/ ##
[42669ebf]533function ogIsMounted ()
534{
535# Si se solicita, mostrar ayuda.
[a3348ce]536if [ "$*" == "help" ]; then
[e087194]537    ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_nfilesys" \
[a3348ce]538           "if $FUNCNAME 1 1; then ... ; fi"
539    return
540fi
[7685100]541# Falso, en caso de error.
542[ $# == 2 ] || return 1
[a3348ce]543
544test -n "$(ogGetMountPoint $1 $2)"
545}
546
547
[aae34f6]548#/**
[b32f902]549#         ogIsWritable int_ndisk int_nfilesys
550#@brief   Comprueba si un sistema de archivos está montado de lectura y escritura.
[42669ebf]551#@param   int_ndisk      nº de orden del disco
[b32f902]552#@param   int_nfilesys   nº de orden del sistema de archivos
553#@return  Código de salida: 0 - lectura y escritura, 1 - solo lectura o no montado.
554#@version 1.0.5 - Primera versión para OpenGnSys.
[7685100]555#@author  Ramon Gomez, ETSII Universidad de Sevilla
[b32f902]556#@date    2013-10-09
557#/**
558function ogIsWritable ()
[42669ebf]559{
[59f9ad2]560# Variables locales
[b32f902]561local PART
[9d96c57]562
[1e7eaab]563# Si se solicita, mostrar ayuda.
[9d96c57]564if [ "$*" == "help" ]; then
[b32f902]565    ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_filesys" \
[a3348ce]566           "if $FUNCNAME 1 1; then ... ; fi"
[9d96c57]567    return
568fi
[7685100]569# Falso, en caso de error.
570[ $# == 2 ] || return 1
[9d96c57]571
[1e7eaab]572# Obtener partición.
[7685100]573PART="$(ogDiskToDev $1 $2)" || return 1
[9d96c57]574
[b32f902]575test -n "$(findmnt -n -o OPTIONS $PART | awk 'BEGIN {RS=","} /^rw$/ {print}')"
[9d96c57]576}
577
578
579#/**
580#         ogLock int_ndisk int_npartition
[89403cd]581#@see     ogLockPartition
582#*/
[42669ebf]583function ogLock ()
584{
[89403cd]585ogLockPartition "$@"
586}
587
588#/**
589#         ogLockPartition int_ndisk int_npartition
[9d96c57]590#@brief   Genera un fichero de bloqueo para una partición en uso exlusivo.
[42669ebf]591#@param   int_ndisk      nº de orden del disco
592#@param   int_npartition nº de orden de la partición
[9d96c57]593#@return  (nada)
594#@exception OG_ERR_FORMAT    Formato incorrecto.
595#@exception OG_ERR_NOTFOUND  Disco o particion no corresponden con un dispositivo.
[73c8417]596#@note    El fichero de bloqueo se localiza en \c /var/lock/part, siendo \c part el dispositivo de la partición, sustituyendo el carácter "/" por "-".
[b6208d8]597#@version 0.9 - Primera versión para OpenGnSys.
[9d96c57]598#@author  Ramon Gomez, ETSII Universidad de Sevilla
599#@date    2009-09-03
[1e7eaab]600#*/ ##
[42669ebf]601function ogLockPartition ()
602{
[59f9ad2]603# Variables locales
604local PART LOCKFILE
[9d96c57]605
[1e7eaab]606# Si se solicita, mostrar ayuda.
[9d96c57]607if [ "$*" == "help" ]; then
608    ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_npartition" \
609           "$FUNCNAME 1 1"
610    return
611fi
[1e7eaab]612# Error si no se reciben 2 parámetros.
[9d96c57]613[ $# == 2 ] || ogRaiseError $OG_ERR_FORMAT || return $?
614
[1e7eaab]615# Obtener partición.
[9d96c57]616PART="$(ogDiskToDev $1 $2)" || return $?
617
[1e7eaab]618# Crear archivo de bloqueo exclusivo.
[73c8417]619LOCKFILE="/var/lock/lock${PART//\//-}"
620touch $LOCKFILE
[9d96c57]621}
622
623
624#/**
[b6208d8]625#         ogMount int_ndisk int_nfilesys
[3458879]626#@see     ogMountFs ogMountCache ogMountCdrom
[1e7eaab]627#*/ ##
[42669ebf]628function ogMount ()
629{
[ee4a96e]630case "$*" in
[18f4bc2]631    CACHE|cache)
632        ogMountCache ;;
[ee4a96e]633    CDROM|cdrom)
634        ogMountCdrom ;;
635    *)  ogMountFs "$@" ;;
636esac
[73c8417]637}
638
[ee4a96e]639
[73c8417]640#/**
[b6208d8]641#         ogMountFs int_ndisk int_nfilesys
[aae34f6]642#@brief   Monta un sistema de archivos.
[42669ebf]643#@param   int_ndisk      nº de orden del disco
[b6208d8]644#@param   int_nfilesys   nº de orden del sistema de archivos
[aae34f6]645#@return  Punto de montaje
646#@exception OG_ERR_FORMAT    Formato incorrecto.
647#@exception OG_ERR_NOTFOUND  Disco o particion no corresponden con un dispositivo.
648#@exception OG_ERR_PARTITION Tipo de particion desconocido o no se puede montar.
[985bef0]649#@version 0.1 -  Integracion para Opengnsys  -  EAC:   MountPartition() en FileSystem.lib
650#@author  Antonio J. Doblas Viso. Universidad de Malaga
651#@date    2008-10-27
[b6208d8]652#@version 0.9 - Primera version para OpenGnSys.
[aae34f6]653#@author  Ramon Gomez, ETSII Universidad de Sevilla
[40488da]654#@date    2009-09-28
[b6208d8]655#@version 1.0.5 - Independiente del tipo de sistema de ficheros.
[02f271b]656#@author  Ramon Gomez, ETSII Universidad de Sevilla
[3011075]657#@date    2012-09-04
[1e7eaab]658#*/ ##
[42669ebf]659function ogMountFs ()
660{
[1e7eaab]661# Variables locales
[b6208d8]662local PART MNTDIR
[aae34f6]663
[1e7eaab]664# Si se solicita, mostrar ayuda.
[aae34f6]665if [ "$*" == "help" ]; then
[e087194]666    ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_nfilesys" \
[aae34f6]667           "$FUNCNAME 1 1  =>  /mnt/sda1"
668    return
669fi
[1e7eaab]670# Error si no se reciben 2 parámetros.
[aae34f6]671[ $# == 2 ] || ogRaiseError $OG_ERR_FORMAT || return $?
672
[1e7eaab]673# Obtener partición.
[b6208d8]674PART="$(ogDiskToDev "$1" "$2")" || return $?
[aae34f6]675
[1e7eaab]676# Comprobar si el sistema de archivos ya está montada.
[a3348ce]677MNTDIR="$(ogGetMountPoint $1 $2)"
[e2c805a]678# Si no, montarlo en un directorio de sistema.
[aae34f6]679if [ -z "$MNTDIR" ]; then
680    # Error si la particion esta bloqueada.
[52fa3da]681    if ogIsLocked $1 $2; then
682        ogRaiseError $OG_ERR_LOCKED "$MSG_PARTITION, $1 $2"
683        return $?
684    fi
[e2c805a]685    # Crear punto de montaje o enlace simbólico para caché local.
[aae34f6]686    MNTDIR=${PART/dev/mnt}
[3ffa256]687    if [ "$(ogFindCache)" == "$1 $2" -a -n "$OGCAC" ]; then
[e2c805a]688        mkdir -p $OGCAC
689        ln -fs $OGCAC $MNTDIR
690    else
691        mkdir -p $MNTDIR
692    fi
[b6208d8]693    # Montar sistema de archivos.
694    mount $PART $MNTDIR &>/dev/null || \
695               mount $PART $MNTDIR -o force,remove_hiberfile &>/dev/null || \
696               ogRaiseError $OG_ERR_PARTITION "$1, $2" || return $?
[aae34f6]697fi
[cbbb046]698echo "$MNTDIR"
[aae34f6]699}
700
701
[ee4a96e]702#####  PRUEBAS
703# Montar CDROM
[42669ebf]704function ogMountCdrom ()
705{
[ee4a96e]706local DEV MNTDIR
707DEV="/dev/cdrom"            # Por defecto
708MNTDIR=$(mount | awk -v D=$DEV '{if ($1==D) {print $3}}')
709if [ -z "$MNTDIR" ]; then
710    MNTDIR=${DEV/dev/mnt}
711    mkdir -p $MNTDIR
712    mount -t iso9660 $DEV $MNTDIR || ogRaiseError $OG_ERR_PARTITION "cdrom" || return $?
713fi
714echo $MNTDIR
715}
716
[3f49cf7]717
718#/**
[b6208d8]719#         ogReduceFs int_ndisk int_nfilesys
[3f49cf7]720#@brief   Reduce el tamaño del sistema de archivos, sin tener en cuenta el espacio libre.
[42669ebf]721#@param   int_ndisk      nº de orden del disco
[b6208d8]722#@param   int_nfilesys   nº de orden del sistema de archivos
[d3669a2]723#@return  int_tamañoKB - tamaño en KB
[3f49cf7]724#@exception OG_ERR_FORMAT    Formato incorrecto.
725#@exception OG_ERR_NOTFOUND  Disco o particion no corresponden con un dispositivo.
726#@exception OG_ERR_PARTITION Partición desconocida o no accesible.
[df097c2]727#@warning En Windows, se borran los ficheros de hiberanción y de paginación.
[d3669a2]728#@warning El sistema de archivos se amplía al mínimo + 10%.
[3458879]729#@note    Requisitos:   *resize*
[985bef0]730#@version 0.1 -  Integracion para Opengnsys  -  EAC:   ReduceFileSystem() en ATA.lib
731#@author  Antonio J. Doblas Viso. Universidad de Malaga
732#@date    2008-10-27
[b6208d8]733#@version 0.9 - Primera version para OpenGnSys.
[3f49cf7]734#@author  Ramon Gomez, ETSII Universidad de Sevilla
735#@date    2009-09-23
[d3669a2]736#@version 0.9.2 - Añadir un 10% al tamaño mínimo requerido.
737#@author  Ramon Gomez, ETSII Universidad de Sevilla
738#@date    2010-09-27
[c114529]739#@version 1.0 -  Deteccion automatica del tamaño minimo adecuado
740#@author  Antonio J. Doblas Viso. Universidad de Malaga
741#@date    2011-02-24
[1e7eaab]742#*/ ##
[42669ebf]743function ogReduceFs ()
744{
[3f49cf7]745# Variables locales
746local PART BLKS SIZE
747
[1e7eaab]748# Si se solicita, mostrar ayuda.
[3f49cf7]749if [ "$*" == "help" ]; then
[e087194]750    ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_nfilesys" \
[3f49cf7]751           "$FUNCNAME 1 1"
752    return
753fi
[1e7eaab]754# Error si no se reciben 2 parámetros.
[3f49cf7]755[ $# == 2 ] || ogRaiseError $OG_ERR_FORMAT || return $?
756
[1e7eaab]757# Obtener partición.
[3f49cf7]758PART="$(ogDiskToDev $1 $2)" || return $?
759
[1e7eaab]760# Redimensionar según el tipo de particion.
[3f49cf7]761case "$(ogGetFsType $1 $2)" in
[1c04494]762    EXT[234])
[3458879]763        ogUnmount $1 $2 2>/dev/null
[1c04494]764        # Ext2/3/4: Tamaño de los bloques del sistema de archivos
765        BLKS=$(tune2fs -l $PART | awk '/Block size/ {print int($3/512)}')
766        # Traduce el num. en sectores de 512B a tamano en MB.
[c114529]767        #SIZE=$(resize2fs -P $PART 2>/dev/null | \
768                #       awk -v B=$BLKS '/minimum size/ {print int($7*1.1*B/2048)}')
769        #resize2fs -fp $PART "${SIZE}M" &>/dev/null || ogRaiseError $OG_ERR_PARTITION "$1,$2" || return $?
770        resize2fs -fpM $PART  &>/dev/null || ogRaiseError $OG_ERR_PARTITION "$1,$2" || return $?
[743257e]771        ;;
[3198512]772    BTRFS)
773        MNTDIR=$(ogMount $1 $2)
774        # Calcular tamaño ocupado + 10%.
775        SIZE=$[ $(df -k $MNTDIR | awk '{getline;print $3}') * 110 / 100 ]
776        btrfs filesystem resize ${SIZE}k $MNTDIR
777        ;;
778    REISERFS|REISER4)
779        MNTDIR=$(ogMount $1 $2)
780        # Calcular tamaño ocupado + 10%.
781        SIZE=$[ $(df -k $MNTDIR | awk '{getline;print $3}') * 110 / 100 ]
782        ogUnmount $1 $2 2>/dev/null
783        resize_reiserfs -s${SIZE}K $PART
784        ;;
[c452625]785    JFS)    ;;          # No se reduce (por el momento).
786    XFS)    ;;          # No se reduce (por el momento).
[b6208d8]787    NTFS)
[df097c2]788        # Borrar ficheros de hibernación y paginación de Windows.
789        ogDeleteFile $1 $2 hiberfil.sys 2>/dev/null
790        ogDeleteFile $1 $2 pagefile.sys 2>/dev/null
791        ogDeleteFile $1 $2 swapfile.sys 2>/dev/null
[3458879]792        ogUnmount $1 $2 2>/dev/null
[c114529]793        ## NTFS: Obtiene tamaño mínimo en MB.
794        #SIZE=$(ntfsresize -fi $PART | awk '/resize at/ {print int($8*1.1)}')
795        #ntfsresize -fns "${SIZE}M" $PART >/dev/null || ogRaiseError $OG_ERR_PARTITION "$1,$2" || return $?
796        #ntfsresize -fs "${SIZE}M" $PART <<<"y" >/dev/null || ogRaiseError $OG_ERR_PARTITION "$1,$2" || return $?
[6277770]797        SIZE=$(ogReduceFsCheck $1 $2)
798        [ "$SIZE" == 0 ] && return 1   
[c114529]799        ntfsresize -fs "${SIZE}M" $PART <<<"y"  || ogRaiseError $OG_ERR_PARTITION "error reduciendo $1,$2" || return $?
[6277770]800        ;;
[c452625]801    EXFAT)  ;;          # No se reduce (por el momento).
802    FAT32|FAT16)  ;;    # No se reduce (probar "fatresize").
803    HFS|HFSPLUS)  ;;    # No se reduce (por el momento).
804    UFS)    ;;          # No se reduce (por el momento).
[1c04494]805    *)  ogRaiseError $OG_ERR_PARTITION "$1,$2"
[6277770]806        return $? ;;
[3f49cf7]807esac
[c114529]808ogGetFsSize $1 $2
[3f49cf7]809}
810
811
[c114529]812function ogReduceFsCheck ()
813{
814#IMPORTANTE: retorna el valor en MB que podrá reducir el FS de una particion ntfs
815#valor devuelto 0, y codigo error 1. No se puede reducir, probar a reiniciar windows y chkdsk
816
817
818local  PART RC MODE SIZE SIZEDATA
819[ $# == 2 ] && MODE=STAGE1
820[ $# == 3 ] && MODE=STAGE2
821[ -z $MODE ] && return
822
823PART="$(ogDiskToDev $1 $2)" || return $?
824ogUnmount $1 $2 &>/dev/null
825
826
827case $MODE in
828        STAGE1)
829        #       echo "primera etapa $*"
[49b2deb]830                # Mostramos el error
831                #ntfsresize -fi $PART &>/dev/null
832                ntfsresize -fi $PART | grep -A 10 -e ERROR >&2
[c114529]833                RC=`echo $?`
834        #       echo "RC es" $RC
[49b2deb]835                # if [ "$RC" -eq "1" ] # con error la salida del grep es 0
836                if [ "$RC" -eq "0" ]
[c114529]837                then
838                        echo "0"
839                        return 1       
840                fi 
841                SIZEDATA=$(ntfsresize -fi $PART | awk '/resize at/ {print $8+1000}')
842        #       echo "salida" $?
843        #       echo $SIZEDATA
844                ogReduceFsCheck $1 $2 $SIZEDATA
845                return 0
846       ;;
847        STAGE2)
848        #       echo "segunda etapa $*"
849                SIZEDATA=$3
850                ntfsresize -fns "${SIZEDATA}M" $PART &>/tmp/ntfsresize.txt
851                RC=$?
852                if [ "$RC" == "0" ]
853                then 
854                        SIZE=$SIZEDATA 
855                        echo $SIZE     
856                else
857                        SIZEEXTRA=$(cat /tmp/ntfsresize.txt | awk '/Needed relocations :/ {print $0}' | awk -F"(" '{print $2}' | awk '{print $1+500}')
858                        SIZE=$(expr $SIZEDATA + $SIZEEXTRA)
859                        ogReduceFsCheck $1 $2 $SIZE
860                        return 0
861                fi
862        ;;
863        *)
864        return
865        ;;
866esac
867}
868
869
870
[5dbb046]871#/**
[9d96c57]872#         ogUnlock int_ndisk int_npartition
[89403cd]873#@see     ogUnlockPartition
[6e390b1]874#*/ ##
[42669ebf]875function ogUnlock ()
876{
[89403cd]877ogUnlockPartition "$@"
878}
879
880#/**
881#         ogUnlockPartition int_ndisk int_npartition
[9d96c57]882#@brief   Elimina el fichero de bloqueo para una particion.
[42669ebf]883#@param   int_ndisk      nº de orden del disco
884#@param   int_npartition nº de orden de la partición
[9d96c57]885#@return  (nada)
886#@exception OG_ERR_FORMAT    Formato incorrecto.
887#@exception OG_ERR_NOTFOUND  Disco o particion no corresponden con un dispositivo.
[73c8417]888#@note    El fichero de bloqueo se localiza en \c /var/lock/part, siendo \c part el dispositivo de la partición, sustituyendo el carácter "/" por "-".
[b6208d8]889#@version 0.9 - Primera versión para OpenGnSys.
[9d96c57]890#@author  Ramon Gomez, ETSII Universidad de Sevilla
891#@date    2009-09-03
[1e7eaab]892#*/ ##
[42669ebf]893function ogUnlockPartition ()
894{
[59f9ad2]895# Variables locales
896local PART LOCKFILE
[9d96c57]897
[1e7eaab]898# Si se solicita, mostrar ayuda.
[9d96c57]899if [ "$*" == "help" ]; then
900    ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_npartition" \
901           "$FUNCNAME 1 1"
902    return
903fi
[1e7eaab]904# Error si no se reciben 2 parámetros.
[9d96c57]905[ $# == 2 ] || ogRaiseError $OG_ERR_FORMAT || return $?
906
[1e7eaab]907# Obtener partición.
[9d96c57]908PART="$(ogDiskToDev $1 $2)" || return $?
909
[1e7eaab]910# Borrar archivo de bloqueo exclusivo.
[73c8417]911LOCKFILE="/var/lock/lock${PART//\//-}"
912rm -f $LOCKFILE
[9d96c57]913}
914
915
916#/**
[5dbb046]917#         ogUnmount int_ndisk int_npartition
[40488da]918#@see     ogUnmountFs
[6e390b1]919#*/ ##
[42669ebf]920function ogUnmount ()
921{
[40488da]922ogUnmountFs "$@"
[89403cd]923}
924
925#/**
[b6208d8]926#         ogUnmountFs int_ndisk int_nfilesys
[5dbb046]927#@brief   Desmonta un sistema de archivos.
[42669ebf]928#@param   int_ndisk      nº de orden del disco
[b6208d8]929#@param   int_nfilesys   nº de orden del sistema de archivos
[5dbb046]930#@return  Nada
931#@exception OG_ERR_FORMAT    Formato incorrecto.
932#@exception OG_ERR_NOTFOUND  Disco o particion no corresponden con un dispositivo.
933#@warning La partición no está previamente montada o no se puede desmontar.
[985bef0]934#@version 0.1 -  Integracion para Opengnsys  -  EAC:  UmountPartition() en FileSystem.lib
935#@author  Antonio J. Doblas Viso. Universidad de Malaga
936#@date    2008-10-27
[b6208d8]937#@version 0.9 - Primera version para OpenGnSys.
[5dbb046]938#@author  Ramon Gomez, ETSII Universidad de Sevilla
[40488da]939#@date    2009-09-28
[1e7eaab]940#*/ ##
[42669ebf]941function ogUnmountFs ()
942{
[59f9ad2]943# Variables locales
[c56dec5]944local PART MNTDIR
[5dbb046]945
[1e7eaab]946# Si se solicita, mostrar ayuda.
[5dbb046]947if [ "$*" == "help" ]; then
948    ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_npartition" "$FUNCNAME 1 1"
949    return
950fi
[1e7eaab]951# Error si no se reciben 2 parámetros.
[5dbb046]952[ $# == 2 ] || ogRaiseError $OG_ERR_FORMAT || return $?
953
[1e7eaab]954# Obtener partición y punto de montaje.
[5dbb046]955PART="$(ogDiskToDev $1 $2)" || return $?
[a3348ce]956MNTDIR="$(ogGetMountPoint $1 $2)"
[5dbb046]957
[1e7eaab]958# Si está montada, desmontarla.
[c56dec5]959if [ -n "$MNTDIR" ]; then
[5a4f399]960    # Error si la particion está bloqueada.
[52fa3da]961    if ogIsLocked $1 $2; then
962        ogRaiseError $OG_ERR_LOCKED "$MSG_PARTITION $1, $2"
963        return $?
964    fi
[5a4f399]965    # Desmontar y borrar punto de montaje.
[52fa3da]966    umount $PART 2>/dev/null || ogEcho warning "$FUNCNAME: $MSG_DONTUNMOUNT: \"$1, $2\""
[5a4f399]967    rmdir $MNTDIR 2>/dev/null || rm -f $MNTDIR 2>/dev/null
[5dbb046]968else
969    ogEcho warning "$MSG_DONTMOUNT: \"$1,$2\""
970fi
971}
972
[ee4a96e]973
[be81649]974#/**
975#         ogUnmountAll int_ndisk
976#@brief   Desmonta todos los sistema de archivos de un disco, excepto el caché local.
[42669ebf]977#@param   int_ndisk      nº de orden del disco
[be81649]978#@return  Nada
979#@exception OG_ERR_FORMAT    Formato incorrecto.
980#@exception OG_ERR_NOTFOUND  Disco o particion no corresponden con un dispositivo.
981#@warning No se desmonta la partición marcada como caché local.
[b6208d8]982#@version 0.9 - Versión para OpenGnSys.
[be81649]983#@author  Ramon Gomez, ETSII Universidad de Sevilla
984#@date    2009/10/07
[1e7eaab]985#*/ ##
[42669ebf]986function ogUnmountAll ()
987{
[be81649]988# Variables locales
[18f4bc2]989local DISK PART
[1e7eaab]990# Si se solicita, mostrar ayuda.
[18f4bc2]991if [ "$*" == "help" ]; then
992    ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk" "FUNCNAME 1"
993    return
994fi
[1e7eaab]995# Error si no se recibe 1 parámetro.
[18f4bc2]996[ $# == 1 ] || ogRaiseError $OG_ERR_FORMAT || return $?
997
[1e7eaab]998# Obtener partición y punto de montaje.
[18f4bc2]999DISK="$(ogDiskToDev $1)" || return $?
1000for ((PART=1; PART<=$(ogGetPartitionsNumber $1); PART++)); do
1001    case "$(ogGetFsType $1 $PART)" in
[5804229]1002        CACHE) ;;
[7c52c30]1003        *)     ogUnmount $1 $PART 2>/dev/null ;;
[7250491]1004    esac
[18f4bc2]1005done
1006}
1007
[c114529]1008
[0390d46]1009# AVISO:  Componer corretcamente esta función.
[c114529]1010function ogGetFreeSize () {
[d5fc0dc]1011local particion unit factor valor
[c114529]1012if [ $# = 0 ]
1013then
1014        echo "sintaxis: ogGetFreeSize int_disco int_partition str_SizeOutput [ kB MB GB -default GB]-]" red
1015        echo "devuelve int_size : int_data : int_free" red
1016return
1017fi
1018if [ $# -ge 2 ]
1019then
1020        particion=`ogMount $1 $2 ` #1>/dev/null 2>&1
1021        if [ -z $3 ]
1022                then
1023                        unit=kB  # s B kB MB GB TB %
1024                else
1025                        unit=$3
1026        fi
1027        case $unit in
1028                kB)
1029                        factor="1.024";
1030                        #valor=`df | grep  $particion | awk -F" " '{size=$2*1.024; used=$3*1.024; free=$4*1.024; printf "%d:%d:%d", size,used,free}'`
1031                        valor=`df | grep  $particion | awk -F" " '{size=$2*1.024; used=$3*1.024; free=$4*1.024; printf "%d", free}'`
1032                        ;;
[a957f02]1033                MB)
1034                        factor="1.024/1000";
1035                        valor=`df | grep  $particion | awk -F" " '{size=$2*1.024/1000; used=$3*1.024/1000; free=$4*1.024/1000; printf "%d:%d:%d", size,used,free}'`
1036                ;;
1037                GB)
1038                        factor="1.024/1000000";
1039                        valor=`df | grep $particion | awk -F" " '{size=$2*1.024/1000000; used=$3*1.024/1000000; free=$4*1.024/1000000; printf "%f:%f:%f", size,used,free}'`
1040                ;;
1041        esac
1042        #echo $valor
1043        #NumberRound $valor
1044        #valor=`NumberRound $valor`;
1045        echo $valor
1046fi
[c114529]1047}
1048
Note: See TracBrowser for help on using the repository browser.