Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
e72ca17f
Commit
e72ca17f
authored
Jul 12, 1996
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes for several potential null pointer dereferences
submitted by: Paul "Shag" Walmsley <ccshag@cclabs.missouri.edu>
parent
950b6ab0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
140 additions
and
15 deletions
+140
-15
src/interfaces/libpq/fe-connect.c
src/interfaces/libpq/fe-connect.c
+53
-5
src/interfaces/libpq/fe-exec.c
src/interfaces/libpq/fe-exec.c
+87
-10
No files found.
src/interfaces/libpq/fe-connect.c
View file @
e72ca17f
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.
1.1.1 1996/07/09 06:22:1
7 scrappy Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.
2 1996/07/12 04:53:5
7 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -70,7 +70,12 @@ PQsetdb(char *pghost, char* pgport, char* pgoptions, char* pgtty, char* dbName)
char
*
tmp
;
conn
=
(
PGconn
*
)
malloc
(
sizeof
(
PGconn
));
if
(
!
conn
)
{
fprintf
(
stderr
,
"FATAL: pqsetdb() -- unable to allocate memory for a PGconn"
);
return
(
PGconn
*
)
NULL
;
}
conn
->
Pfout
=
NULL
;
conn
->
Pfin
=
NULL
;
conn
->
Pfdebug
=
NULL
;
...
...
@@ -307,9 +312,13 @@ closePGconn(PGconn *conn)
void
PQfinish
(
PGconn
*
conn
)
{
if
(
conn
->
status
==
CONNECTION_OK
)
closePGconn
(
conn
);
freePGconn
(
conn
);
if
(
!
conn
)
{
fprintf
(
stderr
,
"PQfinish() -- pointer to PGconn is null"
);
}
else
{
if
(
conn
->
status
==
CONNECTION_OK
)
closePGconn
(
conn
);
freePGconn
(
conn
);
}
}
/* PQreset :
...
...
@@ -319,8 +328,12 @@ PQfinish(PGconn *conn)
void
PQreset
(
PGconn
*
conn
)
{
if
(
!
conn
)
{
fprintf
(
stderr
,
"PQreset() -- pointer to PGconn is null"
);
}
else
{
closePGconn
(
conn
);
conn
->
status
=
connectDB
(
conn
);
}
}
/*
...
...
@@ -395,42 +408,77 @@ startup2PacketBuf(StartupInfo* s, PacketBuf* res)
char
*
PQdb
(
PGconn
*
conn
)
{
if
(
!
conn
)
{
fprintf
(
stderr
,
"PQdb() -- pointer to PGconn is null"
);
return
(
char
*
)
NULL
;
}
return
conn
->
dbName
;
}
char
*
PQhost
(
PGconn
*
conn
)
{
if
(
!
conn
)
{
fprintf
(
stderr
,
"PQhost() -- pointer to PGconn is null"
);
return
(
char
*
)
NULL
;
}
return
conn
->
pghost
;
}
char
*
PQoptions
(
PGconn
*
conn
)
{
if
(
!
conn
)
{
fprintf
(
stderr
,
"PQoptions() -- pointer to PGconn is null"
);
return
(
char
*
)
NULL
;
}
return
conn
->
pgoptions
;
}
char
*
PQtty
(
PGconn
*
conn
)
{
if
(
!
conn
)
{
fprintf
(
stderr
,
"PQtty() -- pointer to PGconn is null"
);
return
(
char
*
)
NULL
;
}
return
conn
->
pgtty
;
}
char
*
PQport
(
PGconn
*
conn
)
{
if
(
!
conn
)
{
fprintf
(
stderr
,
"PQport() -- pointer to PGconn is null"
);
return
(
char
*
)
NULL
;
}
return
conn
->
pgport
;
}
ConnStatusType
PQstatus
(
PGconn
*
conn
)
{
if
(
!
conn
)
{
fprintf
(
stderr
,
"PQstatus() -- pointer to PGconn is null"
);
return
CONNECTION_BAD
;
}
return
conn
->
status
;
}
char
*
PQerrorMessage
(
PGconn
*
conn
)
{
if
(
!
conn
)
{
fprintf
(
stderr
,
"PQerrorMessage() -- pointer to PGconn is null"
);
return
(
char
*
)
NULL
;
}
return
conn
->
errorMessage
;
}
...
...
src/interfaces/libpq/fe-exec.c
View file @
e72ca17f
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.
1.1.1 1996/07/09 06:22:17
scrappy Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.
2 1996/07/12 04:53:59
scrappy Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -358,12 +358,20 @@ PQexec(PGconn* conn, char* query)
char
cmdStatus
[
MAX_MESSAGE_LEN
];
char
pname
[
MAX_MESSAGE_LEN
];
/* portal name */
PGnotify
*
newNotify
;
FILE
*
Pfin
=
conn
->
Pfin
;
FILE
*
Pfout
=
conn
->
Pfout
;
FILE
*
Pfdebug
=
conn
->
Pfdebug
;
FILE
*
Pfin
,
*
Pfout
,
*
Pfdebug
;
pname
[
0
]
=
'\0'
;
if
(
!
conn
)
return
NULL
;
if
(
!
query
)
{
sprintf
(
conn
->
errorMessage
,
"PQexec() -- query pointer is null."
);
return
NULL
;
}
Pfin
=
conn
->
Pfin
;
Pfout
=
conn
->
Pfout
;
Pfdebug
=
conn
->
Pfdebug
;
/*clear the error string */
conn
->
errorMessage
[
0
]
=
'\0'
;
...
...
@@ -500,6 +508,9 @@ PGnotify*
PQnotifies
(
PGconn
*
conn
)
{
Dlelem
*
e
;
if
(
!
conn
)
return
NULL
;
if
(
conn
->
status
!=
CONNECTION_OK
)
return
NULL
;
/* RemHead returns NULL if list is empy */
...
...
@@ -531,6 +542,8 @@ int
PQgetline
(
PGconn
*
conn
,
char
*
s
,
int
maxlen
)
{
int
c
=
'\0'
;
if
(
!
conn
)
return
EOF
;
if
(
!
conn
->
Pfin
||
!
s
||
maxlen
<=
1
)
return
(
EOF
);
...
...
@@ -561,7 +574,7 @@ PQgetline(PGconn *conn, char *s, int maxlen)
void
PQputline
(
PGconn
*
conn
,
char
*
s
)
{
if
(
conn
->
Pfout
)
{
if
(
conn
&&
(
conn
->
Pfout
)
)
{
(
void
)
fputs
(
s
,
conn
->
Pfout
);
fflush
(
conn
->
Pfout
);
}
...
...
@@ -580,8 +593,12 @@ int
PQendcopy
(
PGconn
*
conn
)
{
char
id
;
FILE
*
Pfin
=
conn
->
Pfin
;
FILE
*
Pfdebug
=
conn
->
Pfdebug
;
FILE
*
Pfin
,
*
Pfdebug
;
if
(
!
conn
)
return
(
int
)
NULL
;
Pfin
=
conn
->
Pfin
;
Pfdebug
=
conn
->
Pfdebug
;
if
(
(
id
=
pqGetc
(
Pfin
,
Pfdebug
))
>
0
)
return
(
0
);
...
...
@@ -836,12 +853,16 @@ PQfn(PGconn *conn,
PQArgBlock
*
args
,
int
nargs
)
{
FILE
*
Pfin
=
conn
->
Pfin
;
FILE
*
Pfout
=
conn
->
Pfout
;
FILE
*
Pfdebug
=
conn
->
Pfdebug
;
FILE
*
Pfin
,
*
Pfout
,
*
Pfdebug
;
int
id
;
int
i
;
if
(
!
conn
)
return
NULL
;
Pfin
=
conn
->
Pfin
;
Pfout
=
conn
->
Pfout
;
Pfdebug
=
conn
->
Pfdebug
;
/* clear the error string */
conn
->
errorMessage
[
0
]
=
'\0'
;
...
...
@@ -916,18 +937,33 @@ PQfn(PGconn *conn,
ExecStatusType
PQresultStatus
(
PGresult
*
res
)
{
if
(
!
res
)
{
fprintf
(
stderr
,
"PQresultStatus() -- pointer to PQresult is null"
);
return
PGRES_NONFATAL_ERROR
;
}
return
res
->
resultStatus
;
}
int
PQntuples
(
PGresult
*
res
)
{
if
(
!
res
)
{
fprintf
(
stderr
,
"PQntuples() -- pointer to PQresult is null"
);
return
(
int
)
NULL
;
}
return
res
->
ntups
;
}
int
PQnfields
(
PGresult
*
res
)
{
if
(
!
res
)
{
fprintf
(
stderr
,
"PQnfields() -- pointer to PQresult is null"
);
return
(
int
)
NULL
;
}
return
res
->
numAttributes
;
}
...
...
@@ -937,6 +973,12 @@ PQnfields(PGresult *res)
char
*
PQfname
(
PGresult
*
res
,
int
field_num
)
{
if
(
!
res
)
{
fprintf
(
stderr
,
"PQfname() -- pointer to PQresult is null"
);
return
NULL
;
}
if
(
field_num
>
(
res
->
numAttributes
-
1
))
{
fprintf
(
stderr
,
"PQfname: ERROR! name of field %d(of %d) is not available"
,
...
...
@@ -957,6 +999,11 @@ PQfnumber(PGresult *res, char* field_name)
{
int
i
;
if
(
!
res
)
{
fprintf
(
stderr
,
"PQfnumber() -- pointer to PQresult is null"
);
return
-
1
;
}
if
(
field_name
==
NULL
||
field_name
[
0
]
==
'\0'
||
res
->
attDescs
==
NULL
)
...
...
@@ -973,6 +1020,11 @@ PQfnumber(PGresult *res, char* field_name)
Oid
PQftype
(
PGresult
*
res
,
int
field_num
)
{
if
(
!
res
)
{
fprintf
(
stderr
,
"PQftype() -- pointer to PQresult is null"
);
return
InvalidOid
;
}
if
(
field_num
>
(
res
->
numAttributes
-
1
))
{
fprintf
(
stderr
,
"PQftype: ERROR! type of field %d(of %d) is not available"
,
...
...
@@ -987,6 +1039,11 @@ PQftype(PGresult *res, int field_num)
int2
PQfsize
(
PGresult
*
res
,
int
field_num
)
{
if
(
!
res
)
{
fprintf
(
stderr
,
"PQfsize() -- pointer to PQresult is null"
);
return
(
int2
)
NULL
;
}
if
(
field_num
>
(
res
->
numAttributes
-
1
))
{
fprintf
(
stderr
,
"PQfsize: ERROR! size of field %d(of %d) is not available"
,
...
...
@@ -999,6 +1056,11 @@ PQfsize(PGresult *res, int field_num)
}
char
*
PQcmdStatus
(
PGresult
*
res
)
{
if
(
!
res
)
{
fprintf
(
stderr
,
"PQcmdStatus() -- pointer to PQresult is null"
);
return
NULL
;
}
return
res
->
cmdStatus
;
}
...
...
@@ -1008,6 +1070,11 @@ char* PQcmdStatus(PGresult *res) {
if not, return ""
*/
char
*
PQoidStatus
(
PGresult
*
res
)
{
if
(
!
res
)
{
fprintf
(
stderr
,
"PQoidStatus() -- pointer to PQresult is null"
);
return
NULL
;
}
if
(
!
res
->
cmdStatus
)
return
""
;
...
...
@@ -1031,6 +1098,11 @@ char* PQoidStatus(PGresult *res) {
char
*
PQgetvalue
(
PGresult
*
res
,
int
tup_num
,
int
field_num
)
{
if
(
!
res
)
{
fprintf
(
stderr
,
"PQgetvalue() -- pointer to PQresult is null"
);
return
NULL
;
}
if
(
tup_num
>
(
res
->
ntups
-
1
)
||
field_num
>
(
res
->
numAttributes
-
1
))
{
fprintf
(
stderr
,
...
...
@@ -1050,6 +1122,11 @@ PQgetvalue(PGresult *res, int tup_num, int field_num)
int
PQgetlength
(
PGresult
*
res
,
int
tup_num
,
int
field_num
)
{
if
(
!
res
)
{
fprintf
(
stderr
,
"PQgetlength() -- pointer to PQresult is null"
);
return
(
int
)
NULL
;
}
if
(
tup_num
>
(
res
->
ntups
-
1
)
||
field_num
>
(
res
->
numAttributes
-
1
))
{
fprintf
(
stderr
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment