From: Harald Hoyer <harald-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
To: Hans de Goede <hdegoede-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
Cc: initramfs <initramfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Subject: Re: [PATCH] Implement extended iscsi: rfc4173 syntax which allows specifying credentials
Date: Wed, 05 Aug 2009 16:23:05 +0200 [thread overview]
Message-ID: <4A7995C9.100@redhat.com> (raw)
In-Reply-To: <1249029076-3531-1-git-send-email-hdegoede-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
On 07/31/2009 10:31 AM, Hans de Goede wrote:
> As discussed before, it would be nice to be able to specify
> the iscsi chap credentials inside the netroot=iscsi:.....
> syntax, this patch implements this in a backwards compatible way, like
> this:
> iscsi:username:pass-savSHZN5Fh8qMp+WYRx65w@public.gmane.org::3260::iqn.2009-01.com.example:testdisk
> iscsi:username:pass:reverse:pass-savSHZN5Fh8qMp+WYRx65w@public.gmane.org::3260::iqn.2009-01.com.example:test
>
> The only downside is that the backwards compatibility is broken when there
> is an @ in the iscsi target name (very unlikely), that can still be used,
> but only like this:
> iscsi:@192.168.1.100::3260::iqn.2009-01.com.example:testdi@sk
> ---
> modules.d/95iscsi/iscsiroot | 18 ++++++++++++++++++
> 1 files changed, 18 insertions(+), 0 deletions(-)
>
> diff --git a/modules.d/95iscsi/iscsiroot b/modules.d/95iscsi/iscsiroot
> index a9ad14a..e28cbaa 100755
> --- a/modules.d/95iscsi/iscsiroot
> +++ b/modules.d/95iscsi/iscsiroot
> @@ -77,6 +77,24 @@ fi
> # override conf/commandline options by dhcp root_path
> # FIXME this assumes that all values have been provided
> OLDIFS="$IFS"
> +IFS=@
> +set $iroot
> +if [ $# -gt 1 ]; then
> + authinfo=$1; shift
> + iroot=$*
> + # allow empty authinfo to allow having an @ in iscsi_target_name like this:
> + # netroot=iscsi:@192.168.1.100::3260::iqn.2009-01.com.example:testdi@sk
> + if [ -n "$authinfo" ]; then
> + IFS=:
> + set $authinfo
> + iscsi_username=$1
> + iscsi_password=$2
> + if [ $# -gt 2 ]; then
> + iscsi_in_username=$3
> + iscsi_in_password=$4
> + fi
> + fi
> +fi
> IFS=:
> set $iroot
> iscsi_target_ip=$1; shift
merged in git
--
To unsubscribe from this list: send the line "unsubscribe initramfs" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
prev parent reply other threads:[~2009-08-05 14:23 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-07-31 8:31 [PATCH] Implement extended iscsi: rfc4173 syntax which allows specifying credentials Hans de Goede
[not found] ` <1249029076-3531-1-git-send-email-hdegoede-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2009-08-05 14:23 ` Harald Hoyer [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4A7995C9.100@redhat.com \
--to=harald-h+wxahxf7alqt0dzr+alfa@public.gmane.org \
--cc=hdegoede-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
--cc=initramfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox