| Wayne Davison | 0f78b81 | 2006-04-25 20:23:34 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Support the max connections option. |
| 3 | * |
| 4 | * Copyright (C) 1998 Andrew Tridgell |
| Wayne Davison | c5fabfb | 2020-04-09 15:11:37 -0700 | [diff] [blame] | 5 | * Copyright (C) 2006-2020 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. |
| Wayne Davison | 0f78b81 | 2006-04-25 20:23:34 +0000 | [diff] [blame] | 19 | */ |
| Andrew Tridgell | 0c515f1 | 1998-05-13 08:52:12 +0000 | [diff] [blame] | 20 | |
| Andrew Tridgell | 0c515f1 | 1998-05-13 08:52:12 +0000 | [diff] [blame] | 21 | #include "rsync.h" |
| 22 | |
| Wayne Davison | 21cafc5 | 2007-09-18 14:09:38 +0000 | [diff] [blame] | 23 | /* A simple routine to do connection counting. This returns 1 on success |
| 24 | * and 0 on failure, with errno also being set if the open() failed (errno |
| 25 | * will be 0 if the lock request failed). */ |
| 26 | int claim_connection(char *fname, int max_connections) |
| Andrew Tridgell | 0c515f1 | 1998-05-13 08:52:12 +0000 | [diff] [blame] | 27 | { |
| 28 | int fd, i; |
| Andrew Tridgell | 0c515f1 | 1998-05-13 08:52:12 +0000 | [diff] [blame] | 29 | |
| Wayne Davison | d34cd63 | 2007-09-18 14:14:22 +0000 | [diff] [blame] | 30 | if (max_connections == 0) |
| Wayne Davison | 236df01 | 2007-09-18 14:11:25 +0000 | [diff] [blame] | 31 | return 1; |
| Andrew Tridgell | 8d72ef6 | 1998-07-17 05:37:18 +0000 | [diff] [blame] | 32 | |
| Wayne Davison | 236df01 | 2007-09-18 14:11:25 +0000 | [diff] [blame] | 33 | if ((fd = open(fname, O_RDWR|O_CREAT, 0600)) < 0) |
| 34 | return 0; |
| Andrew Tridgell | 0c515f1 | 1998-05-13 08:52:12 +0000 | [diff] [blame] | 35 | |
| Wayne Davison | 236df01 | 2007-09-18 14:11:25 +0000 | [diff] [blame] | 36 | /* Find a free spot. */ |
| 37 | for (i = 0; i < max_connections; i++) { |
| 38 | if (lock_range(fd, i*4, 4)) |
| 39 | return 1; |
| Andrew Tridgell | 0c515f1 | 1998-05-13 08:52:12 +0000 | [diff] [blame] | 40 | } |
| 41 | |
| Wayne Davison | 236df01 | 2007-09-18 14:11:25 +0000 | [diff] [blame] | 42 | close(fd); |
| 43 | |
| Wayne Davison | 21cafc5 | 2007-09-18 14:09:38 +0000 | [diff] [blame] | 44 | /* A lock failure needs to return an errno of 0. */ |
| Andrew Tridgell | 8d72ef6 | 1998-07-17 05:37:18 +0000 | [diff] [blame] | 45 | errno = 0; |
| Andrew Tridgell | 31593dd | 1998-05-13 09:38:54 +0000 | [diff] [blame] | 46 | return 0; |
| Andrew Tridgell | 0c515f1 | 1998-05-13 08:52:12 +0000 | [diff] [blame] | 47 | } |