Fix inode link count checks in btrfsck
[btrfs-progs-unstable.git] / bcp
blob5729e91e778ac225beee142fae21daf9dd62f303
1 #!/usr/bin/env python
2 # Copyright (C) 2007 Oracle. All rights reserved.
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public
6 # License v2 as published by the Free Software Foundation.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 # General Public License for more details.
13 # You should have received a copy of the GNU General Public
14 # License along with this program; if not, write to the
15 # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 # Boston, MA 021110-1307, USA.
18 import sys, os, stat, fcntl
19 from optparse import OptionParser
21 def copylink(srcname, dst, filename, statinfo, force_name):
22 dstname = os.path.join(dst, force_name or filename)
23 if not os.path.exists(dstname):
24 link_target = os.readlink(srcname)
25 os.symlink(link_target, dstname)
27 def copydev(srcname, dst, filename, statinfo, force_name):
28 devbits = statinfo.st_mode & (stat.S_IFBLK | stat.S_IFCHR)
29 mode = stat.S_IMODE(statinfo.st_mode) | devbits
30 dstname = os.path.join(dst, force_name or filename)
31 if not os.path.exists(dstname):
32 os.mknod(dstname, mode, statinfo.st_rdev)
34 def copyfile(srcname, dst, filename, statinfo, force_name):
35 written = 0
36 dstname = os.path.join(dst, force_name or filename)
38 st_mode = statinfo.st_mode
39 if stat.S_ISLNK(st_mode):
40 copylink(srcname, dst, part, statinfo, None)
41 return
42 elif stat.S_ISBLK(st_mode) or stat.S_ISCHR(st_mode):
43 copydev(srcname, dst, part, statinfo, None)
44 return
45 elif not stat.S_ISREG(st_mode):
46 return
48 try:
49 os.unlink(dstname)
50 except:
51 pass
53 if options.link:
54 os.link(srcname, dstname)
55 return
57 dstf = file(dstname, 'w')
58 srcf = file(srcname, 'r')
60 ret = 1
62 try:
63 if not options.copy:
64 ret = fcntl.ioctl(dstf.fileno(), 1074041865, srcf.fileno())
65 except:
66 pass
68 if ret != 0:
69 while True:
70 buf = srcf.read(256 * 1024)
71 if not buf:
72 break
73 written += len(buf)
74 dstf.write(buf)
76 os.chmod(dstname, stat.S_IMODE(statinfo.st_mode))
77 os.chown(dstname, statinfo.st_uid, statinfo.st_gid)
80 usage = "usage: %prog [options]"
81 parser = OptionParser(usage=usage)
82 parser.add_option("-l", "--link", help="Create hard links", default=False,
83 action="store_true")
84 parser.add_option("-c", "--copy", help="Copy file bytes (don't cow)",
85 default=False, action="store_true")
87 (options,args) = parser.parse_args()
89 if len(args) < 2:
90 sys.stderr.write("source or destination not specified\n")
91 sys.exit(1)
93 if options.link and options.copy:
94 sys.stderr.write("Both -l and -c specified, using copy mode\n")
95 options.link = False
98 total_args = len(args)
99 src_args = total_args - 1
100 orig_dst = args[-1]
102 if src_args > 1:
103 if not os.path.exists(orig_dst):
104 os.makedirs(orig_dst)
105 if not os.path.isdir(orig_dst):
106 sys.stderr.write("Destination %s is not a directory\n" % orig_dst)
107 exit(1)
109 for srci in xrange(0, src_args):
110 src = args[srci]
111 if os.path.isfile(src):
112 statinfo = os.lstat(src)
113 force_name = None
114 if src_args == 1:
115 if not os.path.isdir(orig_dst):
116 force_name = os.path.basename(orig_dst)
117 orig_dst = os.path.dirname(orig_dst) or '.'
118 copyfile(src, orig_dst, os.path.basename(src), statinfo, force_name)
119 continue
121 if src_args > 1 or os.path.exists(orig_dst):
122 dst = os.path.join(orig_dst, os.path.basename(src))
123 else:
124 dst = orig_dst
126 if not os.path.exists(dst):
127 os.makedirs(dst)
128 statinfo = os.stat(src)
129 os.chmod(dst, stat.S_IMODE(statinfo.st_mode))
130 os.chown(dst, statinfo.st_uid, statinfo.st_gid)
132 iter = os.walk(src, topdown=True)
134 for (dirpath, dirnames, filenames) in iter:
135 for x in dirnames:
136 srcname = os.path.join(dirpath, x)
137 statinfo = os.lstat(srcname)
139 if srcname.startswith(src):
140 part = srcname[len(src) + 1:]
142 if stat.S_ISLNK(statinfo.st_mode):
143 copylink(srcname, dst, part, statinfo, None)
144 continue
146 dst_dir = os.path.join(dst, part)
147 if not os.path.exists(dst_dir):
148 os.makedirs(dst_dir)
150 os.chmod(dst_dir, stat.S_IMODE(statinfo.st_mode))
151 os.chown(dst_dir, statinfo.st_uid, statinfo.st_gid)
153 for f in filenames:
154 srcname = os.path.join(dirpath, f)
155 if srcname.startswith(src):
156 part = srcname[len(src) + 1:]
158 statinfo = os.lstat(srcname)
159 copyfile(srcname, dst, part, statinfo, None)