Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
5261bf97
Commit
5261bf97
authored
22 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Make macaddr_in reject trailing garbage (except whitespace).
Per gripe from Patrick Welche, 13-Oct-2002.
parent
f94e5bde
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/backend/utils/adt/mac.c
+18
-9
18 additions, 9 deletions
src/backend/utils/adt/mac.c
with
18 additions
and
9 deletions
src/backend/utils/adt/mac.c
+
18
−
9
View file @
5261bf97
/*
/*
* PostgreSQL type definitions for MAC addresses.
* PostgreSQL type definitions for MAC addresses.
*
*
* $Header: /cvsroot/pgsql/src/backend/utils/adt/mac.c,v 1.2
6
2002/
09/04 20:31:28 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/mac.c,v 1.2
7
2002/
10/13 15:39:17 tgl
Exp $
*/
*/
#include
"postgres.h"
#include
"postgres.h"
...
@@ -35,19 +35,28 @@ macaddr_in(PG_FUNCTION_ARGS)
...
@@ -35,19 +35,28 @@ macaddr_in(PG_FUNCTION_ARGS)
d
,
d
,
e
,
e
,
f
;
f
;
char
junk
[
2
];
int
count
;
int
count
;
count
=
sscanf
(
str
,
"%x:%x:%x:%x:%x:%x"
,
&
a
,
&
b
,
&
c
,
&
d
,
&
e
,
&
f
);
/* %1s matches iff there is trailing non-whitespace garbage */
count
=
sscanf
(
str
,
"%x:%x:%x:%x:%x:%x%1s"
,
&
a
,
&
b
,
&
c
,
&
d
,
&
e
,
&
f
,
junk
);
if
(
count
!=
6
)
if
(
count
!=
6
)
count
=
sscanf
(
str
,
"%x-%x-%x-%x-%x-%x"
,
&
a
,
&
b
,
&
c
,
&
d
,
&
e
,
&
f
);
count
=
sscanf
(
str
,
"%x-%x-%x-%x-%x-%x%1s"
,
&
a
,
&
b
,
&
c
,
&
d
,
&
e
,
&
f
,
junk
);
if
(
count
!=
6
)
if
(
count
!=
6
)
count
=
sscanf
(
str
,
"%2x%2x%2x:%2x%2x%2x"
,
&
a
,
&
b
,
&
c
,
&
d
,
&
e
,
&
f
);
count
=
sscanf
(
str
,
"%2x%2x%2x:%2x%2x%2x%1s"
,
&
a
,
&
b
,
&
c
,
&
d
,
&
e
,
&
f
,
junk
);
if
(
count
!=
6
)
if
(
count
!=
6
)
count
=
sscanf
(
str
,
"%2x%2x%2x-%2x%2x%2x"
,
&
a
,
&
b
,
&
c
,
&
d
,
&
e
,
&
f
);
count
=
sscanf
(
str
,
"%2x%2x%2x-%2x%2x%2x%1s"
,
&
a
,
&
b
,
&
c
,
&
d
,
&
e
,
&
f
,
junk
);
if
(
count
!=
6
)
if
(
count
!=
6
)
count
=
sscanf
(
str
,
"%2x%2x.%2x%2x.%2x%2x"
,
&
a
,
&
b
,
&
c
,
&
d
,
&
e
,
&
f
);
count
=
sscanf
(
str
,
"%2x%2x.%2x%2x.%2x%2x%1s"
,
&
a
,
&
b
,
&
c
,
&
d
,
&
e
,
&
f
,
junk
);
if
(
count
!=
6
)
if
(
count
!=
6
)
count
=
sscanf
(
str
,
"%2x%2x%2x%2x%2x%2x"
,
&
a
,
&
b
,
&
c
,
&
d
,
&
e
,
&
f
);
count
=
sscanf
(
str
,
"%2x%2x%2x%2x%2x%2x%1s"
,
&
a
,
&
b
,
&
c
,
&
d
,
&
e
,
&
f
,
junk
);
if
(
count
!=
6
)
if
(
count
!=
6
)
elog
(
ERROR
,
"macaddr_in: error in parsing
\"
%s
\"
"
,
str
);
elog
(
ERROR
,
"macaddr_in: error in parsing
\"
%s
\"
"
,
str
);
...
@@ -122,11 +131,11 @@ text_macaddr(PG_FUNCTION_ARGS)
...
@@ -122,11 +131,11 @@ text_macaddr(PG_FUNCTION_ARGS)
{
{
text
*
addr
=
PG_GETARG_TEXT_P
(
0
);
text
*
addr
=
PG_GETARG_TEXT_P
(
0
);
Datum
result
;
Datum
result
;
char
str
[
1
8
];
char
str
[
1
00
];
int
len
;
int
len
;
len
=
(
VARSIZE
(
addr
)
-
VARHDRSZ
);
len
=
(
VARSIZE
(
addr
)
-
VARHDRSZ
);
if
(
len
>=
18
)
if
(
len
>=
sizeof
(
str
)
)
elog
(
ERROR
,
"Text is too long to convert to MAC address"
);
elog
(
ERROR
,
"Text is too long to convert to MAC address"
);
memcpy
(
str
,
VARDATA
(
addr
),
len
);
memcpy
(
str
,
VARDATA
(
addr
),
len
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment