| Martin Pool | af642a6 | 2000-11-10 03:28:15 +0000 | [diff] [blame] | 1 | /* |
| Wayne Davison | 0f78b81 | 2006-04-25 20:23:34 +0000 | [diff] [blame] | 2 | * Error codes returned by rsync. |
| 3 | * |
| 4 | * Copyright (C) 1998-2000 Andrew Tridgell |
| Wayne Davison | 3e2e4b5 | 2019-03-16 09:15:49 -0700 | [diff] [blame] | 5 | * Copyright (C) 2003-2019 Wayne Davison |
| Wayne Davison | 0f78b81 | 2006-04-25 20:23:34 +0000 | [diff] [blame] | 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| Wayne Davison | 8e41b68 | 2007-07-10 13:55:49 +0000 | [diff] [blame] | 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 3 of the License, or |
| 10 | * (at your option) any later version. |
| Wayne Davison | 0f78b81 | 2006-04-25 20:23:34 +0000 | [diff] [blame] | 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 |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| Wayne Davison | e7c6706 | 2006-04-25 23:51:12 +0000 | [diff] [blame] | 17 | * You should have received a copy of the GNU General Public License along |
| Wayne Davison | 4fd842f | 2007-07-07 05:33:14 +0000 | [diff] [blame] | 18 | * with this program; if not, visit the http://fsf.org website. |
| Martin Pool | af642a6 | 2000-11-10 03:28:15 +0000 | [diff] [blame] | 19 | */ |
| Andrew Tridgell | 6541757 | 1998-11-03 07:08:27 +0000 | [diff] [blame] | 20 | |
| Wayne Davison | 0f78b81 | 2006-04-25 20:23:34 +0000 | [diff] [blame] | 21 | /* If you change these, please also update the string mappings in log.c and |
| 22 | * the EXIT VALUES in rsync.yo. */ |
| 23 | |
| Martin Pool | 56cf38a | 2002-04-09 05:29:26 +0000 | [diff] [blame] | 24 | #define RERR_OK 0 |
| Andrew Tridgell | 6541757 | 1998-11-03 07:08:27 +0000 | [diff] [blame] | 25 | #define RERR_SYNTAX 1 /* syntax or usage error */ |
| 26 | #define RERR_PROTOCOL 2 /* protocol incompatibility */ |
| 27 | #define RERR_FILESELECT 3 /* errors selecting input/output files, dirs */ |
| Wayne Davison | e0ed4e4 | 2003-12-15 08:04:14 +0000 | [diff] [blame] | 28 | #define RERR_UNSUPPORTED 4 /* requested action not supported */ |
| David Dykstra | 088aac8 | 2002-02-06 21:20:48 +0000 | [diff] [blame] | 29 | #define RERR_STARTCLIENT 5 /* error starting client-server protocol */ |
| Andrew Tridgell | 6541757 | 1998-11-03 07:08:27 +0000 | [diff] [blame] | 30 | |
| 31 | #define RERR_SOCKETIO 10 /* error in socket IO */ |
| 32 | #define RERR_FILEIO 11 /* error in file IO */ |
| 33 | #define RERR_STREAMIO 12 /* error in rsync protocol data stream */ |
| 34 | #define RERR_MESSAGEIO 13 /* errors with program diagnostics */ |
| 35 | #define RERR_IPC 14 /* error in IPC code */ |
| Wayne Davison | 6016841 | 2005-09-26 17:11:03 +0000 | [diff] [blame] | 36 | #define RERR_CRASHED 15 /* sibling crashed */ |
| Wayne Davison | 90eca40 | 2005-09-26 17:06:33 +0000 | [diff] [blame] | 37 | #define RERR_TERMINATED 16 /* sibling terminated abnormally */ |
| Andrew Tridgell | 6541757 | 1998-11-03 07:08:27 +0000 | [diff] [blame] | 38 | |
| Wayne Davison | 9e90555 | 2005-12-16 23:48:28 +0000 | [diff] [blame] | 39 | #define RERR_SIGNAL1 19 /* status returned when sent SIGUSR1 */ |
| 40 | #define RERR_SIGNAL 20 /* status returned when sent SIGINT, SIGTERM, SIGHUP */ |
| Andrew Tridgell | 6541757 | 1998-11-03 07:08:27 +0000 | [diff] [blame] | 41 | #define RERR_WAITCHILD 21 /* some error returned by waitpid() */ |
| 42 | #define RERR_MALLOC 22 /* error allocating core memory buffers */ |
| Andrew Tridgell | 19b27a4 | 2001-03-23 01:26:04 +0000 | [diff] [blame] | 43 | #define RERR_PARTIAL 23 /* partial transfer */ |
| Wayne Davison | e0ed4e4 | 2003-12-15 08:04:14 +0000 | [diff] [blame] | 44 | #define RERR_VANISHED 24 /* file(s) vanished on sender side */ |
| Wayne Davison | 821ff7f | 2005-03-05 18:58:32 +0000 | [diff] [blame] | 45 | #define RERR_DEL_LIMIT 25 /* skipped some deletes due to --max-delete */ |
| Andrew Tridgell | 6541757 | 1998-11-03 07:08:27 +0000 | [diff] [blame] | 46 | |
| 47 | #define RERR_TIMEOUT 30 /* timeout in data send/receive */ |
| Wayne Davison | ba22c9e | 2007-11-28 00:28:26 -0800 | [diff] [blame] | 48 | #define RERR_CONTIMEOUT 35 /* timeout waiting for daemon connection */ |
| Andrew Tridgell | 19b27a4 | 2001-03-23 01:26:04 +0000 | [diff] [blame] | 49 | |
| 50 | /* Although it doesn't seem to be specified anywhere, |
| 51 | * ssh and the shell seem to return these values: |
| 52 | * |
| 53 | * 124 if the command exited with status 255 |
| 54 | * 125 if the command is killed by a signal |
| 55 | * 126 if the command cannot be run |
| 56 | * 127 if the command is not found |
| 57 | * |
| 58 | * and we could use this to give a better explanation if the remote |
| 59 | * command is not found. |
| 60 | */ |
| 61 | #define RERR_CMD_FAILED 124 |
| 62 | #define RERR_CMD_KILLED 125 |
| 63 | #define RERR_CMD_RUN 126 |
| 64 | #define RERR_CMD_NOTFOUND 127 |