LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Grant Coady <grant_lkml@dodo.com.au>
To: dann frazier <dannf@dannf.org>
Cc: Grant Coady <gcoady.lk@gmail.com>, Willy Tarreau <w@1wt.eu>,
Santiago Garcia Mantinan <manty@debian.org>,
linux-kernel@vger.kernel.org, debian-kernel@lists.debian.org
Subject: Re: problems with latest smbfs changes on 2.4.34 and security backports
Date: Wed, 24 Jan 2007 08:04:36 +1100 [thread overview]
Message-ID: <mstcr2hm6aar4t58o3gm0hit6thpdd6ohp@4ax.com> (raw)
In-Reply-To: <20070123201936.GA26310@colo>
On Tue, 23 Jan 2007 13:19:37 -0700, dann frazier <dannf@dannf.org> wrote:
>On Mon, Jan 22, 2007 at 12:03:21AM +0100, Willy Tarreau wrote:
>> Hi Grant !
>>
>> On Mon, Jan 22, 2007 at 09:52:44AM +1100, Grant Coady wrote:
>> > On Fri, 19 Jan 2007 18:05:44 -0700, dann frazier <dannf@dannf.org> wrote:
>> >
>> > >On Thu, Jan 18, 2007 at 06:00:40PM -0700, dann frazier wrote:
>> > >Ah, think I see the problem now:
>> > >
>> > >--- kernel-source-2.4.27.orig/fs/smbfs/proc.c 2007-01-19 17:53:57.247695476 -0700
>> > >+++ kernel-source-2.4.27/fs/smbfs/proc.c 2007-01-19 17:49:07.480161733 -0700
>> > >@@ -1997,7 +1997,7 @@
>> > > fattr->f_mode = (server->mnt->dir_mode & (S_IRWXU | S_IRWXG | S_IRWXO)) | S_IFDIR;
>> > > else if ( (server->mnt->flags & SMB_MOUNT_FMODE) &&
>> > > !(S_ISDIR(fattr->f_mode)) )
>> > >- fattr->f_mode = (server->mnt->file_mode & (S_IRWXU | S_IRWXG | S_IRWXO)) | S_IFREG;
>> > >+ fattr->f_mode = (server->mnt->file_mode & (S_IRWXU | S_IRWXG | S_IRWXO)) | (fattr->f_mode & S_IFMT);
>> > >
>> > > }
>> > >
>> > client running 2.4.34 with above patch, server is running 2.6.19.2 to
>> > eliminate it from the problem space (hopefully ;) :
>> > grant@sempro:/home/other$ uname -r
>> > 2.4.34b
>> > grant@sempro:/home/other$ ls -l
>> > total 9
>> > drwxr-xr-x 1 grant wheel 4096 2007-01-21 11:44 dir/
>> > drwxr-xr-x 1 grant wheel 4096 2007-01-21 11:44 dirlink/
>> > -rwxr-xr-x 1 grant wheel 15 2007-01-21 11:43 file*
>> > -rwxr-xr-x 1 grant wheel 15 2007-01-21 11:43 filelink*
>>
>> It seems to me that there is a difference, because filelink now appears the
>> same size as file. It's just as if we had hard links instead of symlinks.
>
>I was running into this yesterday - turns out that Debian's current
>smbfs package contains a patch that checks for user passed options,
>and disables unix capabilities in that case. It was added in
>3.0.14a-4. I've filed a bug requesting the removal of this patch:
> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=408033
>
>Grant: Do you know if are you running a version of smbfs w/ this
> patch?
Hi Dann,
I'm running slackware-11, no smbfs package, 'smbmnt' is from samba-3.0.23c
package with two tiny unrelated (?) patches:
grant@deltree:/home/mirror/slackware-11.0/source$ find . -name samba*
./n/samba
./n/samba/samba.cups.diff.gz
./n/samba/samba.ssl.diff.gz
./n/samba/samba.SlackBuild
./n/samba/samba-3.0.23c.tar.asc
./n/samba/samba-3.0.23c.tar.bz2
grant@deltree:/home/mirror/slackware-11.0/source$ zless n/samba/samba.cups.diff.gz
--- ./source/configure.orig 2002-10-23 18:06:43.000000000 -0700
+++ ./source/configure 2002-10-23 18:07:12.000000000 -0700
@@ -3789,7 +3789,7 @@
CFLAGS="$CFLAGS `$CUPS_CONFIG --cflags`"
LDFLAGS="$LDFLAGS `$CUPS_CONFIG --ldflags`"
- LIBS="$LIBS `$CUPS_CONFIG --libs`"
+ LIBS="-lcrypt $LIBS `$CUPS_CONFIG --libs`"
fi
fi
grant@deltree:/home/mirror/slackware-11.0/source$ zcat n/samba/samba.ssl.diff.gz
--- ./source/configure.orig 2002-10-09 13:27:21.000000000 -0700
+++ ./source/configure 2002-10-23 18:06:43.000000000 -0700
@@ -12479,7 +12479,7 @@
fi
- LIBS="-lssl -lcrypto $LIBS"
+ LIBS="$LIBS -lssl -lcrypto"
# if test ! -d ${withval}; then
# echo "configure: error: called with --with-ssl, but ssl base directory ${withval} does not exist or is not a directory. Aborting config" 1>&2
Grant.
next prev parent reply other threads:[~2007-01-23 21:04 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-01-17 10:00 Santiago Garcia Mantinan
2007-01-17 21:55 ` Willy Tarreau
2007-01-18 0:09 ` Grant Coady
2007-01-18 4:21 ` Willy Tarreau
2007-01-18 5:59 ` Grant Coady
2007-01-18 22:51 ` dann frazier
2007-01-19 1:00 ` dann frazier
2007-01-19 5:15 ` Willy Tarreau
2007-01-20 1:05 ` dann frazier
2007-01-20 6:18 ` Willy Tarreau
2007-01-21 22:52 ` Grant Coady
2007-01-21 23:03 ` Willy Tarreau
2007-01-21 23:50 ` Grant Coady
2007-01-22 18:19 ` dann frazier
2007-01-23 5:42 ` Willy Tarreau
2007-01-23 21:12 ` dann frazier
2007-01-23 22:00 ` Willy Tarreau
2007-01-23 23:46 ` Grant Coady
2007-01-24 0:11 ` dann frazier
2007-01-22 8:54 ` Santiago Garcia Mantinan
2007-01-22 9:18 ` Willy Tarreau
2007-01-22 9:36 ` Santiago Garcia Mantinan
2007-01-22 10:49 ` Grant Coady
2007-01-22 10:46 ` Grant Coady
2007-01-23 20:19 ` dann frazier
2007-01-23 21:04 ` Grant Coady [this message]
2007-01-23 21:35 ` dann frazier
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=mstcr2hm6aar4t58o3gm0hit6thpdd6ohp@4ax.com \
--to=grant_lkml@dodo.com.au \
--cc=dannf@dannf.org \
--cc=debian-kernel@lists.debian.org \
--cc=gcoady.lk@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=manty@debian.org \
--cc=w@1wt.eu \
--subject='Re: problems with latest smbfs changes on 2.4.34 and security backports' \
/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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).