0108cde76b99a62e8666d6e2166b6828a057134a
[bootstrapfs.git] / plc.d / packages
1 #!/bin/bash
2 #
3 # priority: 1200
4 #
5 # Update node package repository metadata and sign packages
6 #
7 # Mark Huang <mlhuang@cs.princeton.edu>
8 # Copyright (C) 2006 The Trustees of Princeton University
9 # Thierry Parmentelat <thierry.parmentelat@inria.fr>
10 #
11
12 # Source function library and configuration
13 . /etc/plc.d/functions
14 . /etc/planetlab/plc_config
15
16 # Be verbose
17 set -x
18
19 #################### 
20
21 # (*) sometimes we have yum issuing errors like 'package does not match intended content'
22 #  this means that the sha256 checksum of the downloaded pkg does not match 
23 #    the sha256 checksum advertised in filelists.xml
24 #  if you did run 'yum clean all' on the node, 
25 #    this means that the repodata/ dir. on the server side is out of date 
26 #  forcing a createrepo should solve this 
27
28 # (*) also sometimes the node complains that a package is not signed
29 #
30 # so there quite obviously are some corner cases that are not well handled
31 # hopefully the following subforms may be helpful to recover in these cases
32
33 # /etc/plc.d/packages clean
34 #   performs cleanup of the yum repositories and signed-stamps
35 #   thus forcing the next 'start' command to re-sign and re-index everything
36 # /etc/plc.d/packages superclean
37 #   like 'clean', plus this will reinstall the noderepo rpms that you have, 
38 #   that is to say restart from unsigned rpms
39 # /etc/plc.d/packages start
40 #   this is the usual form, it should be smart enough to only sign the packages that need to, 
41 #   and to rerun createrepo when useful
42 # /etc/plc.d/packages force
43 #   same as 'start' but createrepo is run unconditionnally
44
45 # PS. I suspect sometimes the signing fails and the script does not notice properly
46 #################### 
47
48
49 # helper for hacking yumgroups
50 # if we've installed for several flavours
51 # we create cross links in install-rpms like this one
52 # ./onelab-f8-i386/sliceimage-onelab-f12-i386-5.0-6.2011.02.03.i686.rpm 
53 #   -> /var/www/html/install-rpms/onelab-f12-i386/sliceimage-onelab-f12-i386-5.0-6.2011.02.03.i686.rpm
54 #
55 # but this won't make it to the nodes until they are insered in yumgroups.xml in the PlanetLab group
56
57
58 function hack_yumgroups () {
59     repo=$1; shift
60
61     pushd $repo >& /dev/null
62     pwd
63     sirpms=$(find . -name 'sliceimage*rpm')
64     echo found sirpms $sirpms
65     if [ ! -f yumgroups.xml ] ; then
66         echo "hack_yumgroups: could not find yumgroups in $(pwd)" 
67     elif [ -z "$sirpms" ] ; then
68         echo "No need to hack yumgroups, no foreign sliceimage package found"
69     else
70         cp yumgroups.xml yumgroups.xml.hacking
71         # remove references to package sliceimage-
72         grep -v '>sliceimage-' yumgroups.xml.hacking > yumgroups.xml
73         # build a list of lines with corresponding rpm names
74         insert=""
75         for sirpm in $sirpms; do
76             rpmname=$(rpm -q --qf '%{name}' -p $sirpm)
77             echo found file $sirpm with name $rpmname
78             insert="$insert<packagereq type=\"mandatory\">$rpmname</packagereq>"
79         done
80         echo 'inserting' $insert
81         # insert in yumgroups at the right place -- first packages in the PlanetLab group
82         ed yumgroups.xml <<EOF
83 1
84 /name>PlanetLab<
85 /packagelist
86 +
87 i
88 $insert
89 .
90 w
91 q
92 EOF
93     fi
94     popd >& /dev/null
95 }
96
97 ####################
98 case "$1" in
99     start|force)
100         if [ "$PLC_BOOT_ENABLED" != "1" ] ; then
101             exit 0
102         fi
103
104         MESSAGE=$"Signing and indexing node packages"
105         dialog "$MESSAGE"
106
107         shopt -s nullglob
108
109         mode=$1; shift
110
111         # on PLC there is a need to select the repos as there are quite a few in there
112         # would contain names or patterns relative to install-rpms
113         explicit_list=/var/www/html/install-rpms/PACKAGES
114
115         # use argv if provided
116         if [[ -n "$@" ]] ; then
117             repositories="$@"
118             cross_repositories="$@"
119         elif [ -f $explicit_list ] ; then
120             cross_repositories=""
121             for name in $(grep -v '#' $explicit_list); do 
122                 cross_repositories="$cross_repositories /var/www/html/install-rpms/$name"
123             done
124             repositories=/var/www/html/install-rpms/*
125         else
126             # use all subdirs in install-rpms by default
127             repositories=/var/www/html/install-rpms/*
128             cross_repositories=/var/www/html/install-rpms/*
129         fi
130
131         ##########
132         # deal with the sliceimage packages
133         # symlink all instances of plain 'sliceimage-*rpm' in all repos
134         # and cleanup old links 
135         sirpms=$(find $cross_repositories -name 'sliceimage*rpm' -a -type f)
136         # for nicer upgrades, also remove symlinks from 5.0
137         silinks=$(find $cross_repositories '(' -name 'sliceimage*rpm' -o -name 'vserver*rpm' ')' -a -type l)
138
139         for silink in $silinks; do
140             [ ! -e $silink ] && { echo removing old $silink; rm $silink; }
141         done
142
143         for repository in $cross_repositories; do
144             for sirpm in $sirpms; do
145             # if in the repository we're dealing with, ignore
146                 if [ "$(echo $sirpm | sed -e s,^$repository,,)" != $sirpm ] ; then
147                     continue
148                 fi
149                 b=$(basename $sirpm)
150                 link=$repository/$b
151                 if [ ! -e $link ] ; then
152                     echo "creating symlink $link towards $sirpm"
153                     ln -s $sirpm $link
154                 fi
155             done
156         done
157
158         ##########
159         # now that the symlinks are OK, we can tweak yumgroups
160         for repository in $cross_repositories; do
161             hack_yumgroups $repository
162         done
163
164         ########## sign plain packages
165         for repository in $repositories ; do
166             # the rpms that need signing
167             new_rpms=
168             # and the corresponding stamps
169             new_stamps=
170             # is there a need to refresh yum metadata
171             # a safe approach would be to always run createrepo
172             # however this is painfully slow with multi-flavour installed
173             need_createrepo= 
174             # however if we run this script like
175             # /etc/plc.d/packages force
176             # then we force a createrepo
177             [ "$mode" == force ] && need_createrepo=true
178
179             # right after installation, no package is present
180             # but we still need to create index 
181             [ ! -f $repository/repodata/repomd.xml ] && need_createrepo=true
182
183             # it's not helpful to sign symlinks that will get signed on their own
184             for package in $(find $repository/ -name '*.rpm' -a \! -type l) ; do
185                 stamp=$repository/signed-stamps/$(basename $package).signed
186                 # If package is newer than signature stamp
187                 if [ $package -nt $stamp ] ; then
188                     new_rpms="$new_rpms $package"
189                     new_stamps="$new_stamps $stamp"
190                 fi
191                 # Or than createrepo database
192                 [ $package -nt $repository/repodata/repomd.xml ] && need_createrepo=true
193                 [ $package -nt $repository/repodata/filelists.xml.gz ] && need_createrepo=true
194             done
195
196             if [ -n "$new_rpms" ] ; then
197                 # Create a stamp once the package gets signed
198                 mkdir $repository/signed-stamps 2> /dev/null
199
200                 # Sign RPMS. setsid detaches rpm from the terminal,
201                 # allowing the (hopefully blank) GPG password to be
202                 # entered from stdin instead of /dev/tty.
203                 echo | setsid rpm \
204                     --define "_signature gpg" \
205                     --define "_gpg_path /etc/planetlab" \
206                     --define "_gpg_name $PLC_MAIL_SUPPORT_ADDRESS" \
207                     --resign $new_rpms && touch $new_stamps
208 #               check
209                 # if we sign at least one package then we need to reindex
210                 need_createrepo=true
211             fi
212
213             # Update repository index / yum metadata. 
214
215             if [ -n "$need_createrepo" ] ; then
216                 if [ -f $repository/yumgroups.xml ] ; then
217                     createrepo --quiet -g yumgroups.xml $repository 
218                     check
219                 else
220                     createrepo --quiet $repository
221                     check
222                 fi
223             fi
224         done
225
226         result "$MESSAGE"
227         ;;
228     clean)
229         shift
230         if [[ -z "$@" ]] ; then
231             # use all subdirs in install-rpms by default
232             repositories=/var/www/html/install-rpms/*
233         else
234             # else use argv
235             repositories=$@
236         fi
237
238         for repository in $repositories ; do
239             rm -rf $repository/signed-stamps
240             rm -rf $repository/repodata
241             find $repository -type l | xargs rm
242         done
243         ;;
244     # (use this only if you have noderepos installed)
245     superclean)
246         shift
247         find /var/www/html/install-rpms -name signed-stamps | xargs rm -rf
248         find /var/www/html/install-rpms -name repodata | xargs rm -rf
249         find /var/www/html/install-rpms -type l | xargs rm
250         rpm -aq | grep noderepo | xargs yum -y reinstall
251         ;;
252     *)
253         echo "Usage: $0 start|force|clean [repo ..]"
254         ;;
255 esac
256
257 exit $ERRORS