summaryrefslogtreecommitdiffstats
path: root/extras/ganesha/scripts/dbus-send.sh
blob: 5f268eb37c20926959cd31e12fbaf9d08bb928e9 (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
#/bin/bash

declare -i EXPORT_ID
GANESHA_DIR=${1%/}
OPTION=$2
VOL=$3
CONF=
CONFFILE=

function find_rhel7_conf
{
 while [[ $# > 0 ]]
        do
                key="$1"
                case $key in
                        -f)
                         CONFFILE="$2"
                         break;
                         ;;
                         *)
                         ;;
                 esac
                 shift
         done
}

cfgline=$(grep ^CONFFILE= /etc/sysconfig/ganesha)
eval $(echo ${cfgline} | grep -F ^CONFFILE=)

if [ -z $CONFFILE ]
        then
        cfgline=$(grep ^OPTIONS= /etc/sysconfig/ganesha)
        eval $(echo ${cfgline} | grep -F ^OPTIONS=)
        find_rhel7_conf $cfgline

fi

CONF=${CONFFILE:-/etc/ganesha/ganesha.conf}

function check_cmd_status()
{
        if [ "$1" != "0" ]
                 then
                 rm -rf $GANESHA_DIR/exports/export.$VOL.conf
                 sed -i /$VOL.conf/d $CONF
                 exit 1
        fi
}

#This function keeps track of export IDs and increments it with every new entry
function dynamic_export_add()
{
        count=`ls -l $GANESHA_DIR/exports/*.conf | wc -l`
        if [ "$count" = "1" ] ;
                then
                EXPORT_ID=2
        else
        #if [ -s /var/lib/ganesha/export_removed ];
        #               then
        #               EXPORT_ID=`head -1 /var/lib/ganesha/export_removed`
        #               sed -i -e "1d" /var/lib/ganesha/export_removed
        #               else

                 EXPORT_ID=`cat $GANESHA_DIR/.export_added`
                 check_cmd_status `echo $?`
        #fi
        fi
        for entry in `grep -n Export_Id  $GANESHA_DIR/exports/export.$VOL.conf \
        | awk -F":" '{print$1}'`
        do
                sed -e "$entry s/Export_Id.*/Export_Id=$EXPORT_ID ;/" -i \
                $GANESHA_DIR/exports/export.$VOL.conf
                check_cmd_status `echo $?`
                dbus-send  --system \
                --dest=org.ganesha.nfsd  /org/ganesha/nfsd/ExportMgr \
                org.ganesha.nfsd.exportmgr.AddExport  \
                string:$GANESHA_DIR/exports/export.$VOL.conf \
                string:"EXPORT(Export_Id=$EXPORT_ID)"
                EXPORT_ID=EXPORT_ID+1
        done
        echo $EXPORT_ID > $GANESHA_DIR/.export_added
        check_cmd_status `echo $?`
}

#This function removes an export dynamically(uses the export_id of the export)
function dynamic_export_remove()
{
        grep Export_Id $GANESHA_DIR/exports/export.$VOL.conf | \
        while read entry;
        do
                dbus-send --print-reply --system \
                --dest=org.ganesha.nfsd /org/ganesha/nfsd/ExportMgr \
                org.ganesha.nfsd.exportmgr.RemoveExport \
                uint16:$(echo $entry | awk -F"[=,;]" '{print$2}')
                check_cmd_status `echo $?`
        done
        sed -i /$VOL.conf/d $CONF
        rm -rf $GANESHA_DIR/exports/export.$VOL.conf

}

if [ "$OPTION" = "on" ];
then
        dynamic_export_add $@
fi

if [ "$OPTION" = "off" ];
then
        dynamic_export_remove $@
fi