samba.git
16 years agor9347: this array bounds checking is harder than it looks ...
Andrew Tridgell [Wed, 17 Aug 2005 03:30:45 +0000 (03:30 +0000)]
r9347: this array bounds checking is harder than it looks ...

this copes with 2 more situations:

1) where the array is NULL, which would previously be coped with by a
   if (ptr) check, but now in the deferred array bounds checking needs
   to look at the array variable in the ndr code. Not nice.

2) nest the array checking along with the SCALARS vs BUFFERS checks, ensuring we don't
   do array bounds checking for a buffer when in scalars only mode
(This used to be commit ad1b9867a5a14bc9ed2e1a5eb8f05bb2046bc645)

16 years agor9346: allow test_ldap.sh to be called when $CONFFILE is not set
Andrew Tridgell [Wed, 17 Aug 2005 02:56:39 +0000 (02:56 +0000)]
r9346: allow test_ldap.sh to be called when $CONFFILE is not set
(This used to be commit 3ad02091f621e3ff51aa082ca7a47b9da238aa40)

16 years agor9345: used the data blob functions in the echo.js test code
Andrew Tridgell [Wed, 17 Aug 2005 02:56:07 +0000 (02:56 +0000)]
r9345: used the data blob functions in the echo.js test code
(This used to be commit f217f08b679ec3ed4784ed0fe74e9cbb935cdce9)

16 years agor9344: started adding calls for manipulation of data blobs in ejs
Andrew Tridgell [Wed, 17 Aug 2005 02:55:31 +0000 (02:55 +0000)]
r9344: started adding calls for manipulation of data blobs in ejs

added:

  blobToArray()
  blobFromArray()
  blobCompare()
(This used to be commit cc5a3e9cc3b44f418eb5dfcd4e855a36c5ac8327)

16 years agor9342: removed extra libinclude of base.js
Andrew Tridgell [Wed, 17 Aug 2005 02:21:40 +0000 (02:21 +0000)]
r9342: removed extra libinclude of base.js
(This used to be commit bda6943c311e005cff0b46722355e9aa693db67a)

16 years agor9341: updated the winreg test program to take advantage of the new EnumValue
Andrew Tridgell [Wed, 17 Aug 2005 01:40:14 +0000 (01:40 +0000)]
r9341: updated the winreg test program to take advantage of the new EnumValue
functionality. It now completely enumerates a winreg tree.

This would make a good basis for a js version of regshell if someone
felt like taking that on.
(This used to be commit 75d0cf78ec8c01dee2a6475d4c64417349d9ec3a)

16 years agor9340: print the [in] contents when debugging even if the marshalling
Andrew Tridgell [Wed, 17 Aug 2005 01:30:47 +0000 (01:30 +0000)]
r9340: print the [in] contents when debugging even if the marshalling
failed. This makes it easier to track down marshalling bugs.
(This used to be commit a7a1752ca47a18b325a0ad0984cf7d02da1e2afe)

16 years agor9339: treat arrays of uint8 values as a special DATA_BLOB type in the ejs
Andrew Tridgell [Wed, 17 Aug 2005 01:29:35 +0000 (01:29 +0000)]
r9339: treat arrays of uint8 values as a special DATA_BLOB type in the ejs
interfaces to RPC. This makes large blobs of data much saner. Tim, you
will probably want to do the same for the smb_interfaces.h generated
code.

Next we will need ways of extracting different data types from these
blobs, for example asking for the blob to be interpreted as a utf16
string, or as a little-endian integer. That will allow for registry
scripting to be quite sane.
(This used to be commit a8bca2e8e27c953c0413693326ec3b5ecf17ba41)

16 years agor9338: fixed the winreg IDL to be correct for the EnumKey and EnumValue
Andrew Tridgell [Wed, 17 Aug 2005 01:25:58 +0000 (01:25 +0000)]
r9338: fixed the winreg IDL to be correct for the EnumKey and EnumValue
calls. The previous IDL was just a workaround for the limitations of
our older rpc infrastructure. Now that Jelmer has added much improved
string support using the charset keyword we can correctly implemenent
the unusual winreg string buffers.

Jelmer, note the little comment I put on winreg_StringBuf() about why
I couldn't use [value()] for the length field.

This also fixes EnumKey() and EnumValue() to use NTTIME fields for the
last_changed_time. I don't know why we were using a pair of uint32's,
as it is just a NTTIME.
(This used to be commit 8354b016122cc4f3cff042b3ada1de07e1614eb7)

16 years agor9337: defer the checking of array sizes until the end of the
Andrew Tridgell [Wed, 17 Aug 2005 01:20:22 +0000 (01:20 +0000)]
r9337: defer the checking of array sizes until the end of the
function/structure, as the checks might involve variables that have
not yet been unmarshalled. This is needed to cope with the correct IDL
for the winreg pipe.

Jelmer, can you look at this when you get a chance and see if you
think this is a reasonable approach? Sorry its wrecks the nice
indentation in the generated code.
(This used to be commit 127ed0cfe2d210f5e927d3768d5372042d1c070c)

16 years agor9335: only copy the in side of an array to the out side of an array when the
Andrew Tridgell [Tue, 16 Aug 2005 23:19:17 +0000 (23:19 +0000)]
r9335: only copy the in side of an array to the out side of an array when the
array is a [ref] pointer. For non-ref arrays it is quite valid for a
server to return a larger response array then the client gave (as can
happen with winreg) in which case this memcpy() will fault.
(This used to be commit 6cf20e7adb9891119fdc9a0b208c3f94fe823334)

16 years agor9328: Remove background:ThreeDFace from qooxdoo styles to
Deryck Hodge [Tue, 16 Aug 2005 20:00:24 +0000 (20:00 +0000)]
r9328: Remove background:ThreeDFace from qooxdoo styles to
get our samba.org background bacl.

deryck
(This used to be commit 71291f0d566eaa493a5687a6bce7c5ec9373a7de)

16 years agor9327: Rename parent to fParent to prevent confusion with window.parent object.
Deryck Hodge [Tue, 16 Aug 2005 19:47:27 +0000 (19:47 +0000)]
r9327: Rename parent to fParent to prevent confusion with window.parent object.
(Thanks, Derrell, for the reminder.)
Rename child to fChild, to be consistent and maintain readability.

deryck
(This used to be commit 6040f9401eedb195aef160b3b58462a1a6728af7)

16 years agor9321: Fix potential bug found by Coverity. src_len has to be int but later we do...
Alexander Bokovoy [Tue, 16 Aug 2005 13:22:01 +0000 (13:22 +0000)]
r9321: Fix potential bug found by Coverity. src_len has to be int but later we do pass it as size_t. In case src_len is negative, we need to register a failure and return to the caller
(This used to be commit 95d96c79a538814bb524d7905e1e8f64df6341ca)

16 years agor9320: Fix premature dereference bug found by Coverty and also get rid of non-used...
Alexander Bokovoy [Tue, 16 Aug 2005 10:57:21 +0000 (10:57 +0000)]
r9320: Fix premature dereference bug found by Coverty and also get rid of non-used memory context
(This used to be commit 127e06492a545940443c93e9aec66eebefa26dc2)

16 years agor9319: updated newuser script for new OO style for nss object
Andrew Tridgell [Tue, 16 Aug 2005 10:52:02 +0000 (10:52 +0000)]
r9319: updated newuser script for new OO style for nss object

thanks to Hotarut for spotting this
(This used to be commit 3f30c6118ba22fbf52068630f48bcde82182b8a6)

16 years agor9318: fix searches with scope ONE and SUB,
Stefan Metzmacher [Tue, 16 Aug 2005 06:55:40 +0000 (06:55 +0000)]
r9318: fix searches with scope ONE and SUB,

the problem was that ldb_dn_compare_base() just looked at if
both dn's mtach some how, and the following happens:

basedn: CN=bar,DC=foo,DC=com
dn: DC=foo,DC=com

and dn: DC=foo,DC=com was return as result of a sub and base search

and also the ONE search with
basedn: DC=foo,DC=com

returned this

dn: CN=bla,CN=bar,DC=foo,DC=com

metze
(This used to be commit 2a107472c373e425013050e28b944c830f653a87)

16 years agor9311: Missing null pointer check in ejsLib
Steve French [Tue, 16 Aug 2005 00:01:25 +0000 (00:01 +0000)]
r9311: Missing  null pointer check in ejsLib

Found by coverity
(This used to be commit ae7b073af3d690275dbfa11c8406963702c57d3b)

16 years agor9310: Add two missing return statements after null pointer checks to fix potential...
Steve French [Mon, 15 Aug 2005 23:52:15 +0000 (23:52 +0000)]
r9310: Add two missing return statements after null pointer checks to fix potential oops in kdc code.
Found by coverity.
(This used to be commit 3b707b928969c87ac7e9948a567a3ebbc754f28c)

16 years agor9309: Incorrect null pointer check in return from talloc.
Steve French [Mon, 15 Aug 2005 23:15:59 +0000 (23:15 +0000)]
r9309: Incorrect null pointer check in return from talloc.

Found by coverity.
(This used to be commit bafd3afbef9b8d3a8baa55d4b31cc62bfeeed459)

16 years agor9305: Use the check-var.m4 from roken to really, really detect h_errno correctly.
Andrew Bartlett [Mon, 15 Aug 2005 01:38:21 +0000 (01:38 +0000)]
r9305: Use the check-var.m4 from roken to really, really detect h_errno correctly.

This fixes the build on Fedora Core 4.

Andrew Bartlett
(This used to be commit aa36b2adad0d66b8171aa3ccca3057298361bec5)

16 years agor9300: cope with zero length in ndr_pull_charset()
Andrew Tridgell [Sat, 13 Aug 2005 03:17:18 +0000 (03:17 +0000)]
r9300: cope with zero length in ndr_pull_charset()
(This used to be commit 1ae255aba44f4444486ae5bc634c8ab1a6328c87)

16 years agor9299: fixed the evaluation of pointer expressions that evaluate to boolean
Andrew Tridgell [Sat, 13 Aug 2005 03:16:03 +0000 (03:16 +0000)]
r9299: fixed the evaluation of pointer expressions that evaluate to boolean
(This used to be commit 17679676d4629ac81116ae1b102f1a311b5d4eed)

16 years agor9298: pull non-array elements before array elements to overcome the problem
Andrew Tridgell [Sat, 13 Aug 2005 03:14:47 +0000 (03:14 +0000)]
r9298: pull non-array elements before array elements to overcome the problem
of arrays that have length_is() or size_is() properties that refer to
later elements
(This used to be commit 9526f2a5104b50f4b6ab575cfa6270abb0377e51)

16 years agor9297: Add a NDR_CHECK() around each ejs push/pull.
Tim Potter [Sat, 13 Aug 2005 02:59:56 +0000 (02:59 +0000)]
r9297: Add a NDR_CHECK() around each ejs push/pull.

Some experimentation with the top level function calls.
(This used to be commit e8d53d15e4371bc266a691c3c3c82675373ba7f4)

16 years agor9296: Reinstate generation of push/pull functions for each field in a struct
Tim Potter [Sat, 13 Aug 2005 02:47:14 +0000 (02:47 +0000)]
r9296: Reinstate generation of push/pull functions for each field in a struct
or union.
(This used to be commit 72420f24e654661c8792bd7d0eae610ad182d529)

16 years agor9295: Tridge had some good suggestions for simplifying the smb_interfaces ejs
Tim Potter [Sat, 13 Aug 2005 02:40:02 +0000 (02:40 +0000)]
r9295: Tridge had some good suggestions for simplifying the smb_interfaces ejs
code.  I will try and get just the push/pull functions working rather than
getting in a mess with trying to do everything at once.
(This used to be commit a7504ebf9557796bd50907620115f8367ea586f0)

16 years agor9292: More compiles fixes for autogenerated smb_interfaces ejs wrappers.
Tim Potter [Sat, 13 Aug 2005 01:42:14 +0000 (01:42 +0000)]
r9292: More compiles fixes for autogenerated smb_interfaces ejs wrappers.

Add some code to try and work out whether a smb_interface requires a
TALLOC_CTX in the function signature.  I'm not sure whether this is
going to work as the raw api is a bit inconsistent I think.
(This used to be commit 13a101653ea7bba3b8b1f74637d981eb004484cc)

16 years agor9291: Add a stub for smb_raw_lpq() which is in smb_interfaces.h but doesn't
Tim Potter [Sat, 13 Aug 2005 01:15:32 +0000 (01:15 +0000)]
r9291: Add a stub for smb_raw_lpq() which is in smb_interfaces.h but doesn't
seem to be used anywhere yet.
(This used to be commit 9e5ce3a28892241e2b080c0fa187ee99042c2330)

16 years agor9284: Whitespace. (-:
Tim Potter [Fri, 12 Aug 2005 23:01:57 +0000 (23:01 +0000)]
r9284: Whitespace.  (-:
(This used to be commit 6a7922a02c19b5ea2b77011ff593c6d535d0b212)

16 years agor9279: In Samba3 debuglevel 10 used to print RPC debugs. I think this should
Tim Potter [Fri, 12 Aug 2005 22:55:53 +0000 (22:55 +0000)]
r9279: In Samba3 debuglevel 10 used to print RPC debugs.  I think this should
apply to Samba4 as well so change the DEBUGLEVEL > 10 to DEBUGLEVEL >= 10.
(This used to be commit 2215cc08b7b94df3fff9cfff6c839bbf2cb6e664)

16 years agor9260: only overwrite destination files when the temp files was created correct
Stefan Metzmacher [Fri, 12 Aug 2005 09:51:40 +0000 (09:51 +0000)]
r9260: only overwrite destination files when the temp files was created correct

metze
(This used to be commit b5626c978fe3349f0972e1aeea51b05e66c6ce33)

16 years agor9258: return is only supported in function, not in plain shell scripts
Stefan Metzmacher [Fri, 12 Aug 2005 09:20:32 +0000 (09:20 +0000)]
r9258: return is only supported in function, not in plain shell scripts

metze
(This used to be commit 3b99c3685734e398ab007e93dd7f468027c1847f)

16 years agor9257: - I assume we don't need unistd.h in this file,
Stefan Metzmacher [Fri, 12 Aug 2005 09:05:09 +0000 (09:05 +0000)]
r9257: - I assume we don't need unistd.h in this file,
  that sould fixes the build on aix
- use "" instead of <> for includes in our tree

metze
(This used to be commit 8c8fd4cfc6bbad9e8ec2ae9998a6cf4bd90b4bc6)

16 years agor9240: - move struct security_token to the idl file, with this we can
Stefan Metzmacher [Thu, 11 Aug 2005 13:12:45 +0000 (13:12 +0000)]
r9240: - move struct security_token to the idl file, with this we can
  the ndr_pull/push/print functions for it in the ntacl-lsm module

- fix compiler warnings in the ldap_encode_ndr_* code

metze
(This used to be commit 83d65d0d7ed9c240ad44aa2c881c1f07212bfda4)

16 years agor9239: I think this is the right IDL for the eventlog record. Pidl is
Tim Potter [Thu, 11 Aug 2005 04:05:21 +0000 (04:05 +0000)]
r9239: I think this is the right IDL for the eventlog record.  Pidl is
generating incorrect code for arrays of strings here.
(This used to be commit 3b2476e0a00dbd3b552ccde736147e93655732f1)

16 years agor9238: Some test code to do user-unmarshalling of eventlog_Record data.
Tim Potter [Thu, 11 Aug 2005 04:04:16 +0000 (04:04 +0000)]
r9238: Some test code to do user-unmarshalling of eventlog_Record data.
(This used to be commit d0225f10797eaeeb6d10cf753578703e144ee8dd)

16 years agor9237: Fix eventlog_Record typedef so it decodes records source and computer
Tim Potter [Thu, 11 Aug 2005 03:31:35 +0000 (03:31 +0000)]
r9237: Fix eventlog_Record typedef so it decodes records source and computer
names.  Need to get working with SIDs and extra data.
(This used to be commit 2543f78df61b76295acf6fe4837adefbe08ca5c4)

16 years agor9235: Remove attribute search we no longer reference.
Andrew Bartlett [Wed, 10 Aug 2005 22:28:37 +0000 (22:28 +0000)]
r9235: Remove attribute search we no longer reference.

Andrew Bartlett
(This used to be commit cf8bf1e9f3d771fb3ea14949cd6963c3e9ac6c2d)

16 years agor9234: Ensure we always change the end of the PAC, no matter what it is. Fix
Andrew Bartlett [Wed, 10 Aug 2005 22:27:55 +0000 (22:27 +0000)]
r9234: Ensure we always change the end of the PAC, no matter what it is.  Fix
typo in comment.

Andrew Bartlett
(This used to be commit c96f8594b16c6a5310e2e8727bb6975f2a193231)

16 years agor9233: Ensure that the output variable is initialised in this conversion from
Andrew Bartlett [Wed, 10 Aug 2005 22:27:04 +0000 (22:27 +0000)]
r9233: Ensure that the output variable is initialised in this conversion from
error to non-error case.

Andrew Bartlett
(This used to be commit ab75cd53e7c65fa6242b8dde3bfede735a6b36d5)

16 years agor9232: Rename some objects to make code clear.
Deryck Hodge [Wed, 10 Aug 2005 20:47:03 +0000 (20:47 +0000)]
r9232: Rename some objects to make code clear.

deryck
(This used to be commit 8a3445499e3f913693196aa1d1b5bbeec5469cf2)

16 years agor9230: Star out passwords and add confim text input for provisioning.
Deryck Hodge [Wed, 10 Aug 2005 19:25:07 +0000 (19:25 +0000)]
r9230: Star out passwords and add confim text input for provisioning.
Also, add addMethod() to form elements now.

deryck
(This used to be commit 79f276df47ebc93e1505c7411fb1acd4b004047c)

16 years agor9228: cleanup and simplify the AJAJ code - part 2
Andrew Tridgell [Wed, 10 Aug 2005 07:03:10 +0000 (07:03 +0000)]
r9228: cleanup and simplify the AJAJ code - part 2
(This used to be commit bb3ab2c47b098ed57af358c4f5c6ad4d4d26eb33)

16 years agor9227: cleanup and simplify the AJAJ code
Andrew Tridgell [Wed, 10 Aug 2005 06:58:05 +0000 (06:58 +0000)]
r9227: cleanup and simplify the AJAJ code
(This used to be commit ceb7669e5991e9dda759d60a09a0a65e6caba991)

16 years agor9226: make sure we catch rpc faults in the ejs rpc wrappers
Andrew Tridgell [Wed, 10 Aug 2005 06:55:46 +0000 (06:55 +0000)]
r9226: make sure we catch rpc faults in the ejs rpc wrappers
(This used to be commit 3ec376141e64f0a504f04b470cb5df78c2e0f5c2)

16 years agor9223: Rename smb_raw_session_setup() to smb_raw_sesssetup().
Tim Potter [Tue, 9 Aug 2005 04:11:09 +0000 (04:11 +0000)]
r9223: Rename smb_raw_session_setup() to smb_raw_sesssetup().
(This used to be commit 5e6d330e7388e47e1b2bfc96fff07682e90f63a5)

16 years agor9222: Rename smb_tree_connect() to smb_raw_tcon() to match other raw function
Tim Potter [Tue, 9 Aug 2005 03:09:47 +0000 (03:09 +0000)]
r9222: Rename smb_tree_connect() to smb_raw_tcon() to match other raw function
names.
(This used to be commit 26b191b3c9529b2dae5d004819dab46657064408)

16 years agor9221: Try to merge Heimdal across from lorikeet-heimdal to samba4.
Andrew Bartlett [Tue, 9 Aug 2005 03:04:47 +0000 (03:04 +0000)]
r9221: Try to merge Heimdal across from lorikeet-heimdal to samba4.

This is my first attempt at this, so there may be a few rough edges.

Andrew Bartlett
(This used to be commit 9a1d2f2fec67930975da856a2d365345cec46216)

16 years agor9220: Start trying to get autogenerated code to compile.
Tim Potter [Tue, 9 Aug 2005 00:34:24 +0000 (00:34 +0000)]
r9220: Start trying to get autogenerated code to compile.

 - Split out push/pull of top level elements into separate functions.

 - Remove _t from simple type names.
(This used to be commit c419eef1c93afb51cf2fb42f87c0e5d29d2348ea)

16 years agor9219: by default be a DC, as the provisioning scripts assume that in other parts
Andrew Tridgell [Mon, 8 Aug 2005 23:44:09 +0000 (23:44 +0000)]
r9219: by default be a DC, as the provisioning scripts assume that in other parts
(This used to be commit f8949869bc114590c9260ab7b9d97f71a552a6a7)

16 years agor9218: make the winreg library code handle arbitrary paths more efficiently
Andrew Tridgell [Mon, 8 Aug 2005 22:29:44 +0000 (22:29 +0000)]
r9218: make the winreg library code handle arbitrary paths more efficiently
and more conveniently (caller doesn't need to know the hive names now)
(This used to be commit dadd7e22fb439f7b18c429a95c75902e4741ba8d)

16 years agor9217: Add 'make clean' hooks to the ans1 depedency generator.
Andrew Bartlett [Mon, 8 Aug 2005 22:14:40 +0000 (22:14 +0000)]
r9217: Add 'make clean' hooks to the ans1 depedency generator.

To be used by the impending Heimdal resync, which has files starting
with asn1_ that are not generated.

Andrew Bartlett
(This used to be commit 15b7af1c39a8369fb701f60485c7ac2040f1c27a)

16 years agor9213: some improvements to the registry editor code
Andrew Tridgell [Mon, 8 Aug 2005 05:26:15 +0000 (05:26 +0000)]
r9213: some improvements to the registry editor code
(This used to be commit 5cd33fa9f898f95a78397a387a42977a4839fb20)

16 years agor9212: the beginnings of a registry editor in SWAT, using client side javascript...
Andrew Tridgell [Mon, 8 Aug 2005 03:23:20 +0000 (03:23 +0000)]
r9212: the beginnings of a registry editor in SWAT, using client side javascript and AJAJ

This doesn't work at all well yet, mostly because of my inexperience
with client side javascript and what events are available
(This used to be commit 8073e84c7a5fd8d483685d769661c790a803ff49)

16 years agor9211: don't try to encode functions in the AJAJ object encoder
Andrew Tridgell [Mon, 8 Aug 2005 03:21:16 +0000 (03:21 +0000)]
r9211: don't try to encode functions in the AJAJ object encoder
(This used to be commit a08104a13c722b3888aecd365e32aae63ea481e5)

16 years agor9210: fixed support for a credentials element in a rpc object in ejs to not
Andrew Tridgell [Mon, 8 Aug 2005 03:20:17 +0000 (03:20 +0000)]
r9210: fixed support for a credentials element in a rpc object in ejs to not
give lots of warnings of missing properties
(This used to be commit 15737abd747cea561eca92103919f4adc22c6fcd)

16 years agor9209: - fixed the ldb registry backend to work with the new provision ldif
Andrew Tridgell [Mon, 8 Aug 2005 03:19:28 +0000 (03:19 +0000)]
r9209: - fixed the ldb registry backend to work with the new provision ldif

- default to ldb backend if none specified
(This used to be commit 8c3f57f7917efceb11b3b6a2ac76ec44968fbfb6)

16 years agor9208: fix a crash bug
Stefan Metzmacher [Mon, 8 Aug 2005 02:42:35 +0000 (02:42 +0000)]
r9208: fix a crash bug

metze
(This used to be commit f8a25ac2397d50359f4903618832da7886d91d6f)

16 years agor9207: Start generating ejs_push/pull calls for structure elements.
Tim Potter [Mon, 8 Aug 2005 02:19:35 +0000 (02:19 +0000)]
r9207: Start generating ejs_push/pull calls for structure elements.
(This used to be commit 8ff27a1effd2050733916569190264e347286c45)

16 years agor9205: Generate more stub code for smb_raw ejs functions.
Tim Potter [Mon, 8 Aug 2005 00:24:05 +0000 (00:24 +0000)]
r9205: Generate more stub code for smb_raw ejs functions.
(This used to be commit 3407490121344f34c69eeaf838de6ce9c4c7b1fc)

16 years agor9202: OK now we are getting somewhere. Generate js stubs for top level structs
Tim Potter [Sun, 7 Aug 2005 22:14:30 +0000 (22:14 +0000)]
r9202: OK now we are getting somewhere.  Generate js stubs for top level structs
and each arm of top level unions.  Don't generate a header file (duh) as
the namespace stuff is done in the module init.
(This used to be commit dde7f8be97f1a85b2f8221a98eb2edd357eb8cf2)

16 years agor9199: Another go at recursive flattening of structs.
Tim Potter [Sun, 7 Aug 2005 21:10:32 +0000 (21:10 +0000)]
r9199: Another go at recursive flattening of structs.
(This used to be commit a6541a07028d7d53e441a1eb78457c0d572109af)

16 years agor9196: - add a note about the Canonicalize KDCOPtion flag
Stefan Metzmacher [Sun, 7 Aug 2005 20:34:38 +0000 (20:34 +0000)]
r9196: - add a note about the Canonicalize KDCOPtion flag

- add a note about old client using the wrong checksum type for GSSAPI
  in the Authenticator

metze
(This used to be commit 07e39bd94c3ce4d255e6cf6e68dc438bb5c9f9e6)

16 years agor9191: Generate headers for nested structures that need pushing or pulling.
Tim Potter [Sun, 7 Aug 2005 19:22:20 +0000 (19:22 +0000)]
r9191: Generate headers for nested structures that need pushing or pulling.
(This used to be commit c56a530d3ba31a603d1a5615bdd2a0788cf1f967)

16 years agor9185: Make second pass over the parser tree and tidy things up to make it a
Tim Potter [Sun, 7 Aug 2005 18:04:34 +0000 (18:04 +0000)]
r9185: Make second pass over the parser tree and tidy things up to make it a
bit easier for the code generator.
(This used to be commit a6f1f251e86bac43b894d551e93536256bab7329)

16 years agor9183: more workarounds for the global variables in ejs. I will discuss getting rid...
Andrew Tridgell [Sun, 7 Aug 2005 15:45:59 +0000 (15:45 +0000)]
r9183: more workarounds for the global variables in ejs. I will discuss getting rid of these
with the mbedthis people.
(This used to be commit a5b9e74a5c23e724ae4ee222e6f128133b175494)

16 years agor9179: cope with simultaneous web requests using the same session variable
Andrew Tridgell [Sun, 7 Aug 2005 15:20:25 +0000 (15:20 +0000)]
r9179: cope with simultaneous web requests using the same session variable
(This used to be commit 7d6e6012198d6fd3770da22ec5e1770c9bcd4ed7)

16 years agor9178: remove the old server printf code
Andrew Tridgell [Sun, 7 Aug 2005 07:01:03 +0000 (07:01 +0000)]
r9178: remove the old server printf code
(This used to be commit 0b96b3bfe370f5f4e44cc1a2a249f766a04c5b07)

16 years agor9177: setup a credentials object in authinfo on login
Andrew Tridgell [Sun, 7 Aug 2005 07:00:27 +0000 (07:00 +0000)]
r9177: setup a credentials object in authinfo on login
(This used to be commit c1ef18a590d2f7af4b64c1775376a05da80ac242)

16 years agor9176: added a much neater method of calling printf on the server from client side...
Andrew Tridgell [Sun, 7 Aug 2005 07:00:00 +0000 (07:00 +0000)]
r9176: added a much neater method of calling printf on the server from client side js. Just
use srv_printf() and normal printf arguments
(This used to be commit 11c7e8db3d2501a6a439d3e3a63a5055cc577f51)

16 years agor9175: simplify the example code a bit
Andrew Tridgell [Sun, 7 Aug 2005 06:22:08 +0000 (06:22 +0000)]
r9175: simplify the example code a bit
(This used to be commit fbae29686644198351bb31c3be1cf5630165ef1f)

16 years agor9174: ejs does not include the special variable 'length' in for loops over objects,
Andrew Tridgell [Sun, 7 Aug 2005 06:19:17 +0000 (06:19 +0000)]
r9174: ejs does not include the special variable 'length' in for loops over objects,
so we need to check for it separately in the object lineariser
(This used to be commit ea3c3d0a0f79c49c2e93da4956cc509614f92f37)

16 years agor9173: catch ep->local being NULL
Andrew Tridgell [Sun, 7 Aug 2005 06:16:32 +0000 (06:16 +0000)]
r9173: catch ep->local being NULL
(This used to be commit 9f75bc3ca061abbfeb6ac9fc60834b8c1f6e2c4d)

16 years agor9172: - fixed a nasty bug in the 'deep copy' mpr code that caused variables
Andrew Tridgell [Sun, 7 Aug 2005 06:16:10 +0000 (06:16 +0000)]
r9172: - fixed a nasty bug in the 'deep copy' mpr code that caused variables
  called 'credentials' to not copy correctly (the bug was in handling
  of chaining in the copy code

- ensure that C pointer variables are copied via a talloc reference so that
  we can persist rpc pipes and credentials between sessions
(This used to be commit ca6f049693f8bfe69d5c7533b2cc92221d0cf6d4)

16 years agor9171: - support putting a credentials object in a rpc pipe object to allow authentic...
Andrew Tridgell [Sun, 7 Aug 2005 06:13:55 +0000 (06:13 +0000)]
r9171: - support putting a credentials object in a rpc pipe object to allow authentication
  with other than the command line credentials in a rpc pipe
(This used to be commit aae05ebc9c3dc7ad367aed09c54b85184ba7a82e)

16 years agor9170: fix crash bug
Stefan Metzmacher [Sun, 7 Aug 2005 02:53:27 +0000 (02:53 +0000)]
r9170: fix crash bug

metze
(This used to be commit 232b04bf3e5ff185cf8c6401a19960afd42b5d6c)

16 years agor9168: Fix subcontext handling
Jelmer Vernooij [Sat, 6 Aug 2005 23:41:18 +0000 (23:41 +0000)]
r9168: Fix subcontext handling
Support fixed-size arrays
Give some more nicer warnings for not-supported IDL constructions such as inline arrays
Fix signed int-handling
(This used to be commit 2f1fcf3bc7a29e3089f1edafd45c70488f3cd565)

16 years agor9167: Further PAC parionia: ensure the checksum fails if we modify it.
Andrew Bartlett [Sat, 6 Aug 2005 23:25:00 +0000 (23:25 +0000)]
r9167: Further PAC parionia:  ensure the checksum fails if we modify it.

Andrew Bartlett
(This used to be commit ea4cc6bcbed4f26855d2f67d914c73453c524406)

16 years agor9166: This checks more of auth subsystem in the PAC test.
Andrew Bartlett [Sat, 6 Aug 2005 23:07:21 +0000 (23:07 +0000)]
r9166: This checks more of auth subsystem in the PAC test.

Andrew Bartlett
(This used to be commit 1fa87223eb66825ef2dd93966652fa84de6b0b2f)

16 years agor9165: Fix inverted error check in untested code path. (My untested code...)
Andrew Bartlett [Sat, 6 Aug 2005 22:43:09 +0000 (22:43 +0000)]
r9165: Fix inverted error check in untested code path.  (My untested code...)

Andrew Bartlett
(This used to be commit fba7a0edd4ba29e595bb6ebd77381b383701482d)

16 years agor9164: Fix subcontext handling
Jelmer Vernooij [Sat, 6 Aug 2005 18:02:35 +0000 (18:02 +0000)]
r9164: Fix subcontext handling
Support fixed-size arrays
Give some more nicer warnings for not-supported IDL constructions such as inline arrays
Fix signed int-handling
(This used to be commit 3456dc7846ec49e6d4c71e66557bd31c683daa60)

16 years agor9162: Fix a couple of data types
Jelmer Vernooij [Sat, 6 Aug 2005 04:01:00 +0000 (04:01 +0000)]
r9162: Fix a couple of data types
(This used to be commit 7329dd25f509a5db92ee70713fa0b2a2473ae8cb)

16 years agor9161: More etheral parser generator fixes
Jelmer Vernooij [Sat, 6 Aug 2005 01:54:55 +0000 (01:54 +0000)]
r9161: More etheral parser generator fixes
(This used to be commit b323e83e8df6ba331b3f0b3abe28aa8ddf9127ef)

16 years agor9160: use the winreg lib in the test program
Andrew Tridgell [Sat, 6 Aug 2005 01:11:16 +0000 (01:11 +0000)]
r9160: use the winreg lib in the test program
(This used to be commit 33bb76ed4e1a796cf68198c0bb480a7bbd31b6cd)

16 years agor9159: abstract the winreg js functions into a nice library interface
Andrew Tridgell [Sat, 6 Aug 2005 01:09:27 +0000 (01:09 +0000)]
r9159: abstract the winreg js functions into a nice library interface
(This used to be commit 5e398700627fb2c16bf39b9c851f640f5412c7d4)

16 years agor9157: fix white spaces
Stefan Metzmacher [Sat, 6 Aug 2005 01:01:18 +0000 (01:01 +0000)]
r9157: fix white spaces

metze
(This used to be commit 475b413cfea03c749535df8e100f0339ffecf590)

16 years agor9156: Add IDL and test for FlushEventLog() but it always seems to return
Tim Potter [Sat, 6 Aug 2005 00:58:06 +0000 (00:58 +0000)]
r9156: Add IDL and test for FlushEventLog() but it always seems to return
NT_STATUS_ACCESS_DENIED.
(This used to be commit f18d1f539e4fd434dfc519e45f4c356c5cd4d73a)

16 years agor9155: Fix ReadEventLog() test so it now works.
Tim Potter [Sat, 6 Aug 2005 00:47:17 +0000 (00:47 +0000)]
r9155: Fix ReadEventLog() test so it now works.
(This used to be commit b76d35e7e2207f4da294a7cd1b5636b954162be2)

16 years agor9154: Change eventlog enums to bitmaps.
Tim Potter [Sat, 6 Aug 2005 00:46:43 +0000 (00:46 +0000)]
r9154: Change eventlog enums to bitmaps.

Fix IDL for ReadEventLogW() function.
(This used to be commit b1b76ad9c428f0941d104e9312aa426c39da7134)

16 years agor9153: added a sample program for enumerating winreg via js
Andrew Tridgell [Sat, 6 Aug 2005 00:36:17 +0000 (00:36 +0000)]
r9153: added a sample program for enumerating winreg via js
(This used to be commit 10043db676f9db8d1933b6a5f9ae050cefc538ac)

16 years agor9152: fix a crash bug
Stefan Metzmacher [Sat, 6 Aug 2005 00:06:34 +0000 (00:06 +0000)]
r9152: fix a crash bug

metze
(This used to be commit d1868bd5912c5bb90509ace5c7ac8589c29e423c)

16 years agor9151: reverting to return char * again
Stefan Metzmacher [Fri, 5 Aug 2005 23:56:07 +0000 (23:56 +0000)]
r9151: reverting to return char * again

metze
(This used to be commit 60e2d58685ee50f90d6ad2ce2609a3c0b433ae10)

16 years agor9150: The ethereal parser generators work now. Thanks to Ronnie Sahlberg for
Jelmer Vernooij [Fri, 5 Aug 2005 23:49:08 +0000 (23:49 +0000)]
r9150: The ethereal parser generators work now. Thanks to Ronnie Sahlberg for
help with the debugging and comments on the generated code (-:
(This used to be commit 4c165f8ff65b4500d8366b655d6df2a065f35bf5)

16 years agor9149: add support for string arrays in GetPrinterData
Stefan Metzmacher [Fri, 5 Aug 2005 23:30:28 +0000 (23:30 +0000)]
r9149: add support for string arrays in GetPrinterData

metze
(This used to be commit b72062e653b1d87d957f1f10415cdd034cac4bdb)

16 years agor9148: remove the aix stuff it didn't fix the build
Stefan Metzmacher [Fri, 5 Aug 2005 23:11:00 +0000 (23:11 +0000)]
r9148: remove the aix stuff it didn't fix the build

metze
(This used to be commit ff01807d731980ecc38264d6923f54cfae460878)

16 years agor9146: - enable winreg pipe from ejs
Andrew Tridgell [Fri, 5 Aug 2005 23:01:57 +0000 (23:01 +0000)]
r9146: - enable winreg pipe from ejs

- map the result code from rpc calls into the ejs objects

- treat winreg_String like lsa_String, hiding the length elements
(This used to be commit 2f6311c9a34db46f9a4b1f31e865a373b15702bf)

16 years agor9145: Some work on eventlog since jerry is doing some in Samba3. (-:
Tim Potter [Fri, 5 Aug 2005 22:57:47 +0000 (22:57 +0000)]
r9145: Some work on eventlog since jerry is doing some in Samba3.  (-:

 - Convert to use lsa_String instead of eventlog_String.

 - Copy across some constants.

 - Implement idl and testcase for ClearEventLog() function
(This used to be commit 352b21af3f0a84ee31d0eecaa76abf2134d044de)

16 years agor9143: print out the rate of rounttrips
Stefan Metzmacher [Fri, 5 Aug 2005 22:22:15 +0000 (22:22 +0000)]
r9143: print out the rate of rounttrips

metze
(This used to be commit c0e055ac989a24c2b6ad14a0eb2b3f8509cb9bab)

16 years agor9142: fix the output to the new names
Stefan Metzmacher [Fri, 5 Aug 2005 21:44:10 +0000 (21:44 +0000)]
r9142: fix the output to the new names

metze
(This used to be commit bab33aa993830db85faf9be6f02832cf4ad8aa19)