summaryrefslogtreecommitdiffstats
path: root/source
Commit message (Collapse)AuthorAgeFilesLines
...
* | fixed another DATA_BLOB constructorAndrew Tridgell2002-01-051-6/+1
| |
* | simple fix for creating blank data blobsAndrew Tridgell2002-01-052-5/+8
| |
* | Fix up the SPNEGO segfault.Andrew Bartlett2002-01-051-2/+2
| |
* | I've decided to move the auth code around a bit more...Andrew Bartlett2002-01-0519-653/+690
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The auth_authsupplied_info typedef is now just a plain struct - auth_context, but it has been modified to contain the function pointers to the rest of the auth subsystem's components. (Who needs non-static functions anyway?) In working all this mess out, I fixed a number of memory leaks and moved the entire auth subsystem over to talloc(). Note that the TALLOC_CTX attached to the auth_context can be rather long-lived, it is provided for things that are intended to live as long. (The global_negprot_auth_context lasts the whole life of the smbd). I've also adjusted a few things in auth_domain.c, mainly passing the domain as a paramater to a few functions instead of looking up lp_workgroup(). I'm hopign to make this entire thing a bit more trusted domains (as PDC) freindly in the near future. Other than that, I moved a bit of the code around, hence the rather messy diff. Andrew Bartlett
* | Add a talloc varient of the data_blob functions.Andrew Bartlett2002-01-052-4/+50
| | | | | | | | | | | | | | | | | | Also change the structure so it has its own (optional) 'free' pointer - so we don't free() a talloc'ed version. also split out the data_blob_clear() functionaility. Andrew Bartlett
* | Add a comment on how this error map was derrived.Andrew Bartlett2002-01-051-0/+22
| | | | | | | | | | This applies only to the NT->Dos map, I'm still trying to come up with a way to do the reverse.
* | One line fix to get smbmount working again.Andrew Bartlett2002-01-051-0/+3
| | | | | | | | | | | | | | This just turns of SPNGO becouse Win2k breaks if you attempt this and DOS errors at the same time. Andrew Bartlett
* | Added DEBUG in set_share_mode to track down logic insanity.Jeremy Allison2002-01-051-0/+8
| | | | | | | | Jeremy.
* | Add a touch of constAndrew Bartlett2002-01-051-1/+1
| |
* | print the timezone in the same format as 'date +%z' - much better for scriptingAndrew Tridgell2002-01-041-5/+8
| |
* | Missed error return is can_rename fails.Jeremy Allison2002-01-041-0/+1
| | | | | | | | Jeremy.
* | Re-wrote the guts of the rename_internals code to cope with a reportedJeremy Allison2002-01-043-41/+102
| | | | | | | | | | | | | | bug (renaming name -> name was failing, on W2K it succeeds). Simplified the common case, did a lot of work to ensure NT error codes are correctly reported back to client. Jeremy.
* | Added WERROR for non local domain.Jeremy Allison2002-01-031-0/+1
| | | | | | | | Jeremy.
* | Fixed nasty cast of tdb_delete in traversals.Jeremy Allison2002-01-037-6/+17
| | | | | | | | Jeremy.
* | Don't use static memory, malloc it...Jeremy Allison2002-01-031-2/+12
| | | | | | | | Jeremy.
* | Fix the fix.... (sigh).Jeremy Allison2002-01-031-1/+1
| | | | | | | | Jeremy.
* | Ensure modtime is set correctly on destination files in copy command.Jeremy Allison2002-01-031-0/+4
| | | | | | | | Jeremy.
* | Fixed embarressing 16k strack trashing bug :-(.Jeremy Allison2002-01-031-8/+9
| | | | | | | | Jeremy.
* | added nTSecurityDescriptor field to host acct dumpAndrew Tridgell2002-01-031-1/+3
| |
* | Update the NT_STATUS -> DOS error table.Andrew Bartlett2002-01-034-410/+435
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This new table is rather different to the old one (see diff posted to the list for a sorted list of differences) and needs a *lot* of testing. It does however seem to line up much better with what NT is using, as exampled by the change to the OBJECT_NAME_COLLISION DOS error, it now matches win2k where it didn't before. I can't see any critical errors we now get wrong, and I know that the auth errors are correct as per my on-the-wire observations. This table was produced (and I hope to comment this better later) by using the ERRMAPEXTRACT smbtorture tool, a Win2k domain member and the 'name_to_ntstatus' auth module on the HEAD PDC. This module returned the username as the error, and the NT box was forced to give me a dos error becouse thats all I negotiated on that connection. Hence the map. Andrew Bartlett
* | Clarify doc for SAFE_FREE.Martin Pool2002-01-031-3/+7
| |
* | Make a couple more of the warnings also be C commentsAndrew Bartlett2002-01-031-2/+2
| |
* | A few changes to always output the erorr mapping even when the error wasAndrew Bartlett2002-01-031-27/+34
| | | | | | | | 'squashed' or the session setup succeeded. (How the latter occurs I don't know).
* | Workaround some 'smarts' in Win2k.Andrew Bartlett2002-01-031-0/+20
| | | | | | | | | | Win2k kills off connections that have issued a negprot but havn't yet issued a session setup when a second connection appears from the same host.
* | Re-add bail on failure.Andrew Bartlett2002-01-031-2/+8
| |
* | Fix talloc msg registrationMartin Pool2002-01-031-1/+1
| |
* | Put a name on lp_talloc poolMartin Pool2002-01-031-1/+1
| |
* | Make talloctort call talloc_describe_all before exitingMartin Pool2002-01-031-0/+2
| |
* | Cope nicely with pools with no name.Martin Pool2002-01-031-1/+10
| |
* | fixed ERRMAPEXTRACT torture to work with win2kAndrew Tridgell2002-01-031-11/+5
| |
* | smbd children should also register for POOL_USAGEMartin Pool2002-01-031-0/+1
| |
* | Cleanup format.Martin Pool2002-01-031-1/+1
| |
* | talloc accounting now includes number of chunks and bytes allocated.Martin Pool2002-01-031-9/+42
| |
* | Send back talloc allocation information when POOL_USAGE is received.Martin Pool2002-01-031-2/+8
| |
* | Add talloc_asprintf_append, which grows an existing string buffer toMartin Pool2002-01-032-4/+82
| | | | | | | | | | contain new print-formatted information. (Also talloc_vasprintf_append.) Idea borrowed from glib.
* | smbd now sends a reply to MSG_REQ_POOL_USAGE, though it's prettyMartin Pool2002-01-032-2/+7
| | | | | | | | boring so far.
* | smbd should register to receive MSG_REQ_POOL_USAGE. Response shouldMartin Pool2002-01-034-2/+47
| | | | | | | | be information about memory usage, but this is not done yet.
* | Fixed crash bug in display_print_info_2()Tim Potter2002-01-031-65/+87
| |
* | Ignore dmalloc.log.Martin Pool2002-01-031-2/+3
| |
* | If we receive a message that is not handled then emit a gentle warningMartin Pool2002-01-031-0/+8
| | | | | | | | to the log.
* | debug output on receipt of message.Martin Pool2002-01-031-0/+2
| |
* | Oops, rerun autoconf after last change.Martin Pool2002-01-031-0/+8
| |
* | Welcome to preprocessor hell. Had to put a #ifndef around SAFE_FREE toTim Potter2002-01-031-0/+3
| | | | | | | | | | | | | | stop smb_macros.h and tdb.h from fighting with each other. I tried to rearrange the #include file order but that breaks other stuff. Aargh!
* | Add instructions on using dmalloc.Martin Pool2002-01-031-0/+8
| |
* | Fixed crash bug in display_print_info_1()Tim Potter2002-01-031-3/+13
| |
* | Initialise result on success in cli_spoolss_enum_printers() so we don't getTim Potter2002-01-031-0/+2
| | | | | | | | stuck in an infinite loop.
* | The werror<->nt status code map has changed and has broken all the spoolssTim Potter2002-01-031-7/+7
| | | | | | | | | | | | | | | | commands in rpcclient. Replacing ERROR_INSUFFICIENT_BUFFER with NT_STATUS_BUFFER_TOO_SMALL fixes it. Yay! I always thought the caller (i.e cmd_spoolss.c) should take care of the whole requested/needed buffer size thingy though...
* | Removed unused #defineTim Potter2002-01-031-1/+0
| |
* | debug statement fixups.Jeremy Allison2002-01-024-52/+43
| | | | | | | | | | Merge SAFE_FREE fix in tdb from 2.2, and IRIX fix. Jeremy.
* | removed stuff I wasn't usingGerald Carter2002-01-021-49/+0
| |