Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/external/bsd/smbfs/dist Import latest smbfs from:
details: https://anonhg.NetBSD.org/src/rev/631f1e716656
branches: trunk
changeset: 792198:631f1e716656
user: christos <christos%NetBSD.org@localhost>
date: Wed Dec 25 20:33:13 2013 +0000
description:
Import latest smbfs from:
http://people.freebsd.org/~bp/pub/smbfs/smbfs-1.4.1.tar.gz
diffstat:
external/bsd/smbfs/dist/COPYRIGHT | 29 +
external/bsd/smbfs/dist/CREDITS | 10 +
external/bsd/smbfs/dist/HISTORY | 130 ++
external/bsd/smbfs/dist/INSTALL | 68 +
external/bsd/smbfs/dist/Makefile | 87 +
external/bsd/smbfs/dist/Makefile.inc | 43 +
external/bsd/smbfs/dist/README | 50 +
external/bsd/smbfs/dist/config.mk.in | 37 +
external/bsd/smbfs/dist/configure | 3 +
external/bsd/smbfs/dist/examples/dot.nsmbrc | 57 +
external/bsd/smbfs/dist/examples/print/lj6l | 22 +
external/bsd/smbfs/dist/examples/print/ljspool | 4 +
external/bsd/smbfs/dist/examples/print/printcap.sample | 7 +
external/bsd/smbfs/dist/examples/print/tolj | 5 +
external/bsd/smbfs/dist/examples/smbfs.sh.sample | 37 +
external/bsd/smbfs/dist/include/cflib.h | 86 +
external/bsd/smbfs/dist/include/netsmb/nb_lib.h | 147 +++
external/bsd/smbfs/dist/include/netsmb/smb_lib.h | 256 +++++
external/bsd/smbfs/dist/include/netsmb/smb_rap.h | 74 +
external/bsd/smbfs/dist/lib/Makefile | 21 +
external/bsd/smbfs/dist/lib/Makefile.inc | 18 +
external/bsd/smbfs/dist/lib/smb/Makefile | 50 +
external/bsd/smbfs/dist/lib/smb/cfopt.c | 123 ++
external/bsd/smbfs/dist/lib/smb/ctx.c | 773 +++++++++++++++++
external/bsd/smbfs/dist/lib/smb/file.c | 80 +
external/bsd/smbfs/dist/lib/smb/kiconv.c | 61 +
external/bsd/smbfs/dist/lib/smb/mbuf.c | 467 ++++++++++
external/bsd/smbfs/dist/lib/smb/nb.c | 191 ++++
external/bsd/smbfs/dist/lib/smb/nb_name.c | 198 ++++
external/bsd/smbfs/dist/lib/smb/nb_net.c | 201 ++++
external/bsd/smbfs/dist/lib/smb/nbns_rq.c | 380 ++++++++
external/bsd/smbfs/dist/lib/smb/nls.c | 214 ++++
external/bsd/smbfs/dist/lib/smb/print.c | 97 ++
external/bsd/smbfs/dist/lib/smb/rap.c | 404 ++++++++
external/bsd/smbfs/dist/lib/smb/rcfile.c | 499 ++++++++++
external/bsd/smbfs/dist/lib/smb/rcfile_priv.h | 20 +
external/bsd/smbfs/dist/lib/smb/rq.c | 179 +++
external/bsd/smbfs/dist/lib/smb/subr.c | 243 +++++
external/bsd/smbfs/dist/mount_smbfs/Makefile | 18 +
external/bsd/smbfs/dist/mount_smbfs/getmntopts.c | 108 ++
external/bsd/smbfs/dist/mount_smbfs/mntopts.h | 91 ++
external/bsd/smbfs/dist/mount_smbfs/mount_smbfs.8 | 158 +++
external/bsd/smbfs/dist/mount_smbfs/mount_smbfs.c | 265 +++++
external/bsd/smbfs/dist/smbutil/Makefile | 9 +
external/bsd/smbfs/dist/smbutil/common.h | 17 +
external/bsd/smbfs/dist/smbutil/dumptree.c | 134 ++
external/bsd/smbfs/dist/smbutil/login.c | 202 ++++
external/bsd/smbfs/dist/smbutil/lookup.c | 110 ++
external/bsd/smbfs/dist/smbutil/print.c | 152 +++
external/bsd/smbfs/dist/smbutil/smbutil.1 | 124 ++
external/bsd/smbfs/dist/smbutil/smbutil.c | 155 +++
external/bsd/smbfs/dist/smbutil/view.c | 127 ++
52 files changed, 7041 insertions(+), 0 deletions(-)
diffs (truncated from 7250 to 300 lines):
diff -r c504373688fe -r 631f1e716656 external/bsd/smbfs/dist/COPYRIGHT
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/external/bsd/smbfs/dist/COPYRIGHT Wed Dec 25 20:33:13 2013 +0000
@@ -0,0 +1,29 @@
+ Copyright (c) 2000, 2001 Boris Popov
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ 3. All advertising materials mentioning features or use of this software
+ must display the following acknowledgement:
+ This product includes software developed by Boris Popov.
+ 4. Neither the name of the author nor the names of any co-contributors
+ may be used to endorse or promote products derived from this software
+ without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ SUCH DAMAGE.
diff -r c504373688fe -r 631f1e716656 external/bsd/smbfs/dist/CREDITS
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/external/bsd/smbfs/dist/CREDITS Wed Dec 25 20:33:13 2013 +0000
@@ -0,0 +1,10 @@
+
+ In the development process next sources were used:
+
+Various documents from the Microsoft ftp site.
+HTML docs published by Thursby Software.
+
+Special thanks to the Samba team for permission to use their source
+code as reference.
+
+Author - Boris Popov <bp%butya.kz@localhost>, <bp%freebsd.org@localhost>
diff -r c504373688fe -r 631f1e716656 external/bsd/smbfs/dist/HISTORY
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/external/bsd/smbfs/dist/HISTORY Wed Dec 25 20:33:13 2013 +0000
@@ -0,0 +1,130 @@
+16.04.2001 1.4.1
+ - Kernel side of smbfs committed in the FreeBSD-current. It controlled
+ by following options: LIBMCHAIN, LIBICONV, NETSMB, NETSMBCRYPTO and SMBFS.
+ - Removed static dependency on the libiconv library, option WITH_ICONV
+ removed as well. If you use libiconv support, make sure that the latest
+ port is installed.
+ - Multiple mount/umount operations called in parallel can cause kernel
+ panic - fixed.
+ - Misc code cleanups.
+
+26.02.2001 1.3.6
+ - Names of some options is the config.mk.in file are changed. The old ones
+ are still supported.
+ - Synch with changes in the recent -current (you'll need kernel compiled
+ from sources at least as of Feb 24).
+ - In all previous versions of smbfs signals weren't properly masked,
+ which caused erratical behavior of some programs (ftp(1) for example).
+ - Mounted shares may become "frozen" (no timeout occurs) if server died or
+ disconnected for some reason - fixed.
+
+09.02.2001 1.3.5
+ - The user and server names was swapped in the "TreeConnect"
+ request (fixed by Jonathan Hanna).
+ - smb requester could cause a panic if there is no free mbufs - fixed.
+ - It is possible to use smbfs with devfs now, but it wasn't tested under
+ SMP. Also note that device permissions will be wrong, because devfs
+ do not allow passing of credentials to the cloning function.
+ - nsmbX device moved from the /dev/net directory to /dev directory.
+
+31.01.2001 1.3.4
+ - Maintance: synch with changes in the recent -current
+
+28.01.2001 1.3.3
+ - Connection handling engine rewritten in order to reduce number of
+ possible deadlocks during reconnect operations.
+ - Directory traversals should be faster on large directories.
+ - smbfs now can talk to the NetApp servers (thanks to Jonathan Hanna).
+ - smbfs.sh.sample script updated (ideas from Nikolai Saoukh).
+ - Minor bug fixes.
+
+19.11.2000 1.3.2
+ - synch with changes in the recent -current
+ - nail down a nasty bug which may cause incorrect values supplied as
+ domain name (reported by Harald Weis).
+ - There was a bug in the directory listing code which caused long directory
+ traversals to fail (reported by A G F Keahan).
+
+29.10.2000 1.3.1
+ - An attempt was made to get rid from the possible kernel stack overflow.
+ - Now connection will be restored properly under -stable.
+ NOTE: NT servers have an 'AutoDisconnect' feature which will drop client
+ connection after some time of idleing. smbfs will restore connection on
+ the next request, but one may wish to setup a cron job with a simple
+ 'ls /ntmount' command.
+
+20.10.2000 1.3.0
+ - Network IO engine significantly reworked. Now it uses kernel threads
+ to implement 'smbiod' process which handles network traffic for each VC.
+ Previous model were incapable to serve large number of mount points and
+ didn't work well with intensive IO operations performed on a different
+ files on the same mount point. Special care was taken on better
+ usage of MP systems.
+ Unfortunately, kernel threads aren't supported by FreeBSD 3.X and for
+ now it is excluded from the list of supported systems.
+ - Reduce overhead caused by using single hash table for each mount point.
+
+26.09.2000 1.2.8 (never released)
+ - More SMP related bugs are fixed.
+ - Make smbfs compatible with the Linux emulator.
+ - smbfs now known to work with IBM LanManager (special thanks to
+ Eugen Averin <mad%euinf.dp.ua@localhost>)
+ - Fix problem with files bigger than 2GB (reported by Lee McKenna)
+ - Please note that smbfs may not work properly with FreeBSD 3.X.
+
+16.08.2000 1.2.7
+ - Maintance: use better algorithm to detect SYSCTL_HANDLER_ARGS changes
+ to avoid compilation problems on various versions of FreeBSD.
+
+07.08.2000 1.2.6
+ - Fix iconv support, was broken in the 1.2.5
+ - Minor corrections to 'smbutil view' command.
+ - Fix kernel memory leak caused by two subsequent and identical
+ 'smbutil login' commands.
+
+25.07.2000 1.2.5
+ - NetBIOS name resolver added. '-I' option still supported. WINS server
+ can be specified in the nsmbrc file (nbns variable). To use resolver
+ with Win9X machines you have to specify WINS server in the config file.
+
+12.07.2000 1.2.4
+ - Variable SRCTREE in the config.mk replaced with SYSDIR and should
+ point to the sys directory. '/usr/src/sys' for example.
+ - Correct problem with the keep-alive packets
+
+04.07.2000 1.2.3
+ - Killed some bugs related to the out-of-mbufs condition.
+ - new keyword 'addr' added to the config file to specify server address.
+ - Another attempt to make reconnection procedure more stable.
+
+21.06.2000 1.2.2
+ - Device handles wasn't freed under FreeBSD 3.4 - fixed.
+ Implement correct handling of multiple connections to the same NT
+ server (thanks to kit <kit.mitchell%team.xtra.co.nz@localhost>) for report.
+ More misc fixes for an NT servers.
+
+11.06.2000 1.2.1
+ - More bug fixes in the connection handling mechanism.
+ mount_smbfs(8) manpage has now proper description for an '-N' option.
+ smbutil supports new commands:
+ 'print' - send file to the remote printer
+ 'view' - list shares available on the specified host
+ 'login' - create permanent connection to remote host
+ 'logout'- counterpart of 'login'
+ 'crypt' - produce an encrypted password to store in the .nsmbrc file.
+
+01.06.2000 1.1.2
+ - Support for FreeBSD 3.4 added (see INSTALL file for details).
+ Add advisory locking support in order to make fcntl(2), flock(2)
+ system calls actually work on smbfs.
+ Few non-serious bugs fixed.
+
+16.05.2000 1.0.5
+ - fix authentication code, this caused troubles with NT server.
+ (Thanks to Neil Blakey-Milner and Andrew Zavjalov for testing)
+ Some documentation changes.
+
+14.05.2000 1.0.2
+ - first public release
+
+Boris Popov <bp%butya.kz@localhost>
diff -r c504373688fe -r 631f1e716656 external/bsd/smbfs/dist/INSTALL
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/external/bsd/smbfs/dist/INSTALL Wed Dec 25 20:33:13 2013 +0000
@@ -0,0 +1,68 @@
+ 1. Building
+ ===========
+
+ Copy config.in file to the config.local and edit it for your needs. Build
+process requires kernel sources in order to compile KLD module. If you want
+to use encrypted passwords you'll need an src/sys/crypto directory (sys-crypto
+cvsup collection) because encryption process involves DES algorithm.
+
+ Note for FreeBSD-current: it have kernel module sources in the base
+tree and requires options LIBMCHAIN and LIBICONV included in the kernel
+config file. smbfs can be either compiled in the kernel or loaded as module.
+
+ If FreeBSD machine and SMB server uses different character sets you
+may consider install ports/converters/iconv package (version 2.0 required).
+
+ Type 'make' to compile.
+
+ If you're running any previous version of smbfs, unmount all mounted
+shares and unload an old module via 'kldunload smbfs' command.
+
+
+ 2. Installing
+ =============
+
+ 'make install' command will copy compiled binaries to /usr/local/bin
+directory and KLD module into /modules directory.
+
+ If you're running smbfs for the first time, it is also necessary to
+run 'make makedev' command in order to create /dev/nsmb0 device.
+
+ 3. Configuring
+ ==============
+
+ KLD module can be loaded either manually:
+
+ kldload smbfs.ko
+
+ or via loader.conf(5) file:
+
+ smbfs_load="YES"
+
+ However it is not strictly necessary because mount_smbfs(8) command
+will load it automatically.
+
+ Copy ./examples/dot.nsmbrc file into your home directory with ./.nsmbrc
+name and edit it for your needs.
+
+
+ 4. Running
+ ==========
+
+ Please read mount_smbfs man page to get overview of command options.
+
+ Here is a quick example:
+
+ mount_smbfs -I hostname //bp@myserver/myshare /mnt
+
+ If something goes wrong, please try to find a problem and, if it is a bug
+ send me detailed description or patch. Before complaining about a bug, please
+ check the same operations with smbclient program included in the Samba package.
+
+
+
+ 5. Deinstalling
+ ===============
+
+ All files can be completly removed by typing 'make deinstall' in the
+working directory.
diff -r c504373688fe -r 631f1e716656 external/bsd/smbfs/dist/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/external/bsd/smbfs/dist/Makefile Wed Dec 25 20:33:13 2013 +0000
@@ -0,0 +1,87 @@
+# Id: Makefile,v 1.12 2001/04/16 04:34:26 bp Exp
+#
+# Valid targets:
+# install installs binaries and man pages
+# deinstall undo install (except man pages)
+# install-src copy .h files in /usr/local/include
+# install-lib copy lib files in /usr/lib
+# deinstall-lib,
+# deinstall-src undo corresponding install-* target
+# clean cleanup source tree
+
+.if ${MACHINE_ARCH} != "i386"
+. error "only IA32 machines supported"
+.endif
+
+CONFIG_INT?= config.int
+CONFIG_MK?= config.mk
+
+CFGDEPEND=
+
+.ifmake !configure && !clean
+. if !exists(${CONFIG_INT})
+. error "Run 'make configure' before build"
+. else
+. include "${CONFIG_INT}"
+. endif
+.else
+. if exists(${CONFIG_MK})
+CFGDEPEND= ${CONFIG_MK}
+
+${CONFIG_MK}: config.mk.in
+ @echo Your ${CONFIG_MK} file is older than the config.mk.in file
+ @echo Please check for possible changes
+ @false
+
+. include "${CONFIG_MK}"
+. endif
+.endif
+
+BUILDKLD?=yes
+PREFIX?=/usr/local
+SYSDIR?=/usr/src/sys
+
Home |
Main Index |
Thread Index |
Old Index