> -----Original Message-----
> From: IBM Mainframe Discussion List 
> [mailto:[EMAIL PROTECTED] On Behalf Of Joel Ivey
> Sent: Wednesday, April 19, 2006 12:03 PM
> To: [email protected]
> Subject: hfs ishell owner field blank
> 
> 
> I imagine this might be a security issue, but I haven't been 
> able to find
> any search hits nor doc on it.
> 
> In ishell, for files or directories owned by one particular 
> user, the owner
> field is blank.   When displaying attributes of the file or 
> directory, the
> uid is there, but not the userid associated with it.   
> 
> Also in omvs when doing "ls -la", the group field is correct 
> (text) but the
> owner field is the uid (numerals).   
> 
> For other userids, the displays are correct.  See the examples.  Any
> assistance is appreciated. 
> 
> Joel
> SC Employment Security Commission
> 
> 
> ISHELL display...
> (note the owner field in first two entries)
> File   770  2006-03-29 10:26                  78862  XXXISK.TsT   
> File   770  2006-03-29 10:26                   2010  XXXRT.TsT    
> File   770  2006-03-09 07:37  XXXSTAR            94  XXX.stdin    
> File   770  2006-03-02 10:43  XXXSTAR            35  XXX.stdintst 
> 
> ISHELL "A"ttribute line command display...
> (note the owner field)
> File type . . . . . . : Regular file   
> Permissions . . . . . : 770            
> Access control list . : 0              
> File size . . . . . . : 60273          
> File owner  . . . . . : (212)          
> Group owner . . . . . : XXXSTARG(32)   
> 
> ISHELL "A"ttribute line command display 
> (this is the display that is normally expected)
> File type . . . . . . : Regular file
> Permissions . . . . . : 770         
> Access control list . : 0           
> File size . . . . . . : 94          
> File owner  . . . . . : XXXSTAR(277)
> Group owner . . . . . : XXXSTARG(32)
> 
> 
> OMVS display...
> (note the uid in the third line in the owner field)
> drwxr-x---   9 $XXXSSU  XXXROOTG     480 Mar 23 09:12 .      
> drwxr-xr-x  16 $XXXSSU  XXXSUGRP    8192 Mar 30 11:42 ..     
> drwxrwx---   2 212      XXXPAYRG     256 Mar 23 09:12 xxxmm  
> drwxrwx---   3 XXXPAYR  XXXPAYRG     384 Mar  8 11:43 xxxpayr
> drwxrwx---   3 XXXSTAR  XXXSTARG    1088 Apr 19 07:09 xxxstar
> 

Sounds like there is not a RACF id with an OMVS segment which has a UID
of 212. You can verify this by unloading the RACF database using
IRRDBU00 to a sequential file. Then look at all the record type 0270
records. You will likely not see such a one with a UID of 212.

Example SAS code:

DATA UIDS;
  INFILE IRRDBU00;
  INPUT @1 RECID $CHAR4. @;
  IF RECID='0270';
  INPUT @6 USERID $CHAR8.
        @15 UID 10.
  ;
PROC PRINT UNIFORM DATA=UIDS;

--
John McKown
Senior Systems Programmer
HealthMarkets
Keeping the Promise of Afforadble Coverage
Administrative Services Group
Information Technology

This message (including any attachments) contains confidential
information intended for a specific individual and purpose, and its
content is protected by law.  If you are not the intended recipient, you
should delete this message and are hereby notified that any disclosure,
copying, or distribution of this transmission, or taking any action
based on it, is strictly prohibited. 
 

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

Reply via email to