summaryrefslogtreecommitdiffstats
path: root/source
Commit message (Collapse)AuthorAgeFilesLines
...
* no longer neededAndrew Tridgell1997-09-151-58/+0
|
* This commit does 3 main things:Andrew Tridgell1997-09-1420-235/+96
| | | | | | | | | | | | | | | | | | | | | | | 1) put the encryption code in by default, with no #ifdef. It is still disabled by default so you need to add "encrypt passwords = yes" in smb.conf but at least all binaries will have it. 2) cleanup the kanji code so it compiles with no warnings 3) get rid of lots of uses of ugly non-portable C code. The main offender being things like "register" but also remove uses of the "const" keyword as there are compilers out there that don't support it and even those that do often complain about its usage. Users don't like warnings :-( There is still some work to do. We need to replace the md4 code with our own implementation. The current code (from rfc1186) is PD but is not very portable. The new RFC (rfc1320) is more portable but adds copyright restrictions. I'll do a from-scratch MD4 soon. We also need to test that what I've implemented is portable. It should be, but I'm too tired right now to test it on anything other than intel linux.
* This is a written from scratch DES implementation. I couldn't find aAndrew Tridgell1997-09-141-0/+290
| | | | | | | | | | | | | | | GPLd implementation so I decided to write one. This version only does DES ecb encryption and isn't very general, so it may in fact be exempt from ITAR regulations. ITAR regulations do not prohibit the distribution of code that can be used for authentication purposes only. This code has no decrypt function so it would be useless for a normal encryption application and thus may be ITAR exempt. It is also very slow, but we don't need it to be fast. It is a literal implementation from the standard and treats each bit as one byte to make the code easy to write.
* Added fix that means if connecting user sends guest accountJeremy Allison1997-09-121-1/+8
| | | | | | | with no password they are seen as guest. Previous patch broke this. Jeremy (jallison@whistle.com)
* charcnv.c client.c clitar.c kanji.c kanji.h loadparm.cJeremy Allison1997-09-1113-389/+486
| | | | | | | | | | | | | | mangle.c smb.h util.c: Big merge to allow KANJI support to be in the main binary without explicitly compiling with it. locking.c: Fix for smbstatus not being able to read files. namepacket.c: Removed unneccesary debug statement. trans2.c: Added Luke's proposed fix (ifdefed out until further testing). nmblookup.c: Fixed bug where query fails and status is done on bogus IP. Jeremy (jallison@whistle.com)
* fix a couple of "declaration shadows previous local" warnings.Andrew Tridgell1997-09-112-5/+3
|
* prototype updates for new functionsAndrew Tridgell1997-09-111-1/+21
|
* add the stdout parameter to lp_dump()Andrew Tridgell1997-09-111-1/+1
|
* some minor modifications to loadparm.c to support the necessaryAndrew Tridgell1997-09-111-56/+193
| | | | | | functions for wsmbconf. In particular added some more support routines (like lp_rename_service()) and make the dump routines take a FILE pointer rather than assuming stdout
* cgi.c is a simple set of CGI manipulation routinesAndrew Tridgell1997-09-114-0/+664
| | | | | | | | wsmbconf.c is a rudimentary web based smb.conf editor. Its really there just to demonstrate how such an editor can hook into loadparm.c, I don't expect anyone to actually use it as is. wsmbstatus.c is a simple web based smbstatus. Its probably broken.
* samba servers forcing local elections if they are not a local master.Luke Leighton1997-09-071-1/+1
| | | | added check for "preferred master" to ensure not forcing an election.
* JHT ===> Just setting version to 1.9.18alpha1John Terpstra1997-09-051-1/+1
|
* client.c: Made sure myhostname was initialised before substitutions.Jeremy Allison1997-09-054-6/+14
| | | | | | | status.c: Made sure myhostname was initialised before substitutions. server.c trans2.c: Moved OS/2 WPS fix. Jeremy (jallison@whistle.com)
* added debug reporting to file listing / mod_time() checking routine.Luke Leighton1997-09-051-2/+17
| | | | lp_file_list_changed().
* Fix from Frank Varnavas <varnavas@ny.ubs.com>.Jeremy Allison1997-09-041-3/+17
| | | | | | | | | We cannot use the same name as the client to the NT password server, as NT will drop client connections if the same client name connects twice. Instead, synthesize a name from our pid. and the remote machine name. Jeremy (jallison@whistle.com)
* Fixed up determination of client type for PROTOCOL_NT1. Uses clientJeremy Allison1997-09-046-13/+70
| | | | | | capabilities bits in session_setup_and_X to decide. Made remote_arch an enum as well as a string, for easier use. Jeremy (jallison@whistle.com)
* nameannounce.cJeremy Allison1997-09-036-32/+42
| | | | | | | | | | | | | | | | nameresp.c nameserv.c nameservreply.c proto.h : Removed broadcast and recurse parameters in the queue_netbios_pkt_wins() call - they are not needed as they should always be 'false' and 'true' respectively. Also fixed a bug with secure name registration (WINS server code). server.c: Finally fixed problem with error 267 being returned to Win95. It is needed by NT. This is a horrid fix and I would appreciate a better one :-). Jeremy (jallison@whistle.com)
* reply.c: Removed unused variables. Caught by gcc -Wall -WerrorJeremy Allison1997-09-023-7/+33
| | | | | | server.c: Fix for old DOS clients not understanding ERRbaddirectory - map to ERRbadpath. util.c: Fix for systems with no LOG_DAEMON facility. Jeremy (jallison@whistle.com)
* use of recursion_available and recursion_desired flag in netbios responses.Luke Leighton1997-09-013-29/+53
|
* added word count 3 support into reply_tcon_and_X (see cifs6.txt). theLuke Leighton1997-08-311-3/+23
| | | | | only thing i couldn't do was get the chaining word count to point to the end of the smb reply, for the next and_X (not that there is one).
* fixed a bug in the printjob encoding/decoding. We weren't doing it forAndrew Tridgell1997-08-313-17/+34
| | | | | | | | | | | | | | the print_ functions in reply.c, with the effect that you couldn't cancel print jobs from smbclient or from older dos clients. we now use a couple of utility functions printjob_encode() and printjob_decode() rather than sticking the bitops inline in each place. also fixed a bunch of places that used foo%0xFF rather than foo&0xFF Note that this isn't really me doing the commit, it can't be as I'm working on my thesis ...
* Makefile: New program and support for dynamic codepage loading.Jeremy Allison1997-08-303-141/+185
| | | | | | | charset.c: Dynamic codepage loading code. charset.h: Defines for file format. proto.h: Updated. Jeremy (jallison@whistle.com)
* Adding codepage definition files and codepage file compiler/decompiler.Jeremy Allison1997-08-307-0/+752
| | | | | | Adding install/uninstall scripts for compiled codepage files. Preparing for dynamic codepage loading. Jeremy (jallison@whistle.com)
* Oops. Reversed mangled map change made in error. TestingJeremy Allison1997-08-281-2/+3
| | | | found this one. Jeremy (jallison@whistle.com)
* includes.h: Make sure REPLACE_GETPASS are wrapped with #ifdefs.Jeremy Allison1997-08-283-0/+12
| | | | | | | nmbsync.c: Make sure REPLACE_GETPASS is defined before including includes.h clientutil.c: Catch null passwords. Fixes for a nmbd crash bug found by Herb Lewis @ SGI. Jermey(jallison@whistle.com)
* mangle.c: Fixed bug that caused string to run off the end of the mangled map.Jeremy Allison1997-08-283-8/+5
| | | | | | | | server.c: Changed comparison from dname to name2 - seems correct - don't know why I changed it originally. hmmmmm. trans2.c: Made lanman2 code more similar to scan_directory(). I should make the trans2 code call scan_dir as they are so similar. Jeremy(jallison@whistle.com).
* added a new type to mkproto.awk so it can handle shmem.cAndrew Tridgell1997-08-282-2/+2
| | | | | in general if you add a new type that is returned by a non-static function then just add it to the list of known types in mkproto.awk
* charset.c: Added patch for client code page 852 (Eastern European) fromSamba Release Account1997-08-273-3/+50
| | | | | | | Leos Bitto <bitto@altec.cz>. clitar.c: proto.h: Fixed proto mismatch for strslashcmp(). Jermey (jallison@netcom.com)
* Put back the smb_shm_ proto's that Luke keeps breaking !Samba Release Account1997-08-271-0/+3
| | | | Jeremy (jallison@whistle.com)
* doing that irritating compiler clash warning with the protos for standard_subSamba Release Account1997-08-273-12/+13
| | | | | | and standard_sub_basic. again. lkcl
* preparing for release of 1.9.17Samba Release Account1997-08-261-1/+1
|
* smb.h: Added error code used for OS2 WPS.Samba Release Account1997-08-262-12/+7
| | | | | | trans2.c: Added OS2 WPS fix - but ifdefed out for now. Will turn on after 1.9.17 release. Jeremy (jallison@whistle.com)
* charset.c : Add mapping for code page 932 (KANJI).Samba Release Account1997-08-257-39/+72
| | | | | | | | | | | | client.c : Fix crash bug. Add code to use BUFFER_SIZE for NetServerEnum calls. namepacket.c: Fixed cast. nmbsync.c : Add code to use BUFFER_SIZE for NetServerEnum calls. smb.h : Set default client code page to 932 for KANJI. system.c : Remove vendor specific code that crept in :-). util.c : Added #define to allow Samba to behave as Win95 when doing KANJI case insensitivity tests. Jeremy (jallison@whistle.com)
* Kanji fixes for upper/lower case conversion with sjis characters.Samba Release Account1997-08-214-30/+149
| | | | | Code from Takashi Fujita <fujita@ainix.isac.co.jp>. Jeremy (jallison@whistle.com)
* Changes to allow Samba to return the same error code as Windows NT.Samba Release Account1997-08-207-63/+297
| | | | | | | | | | | Takes care of the cases where a Windows program is parsing a pathname component by component and expects 2 different errors. ERRbadpath - if a component in the path doesn't exist. ERRbaddirectory - if a component in the path exists but is not a directory. Extra error code added to smb.h to support this. Code based on suggestions from "Christian Groessler" <chris@fast-ag.de>. Jeremy (jallison@whistle.com)
* Fix suggested by "Christian Groessler" <chris@fast-ag.de>Samba Release Account1997-08-204-4/+13
| | | | | | | | dir.c: Cause dptr_create to return -2 when failing on unix error. reply.c: Use UNIXERROR in more cases. server.c: Add ENOTDIR mapping to error table. trans2.c: Correctly determine UNIX error on dptr_create. Jeremy (jallison@whistle.com)
* Makefile: Changed for HPUX10 tidyup.Samba Release Account1997-08-1911-48/+115
| | | | | | | | | | | | | | | | | | includes.h: Changed for HPUX10 tidyup. ipc.c: Fixed bug where getting local server list from NT browsers would fail. nmbsync.c: Fixed bug where getting local server list from NT browsers would fail. proto.h: Changed for crash bug on SCO with USE_MMAP. quotas.c: Added OSF quotas (patch from Bret Giddings <bret@essex.ac.uk>). Rolled back solaris uid change - I think it was wrong. reply.c: Changed for crash bug on SCO with USE_MMAP. server.c: Removed Lukes changes. Changed for crash bug on SCO with USE_MMAP. smb.h: Changed for crash bug on SCO with USE_MMAP. smbpasswd.c:Fixed crash bug with Lukes changes. uid.c: Removed Lukes changes. util.c: Fixed I18N bug with extended char filenames and widelinks = no. Jeremy (jallison@whistle.com)
* JHT ===> Just making sure any new tests do not announce as the last alpha!John Terpstra1997-08-181-1/+1
|
* connecting to IPC$ goes under the guest account. the IPC$ share shouldSamba Release Account1997-08-172-24/+19
| | | | | | | | | | | | be treated no differently than any other share (for any security setting: user, server or share). this will clear up a bug where, when clients connect to the IPC$ share, this used to be done under the guest account. the standard_sub_basic() macros will substitute the _guest_ account for %U, causing the samba server to look different from when the client then connects to any other share. lkcl
* includes.h: Fixed S_IFLNK for old DEC ultrix.Samba Release Account1997-08-132-2/+12
| | | | | | ipc.c: Finally :-) fixed responses to NetServerEnum2 when SV_TYPE_ALL given. Jeremy (jallison@whistle.com)
* charset.c: Fixed bug with 'valid chars' param.Samba Release Account1997-08-124-6/+46
| | | | | | | | loadparm.c: Fixed bug with 'valid chars' param. nameelect.c:Unregister the 1b name from the WINS server when unbecoming master. nameservresp.c: Fix nasty browse bug where we were sending the query to the wrong ip address. Jeremy (jallison@whistle.com)
* spelling.Samba Release Account1997-08-111-1/+1
| | | | lkcl
* updating comments.Samba Release Account1997-08-101-13/+11
| | | | lkcl
* bug in num. arguments detection that stopped the -add option workingSamba Release Account1997-08-091-7/+3
| | | | lkcl
* failure to register DOMAIN<1b> netbios name caused nmbd to exit (a call toSamba Release Account1997-08-071-2/+1
| | | | | | exit()). this is a bad idea. lkcl
* updated smbpasswd to take the password on the command-line.Samba Release Account1997-08-061-20/+72
| | | | | | | | | | | two sets of operation: as root: specify username password. as user: specify old password new password this will allow shell scripts (like adduser) to include smbpasswd. lkcl
* Makefile: Added IRIX 6 target.Samba Release Account1997-08-053-8/+20
| | | | | | | loadparm.c: Fixed stupid static warnings with set_default_server_announce_type. password.c: Fixed char -> uchar cast warnings. nameservreply.c: Fixed group fade out code. Jeremy (jallison@whistle.com)
* loadparm.c: Added new netbios aliases parameter (code from Cisco)Samba Release Account1997-07-318-32/+146
| | | | | | | | | | | | | nameannounce.c: Code to announce aliases as well as our own names. namedbsubnet.c: Code to add the aliases to the server list. nameserv.c: Code to defend our aliases on the namelist. namework.c: Code to check it's one of our aliases. nmbd.c: Code to initialise the aliases. proto.h: Fixup protos. util.c: Code to check it's one of our aliases. All above code based on code for 1.9.16p11 donated by Cisco from Ben Woodard <bwoodard@luthien.cisco.com> Jeremy (jallison@whistle.com)
* client.c: Minor change to cast parameters for DEC unix.Samba Release Account1997-07-3010-35/+164
| | | | | | | | | | | | | clientutil.c: Minor change to cast parameters for DEC unix. ipc.c: Fixes to parameterise the stuff John wants. loadparm.c: Fixes to parameterise the stuff John wants. nameannounce.c: Fixes to parameterise the stuff John wants. namedbwork.c: Fixes to parameterise the stuff John wants. nameserv.h: Fixes to parameterise the stuff John wants. proto.h: Fixes to parameterise the stuff John wants. smb.h: Fixes to parameterise the stuff John wants. util.c: tidy. Jeremy (jallison@whistle.com)
* Minor text mods, mostly checking that CVS still worksSamba Release Account1997-07-301-3/+3
| | | | Dan