cha0smaster
48af715f60
* Add check to auto scripts for FUSE to be >= 2.3.0.
...
* Move ntfsmount back to standard programs set.
2005-07-10 12:38:46 +00:00
antona
b942e2c03a
Move ntfsmount to extra programs as it doesn't even approximate being
...
compilable! (At least on my machine which has fuse 2.2.1.)
And I need a working snapshot for Timur.
2005-07-09 21:32:17 +00:00
flatcap
7a142ef54c
got bored. don't read the diffs.
2005-07-06 22:47:01 +00:00
cha0smaster
cb13f36956
Fix typos, patch from debian version of nftsprogs 1.9.4-2.
2005-07-05 16:34:15 +00:00
cha0smaster
3727a729c2
- Add new utility - ntfsmount. It's a FUSE module that rely on libntfs. So,
...
you need FUSE to compile it, xattr is also highly recommended. This module
support file overwrite changing it size and can list/read/write/add/remove
named data streams via xattr interface.
- Update auto{make,conf} stuff respectively.
2005-07-03 00:18:37 +00:00
cha0smaster
3adc040305
Add change protype of ntfs_attr_pwrite: make @b const.
2005-07-02 19:16:18 +00:00
cha0smaster
9deb743974
Optimize a bit previous ntfs_inode_close fix.
2005-07-02 17:48:59 +00:00
cha0smaster
b8e1188102
Fix memory managament error in ntfs_inode_close. ntfs_extent_inode_open
...
allocates buffer for up to 4 extent inodes, to prevent many reallocates.
But ntfs_inode_close always reallocate buffer to store exactly @nr_extents
inodes. Bug will arise in following scenario:
1) ntfs_extent_inode_open (1 extent, allocate buffer for 4)
2) ntfs_extent_inode_open (2 extents, use already allocated buffer)
3) ntfs_inode_close(extent_ni) (1 extent, reallocate buffer for 1 extent)
4) ntfs_extent_inode_open (2 extents, don't reallocate buffer because it should be for 4 elements, but really it's for 1, write to unitialized space, segfault)
2005-07-02 13:58:02 +00:00
cha0smaster
fbe45ebac6
Fix valgrind varning about writing unitialized buffer.
2005-07-02 13:47:29 +00:00
szaka
70530ad551
ntfs_inode_close(): ElectricFence is unhappy with realloc(x,0) as free(x)
...
thus we distinguish these two cases
2005-06-27 20:30:09 +00:00
szaka
d8dd64d425
Correct ntfs_inode_sync_file_name comment typos
2005-06-25 13:15:12 +00:00
antona
31a8750c4d
Fix compiler warnings in libntfs when compiling under cygwin.
2005-06-21 09:55:15 +00:00
antona
ca873f0474
Eeek. Someone did a commit just as I was about to commit so the commit
...
message was lost! )-:
Now again...
Monster commit from me due to lack of time. Sorry about that.
Features:
- Version to 1.10.0
- Update readme, etc ready for release.
- Update build system to suse linux 9.3 versions.
- Fix warnings appearing for me on suse 9.3 with --enable-warnings --enable-debug.
- Set attr_name to NULL in libntfs/attrib.c::__ntfs_attr_init() and fixup all
callers apropriately. Thanks to FlatCap/Rich for pointing this out.
- Determine endianness in ./configure and use that in addition to existing
mechanisms for determining endianness.
2005-06-20 14:31:30 +00:00
flatcap
09936e5c22
typos
2005-06-20 14:23:50 +00:00
flatcap
086fd4cc0c
probably a bug in __ntfs_attr_init
2005-06-20 14:23:27 +00:00
flatcap
949043ab36
Tidy whitespace: trailing space; <space><tab> at the beginning of lines
...
Fix warnings about sign differences
Fix warnings about unused parameters
Tidy a few functions that didn't have { on a new line
2005-06-19 21:09:40 +00:00
antona
cc992ab0f6
Add more things to .cvsignore files.
2005-06-19 13:20:40 +00:00
cha0smaster
e323ed6a03
Move utils_pathname_to_inode from to library (dir.c), adapt it for library, rename it to ntfs_pathname_to_inode, update all users.
2005-06-12 18:12:55 +00:00
cha0smaster
b1dfa2b306
- Fix memleak in ntfs_attr_pwrite
...
- Update layout.h a bit to be a kernel driver like.
2005-06-12 15:23:25 +00:00
cha0smaster
676d8782e8
- Update attribute definition handling. (Anton, Yura)
2005-06-09 22:09:39 +00:00
flatcap
554b27dd47
ignore built/generated files
2005-06-09 09:05:30 +00:00
cha0smaster
373e47acb5
Fix coding style.
2005-06-08 18:02:29 +00:00
antona
dd52588aae
Use dynamic buffer in ntfs_device_win32_find_partition().
...
Based on patch from Yuval.
2005-06-06 14:51:09 +00:00
antona
1aeb91827c
Update build for changes to function detection in configure.ac.
2005-06-06 14:31:37 +00:00
antona
62a4484a94
Finally fix the win32 write support problems.
2005-06-06 14:30:38 +00:00
cha0smaster
d2ed58e6a2
Anyway, this extra check will not harm anybody, but in case windows support such names it's will be useful.
2005-06-06 04:26:28 +00:00
cha0smaster
410432bc9d
- Fix bug in index.c pointed by Anton, many thanks to him.
...
- Small updates all over the place:
* NEWS
* ntfscp manual page
* ntfsinfo prints parent directory for FILE_NAME attribute
* year in ntfscp copyright
2005-06-05 23:48:55 +00:00
cha0smaster
4b000b3d13
- Implement FILE_NAME attributes update in index during inode sync and enable code that set/clean sparse bit. Also add new inode state bit FileNameDirty to indicate that FILE_NAME attributes need update. At least after attribute resize we leave absolutely consist volume.
...
- Bugfixes to collate.c and index.c.
- Minor formating fixed to ntfscp and ntfsinfo.
2005-06-05 14:55:08 +00:00
cha0smaster
048a1857be
Fix some bugs and warnings in code that I commited tonight.
2005-06-04 15:20:00 +00:00
cha0smaster
2d8dc1736d
- Port collate.[ch] from kernel to library and implement
...
2005-06-04 00:57:58 +00:00
antona
d530c02e49
Ooops. Forgot to actually use our fnSetFilePointerEx() instead of
...
SetFilePointerEx() directly...
2005-06-03 10:33:35 +00:00
antona
b8a543a27e
Do dynamic run-time detection of SetFilePointerEx() instead of defunct
...
autoconf crap.
Also, fix a really stupid bug in the emulated SetFilePointerEx() which caused
the segfaults. (It unconditionally wrote to a pointer even when it was NULL.)
2005-06-03 10:27:32 +00:00
szaka
fbbefe0c70
- read-write ntfs_mount() returns EPERM if the partition is hibernated
2005-05-10 16:53:48 +00:00
szaka
16ffe6063d
- remark that Longhorn uses the same NTFS 3.1 format as XP and W2K3
2005-05-10 16:44:58 +00:00
cantab.net!aia21
307659837c
Major rewrite, in particular seek, read, and write related code.
...
(Logical change 1.698)
2005-04-22 13:52:16 +00:00
cantab.net!aia21
ac13794c54
Update with SUSE 9.3 build tools.
...
(Logical change 1.696)
2005-04-19 12:00:26 +00:00
elisa-laajakaista.fi!szaka
e9159478ea
ntfsfix: use getopt, added --help and --version, some output cleanup
...
(Logical change 1.679)
2005-02-19 19:34:37 +00:00
void!yura
03a03359a1
Fix memleak in ntfs_attr_update_mapping_pairs
...
(Logical change 1.678)
2005-02-17 18:01:56 +00:00
cantab.net!aia21
9028469456
Fix a nasty runlist merge bug when merging two holes. (Anton)
...
(Logical change 1.677)
2005-02-17 17:03:50 +00:00
void!yura
51a83b1699
don't check logfile for readonly mounts
...
(Logical change 1.673)
2005-02-01 18:26:17 +00:00
void!yura
3ca5f1fc5d
integrate logfile checking with mount
...
(Logical change 1.672)
2005-01-30 18:13:25 +00:00
void!yura
ed945d174c
I realized that my previous chanset fixed one bug, but introduced new one.
...
This will fix both (I hope) and beautificaty function look a bit.
(Logical change 1.671)
2005-01-28 13:48:19 +00:00
void!yura
03dcb59a6b
Fix rare occuring bug in ntfs_attrlist_entry_add. Read updated comment if interesting.
...
(Logical change 1.670)
2005-01-27 18:35:43 +00:00
void!yura
98ac77e115
ntfs_inode_attach_all_extents: don't try to attach base inode to itself and optimize algorithm a bit.
...
(Logical change 1.669)
2005-01-27 18:31:08 +00:00
void!yura
e89f48810a
Fix stupid bug trying to sync standard information for not base inode.
...
(Logical change 1.667)
2005-01-26 23:37:25 +00:00
void!yura
317f6f4b62
Make ntfs_logfile_reset use ntfs_empty_logfile.
...
(Logical change 1.666)
2005-01-25 21:41:25 +00:00
void!yura
e2ed469c89
Initial revision
2005-01-25 21:41:25 +00:00
void!yura
0def64e981
(Logical change 1.666)
2005-01-25 21:41:25 +00:00
void!yura
39e6fa1339
Add logfile.c to build
...
(Logical change 1.665)
2005-01-25 19:46:51 +00:00
cantab.net!aia21
9fca23feb2
Fix type casts after Yura's prototype changes.
...
(Logical change 1.664)
2005-01-19 10:31:46 +00:00