blob: 5076c9237f76c497003f974ae1565902c73e16b7 [file] [log] [blame]
Martin Poolaf642a62000-11-10 03:28:15 +00001/*
Wayne Davison0f78b812006-04-25 20:23:34 +00002 * Error codes returned by rsync.
3 *
4 * Copyright (C) 1998-2000 Andrew Tridgell
Wayne Davisonba2133d2007-02-04 14:54:58 +00005 * Copyright (C) 2003-2007 Wayne Davison
Wayne Davison0f78b812006-04-25 20:23:34 +00006 *
7 * This program is free software; you can redistribute it and/or modify
Wayne Davison4fd842f2007-07-07 05:33:14 +00008 * it under the terms of the GNU General Public License version 3 as
Wayne Davisonba2133d2007-02-04 14:54:58 +00009 * published by the Free Software Foundation.
Wayne Davison0f78b812006-04-25 20:23:34 +000010 *
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 *
Wayne Davisone7c67062006-04-25 23:51:12 +000016 * You should have received a copy of the GNU General Public License along
Wayne Davison4fd842f2007-07-07 05:33:14 +000017 * with this program; if not, visit the http://fsf.org website.
Martin Poolaf642a62000-11-10 03:28:15 +000018 */
Andrew Tridgell65417571998-11-03 07:08:27 +000019
Wayne Davison0f78b812006-04-25 20:23:34 +000020/* If you change these, please also update the string mappings in log.c and
21 * the EXIT VALUES in rsync.yo. */
22
Martin Pool56cf38a2002-04-09 05:29:26 +000023#define RERR_OK 0
Andrew Tridgell65417571998-11-03 07:08:27 +000024#define RERR_SYNTAX 1 /* syntax or usage error */
25#define RERR_PROTOCOL 2 /* protocol incompatibility */
26#define RERR_FILESELECT 3 /* errors selecting input/output files, dirs */
Wayne Davisone0ed4e42003-12-15 08:04:14 +000027#define RERR_UNSUPPORTED 4 /* requested action not supported */
David Dykstra088aac82002-02-06 21:20:48 +000028#define RERR_STARTCLIENT 5 /* error starting client-server protocol */
Andrew Tridgell65417571998-11-03 07:08:27 +000029
30#define RERR_SOCKETIO 10 /* error in socket IO */
31#define RERR_FILEIO 11 /* error in file IO */
32#define RERR_STREAMIO 12 /* error in rsync protocol data stream */
33#define RERR_MESSAGEIO 13 /* errors with program diagnostics */
34#define RERR_IPC 14 /* error in IPC code */
Wayne Davison60168412005-09-26 17:11:03 +000035#define RERR_CRASHED 15 /* sibling crashed */
Wayne Davison90eca402005-09-26 17:06:33 +000036#define RERR_TERMINATED 16 /* sibling terminated abnormally */
Andrew Tridgell65417571998-11-03 07:08:27 +000037
Wayne Davison9e905552005-12-16 23:48:28 +000038#define RERR_SIGNAL1 19 /* status returned when sent SIGUSR1 */
39#define RERR_SIGNAL 20 /* status returned when sent SIGINT, SIGTERM, SIGHUP */
Andrew Tridgell65417571998-11-03 07:08:27 +000040#define RERR_WAITCHILD 21 /* some error returned by waitpid() */
41#define RERR_MALLOC 22 /* error allocating core memory buffers */
Andrew Tridgell19b27a42001-03-23 01:26:04 +000042#define RERR_PARTIAL 23 /* partial transfer */
Wayne Davisone0ed4e42003-12-15 08:04:14 +000043#define RERR_VANISHED 24 /* file(s) vanished on sender side */
Wayne Davison821ff7f2005-03-05 18:58:32 +000044#define RERR_DEL_LIMIT 25 /* skipped some deletes due to --max-delete */
Andrew Tridgell65417571998-11-03 07:08:27 +000045
46#define RERR_TIMEOUT 30 /* timeout in data send/receive */
Andrew Tridgell19b27a42001-03-23 01:26:04 +000047
48/* Although it doesn't seem to be specified anywhere,
49 * ssh and the shell seem to return these values:
50 *
51 * 124 if the command exited with status 255
52 * 125 if the command is killed by a signal
53 * 126 if the command cannot be run
54 * 127 if the command is not found
55 *
56 * and we could use this to give a better explanation if the remote
57 * command is not found.
58 */
59#define RERR_CMD_FAILED 124
60#define RERR_CMD_KILLED 125
61#define RERR_CMD_RUN 126
62#define RERR_CMD_NOTFOUND 127