Roger E. Masse | fb01d4b | 1996-12-17 17:41:09 +0000 | [diff] [blame] | 1 | """Test program for the fcntl C module. |
Roger E. Masse | fb01d4b | 1996-12-17 17:41:09 +0000 | [diff] [blame] | 2 | """ |
Gregory P. Smith | e5aefa4 | 2013-03-31 10:10:50 -0700 | [diff] [blame] | 3 | import platform |
Christian Heimes | e25f35e | 2008-03-20 10:49:03 +0000 | [diff] [blame] | 4 | import os |
| 5 | import struct |
| 6 | import sys |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 7 | import unittest |
Dong-hee Na | befa032 | 2019-11-08 05:31:41 +0900 | [diff] [blame] | 8 | from multiprocessing import Process |
Serhiy Storchaka | 5cfc79d | 2014-02-07 10:06:39 +0200 | [diff] [blame] | 9 | from test.support import (verbose, TESTFN, unlink, run_unittest, import_module, |
| 10 | cpython_only) |
R. David Murray | a21e4ca | 2009-03-31 23:16:50 +0000 | [diff] [blame] | 11 | |
Ezio Melotti | 78ede7c | 2013-08-23 23:06:31 +0300 | [diff] [blame] | 12 | # Skip test if no fcntl module. |
R. David Murray | a21e4ca | 2009-03-31 23:16:50 +0000 | [diff] [blame] | 13 | fcntl = import_module('fcntl') |
| 14 | |
Roger E. Masse | fb01d4b | 1996-12-17 17:41:09 +0000 | [diff] [blame] | 15 | |
Martin v. Löwis | a660a34 | 2001-10-18 22:07:48 +0000 | [diff] [blame] | 16 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 17 | def get_lockdata(): |
Antoine Pitrou | 6103ab1 | 2009-10-24 20:11:21 +0000 | [diff] [blame] | 18 | try: |
| 19 | os.O_LARGEFILE |
| 20 | except AttributeError: |
| 21 | start_len = "ll" |
Hye-Shik Chang | ac89f6e | 2005-04-04 15:21:04 +0000 | [diff] [blame] | 22 | else: |
Antoine Pitrou | 6103ab1 | 2009-10-24 20:11:21 +0000 | [diff] [blame] | 23 | start_len = "qq" |
Fred Drake | bc7809b | 2001-05-09 21:11:59 +0000 | [diff] [blame] | 24 | |
Benjamin Peterson | 288d1da | 2017-09-28 22:44:27 -0700 | [diff] [blame] | 25 | if (sys.platform.startswith(('netbsd', 'freebsd', 'openbsd')) |
Victor Stinner | e674747 | 2011-08-21 00:39:18 +0200 | [diff] [blame] | 26 | or sys.platform == 'darwin'): |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 27 | if struct.calcsize('l') == 8: |
| 28 | off_t = 'l' |
| 29 | pid_t = 'i' |
| 30 | else: |
| 31 | off_t = 'lxxxx' |
| 32 | pid_t = 'l' |
| 33 | lockdata = struct.pack(off_t + off_t + pid_t + 'hh', 0, 0, 0, |
| 34 | fcntl.F_WRLCK, 0) |
doko@ubuntu.com | 1dfb918 | 2013-08-03 16:12:33 +0200 | [diff] [blame] | 35 | elif sys.platform.startswith('gnukfreebsd'): |
| 36 | lockdata = struct.pack('qqihhi', 0, 0, 0, fcntl.F_WRLCK, 0, 0) |
Michael Felt | b7eec94 | 2019-04-08 02:51:33 +0200 | [diff] [blame] | 37 | elif sys.platform in ['hp-uxB', 'unixware7']: |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 38 | lockdata = struct.pack('hhlllii', fcntl.F_WRLCK, 0, 0, 0, 0, 0, 0) |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 39 | else: |
| 40 | lockdata = struct.pack('hh'+start_len+'hh', fcntl.F_WRLCK, 0, 0, 0, 0, 0) |
| 41 | if lockdata: |
| 42 | if verbose: |
| 43 | print('struct.pack: ', repr(lockdata)) |
| 44 | return lockdata |
Fred Drake | bc7809b | 2001-05-09 21:11:59 +0000 | [diff] [blame] | 45 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 46 | lockdata = get_lockdata() |
Roger E. Masse | fb01d4b | 1996-12-17 17:41:09 +0000 | [diff] [blame] | 47 | |
Serhiy Storchaka | 5cfc79d | 2014-02-07 10:06:39 +0200 | [diff] [blame] | 48 | class BadFile: |
| 49 | def __init__(self, fn): |
| 50 | self.fn = fn |
| 51 | def fileno(self): |
| 52 | return self.fn |
| 53 | |
Dong-hee Na | 9960230 | 2019-11-19 17:12:42 +0900 | [diff] [blame^] | 54 | def try_lockf_on_other_process_fail(fname, cmd): |
| 55 | f = open(fname, 'wb+') |
| 56 | try: |
| 57 | fcntl.lockf(f, cmd) |
| 58 | except BlockingIOError: |
| 59 | pass |
| 60 | finally: |
| 61 | f.close() |
| 62 | |
| 63 | def try_lockf_on_other_process(fname, cmd): |
| 64 | f = open(fname, 'wb+') |
| 65 | fcntl.lockf(f, cmd) |
| 66 | fcntl.lockf(f, fcntl.LOCK_UN) |
| 67 | f.close() |
| 68 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 69 | class TestFcntl(unittest.TestCase): |
| 70 | |
| 71 | def setUp(self): |
| 72 | self.f = None |
| 73 | |
| 74 | def tearDown(self): |
Antoine Pitrou | 61f77b5 | 2009-05-24 15:46:13 +0000 | [diff] [blame] | 75 | if self.f and not self.f.closed: |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 76 | self.f.close() |
| 77 | unlink(TESTFN) |
| 78 | |
| 79 | def test_fcntl_fileno(self): |
| 80 | # the example from the library docs |
Victor Stinner | a6d2c76 | 2011-06-30 18:20:11 +0200 | [diff] [blame] | 81 | self.f = open(TESTFN, 'wb') |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 82 | rv = fcntl.fcntl(self.f.fileno(), fcntl.F_SETFL, os.O_NONBLOCK) |
| 83 | if verbose: |
| 84 | print('Status from fcntl with O_NONBLOCK: ', rv) |
Jesus Cea | f1af705 | 2012-10-05 02:48:46 +0200 | [diff] [blame] | 85 | rv = fcntl.fcntl(self.f.fileno(), fcntl.F_SETLKW, lockdata) |
| 86 | if verbose: |
| 87 | print('String from fcntl with F_SETLKW: ', repr(rv)) |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 88 | self.f.close() |
| 89 | |
| 90 | def test_fcntl_file_descriptor(self): |
| 91 | # again, but pass the file rather than numeric descriptor |
Victor Stinner | a6d2c76 | 2011-06-30 18:20:11 +0200 | [diff] [blame] | 92 | self.f = open(TESTFN, 'wb') |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 93 | rv = fcntl.fcntl(self.f, fcntl.F_SETFL, os.O_NONBLOCK) |
Ezio Melotti | 892584e | 2013-08-23 23:09:32 +0300 | [diff] [blame] | 94 | if verbose: |
| 95 | print('Status from fcntl with O_NONBLOCK: ', rv) |
Jesus Cea | f1af705 | 2012-10-05 02:48:46 +0200 | [diff] [blame] | 96 | rv = fcntl.fcntl(self.f, fcntl.F_SETLKW, lockdata) |
Ezio Melotti | 892584e | 2013-08-23 23:09:32 +0300 | [diff] [blame] | 97 | if verbose: |
| 98 | print('String from fcntl with F_SETLKW: ', repr(rv)) |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 99 | self.f.close() |
Fred Drake | bc7809b | 2001-05-09 21:11:59 +0000 | [diff] [blame] | 100 | |
Serhiy Storchaka | 7898043 | 2013-01-15 01:12:17 +0200 | [diff] [blame] | 101 | def test_fcntl_bad_file(self): |
Serhiy Storchaka | 5cfc79d | 2014-02-07 10:06:39 +0200 | [diff] [blame] | 102 | with self.assertRaises(ValueError): |
| 103 | fcntl.fcntl(-1, fcntl.F_SETFL, os.O_NONBLOCK) |
| 104 | with self.assertRaises(ValueError): |
| 105 | fcntl.fcntl(BadFile(-1), fcntl.F_SETFL, os.O_NONBLOCK) |
| 106 | with self.assertRaises(TypeError): |
| 107 | fcntl.fcntl('spam', fcntl.F_SETFL, os.O_NONBLOCK) |
| 108 | with self.assertRaises(TypeError): |
| 109 | fcntl.fcntl(BadFile('spam'), fcntl.F_SETFL, os.O_NONBLOCK) |
| 110 | |
| 111 | @cpython_only |
| 112 | def test_fcntl_bad_file_overflow(self): |
| 113 | from _testcapi import INT_MAX, INT_MIN |
Serhiy Storchaka | 7898043 | 2013-01-15 01:12:17 +0200 | [diff] [blame] | 114 | # Issue 15989 |
Serhiy Storchaka | 5cfc79d | 2014-02-07 10:06:39 +0200 | [diff] [blame] | 115 | with self.assertRaises(OverflowError): |
| 116 | fcntl.fcntl(INT_MAX + 1, fcntl.F_SETFL, os.O_NONBLOCK) |
| 117 | with self.assertRaises(OverflowError): |
| 118 | fcntl.fcntl(BadFile(INT_MAX + 1), fcntl.F_SETFL, os.O_NONBLOCK) |
| 119 | with self.assertRaises(OverflowError): |
| 120 | fcntl.fcntl(INT_MIN - 1, fcntl.F_SETFL, os.O_NONBLOCK) |
| 121 | with self.assertRaises(OverflowError): |
| 122 | fcntl.fcntl(BadFile(INT_MIN - 1), fcntl.F_SETFL, os.O_NONBLOCK) |
Serhiy Storchaka | 7898043 | 2013-01-15 01:12:17 +0200 | [diff] [blame] | 123 | |
Gregory P. Smith | e5aefa4 | 2013-03-31 10:10:50 -0700 | [diff] [blame] | 124 | @unittest.skipIf( |
| 125 | platform.machine().startswith('arm') and platform.system() == 'Linux', |
| 126 | "ARM Linux returns EINVAL for F_NOTIFY DN_MULTISHOT") |
Antoine Pitrou | 61f77b5 | 2009-05-24 15:46:13 +0000 | [diff] [blame] | 127 | def test_fcntl_64_bit(self): |
| 128 | # Issue #1309352: fcntl shouldn't fail when the third arg fits in a |
| 129 | # C 'long' but not in a C 'int'. |
| 130 | try: |
| 131 | cmd = fcntl.F_NOTIFY |
| 132 | # This flag is larger than 2**31 in 64-bit builds |
| 133 | flags = fcntl.DN_MULTISHOT |
| 134 | except AttributeError: |
| 135 | self.skipTest("F_NOTIFY or DN_MULTISHOT unavailable") |
| 136 | fd = os.open(os.path.dirname(os.path.abspath(TESTFN)), os.O_RDONLY) |
| 137 | try: |
| 138 | fcntl.fcntl(fd, cmd, flags) |
| 139 | finally: |
| 140 | os.close(fd) |
| 141 | |
Christian Heimes | 0a956f1 | 2013-12-05 16:13:03 +0100 | [diff] [blame] | 142 | def test_flock(self): |
Christian Heimes | 2e7d4f0 | 2013-12-07 18:19:21 +0100 | [diff] [blame] | 143 | # Solaris needs readable file for shared lock |
| 144 | self.f = open(TESTFN, 'wb+') |
Christian Heimes | 0a956f1 | 2013-12-05 16:13:03 +0100 | [diff] [blame] | 145 | fileno = self.f.fileno() |
| 146 | fcntl.flock(fileno, fcntl.LOCK_SH) |
| 147 | fcntl.flock(fileno, fcntl.LOCK_UN) |
| 148 | fcntl.flock(self.f, fcntl.LOCK_SH | fcntl.LOCK_NB) |
| 149 | fcntl.flock(self.f, fcntl.LOCK_UN) |
| 150 | fcntl.flock(fileno, fcntl.LOCK_EX) |
| 151 | fcntl.flock(fileno, fcntl.LOCK_UN) |
| 152 | |
| 153 | self.assertRaises(ValueError, fcntl.flock, -1, fcntl.LOCK_SH) |
| 154 | self.assertRaises(TypeError, fcntl.flock, 'spam', fcntl.LOCK_SH) |
Serhiy Storchaka | f28ba36 | 2014-02-07 10:10:55 +0200 | [diff] [blame] | 155 | |
Dong-hee Na | 9960230 | 2019-11-19 17:12:42 +0900 | [diff] [blame^] | 156 | @unittest.skipIf(platform.system() == "AIX", "AIX returns PermissionError") |
Dong-hee Na | befa032 | 2019-11-08 05:31:41 +0900 | [diff] [blame] | 157 | def test_lockf_exclusive(self): |
| 158 | self.f = open(TESTFN, 'wb+') |
| 159 | cmd = fcntl.LOCK_EX | fcntl.LOCK_NB |
Dong-hee Na | befa032 | 2019-11-08 05:31:41 +0900 | [diff] [blame] | 160 | fcntl.lockf(self.f, cmd) |
Dong-hee Na | 9960230 | 2019-11-19 17:12:42 +0900 | [diff] [blame^] | 161 | p = Process(target=try_lockf_on_other_process_fail, args=(TESTFN, cmd)) |
Dong-hee Na | befa032 | 2019-11-08 05:31:41 +0900 | [diff] [blame] | 162 | p.start() |
| 163 | p.join() |
| 164 | fcntl.lockf(self.f, fcntl.LOCK_UN) |
| 165 | self.assertEqual(p.exitcode, 0) |
| 166 | |
Dong-hee Na | 9960230 | 2019-11-19 17:12:42 +0900 | [diff] [blame^] | 167 | @unittest.skipIf(platform.system() == "AIX", "AIX returns PermissionError") |
Dong-hee Na | befa032 | 2019-11-08 05:31:41 +0900 | [diff] [blame] | 168 | def test_lockf_share(self): |
| 169 | self.f = open(TESTFN, 'wb+') |
| 170 | cmd = fcntl.LOCK_SH | fcntl.LOCK_NB |
Dong-hee Na | befa032 | 2019-11-08 05:31:41 +0900 | [diff] [blame] | 171 | fcntl.lockf(self.f, cmd) |
Dong-hee Na | 9960230 | 2019-11-19 17:12:42 +0900 | [diff] [blame^] | 172 | p = Process(target=try_lockf_on_other_process, args=(TESTFN, cmd)) |
Dong-hee Na | befa032 | 2019-11-08 05:31:41 +0900 | [diff] [blame] | 173 | p.start() |
| 174 | p.join() |
| 175 | fcntl.lockf(self.f, fcntl.LOCK_UN) |
| 176 | self.assertEqual(p.exitcode, 0) |
| 177 | |
Serhiy Storchaka | f28ba36 | 2014-02-07 10:10:55 +0200 | [diff] [blame] | 178 | @cpython_only |
| 179 | def test_flock_overflow(self): |
| 180 | import _testcapi |
Christian Heimes | 0a956f1 | 2013-12-05 16:13:03 +0100 | [diff] [blame] | 181 | self.assertRaises(OverflowError, fcntl.flock, _testcapi.INT_MAX+1, |
| 182 | fcntl.LOCK_SH) |
| 183 | |
Vinay Sharma | 13f37f2 | 2019-08-29 07:26:17 +0530 | [diff] [blame] | 184 | @unittest.skipIf(sys.platform != 'darwin', "F_GETPATH is only available on macos") |
| 185 | def test_fcntl_f_getpath(self): |
| 186 | self.f = open(TESTFN, 'wb') |
Benjamin Peterson | 465e5d5 | 2019-08-28 22:06:49 -0700 | [diff] [blame] | 187 | expected = os.path.abspath(TESTFN).encode('utf-8') |
| 188 | res = fcntl.fcntl(self.f.fileno(), fcntl.F_GETPATH, bytes(len(expected))) |
| 189 | self.assertEqual(expected, res) |
Fred Drake | bc7809b | 2001-05-09 21:11:59 +0000 | [diff] [blame] | 190 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 191 | def test_main(): |
| 192 | run_unittest(TestFcntl) |
Fred Drake | bc7809b | 2001-05-09 21:11:59 +0000 | [diff] [blame] | 193 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 194 | if __name__ == '__main__': |
| 195 | test_main() |