2013-06-25 17:04:22 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
# This file is part of Ansible
|
|
|
|
#
|
|
|
|
# Ansible is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Ansible is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
module: stat
|
|
|
|
version_added: "1.3"
|
|
|
|
short_description: retrieve file or file system status
|
|
|
|
description:
|
|
|
|
- Retrieves facts for a file similar to the linux/unix 'stat' command.
|
|
|
|
options:
|
|
|
|
path:
|
|
|
|
description:
|
|
|
|
- The full path of the file/object to get the facts of
|
|
|
|
required: true
|
|
|
|
default: null
|
2013-07-16 19:27:38 +02:00
|
|
|
follow:
|
|
|
|
description:
|
|
|
|
- Whether to follow symlinks
|
|
|
|
required: false
|
|
|
|
default: no
|
2014-02-26 03:33:14 +01:00
|
|
|
get_md5:
|
|
|
|
description:
|
2014-11-07 06:25:55 +01:00
|
|
|
- Whether to return the md5 sum of the file. Will return None if we're unable to use md5 (Common for FIPS-140 compliant systems)
|
2014-02-26 03:33:14 +01:00
|
|
|
required: false
|
|
|
|
default: yes
|
2014-11-07 06:25:55 +01:00
|
|
|
get_checksum:
|
|
|
|
description:
|
2015-10-14 03:49:54 +02:00
|
|
|
- Whether to return a checksum of the file (default sha1)
|
2014-11-07 06:25:55 +01:00
|
|
|
required: false
|
|
|
|
default: yes
|
|
|
|
version_added: "1.8"
|
2015-10-14 03:49:54 +02:00
|
|
|
checksum_algorithm:
|
|
|
|
description:
|
|
|
|
- Algorithm to determine checksum of file. Will throw an error if the host is unable to use specified algorithm.
|
|
|
|
required: false
|
|
|
|
choices: [ 'sha1', 'sha224', 'sha256', 'sha384', 'sha512' ]
|
|
|
|
default: sha1
|
2016-02-15 23:15:37 +01:00
|
|
|
aliases: [ 'checksum_algo', 'checksum' ]
|
2015-10-14 03:49:54 +02:00
|
|
|
version_added: "2.0"
|
2015-12-15 03:18:13 +01:00
|
|
|
mime:
|
|
|
|
description:
|
|
|
|
- Use file magic and return data about the nature of the file. this uses the 'file' utility found on most Linux/Unix systems.
|
|
|
|
- This will add both `mime_type` and 'charset' fields to the return, if possible.
|
|
|
|
required: false
|
|
|
|
choices: [ Yes, No ]
|
|
|
|
default: No
|
|
|
|
version_added: "2.1"
|
|
|
|
aliases: [ 'mime_type', 'mime-type' ]
|
2015-06-15 21:53:30 +02:00
|
|
|
author: "Bruce Pennypacker (@bpennypacker)"
|
2013-06-25 17:04:22 +02:00
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = '''
|
2013-07-03 16:17:07 +02:00
|
|
|
# Obtain the stats of /etc/foo.conf, and check that the file still belongs
|
|
|
|
# to 'root'. Fail otherwise.
|
2013-07-25 15:59:23 +02:00
|
|
|
- stat: path=/etc/foo.conf
|
2013-07-03 16:17:07 +02:00
|
|
|
register: st
|
|
|
|
- fail: msg="Whoops! file ownership has changed"
|
|
|
|
when: st.stat.pw_name != 'root'
|
2013-07-25 15:59:23 +02:00
|
|
|
|
2015-07-14 01:51:32 +02:00
|
|
|
# Determine if a path exists and is a symlink. Note that if the path does
|
|
|
|
# not exist, and we test sym.stat.islnk, it will fail with an error. So
|
|
|
|
# therefore, we must test whether it is defined.
|
|
|
|
# Run this to understand the structure, the skipped ones do not pass the
|
|
|
|
# check performed by 'when'
|
|
|
|
- stat: path=/path/to/something
|
|
|
|
register: sym
|
|
|
|
- debug: msg="islnk isn't defined (path doesn't exist)"
|
|
|
|
when: sym.stat.islnk is not defined
|
|
|
|
- debug: msg="islnk is defined (path must exist)"
|
|
|
|
when: sym.stat.islnk is defined
|
|
|
|
- debug: msg="Path exists and is a symlink"
|
|
|
|
when: sym.stat.islnk is defined and sym.stat.islnk
|
|
|
|
- debug: msg="Path exists and isn't a symlink"
|
|
|
|
when: sym.stat.islnk is defined and sym.stat.islnk == False
|
|
|
|
|
|
|
|
|
2014-10-02 18:17:27 +02:00
|
|
|
# Determine if a path exists and is a directory. Note that we need to test
|
2013-07-25 15:59:23 +02:00
|
|
|
# both that p.stat.isdir actually exists, and also that it's set to true.
|
|
|
|
- stat: path=/path/to/something
|
|
|
|
register: p
|
|
|
|
- debug: msg="Path exists and is a directory"
|
2014-10-02 18:17:27 +02:00
|
|
|
when: p.stat.isdir is defined and p.stat.isdir
|
2014-02-26 03:33:14 +01:00
|
|
|
|
|
|
|
# Don't do md5 checksum
|
|
|
|
- stat: path=/path/to/myhugefile get_md5=no
|
2015-10-14 03:49:54 +02:00
|
|
|
|
|
|
|
# Use sha256 to calculate checksum
|
|
|
|
- stat: path=/path/to/something checksum_algorithm=sha256
|
2013-06-25 17:04:22 +02:00
|
|
|
'''
|
|
|
|
|
2015-02-19 21:36:36 +01:00
|
|
|
RETURN = '''
|
|
|
|
stat:
|
|
|
|
description: dictionary containing all the stat data
|
|
|
|
returned: success
|
|
|
|
type: dictionary
|
|
|
|
contains:
|
|
|
|
exists:
|
|
|
|
description: if the destination path actually exists or not
|
|
|
|
returned: success
|
|
|
|
type: boolean
|
|
|
|
sample: True
|
|
|
|
path:
|
|
|
|
description: The full path of the file/object to get the facts of
|
2015-02-19 22:43:20 +01:00
|
|
|
returned: success and if path exists
|
2015-12-02 10:20:20 +01:00
|
|
|
type: string
|
2015-02-19 21:36:36 +01:00
|
|
|
sample: '/path/to/file'
|
|
|
|
mode:
|
|
|
|
description: Unix permissions of the file in octal
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: octal
|
|
|
|
sample: 1755
|
|
|
|
isdir:
|
|
|
|
description: Tells you if the path is a directory
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: boolean
|
|
|
|
sample: False
|
|
|
|
ischr:
|
|
|
|
description: Tells you if the path is a character device
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: boolean
|
|
|
|
sample: False
|
|
|
|
isblk:
|
|
|
|
description: Tells you if the path is a block device
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: boolean
|
|
|
|
sample: False
|
|
|
|
isreg:
|
|
|
|
description: Tells you if the path is a regular file
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: boolean
|
|
|
|
sample: True
|
|
|
|
isfifo:
|
|
|
|
description: Tells you if the path is a named pipe
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: boolean
|
|
|
|
sample: False
|
|
|
|
islnk:
|
|
|
|
description: Tells you if the path is a symbolic link
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: boolean
|
|
|
|
sample: False
|
|
|
|
issock:
|
|
|
|
description: Tells you if the path is a unix domain socket
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: boolean
|
|
|
|
sample: False
|
|
|
|
uid:
|
|
|
|
description: Numeric id representing the file owner
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: int
|
|
|
|
sample: 1003
|
|
|
|
gid:
|
|
|
|
description: Numeric id representing the group of the owner
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: int
|
|
|
|
sample: 1003
|
|
|
|
size:
|
|
|
|
description: Size in bytes for a plain file, ammount of data for some special files
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: int
|
|
|
|
sample: 203
|
|
|
|
inode:
|
|
|
|
description: Inode number of the path
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: int
|
|
|
|
sample: 12758
|
|
|
|
dev:
|
|
|
|
description: Device the inode resides on
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: int
|
|
|
|
sample: 33
|
|
|
|
nlink:
|
|
|
|
description: Number of links to the inode (hard links)
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: int
|
|
|
|
sample: 1
|
|
|
|
atime:
|
|
|
|
description: Time of last access
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: float
|
|
|
|
sample: 1424348972.575
|
2015-02-19 22:43:20 +01:00
|
|
|
mtime:
|
2015-02-19 21:36:36 +01:00
|
|
|
description: Time of last modification
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: float
|
|
|
|
sample: 1424348972.575
|
|
|
|
ctime:
|
|
|
|
description: Time of last metadata update or creation (depends on OS)
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: float
|
|
|
|
sample: 1424348972.575
|
|
|
|
wusr:
|
|
|
|
description: Tells you if the owner has write permission
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: boolean
|
|
|
|
sample: True
|
|
|
|
rusr:
|
|
|
|
description: Tells you if the owner has read permission
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: boolean
|
|
|
|
sample: True
|
|
|
|
xusr:
|
|
|
|
description: Tells you if the owner has execute permission
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: boolean
|
|
|
|
sample: True
|
|
|
|
wgrp:
|
|
|
|
description: Tells you if the owner's group has write permission
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: boolean
|
|
|
|
sample: False
|
|
|
|
rgrp:
|
|
|
|
description: Tells you if the owner's group has read permission
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: boolean
|
|
|
|
sample: True
|
|
|
|
xgrp:
|
|
|
|
description: Tells you if the owner's group has execute permission
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: boolean
|
|
|
|
sample: True
|
|
|
|
woth:
|
|
|
|
description: Tells you if others have write permission
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: boolean
|
|
|
|
sample: False
|
|
|
|
roth:
|
|
|
|
description: Tells you if others have read permission
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: boolean
|
|
|
|
sample: True
|
|
|
|
xoth:
|
|
|
|
description: Tells you if others have execute permission
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: boolean
|
|
|
|
sample: True
|
2015-02-19 22:43:20 +01:00
|
|
|
isuid:
|
|
|
|
description: Tells you if the invoking user's id matches the owner's id
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: boolean
|
|
|
|
sample: False
|
2015-02-20 15:57:27 +01:00
|
|
|
isgid:
|
2015-02-19 22:43:20 +01:00
|
|
|
description: Tells you if the invoking user's group id matches the owner's group id
|
|
|
|
returned: success, path exists and user can read stats
|
|
|
|
type: boolean
|
|
|
|
sample: False
|
2015-02-19 21:36:36 +01:00
|
|
|
lnk_source:
|
|
|
|
description: Original path
|
|
|
|
returned: success, path exists and user can read stats and the path is a symbolic link
|
2015-10-21 15:24:12 +02:00
|
|
|
type: string
|
|
|
|
sample: /home/foobar/21102015-1445431274-908472971
|
2015-02-19 21:36:36 +01:00
|
|
|
md5:
|
|
|
|
description: md5 hash of the path
|
|
|
|
returned: success, path exists and user can read stats and path supports hashing and md5 is supported
|
2015-05-26 21:22:39 +02:00
|
|
|
type: string
|
|
|
|
sample: f88fa92d8cf2eeecf4c0a50ccc96d0c0
|
2016-02-15 22:09:59 +01:00
|
|
|
checksum_algorithm:
|
2015-02-19 21:36:36 +01:00
|
|
|
description: hash of the path
|
2015-10-14 03:49:54 +02:00
|
|
|
returned: success, path exists, user can read stats, path supports hashing and supplied checksum algorithm is available
|
2015-05-26 21:22:39 +02:00
|
|
|
type: string
|
|
|
|
sample: 50ba294cdf28c0d5bcde25708df53346825a429f
|
2016-02-15 22:09:59 +01:00
|
|
|
aliases: ['checksum', 'checksum_algo']
|
2015-02-19 21:36:36 +01:00
|
|
|
pw_name:
|
|
|
|
description: User name of owner
|
|
|
|
returned: success, path exists and user can read stats and installed python supports it
|
|
|
|
type: string
|
|
|
|
sample: httpd
|
|
|
|
gr_name:
|
2015-02-19 22:43:20 +01:00
|
|
|
description: Group name of owner
|
2015-02-19 21:36:36 +01:00
|
|
|
returned: success, path exists and user can read stats and installed python supports it
|
|
|
|
type: string
|
|
|
|
sample: www-data
|
2015-12-15 03:18:13 +01:00
|
|
|
mime_type:
|
|
|
|
description: file magic data or mime-type
|
|
|
|
returned: success, path exists and user can read stats and installed python supports it and the `mime` option was true, will return 'unknown' on error.
|
|
|
|
type: string
|
|
|
|
sample: PDF document, version 1.2
|
|
|
|
charset:
|
|
|
|
description: file character set or encoding
|
|
|
|
returned: success, path exists and user can read stats and installed python supports it and the `mime` option was true, will return 'unknown' on error.
|
|
|
|
type: string
|
|
|
|
sample: us-ascii
|
2015-02-19 21:36:36 +01:00
|
|
|
'''
|
|
|
|
|
2013-06-25 17:04:22 +02:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
from stat import *
|
2013-07-03 16:17:07 +02:00
|
|
|
import pwd
|
2014-09-29 22:25:46 +02:00
|
|
|
import grp
|
2013-06-25 17:04:22 +02:00
|
|
|
|
|
|
|
def main():
|
|
|
|
module = AnsibleModule(
|
|
|
|
argument_spec = dict(
|
2016-02-29 09:33:34 +01:00
|
|
|
path = dict(required=True, type='path'),
|
2014-02-26 03:33:14 +01:00
|
|
|
follow = dict(default='no', type='bool'),
|
2014-11-07 06:25:55 +01:00
|
|
|
get_md5 = dict(default='yes', type='bool'),
|
2015-10-14 03:49:54 +02:00
|
|
|
get_checksum = dict(default='yes', type='bool'),
|
2016-02-15 22:09:59 +01:00
|
|
|
checksum_algorithm = dict(default='sha1', type='str', choices=['sha1', 'sha224', 'sha256', 'sha384', 'sha512'], aliases=['checksum_algo', 'checksum']),
|
2015-12-15 03:18:13 +01:00
|
|
|
mime = dict(default=False, type='bool', aliases=['mime_type', 'mime-type']),
|
2014-01-18 22:21:48 +01:00
|
|
|
),
|
|
|
|
supports_check_mode = True
|
2013-06-25 17:04:22 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
path = module.params.get('path')
|
2013-07-16 19:27:38 +02:00
|
|
|
follow = module.params.get('follow')
|
2014-02-26 03:33:14 +01:00
|
|
|
get_md5 = module.params.get('get_md5')
|
2014-11-07 06:25:55 +01:00
|
|
|
get_checksum = module.params.get('get_checksum')
|
2015-10-14 03:49:54 +02:00
|
|
|
checksum_algorithm = module.params.get('checksum_algorithm')
|
2013-06-25 17:04:22 +02:00
|
|
|
|
|
|
|
try:
|
2013-07-16 19:27:38 +02:00
|
|
|
if follow:
|
|
|
|
st = os.stat(path)
|
|
|
|
else:
|
|
|
|
st = os.lstat(path)
|
2013-06-25 17:04:22 +02:00
|
|
|
except OSError, e:
|
2013-06-26 18:32:28 +02:00
|
|
|
if e.errno == errno.ENOENT:
|
|
|
|
d = { 'exists' : False }
|
|
|
|
module.exit_json(changed=False, stat=d)
|
2014-02-26 03:33:14 +01:00
|
|
|
|
2013-06-25 17:04:22 +02:00
|
|
|
module.fail_json(msg = e.strerror)
|
|
|
|
|
|
|
|
mode = st.st_mode
|
|
|
|
|
|
|
|
# back to ansible
|
|
|
|
d = {
|
2013-06-26 18:32:28 +02:00
|
|
|
'exists' : True,
|
2014-09-29 16:59:23 +02:00
|
|
|
'path' : path,
|
2014-02-28 17:42:20 +01:00
|
|
|
'mode' : "%04o" % S_IMODE(mode),
|
2013-06-25 17:04:22 +02:00
|
|
|
'isdir' : S_ISDIR(mode),
|
|
|
|
'ischr' : S_ISCHR(mode),
|
|
|
|
'isblk' : S_ISBLK(mode),
|
|
|
|
'isreg' : S_ISREG(mode),
|
|
|
|
'isfifo' : S_ISFIFO(mode),
|
|
|
|
'islnk' : S_ISLNK(mode),
|
|
|
|
'issock' : S_ISSOCK(mode),
|
|
|
|
'uid' : st.st_uid,
|
|
|
|
'gid' : st.st_gid,
|
|
|
|
'size' : st.st_size,
|
|
|
|
'inode' : st.st_ino,
|
|
|
|
'dev' : st.st_dev,
|
|
|
|
'nlink' : st.st_nlink,
|
|
|
|
'atime' : st.st_atime,
|
|
|
|
'mtime' : st.st_mtime,
|
|
|
|
'ctime' : st.st_ctime,
|
|
|
|
'wusr' : bool(mode & stat.S_IWUSR),
|
|
|
|
'rusr' : bool(mode & stat.S_IRUSR),
|
|
|
|
'xusr' : bool(mode & stat.S_IXUSR),
|
|
|
|
'wgrp' : bool(mode & stat.S_IWGRP),
|
|
|
|
'rgrp' : bool(mode & stat.S_IRGRP),
|
|
|
|
'xgrp' : bool(mode & stat.S_IXGRP),
|
|
|
|
'woth' : bool(mode & stat.S_IWOTH),
|
|
|
|
'roth' : bool(mode & stat.S_IROTH),
|
|
|
|
'xoth' : bool(mode & stat.S_IXOTH),
|
|
|
|
'isuid' : bool(mode & stat.S_ISUID),
|
|
|
|
'isgid' : bool(mode & stat.S_ISGID),
|
|
|
|
}
|
|
|
|
|
2013-07-16 19:27:38 +02:00
|
|
|
if S_ISLNK(mode):
|
|
|
|
d['lnk_source'] = os.path.realpath(path)
|
2013-07-03 16:17:07 +02:00
|
|
|
|
2014-03-12 03:50:05 +01:00
|
|
|
if S_ISREG(mode) and get_md5 and os.access(path,os.R_OK):
|
2014-11-07 06:25:55 +01:00
|
|
|
# Will fail on FIPS-140 compliant systems
|
|
|
|
try:
|
|
|
|
d['md5'] = module.md5(path)
|
|
|
|
except ValueError:
|
|
|
|
d['md5'] = None
|
|
|
|
|
|
|
|
if S_ISREG(mode) and get_checksum and os.access(path,os.R_OK):
|
2015-10-14 03:49:54 +02:00
|
|
|
d['checksum'] = module.digest_from_file(path, checksum_algorithm)
|
2013-07-03 16:17:07 +02:00
|
|
|
|
|
|
|
try:
|
|
|
|
pw = pwd.getpwuid(st.st_uid)
|
|
|
|
|
|
|
|
d['pw_name'] = pw.pw_name
|
2014-09-29 22:25:46 +02:00
|
|
|
|
2015-03-25 16:33:19 +01:00
|
|
|
grp_info = grp.getgrgid(st.st_gid)
|
2014-09-29 22:25:46 +02:00
|
|
|
d['gr_name'] = grp_info.gr_name
|
2013-07-03 16:17:07 +02:00
|
|
|
except:
|
|
|
|
pass
|
2014-02-26 03:33:14 +01:00
|
|
|
|
2015-12-15 03:18:13 +01:00
|
|
|
if module.params.get('mime'):
|
|
|
|
d['mime_type'] = 'unknown'
|
|
|
|
d['charset'] = 'unknown'
|
|
|
|
|
|
|
|
filecmd = [module.get_bin_path('file', True),'-i', path]
|
|
|
|
try:
|
|
|
|
rc, out, err = module.run_command(filecmd)
|
|
|
|
if rc == 0:
|
|
|
|
mtype, chset = out.split(':')[1].split(';')
|
|
|
|
d['mime_type'] = mtype.strip()
|
|
|
|
d['charset'] = chset.split('=')[1].strip()
|
|
|
|
except:
|
|
|
|
pass
|
2013-06-25 20:14:18 +02:00
|
|
|
|
2013-06-25 17:04:22 +02:00
|
|
|
module.exit_json(changed=False, stat=d)
|
|
|
|
|
2013-12-02 21:13:49 +01:00
|
|
|
# import module snippets
|
2013-12-02 21:11:23 +01:00
|
|
|
from ansible.module_utils.basic import *
|
2013-06-25 17:04:22 +02:00
|
|
|
|
2015-11-08 00:16:20 +01:00
|
|
|
main()
|