4 * Copyright 2006 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/port.h"
34 #include "wine/library.h"
35 #include "wine/exception.h"
36 #include "wine/debug.h"
38 WINE_DEFAULT_DEBUG_CHANNEL(mountmgr
);
42 #include <dbus/dbus.h>
43 #include <hal/libhal.h>
46 DO_FUNC(dbus_bus_get); \
47 DO_FUNC(dbus_connection_close); \
48 DO_FUNC(dbus_connection_read_write_dispatch); \
49 DO_FUNC(dbus_error_init); \
50 DO_FUNC(dbus_error_free); \
51 DO_FUNC(dbus_error_is_set)
54 DO_FUNC(libhal_ctx_free); \
55 DO_FUNC(libhal_ctx_init); \
56 DO_FUNC(libhal_ctx_new); \
57 DO_FUNC(libhal_ctx_set_dbus_connection); \
58 DO_FUNC(libhal_ctx_set_device_added); \
59 DO_FUNC(libhal_ctx_set_device_property_modified); \
60 DO_FUNC(libhal_ctx_set_device_removed); \
61 DO_FUNC(libhal_ctx_shutdown); \
62 DO_FUNC(libhal_device_get_property_bool); \
63 DO_FUNC(libhal_device_get_property_string); \
64 DO_FUNC(libhal_device_add_property_watch); \
65 DO_FUNC(libhal_device_remove_property_watch); \
66 DO_FUNC(libhal_free_string); \
67 DO_FUNC(libhal_free_string_array); \
68 DO_FUNC(libhal_get_all_devices)
70 #define DO_FUNC(f) static typeof(f) * p_##f
75 static BOOL
load_functions(void)
80 /* Load libhal with RTLD_GLOBAL so that the dbus symbols are available.
81 * We can't load libdbus directly since libhal may have been built against a
82 * different version but with the same soname. Binary compatibility is for wimps. */
84 if (!(hal_handle
= wine_dlopen(SONAME_LIBHAL
, RTLD_NOW
|RTLD_GLOBAL
, error
, sizeof(error
))))
87 #define DO_FUNC(f) if (!(p_##f = wine_dlsym( RTLD_DEFAULT, #f, error, sizeof(error) ))) goto failed
91 #define DO_FUNC(f) if (!(p_##f = wine_dlsym( hal_handle, #f, error, sizeof(error) ))) goto failed
98 WARN( "failed to load HAL support: %s\n", error
);
102 static LONG WINAPI
assert_fault(EXCEPTION_POINTERS
*eptr
)
104 if (eptr
->ExceptionRecord
->ExceptionCode
== EXCEPTION_WINE_ASSERTION
)
105 return EXCEPTION_EXECUTE_HANDLER
;
106 return EXCEPTION_CONTINUE_SEARCH
;
109 static GUID
*parse_uuid( GUID
*guid
, const char *str
)
111 /* standard uuid format */
112 if (strlen(str
) == 36)
117 if (MultiByteToWideChar( CP_UNIXCP
, 0, str
, 36, buffer
+ 1, 36 ))
122 RtlInitUnicodeString( &strW
, buffer
);
123 if (!RtlGUIDFromString( &strW
, guid
)) return guid
;
127 /* check for xxxx-xxxx format (FAT serial number) */
128 if (strlen(str
) == 9 && str
[4] == '-')
130 memset( guid
, 0, sizeof(*guid
) );
131 if (sscanf( str
, "%hx-%hx", &guid
->Data2
, &guid
->Data3
) == 2) return guid
;
136 /* HAL callback for new device */
137 static void new_device( LibHalContext
*ctx
, const char *udi
)
141 char *mount_point
= NULL
;
144 char *uuid_str
= NULL
;
145 GUID guid
, *guid_ptr
= NULL
;
146 enum device_type drive_type
;
148 p_dbus_error_init( &error
);
150 if (!(device
= p_libhal_device_get_property_string( ctx
, udi
, "block.device", &error
)))
153 if (!(mount_point
= p_libhal_device_get_property_string( ctx
, udi
, "volume.mount_point", &error
)))
156 if (!(parent
= p_libhal_device_get_property_string( ctx
, udi
, "info.parent", &error
)))
159 if (!(uuid_str
= p_libhal_device_get_property_string( ctx
, udi
, "volume.uuid", &error
)))
160 p_dbus_error_free( &error
); /* ignore error */
162 guid_ptr
= parse_uuid( &guid
, uuid_str
);
164 if (!(type
= p_libhal_device_get_property_string( ctx
, parent
, "storage.drive_type", &error
)))
165 p_dbus_error_free( &error
); /* ignore error */
167 if (type
&& !strcmp( type
, "cdrom" )) drive_type
= DEVICE_CDROM
;
168 else if (type
&& !strcmp( type
, "floppy" )) drive_type
= DEVICE_FLOPPY
;
169 else drive_type
= DEVICE_UNKNOWN
;
171 if (p_libhal_device_get_property_bool( ctx
, parent
, "storage.removable", &error
))
173 add_dos_device( -1, udi
, device
, mount_point
, drive_type
, guid_ptr
);
174 /* add property watch for mount point */
175 p_libhal_device_add_property_watch( ctx
, udi
, &error
);
177 else if (guid_ptr
) add_volume( udi
, device
, mount_point
, DEVICE_HARDDISK_VOL
, guid_ptr
);
180 if (type
) p_libhal_free_string( type
);
181 if (parent
) p_libhal_free_string( parent
);
182 if (device
) p_libhal_free_string( device
);
183 if (uuid_str
) p_libhal_free_string( uuid_str
);
184 if (mount_point
) p_libhal_free_string( mount_point
);
185 p_dbus_error_free( &error
);
188 /* HAL callback for removed device */
189 static void removed_device( LibHalContext
*ctx
, const char *udi
)
193 TRACE( "removed %s\n", wine_dbgstr_a(udi
) );
195 if (!remove_dos_device( -1, udi
))
197 p_dbus_error_init( &error
);
198 p_libhal_device_remove_property_watch( ctx
, udi
, &error
);
199 p_dbus_error_free( &error
);
201 else remove_volume( udi
);
204 /* HAL callback for property changes */
205 static void property_modified (LibHalContext
*ctx
, const char *udi
,
206 const char *key
, dbus_bool_t is_removed
, dbus_bool_t is_added
)
208 TRACE( "udi %s key %s %s\n", wine_dbgstr_a(udi
), wine_dbgstr_a(key
),
209 is_added
? "added" : is_removed
? "removed" : "modified" );
211 if (!strcmp( key
, "volume.mount_point" )) new_device( ctx
, udi
);
215 static DWORD WINAPI
hal_thread( void *arg
)
223 if (!(ctx
= p_libhal_ctx_new())) return 1;
225 p_dbus_error_init( &error
);
226 if (!(dbc
= p_dbus_bus_get( DBUS_BUS_SYSTEM
, &error
)))
228 WARN( "failed to get system dbus connection: %s\n", error
.message
);
229 p_dbus_error_free( &error
);
233 p_libhal_ctx_set_dbus_connection( ctx
, dbc
);
234 p_libhal_ctx_set_device_added( ctx
, new_device
);
235 p_libhal_ctx_set_device_removed( ctx
, removed_device
);
236 p_libhal_ctx_set_device_property_modified( ctx
, property_modified
);
238 if (!p_libhal_ctx_init( ctx
, &error
))
240 WARN( "HAL context init failed: %s\n", error
.message
);
241 p_dbus_error_free( &error
);
245 /* retrieve all existing devices */
246 if (!(list
= p_libhal_get_all_devices( ctx
, &num
, &error
))) p_dbus_error_free( &error
);
249 for (i
= 0; i
< num
; i
++) new_device( ctx
, list
[i
] );
250 p_libhal_free_string_array( list
);
255 while (p_dbus_connection_read_write_dispatch( dbc
, -1 )) /* nothing */ ;
257 __EXCEPT( assert_fault
)
259 WARN( "dbus assertion failure, disabling HAL support\n" );
264 p_libhal_ctx_shutdown( ctx
, &error
);
265 p_dbus_error_free( &error
); /* just in case */
266 p_dbus_connection_close( dbc
);
267 p_libhal_ctx_free( ctx
);
271 void initialize_hal(void)
275 if (!load_functions()) return;
276 if (!(handle
= CreateThread( NULL
, 0, hal_thread
, NULL
, 0, NULL
))) return;
277 CloseHandle( handle
);
280 #else /* SONAME_LIBHAL */
282 void initialize_hal(void)
284 TRACE( "Skipping, HAL support not compiled in\n" );
287 #endif /* SONAME_LIBHAL */