Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
md5toc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Anders Blomdell
md5toc
Commits
0bb70d21
Commit
0bb70d21
authored
8 years ago
by
Anders Blomdell
Browse files
Options
Downloads
Patches
Plain Diff
Make nul terminated lines an option
parent
177dd5be
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
md5toc.c
+36
-23
36 additions, 23 deletions
md5toc.c
with
36 additions
and
23 deletions
md5toc.c
+
36
−
23
View file @
0bb70d21
...
@@ -31,7 +31,7 @@
...
@@ -31,7 +31,7 @@
#include
<inttypes.h>
#include
<inttypes.h>
#include
<time.h>
#include
<time.h>
#include
<sys/types.h>
#include
<sys/types.h>
#include
<
attr
/xattr.h>
#include
<
sys
/xattr.h>
#include
<fcntl.h>
/* Definition of AT_* constants */
#include
<fcntl.h>
/* Definition of AT_* constants */
#define XATTR_MD5SUM "trusted.md5sum.control.lth.se"
#define XATTR_MD5SUM "trusted.md5sum.control.lth.se"
...
@@ -41,6 +41,7 @@
...
@@ -41,6 +41,7 @@
#define FLAGS_CLEAR_XATTR 0x04
#define FLAGS_CLEAR_XATTR 0x04
#define FLAGS_MAX_AGE 0x08
#define FLAGS_MAX_AGE 0x08
#define FLAGS_VERBOSE 0x10
#define FLAGS_VERBOSE 0x10
#define FLAGS_NUL_TERMINATED 0x20
struct
options
{
struct
options
{
int
flags
;
int
flags
;
...
@@ -60,7 +61,8 @@ void usage()
...
@@ -60,7 +61,8 @@ void usage()
" -w, --write-xattr write MD5 extended attribute
\n
"
" -w, --write-xattr write MD5 extended attribute
\n
"
" -c, --clear-xattr remove MD5 extended attribute
\n
"
" -c, --clear-xattr remove MD5 extended attribute
\n
"
" -m, --max-age SECONDS max age of MD5 extended attribute
\n
"
" -m, --max-age SECONDS max age of MD5 extended attribute
\n
"
" -v, --verbose be verbose
\n
"
);
" -v, --verbose be verbose
\n
"
" --print0 nul terminated lines
\n
"
);
exit
(
1
);
exit
(
1
);
}
}
...
@@ -115,17 +117,20 @@ void trim(char *s) {
...
@@ -115,17 +117,20 @@ void trim(char *s) {
void
printentry
(
long
long
size
,
int
mtime
,
void
printentry
(
long
long
size
,
int
mtime
,
int
uid
,
int
gid
,
int
mode
,
int
uid
,
int
gid
,
int
mode
,
char
*
md5
,
char
kind
,
char
*
name
)
char
*
md5
,
char
kind
,
char
*
name
,
struct
options
*
options
)
{
{
trim
(
name
);
trim
(
name
);
if
(
name
[
0
])
{
if
(
name
[
0
])
{
/* Don't print empty filenames */
/* Don't print empty filenames */
if
(
kind
!=
'D'
)
{
if
(
kind
!=
'D'
)
{
printf
(
"%Ld:%d:%d:%d:%o:%s:%c:%s
\n
"
,
printf
(
"%Ld:%d:%d:%d:%o:%s:%c:%s%c"
,
size
,
mtime
,
uid
,
gid
,
mode
&
~
S_IFMT
,
md5
,
kind
,
name
);
size
,
mtime
,
uid
,
gid
,
mode
&
~
S_IFMT
,
md5
,
kind
,
name
,
(
options
->
flags
&
FLAGS_NUL_TERMINATED
)
?
'\0'
:
'\n'
);
}
else
{
}
else
{
printf
(
"::%d:%d:%o:%s:%c:%s
\n
"
,
printf
(
"::%d:%d:%o:%s:%c:%s%c"
,
uid
,
gid
,
mode
&
~
S_IFMT
,
md5
,
kind
,
name
);
uid
,
gid
,
mode
&
~
S_IFMT
,
md5
,
kind
,
name
,
(
options
->
flags
&
FLAGS_NUL_TERMINATED
)
?
'\0'
:
'\n'
);
}
}
}
}
}
}
...
@@ -214,7 +219,7 @@ void md5sum_file(char *filename, const struct stat64 buf,
...
@@ -214,7 +219,7 @@ void md5sum_file(char *filename, const struct stat64 buf,
if
(
options
->
flags
&
FLAGS_CLEAR_XATTR
)
{
if
(
options
->
flags
&
FLAGS_CLEAR_XATTR
)
{
if
(
removexattr
(
filename
,
XATTR_MD5SUM
)
!=
0
)
{
if
(
removexattr
(
filename
,
XATTR_MD5SUM
)
!=
0
)
{
if
(
errno
!=
ENOAT
TR
)
{
if
(
errno
!=
ENO
D
AT
A
)
{
fprintf
(
stderr
,
"Failed to remove xattr '%s'
\n
"
,
filename
);
fprintf
(
stderr
,
"Failed to remove xattr '%s'
\n
"
,
filename
);
}
}
}
else
if
(
options
->
flags
&
FLAGS_VERBOSE
)
{
}
else
if
(
options
->
flags
&
FLAGS_VERBOSE
)
{
...
@@ -240,7 +245,7 @@ void md5sum_file(char *filename, const struct stat64 buf,
...
@@ -240,7 +245,7 @@ void md5sum_file(char *filename, const struct stat64 buf,
recalc
=
0
;
recalc
=
0
;
}
else
{
}
else
{
if
(
removexattr
(
filename
,
XATTR_MD5SUM
)
!=
0
)
{
if
(
removexattr
(
filename
,
XATTR_MD5SUM
)
!=
0
)
{
if
(
errno
!=
ENOAT
TR
)
{
if
(
errno
!=
ENO
D
AT
A
)
{
fprintf
(
stderr
,
"Failed to remove xattr '%s' (mtime)
\n
"
,
filename
);
fprintf
(
stderr
,
"Failed to remove xattr '%s' (mtime)
\n
"
,
filename
);
}
}
}
else
if
(
options
->
flags
&
FLAGS_VERBOSE
)
{
}
else
if
(
options
->
flags
&
FLAGS_VERBOSE
)
{
...
@@ -258,7 +263,7 @@ void md5sum_file(char *filename, const struct stat64 buf,
...
@@ -258,7 +263,7 @@ void md5sum_file(char *filename, const struct stat64 buf,
if
(
options
->
flags
&
(
FLAGS_READ_XATTR
|
FLAGS_WRITE_XATTR
))
{
if
(
options
->
flags
&
(
FLAGS_READ_XATTR
|
FLAGS_WRITE_XATTR
))
{
/* Only remove md5sum for unreadble file if we are root */
/* Only remove md5sum for unreadble file if we are root */
if
(
removexattr
(
filename
,
XATTR_MD5SUM
)
!=
0
)
{
if
(
removexattr
(
filename
,
XATTR_MD5SUM
)
!=
0
)
{
if
(
errno
!=
ENOAT
TR
)
{
if
(
errno
!=
ENO
D
AT
A
)
{
fprintf
(
stderr
,
"Failed to remove xattr '%s' (unreadable)
\n
"
,
fprintf
(
stderr
,
"Failed to remove xattr '%s' (unreadable)
\n
"
,
filename
);
filename
);
}
}
...
@@ -294,7 +299,7 @@ void md5sum_file(char *filename, const struct stat64 buf,
...
@@ -294,7 +299,7 @@ void md5sum_file(char *filename, const struct stat64 buf,
}
}
printentry
(
buf
.
st_size
,
buf
.
st_mtime
,
printentry
(
buf
.
st_size
,
buf
.
st_mtime
,
buf
.
st_uid
,
buf
.
st_gid
,
buf
.
st_mode
,
buf
.
st_uid
,
buf
.
st_gid
,
buf
.
st_mode
,
md5
,
'F'
,
filename
);
md5
,
'F'
,
filename
,
options
);
out:
out:
;
;
}
}
...
@@ -316,13 +321,14 @@ void dofile(char *filename, dev_t *dev, struct options *options)
...
@@ -316,13 +321,14 @@ void dofile(char *filename, dev_t *dev, struct options *options)
fprintf
(
stderr
,
"Failed to lstat '%s'
\n
"
,
filename
);
fprintf
(
stderr
,
"Failed to lstat '%s'
\n
"
,
filename
);
}
else
if
(
*
dev
!=
buf
.
st_dev
)
{
}
else
if
(
*
dev
!=
buf
.
st_dev
)
{
fprintf
(
stderr
,
"skipping mountpoint '%s'
\n
"
,
filename
);
fprintf
(
stderr
,
"skipping mountpoint '%s'
\n
"
,
filename
);
}
else
if
(
filenameislegal
(
filename
))
{
}
else
if
(
options
->
flags
&
FLAGS_NUL_TERMINATED
||
filenameislegal
(
filename
))
{
if
(
S_ISREG
(
buf
.
st_mode
))
{
if
(
S_ISREG
(
buf
.
st_mode
))
{
md5sum_file
(
filename
,
buf
,
options
);
md5sum_file
(
filename
,
buf
,
options
);
}
else
if
(
S_ISDIR
(
buf
.
st_mode
))
{
}
else
if
(
S_ISDIR
(
buf
.
st_mode
))
{
if
(
!
(
options
->
flags
&
FLAGS_CLEAR_XATTR
))
{
if
(
!
(
options
->
flags
&
FLAGS_CLEAR_XATTR
))
{
printentry
(
0
,
0
,
buf
.
st_uid
,
buf
.
st_gid
,
buf
.
st_mode
,
printentry
(
0
,
0
,
buf
.
st_uid
,
buf
.
st_gid
,
buf
.
st_mode
,
""
,
'D'
,
filename
);
""
,
'D'
,
filename
,
options
);
}
}
if
(
filename
[
0
]
==
0
)
{
filename
=
"."
;
}
if
(
filename
[
0
]
==
0
)
{
filename
=
"."
;
}
dodir
(
filename
,
dev
,
options
);
dodir
(
filename
,
dev
,
options
);
...
@@ -344,7 +350,7 @@ void dofile(char *filename, dev_t *dev, struct options *options)
...
@@ -344,7 +350,7 @@ void dofile(char *filename, dev_t *dev, struct options *options)
}
}
printentry
(
buf
.
st_size
,
buf
.
st_mtime
,
printentry
(
buf
.
st_size
,
buf
.
st_mtime
,
buf
.
st_uid
,
buf
.
st_gid
,
buf
.
st_mode
,
buf
.
st_uid
,
buf
.
st_gid
,
buf
.
st_mode
,
md5
,
'L'
,
filename
);
md5
,
'L'
,
filename
,
options
);
}
}
free
(
link
);
free
(
link
);
}
else
{
}
else
{
...
@@ -359,7 +365,7 @@ void dofile(char *filename, dev_t *dev, struct options *options)
...
@@ -359,7 +365,7 @@ void dofile(char *filename, dev_t *dev, struct options *options)
}
}
printentry
(
buf
.
st_size
,
buf
.
st_mtime
,
printentry
(
buf
.
st_size
,
buf
.
st_mtime
,
buf
.
st_uid
,
buf
.
st_gid
,
buf
.
st_mode
,
buf
.
st_uid
,
buf
.
st_gid
,
buf
.
st_mode
,
""
,
kind
,
filename
);
""
,
kind
,
filename
,
options
);
}
}
}
}
out:
out:
...
@@ -382,6 +388,7 @@ int main(int argc, char *argv[])
...
@@ -382,6 +388,7 @@ int main(int argc, char *argv[])
{
"clear-xattr"
,
no_argument
,
NULL
,
'c'
},
{
"clear-xattr"
,
no_argument
,
NULL
,
'c'
},
{
"max-age"
,
required_argument
,
NULL
,
'm'
},
{
"max-age"
,
required_argument
,
NULL
,
'm'
},
{
"verbose"
,
no_argument
,
NULL
,
'v'
},
{
"verbose"
,
no_argument
,
NULL
,
'v'
},
{
"print0"
,
no_argument
,
NULL
,
'z'
},
{
0
,
0
,
NULL
,
0
}
{
0
,
0
,
NULL
,
0
}
};
};
...
@@ -415,6 +422,9 @@ int main(int argc, char *argv[])
...
@@ -415,6 +422,9 @@ int main(int argc, char *argv[])
case
'v'
:
{
case
'v'
:
{
options
.
flags
|=
FLAGS_VERBOSE
;
options
.
flags
|=
FLAGS_VERBOSE
;
}
break
;
}
break
;
case
'z'
:
{
options
.
flags
|=
FLAGS_NUL_TERMINATED
;
}
break
;
}
}
}
}
if
(
options
.
flags
&
(
FLAGS_READ_XATTR
|
FLAGS_WRITE_XATTR
|
if
(
options
.
flags
&
(
FLAGS_READ_XATTR
|
FLAGS_WRITE_XATTR
|
...
@@ -426,11 +436,14 @@ int main(int argc, char *argv[])
...
@@ -426,11 +436,14 @@ int main(int argc, char *argv[])
}
}
}
}
printf
(
"#fields: size:mtime:uid:gid:mode:md5:kind:name
\n
"
);
printf
(
"#fields: size:mtime:uid:gid:mode:md5:kind:name%c"
,
(
options
.
flags
&
FLAGS_NUL_TERMINATED
)
?
'\0'
:
'\n'
);
for
(
i
=
optind
;
i
<
argc
;
i
++
)
{
for
(
i
=
optind
;
i
<
argc
;
i
++
)
{
printf
(
"#path: %s
\n
"
,
argv
[
i
]);
printf
(
"#path: %s%c"
,
argv
[
i
],
(
options
.
flags
&
FLAGS_NUL_TERMINATED
)
?
'\0'
:
'\n'
);
dofile
(
argv
[
i
],
0
,
&
options
);
dofile
(
argv
[
i
],
0
,
&
options
);
}
}
printf
(
"#endTOC
\n
"
);
printf
(
"#endTOC%c"
,
(
options
.
flags
&
FLAGS_NUL_TERMINATED
)
?
'\0'
:
'\n'
);
return
0
;
return
0
;
}
}
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