1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-12 12:23:50 +03:00
Commit Graph

14833 Commits

Author SHA1 Message Date
Volker Lendecke
a831e54738 r6367: Slim down pdb_interface.c a bit. next_entry and search_end are function
pointers now.

Yes, Jeremy, this is about re-inventing C++... :-)

Volker
2007-10-10 10:56:39 -05:00
Jeremy Allison
0c4058c073 r6365: Wow, how much worse does this get. From info provided by
Eric Stewart <eric@lib.usf.edu> I realised we weren't checking
against the current effective groupid (set by force group) as
well as the group list. Fix this.
Jeremy.
2007-10-10 10:56:38 -05:00
Gerald Carter
70178d5d27 r6358: merging SMB_ASSERT() changes from the release branch 2007-10-10 10:56:38 -05:00
Stefan Metzmacher
6b84f30e3d r6354: merge from 4_0 rev 6353:
we need the english output from the svn commands

metze
2007-10-10 10:56:38 -05:00
Volker Lendecke
f0bb44ac58 r6351: This is quite a large and intrusive patch, but there are not many pieces that
can be taken out of it, so I decided to commit this in one lump. It changes
the passdb enumerating functions to use ldap paged results where possible. In
particular the samr calls querydispinfo, enumdomusers and friends have
undergone significant internal changes. I have tested this extensively with
rpcclient and a bit with usrmgr.exe. More tests and the merge to trunk will
follow later.

The code is based on a first implementation by Günther Deschner, but has
evolved quite a bit since then.

Volker
2007-10-10 10:56:38 -05:00
Steve French
c303022951 r6349: Update cifs umount utility 2007-10-10 10:56:38 -05:00
Jeremy Allison
644608ea7d r6348: Fix for bug #2605 reported by Daniel Patterson <Daniel_Patterson@national.com.au>.
Ensure smbclient doesn't perform commands if the "chdir" fails in a scripted set.
Jeremy.
2007-10-10 10:56:37 -05:00
Jeremy Allison
743174da86 r6346: Add a counter for the number of SMB operations per connection/file.
You will need to do a make clean after SVN updating this. Next will
come a smbcontrol message to dump this info. This should be interesting
to profile client activity.
Jeremy.
2007-10-10 10:56:37 -05:00
Jeremy Allison
77c0ade9fa r6344: Fix bug #2601 - it seems that DOS_OPEN_EXEC does mean readonly. Needed
for Win9x and OS/2 clients. More Samba4 tests against W2k3 will be needed
to confirm this but in the meantime get it up and running.
Jeremy.
2007-10-10 10:56:37 -05:00
Herb Lewis
b92e8b1c82 r6319: add prototype so -Wstrict-prototypes will not fail 2007-10-10 10:56:37 -05:00
Herb Lewis
ce38ead0fc r6318: don't include smbwrapper stuff unless asked for 2007-10-10 10:56:36 -05:00
Jeremy Allison
11c464268d r6316: Remove over-cautious asserts. Damn wish I'd made the release
with this....
Jeremy.
2007-10-10 10:56:36 -05:00
Gerald Carter
005427f73f r6311: setting version to 3.0.15pre2 2007-10-10 10:56:36 -05:00
Jeremy Allison
4db288e314 r6307: Ensure info requested bitmask is printed in log when querying security descriptors.
Jeremy.
2007-10-10 10:56:36 -05:00
Jeremy Allison
b2330c3888 r6302: OS/2 fix from Marcel Müller <mueller@maazl.de>. Don't check for mangled names
if mangled names is off.
Jeremy.
2007-10-10 10:56:35 -05:00
Jeremy Allison
62edc3d5dc r6297: Fix bug in our trans2 secondary processing. We need to pass in the
trans2 call info from the primary trans2 packet as it isn't present
in secondary transs packets. We only need to do this for functions that
satisfy more than one case in the switch statement. Found by Marcel Müller <mueller@maazl.de>.
Jeremy.
2007-10-10 10:56:35 -05:00
Gerald Carter
88c2ed1534 r6296: add message about known interoperability issue with Windows 2003 SP1 DCs 2007-10-10 10:56:35 -05:00
Gerald Carter
40f573e202 r6291: BUG 2588: force smbclient messages to port 139 unless someone set the -p option 2007-10-10 10:56:35 -05:00
Gerald Carter
5ea3fdff1b r6290: and now the development tree becomes 3.0.15pre1 2007-10-10 10:56:35 -05:00
Volker Lendecke
5d34bd6175 r6282: Before converting enum_dom_groups, better get the previous version a bit
closer to being correct. 'svn blame' shows CVSIN, but somehow I get the
feeling this is my code...

Volker
2007-10-10 10:56:35 -05:00
Volker Lendecke
1ce9a0159d r6281: Fix the build for FreeBSD 4 -- no winbind 2007-10-10 10:56:34 -05:00
Volker Lendecke
7ae1b94e3e r6279: Convert the RAP enum functions to the pdb_search API. Who is using this
nowadays? This looks rather broken, but survives basic tests with 'net'.

Volker
2007-10-10 10:56:34 -05:00
Volker Lendecke
8b4f67a1e9 r6277: This implements a new caching API for enumerating the pdb elements. It is
modeled after query_displayinfo and should hide the differences between users,
groups and aliases while allowing a cache analog load_sampw_entries:

struct pdb_search *pdb_search_users(uint16 acct_flags);
struct pdb_search *pdb_search_groups(void);
struct pdb_search *pdb_search_aliases(const DOM_SID *sid);
uint32 pdb_search_entries(struct pdb_search *search, uint32 start_idx,
                          uint32 max_entries,
                          struct samr_displayentry **result);
void pdb_search_destroy(struct pdb_search *search);

Why this API? Eventually we will need to apply the work gd has started on
enumerating users with paged ldap searches to groups and aliases. Before doing
that I want to clean up the search routines we have.

The sample application (more to follow) is 'net maxrid'.

Volker
2007-10-10 10:56:34 -05:00
Volker Lendecke
c73f2656fd r6275: Implement RAP version of enumusers/enumgroups level 0. No, I've not gone mad,
this is to test future changes to enumeration functions...

This can successfully list users from nt4 and w2k3sp1.

Volker
2007-10-10 10:56:34 -05:00
Volker Lendecke
b451434e37 r6273: Remove some unused code, minor cleanup 2007-10-10 10:56:34 -05:00
Jeremy Allison
3eea1ff4b7 r6269: With help from Marcel Müller <mueller@maazl.de> in tracking down the bug,
fix trans2 and nttrans secondary packet processing. We were being too strict checking
the incoming packet (by 1 byte).
Jeremy.
2007-10-10 10:56:34 -05:00
Jeremy Allison
695d45bcad r6266: Add includes for sys/extattr.h and sys/uio.h for FreeBSD xattr code.
Jeremy.
2007-10-10 10:56:33 -05:00
Volker Lendecke
3493d9f383 r6263: Get rid of generate_wellknown_sids, they are const static and initializable
statically.

Volker
2007-10-10 10:56:33 -05:00
Steve French
cd8b93edc6 r6262: Minor updates to cifs umount helper 2007-10-10 10:56:33 -05:00
Jeremy Allison
6c9f227ef4 r6261: Tidyup message str printf. Ensure tvs struct is zeroed.
Jeremy.
2007-10-10 10:56:33 -05:00
Jeremy Allison
f1e12be9ed r6258: Fix found by OS/2 set_ea call. When setting specific info remember to terminate
once we've done that and not "break" into the generic file metadata set code.
Jeremy.
2007-10-10 10:56:33 -05:00
Jeremy Allison
3dfa6c40fc r6256: Fix fprintf errors in smbpasswd. Fix for bug #2585 Ulf Härnhammar <metaur@telia.com>
Jeremy.
2007-10-10 10:56:32 -05:00
Steve French
8f7c36a6c4 r6255: Initial checkin of cifs umount utility 2007-10-10 10:56:32 -05:00
Jeremy Allison
059a2e30c9 r6253: Add FreeBSD EA API support. Bug #2576 - patch donated by Timur Bakeyev <timur@com.bat.ru>
Jeremy.
2007-10-10 10:56:32 -05:00
Jeremy Allison
9fa32282eb r6252: Re-order position of become_root() to allow directory to be
read first.
Jeremy.
2007-10-10 10:56:32 -05:00
Jeremy Allison
1d542eee57 r6249: Get the comparison the right way around...
Jeremy.
2007-10-10 10:56:32 -05:00
Gerald Carter
e7189a4e4b r6243: Yes. I *will* hate myself in the morning for this one.
I need to gather some more information to know if these
extra context id's may be used later.  But for now,
pw changes via CTL+ALT+DEL from win2k3sp1 clients work.
2007-10-10 10:56:32 -05:00
Gerald Carter
59ffacf59c r6242: after talking to jeremy, we can actually consolidate
the 2 BOOL flags in dfs_redirect() down to one since
they both are used in essentially the same context
(from what we can tell).

Tested Win98SE, WinXP sp 1 & 2, Win2k3 sp1, and WIn2k Sp4.
All dfs operations still seem to work.
2007-10-10 10:56:31 -05:00
Jeremy Allison
836b73d001 r6240: Fix for bug #2581. Add size limit (in kb) to stat cache.
Jeremy.
2007-10-10 10:56:31 -05:00
Gerald Carter
29983398e2 r6237: fix my breakage of WinXP sp2 msdfs support.
We did need the special case for RESOLVE_DFSPATH
in the findfirst() code.

Jeremy, please verify I haven't broken the allow_wcard
code you added to resolve_dfs_path()
2007-10-10 10:56:31 -05:00
Jeremy Allison
28772dfca1 r6235: Partial fix for bugid #2581. Ensure if realloc fails on an internal
tdb we fail gracefully.
Jeremy.
2007-10-10 10:56:31 -05:00
Jeremy Allison
dbf021a2e0 r6234: Fix for possible root squash nfs bugs from psz@maths.usyd.edu.au
Jeremy.
2007-10-10 10:56:31 -05:00
Gerald Carter
28d433351c r6232: more cleanups; remove BUFFER3; rename BUFFER4 -> RPC_DATA_BLOB; rename REG_CREATE_VALE -> REG_SET_VALUE 2007-10-10 10:56:30 -05:00
Gerald Carter
b3643b732b r6231: Herb, I think this checkin was a mistake. Are you sure this is
what you meant to change?

Fix build breakage....
2007-10-10 10:56:30 -05:00
Herb Lewis
b6117dd72d r6230: don't know how this ever worked! the compiler complained we
were comparing an integer to a pointer and it was right.
2007-10-10 10:56:30 -05:00
Gerald Carter
efb3ac4c69 r6228: remove BUFHDR2 and clean up LsaEnumTrustedDomains()
Tested client and server code.
2007-10-10 10:56:30 -05:00
Herb Lewis
efea76ac71 r6225: get rid of warnings from my compiler about nested externs 2007-10-10 10:56:30 -05:00
Gerald Carter
c8f808b076 r6221: format cleanup (got tied of looking for related structures)
also remove unused SID_ARRAY structure....
2007-10-10 10:56:29 -05:00
Gerald Carter
c474222e0d r6220: cleaning up spoolss header; removing unused structures 2007-10-10 10:56:29 -05:00
Gerald Carter
22855c7aae r6218: * fix a segv in EnumPrinters():rpc_buffer_alloc when the caller does not provide an
RPC_BUFFER in the request

* add initial (but wire untested) support for RegRestoreKey()
2007-10-10 10:56:29 -05:00