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
24 #include <sys/types.h>
40 #include "wine/debug.h"
41 #include "shell32_main.h"
44 WINE_DEFAULT_DEBUG_CHANNEL(trash
);
46 static CRITICAL_SECTION TRASH_Creating
;
47 static CRITICAL_SECTION_DEBUG TRASH_Creating_Debug
=
49 0, 0, &TRASH_Creating
,
50 { &TRASH_Creating_Debug
.ProcessLocksList
,
51 &TRASH_Creating_Debug
.ProcessLocksList
},
52 0, 0, { (DWORD_PTR
)__FILE__
": TRASH_Creating"}
54 static CRITICAL_SECTION TRASH_Creating
= { &TRASH_Creating_Debug
, -1, 0, 0, 0, 0 };
56 static const char trashinfo_suffix
[] = ".trashinfo";
57 static const char trashinfo_header
[] = "[Trash Info]\n";
58 static const char trashinfo_group
[] = "Trash Info";
67 static TRASH_BUCKET
*home_trash
=NULL
;
69 static char *init_home_dir(const char *subpath
)
71 char *path
= XDG_BuildPath(XDG_DATA_HOME
, subpath
);
72 if (path
== NULL
) return NULL
;
73 if (!XDG_MakeDirs(path
))
75 ERR("Couldn't create directory %s (errno=%d). Trash won't be available\n", debugstr_a(path
), errno
);
82 static TRASH_BUCKET
*TRASH_CreateHomeBucket(void)
85 struct stat trash_stat
;
86 char *trash_path
= NULL
;
88 bucket
= SHAlloc(sizeof(TRASH_BUCKET
));
94 memset(bucket
, 0, sizeof(*bucket
));
95 bucket
->info_dir
= init_home_dir("Trash/info/");
96 if (bucket
->info_dir
== NULL
) goto error
;
97 bucket
->files_dir
= init_home_dir("Trash/files/");
98 if (bucket
->files_dir
== NULL
) goto error
;
100 trash_path
= XDG_BuildPath(XDG_DATA_HOME
, "Trash/");
101 if (stat(trash_path
, &trash_stat
) == -1)
103 bucket
->device
= trash_stat
.st_dev
;
110 SHFree(bucket
->info_dir
);
111 SHFree(bucket
->files_dir
);
117 static BOOL
TRASH_EnsureInitialized(void)
119 if (home_trash
== NULL
)
121 EnterCriticalSection(&TRASH_Creating
);
122 if (home_trash
== NULL
)
123 home_trash
= TRASH_CreateHomeBucket();
124 LeaveCriticalSection(&TRASH_Creating
);
127 if (home_trash
== NULL
)
129 ERR("Couldn't initialize home trash (errno=%d)\n", errno
);
135 static BOOL
file_good_for_bucket(TRASH_BUCKET
*pBucket
, struct stat
*file_stat
)
137 if (pBucket
->device
!= file_stat
->st_dev
)
142 BOOL
TRASH_CanTrashFile(LPCWSTR wszPath
)
144 struct stat file_stat
;
147 TRACE("(%s)\n", debugstr_w(wszPath
));
148 if (!TRASH_EnsureInitialized()) return FALSE
;
149 if (!(unix_path
= wine_get_unix_file_name(wszPath
)))
151 if (lstat(unix_path
, &file_stat
)==-1)
153 HeapFree(GetProcessHeap(), 0, unix_path
);
156 HeapFree(GetProcessHeap(), 0, unix_path
);
157 return file_good_for_bucket(home_trash
, &file_stat
);
161 * Try to create a single .trashinfo file. Return TRUE if successful, else FALSE
163 static BOOL
try_create_trashinfo_file(const char *info_dir
, const char *file_name
,
164 const char *original_file_name
)
167 time_t curr_time_secs
;
169 char *path
= SHAlloc(strlen(info_dir
)+strlen(file_name
)+strlen(trashinfo_suffix
)+1);
172 if (path
==NULL
) return FALSE
;
173 wsprintfA(path
, "%s%s%s", info_dir
, file_name
, trashinfo_suffix
);
174 TRACE("Trying to create '%s'\n", path
);
175 writer
= open(path
, O_CREAT
|O_WRONLY
|O_TRUNC
|O_EXCL
, 0600);
176 if (writer
==-1) goto error
;
178 write(writer
, trashinfo_header
, strlen(trashinfo_header
));
179 if (!XDG_WriteDesktopStringEntry(writer
, "Path", XDG_URLENCODE
, original_file_name
))
182 time(&curr_time_secs
);
183 localtime_r(&curr_time_secs
, &curr_time
);
184 wnsprintfA(datebuf
, 200, "%04d-%02d-%02dT%02d:%02d:%02d",
185 curr_time
.tm_year
+1900,
191 if (!XDG_WriteDesktopStringEntry(writer
, "DeletionDate", 0, datebuf
))
208 * Try to create a .trashinfo file. This function will make several attempts with
209 * different filenames. It will return the filename that succeded or NULL if a file
210 * couldn't be created.
212 static char *create_trashinfo(const char *info_dir
, const char *file_path
)
214 const char *base_name
;
215 char *filename_buffer
;
216 unsigned int seed
= (unsigned int)time(NULL
);
219 errno
= ENOMEM
; /* out-of-memory is the only case when errno isn't set */
220 base_name
= strrchr(file_path
, '/');
221 if (base_name
== NULL
)
222 base_name
= file_path
;
226 filename_buffer
= SHAlloc(strlen(base_name
)+9+1);
227 if (filename_buffer
== NULL
)
229 lstrcpyA(filename_buffer
, base_name
);
230 if (try_create_trashinfo_file(info_dir
, filename_buffer
, file_path
))
231 return filename_buffer
;
234 sprintf(filename_buffer
, "%s-%d", base_name
, i
+1);
235 if (try_create_trashinfo_file(info_dir
, filename_buffer
, file_path
))
236 return filename_buffer
;
239 for (i
=0; i
<1000; i
++)
241 sprintf(filename_buffer
, "%s-%08x", base_name
, rand_r(&seed
));
242 if (try_create_trashinfo_file(info_dir
, filename_buffer
, file_path
))
243 return filename_buffer
;
246 WARN("Couldn't create trashinfo after 1031 tries (errno=%d)\n", errno
);
247 SHFree(filename_buffer
);
251 void remove_trashinfo_file(const char *info_dir
, const char *base_name
)
253 char *filename_buffer
;
255 filename_buffer
= SHAlloc(lstrlenA(info_dir
)+lstrlenA(base_name
)+lstrlenA(trashinfo_suffix
)+1);
256 if (filename_buffer
== NULL
) return;
257 sprintf(filename_buffer
, "%s%s%s", info_dir
, base_name
, trashinfo_suffix
);
258 unlink(filename_buffer
);
259 SHFree(filename_buffer
);
262 static BOOL
TRASH_MoveFileToBucket(TRASH_BUCKET
*pBucket
, const char *unix_path
)
264 struct stat file_stat
;
265 char *trash_file_name
= NULL
;
266 char *trash_path
= NULL
;
269 if (lstat(unix_path
, &file_stat
)==-1)
271 if (!file_good_for_bucket(pBucket
, &file_stat
))
274 trash_file_name
= create_trashinfo(pBucket
->info_dir
, unix_path
);
275 if (trash_file_name
== NULL
)
278 trash_path
= SHAlloc(strlen(pBucket
->files_dir
)+strlen(trash_file_name
)+1);
279 if (trash_path
== NULL
) goto error
;
280 lstrcpyA(trash_path
, pBucket
->files_dir
);
281 lstrcatA(trash_path
, trash_file_name
);
283 if (rename(unix_path
, trash_path
)==0)
285 TRACE("rename succeded\n");
289 /* TODO: try to manually move the file */
290 ERR("Couldn't move file\n");
293 remove_trashinfo_file(pBucket
->info_dir
, trash_file_name
);
295 SHFree(trash_file_name
);
300 BOOL
TRASH_TrashFile(LPCWSTR wszPath
)
305 TRACE("(%s)\n", debugstr_w(wszPath
));
306 if (!TRASH_EnsureInitialized()) return FALSE
;
307 if (!(unix_path
= wine_get_unix_file_name(wszPath
)))
309 result
= TRASH_MoveFileToBucket(home_trash
, unix_path
);
310 HeapFree(GetProcessHeap(), 0, unix_path
);
315 * The item ID of a trashed element is built as follows:
316 * NUL byte - in most PIDLs the first byte is the type so we keep it constant
317 * WIN32_FIND_DATAW structure - with data about original file attributes
318 * bucket name - currently only an empty string meaning the home bucket is supported
319 * trash file name - a NUL-terminated string
321 struct tagTRASH_ELEMENT
323 TRASH_BUCKET
*bucket
;
327 static HRESULT
TRASH_CreateSimplePIDL(const TRASH_ELEMENT
*element
, const WIN32_FIND_DATAW
*data
, LPITEMIDLIST
*pidlOut
)
329 LPITEMIDLIST pidl
= SHAlloc(2+1+sizeof(WIN32_FIND_DATAW
)+1+lstrlenA(element
->filename
)+1+2);
332 return E_OUTOFMEMORY
;
333 pidl
->mkid
.cb
= (USHORT
)(2+1+sizeof(WIN32_FIND_DATAW
)+1+lstrlenA(element
->filename
)+1);
334 pidl
->mkid
.abID
[0] = 0;
335 memcpy(pidl
->mkid
.abID
+1, data
, sizeof(WIN32_FIND_DATAW
));
336 pidl
->mkid
.abID
[1+sizeof(WIN32_FIND_DATAW
)] = 0;
337 lstrcpyA((LPSTR
)(pidl
->mkid
.abID
+1+sizeof(WIN32_FIND_DATAW
)+1), element
->filename
);
338 *(USHORT
*)(pidl
->mkid
.abID
+1+sizeof(WIN32_FIND_DATAW
)+1+lstrlenA(element
->filename
)+1) = 0;
343 /***********************************************************************
344 * TRASH_UnpackItemID [Internal]
347 * Extract the information stored in an Item ID. The TRASH_ELEMENT
348 * identifies the element in the Trash. The WIN32_FIND_DATA contains the
349 * information about the original file. The data->ftLastAccessTime contains
353 * [I] id : the ID of the item
354 * [O] element : the trash element this item id contains. Can be NULL if not needed
355 * [O] data : the WIN32_FIND_DATA of the original file. Can be NULL is not needed
357 HRESULT
TRASH_UnpackItemID(LPCSHITEMID id
, TRASH_ELEMENT
*element
, WIN32_FIND_DATAW
*data
)
359 if (id
->cb
< 2+1+sizeof(WIN32_FIND_DATAW
)+2)
361 if (id
->abID
[0] != 0 || id
->abID
[1+sizeof(WIN32_FIND_DATAW
)] != 0)
363 if (memchr(id
->abID
+1+sizeof(WIN32_FIND_DATAW
)+1, 0, id
->cb
-(2+1+sizeof(WIN32_FIND_DATAW
)+1)) == NULL
)
367 *data
= *(WIN32_FIND_DATAW
*)(id
->abID
+1);
370 element
->bucket
= home_trash
;
371 element
->filename
= StrDupA((LPCSTR
)(id
->abID
+1+sizeof(WIN32_FIND_DATAW
)+1));
372 if (element
->filename
== NULL
)
373 return E_OUTOFMEMORY
;
378 void TRASH_DisposeElement(TRASH_ELEMENT
*element
)
381 SHFree(element
->filename
);
384 HRESULT
TRASH_GetDetails(const TRASH_ELEMENT
*element
, WIN32_FIND_DATAW
*data
)
387 XDG_PARSED_FILE
*parsed
= NULL
;
388 char *original_file_name
= NULL
;
389 char *deletion_date
= NULL
;
392 HRESULT ret
= S_FALSE
;
393 LPWSTR original_dos_name
;
394 int suffix_length
= lstrlenA(trashinfo_suffix
);
395 int filename_length
= lstrlenA(element
->filename
);
396 int files_length
= lstrlenA(element
->bucket
->files_dir
);
397 int path_length
= max(lstrlenA(element
->bucket
->info_dir
), files_length
);
399 path
= SHAlloc(path_length
+ filename_length
+ 1);
400 if (path
== NULL
) return E_OUTOFMEMORY
;
401 wsprintfA(path
, "%s%s", element
->bucket
->files_dir
, element
->filename
);
402 path
[path_length
+ filename_length
- suffix_length
] = 0; /* remove the '.trashinfo' */
403 if (lstat(path
, &stats
) == -1)
405 ERR("Error accessing data file for trashinfo %s (errno=%d)\n", element
->filename
, errno
);
409 wsprintfA(path
, "%s%s", element
->bucket
->info_dir
, element
->filename
);
410 fd
= open(path
, O_RDONLY
);
413 ERR("Couldn't open trashinfo file %s (errno=%d)\n", path
, errno
);
417 parsed
= XDG_ParseDesktopFile(fd
);
420 ERR("Parse error in trashinfo file %s\n", path
);
424 original_file_name
= XDG_GetStringValue(parsed
, trashinfo_group
, "Path", XDG_URLENCODE
);
425 if (original_file_name
== NULL
)
427 ERR("No 'Path' entry in trashinfo file\n");
431 ZeroMemory(data
, sizeof(*data
));
432 data
->nFileSizeHigh
= (DWORD
)((LONGLONG
)stats
.st_size
>>32);
433 data
->nFileSizeLow
= stats
.st_size
& 0xffffffff;
434 RtlSecondsSince1970ToTime(stats
.st_mtime
, (LARGE_INTEGER
*)&data
->ftLastWriteTime
);
436 original_dos_name
= wine_get_dos_file_name(original_file_name
);
437 if (original_dos_name
!= NULL
)
439 lstrcpynW(data
->cFileName
, original_dos_name
, MAX_PATH
);
440 SHFree(original_dos_name
);
444 /* show only the file name */
445 char *filename
= strrchr(original_file_name
, '/');
446 if (filename
== NULL
)
447 filename
= original_file_name
;
448 MultiByteToWideChar(CP_UNIXCP
, 0, filename
, -1, data
->cFileName
, MAX_PATH
);
451 deletion_date
= XDG_GetStringValue(parsed
, trashinfo_group
, "DeletionDate", 0);
457 sscanf(deletion_date
, "%d-%d-%dT%d:%d:%d",
458 &del_time
.tm_year
, &del_time
.tm_mon
, &del_time
.tm_mday
,
459 &del_time
.tm_hour
, &del_time
.tm_min
, &del_time
.tm_sec
);
460 del_time
.tm_year
-= 1900;
462 del_secs
= mktime(&del_time
);
464 RtlSecondsSince1970ToTime(del_secs
, (LARGE_INTEGER
*)&data
->ftLastAccessTime
);
470 SHFree(original_file_name
);
471 SHFree(deletion_date
);
474 XDG_FreeParsedFile(parsed
);
478 INT CALLBACK
free_item_callback(void *item
, void *lParam
)
484 static HDPA
enum_bucket_trashinfos(TRASH_BUCKET
*bucket
, int *count
)
486 HDPA ret
= DPA_Create(32);
487 struct dirent
*entry
;
492 if (ret
== NULL
) goto failed
;
493 dir
= opendir(bucket
->info_dir
);
494 if (dir
== NULL
) goto failed
;
495 while ((entry
= readdir(dir
)) != NULL
)
498 int namelen
= lstrlenA(entry
->d_name
);
499 int suffixlen
= lstrlenA(trashinfo_suffix
);
500 if (namelen
<= suffixlen
||
501 lstrcmpA(entry
->d_name
+namelen
-suffixlen
, trashinfo_suffix
) != 0)
504 filename
= StrDupA(entry
->d_name
);
505 if (filename
== NULL
)
507 if (DPA_InsertPtr(ret
, DPA_APPEND
, filename
) == -1)
517 if (dir
) closedir(dir
);
519 DPA_DestroyCallback(ret
, free_item_callback
, NULL
);
523 HRESULT
TRASH_EnumItems(LPITEMIDLIST
**pidls
, int *count
)
527 HRESULT err
= E_OUTOFMEMORY
;
530 if (!TRASH_EnsureInitialized()) return E_FAIL
;
531 tinfs
= enum_bucket_trashinfos(home_trash
, &ti_count
);
532 if (tinfs
== NULL
) return E_FAIL
;
533 *pidls
= SHAlloc(sizeof(LPITEMIDLIST
)*ti_count
);
534 if (!*pidls
) goto failed
;
535 for (i
=0; i
<ti_count
; i
++)
537 WIN32_FIND_DATAW data
;
540 elem
.bucket
= home_trash
;
541 elem
.filename
= DPA_GetPtr(tinfs
, i
);
542 if (FAILED(err
= TRASH_GetDetails(&elem
, &data
)))
546 if (FAILED(err
= TRASH_CreateSimplePIDL(&elem
, &data
, &(*pidls
)[pos
])))
551 DPA_DestroyCallback(tinfs
, free_item_callback
, NULL
);
557 for (j
=0; j
<pos
; j
++)
561 DPA_DestroyCallback(tinfs
, free_item_callback
, NULL
);