Bug 181465 (multipleSUP) - Object class SUP declaration (not RFC compliant)
Summary: Object class SUP declaration (not RFC compliant)
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: multipleSUP
Product: 389
Classification: Retired
Component: Schema
Version: 1.0
Hardware: i386
OS: Linux
low
medium
Target Milestone: ---
Assignee: Rich Megginson
QA Contact: Viktor Ashirov
URL:
Whiteboard:
: 181466 (view as bug list)
Depends On:
Blocks: 434914 389_1.2.1
TreeView+ depends on / blocked
 
Reported: 2006-02-14 14:11 UTC by Yacine Kheddache
Modified: 2015-12-07 17:17 UTC (History)
3 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2015-12-07 17:17:28 UTC
Embargoed:


Attachments (Terms of Use)
Patch (2.29 KB, patch)
2009-05-29 21:31 UTC, Nathan Kinder
no flags Details | Diff

Description Yacine Kheddache 2006-02-14 14:11:34 UTC
From Bugzilla Helper:
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)

Description of problem:
Hi,

When playing with openldap schema conversion to FDS I discover this issue below:

RFC 2252 say for object class:
[ "SUP" oids ]
 
Where :
oids            = woid / ( "(" oidlist ")" )
oidlist         = woid *( "$" woid )

One of my converted schema contains this line;
SUP (inetOrgPerson $ PureFTPdUser )

And based on RFC 2252 it is RFC compliant.

But FDS complain with error below:
error code 20 (Type or value exists) - object class ispmanDomainUser: Superior object class "(inetOrgPerson" does not exist

Line (workaround):
SUP inetOrgPerson $ PureFTPdUser
is working without any FDS complains. 

So I guess FDS is not RFC compliant on this point.

Regards
Yacine (Yada on  #fedora-ds)


Version-Release number of selected component (if applicable):
FDS 1.0.1

How reproducible:
Always

Steps to Reproduce:
1. use parenthesis in a schema for an object class SUP declaration
2. restart FDS
3.
  

Actual Results:  error code 20 (Type or value exists) - object class "foo": Superior object class "(bar" does not exist


Expected Results:  Should restart without errors and take the SUP () declaration into account.

Additional info:

Comment 1 Rich Megginson 2006-02-14 14:15:55 UTC
*** Bug 181466 has been marked as a duplicate of this bug. ***

Comment 2 Pete Rowley 2006-02-14 19:05:05 UTC
I believe the current parser is space sensitive (and really should not be) - it
requires a space between the bracket and the list item.

Comment 3 Yacine Kheddache 2006-02-14 22:58:03 UTC
Correct it work fine with:
SUP ( inetOrgPerson $ PureFTPdUser )


Comment 7 Rich Megginson 2009-04-09 16:51:08 UTC
This falls under the category of "improve schema parsing" and "RFC correctness"

Comment 8 Nathan Kinder 2009-05-29 21:31:34 UTC
Created attachment 345962 [details]
Patch

Our schema parser requires a space after the opening paran
when multiple SUP objectclasses are listed in the definition
of an objectclass.  The RFCs show that a space is not required.
    
This patch simply removes the requirement that a space be
present after the opening paran.

Comment 9 Nathan Kinder 2009-05-29 21:34:27 UTC
Pushed patch to master.

Comment 10 Jenny Severance 2010-06-07 15:26:58 UTC
verified RHEL 4

version:
redhat-ds-base-8.2.0-2010060704.el4dsrv

Successfully added the following schema without spaces between the brackets

dn: cn=schema
changetype: modify
add: objectclasses
objectclasses: (1.22.333.4444 NAME 'myMozOC' DESC 'Objectclass that contains MozillaAttribute' SUP top STRUCTURAL MUST (cn $ MozillaAttribute))


Note You need to log in before you can comment on or make changes to this bug.