~ubuntu-branches/ubuntu/maverick/samba/maverick-security

« back to all changes in this revision

Viewing changes to source/pidl/TODO

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2009-03-03 22:02:23 UTC
  • mfrom: (0.28.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090303220223-3bdlm2d9fwx1p1ye
Tags: 2:3.3.1-1ubuntu1
* Merge from Debian unstable (LP: #337094), remaining changes:
  + debian/patches/VERSION.patch:
    - setup SAMBA_VERSION_SUFFIX to Ubuntu.
  + debian/smb.conf:
    - add "(Samba, Ubuntu)" to server string.
    - comment out the default [homes] share, and add a comment about
      "valid users = %S" to show users how to restrict access to
      \\server\username to only username.
    - Set 'usershare allow guests', so that usershare admins are 
      allowed to create public shares in addition to authenticated
      ones.
    - add map to guest = Bad user, maps bad username to guest access. 
  + debian/samba-common.config:
    - Do not change priority to high if dhclient3 is installed.
    - Use priority medium instead of high for the workgroup question.
  + debian/mksambapasswd.awk:
    - Do not add user with UID less than 1000 to smbpasswd.
  + debian/control:
    - Make libwbclient0 replace/conflict with hardy's likewise-open.
    - Don't build against ctdb.
  + debian/rules:
    - enable "native" PIE hardening.
  + Add ufw integration:
    - Created debian/samba.ufw.profile
    - debian/rules, debian/samba.dirs, debian/samba.files: install
      profile
    - debian/control: have samba suggest ufw
* Dropped changes, merged in Debian:
  + debian/libpam-smbpass.pam-config, debian/libpam-smbpass.postinst,
    debian/libpam-smbpass.prerm, debian/libpam-smbpass.files,
    debian/rules:
    - Make libpam-smbpasswd depend on libpam-runtime to allow 
      libpam-smbpasswd for auto-configuration.
  + debian/control:
    - Provide a config block for the new PAM framework to auto-configure
      itself
  + debian/samba.postinst:
    - When populating the new sambashare group, it is not an error
      if the user simply does not exist; test for this case and let
      the install continue instead of aborting.
  + debian/winbind.files:
    - include additional files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
- warn when union instances don't have a discriminant
 
2
 
 
3
- EJS output backend shouldn't use the NDR levels stuff but instead
 
4
  as the "C levels" and NDR levels don't necessarily match.
 
5
 
 
6
- true multiple dimension array / strings in arrays support
 
7
 
 
8
- compatibility mode for generating MIDL-readable data:
 
9
 - strip out pidl-specific properties
 
10
 
 
11
- make bitmap an optional attribute on enum
 
12
- support nested elements
 
13
- support typedefs properly (e.g. allow "typedef void **bla;")
 
14
- make typedefs generate real typedefs
 
15
- improve represent_as(): allow it to be used for arrays and other complex
 
16
  types
 
17
 
 
18
- --explain-ndr option that dumps out parse tree ?
 
19
 
 
20
- seperate tables for NDR and DCE/RPC
 
21
 - maybe no tables for NDR at all? we only need them for ndrdump
 
22
   and that can use dlsym()
 
23
 
 
24
- allow data structures outside of interfaces
 
25
 
 
26
- mem_ctx in the interface rather than as struct ndr member.
 
27
 
 
28
- real typelibs
 
29
 
 
30
- fix [in,out] handling and allocation for samba3:
 
31
 - add inout
 
32
 - make NULL to mean "allocate me"
 
33
 - remove NDR_AUTO_REF_ALLOC flag
 
34
 
 
35
- automatic test generator based on IDL pointer types
 
36
 
 
37
- support converting structs to tuples in Python rather than objects
 
38
- convert structs with a single mattering member to that member directly, e.g.:
 
39
  struct bar {
 
40
    int size;
 
41
        [size_is(size)] uint32 *array;
 
42
  };
 
43
 
 
44
  should be converted to an array of uint32's
 
45
 
 
46
- python: fill in size members automatically in some places if the struct isn't being returned
 
47
  (so we don't have to cope with the array growing)