/* * Copyright (c) 2001-2005 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this * file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_LICENSE_HEADER_END@ */ /* * BLGetCommonMountPoint.c * bless * * Created by Shantonu Sen on Tue Apr 17 2001. * Copyright (c) 2001-2005 Apple Computer, Inc. All rights reserved. * * $Id: BLGetCommonMountPoint.c,v 1.1.1.1 2006/01/27 22:43:54 ssen Exp $ * * $Log: BLGetCommonMountPoint.c,v $ * Revision 1.1.1.1 2006/01/27 22:43:54 ssen * bless-37.1 import * * Revision 1.13 2005/08/22 20:49:24 ssen * Change functions to take "char *foo" instead of "char foo[]". * It should be semantically identical, and be more consistent with * other system APIs * * Revision 1.12 2005/06/24 16:39:51 ssen * Don't use "unsigned char[]" for paths. If regular char*s are * good enough for the BSD system calls, they're good enough for * bless. * * Revision 1.11 2005/02/03 00:42:27 ssen * Update copyrights to 2005 * * Revision 1.10 2004/04/20 21:40:44 ssen * Update copyrights to 2004 * * Revision 1.9 2003/10/17 00:10:39 ssen * add more const * * Revision 1.8 2003/07/22 15:58:34 ssen * APSL 2.0 * * Revision 1.7 2003/04/19 00:11:12 ssen * Update to APSL 1.2 * * Revision 1.6 2003/04/16 23:57:33 ssen * Update Copyrights * * Revision 1.5 2002/06/11 00:50:49 ssen * All function prototypes need to use BLContextPtr. This is really * a minor change in all of the files. * * Revision 1.4 2002/04/27 17:55:00 ssen * Rewrite output logic to format the string before sending of to logger * * Revision 1.3 2002/04/25 07:27:29 ssen * Go back to using errorprint and verboseprint inside library * * Revision 1.2 2002/02/23 04:13:06 ssen * Update to context-based API * * Revision 1.1 2001/11/16 05:36:47 ssen * Add libbless files * * Revision 1.6 2001/11/11 06:20:59 ssen * readding files * * Revision 1.4 2001/10/26 04:19:41 ssen * Add dollar Id and dollar Log * * */ #include #include #include #include #include #include "bless.h" #include "bless_private.h" int BLGetCommonMountPoint(BLContextPtr context, const char * f1, const char * f2, char * mountp) { struct statfs fsinfo; int err; char f2mount[MNAMELEN]; if(f1[0] != '\0') { err = statfs(f1, &fsinfo); if(err) { contextprintf(context, kBLLogLevelError, "No mount point for %s\n", f1 ); return 1; } else { strncpy(mountp, fsinfo.f_mntonname, MNAMELEN-1); mountp[MNAMELEN-1] = '\0'; contextprintf(context, kBLLogLevelVerbose, "Mount point for %s is %s\n", f1, mountp ); } } if(f2[0] != '\0') { err = statfs(f2, &fsinfo); if(err) { contextprintf(context, kBLLogLevelError, "No mount point for %s\n", f2 ); return 2; } else { strncpy(f2mount, fsinfo.f_mntonname, MNAMELEN-1); f2mount[MNAMELEN-1] = '\0'; contextprintf(context, kBLLogLevelVerbose, "Mount point for %s is %s\n", f2, f2mount ); } } /* Now we have the mount points of any folders that were passed * in. We must determine: * 1) if f1 && f2, find a common mount point or err * 2) if f2 && !f1, copy f2mount -> mountp * 3) if f1 && !f2, just return success */ if(f2[0] != '\0') { /* Case 1, 2 */ if(f1[0] != '\0') { /* Case 1 */ if(strcmp(mountp, f2mount)) { /* no common */ mountp[0] = '\0'; return 3; } else { /* yay common */ return 0; } } else { /* Case 2 */ /* We know each buffer is