]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/mount/error.c
mount.nfs: Support double-wide characters in printed strings
[nfs-utils.git] / utils / mount / error.c
1 /*
2  * error.c -- Common error handling functions
3  *
4  * Copyright (C) 2007 Oracle.  All rights reserved.
5  * Copyright (C) 2007 Chuck Lever <chuck.lever@oracle.com>
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This program 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  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public
18  * License along with this program; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 021110-1307, USA.
21  *
22  * To Do:
23  *  + Proper support for internationalization
24  */
25
26 #include "config.h"
27 #include <unistd.h>
28 #include <sys/types.h>
29 #include <stdio.h>
30 #include <string.h>
31 #include <errno.h>
32 #include <fcntl.h>
33 #include <syslog.h>
34 #include <rpc/rpc.h>
35 #include <rpc/pmap_prot.h>
36 #include <rpc/pmap_clnt.h>
37
38 #include "xcommon.h"
39 #include "nls.h"
40 #include "mount.h"
41 #include "error.h"
42
43 #ifdef HAVE_RPCSVC_NFS_PROT_H
44 #include <rpcsvc/nfs_prot.h>
45 #else
46 #include <linux/nfs.h>
47 #define nfsstat nfs_stat
48 #endif
49
50 extern char *progname;
51
52 static char errbuf[BUFSIZ];
53 static char *erreob = &errbuf[BUFSIZ];
54
55 /* Convert RPC errors into strings */
56 static int rpc_strerror(int spos)
57 {
58         int cf_stat = rpc_createerr.cf_stat;
59         int pos = 0, cf_errno = rpc_createerr.cf_error.re_errno;
60         char *ptr, *estr = clnt_sperrno(cf_stat);
61         char *tmp;
62
63         if (estr) {
64                 if ((ptr = index(estr, ':')))
65                         estr = ++ptr;
66
67                 tmp = &errbuf[spos];
68                 if (cf_stat == RPC_SYSTEMERROR)
69                         pos = snprintf(tmp, (erreob - tmp),
70                                         _("System Error: %s"),
71                                                 strerror(cf_errno));
72                 else
73                         pos = snprintf(tmp, (erreob - tmp),
74                                         _("RPC Error:%s"), estr);
75         }
76         return pos;
77 }
78
79 void mount_errors(char *server, int will_retry, int bg)
80 {
81         int pos = 0;
82         char *tmp;
83         static int onlyonce = 0;
84
85         tmp = &errbuf[pos];
86         if (bg)
87                 pos = snprintf(tmp, (erreob - tmp),
88                                 _("mount to NFS server '%s' failed: "),
89                                         server);
90         else
91                 pos = snprintf(tmp, (erreob - tmp),
92                                 _("%s: mount to NFS server '%s' failed: "),
93                                         progname, server);
94
95         tmp = &errbuf[pos];
96         if (rpc_createerr.cf_stat == RPC_TIMEDOUT) {
97                 if (will_retry)
98                         pos = snprintf(tmp, (erreob - tmp),
99                                         _("timed out, retrying"));
100                 else
101                         pos = snprintf(tmp, (erreob - tmp),
102                                         _("timed out, giving up"));
103         } else {
104                 pos += rpc_strerror(pos);
105                 tmp = &errbuf[pos];
106                 if (bg) {
107                         if (will_retry)
108                                 pos = snprintf(tmp, (erreob - tmp),
109                                                 _(", retrying"));
110                         else
111                                 pos = snprintf(tmp, (erreob - tmp),
112                                                 _(", giving up"));
113                 }
114         }
115
116         if (bg) {
117                 if (onlyonce++ < 1)
118                         openlog("mount", LOG_CONS|LOG_PID, LOG_AUTH);
119                 syslog(LOG_ERR, "%s", errbuf);
120         } else
121                 fprintf(stderr, "%s\n", errbuf);
122 }
123
124 void mount_error(const char *spec, const char *mount_point, int error)
125 {
126         switch(error) {
127         case ENOTDIR:
128                 nfs_error(_("%s: mount point %s is not a directory"),
129                                 progname, mount_point);
130                 break;
131         case EBUSY:
132                 nfs_error(_("%s: %s is already mounted or busy"),
133                         progname, mount_point);
134                 break;
135         case ENOENT:
136                 if (spec)
137                         nfs_error(_("%s: mounting %s failed, "
138                                 "reason given by server:\n  %s"),
139                                 progname, spec, strerror(error));
140                 else
141                         nfs_error(_("%s: mount point %s does not exist"),
142                                 progname, mount_point);
143                 break;
144         default:
145                 nfs_error(_("%s: %s"),
146                         progname, strerror(error));
147         }
148 }
149
150 /*
151  * Report a failed umount
152  */
153 void umount_error(int err, const char *dev)
154 {
155         switch (err) {
156         case ENXIO:
157                 nfs_error(_("%s: %s: invalid block device"),
158                         progname, dev);
159                 break;
160         case EINVAL:
161                 nfs_error(_("%s: %s: not mounted"),
162                         progname, dev);
163                 break;
164         case EIO:
165                 nfs_error(_("%s: %s: can't write superblock"),
166                         progname, dev);
167                 break;
168         case EBUSY:
169                 nfs_error(_("%s: %s: device is busy"),
170                         progname, dev);
171                 break;
172         case ENOENT:
173                 nfs_error(_("%s: %s: not found"),
174                         progname, dev);
175                 break;
176         case EPERM:
177                 nfs_error(_("%s: %s: must be superuser to umount"),
178                         progname, dev);
179                 break;
180         case EACCES:
181                 nfs_error(_("%s: %s: block devices not permitted on fs"),
182                         progname, dev);
183                 break;
184         default:
185                 nfs_error(_("%s: %s: %s"),
186                         progname, dev, strerror(err));
187                 break;
188         }
189 }
190
191 /*
192  * We need to translate between nfs status return values and
193  * the local errno values which may not be the same.
194  *
195  * Andreas Schwab <schwab@LS5.informatik.uni-dortmund.de>: change errno:
196  * "after #include <errno.h> the symbol errno is reserved for any use,
197  *  it cannot even be used as a struct tag or field name".
198  */
199
200 #ifndef EDQUOT
201 #define EDQUOT  ENOSPC
202 #endif
203
204 static struct {
205         enum nfsstat stat;
206         int errnum;
207 } nfs_errtbl[] = {
208         { NFS_OK,               0               },
209         { NFSERR_PERM,          EPERM           },
210         { NFSERR_NOENT,         ENOENT          },
211         { NFSERR_IO,            EIO             },
212         { NFSERR_NXIO,          ENXIO           },
213         { NFSERR_ACCES,         EACCES          },
214         { NFSERR_EXIST,         EEXIST          },
215         { NFSERR_NODEV,         ENODEV          },
216         { NFSERR_NOTDIR,        ENOTDIR         },
217         { NFSERR_ISDIR,         EISDIR          },
218 #ifdef NFSERR_INVAL
219         { NFSERR_INVAL,         EINVAL          },      /* that Sun forgot */
220 #endif
221         { NFSERR_FBIG,          EFBIG           },
222         { NFSERR_NOSPC,         ENOSPC          },
223         { NFSERR_ROFS,          EROFS           },
224         { NFSERR_NAMETOOLONG,   ENAMETOOLONG    },
225         { NFSERR_NOTEMPTY,      ENOTEMPTY       },
226         { NFSERR_DQUOT,         EDQUOT          },
227         { NFSERR_STALE,         ESTALE          },
228 #ifdef EWFLUSH
229         { NFSERR_WFLUSH,        EWFLUSH         },
230 #endif
231         /* Throw in some NFSv3 values for even more fun (HP returns these) */
232         { 71,                   EREMOTE         },
233
234         { -1,                   EIO             }
235 };
236
237 char *nfs_strerror(int stat)
238 {
239         int i;
240         static char buf[256];
241
242         for (i = 0; nfs_errtbl[i].stat != -1; i++) {
243                 if (nfs_errtbl[i].stat == stat)
244                         return strerror(nfs_errtbl[i].errnum);
245         }
246         sprintf(buf, _("unknown nfs status return value: %d"), stat);
247         return buf;
248 }