summaryrefslogtreecommitdiffstats
path: root/source/Makefile.in
Commit message (Collapse)AuthorAgeFilesLines
...
* fixed a typoAndrew Tridgell1999-04-171-1/+1
|
* damn, new files need to be added to the head branch first, I've toldAndrew Tridgell1999-04-171-0/+10
| | | | other people this before then forgot myself :)
* Added smbd/vfs.o and smbd/vfs-wrap.o to object list for smbd.Tim Potter1999-04-041-1/+2
|
* Ken McDonell from SGI was interested in adding some profilingAndrew Tridgell1999-04-011-4/+7
| | | | | | | | | | | | capabilities to Samba so that Samba could talk to the SGI PCP (Performance Co-Pilot) apps. This change adds a profiling shared memory area and uses it to count two fairly trivial things, the number of uid switches and the number of SMB packets processes. To add more just edit include/profile.h and then increment it at the right place. I've also added a -P switch to smbstatus to dump the profile area.
* Benjamin Kuit's MYSQL SAM Database implementation.Luke Leighton1999-03-011-2/+2
| | | | Copyright (C) Benjamin Kuit <bj@mcs.uts.edu.au> 1999.
* Sorry that this is going so slowly.Christopher R. Hertel1998-12-281-1/+7
| | | | | | | | | I've added debug2html to Makefile.in so that it compiles as part of the normal build. Fixed a typo in debug2html.c as well. One problem: I found it necessary to link with both $(PARAM_OBJ) and $(LIB_OBJ). The result is an executable that is much larger than it really needs to be.
* lib_sec_ctxt.o not .cLuke Leighton1998-12-201-1/+1
|
* A while back, Andrew and I talked about making the debug parsing code aChristopher R. Hertel1998-12-161-9/+1
| | | | | | | | | | | | | | better "fit" with other Samba code. This is a small first step toward doing what (I think) we agreed to do. I've moved the key function from ubiqx/debugparse.c into lib/debug.c. I have also moved the enum from ubiqx/debugparse.h into the debug section in smb.h. The next thing to do is to get debug2html added into the Makefile.in so that it is always produced when compiling the suite. Chris -)-----
* removed the SID stuff from the head branch as well.Andrew Tridgell1998-12-091-1/+1
| | | | | | | This allows the removal of PASSDB_OBJ, RPC_CLIENT_OBJ and RPC_PARSE_OBJ from nmbd in the head branch. so nmbd just went on a diet :)
* adding "Service Control Manager" commands to rpcclient.Luke Leighton1998-12-081-0/+2
|
* adding srvsvc pipe.Luke Leighton1998-12-081-1/+3
|
* matthew chapman's ldap code, to date. plus docs!Luke Leighton1998-12-071-2/+3
|
* - lib/unix_sec_ctxt.cLuke Leighton1998-12-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | attempt at taking lib/uid.c and getting a unix security context change module that is independent of "cnums" and "snums". a security context is needed for pipes, not just IPC$ or other services. - group database API added add_group/alias_member, del_group/alias_member, del_group/alias_entry functions. del_builtin_entry() is deliberately set to NULL to cause an exception, you cannot delete builtin aliases. - parse_lsa.c srv_lsa.c fixed lookup_names code, it was a load of trash and didn't do anything. - cmd_samr.c rpcclient.c srv_samr.c added "deletegroup", "deletealias", "delaliasmem", "delgroupmem", "addgroupmem", "addaliasmem", "createalias", "creategroup", to both client and server code. server code calls into unix stubs right now, which don't actually do anything. the only instance where they are expected to do anything is in appliance mode NOT even in the ldap code or anything. client code modified to call samr_lookup_names() for group code (because we can) and lsa_lookup_names() for alias code (because we have to). - srv_lookup.c oops, lookup on unsplit name, we got lookup on DOMAIN, DOMAIN\name instead of DOMAIN, name.
* trailing backslashes spotted by andrej.Luke Leighton1998-12-021-2/+2
|
* - adding builtin[alias]db.Luke Leighton1998-11-301-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | - lib/sids.c: generate_sam_sid() modified to take a domain name: it now generates "DOMAIN_NAME.SID". reasons: 1) if you run multiple samba servers on the same machine under different netbios names as members of a domain, they won't all use the same SID, which is a _big_ mistake but it would happen _by default_. 2) we have (had) a problem with sid_to_string() and string_to_sid() which cause SIDs to be incorrectly read. one of the major reasons for *NOT* making this change was so as not to disrupt existing users. but as they will be anyway by this bug, we might as well go ahead. - passdb/smbpass.c: wanted to change the meaning of the name in the smbpasswd file to an "nt" name not a "unix" name. this is probably not a good idea: reverted this. - output formatting / bug-fixing in rpcclient query_useraliases code.
* cvs getting it wrong. again.Luke Leighton1998-11-291-8/+10
|
* we have a problem: resolution of "Primary Group RID" which we assumedLuke Leighton1998-11-261-1/+1
| | | | | | | | | would only be a domain group rid. it can also be a local group rid, which causes us problems in attempting to turn a unix gid into the correct rid (domain group or local group). sooo.... the fix is _in_ there, we just can't use it because it causes link / knock-on problems in nmbd.
* Makefile.in: Added maintainer mode fixes.Jeremy Allison1998-11-251-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | aclocal.m4: Added AC_LIBTESTFUNC. configure.in: Fixed -lsecurity -lsec problems. client.c: dos_ fixes. groupdb/aliasunix.c: Dead code removal. include/includes.h: Added default PRINTCAP_NAME. lib/genrand.c: dos_ fixes. lib/replace.c: Added strtoul. lib/system.c: dos_ fixes. lib/util.c: dos_ fixes. lib/util_sid.c: Signed/unsigned fixes. lib/util_str.c: removed bad const. locking/locking_slow.c: dos_ fixes. printing/printing.c: dos_ fixes. rpc_server/srv_samr.c: Dead code removal. rpc_server/srv_sid.c: global_myworkgroup defined with wrong size AGAIN ! smbd/dir.c: dos_ fixes. smbd/open.c: dos_ fixes. smbd/oplock.c: dos_ fixes. smbd/reply.c smbd/server.c smbd/service.c smbd/uid.c: dos_ fixes. Jeremy.
* unix instance of group database APILuke Leighton1998-11-231-6/+8
|
* use bindir not sbindir in Makefile to ensure that we don't breakAndrew Tridgell1998-11-211-1/+3
| | | | existing setups
* Makefile.in: Added passing of CPPFLAGS into Makefile.Jeremy Allison1998-11-191-1/+2
| | | | | | | | | | | | configure configure.in include/config.h.in: Fixes for AIX4.x. AIX *will not* enable large file support of *any* description unless either -D_LARGE_FILES or -D_LARGE_FILES_API are defined. I chose "-D_LARGE_FILES" as this leads to cleaner code... Also fixed bug where getpwnam was listed as getpw(a)nam in configure.in. Jeremy.
* Sync up with 2.0 code.Jeremy Allison1998-11-191-2/+2
| | | | | | Added HPUX autoconf changes. Added "gross hack" printer code. Jeremy.
* Changed Makefile.in to use autoconf prefixes.Jeremy Allison1998-11-171-7/+5
| | | | | | NOTE: The packaging scripts will have to be changed !!!! Jeremy.
* - group database API. oops and oh dear, the threat has been carried out:Luke Leighton1998-11-171-19/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the pre-alpha "domain group" etc parameters have disappeared. - interactive debug detection - re-added mem_man (andrew's memory management, detects memory corruption) - american spellings of "initialise" replaced with english spelling of "initialise". - started on "lookup_name()" and "lookup_sid()" functions. proper ones. - moved lots of functions around. created some modules of commonly used code. e.g the password file locking code, which is used in groupfile.c and aliasfile.c and smbpass.c - moved RID_TYPE_MASK up another bit. this is really unfortunate, but there is no other "fast" way to identify users from groups from aliases. i do not believe that this code saves us anything (the multipliers) and puts us at a disadvantage (reduces the useable rid space). the designers of NT aren't silly: if they can get away with a user- interface-speed LsaLookupNames / LsaLookupSids, then so can we. i spoke with isaac at the cifs conference, the only time for example that they do a security context check is on file create. certainly not on individual file reads / writes, which would drastically hit their performance and ours, too. - renamed myworkgroup to global_sam_name, amongst other things, when used in the rpc code. there is also a global_member_name, as we are always responsible for a SAM database, the scope of which is limited by the role of the machine (e.g if a member of a workgroup, your SAM is for _local_ logins only, and its name is the name of your server. you even still have a SID. see LsaQueryInfoPolicy, levels 3 and 5). - updated functionality of groupname.c to be able to cope with names like DOMAIN\group and SERVER\alias. used this code to be able to do aliases as well as groups. this code may actually be better off being used in username mapping, too. - created a connect to serverlist function in clientgen.c and used it in password.c - initialisation in server.c depends on the role of the server. well, it does now. - rpctorture. smbtorture. EXERCISE EXTREME CAUTION.
* Makefile.in: Re-added quotes round ROFF call for DGUX.Jeremy Allison1998-11-161-1/+1
| | | | | | script/installman.sh: Make installman ignore ROFF argument if it is "". smbd/oplock.c: Move location of oplock test file to lockdir. Jeremy.
* Makefile.in configure configure.in include/config.h.in: Changes for DGUX and ↵Jeremy Allison1998-11-131-1/+1
| | | | | | | | | | | | | | UNIXWARE. groupdb/aliasdb.c groupdb/aliasfile.c groupdb/groupfile.c: Don't use snprinf, use slprintf. include/includes.h: Fix YP problem. include/smb.h: Fix ZERO_STRUCTP. lib/util_sock.c: Added strerror() in debugs. passdb/ldap.c: Don't use snprinf, use slprintf. rpc_client/cli_lsarpc.c rpc_client/cli_pipe.c rpc_parse/parse_sec.c rpc_server/srv_pipe.c: Don't use snprinf, use slprintf. script/installman.sh: DGUX changes. smbd/open.c smbd/oplock.c: Fixed gcc warnings. web/swat.c: Changes USER to SWAT_USER.
* cleaning up conflicts between group code not yet committed andLuke Leighton1998-11-121-1/+2
| | | | | | | changes from yesterday by me, jeremy and andrew. jeremy, your ACB_PWNOTREQ mod would have caused a crash if the user didn't exist (first check should be for smb_pass != NULL)
* extracted the password change code from smbpasswd and used it in swatAndrew Tridgell1998-11-121-2/+3
| | | | instead of opening pipes and other horrible stuff.
* Added needed flag for swat password changingHerb Lewis1998-11-111-2/+3
| | | | | I forgot to mention that the changes to swat were contributed by John Sygulla
* Makefile.in: Added target for makeyodldocs - not used by default.Jeremy Allison1998-11-111-0/+8
| | | | | | | rpc_client/cli_reg.c: The perils of cut-n-paste coding include using variables before they are initialised :-). script/makeyodldocs.sh: Remove the intermediate files. Jeremy.
* rpcclient registry commands.Luke Leighton1998-11-101-1/+3
|
* util functions split into relevant modules, first pass.Luke Leighton1998-11-101-2/+5
|
* Default for SMB_PASSWD program was set to smbpasswd ! This explained the ↵Jeremy Allison1998-11-101-2/+2
| | | | | | | | | | | problems John & Andrew were having with smbpasswd. This would cause the smbpasswd to be changed *twice* - this the second decrypt would fail. Changed it to be "/bin/passwd" and changed the name of the macro to PASSWORD_PROGRAM to make it clear this is not an smb password changer. Jeremy.
* Makefile.in: Removed rpc_server/srv_ldap_helpers.c per J.F.'s instructions.Jeremy Allison1998-11-091-1/+1
| | | | | | | | | | | | | client/client.c: client/clitar.c: include/client.h: smbwrapper/smbw_dir.c: smbwrapper/smbw_stat.c: smbwrapper/smbw.c: lib/util.c: Converted all use of 'mode' to uint16. smbd/quotas.c: Fixed stupid comment bug I put in there :-(. printing/printing.c: Fix from J.F. to new code. Jeremy.
* converted smbclient to use clientgen.c rather than clientutil.cAndrew Tridgell1998-11-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | I did this when I saw yet another bug report complaining about smbclient intermittently missing files. Rather than applying more patches to smbclient it was better to move to the more robust clientgen.c code. The conversion wasn't perfect, I probably lost some features of smbclient while doing it, but at least smbclient should be consistent now. It if fails it should _always_ fail rather than giving people the false impression of a reliable utility. the tar stuff seems to work, but hasn't had much testing as I never use it myself. I'm sure someone will find bugs in my conversion of smbtar.c. It was quite tricky as it did a lot of its own SMB calls. It now uses clientgen.c exclusively. smbclient is still quite messy, but at least it doesn't build its own SMB packets. I haven't touched smbmount as I never use it. Mike, do you want to convert smbmount to use clientgen.c?
* Added scripts/convert_smbpasswd to SCRIPTSJeremy Allison1998-11-051-1/+1
| | | | Jeremy.
* Makefile.in configure configure.in include/proto.h smbd/noquotas.c ↵Jeremy Allison1998-11-031-1/+2
| | | | | | | | | | | | smbd/quotas.c: Added quotas patch for autoconf from Dejan Ilic <svedja@lysator.liu.se>. printing/printing.c: Filenames with spaces patch from Allan Bjorklund <allan@umich.edu> utils/nmblookup.c: Fix usage() function. smbd/reply.c: Split out the security=server and security=domain checks into check_server_security() and check_domain_security() to aid the writing of the 'hack' appliance mode invented by John Schimmel. Jeremy.
* do not print garbage just because someone does not want dependencies :-)Alexandre Oliva1998-10-301-24/+24
|
* modify dependency tracking code so that it:Alexandre Oliva1998-10-291-10/+29
| | | | | | | | 1) inserts the pathname of the object file in the dependency file (currently, gcc will only generate the basename) 2) the directory tree within .deps mirrors the source tree, so that we use shorter filenames problem 1 was reported to me by Tom Angert <angert@bellsouth.net>
* This should have gone with the last batch.Christopher R. Hertel1998-10-281-4/+3
| | | | | | Again, to compile debug2html, you need to do a 'make debug2html'. Chris -)-----
* Fixed a small bug in debug2html. It wasn't properly checking EOF. TheChristopher R. Hertel1998-10-271-1/+10
| | | | | | | | | | | | | | | | current status is "it works". I need to add some syntax error recovery and a usage message. Basic stuff. I've also modified Makefile.in. If you want to compile it you'll have to do a 'make debug2html', as I used smbtorture as a model. We can decide later if this tool is useful enough to be compiled always. BTW, a 'make realclean' fails because the bin directory isn't empty. That's because it doesn't delete optionally compiled files such as smbtorture and debug2html (and because of the CVS subdirectory, but I think that's only a problem for developers). Chris -)-----
* added a vsnprintf() implementation from cvslock. See the notes on theAndrew Tridgell1998-10-261-1/+1
| | | | | | | | license at the top of lib/snprintf.c I've always been slightly uneasy about our half-baked vslprintf() implementation and the risks on platforms that don't have vsnprintf() so when I saw this code in another GPLd package I wanted it for Samba.
* Fix for -fpic rules (.c.po and .c.po32) when using --enable-maintainer-mode.Tim Potter1998-10-241-4/+4
|
* don't enable smbsh/smbwrapper on systems where we can't work out howAndrew Tridgell1998-10-231-1/+1
| | | | to generate PIC code
* rpctorture commandLuke Leighton1998-10-221-0/+16
|
* fixes for solarisAndrew Tridgell1998-10-201-2/+4
|
* removed my badly-done attempt at handling compilers that don't handleAndrew Tridgell1998-10-201-9/+3
| | | | | | -c and -o at the same time. my shell script code wasn't portable
* - added smbrapper/shared.oAndrew Tridgell1998-10-191-5/+10
| | | | - added suport for C compilers that don't handle -c and -o at once
* rpcclient interactive login (with trust account changing if you are root)Luke Leighton1998-10-151-1/+1
| | | | cli_session_setup handles null sessions correctly
* made smbsh a standard binaryAndrew Tridgell1998-10-131-9/+10
|