Fix error handling in case when passphrase is required
[platform/upstream/connman.git] / src / error.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2009  Intel Corporation. All rights reserved.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License version 2 as
9  *  published by the Free Software Foundation.
10  *
11  *  This program 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
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <errno.h>
27 #include <string.h>
28
29 #include <gdbus.h>
30
31 #include "connman.h"
32
33 DBusMessage *__connman_error_failed(DBusMessage *msg, int errnum)
34 {
35         const char *str = strerror(errnum);
36
37         switch (errnum) {
38         case EACCES:
39                 return __connman_error_permission_denied(msg);
40         case EINVAL:
41                 return __connman_error_invalid_arguments(msg);
42         case ENOSYS:
43                 return __connman_error_not_implemented(msg);
44         case ENOLINK:
45                 return __connman_error_no_carrier(msg);
46         case EOPNOTSUPP:
47                 return __connman_error_not_supported(msg);
48         case ECONNABORTED:
49                 return __connman_error_operation_aborted(msg);
50         case EISCONN:
51                 return __connman_error_already_connected(msg);
52         case ENOTCONN:
53                 return __connman_error_not_connected(msg);
54         case ETIMEDOUT:
55                 return __connman_error_operation_timeout(msg);
56         case EALREADY:
57                 return __connman_error_in_progress(msg);
58         case ENOKEY:
59                 return __connman_error_passphrase_required(msg);
60         }
61
62         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
63                                                         ".Failed", str);
64 }
65
66 DBusMessage *__connman_error_invalid_arguments(DBusMessage *msg)
67 {
68         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
69                                 ".InvalidArguments", "Invalid arguments");
70 }
71
72 DBusMessage *__connman_error_permission_denied(DBusMessage *msg)
73 {
74         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
75                                 ".PermissionDenied", "Permission denied");
76 }
77
78 DBusMessage *__connman_error_passphrase_required(DBusMessage *msg)
79 {
80         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
81                                 ".PassphraseRequired", "Passphrase required");
82 }
83
84 DBusMessage *__connman_error_not_supported(DBusMessage *msg)
85 {
86         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
87                                         ".NotSupported", "Not supported");
88 }
89
90 DBusMessage *__connman_error_not_implemented(DBusMessage *msg)
91 {
92         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
93                                         ".NotImplemented", "Not implemented");
94 }
95
96 DBusMessage *__connman_error_no_carrier(DBusMessage *msg)
97 {
98         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
99                                                 ".NoCarrier", "No carrier");
100 }
101
102 DBusMessage *__connman_error_in_progress(DBusMessage *msg)
103 {
104         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
105                                                 ".InProgress", "In progress");
106 }
107
108 DBusMessage *__connman_error_already_enabled(DBusMessage *msg)
109 {
110         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
111                                 ".AlreadyEnabled", "Already enabled");
112 }
113
114 DBusMessage *__connman_error_already_disabled(DBusMessage *msg)
115 {
116         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
117                                 ".AlreadyDisabled", "Already disabled");
118 }
119
120 DBusMessage *__connman_error_already_connected(DBusMessage *msg)
121 {
122         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
123                                 ".AlreadyConnected", "Already connected");
124 }
125
126 DBusMessage *__connman_error_not_connected(DBusMessage *msg)
127 {
128         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
129                                         ".NotConnected", "Not connected");
130 }
131 DBusMessage *__connman_error_operation_aborted(DBusMessage *msg)
132 {
133         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
134                                 ".OperationAborted", "Operation aborted");
135 }
136
137 DBusMessage *__connman_error_operation_timeout(DBusMessage *msg)
138 {
139         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
140                                 ".OperationTimeout", "Operation timeout");
141 }
142
143 DBusMessage *__connman_error_invalid_service(DBusMessage *msg)
144 {
145         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
146                                 ".InvalidService", "Invalid service");
147 }
148
149 DBusMessage *__connman_error_invalid_property(DBusMessage *msg)
150 {
151         return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE,
152                                 ".InvalidProperty", "Invalid property");
153 }