summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* updated version number.Luke Leighton1997-11-011-1/+1
|
* added instructions advising people to set up 1.9.18alpha as a Win95 DomainLuke Leighton1997-11-011-0/+16
| | | | | Logon server, with encrypted passwords *prior* to trying out the NT Domain Logons.
* client.c clientutil.c proto.hLuke Leighton1997-11-014-28/+32
| | | | | | | | | | | | | | | | | rpc_pipes/ntclientlsa.c rpc_pipes/ntclientnet.c rpc_pipes/ntclientpipe.c : added extra argument to cli_call_api() to allow specifying the length of the \PIPE\ name. it appears that, like when the name of the pipe is NULL and OS-2 requires two extra bytes _after_ the NULL name, that NT requires two bytes after the NULL-terminated name "\PIPE\". these two bytes vary, but values seen so far are: 0x72 0x70; 0x63 0x65; 0x44 0x65; 0x4E 0x00. there appears not to be much logic to this. purpose unknown. ntclient.c: put Set Named Pipe Handle State call directly after SMBopenX call.
* updating to latest versionLuke Leighton1997-11-011-7/+55
|
* set O_CREAT on lock fileAndrew Tridgell1997-11-011-1/+2
|
* a simple SMB torture tester. This will allow us to evaluate lockingAndrew Tridgell1997-11-018-168/+847
| | | | techniques more accurately.
* change a debug levelAndrew Tridgell1997-11-011-3/+3
|
* don't use SEM_UNDO because of ridiculously small undo limits on someAndrew Tridgell1997-11-011-1/+25
| | | | OSes. Instead add explicit checks for dead locks at startup.
* some locking code cleanupsAndrew Tridgell1997-11-014-241/+222
|
* re-initialise the timezone on each new connection. This means youAndrew Tridgell1997-11-011-0/+3
| | | | don't need to restart smbd after a DST change.
* Update file for automatically generating a releaseHerb Lewis1997-10-3110-509/+372
|
* change from * to ^ in hashing of device/inode. Using * meant that ifAndrew Tridgell1997-10-311-1/+1
| | | | | | the device number happened to divide the number of hash buckets we would only use a small fraction of the hash buckets, which would slow things down.
* define NO_SEMUN for svr4Andrew Tridgell1997-10-311-0/+1
|
* OSF1 doesn't define union semun either.Andrew Tridgell1997-10-311-8/+9
|
* pm_process() never closed the file (a memory and file descriptor leak)Andrew Tridgell1997-10-311-0/+3
|
* no Makefile needed here eitherAndrew Tridgell1997-10-311-26/+0
|
* this is now in the rpc_pipes directoryAndrew Tridgell1997-10-311-12/+0
|
* removing the files that are now in rpc_pipesAndrew Tridgell1997-10-3110-10/+0
| | | | | | | | For future reference, if you want to move files about then don't do it this way. The history info is lost. Instead contact me first and tell me what you want moved and why. Then I'll decide if we can do it while retaining the history info.
* - cleanup some warningsAndrew Tridgell1997-10-313-20/+210
| | | | - redo the prototypes
* blanked out these files, so that if someone does make proto, they don'tLuke Leighton1997-10-3010-4906/+0
| | | | | | | interfere with the files in the rpc_pipes/ directory. andrew doesn't want to lose any cvs history by moving files around, so he's going to look into that tomorrow.
* added a client-side "set named pipe handle state" function. not knownLuke Leighton1997-10-301-4/+18
| | | | | exactly when you call this (before or after a bind). can sort that out later.
* storing pipe name state (from set named pipe handle state call) in theLuke Leighton1997-10-303-23/+21
| | | | pipes array.
* Modified Files:Christopher R. Hertel1997-10-3013-9/+4180
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ubiqx/Makefile ubiqx/README.UBI Added new modules to the Makefile. Changed the text of the README to reflect the directory change. Added Files: ubiqx/ubi_AVLtree.c ubiqx/ubi_AVLtree.h ubiqx/ubi_BinTree.c ubiqx/ubi_BinTree.h ubiqx/ubi_SplayTree.c ubiqx/ubi_SplayTree.h ubiqx/ubi_StackQueue.c ubiqx/ubi_StackQueue.h ubiqx/ubi_sLinkList.c ubiqx/ubi_sLinkList.h This is the remainder of the toolkit. A quick rundown: sLinkList = A simple singly-linked list. StackQueue = Implements both a stack and a queue. dLinkList = (Not added 'cause it's already there.) A doubly-linked list. BinTree = Base level binary tree module. (No height balancing, just the basics.) AVLtree = Descendant type of BinTree. Implements a height-balanced (AVL) binary tree. SplayTree = Descendant type of BinTree. Implements a splay-balanced binary tree. Renamed Files: ubiqx/COPYING.LGPL ==> ubiqx/COPYING.LIB This matches the naming that GNU suggests.
* GLPL notice on the rpc_pipes/ directoryLuke Leighton1997-10-301-0/+12
|
* Makefile:Luke Leighton1997-10-304-78/+20
| | | | | | | | | | | | simply adding pipes.o to SMBDOBJ3. rpc_pipes/pipe_hnd.c : created pipe handles module. pipes.c server.c : use of pipe_hnd functions in SMBopenX and SMBclose, on the IPC$ pipe.
* Makefiles for libraries. the dependencies aren't quite right, and iLuke Leighton1997-10-304-211/+58
| | | | | | | don't know how to sort them. make proto in each library directory. over-ride the make proto for ubiqx, so that it doesn't happen, but throws up a warning instead.
* Chris will be pleased to know that mkproto.awk no longer runs on theAndrew Tridgell1997-10-301-3/+0
| | | | ubiqx files :-)
* moved ubi_ modules back into the ubiqx directory.Andrew Tridgell1997-10-305-2/+2
| | | | | | | | I've added a very simple (and portable) method for having separate source directories. This should also help when we add directories for the various ports. A unix directory would make sense.
* preparing for release of 1.9.18alpha9Samba Release Account1997-10-3042-41/+44
|
* updated documentation as chmodding files /tmp/lsarpc and /tmp/netlogonLuke Leighton1997-10-301-21/+12
| | | | is not needed any more.
* removed mechanism that created actual files NETLOGON, lsarpc and the like,Luke Leighton1997-10-308-83/+122
| | | | | | | | which are pipes on the IPC$ connection. created mechanism to record pipe names in a separate pipes_struct. it is planned to expand this, to return sensible things like interface structures, and policy handles (RPC_IFACE and LSA_POL_HND). and the like.
* updateLuke Leighton1997-10-291-32/+63
|
* preparing for release of 1.9.18alpha8Samba Release Account1997-10-2942-42/+42
|
* byteorder.h :Luke Leighton1997-10-292-4/+6
| | | | | | | | have another go at reporting stuff the right way round (on SPARCs) srvparse.c : copyright messages
* zero data parameter being passed to smb_io_rpc_hdr(), which couldn't cope.Luke Leighton1997-10-291-1/+1
|
* typecast in calls to print_asc() wrongLuke Leighton1997-10-291-3/+3
|
* ipc.c ntclientpipe.c:Luke Leighton1997-10-296-24/+114
| | | | | | | | | | response to Bind Acknowledgment needs a lookup table for the PIPE string (secondary address in RPC_HDR_BA structure). smbparse.c util.c : interesting problem, i think caused by us typecasting a uint16* buffer to char*. found on a SPARC.
* preparing for release of 1.9.18alpha7Samba Release Account1997-10-2941-40/+43
|
* updated to current version number.Samba Release Account1997-10-291-1/+1
|
* called dump_data() from show_msg().Luke Leighton1997-10-291-25/+6
|
* ipc.c :Luke Leighton1997-10-292-4/+34
| | | | | | | | bind ack should contain \PIPE\pipename not just pipename. ntclientpipe.c : sanity in bind ack: pipe name checks; transfer syntax checks; reason checks.
* split ntclient.c down into appropriate modules.Luke Leighton1997-10-297-979/+1142
|
* damn. We need root privilages to do semaphore operations even if weAndrew Tridgell1997-10-292-28/+44
| | | | | | | | | | have done the semget() as root. The problem is that become_root() and unbecome_root() are so slow! I've provided two options. The default is to set the semaphores (but _not_ the shared memory) world writeable so that a become_root() isn't needed. Otherwise you can define SECURE_SEMAPHORES and pay the performance penalty.
* - don't allow locking to initialise twiceAndrew Tridgell1997-10-291-1/+5
| | | | - check that it is initialised before de-initialising it!
* clean up the hash entry code a bit. Got rid of lp_shmem_hash_size()Andrew Tridgell1997-10-296-97/+91
| | | | | | | | | | | | | | and made it private to the 2 shmem implementations. Added new shmops->hash_size() function. Added code to handle the IPC system limits by looping decreasing the size of the resources (semaphores and shared memory) that we request until we get under the system limits, which can be quite low on some systems! Added checks that the creator of the IPC objects is root. Otherwise we would be open to a security hole where someone pre-creates the shared memory segment and attaches.
* added frag field to make_rpc_hdr() functionLuke Leighton1997-10-294-6/+7
|
* byteorder.h :Luke Leighton1997-10-2912-62/+214
| | | | | | | | | | | | | | | | | | | | added mode for printing debug array data as chars not uint8/16/32s. only really useful for (uint8) strings or (uint16) unicode strings lsaparse.c smbparse.c smb.h : rpc bind and rpc bind ack structures and parsing and creation functions. ipc.c pipes.c pipenetlog.c pipentlsa.c pipesrvsvc.c : using rpc bind / bind ack parsing routines instead of incorrect use of api_LsarpcTNP1 function. ntclient.c : creation of do_rpc_bind() function. THAT'S IT, FOLKS!
* Utility code to produce printer definition files from MS files.Jeremy Allison1997-10-281-0/+301
| | | | | Part of code to support Windows 95 automated printer driver installs. Written by Jean-Francois Micouleau <Jean-Francois.Micouleau@utc.fr>.
* Added "printer driver location", "printer driver file" parameters.Jeremy Allison1997-10-281-0/+49
| | | | Jeremy.
* Adding PRINTER_DRIVER.txt docs.Jeremy Allison1997-10-282-5/+20
|