Text  |   XML   |   Visible Warnings:

pvm3.4.6 : pvm3.4.6 analysis 2 : Null Pointer Dereference  at pvmd.c:5586

Categories: LANG.MEM.NPD CWE:476
Warning ID: 22071.28900
Procedure: slave_config
Trace: view
Modified: Thu Nov 26 11:28:25 2009   show details
 
Priority: None
State: None
Finding: None
Owner: None
  edit properties

Legend [ X ]
Warning Location
Contributes
Parse Error
Other Warning
Two or More Loop Iterations
On Execution Path
Comment
Macro
Preprocessor
Include
Keyword
Preprocessed Away

Source  |  Language: C Hide Legend     
ProblemLineSource
   /kat0/fletcher/SATE/2010/pvm3/src/pvmd.c
   Enter slave_config
 5449 slave_config(hn, argc, argv) 
 5450         char *hn;
 5451         int argc;
 5452         char **argv;
 5453 {
 5454         int lh;                 /* local host index */ 
 5455         int mh;                 /* master host index */ 
 5456         struct hostd *hp;
 5457         int i, j;
 5458         int ac;
 5459         int ms = 0;             /* manual (humanoid) startup */ 
 5460 #ifndef WIN32 
 5461         int dof = 1;            /* fork, exit parent (default) */ 
 5462 #else 
 5463         int dof = 0; 
 5464 #endif 
 5465         int bad = 0;
 5466         char *p;
 5467         char *s;
 5468  
 5469         for (i = j = ac = 1; i < argc; i++) {
 5470                 if (argv[i][0] == '-') {
 5471                         switch (argv[i][1]) {
 5472  
 5473                         case 'S': 
 5474                                 ms = 1;
 5475                                 break;
 5476  
 5477                         case 'f': 
 5478                                 dof = 0;
 5479                                 break;
 5480  
 5481                         default: 
 5482                                 pvmlogprintf("slave_config() unknown switch: %s\n", argv[i]);
 5483                                 bad++;
 5484                         }
 5485  
 5486                 } else {
 5487                         argv[j++] = argv[i];
 5488                         ac++;
 5489                 }
 5490         }
 5491         argc = ac;
 5492  
 5493         if (bad || argc != 6) {
 5494                 pvmlogerror("slave_config: bad args\n");
 5495                 pvmbailout(0);
 5496         }
 5497  
 5498         mh = atoi(argv[1]);
 5499         lh = atoi(argv[4]);
 5500         hosts = ht_new(1);
 5501         hosts->ht_serial = 1;
 5502         hosts->ht_master = mh;
 5503         hosts->ht_cons = mh;
 5504         hosts->ht_local = lh;
 5505  
 5506         hp = hd_new(mh);
 5507         hp->hd_name = STRALLOC("?");   /* Null Pointer Dereference (ID: 262.28915) */
 5508         hex_inadport(argv[2], &hp->hd_sad);
 5509         hp->hd_mtu = atoi(argv[3]);
 5510         ht_insert(hosts, hp);
 5511         hd_unref(hp);
 5512  
 5513         hp = hd_new(0);
 5514         hp->hd_name = STRALLOC("pvmd'");   /* Null Pointer Dereference (ID: 261.28913) */
 5515         hp->hd_arch = STRALLOC(myarchname);   /* Null Pointer Dereference (ID: 260.28911) */
 5516         hp->hd_mtu = pvmudpmtu;
 5517         hp->hd_dsig = pvmmydsig;
 5518         hex_inadport(argv[5], &hp->hd_sad);
 5519         ht_insert(hosts, hp);
 5520         hd_unref(hp);
 5521  
 5522         hp = hd_new(lh);
 5523         hp->hd_name = STRALLOC(hn);   /* Null Pointer Dereference (ID: 259.28909) */
 5524         hp->hd_arch = STRALLOC(myarchname);   /* Null Pointer Dereference (ID: 260.28908) */
 5525         hp->hd_mtu = pvmudpmtu;
 5526         hp->hd_dsig = pvmmydsig;
 5527         hex_inadport(argv[5], &hp->hd_sad);
 5528         ht_insert(hosts, hp);
 5529         hd_unref(hp);
 5530  
 5531         if (i = mksocs()) {
 5532                 if (i == 2) {
 5533                         printf("PvmDupHost\n");
 5534                         fflush(stdout);
 5535                 }
 5536                 pvmbailout(0);
 5537         }
 5538  
 5539         printf("ddpro<%d> arch<%s> ip<%s> mtu<%d> dsig<%d>\n",
 5540                 DDPROTOCOL,
 5541                 myarchname,
 5542                 inadport_hex(&hp->hd_sad),
 5543                 pvmudpmtu,
 5544                 pvmmydsig);
 5545         fflush(stdout);
 5546  
 5547 #ifndef WIN32 
 5548  
 5549 #if !defined(IMA_OS2) && !defined(CYGWIN)
 5550         if (!ms)
 5551                 (void)read(0, (char*)&i, 1);
 5552 #endif 
 5553  
 5554         if (dof) {
 5555                 if (i = fork()) {
 5556                         if (i == -1)
 5557                                 pvmlogperror("slave_config() fork");
 5558                         exit(0);
 5559                 }
 5560  
 5561         /* close everything but our sockets */ 
 5562  
 5563                 for (i = getdtablesize(); --i >= 0; )
 5564 /* XXX don't like this - hard to maintain */ 
 5565                         if (i != netsock && i != loclsock && i != log_fd)
 5566                                 (void)close(i);
 5567         }
 5568  
 5569         /* reopen 0, 1, 2*/ 
 5570  
 5571         (void)open("/dev/null", O_RDONLY, 0);
 5572         (void)open("/dev/null", O_WRONLY, 0);   /* File System Race Condition (ID: 22074.28903) */
 5573         (void)dup2(1, 2);
 5574  
 5575 #endif 
 5576  
 5577         pvmsetlog(2);
 5578  
 5579         if ((p = getenv("PVM_PATH")))
 5580                 s = STRALLOC(p);   /* Null Pointer Dereference (ID: 22072.28901) */
 5581         else 
 5582                 s = STRALLOC(DEFBINDIR);   /* Null Pointer Dereference (ID: 22073.28902) */
 5583         epaths = colonsep(varsub(s));
 5584         PVM_FREE(s);
 5585  
true5586         s = STRALLOC(DEFDEBUGGER);     /* Null Pointer Dereference */
Preconditions
argc >= 3
&$unknown_726434 != 0
&$unknown_726435 != 0
$unknown_726437 != 58
((char*)&$heap_116770)[20] != 0
((char*)&$heap_116770)[96] >= 0
Postconditions
*log_ff->_flags' is freed
((char*)$heap_116770)[20]' is freed
*stdout' is allocated by fopen
bytes_before(stdout)' = 0
ac' = 6
argc' = 6
bad' = 0
strlen(&buf[0])' = 17
buf[17]' = 0
dof' = &$unknown_726435
epaths' = &$heap_116776
errno' != 0
$heap_116753' = 1
bytes_after(&$heap_116753)' = 32
$heap_116753' is allocated by malloc
$heap_116753' is allocated
bytes_before(&$heap_116753)' = 0
((char*)&$heap_116753)[16]' = $input_12
((char*)&$heap_116753)[20]' = $input_75452
((char*)&$heap_116753)[8]' = ((char*)&$heap_116753)[8] + 1
((char*)&$heap_116753)[12]' = $input_12
bytes_after(&$heap_116755)' = 120
$heap_116755' is allocated by malloc
$heap_116755' is allocated
bytes_before(&$heap_116755)' = 0
((char*)&$heap_116755)[16]' = 0
((char*)&$heap_116755)[20]' = 0
((char*)&$heap_116755)[8]' = 0
((char*)&$heap_116755)[116]' = 0
((char*)&$heap_116755)[12]' = 0
bytes_after(&$heap_116756)' = 120
$heap_116756' is allocated by malloc
$heap_116756' is allocated
bytes_before(&$heap_116756)' = 0
((char*)&$heap_116756)[16]' = 0
((char*)&$heap_116756)[20]' = 0
((char*)&$heap_116756)[8]' = 0
((char*)&$heap_116756)[116]' = 0
((char*)&$heap_116756)[12]' = 0
$heap_116757' = 1
bytes_after(&$heap_116757)' = 124
$heap_116757' is allocated by malloc
bytes_before(&$heap_116757)' = 0
((char*)&$heap_116757)[52]' = $input_75460
((char*)&$heap_116757)[56]' = 2
((char*)&$heap_116757)[72]' = 1
((char*)&$heap_116757)[76]' = 1
((char*)&$heap_116757)[80]' = &$heap_116755
((char*)&$heap_116757)[8]' = &$heap_116759
((char*)&$heap_116757)[84]' = &$heap_116758
((char*)&$heap_116757)[92]' = &$heap_116756
((char*)&$heap_116757)[100]' = 1
((char*)&$heap_116757)[108]' = 1000
((char*)&$heap_116757)[112]' = 0
$heap_116758' = &$heap_116758
bytes_after(&$heap_116758)' = 120
$heap_116758' is allocated by malloc
$heap_116758' is allocated
bytes_before(&$heap_116758)' = 0
((char*)&$heap_116758)[16]' = 0
((char*)&$heap_116758)[20]' = 0
((char*)&$heap_116758)[4]' = &$heap_116758
((char*)&$heap_116758)[8]' = 0
((char*)&$heap_116758)[116]' = 0
((char*)&$heap_116758)[12]' = 0
$heap_116759' = 63
bytes_after(&$heap_116759)' = 2
$heap_116759' is allocated by malloc
$heap_116759' is allocated
bytes_before(&$heap_116759)' = 0
strlen(&$heap_116759)' = 1
tocttou($heap_116759)' = tocttou(#string176)
bytes_after(&$heap_116760)' = 120
$heap_116760' is allocated by malloc
$heap_116760' is allocated
bytes_before(&$heap_116760)' = 0
((char*)&$heap_116760)[16]' = 0
((char*)&$heap_116760)[20]' = 0
((char*)&$heap_116760)[8]' = 0
((char*)&$heap_116760)[116]' = 0
((char*)&$heap_116760)[12]' = 0
$heap_116761' = 1
bytes_after(&$heap_116761)' = 124
$heap_116761' is allocated by malloc
bytes_before(&$heap_116761)' = 0
((char*)&$heap_116761)[44]' = pvmmydsig
((char*)&$heap_116761)[52]' = pvmudpmtu
((char*)&$heap_116761)[56]' = 2
((char*)&$heap_116761)[72]' = 1
((char*)&$heap_116761)[76]' = 1
((char*)&$heap_116761)[80]' = &$heap_116762
((char*)&$heap_116761)[8]' = &$heap_116765
((char*)&$heap_116761)[84]' = &$heap_116764
((char*)&$heap_116761)[92]' = &$heap_116760
((char*)&$heap_116761)[100]' = 1
((char*)&$heap_116761)[108]' = 1000
((char*)&$heap_116761)[112]' = &$heap_116763
((char*)&$heap_116761)[12]' = &$heap_116766
$heap_116762' = &$heap_116762
bytes_after(&$heap_116762)' = 120
$heap_116762' is allocated by malloc
$heap_116762' is allocated
bytes_before(&$heap_116762)' = 0
((char*)&$heap_116762)[16]' = 0
((char*)&$heap_116762)[20]' = 0
((char*)&$heap_116762)[4]' = &$heap_116762
((char*)&$heap_116762)[8]' = 0
((char*)&$heap_116762)[116]' = 0
((char*)&$heap_116762)[12]' = 0
bytes_after(&$heap_116763)' = 20
$heap_116763' is allocated by malloc
$heap_116763' is allocated
bytes_before(&$heap_116763)' = 0
((char*)&$heap_116763)[16]' = 0
((char*)&$heap_116763)[8]' = 0
((char*)&$heap_116763)[12]' = 0
bytes_after(&$heap_116764)' = 120
$heap_116764' is allocated by malloc
$heap_116764' is allocated
bytes_before(&$heap_116764)' = 0
((char*)&$heap_116764)[16]' = 0
((char*)&$heap_116764)[20]' = 0
((char*)&$heap_116764)[8]' = 0
((char*)&$heap_116764)[116]' = 0
((char*)&$heap_116764)[12]' = 0
$heap_116765' = 112
bytes_after(&$heap_116765)' = 6
$heap_116765' is allocated by malloc
$heap_116765' is allocated
bytes_before(&$heap_116765)' = 0
strlen(&$heap_116765)' = 5
tocttou($heap_116765)' = tocttou(#string167)
$heap_116766' = *myarchname
bytes_after(&$heap_116766)' = strlen(myarchname) + 1
$heap_116766' is allocated by malloc
$heap_116766' is allocated
bytes_before(&$heap_116766)' = 0
strlen(&$heap_116766)' = strlen(myarchname)
tocttou($heap_116766)' = tocttou(*myarchname)
bytes_after(&$heap_116767)' = 120
$heap_116767' is allocated by malloc
bytes_before(&$heap_116767)' = 0
((char*)&$heap_116767)[16]' = 0
((char*)&$heap_116767)[20]' = 0
((char*)&$heap_116767)[116]' = 0
bytes_after(&$heap_116768)' = 120
$heap_116768' is allocated by malloc
bytes_before(&$heap_116768)' = 0
$heap_116769' = &$heap_116769
bytes_after(&$heap_116769)' = 120
$heap_116769' is allocated by malloc
bytes_before(&$heap_116769)' = 0
((char*)&$heap_116769)[16]' = 0
((char*)&$heap_116769)[20]' = 0
((char*)&$heap_116769)[4]' = &$heap_116769
((char*)&$heap_116769)[116]' = 0
$heap_116770' = 0
bytes_after(&$heap_116770)' = 124
$heap_116770' is allocated by malloc
$heap_116770' is freed
bytes_before(&$heap_116770)' = 0
((char*)&$heap_116770)[44]' = pvmmydsig
((char*)&$heap_116770)[52]' = pvmudpmtu
((char*)&$heap_116770)[56]' = 2
((char*)&$heap_116770)[72]' = 1
((char*)&$heap_116770)[76]' = 1
((char*)&$heap_116770)[80]' = &$heap_116768
((char*)&$heap_116770)[8]' = &$heap_116772
((char*)&$heap_116770)[84]' = &$heap_116769
((char*)&$heap_116770)[92]' = &$heap_116767
((char*)&$heap_116770)[100]' = 1
((char*)&$heap_116770)[108]' = 1000
((char*)&$heap_116770)[112]' = &$heap_116771
((char*)&$heap_116770)[12]' = &$heap_116773
bytes_after(&$heap_116771)' = 20
$heap_116771' is allocated by malloc
bytes_before(&$heap_116771)' = 0
((char*)&$heap_116771)[16]' = 0
((char*)&$heap_116771)[8]' = 0
((char*)&$heap_116771)[12]' = 0
$heap_116772' = *hn
bytes_after(&$heap_116772)' = strlen(hn) + 1
$heap_116772' is allocated by malloc
bytes_before(&$heap_116772)' = 0
strlen(&$heap_116772)' = strlen(hn)
tocttou($heap_116772)' = tocttou(*hn)
$heap_116773' = *myarchname
bytes_after(&$heap_116773)' = strlen(myarchname) + 1
$heap_116773' is allocated by malloc
bytes_before(&$heap_116773)' = 0
strlen(&$heap_116773)' = strlen(myarchname)
tocttou($heap_116773)' = tocttou(*myarchname)
$heap_116774' is allocated by open
$heap_116774' is allocated
$heap_116775' = 36
bytes_after(&$heap_116775)' = 49
$heap_116775' is allocated by malloc
$heap_116775' is freed
bytes_before(&$heap_116775)' = 0
tocttou($heap_116775)' = tocttou(#string168)
$heap_116776' = &$unknown_726437
$heap_116776' is allocated by malloc
$heap_116776' is allocated
bytes_before(&$heap_116776)' = 0
((char*)&$heap_116776)[4]' = 0
hosts' = &$heap_116753
hp' = &$heap_116770
i' = -1
lh' = $input_75452
log_fd' = -1
log_ff' = 0
mh' = $input_12
ms' = &$unknown_726434
p' = 0
s' = &$heap_116775




Change Warning 22071.28900 : Null Pointer Dereference

Priority:
State:
Finding:
Owner:
Note: