From owner-freebsd-fs@FreeBSD.ORG Tue Dec 30 02:06:48 2014 Return-Path: Delivered-To: freebsd-fs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9BB20FE9 for ; Tue, 30 Dec 2014 02:06:48 +0000 (UTC) Received: from ns.kevlo.org (220-135-115-6.HINET-IP.hinet.net [220.135.115.6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "ns.kevlo.org", Issuer "ns.kevlo.org" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 5675C2758 for ; Tue, 30 Dec 2014 02:06:47 +0000 (UTC) Received: from ns.kevlo.org (localhost [127.0.0.1]) by ns.kevlo.org (8.14.9/8.14.9) with ESMTP id sBU25F7f073130 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Tue, 30 Dec 2014 10:05:16 +0800 (CST) (envelope-from kevlo@ns.kevlo.org) Received: (from kevlo@localhost) by ns.kevlo.org (8.14.9/8.14.9/Submit) id sBU25ACQ073129; Tue, 30 Dec 2014 10:05:10 +0800 (CST) (envelope-from kevlo) Date: Tue, 30 Dec 2014 10:05:10 +0800 From: Kevin Lo To: Rick Macklem Subject: Re: help using mount_smbfs with apple time capsule server Message-ID: <20141230020510.GA73120@ns.kevlo.org> References: <20141229053714.GA66793@ns.kevlo.org> <2050662882.3355858.1419863932660.JavaMail.root@uoguelph.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <2050662882.3355858.1419863932660.JavaMail.root@uoguelph.ca> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: freebsd-fs@freebsd.org, kirk@ba23.org X-BeenThere: freebsd-fs@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Filesystems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Dec 2014 02:06:48 -0000 On Mon, Dec 29, 2014 at 09:38:52AM -0500, Rick Macklem wrote: > > Kevin Lo wrote: > > On Sun, Dec 28, 2014 at 06:12:07PM -0500, Rick Macklem wrote: > > > > > > Kirk Russell wrote: > > > > Hi, > > > > > > > > I cannot get FreeBSD 10's smbfs client to work with my server -- > > > > an > > > > Apple time > > > > capsule 4th generation version 7.6.4. > > > > > > > > Here are the commands I ran, to reproduce the issue: > > > > # uname -a > > > > FreeBSD 10.1-RELEASE FreeBSD 10.1-RELEASE #0 r274401: Tue Nov 11 > > > > 21:02:49 UTC 2014 > > > > root@releng1.nyi.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 > > > > # mount_smbfs -R 16 //lamb@Meganium/Data /mnt > > > > Password: > > > > # dd if=/mnt/afile bs=1 count=1 of=/dev/null > > > > dd: /mnt/afile: No such file or directory > > > > Are you sure the file "afile" really exists? > > > > > > For the FreeBSD 10 session, I tried to capture the raw packets, > > > > using > > > > tcpdump, > > > > in file bad.tcpdump. > > > > > > > > > > > > This works with FreeBSD 9. For this working session, I tried to > > > > capture the > > > > raw packets, using tcpdump, in file good.tcpdump. > > > > > > > > # uname -a > > > > FreeBSD 9.3-STABLE FreeBSD 9.3-STABLE #0: Wed Dec 24 16:16:05 > > > > EST > > > > 2014 kirk@freenas:/usr/obj/usr/src/sys/GENERIC amd64 > > > > # mount_smbfs -R 16 //lamb@Meganium/Data /mnt > > > > Password: > > > > # dd if=/mnt/afile bs=1 count=1 of=/dev/null > > > > 1+0 records in > > > > 1+0 records out > > > > 1 bytes transferred in 0.000345 secs (2899 bytes/sec) > > > > > > > > > > > > The two raw packets dumps are in this archive: > > > > http://www.employees.org/~kirk/bstgbugs/smbfs.tar.gz > > > > > > > > Any pointers how to get his working? > > > > The server appears to be returning an ERRbadpath error. > > > > > > > Well, my guess is that it has something to do with the Unicode > > > changes added to smbfs about three years ago by kevlo@ (r227650 > > > and friends in head). These changes are not in FreeBSD9. > > > > Hmm, it was MFC'ed to stable/9 (r230196). > > > Oops, my mistake. When I looked at svnweb, I saw the first log > entry for smbfs_subr.c listing "MFC: r228796", but didn't notice > the second "MFC: r227650" and thought it hadn't been MFC'd. No worries :-) > All I can tell you is that wireshark shows "\file" for the good.tcpdump > vs "\\afile" for bad.tcpdump, so I guessed that was why the Mac didn't > find it? I don't have machines running samba on OS X, I'll try to borrow my colleague's laptop and test it out, thanks. > I'll leave now, since I know nothing about SMB, rick > > > > It appears that it now sends "\\afile" instead of "\afile" and > > > I know nothing about the code/protocol but r227650 added changes > > > like: > > > error = mb_put_uint8(mbp, '\\'); > > > replaced with: > > > if (SMB_UNICODE_STRINGS(vcp)) > > > error = mb_put_uint16le(mbp, '\\') > > > else > > > error = mb_put_uint8(mbp, '\\'); > > > Note that the '\\' is actually 4 \ characters. > > > > > > Hopefully someone knows enough about Unicode or how SMB > > > uses it to make sense of this? > > > > I tested it under FreeBSD -current [1] and and 9.3-STABLE [2], > > it works perfectly... > > > > [1] > > ftp://ftp.freebsd.org/pub/FreeBSD/snapshots/ISO-IMAGES/11.0/FreeBSD-11.0-CURRENT-amd64-20141222-r276066-memstick.img > > > > [2] > > ftp://ftp.freebsd.org/pub/FreeBSD/snapshots/ISO-IMAGES/9.3/FreeBSD-9.3-STABLE-amd64-20141222-r276041-memstick.img > > > > > rick > > > > > > > -- > > > > Kirk Russell > > > > http://www.ba23.org/ > > Kevin