[HACKERS] porting question: funky uid names?

2001-03-09 Thread Mark Bixby

Hi pgsql-hackers,

I'm currently porting 7.0.3 to the HP MPE/iX OS to join my other ports of
Apache, BIND, sendmail, Perl, and others.  I'm at the point where I'm trying to
run the "make runcheck" regression tests, and I've just run into a problem
where I need to seek the advice of psql-hackers.

MPE is a proprietary OS with a POSIX layer on top.  The concept of POSIX uids
and gids has been mapped to the concept of MPE usernames and MPE accountnames. 
An example MPE username would be "MGR.BIXBY", and if you do a POSIX
getpwuid(getuid()), the contents of pw_name will be the same "MGR.BIXBY".

The fact that pw_name contains a period on MPE has been confusing to some
previous ports I've done, and it now appears PostgreSQL is being confused too. 
Make runcheck is dying in the initdb phase:

Creating global relations in /blah/blah/blah
ERROR:  pg_atoi: error in "BIXBY": can't parse "BIXBY"
ERROR:  pg_atoi: error in "BIXBY": can't parse "BIXBY"
syntax error 25 : - .

I'm guessing that something tried to parse "MGR.BIXBY", saw the decimal point
character and passed the string to pg_atoi() thinking it's a number instead of
a name.  This seems like a really bad omen hinting at trouble on a fundamental
level.

What are my options here?

1) I'm screwed; go try porting MySQL instead.  ;-)

2) Somehow modify username parsing to be tolerant of the "." character?  I was
able to do this when I ported sendmail.  Where should I be looking in the
PostgreSQL source?  Is this going to require language grammar changes?

3) Always specify numeric uids instead of user names.  Is this even possible?

Your advice will be greatly appreciated.  MPE users are currently whining on
their mailing list about the lack of standard databases for the platform, and I
wanted to surprise them by releasing a PostgreSQL port.

Thanks!
-- 
[EMAIL PROTECTED]
Remainder of .sig suppressed to conserve scarce California electrons...

---(end of broadcast)---
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])



Re: [HACKERS] porting question: funky uid names?

2001-03-09 Thread Mark Bixby



Tom Lane wrote:
 
 Mark Bixby [EMAIL PROTECTED] writes:
  MPE is a proprietary OS with a POSIX layer on top.  The concept of
  POSIX uids and gids has been mapped to the concept of MPE usernames
  and MPE accountnames.  An example MPE username would be "MGR.BIXBY",
  and if you do a POSIX getpwuid(getuid()), the contents of pw_name will
  be the same "MGR.BIXBY".
 
 Hm.  And what is returned in pw_uid?

A valid numeric uid.

 I think you are getting burnt by initdb's attempt to assign the postgres
 superuser's numeric ID to be the same as the Unix userid number of the
 user running initdb.  Look at the uses of pg_id in the initdb script,
 and experiment with running pg_id by hand to see what it produces.

pg_id without parameters returns uid=484(MGR.BIXBY), which matches what I get
from MPE's native id command.

The pg_id -n and -u options behave as expected.

 A quick and dirty experiment would be to run "initdb -i 42" (or
 whatever) to override the result of pg_id.  If that succeeds, the
 real answer may be that pg_id needs a patch to behave reasonably on MPE.

I just hacked src/test/regress/run_check.sh to invoke initdb with --show.  The
user name/id is behaving "correctly" for an MPE machine:

SUPERUSERNAME:  MGR.BIXBY
SUPERUSERID:484

The initdb -i option will only override the SUPERUSERID, but it's already
correct.
-- 
[EMAIL PROTECTED]
Remainder of .sig suppressed to conserve scarce California electrons...

---(end of broadcast)---
TIP 6: Have you searched our list archives?

http://www.postgresql.org/search.mpl



Re: [HACKERS] porting question: funky uid names?

2001-03-09 Thread Mark Bixby



Tom Lane wrote:
 But none of these fully explain Mark's problem.  If we knew where the
 "syntax error 25 : - ." came from, we'd be closer to an answer.

After scanning the source for "syntax error", line 126 of
backend/bootstrap/bootscanner.l seems to be the likely culprit.
-- 
[EMAIL PROTECTED]
Remainder of .sig suppressed to conserve scarce California electrons...

---(end of broadcast)---
TIP 4: Don't 'kill -9' the postmaster



Re: [HACKERS] porting question: funky uid names?

2001-03-09 Thread Mark Bixby



Tom Lane wrote:
 
 Mark Bixby [EMAIL PROTECTED] writes:
  I just hacked src/test/regress/run_check.sh to invoke initdb with
  --show.  The user name/id is behaving "correctly" for an MPE machine:
 
  SUPERUSERNAME:  MGR.BIXBY
  SUPERUSERID:484
 
 Okay, so much for that theory.
 
 Can you set a breakpoint at elog() and provide a stack backtrace so we
 can see where this is happening?  I can't think where else in the code
 might be affected, but obviously the problem is somewhere else...

Here's a stack trace from the native MPE debugger (we don't have gdb support
yet).  I'm assuming that all results after the initdb failure should be
suspect, and that's possibly why pg_log wasn't created.  I haven't tried
troubleshooting the pg_log problem yet until after I resolve the uid names
issue.

=== Initializing check database instance   
DEBUG/iX C.25.06 

DEBUG Intrinsic at: 129.0009d09c ?$START$
$1 ($4b) nmdebug  b elog
added: NM[1] PROG 129.001ad7d8 elog
$2 ($4b) nmdebug  c
Break at: NM[1] PROG 129.001ad7d8 elog
$3 ($4b) nmdebug  tr
 PC=129.001ad7d8 elog
* 0) SP=41843ef0 RP=129.0018f7a4 pg_atoi+$b4
  1) SP=41843ef0 RP=129.00182994 int4in+$14
  2) SP=41843e70 RP=129.0018296c ?int4in+$8
   export stub: 129.001aed28 $CODE$+$138
  3) SP=41843e30 RP=129.001af428 fmgr+$98
  4) SP=41843db0 RP=129.000c3354 InsertOneValue+$264
  5) SP=41843cf0 RP=129.000c05d4 Int_yyparse+$924
  6) SP=41843c70 RP=129. 
 (end of NM stack)
$4 ($4b) nmdebug  c
=== Starting regression postmaster 
Regression postmaster is running - PID=125239393 PGPORT=65432
=== Creating regression database...
NOTICE:  mdopen: couldn't open
/BIXBY/PUB/src/postgresql-7.0.3-mpe/src/test/regr
ess/tmp_check/data/pg_log: No such file or directory
NOTICE:  mdopen: couldn't open
/BIXBY/PUB/src/postgresql-7.0.3-mpe/src/test/regr
ess/tmp_check/data/pg_log: No such file or directory
psql: FATAL 1:  cannot open relation pg_log
createdb: database creation failed
createdb failed
make: *** [runcheck] Error 1
-- 
[EMAIL PROTECTED]
Remainder of .sig suppressed to conserve scarce California electrons...

---(end of broadcast)---
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to [EMAIL PROTECTED] so that your
message can get through to the mailing list cleanly



Re: [HACKERS] porting question: funky uid names?

2001-03-09 Thread Mark Bixby



Mark Bixby wrote:
 It seems that plpgsql.sl didn't get built.  Might be an autoconf issue, since
 quite frequently config scripts don't know about shared libraries on MPE.  I
 will investigate this further.

Ah.  I found src/Makefile.shlib and added the appropriate stuff.

Woohoo!  We have test output!  The regression README was clear about how some
platform dependent errors can be expected, and how to code for these
differences in the expected outputs.

Now I'm off to examine the individual failures

MULTIBYTE=;export MULTIBYTE; \
/bin/sh ./run_check.sh hppa1.0-hp-mpeix
=== Removing old ./tmp_check directory ... 
=== Create ./tmp_check directory   
=== Installing new build into ./tmp_check  
=== Initializing check database instance   
=== Starting regression postmaster 
Regression postmaster is running - PID=125042790 PGPORT=65432
=== Creating regression database...
CREATE DATABASE
=== Installing PL/pgSQL... 
=== Running regression queries...  
parallel group1 (12 tests)   ...
 boolean  text  name  oid  float4  varchar  char  int4  int2  float8  int8 
nume
ric 
   test boolean  ...  ok
   test char ...  ok
   test name ...  ok
   test varchar  ...  ok
   test text ...  ok
   test int2 ...  ok
   test int4 ...  ok
   test int8 ...  ok
   test oid  ...  ok
   test float4   ...  ok
   test float8   ...  FAILED
   test numeric  ...  ok
sequential test strings  ...  ok
sequential test numerology   ...  ok
parallel group2 (15 tests)   ...
 comments  path  polygon  lseg  point  box  reltime  interval  tinterval 
circle
  inet  timestamp  type_sanity  opr_sanity  oidjoins 
   test point...  ok
   test lseg ...  ok
   test box  ...  ok
   test path ...  ok
   test polygon  ...  ok
   test circle   ...  ok
   test interval ...  FAILED
   test timestamp...  FAILED
   test reltime  ...  ok
   test tinterval...  ok
   test inet ...  ok
   test comments ...  ok
   test oidjoins ...  ok
   test type_sanity  ...  ok
   test opr_sanity   ...  ok
sequential test abstime  ...  ok
sequential test geometry ...  FAILED
sequential test horology ...  FAILED
sequential test create_function_1...  ok
sequential test create_type  ...  ok
sequential test create_table ...  ok
sequential test create_function_2...  ok
sequential test copy ...  ok
parallel group3 (6 tests)...
 create_aggregate  create_operator  triggers  constraints  create_misc 
create_i
ndex 
   test constraints  ...  ok
   test triggers ...  ok
   test create_misc  ...  ok
   test create_aggregate ...  ok
   test create_operator  ...  ok
   test create_index ...  ok
sequential test create_view  ...  ok
sequential test sanity_check ...  ok
sequential test errors   ...  ok
sequential test select   ...  ok
parallel group4 (16 tests)   ...
 arrays  union  select_having  transactions  portals  join  select_implicit 
sel
ect_distinct_on  subselect  case  random  select_distinct  select_into 
aggregat
es  hash_index  btree_index 
   test select_into  ...  ok
   test select_distinct  ...  ok
   test select_distinct_on   ...  ok
   test select_implicit  ...  ok
   test select_having...  ok
   test subselect...  ok
   test union...  ok
   test case ...  ok
   test join ...  ok
   test aggregates   ...  ok
   test transactions ...  ok
   test random   ...  ok
   test portals  ...  ok
   test arrays   ...  ok
   test btree_index  ...  ok
   test hash_index   ...  ok
sequential test misc ...  ok
parallel group5 (5 tests)...
 portals_p2  foreign_key  rules  alter_table  select_views 
   test select_views ...  ok
   test alter_table  ...  ok