diff mbox

avahi: only install default.script/S05avahi-setup.sh if not present in fs skeleton

Message ID 20120720100219.0317a30e@skate
State Not Applicable
Headers show

Commit Message

Thomas Petazzoni July 20, 2012, 8:02 a.m. UTC
Le Thu, 19 Jul 2012 21:53:45 -0400,
Danomi Manchego <danomimanchego123@gmail.com> a écrit :

> > If avahi is built before
> > Busybox, then you'll have the Avahi script. If Busybox is built before
> > Avahi, then you'll have the Busybox script. This doesn't look correct.
> 
> Would it be appropriate to add something like this to busybox.mk, so that
> Avahi always gets built first?
> 
> ifeq ($(BR2_PACKAGE_AVAHI),y)
> # Compile Avahi first, to ensure proper preference of conditional
> udhcpc/default.script installations
> BUSYBOX_DEPENDENCIES += avahi
> endif

Well, I think the whole idea of testing whether a configuration file has
already been copied or not to the target filesystem to avoid
overwriting files from the skeleton is not nice (I think using the
post-build script to overwrite configuration files is a much better
idea), but I know Peter wants this to work.

So, if we indeed want the Avahi udhcpc configuration file to take
precedence over the busybox one, we would have to do what you suggest.

I ran a diff between the Busybox udhcpc script and the Avahi one and
got the following result:


The parts around avahi-autoipd are obviously here for a reason, but why
does it need to test for ip= and nfsroot= in the kernel command line in
Avahi case and not in Busybox case?

One possibility would be to simply put the Avahi variant of the script
into the Busybox package. When Avahi is not installed, the
avahi-autoipd tests would simply ensure that the script does not try to
use Avahi.

Also, the current Avahi installation makes the assumption that Busybox
is in the system, and that its DHCP client is used. But we have another
DHCP client packaged in Buildroot (though I admit most people probably
use the one from Busybox).

Thomas

Comments

Peter Korsgaard July 20, 2012, 8:57 a.m. UTC | #1
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 Thomas> Le Thu, 19 Jul 2012 21:53:45 -0400,
 Thomas> Danomi Manchego <danomimanchego123@gmail.com> a écrit :

 >> > If avahi is built before
 >> > Busybox, then you'll have the Avahi script. If Busybox is built before
 >> > Avahi, then you'll have the Busybox script. This doesn't look correct.
 >> 
 >> Would it be appropriate to add something like this to busybox.mk, so that
 >> Avahi always gets built first?
 >> 
 >> ifeq ($(BR2_PACKAGE_AVAHI),y)
 >> # Compile Avahi first, to ensure proper preference of conditional
 >> udhcpc/default.script installations
 >> BUSYBOX_DEPENDENCIES += avahi
 >> endif

 Thomas> Well, I think the whole idea of testing whether a configuration file has
 Thomas> already been copied or not to the target filesystem to avoid
 Thomas> overwriting files from the skeleton is not nice (I think using the
 Thomas> post-build script to overwrite configuration files is a much better
 Thomas> idea), but I know Peter wants this to work.

I don't really feel that strongly about it.

 Thomas> The parts around avahi-autoipd are obviously here for a reason,
 Thomas> but why does it need to test for ip= and nfsroot= in the kernel
 Thomas> command line in Avahi case and not in Busybox case?

 Thomas> One possibility would be to simply put the Avahi variant of the
 Thomas> script into the Busybox package. When Avahi is not installed,
 Thomas> the avahi-autoipd tests would simply ensure that the script
 Thomas> does not try to use Avahi.

That was my thought exactly. I had a quick look at it just before I got
ill, but then forgot about it.
Thomas Petazzoni July 20, 2012, 9:10 a.m. UTC | #2
Hello Peter,

Le Fri, 20 Jul 2012 10:57:25 +0200,
Peter Korsgaard <jacmet@uclibc.org> a écrit :

>  Thomas> Well, I think the whole idea of testing whether a
>  Thomas> configuration file has already been copied or not to the
>  Thomas> target filesystem to avoid overwriting files from the
>  Thomas> skeleton is not nice (I think using the post-build script to
>  Thomas> overwrite configuration files is a much better idea), but I
>  Thomas> know Peter wants this to work.
> 
> I don't really feel that strongly about it.

Ok, but either we support it, and we support it completely, or we don't
support it and we remove all those conditional file installations (by
making them unconditional).

>  Thomas> The parts around avahi-autoipd are obviously here for a
>  Thomas> reason, but why does it need to test for ip= and nfsroot= in
>  Thomas> the kernel command line in Avahi case and not in Busybox
>  Thomas> case?
> 
>  Thomas> One possibility would be to simply put the Avahi variant of
>  Thomas> the script into the Busybox package. When Avahi is not
>  Thomas> installed, the avahi-autoipd tests would simply ensure that
>  Thomas> the script does not try to use Avahi.
> 
> That was my thought exactly. I had a quick look at it just before I
> got ill, but then forgot about it.

Ok, thanks for your input!

Thomas
Danomi Manchego July 21, 2012, 2:55 a.m. UTC | #3
Thomas,

> but why does it need to test for ip= and nfsroot= in the kernel command
> line in Avahi case and not in Busybox case?

We use our own udhcpc.script which doesn't have these clauses, but I think
that we can make some guesses:

-	/sbin/ifconfig $interface 0.0.0.0
+	grep -q -v ip= /proc/cmdline
+	if [ $? -eq 0 ]; then
+	/sbin/ifconfig $interface up
+	fi
+	grep -q -v nfsroot= /proc/cmdline
+	if [ $? -eq 0 ]; then
+	/sbin/ifconfig $interface 0.0.0.0
+	fi

Regarding the "nfsroot=" test: According to udhcpc man page, "deconfig" is
used when udhcpc starts, in addition to when a lease is lost.  But if you
are using an nfs-rooted setup, then you already have an IP address, and
you need to avoid loosing it.  So I imagine that this is just an attempt
to avoid the breakdown of an nfs-rooted development setup during the
"deconfig" if udhcpc is started, or shut down.

Regarding the "ip=" test: I'm not so sure ... if you set up a static IP
address on the command line, then what's the harm in setting an interface
to "up" again?  I'm wondering if the originator of this file (Eric Andersen?)
was simply excising all the interface ups and downs, to avoid messing with
a static IP setup, such as might be used during a project development.

> One possibility would be to simply put the Avahi variant of the script
> into the Busybox package.

That would solve my problem too.  Though, I'm coming around to the notion
of installing custom target skeletons at the end of the process, rather
than the beginning, just to avoid this kind of policing.  Either way, it sounds
like I should withdraw this version of the patch ...

Danomi -


On Fri, Jul 20, 2012 at 4:02 AM, Thomas Petazzoni <
thomas.petazzoni@free-electrons.com> wrote:

> Le Thu, 19 Jul 2012 21:53:45 -0400,
> Danomi Manchego <danomimanchego123@gmail.com> a écrit :
>
> > > If avahi is built before
> > > Busybox, then you'll have the Avahi script. If Busybox is built before
> > > Avahi, then you'll have the Busybox script. This doesn't look correct.
> >
> > Would it be appropriate to add something like this to busybox.mk, so
> that
> > Avahi always gets built first?
> >
> > ifeq ($(BR2_PACKAGE_AVAHI),y)
> > # Compile Avahi first, to ensure proper preference of conditional
> > udhcpc/default.script installations
> > BUSYBOX_DEPENDENCIES += avahi
> > endif
>
> Well, I think the whole idea of testing whether a configuration file has
> already been copied or not to the target filesystem to avoid
> overwriting files from the skeleton is not nice (I think using the
> post-build script to overwrite configuration files is a much better
> idea), but I know Peter wants this to work.
>
> So, if we indeed want the Avahi udhcpc configuration file to take
> precedence over the busybox one, we would have to do what you suggest.
>
> I ran a diff between the Busybox udhcpc script and the Avahi one and
> got the following result:
>
> --- ../busybox/udhcpc.script    2012-03-09 11:23:50.255418372 +0100
> +++ busybox-udhcpc-default.script       2011-05-12 22:43:39.000000000 +0200
> @@ -10,10 +10,29 @@
>
>  case "$1" in
>         deconfig)
> -               /sbin/ifconfig $interface 0.0.0.0
> +               grep -q -v ip= /proc/cmdline
> +               if [ $? -eq 0 ]; then
> +                       /sbin/ifconfig $interface up
> +               fi
> +               grep -q -v nfsroot= /proc/cmdline
> +               if [ $? -eq 0 ]; then
> +                       /sbin/ifconfig $interface 0.0.0.0
> +               fi
> +               if [ -x /usr/sbin/avahi-autoipd ]; then
> +                       /usr/sbin/avahi-autoipd -k $interface
> +               fi
> +               ;;
> +
> +       leasefail|nak)
> +               if [ -x /usr/sbin/avahi-autoipd ]; then
> +                       /usr/sbin/avahi-autoipd -wD $interface --no-chroot
> +               fi
>                 ;;
>
>         renew|bound)
> +               if [ -x /usr/sbin/avahi-autoipd ]; then
> +                       /usr/sbin/avahi-autoipd -k $interface
> +               fi
>                 /sbin/ifconfig $interface $ip $BROADCAST $NETMASK
>
>                 if [ -n "$router" ] ; then
>
> The parts around avahi-autoipd are obviously here for a reason, but why
> does it need to test for ip= and nfsroot= in the kernel command line in
> Avahi case and not in Busybox case?
>
> One possibility would be to simply put the Avahi variant of the script
> into the Busybox package. When Avahi is not installed, the
> avahi-autoipd tests would simply ensure that the script does not try to
> use Avahi.
>
> Also, the current Avahi installation makes the assumption that Busybox
> is in the system, and that its DHCP client is used. But we have another
> DHCP client packaged in Buildroot (though I admit most people probably
> use the one from Busybox).
>
> Thomas
> --
> Thomas Petazzoni, Free Electrons
> Kernel, drivers, real-time and embedded Linux
> development, consulting, training and support.
> http://free-electrons.com
>
diff mbox

Patch

--- ../busybox/udhcpc.script	2012-03-09 11:23:50.255418372 +0100
+++ busybox-udhcpc-default.script	2011-05-12 22:43:39.000000000 +0200
@@ -10,10 +10,29 @@ 
 
 case "$1" in
 	deconfig)
-		/sbin/ifconfig $interface 0.0.0.0
+		grep -q -v ip= /proc/cmdline
+		if [ $? -eq 0 ]; then
+			/sbin/ifconfig $interface up
+		fi
+		grep -q -v nfsroot= /proc/cmdline
+		if [ $? -eq 0 ]; then
+			/sbin/ifconfig $interface 0.0.0.0
+		fi
+		if [ -x /usr/sbin/avahi-autoipd ]; then
+			/usr/sbin/avahi-autoipd -k $interface
+		fi
+		;;
+
+	leasefail|nak)
+		if [ -x /usr/sbin/avahi-autoipd ]; then
+			/usr/sbin/avahi-autoipd -wD $interface --no-chroot
+		fi
 		;;
 
 	renew|bound)
+		if [ -x /usr/sbin/avahi-autoipd ]; then
+			/usr/sbin/avahi-autoipd -k $interface
+		fi
 		/sbin/ifconfig $interface $ip $BROADCAST $NETMASK
 
 		if [ -n "$router" ] ; then