summaryrefslogtreecommitdiff
path: root/source4/libnet/libnet_user.c
Commit message (Collapse)AuthorAgeFilesLines
...
* r15919: - Create function checking prerequisites like valid domainRafal Szczesniak2007-10-101-63/+175
| | | | | | | | | opened and rpc pipe connected. Each user management routine calls the function before doing their job - Initial work on user modify functionality (does nothing yet) rafal (This used to be commit 51501cdeef0f253d52112a368a07815ef1fbccca)
* r15857: don't clear the error string after setting itStefan Metzmacher2007-10-101-4/+6
| | | | | metze (This used to be commit d273d8ae52255170932405f488876510e02f5813)
* r15850: another spot where r->out.error_string can be uninitialiedAndrew Tridgell2007-10-101-0/+1
| | | | (This used to be commit 4898b29c32737b2cf425d5822da2f395f70ca6e2)
* r15849: ensure we don't try to talloc_steal() an invalid error_string inAndrew Tridgell2007-10-101-0/+1
| | | | | r->out on error (This used to be commit 1d1d2aaeae643e01bfd51d69cba741557543e5bb)
* r15666: Fix a silly typo.Rafal Szczesniak2007-10-101-1/+1
| | | | | rafal (This used to be commit dc93aef09a59b101ca6180fbc431500a6fd7da02)
* r15663: Turn libnet_DeleteUser into async function and fix subtle bug probablyRafal Szczesniak2007-10-101-80/+127
| | | | | | | | | causing ejsnet test to segfault. Also, cleanup a bit and add monitor fn pointer to internal user delete libnet function. Time for some comments now. rafal (This used to be commit 89e9a887197380f13e0668e845d00e1050259331)
* r15625: Partial commit of my current work. It makes libnet api functionsRafal Szczesniak2007-10-101-14/+163
| | | | | | | | | | | | | | | | | a bit more smart and more aware of what libnet_context can offer. The context is a help when some of the arguments are not passed (programmer counts on using sensible defaults) and stores some of results so that similar subsequent calls don't need to reopen some of policy handles, pipes, etc. again. It also helps to hide some of details the library user don't really want to know much about. Also, change domain open function to be part of public api, as it is going to be used in ejsnet interface. Note, this is work in progress. Comments are welcome. rafal (This used to be commit 1ed80c594c2f466e364a11194d6fdc30ac4a8f27)
* r14464: Don't include ndr_BASENAME.h files unless strictly required, insteadJelmer Vernooij2007-10-101-0/+1
| | | | | try to include just the BASENAME.h files (containing only structs) (This used to be commit 3dd477ca5147f28a962b8437e2611a8222d706bd)
* r12892: Add a 'Migrate from Windows' page to our installation section in SWAT.Andrew Bartlett2007-10-101-0/+51
| | | | | | | | | | | | | | | | | | | | | | Doing this required reworking ejsnet, particularly so it could take a set of credentials, not just a username and password argument. This required fixing the ejsnet.js test script, which now adds and deletes a user, and is run from 'make test'. This should prevent it being broken again. Deleting a user from ejsnet required that the matching backend be added to libnet, hooking fortunetly onto already existing code for the actual deletion. The js credentials interface now handles the 'set machine account' flag. New functions have been added to provision.js to wrap the basic operations (so we can write a command line version, as well as the web based version). Andrew Bartlett (This used to be commit a5e7c17c348c45e61699cc1626a0d5eae2df4636)
* r12858: This moves the libnet_LookupPdc code to use a GetDC request to findAndrew Bartlett2007-10-101-14/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the remote server's name, or in the absence of a local nbt_server to communicate with (or without root access), a node status request. The result is that we are in a better position to use kerberos, as well as to remove the 'password server' mandatory parameter for the samsync and samdump commands. (I need this to put these into SWAT). The only problem I have is that I must create a messaging context, which requires a server ID. As a client process, I don't expect to get messages, but it is currently required for replies, so I generate a random() number. We probably need the servers to accept connections on streamed sockets too, for client-only tasks that want IRPC. Because I wanted to test this code, I have put the NET-API-* tests into our test scripts, to ensure they pass and keep passing. They are good frontends onto the libnet system, and I see no reason not to test them. In doing so the NET-API-RPCCONNECT test was simplified to take a binding string on the command line, removing duplicate code, and testing the combinations in the scripts instead. (I have done a bit of work on the list shares code in libnet_share.c to make it pass 'make test') In the future, I would like to extend the libcli/findds.c code (based off volker's winbind/wb_async_helpers.c, which is why it shows up a bit odd in the patch) to handle getting multiple name replies, sending a getdc request to each in turn. (posted to samba-technical for review, and I'll happily update with any comments) Andrew Bartlett (This used to be commit 7ccddfd3515fc2c0d6f447c768ccbf7a220c3380)
* r12696: Reduce the size of include/structs.hJelmer Vernooij2007-10-101-1/+0
| | | | (This used to be commit 63917616016133c623fc6ff59454bc313ee7dd8f)
* r12510: Change the DCE/RPC interfaces to take a pointer to aJelmer Vernooij2007-10-101-3/+1
| | | | | | | | | | | | | | | | | dcerpc_interface_table struct rather then a tuple of interface name, UUID and version. This removes the requirement for having a global list of DCE/RPC interfaces, except for these parts of the code that use that list explicitly (ndrdump and the scanner torture test). This should also allow us to remove the hack that put the authservice parameter in the dcerpc_binding struct as it can now be read directly from dcerpc_interface_table. I will now modify some of these functions to take a dcerpc_syntax_id structure rather then a full dcerpc_interface_table. (This used to be commit 8aae0f168e54c01d0866ad6e0da141dbd828574f)
* r11749: 1) Buffer allocation's been moved and isn't needed here.Rafal Szczesniak2007-10-101-3/+1
| | | | | | | 2) Connect to a server instead of pdc after locating it. rafal (This used to be commit a7bf9ada34c31f26d13c1575de2ec79ea5948a71)
* r11708: Fix allocation of too small buffer to hold ip address.Rafal Szczesniak2007-10-101-1/+1
| | | | | | | Thanks metze for catching that. rafal (This used to be commit 5114ef8d1cc9b6f2206463d4ba76653669728403)
* r11705: Fix segfaulting create user function.Rafal Szczesniak2007-10-101-0/+4
| | | | | rafal (This used to be commit 6b0c083c9b714bf25709e1db3b2113eb8305e8ef)
* r8077: Propagate changes in rpc connect routine to functions using itRafal Szczesniak2007-10-101-14/+14
| | | | | | | (it's quite common). rafal (This used to be commit 798b00c24ae30a08ac81342d13130a6a2f9d3a08)
* r7732: Implementation of very basic lookup function (to be used in moreRafal Szczesniak2007-10-101-2/+1
| | | | | | | | specific routines like resolving a pdc). Also, couple of formatting fixes. rafal (This used to be commit b9deaa995da3a732514d5ceab0010adb58be5fe0)
* r7630: Unused variable.Tim Potter2007-10-101-1/+0
| | | | (This used to be commit 0c1f54461cea633dbacb9692925b8c971a34a831)
* r7490: Rename functions and prefices s/rpc_composite/libnet_rpc/Rafal Szczesniak2007-10-101-4/+4
| | | | | | | | | | This makes more clear where the functions belong to. Also the rule will be that lowercased function names are not part of "official" libnet API (though it doesn't mean one absolutely cannot use them). rafal (This used to be commit f6ef7b882acc6ee07422944a417a8d9013c9d8d2)
* r7380: Mistakenly put one file twice in command line. Here's source ofRafal Szczesniak2007-10-101-33/+36
| | | | | | | | CreateUser call. It serves one level of call by now. Once any more is needed it can be placed, of course. rafal (This used to be commit 80e2f04ce154338fb0208c60b5fab4e96253bb04)
* r5365: Initial code for adding user accounts via libnet call.Rafal Szczesniak2007-10-101-0/+87
rafal (This used to be commit c5fdc38b176acc70bfc163fbf1e6cf4ef67197f5)