summaryrefslogtreecommitdiff
path: root/source3/rpc_server/srv_eventlog_nt.c
AgeCommit message (Collapse)AuthorFilesLines
2010-10-12libcli/security Provide a common, top level libcli/security/security.hAndrew Bartlett1-0/+1
This will reduce the noise from merges of the rest of the libcli/security code, without this commit changing what code is actually used. This includes (along with other security headers) dom_sid.h and security_token.h Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Tue Oct 12 05:54:10 UTC 2010 on sn-devel-104
2010-09-21s3:registry: move the reg_api prototypes to their own header.Michael Adam1-0/+1
2010-09-20s3:registry: move higher level function reg_open_path to new module reg_api_utilMichael Adam1-0/+1
The reg_api.c code should just export functions that direclty relate to winreg api calls.
2010-09-11s3-util_sid Tidy up global struct security_tokenAndrew Bartlett1-1/+1
This no longer needs to be global, and should be const. We now also init it with the C99 style initialisers. Andrew Bartlett Signed-off-by: Andrew Tridgell <tridge@samba.org>
2010-09-11s3:auth Remove NT_USER_TOKENAndrew Bartlett1-1/+1
The all UPPER case typedef is no longer the preferred Samba style and this makes it easier to see that this is the IDL-derivied structure Andrew Bartlett Signed-off-by: Andrew Tridgell <tridge@samba.org>
2010-07-28s3-eventlog: Use struct pipes_struct.Andreas Schneider1-28/+43
2010-07-02s3-registry: avoid using registry_value union.Günther Deschner1-4/+9
Just pull and push data as is. Guenther
2010-06-28s3-eventlog: Fixed the keyname delimiter for the registry key.Andreas Schneider1-1/+1
2010-06-28s3-eventlog: make sure _eventlog_OpenEventLogW fails when we cannot open the ↵Günther Deschner1-1/+4
registry key. Guenther
2010-06-03s3-security: use shared "File Object specific access rights".Günther Deschner1-2/+2
Guenther
2010-06-01s3-eventlog: try to pass RPC-EVENTLOG during make test as non-root.Günther Deschner1-5/+22
Guenther
2010-05-18s3-secdesc: remove "typedef struct security_descriptor SEC_DESC".Günther Deschner1-1/+1
Guenther
2010-05-18s3: Remove use of iconv_convenience.Jelmer Vernooij1-2/+2
2010-05-18s3-registry: only include registry headers when really needed.Günther Deschner1-0/+1
Guenther
2010-05-06s3-eventlog: move all eventlog headers to lib/eventlog and only include ↵Günther Deschner1-0/+1
where required. Guenther
2009-11-26s3-rpc: Avoid including every pipe's client and server stubs everywhere in ↵Günther Deschner1-0/+1
samba. Guenther
2009-06-23s3-eventlog: implement _eventlog_ReportEventW().Günther Deschner1-6/+77
Guenther
2009-04-10s3-eventlog: implement _eventlog_FlushEventLog().Günther Deschner1-6/+15
Guenther
2009-04-10s3-eventlog: implement _eventlog_GetLogInformation().Günther Deschner1-6/+44
Guenther
2009-03-18s3: remove POLICY_HND.Günther Deschner1-3/+3
Guenther
2009-02-21s3-eventlog: fix rpcclient and server stub for eventlog_GetLogInformation.Günther Deschner1-1/+1
Guenther
2009-02-04s3-eventlog: remove add_record_to_resp.Günther Deschner1-26/+0
Guenther
2009-02-04s3-eventlog: remove read_package_entry.Günther Deschner1-92/+0
Guenther
2009-02-04s3-eventlog: remove get_eventlog_record.Günther Deschner1-134/+0
Guenther
2009-02-04s3-eventlog: add my copyright.Günther Deschner1-0/+1
Guenther
2009-02-04s3-eventlog: use pidl for _eventlog_ReadEventLogW.Günther Deschner1-55/+68
Guenther
2009-02-03s3-eventlog: allow to open eventlog tdbs readonly.Günther Deschner1-3/+3
Guenther
2009-01-24s3-eventlog: add missing _eventlog_ReportEventAndSourceW stub call.Günther Deschner1-0/+5
Guenther
2009-01-24Revert "s3-eventlog: trying to avoid to pass around full ndr structures in ↵Günther Deschner1-11/+6
rpc_server." This reverts commit c0f1309010b79be67557af5ffbd1c429a3f3d99a.
2009-01-24s3-eventlog: fix various invalid memcpy in read_package_entry().Günther Deschner1-5/+5
Guenther
2009-01-16s3-eventlog: fix _eventlog_CloseEventLog.Günther Deschner1-1/+10
Guenther
2009-01-16s3-eventlog: some minor code cleanup in eventlog server.Günther Deschner1-23/+10
Guenther
2009-01-14s3-eventlog: fix ps struct removal leftover.Günther Deschner1-1/+0
Guenther
2009-01-14s3-eventlog: use main talloc context in eventlog read call.Günther Deschner1-3/+2
Guenther
2009-01-08Now that all policy_handle free_fn's are just TALLOC_FREE, dump free_fnVolker Lendecke1-8/+2
2009-01-08Make use of a talloc_destructor for free_eventlog_info()Volker Lendecke1-7/+10
2009-01-08s3-eventlog: minor cosmetics.Günther Deschner1-1/+3
Guenther
2009-01-08s3-eventlog: trying to avoid to pass around full ndr structures in rpc_server.Günther Deschner1-6/+11
Jerry, please check. Guenther
2008-11-24Get rid of pipes_struct->pipe_user, we have server_info now --- YESSS!Volker Lendecke1-2/+2
2008-11-20Second part of fix for bug #5891 - smbd crashed when viewing the eventlog ↵Jeremy Allison1-5/+3
exported by "eventlog list". Don't leak memory on error paths. Jeremy.
2008-11-20s3-eventlog: remove trailing whitespace.Günther Deschner1-44/+44
Guenther
2008-11-20s3-eventlog: avoid passing down full prs_struct in eventlog server.Günther Deschner1-10/+10
Guenther
2008-11-20eventlog: don't crash in sync_eventlog_params().Michael Adam1-1/+1
When freeing the talloc ctx at the end of the routine, it must be a talloc ctx created inside. talloc_tos() needs to be valid after the function finishes, since callers (may) have data attached to it. Michael Signed-off-by: Günther Deschner <gd@samba.org>
2008-11-19This code mixes up int and uint32 when pulling out of a TDB. This is very ↵Jeremy Allison1-4/+4
bad. Fixing... May fix bug #5891, not sure. Jeremy.
2008-11-11Fix bug 5891] : smbd crashed when viewing the eventlog exported by "eventlog ↵Jeremy Allison1-1/+1
list" Don't mix TALLOC and SAFE_FREE(). Jeremy.
2008-11-01Rename dos_errstr() to win_errstr() for consistency with Samba 4.Jelmer Vernooij1-3/+3
2008-10-31Unify se_access_check with the S4 code. Will makeJeremy Allison1-6/+5
calculation of SEC_FLAG_MAXIMUM_ALLOWED much easier for files. Jeremy.
2008-02-04Remove unused arguments in read_package_entry() in the eventlog rpc server.Günther Deschner1-3/+1
Guenther (This used to be commit c2e786d4e2cb53b5a8be45278f221acaa7f5122a)
2008-02-04Use pidl for _eventlog_OpenEventLogW().Günther Deschner1-23/+12
Guenther (This used to be commit ef293be6cb95225f10e8062b3089dc1bbe5fd013)
2008-02-04Copy inline comment for _eventlog_ClearEventLogW() from rpc_parse to rpc_server.Günther Deschner1-0/+13
Guenther (This used to be commit 26eadadbf628f4d3aa4cd0ab4b55d47dc79c80ba)