2 * The freedesktop.org Trash, implemented using the 0.7 spec version
3 * (see http://www.ramendik.ru/docs/trashspec.html)
5 * Copyright (C) 2006 Mikolaj Zalewski
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #ifdef HAVE_SYS_STAT_H
26 # include <sys/stat.h>
28 #include <sys/types.h>
46 #include "wine/debug.h"
47 #include "shell32_main.h"
50 WINE_DEFAULT_DEBUG_CHANNEL(trash
);
52 static CRITICAL_SECTION TRASH_Creating
;
53 static CRITICAL_SECTION_DEBUG TRASH_Creating_Debug
=
55 0, 0, &TRASH_Creating
,
56 { &TRASH_Creating_Debug
.ProcessLocksList
,
57 &TRASH_Creating_Debug
.ProcessLocksList
},
58 0, 0, { (DWORD_PTR
)__FILE__
": TRASH_Creating"}
60 static CRITICAL_SECTION TRASH_Creating
= { &TRASH_Creating_Debug
, -1, 0, 0, 0, 0 };
62 static const char trashinfo_suffix
[] = ".trashinfo";
63 static const char trashinfo_header
[] = "[Trash Info]\n";
64 static const char trashinfo_group
[] = "Trash Info";
73 static TRASH_BUCKET
*home_trash
=NULL
;
75 static char *init_home_dir(const char *subpath
)
77 char *path
= XDG_BuildPath(XDG_DATA_HOME
, subpath
);
78 if (path
== NULL
) return NULL
;
79 if (!XDG_MakeDirs(path
))
81 ERR("Couldn't create directory %s (errno=%d). Trash won't be available\n", debugstr_a(path
), errno
);
88 static TRASH_BUCKET
*TRASH_CreateHomeBucket(void)
91 struct stat trash_stat
;
92 char *trash_path
= NULL
;
94 bucket
= SHAlloc(sizeof(TRASH_BUCKET
));
100 memset(bucket
, 0, sizeof(*bucket
));
101 bucket
->info_dir
= init_home_dir("Trash/info/");
102 if (bucket
->info_dir
== NULL
) goto error
;
103 bucket
->files_dir
= init_home_dir("Trash/files/");
104 if (bucket
->files_dir
== NULL
) goto error
;
106 trash_path
= XDG_BuildPath(XDG_DATA_HOME
, "Trash/");
107 if (stat(trash_path
, &trash_stat
) == -1)
109 bucket
->device
= trash_stat
.st_dev
;
116 SHFree(bucket
->info_dir
);
117 SHFree(bucket
->files_dir
);
123 static BOOL
TRASH_EnsureInitialized(void)
125 if (home_trash
== NULL
)
127 EnterCriticalSection(&TRASH_Creating
);
128 if (home_trash
== NULL
)
129 home_trash
= TRASH_CreateHomeBucket();
130 LeaveCriticalSection(&TRASH_Creating
);
133 if (home_trash
== NULL
)
135 ERR("Couldn't initialize home trash (errno=%d)\n", errno
);
141 static BOOL
file_good_for_bucket(const TRASH_BUCKET
*pBucket
, const struct stat
*file_stat
)
143 if (pBucket
->device
!= file_stat
->st_dev
)
148 BOOL
TRASH_CanTrashFile(LPCWSTR wszPath
)
150 struct stat file_stat
;
153 TRACE("(%s)\n", debugstr_w(wszPath
));
154 if (!TRASH_EnsureInitialized()) return FALSE
;
155 if (!(unix_path
= wine_get_unix_file_name(wszPath
)))
157 if (lstat(unix_path
, &file_stat
)==-1)
159 HeapFree(GetProcessHeap(), 0, unix_path
);
162 HeapFree(GetProcessHeap(), 0, unix_path
);
163 return file_good_for_bucket(home_trash
, &file_stat
);
167 * Try to create a single .trashinfo file. Return TRUE if successful, else FALSE
169 static BOOL
try_create_trashinfo_file(const char *info_dir
, const char *file_name
,
170 const char *original_file_name
)
173 time_t curr_time_secs
;
175 char *path
= SHAlloc(strlen(info_dir
)+strlen(file_name
)+strlen(trashinfo_suffix
)+1);
178 if (path
==NULL
) return FALSE
;
179 wsprintfA(path
, "%s%s%s", info_dir
, file_name
, trashinfo_suffix
);
180 TRACE("Trying to create '%s'\n", path
);
181 writer
= open(path
, O_CREAT
|O_WRONLY
|O_TRUNC
|O_EXCL
, 0600);
182 if (writer
==-1) goto error
;
184 write(writer
, trashinfo_header
, strlen(trashinfo_header
));
185 if (!XDG_WriteDesktopStringEntry(writer
, "Path", XDG_URLENCODE
, original_file_name
))
188 time(&curr_time_secs
);
189 localtime_r(&curr_time_secs
, &curr_time
);
190 wnsprintfA(datebuf
, 200, "%04d-%02d-%02dT%02d:%02d:%02d",
191 curr_time
.tm_year
+1900,
197 if (!XDG_WriteDesktopStringEntry(writer
, "DeletionDate", 0, datebuf
))
214 * Try to create a .trashinfo file. This function will make several attempts with
215 * different filenames. It will return the filename that succeded or NULL if a file
216 * couldn't be created.
218 static char *create_trashinfo(const char *info_dir
, const char *file_path
)
220 const char *base_name
;
221 char *filename_buffer
;
222 unsigned int seed
= (unsigned int)time(NULL
);
225 errno
= ENOMEM
; /* out-of-memory is the only case when errno isn't set */
226 base_name
= strrchr(file_path
, '/');
227 if (base_name
== NULL
)
228 base_name
= file_path
;
232 filename_buffer
= SHAlloc(strlen(base_name
)+9+1);
233 if (filename_buffer
== NULL
)
235 lstrcpyA(filename_buffer
, base_name
);
236 if (try_create_trashinfo_file(info_dir
, filename_buffer
, file_path
))
237 return filename_buffer
;
240 sprintf(filename_buffer
, "%s-%d", base_name
, i
+1);
241 if (try_create_trashinfo_file(info_dir
, filename_buffer
, file_path
))
242 return filename_buffer
;
245 for (i
=0; i
<1000; i
++)
247 sprintf(filename_buffer
, "%s-%08x", base_name
, rand_r(&seed
));
248 if (try_create_trashinfo_file(info_dir
, filename_buffer
, file_path
))
249 return filename_buffer
;
252 WARN("Couldn't create trashinfo after 1031 tries (errno=%d)\n", errno
);
253 SHFree(filename_buffer
);
257 static void remove_trashinfo_file(const char *info_dir
, const char *base_name
)
259 char *filename_buffer
;
261 filename_buffer
= SHAlloc(lstrlenA(info_dir
)+lstrlenA(base_name
)+lstrlenA(trashinfo_suffix
)+1);
262 if (filename_buffer
== NULL
) return;
263 sprintf(filename_buffer
, "%s%s%s", info_dir
, base_name
, trashinfo_suffix
);
264 unlink(filename_buffer
);
265 SHFree(filename_buffer
);
268 static BOOL
TRASH_MoveFileToBucket(TRASH_BUCKET
*pBucket
, const char *unix_path
)
270 struct stat file_stat
;
271 char *trash_file_name
= NULL
;
272 char *trash_path
= NULL
;
275 if (lstat(unix_path
, &file_stat
)==-1)
277 if (!file_good_for_bucket(pBucket
, &file_stat
))
280 trash_file_name
= create_trashinfo(pBucket
->info_dir
, unix_path
);
281 if (trash_file_name
== NULL
)
284 trash_path
= SHAlloc(strlen(pBucket
->files_dir
)+strlen(trash_file_name
)+1);
285 if (trash_path
== NULL
) goto error
;
286 lstrcpyA(trash_path
, pBucket
->files_dir
);
287 lstrcatA(trash_path
, trash_file_name
);
289 if (rename(unix_path
, trash_path
)==0)
291 TRACE("rename succeded\n");
295 /* TODO: try to manually move the file */
296 ERR("Couldn't move file\n");
299 remove_trashinfo_file(pBucket
->info_dir
, trash_file_name
);
301 SHFree(trash_file_name
);
306 BOOL
TRASH_TrashFile(LPCWSTR wszPath
)
311 TRACE("(%s)\n", debugstr_w(wszPath
));
312 if (!TRASH_EnsureInitialized()) return FALSE
;
313 if (!(unix_path
= wine_get_unix_file_name(wszPath
)))
315 result
= TRASH_MoveFileToBucket(home_trash
, unix_path
);
316 HeapFree(GetProcessHeap(), 0, unix_path
);
321 * The item ID of a trashed element is built as follows:
322 * NUL byte - in most PIDLs the first byte is the type so we keep it constant
323 * WIN32_FIND_DATAW structure - with data about original file attributes
324 * bucket name - currently only an empty string meaning the home bucket is supported
325 * trash file name - a NUL-terminated string
327 struct tagTRASH_ELEMENT
329 TRASH_BUCKET
*bucket
;
333 static HRESULT
TRASH_CreateSimplePIDL(const TRASH_ELEMENT
*element
, const WIN32_FIND_DATAW
*data
, LPITEMIDLIST
*pidlOut
)
335 LPITEMIDLIST pidl
= SHAlloc(2+1+sizeof(WIN32_FIND_DATAW
)+1+lstrlenA(element
->filename
)+1+2);
338 return E_OUTOFMEMORY
;
339 pidl
->mkid
.cb
= (USHORT
)(2+1+sizeof(WIN32_FIND_DATAW
)+1+lstrlenA(element
->filename
)+1);
340 pidl
->mkid
.abID
[0] = 0;
341 memcpy(pidl
->mkid
.abID
+1, data
, sizeof(WIN32_FIND_DATAW
));
342 pidl
->mkid
.abID
[1+sizeof(WIN32_FIND_DATAW
)] = 0;
343 lstrcpyA((LPSTR
)(pidl
->mkid
.abID
+1+sizeof(WIN32_FIND_DATAW
)+1), element
->filename
);
344 *(USHORT
*)(pidl
->mkid
.abID
+1+sizeof(WIN32_FIND_DATAW
)+1+lstrlenA(element
->filename
)+1) = 0;
349 /***********************************************************************
350 * TRASH_UnpackItemID [Internal]
353 * Extract the information stored in an Item ID. The TRASH_ELEMENT
354 * identifies the element in the Trash. The WIN32_FIND_DATA contains the
355 * information about the original file. The data->ftLastAccessTime contains
359 * [I] id : the ID of the item
360 * [O] element : the trash element this item id contains. Can be NULL if not needed
361 * [O] data : the WIN32_FIND_DATA of the original file. Can be NULL is not needed
363 HRESULT
TRASH_UnpackItemID(LPCSHITEMID id
, TRASH_ELEMENT
*element
, WIN32_FIND_DATAW
*data
)
365 if (id
->cb
< 2+1+sizeof(WIN32_FIND_DATAW
)+2)
367 if (id
->abID
[0] != 0 || id
->abID
[1+sizeof(WIN32_FIND_DATAW
)] != 0)
369 if (memchr(id
->abID
+1+sizeof(WIN32_FIND_DATAW
)+1, 0, id
->cb
-(2+1+sizeof(WIN32_FIND_DATAW
)+1)) == NULL
)
373 *data
= *(WIN32_FIND_DATAW
*)(id
->abID
+1);
376 element
->bucket
= home_trash
;
377 element
->filename
= StrDupA((LPCSTR
)(id
->abID
+1+sizeof(WIN32_FIND_DATAW
)+1));
378 if (element
->filename
== NULL
)
379 return E_OUTOFMEMORY
;
384 void TRASH_DisposeElement(TRASH_ELEMENT
*element
)
386 SHFree(element
->filename
);
389 static HRESULT
TRASH_GetDetails(const TRASH_ELEMENT
*element
, WIN32_FIND_DATAW
*data
)
392 XDG_PARSED_FILE
*parsed
= NULL
;
393 char *original_file_name
= NULL
;
394 char *deletion_date
= NULL
;
397 HRESULT ret
= S_FALSE
;
398 LPWSTR original_dos_name
;
399 int suffix_length
= lstrlenA(trashinfo_suffix
);
400 int filename_length
= lstrlenA(element
->filename
);
401 int files_length
= lstrlenA(element
->bucket
->files_dir
);
402 int path_length
= max(lstrlenA(element
->bucket
->info_dir
), files_length
);
404 path
= SHAlloc(path_length
+ filename_length
+ 1);
405 if (path
== NULL
) return E_OUTOFMEMORY
;
406 wsprintfA(path
, "%s%s", element
->bucket
->files_dir
, element
->filename
);
407 path
[path_length
+ filename_length
- suffix_length
] = 0; /* remove the '.trashinfo' */
408 if (lstat(path
, &stats
) == -1)
410 ERR("Error accessing data file for trashinfo %s (errno=%d)\n", element
->filename
, errno
);
414 wsprintfA(path
, "%s%s", element
->bucket
->info_dir
, element
->filename
);
415 fd
= open(path
, O_RDONLY
);
418 ERR("Couldn't open trashinfo file %s (errno=%d)\n", path
, errno
);
422 parsed
= XDG_ParseDesktopFile(fd
);
425 ERR("Parse error in trashinfo file %s\n", path
);
429 original_file_name
= XDG_GetStringValue(parsed
, trashinfo_group
, "Path", XDG_URLENCODE
);
430 if (original_file_name
== NULL
)
432 ERR("No 'Path' entry in trashinfo file\n");
436 ZeroMemory(data
, sizeof(*data
));
437 data
->nFileSizeHigh
= (DWORD
)((LONGLONG
)stats
.st_size
>>32);
438 data
->nFileSizeLow
= stats
.st_size
& 0xffffffff;
439 RtlSecondsSince1970ToTime(stats
.st_mtime
, (LARGE_INTEGER
*)&data
->ftLastWriteTime
);
441 original_dos_name
= wine_get_dos_file_name(original_file_name
);
442 if (original_dos_name
!= NULL
)
444 lstrcpynW(data
->cFileName
, original_dos_name
, MAX_PATH
);
445 SHFree(original_dos_name
);
449 /* show only the file name */
450 char *filename
= strrchr(original_file_name
, '/');
451 if (filename
== NULL
)
452 filename
= original_file_name
;
453 MultiByteToWideChar(CP_UNIXCP
, 0, filename
, -1, data
->cFileName
, MAX_PATH
);
456 deletion_date
= XDG_GetStringValue(parsed
, trashinfo_group
, "DeletionDate", 0);
462 sscanf(deletion_date
, "%d-%d-%dT%d:%d:%d",
463 &del_time
.tm_year
, &del_time
.tm_mon
, &del_time
.tm_mday
,
464 &del_time
.tm_hour
, &del_time
.tm_min
, &del_time
.tm_sec
);
465 del_time
.tm_year
-= 1900;
467 del_secs
= mktime(&del_time
);
469 RtlSecondsSince1970ToTime(del_secs
, (LARGE_INTEGER
*)&data
->ftLastAccessTime
);
475 SHFree(original_file_name
);
476 SHFree(deletion_date
);
479 XDG_FreeParsedFile(parsed
);
483 static INT CALLBACK
free_item_callback(void *item
, void *lParam
)
489 static HDPA
enum_bucket_trashinfos(const TRASH_BUCKET
*bucket
, int *count
)
491 HDPA ret
= DPA_Create(32);
492 struct dirent
*entry
;
497 if (ret
== NULL
) goto failed
;
498 dir
= opendir(bucket
->info_dir
);
499 if (dir
== NULL
) goto failed
;
500 while ((entry
= readdir(dir
)) != NULL
)
503 int namelen
= lstrlenA(entry
->d_name
);
504 int suffixlen
= lstrlenA(trashinfo_suffix
);
505 if (namelen
<= suffixlen
||
506 lstrcmpA(entry
->d_name
+namelen
-suffixlen
, trashinfo_suffix
) != 0)
509 filename
= StrDupA(entry
->d_name
);
510 if (filename
== NULL
)
512 if (DPA_InsertPtr(ret
, DPA_APPEND
, filename
) == -1)
522 if (dir
) closedir(dir
);
524 DPA_DestroyCallback(ret
, free_item_callback
, NULL
);
528 HRESULT
TRASH_EnumItems(LPITEMIDLIST
**pidls
, int *count
)
532 HRESULT err
= E_OUTOFMEMORY
;
535 if (!TRASH_EnsureInitialized()) return E_FAIL
;
536 tinfs
= enum_bucket_trashinfos(home_trash
, &ti_count
);
537 if (tinfs
== NULL
) return E_FAIL
;
538 *pidls
= SHAlloc(sizeof(LPITEMIDLIST
)*ti_count
);
539 if (!*pidls
) goto failed
;
540 for (i
=0; i
<ti_count
; i
++)
542 WIN32_FIND_DATAW data
;
545 elem
.bucket
= home_trash
;
546 elem
.filename
= DPA_GetPtr(tinfs
, i
);
547 if (FAILED(err
= TRASH_GetDetails(&elem
, &data
)))
551 if (FAILED(err
= TRASH_CreateSimplePIDL(&elem
, &data
, &(*pidls
)[pos
])))
556 DPA_DestroyCallback(tinfs
, free_item_callback
, NULL
);
562 for (j
=0; j
<pos
; j
++)
566 DPA_DestroyCallback(tinfs
, free_item_callback
, NULL
);