All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] cifs: set MAY_SIGN when sec=krb5
@ 2012-10-24  9:45 Martijn de Gouw
       [not found] ` <1351071946-21458-1-git-send-email-martijn.de.gouw-BHYAuTpL47qEVqv0pETR8A@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Martijn de Gouw @ 2012-10-24  9:45 UTC (permalink / raw)
  To: smfrench-Re5JQEeQqe8AvxtiuMwx3w
  Cc: linux-cifs-u79uwXL29TY76Z2rM5mHXA, Martijn de Gouw

Setting this secFlg allows usage of dfs where some servers require
signing and others don't.

Signed-off-by: Martijn de Gouw <martijn.de.gouw-BHYAuTpL47qEVqv0pETR8A@public.gmane.org>
---
:100644 100644 b39bb4a... 4da9dd3... M	fs/cifs/connect.c
 fs/cifs/connect.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c
index b39bb4a..4da9dd3 100644
--- a/fs/cifs/connect.c
+++ b/fs/cifs/connect.c
@@ -994,7 +994,7 @@ static int cifs_parse_security_flavors(char *value,
 
 	switch (match_token(value, cifs_secflavor_tokens, args)) {
 	case Opt_sec_krb5:
-		vol->secFlg |= CIFSSEC_MAY_KRB5;
+		vol->secFlg |= CIFSSEC_MAY_KRB5 | CIFSSEC_MAY_SIGN;
 		break;
 	case Opt_sec_krb5i:
 		vol->secFlg |= CIFSSEC_MAY_KRB5 | CIFSSEC_MUST_SIGN;
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH 1/1] cifs: set MAY_SIGN when sec=krb5
       [not found] ` <1351071946-21458-1-git-send-email-martijn.de.gouw-BHYAuTpL47qEVqv0pETR8A@public.gmane.org>
@ 2012-10-24 11:37   ` Jeff Layton
       [not found]     ` <20121024073723.2e5063db-9yPaYZwiELC+kQycOl6kW4xkIHaj4LzF@public.gmane.org>
  2013-01-31  4:53   ` Steve French
  1 sibling, 1 reply; 8+ messages in thread
From: Jeff Layton @ 2012-10-24 11:37 UTC (permalink / raw)
  To: Martijn de Gouw
  Cc: smfrench-Re5JQEeQqe8AvxtiuMwx3w,
	linux-cifs-u79uwXL29TY76Z2rM5mHXA

On Wed, 24 Oct 2012 11:45:46 +0200
Martijn de Gouw <martijn.de.gouw-BHYAuTpL47qEVqv0pETR8A@public.gmane.org> wrote:

> Setting this secFlg allows usage of dfs where some servers require
> signing and others don't.
> 
> Signed-off-by: Martijn de Gouw <martijn.de.gouw-BHYAuTpL47qEVqv0pETR8A@public.gmane.org>
> ---
> :100644 100644 b39bb4a... 4da9dd3... M	fs/cifs/connect.c
>  fs/cifs/connect.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c
> index b39bb4a..4da9dd3 100644
> --- a/fs/cifs/connect.c
> +++ b/fs/cifs/connect.c
> @@ -994,7 +994,7 @@ static int cifs_parse_security_flavors(char *value,
>  
>  	switch (match_token(value, cifs_secflavor_tokens, args)) {
>  	case Opt_sec_krb5:
> -		vol->secFlg |= CIFSSEC_MAY_KRB5;
> +		vol->secFlg |= CIFSSEC_MAY_KRB5 | CIFSSEC_MAY_SIGN;
>  		break;
>  	case Opt_sec_krb5i:
>  		vol->secFlg |= CIFSSEC_MAY_KRB5 | CIFSSEC_MUST_SIGN;

Looks like a reasonable bandaid until someone overhauls the auth
selection code for sanity...

Reviewed-by: Jeff Layton <jlayton-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH 1/1] cifs: set MAY_SIGN when sec=krb5
       [not found]     ` <20121024073723.2e5063db-9yPaYZwiELC+kQycOl6kW4xkIHaj4LzF@public.gmane.org>
@ 2013-01-30 19:03       ` Martijn de Gouw
  0 siblings, 0 replies; 8+ messages in thread
From: Martijn de Gouw @ 2013-01-30 19:03 UTC (permalink / raw)
  To: Jeff Layton
  Cc: smfrench-Re5JQEeQqe8AvxtiuMwx3w,
	linux-cifs-u79uwXL29TY76Z2rM5mHXA

Hi,

On 10/24/2012 01:37 PM, Jeff Layton wrote:
> On Wed, 24 Oct 2012 11:45:46 +0200
> Martijn de Gouw <martijn.de.gouw-BHYAuTpL47qEVqv0pETR8A@public.gmane.org> wrote:
>
>> Setting this secFlg allows usage of dfs where some servers require
>> signing and others don't.
>>
>> Signed-off-by: Martijn de Gouw <martijn.de.gouw-BHYAuTpL47qEVqv0pETR8A@public.gmane.org>
>> ---
>> :100644 100644 b39bb4a... 4da9dd3... M	fs/cifs/connect.c
>>   fs/cifs/connect.c |    2 +-
>>   1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c
>> index b39bb4a..4da9dd3 100644
>> --- a/fs/cifs/connect.c
>> +++ b/fs/cifs/connect.c
>> @@ -994,7 +994,7 @@ static int cifs_parse_security_flavors(char *value,
>>
>>   	switch (match_token(value, cifs_secflavor_tokens, args)) {
>>   	case Opt_sec_krb5:
>> -		vol->secFlg |= CIFSSEC_MAY_KRB5;
>> +		vol->secFlg |= CIFSSEC_MAY_KRB5 | CIFSSEC_MAY_SIGN;
>>   		break;
>>   	case Opt_sec_krb5i:
>>   		vol->secFlg |= CIFSSEC_MAY_KRB5 | CIFSSEC_MUST_SIGN;
>
> Looks like a reasonable bandaid until someone overhauls the auth
> selection code for sanity...
>
> Reviewed-by: Jeff Layton <jlayton-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
>
>

It's been a while and this patch is not yet applied.
Please apply.

It is already in patchwork I saw:
https://patchwork.kernel.org/patch/1637021/

Regards, Martijn

-- 
Martijn de Gouw
Engineer
Prodrive B.V.
Mobile: +31 63 17 76 161
Phone:  +31 40 26 76 200

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH 1/1] cifs: set MAY_SIGN when sec=krb5
       [not found] ` <1351071946-21458-1-git-send-email-martijn.de.gouw-BHYAuTpL47qEVqv0pETR8A@public.gmane.org>
  2012-10-24 11:37   ` Jeff Layton
@ 2013-01-31  4:53   ` Steve French
       [not found]     ` <CAH2r5muToSW5VW3KkazpakQdPBb3ptC0a75FK1+KswzVAvCCkw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  1 sibling, 1 reply; 8+ messages in thread
From: Steve French @ 2013-01-31  4:53 UTC (permalink / raw)
  To: Martijn de Gouw; +Cc: linux-cifs-u79uwXL29TY76Z2rM5mHXA

On Wed, Oct 24, 2012 at 4:45 AM, Martijn de Gouw
<martijn.de.gouw-BHYAuTpL47qEVqv0pETR8A@public.gmane.org> wrote:
> Setting this secFlg allows usage of dfs where some servers require
> signing and others don't.
>
> Signed-off-by: Martijn de Gouw <martijn.de.gouw-BHYAuTpL47qEVqv0pETR8A@public.gmane.org>
> ---
> :100644 100644 b39bb4a... 4da9dd3... M  fs/cifs/connect.c
>  fs/cifs/connect.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c
> index b39bb4a..4da9dd3 100644
> --- a/fs/cifs/connect.c
> +++ b/fs/cifs/connect.c
> @@ -994,7 +994,7 @@ static int cifs_parse_security_flavors(char *value,
>
>         switch (match_token(value, cifs_secflavor_tokens, args)) {
>         case Opt_sec_krb5:
> -               vol->secFlg |= CIFSSEC_MAY_KRB5;
> +               vol->secFlg |= CIFSSEC_MAY_KRB5 | CIFSSEC_MAY_SIGN;
>                 break;
>         case Opt_sec_krb5i:
>                 vol->secFlg |= CIFSSEC_MAY_KRB5 | CIFSSEC_MUST_SIGN;

Wouldn't this same problem occur if ntlm or ntlmv2 were authenticated
and a dfs referral sent us to a server which required signing - if
that is the case then it is not just Opt_sec_krb5 which needs to OR in
CIFSSEC_MAY_SIGN but also Opt_sec_ntlmssp and Opt_ntlm (also why do we
call this Opt_ntlm instead of Opt_sec_ntlm like the other 10?) and
Opt_sec_ntlmv2?


-- 
Thanks,

Steve

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH 1/1] cifs: set MAY_SIGN when sec=krb5
       [not found]     ` <CAH2r5muToSW5VW3KkazpakQdPBb3ptC0a75FK1+KswzVAvCCkw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2013-01-31 14:31       ` Martijn de Gouw
       [not found]         ` <510A802A.5000904-BHYAuTpL47qEVqv0pETR8A@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Martijn de Gouw @ 2013-01-31 14:31 UTC (permalink / raw)
  To: Steve French; +Cc: linux-cifs-u79uwXL29TY76Z2rM5mHXA

On 01/31/2013 05:53 AM, Steve French wrote:
> On Wed, Oct 24, 2012 at 4:45 AM, Martijn de Gouw
> <martijn.de.gouw-BHYAuTpL47qEVqv0pETR8A@public.gmane.org> wrote:
>> Setting this secFlg allows usage of dfs where some servers require
>> signing and others don't.
>>
>> Signed-off-by: Martijn de Gouw <martijn.de.gouw-BHYAuTpL47qEVqv0pETR8A@public.gmane.org>
>> ---
>> :100644 100644 b39bb4a... 4da9dd3... M  fs/cifs/connect.c
>>   fs/cifs/connect.c |    2 +-
>>   1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c
>> index b39bb4a..4da9dd3 100644
>> --- a/fs/cifs/connect.c
>> +++ b/fs/cifs/connect.c
>> @@ -994,7 +994,7 @@ static int cifs_parse_security_flavors(char *value,
>>
>>          switch (match_token(value, cifs_secflavor_tokens, args)) {
>>          case Opt_sec_krb5:
>> -               vol->secFlg |= CIFSSEC_MAY_KRB5;
>> +               vol->secFlg |= CIFSSEC_MAY_KRB5 | CIFSSEC_MAY_SIGN;
>>                  break;
>>          case Opt_sec_krb5i:
>>                  vol->secFlg |= CIFSSEC_MAY_KRB5 | CIFSSEC_MUST_SIGN;
>
> Wouldn't this same problem occur if ntlm or ntlmv2 were authenticated
> and a dfs referral sent us to a server which required signing - if
> that is the case then it is not just Opt_sec_krb5 which needs to OR in
> CIFSSEC_MAY_SIGN but also Opt_sec_ntlmssp and Opt_ntlm (also why do we
> call this Opt_ntlm instead of Opt_sec_ntlm like the other 10?) and
> Opt_sec_ntlmv2?
>
>

Using sec=ntlm on the same dfs I did not see this problem. So I guess not.

-- 
Martijn de Gouw
Engineer
Prodrive B.V.
Mobile: +31 63 17 76 161
Phone:  +31 40 26 76 200

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH 1/1] cifs: set MAY_SIGN when sec=krb5
       [not found]         ` <510A802A.5000904-BHYAuTpL47qEVqv0pETR8A@public.gmane.org>
@ 2013-02-01  5:51           ` Steve French
       [not found]             ` <CAH2r5mvc6tYze0TC2Ets9=7Fg5b3OJTk_dyONTvYLxswt1jN7g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Steve French @ 2013-02-01  5:51 UTC (permalink / raw)
  To: Martijn de Gouw; +Cc: linux-cifs-u79uwXL29TY76Z2rM5mHXA

I would like to trace this to check - I will try to resetup some DFS
share referrals tomorrow

On Thu, Jan 31, 2013 at 8:31 AM, Martijn de Gouw
<martijn.de.gouw-BHYAuTpL47qEVqv0pETR8A@public.gmane.org> wrote:
>
> On 01/31/2013 05:53 AM, Steve French wrote:
>>
>> On Wed, Oct 24, 2012 at 4:45 AM, Martijn de Gouw
>> <martijn.de.gouw-BHYAuTpL47qEVqv0pETR8A@public.gmane.org> wrote:
>>>
>>> Setting this secFlg allows usage of dfs where some servers require
>>> signing and others don't.
>>>
>>> Signed-off-by: Martijn de Gouw <martijn.de.gouw-BHYAuTpL47qEVqv0pETR8A@public.gmane.org>
>>> ---
>>> :100644 100644 b39bb4a... 4da9dd3... M  fs/cifs/connect.c
>>>   fs/cifs/connect.c |    2 +-
>>>   1 files changed, 1 insertions(+), 1 deletions(-)
>>>
>>> diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c
>>> index b39bb4a..4da9dd3 100644
>>> --- a/fs/cifs/connect.c
>>> +++ b/fs/cifs/connect.c
>>> @@ -994,7 +994,7 @@ static int cifs_parse_security_flavors(char *value,
>>>
>>>          switch (match_token(value, cifs_secflavor_tokens, args)) {
>>>          case Opt_sec_krb5:
>>> -               vol->secFlg |= CIFSSEC_MAY_KRB5;
>>> +               vol->secFlg |= CIFSSEC_MAY_KRB5 | CIFSSEC_MAY_SIGN;
>>>                  break;
>>>          case Opt_sec_krb5i:
>>>                  vol->secFlg |= CIFSSEC_MAY_KRB5 | CIFSSEC_MUST_SIGN;
>>
>>
>> Wouldn't this same problem occur if ntlm or ntlmv2 were authenticated
>> and a dfs referral sent us to a server which required signing - if
>> that is the case then it is not just Opt_sec_krb5 which needs to OR in
>> CIFSSEC_MAY_SIGN but also Opt_sec_ntlmssp and Opt_ntlm (also why do we
>> call this Opt_ntlm instead of Opt_sec_ntlm like the other 10?) and
>> Opt_sec_ntlmv2?
>>
>>
>
> Using sec=ntlm on the same dfs I did not see this problem. So I guess not.
>
>
> --
> Martijn de Gouw
> Engineer
> Prodrive B.V.
> Mobile: +31 63 17 76 161
> Phone:  +31 40 26 76 200




--
Thanks,

Steve

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH 1/1] cifs: set MAY_SIGN when sec=krb5
       [not found]             ` <CAH2r5mvc6tYze0TC2Ets9=7Fg5b3OJTk_dyONTvYLxswt1jN7g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2013-02-13 14:55               ` Martijn de Gouw
       [not found]                 ` <511BA949.2020100-BHYAuTpL47qEVqv0pETR8A@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: Martijn de Gouw @ 2013-02-13 14:55 UTC (permalink / raw)
  To: Steve French; +Cc: linux-cifs-u79uwXL29TY76Z2rM5mHXA

On 02/01/2013 06:51 AM, Steve French wrote:
> I would like to trace this to check - I will try to resetup some DFS
> share referrals tomorrow

Did you manage to trace to check this?

>
> On Thu, Jan 31, 2013 at 8:31 AM, Martijn de Gouw
> <martijn.de.gouw-BHYAuTpL47qEVqv0pETR8A@public.gmane.org> wrote:
>>
>> On 01/31/2013 05:53 AM, Steve French wrote:
>>>
>>> On Wed, Oct 24, 2012 at 4:45 AM, Martijn de Gouw
>>> <martijn.de.gouw-BHYAuTpL47qEVqv0pETR8A@public.gmane.org> wrote:
>>>>
>>>> Setting this secFlg allows usage of dfs where some servers require
>>>> signing and others don't.
>>>>
>>>> Signed-off-by: Martijn de Gouw <martijn.de.gouw-BHYAuTpL47qEVqv0pETR8A@public.gmane.org>
>>>> ---
>>>> :100644 100644 b39bb4a... 4da9dd3... M  fs/cifs/connect.c
>>>>    fs/cifs/connect.c |    2 +-
>>>>    1 files changed, 1 insertions(+), 1 deletions(-)
>>>>
>>>> diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c
>>>> index b39bb4a..4da9dd3 100644
>>>> --- a/fs/cifs/connect.c
>>>> +++ b/fs/cifs/connect.c
>>>> @@ -994,7 +994,7 @@ static int cifs_parse_security_flavors(char *value,
>>>>
>>>>           switch (match_token(value, cifs_secflavor_tokens, args)) {
>>>>           case Opt_sec_krb5:
>>>> -               vol->secFlg |= CIFSSEC_MAY_KRB5;
>>>> +               vol->secFlg |= CIFSSEC_MAY_KRB5 | CIFSSEC_MAY_SIGN;
>>>>                   break;
>>>>           case Opt_sec_krb5i:
>>>>                   vol->secFlg |= CIFSSEC_MAY_KRB5 | CIFSSEC_MUST_SIGN;
>>>
>>>
>>> Wouldn't this same problem occur if ntlm or ntlmv2 were authenticated
>>> and a dfs referral sent us to a server which required signing - if
>>> that is the case then it is not just Opt_sec_krb5 which needs to OR in
>>> CIFSSEC_MAY_SIGN but also Opt_sec_ntlmssp and Opt_ntlm (also why do we
>>> call this Opt_ntlm instead of Opt_sec_ntlm like the other 10?) and
>>> Opt_sec_ntlmv2?
>>>
>>>
>>
>> Using sec=ntlm on the same dfs I did not see this problem. So I guess not.
>>
>>
>> --
>> Martijn de Gouw
>> Engineer
>> Prodrive B.V.
>> Mobile: +31 63 17 76 161
>> Phone:  +31 40 26 76 200
>
>
>
>
> --
> Thanks,
>
> Steve
>

Regards,
Martijn
-- 
Martijn de Gouw
Engineer
Prodrive B.V.
Mobile: +31 63 17 76 161
Phone:  +31 40 26 76 200

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH 1/1] cifs: set MAY_SIGN when sec=krb5
       [not found]                 ` <511BA949.2020100-BHYAuTpL47qEVqv0pETR8A@public.gmane.org>
@ 2013-02-14  5:58                   ` Steve French
  0 siblings, 0 replies; 8+ messages in thread
From: Steve French @ 2013-02-14  5:58 UTC (permalink / raw)
  To: Martijn de Gouw; +Cc: linux-cifs-u79uwXL29TY76Z2rM5mHXA

On Wed, Feb 13, 2013 at 8:55 AM, Martijn de Gouw
<martijn.de.gouw-BHYAuTpL47qEVqv0pETR8A@public.gmane.org> wrote:
>
> On 02/01/2013 06:51 AM, Steve French wrote:
>>
>> I would like to trace this to check - I will try to resetup some DFS
>> share referrals tomorrow
>
>
> Did you manage to trace to check this?

Yes - I traced various configurations using ntlm (need to retry with
ntlmssp) to Samba.  NTLM mounts do not appear to need a change.

1) first server had signing disabled (which brings up the obvious
question, why does Samba disable signing for cifs share exports by
default?)  - failed as expected

2) first server had signing enabled, second server disabled and force
signing by specifying sec=ntlmi on mount - mount worked, but cd to DFS
referral failed as expected (since second server didn't support
signing and we specified it on the mount)

3) and the same configuration, with the mount not requesting signing -
upgraded to signing automatically on the connection (DFS referral) to
the second server.  Worked as expected.

Although your patch would work, I am curious why the kerberos
connection does not do the same thing as ntlm but that will be a
little trickier to setup (and I will try it tomorrow).



>> On Thu, Jan 31, 2013 at 8:31 AM, Martijn de Gouw
>> <martijn.de.gouw-BHYAuTpL47qEVqv0pETR8A@public.gmane.org> wrote:
>>>
>>>
>>> On 01/31/2013 05:53 AM, Steve French wrote:
>>>>
>>>>
>>>> On Wed, Oct 24, 2012 at 4:45 AM, Martijn de Gouw
>>>> <martijn.de.gouw-BHYAuTpL47qEVqv0pETR8A@public.gmane.org> wrote:
>>>>>
>>>>>
>>>>> Setting this secFlg allows usage of dfs where some servers require
>>>>> signing and others don't.
>>>>>
>>>>> Signed-off-by: Martijn de Gouw <martijn.de.gouw-BHYAuTpL47qEVqv0pETR8A@public.gmane.org>
>>>>> ---
>>>>> :100644 100644 b39bb4a... 4da9dd3... M  fs/cifs/connect.c
>>>>>    fs/cifs/connect.c |    2 +-
>>>>>    1 files changed, 1 insertions(+), 1 deletions(-)
>>>>>
>>>>> diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c
>>>>> index b39bb4a..4da9dd3 100644
>>>>> --- a/fs/cifs/connect.c
>>>>> +++ b/fs/cifs/connect.c
>>>>> @@ -994,7 +994,7 @@ static int cifs_parse_security_flavors(char
>>>>> *value,
>>>>>
>>>>>           switch (match_token(value, cifs_secflavor_tokens, args)) {
>>>>>           case Opt_sec_krb5:
>>>>> -               vol->secFlg |= CIFSSEC_MAY_KRB5;
>>>>> +               vol->secFlg |= CIFSSEC_MAY_KRB5 | CIFSSEC_MAY_SIGN;
>>>>>                   break;
>>>>>           case Opt_sec_krb5i:
>>>>>                   vol->secFlg |= CIFSSEC_MAY_KRB5 | CIFSSEC_MUST_SIGN;
>>>>
>>>>
>>>>
>>>> Wouldn't this same problem occur if ntlm or ntlmv2 were authenticated
>>>> and a dfs referral sent us to a server which required signing - if
>>>> that is the case then it is not just Opt_sec_krb5 which needs to OR in
>>>> CIFSSEC_MAY_SIGN but also Opt_sec_ntlmssp and Opt_ntlm (also why do we
>>>> call this Opt_ntlm instead of Opt_sec_ntlm like the other 10?) and
>>>> Opt_sec_ntlmv2?
>>>>
>>>>
>>>
>>> Using sec=ntlm on the same dfs I did not see this problem. So I guess
>>> not.
>>>
>>>
>>> --
>>> Martijn de Gouw
>>> Engineer
>>> Prodrive B.V.
>>> Mobile: +31 63 17 76 161
>>> Phone:  +31 40 26 76 200
>>
>>
>>
>>
>>
>> --
>> Thanks,
>>
>> Steve
>>
>
> Regards,
> Martijn
>
> --
> Martijn de Gouw
> Engineer
> Prodrive B.V.
> Mobile: +31 63 17 76 161
> Phone:  +31 40 26 76 200




--
Thanks,

Steve

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2013-02-14  5:58 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-24  9:45 [PATCH 1/1] cifs: set MAY_SIGN when sec=krb5 Martijn de Gouw
     [not found] ` <1351071946-21458-1-git-send-email-martijn.de.gouw-BHYAuTpL47qEVqv0pETR8A@public.gmane.org>
2012-10-24 11:37   ` Jeff Layton
     [not found]     ` <20121024073723.2e5063db-9yPaYZwiELC+kQycOl6kW4xkIHaj4LzF@public.gmane.org>
2013-01-30 19:03       ` Martijn de Gouw
2013-01-31  4:53   ` Steve French
     [not found]     ` <CAH2r5muToSW5VW3KkazpakQdPBb3ptC0a75FK1+KswzVAvCCkw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-01-31 14:31       ` Martijn de Gouw
     [not found]         ` <510A802A.5000904-BHYAuTpL47qEVqv0pETR8A@public.gmane.org>
2013-02-01  5:51           ` Steve French
     [not found]             ` <CAH2r5mvc6tYze0TC2Ets9=7Fg5b3OJTk_dyONTvYLxswt1jN7g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-02-13 14:55               ` Martijn de Gouw
     [not found]                 ` <511BA949.2020100-BHYAuTpL47qEVqv0pETR8A@public.gmane.org>
2013-02-14  5:58                   ` Steve French

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.