summaryrefslogtreecommitdiffstats
path: root/sys/netsmb/smb_smb.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused SMB_DIALECT_MAX macro.pfg2016-04-201-2/+0
| | | | Found by: jhb
* kernel: use our nitems() macro when it is available through param.h.pfg2016-04-191-1/+1
| | | | | | No functional change, only trivial cases are done in this sweep, Discussed in: freebsd-current
* Add unicode support to msdosfs and smbfs; original pathes from imura,kevlo2011-11-181-18/+46
| | | | | | bug fixes by Kuan-Chung Chiu <buganini at gmail dot com>. Tested by me in production for several days at work.
* Switch to our preferred 2-clause BSD license.joel2010-04-071-6/+0
| | | | Approved by: bp
* Initialize some variables that GCC4.2 thinks might possibly be used withoutmjacob2007-06-151-0/+2
| | | | being initialized.
* Retire NETSMBCRYPTO as a kernel option and make its functionalityyar2006-03-051-2/+0
| | | | | | | | | | | | | | | enabled by default in NETSMB and smbfs.ko. With the most of modern SMB providers requiring encryption by default, there is little sense left in keeping the crypto part of NETSMB optional at the build time. This will also return smbfs.ko to its former properties users are rather accustomed to. Discussed with: freebsd-stable, re (scottl) Not objected by: bp, tjr (silence) MFC after: 5 days
* /* -> /*- for license, minor formatting changesimp2005-01-071-1/+1
|
* Add support for SMB request signing, which prevents "man in the middle"tjr2004-01-021-6/+19
| | | | | | | | | | | attacks and is required to connect to Windows 2003 servers in their default configuration. This adds an extra field to the SMB header containing the truncated 64-bit MD5 digest of a key (a function of the user's password and the server's authentication challenge), an implicit sequence number, and the message data itself. As signing each message imposes a significant performance penalty, we only enable it if the server will not let us connect without it; this should eventually become an option to mount_smbfs.
* Use __FBSDID().obrien2003-06-111-2/+5
|
* Back out M_* changes, per decision of the TRB.imp2003-02-191-6/+6
| | | | Approved by: trb
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.alfred2003-01-211-6/+6
| | | | Merge M_NOWAIT/M_DONTWAIT into a single flag M_NOWAIT.
* fix connecting to (samba) server when share-level security is in effectfjoe2002-12-071-1/+1
| | | | | | | (do not send second password at all) Approved by: bp, re MFC after: 1 week
* Implement support for mixed case passwords.bp2002-09-161-7/+76
| | | | | Obtained from: Darwin MFC after: 2 weeks
* Add support for large readx and writex functions if server supports them.bp2002-09-161-0/+176
| | | | | Obtained from: Darwin MFC after: 2 weeks
* Remove redundant checks for iovcnt > 1. This should be handled properlybp2002-02-211-7/+7
| | | | | | | in the subr_mchain. Obtained from: Darwin project MFC after: 2 weeks
* Add unicode related definition for future use. Descibe Samba bug.bp2002-02-211-1/+9
| | | | | Obtained from: Darwin project MFC after: 2 weeks
* Update to C99, s/__FUNCTION__/__func__/,obrien2001-12-101-3/+3
| | | | also don't use ANSI string concatenation.
* Pull netsmb requester from the pre-KSE world. This update mostly basedbp2001-12-021-1/+1
| | | | on the patches submitted by Max Khon <fjoe@iclub.nsu.ru>
* Import kernel part of SMB/CIFS requester.bp2001-04-101-0/+660
Add smbfs(CIFS) filesystem. Userland part will be in the ports tree for a while. Obtained from: smbfs-1.3.7-dev package.
OpenPOWER on IntegriCloud