2 * Copyright 2000, International Business Machines Corporation and others.
5 * This software has been released under the terms of the IBM Public
6 * License. For details, see the LICENSE file in the top-level source
7 * directory or online at http://www.openafs.org/dl/license10.html
10 #include <afsconfig.h>
11 #include <afs/param.h>
25 #define SECURITY_WIN32
33 #include <cm_server.h>
37 #include <cm_scache.h>
44 #include <pioctl_nt.h>
45 #include <WINNT/afsreg.h>
46 #include <lanahelper.h>
48 #include <loadfuncs-krb5.h>
51 static char AFSConfigKeyName[] = AFSREG_CLT_SVC_PARAM_SUBKEY;
53 static const char utf8_prefix[] = UTF8_PREFIX;
54 static const int utf8_prefix_size = sizeof(utf8_prefix) - sizeof(char);
56 #define FS_IOCTLREQUEST_MAXSIZE 8192
57 /* big structure for representing and storing an IOCTL request */
58 typedef struct fs_ioctlRequest {
59 char *mp; /* marshalling/unmarshalling ptr */
60 long nbytes; /* bytes received (when unmarshalling) */
61 char data[FS_IOCTLREQUEST_MAXSIZE]; /* data we're marshalling */
65 CMtoUNIXerror(int cm_code)
68 case CM_ERROR_TIMEDOUT:
70 case CM_ERROR_NOACCESS:
72 case CM_ERROR_NOSUCHFILE:
73 case CM_ERROR_NOSUCHPATH:
74 case CM_ERROR_BPLUS_NOMATCH:
81 case CM_ERROR_INEXACT_MATCH:
83 case CM_ERROR_CROSSDEVLINK:
89 case CM_ERROR_READONLY:
91 case CM_ERROR_WOULDBLOCK:
93 case CM_ERROR_NOSUCHCELL:
94 return ESRCH; /* hack */
95 case CM_ERROR_NOSUCHVOLUME:
96 return EPIPE; /* hack */
97 case CM_ERROR_NOMORETOKENS:
98 return EDOM; /* hack */
99 case CM_ERROR_TOOMANYBUFS:
100 return EFBIG; /* hack */
101 case CM_ERROR_ALLBUSY:
103 case CM_ERROR_ALLDOWN:
104 return ENOSYS; /* hack */
105 case CM_ERROR_ALLOFFLINE:
106 return ENXIO; /* hack */
108 if (cm_code > 0 && cm_code < EILSEQ)
116 InitFSRequest(fs_ioctlRequest_t * rp)
126 static BOOL debug = 0;
131 if (RegOpenKey (HKEY_LOCAL_MACHINE,
132 TEXT("Software\\OpenAFS\\Client"), &hk) == 0)
134 DWORD dwSize = sizeof(BOOL);
135 DWORD dwType = REG_DWORD;
136 RegQueryValueEx (hk, TEXT("IoctlDebug"), NULL, &dwType, (PBYTE)&debug, &dwSize);
147 DisableServiceManagerCheck(void)
150 static BOOL smcheck = 0;
155 if (RegOpenKey (HKEY_LOCAL_MACHINE,
156 TEXT("Software\\OpenAFS\\Client"), &hk) == 0)
158 DWORD dwSize = sizeof(BOOL);
159 DWORD dwType = REG_DWORD;
160 RegQueryValueEx (hk, TEXT("DisableIoctlSMCheck"), NULL, &dwType, (PBYTE)&smcheck, &dwSize);
172 LPSTR lpszMachineName,
173 LPSTR lpszServiceName,
174 DWORD *lpdwCurrentState)
177 SC_HANDLE schSCManager = NULL;
178 SC_HANDLE schService = NULL;
179 DWORD fdwDesiredAccess = 0;
180 SERVICE_STATUS ssServiceStatus = {0};
183 *lpdwCurrentState = 0;
185 fdwDesiredAccess = GENERIC_READ;
187 schSCManager = OpenSCManager(lpszMachineName,
191 if(schSCManager == NULL)
197 schService = OpenService(schSCManager,
201 if(schService == NULL)
207 fRet = QueryServiceStatus(schService,
216 *lpdwCurrentState = ssServiceStatus.dwCurrentState;
220 CloseServiceHandle(schService);
221 CloseServiceHandle(schSCManager);
227 DECL_FUNC_PTR(krb5_cc_default_name);
228 DECL_FUNC_PTR(krb5_cc_set_default_name);
229 DECL_FUNC_PTR(krb5_get_default_config_files);
230 DECL_FUNC_PTR(krb5_free_config_files);
231 DECL_FUNC_PTR(krb5_free_context);
232 DECL_FUNC_PTR(krb5_get_default_realm);
233 DECL_FUNC_PTR(krb5_free_default_realm);
234 DECL_FUNC_PTR(krb5_init_context);
235 DECL_FUNC_PTR(krb5_cc_default);
236 DECL_FUNC_PTR(krb5_parse_name);
237 DECL_FUNC_PTR(krb5_free_principal);
238 DECL_FUNC_PTR(krb5_cc_close);
239 DECL_FUNC_PTR(krb5_cc_get_principal);
240 DECL_FUNC_PTR(krb5_build_principal);
241 DECL_FUNC_PTR(krb5_c_random_make_octets);
242 DECL_FUNC_PTR(krb5_get_init_creds_password);
243 DECL_FUNC_PTR(krb5_free_cred_contents);
244 DECL_FUNC_PTR(krb5_cc_resolve);
245 DECL_FUNC_PTR(krb5_unparse_name);
246 DECL_FUNC_PTR(krb5_free_unparsed_name);
248 FUNC_INFO krb5_fi[] = {
249 MAKE_FUNC_INFO(krb5_cc_default_name),
250 MAKE_FUNC_INFO(krb5_cc_set_default_name),
251 MAKE_FUNC_INFO(krb5_get_default_config_files),
252 MAKE_FUNC_INFO(krb5_free_config_files),
253 MAKE_FUNC_INFO(krb5_free_context),
254 MAKE_FUNC_INFO(krb5_get_default_realm),
255 MAKE_FUNC_INFO(krb5_free_default_realm),
256 MAKE_FUNC_INFO(krb5_init_context),
257 MAKE_FUNC_INFO(krb5_cc_default),
258 MAKE_FUNC_INFO(krb5_parse_name),
259 MAKE_FUNC_INFO(krb5_free_principal),
260 MAKE_FUNC_INFO(krb5_cc_close),
261 MAKE_FUNC_INFO(krb5_cc_get_principal),
262 MAKE_FUNC_INFO(krb5_build_principal),
263 MAKE_FUNC_INFO(krb5_c_random_make_octets),
264 MAKE_FUNC_INFO(krb5_get_init_creds_password),
265 MAKE_FUNC_INFO(krb5_free_cred_contents),
266 MAKE_FUNC_INFO(krb5_cc_resolve),
267 MAKE_FUNC_INFO(krb5_unparse_name),
268 MAKE_FUNC_INFO(krb5_free_unparsed_name),
274 const char* dll_name,
276 HINSTANCE* ph, // [out, optional] - DLL handle
277 int* pindex, // [out, optional] - index of last func loaded (-1 if none)
278 int cleanup, // cleanup function pointers and unload on error
279 int go_on, // continue loading even if some functions cannot be loaded
280 int silent // do not pop-up a system dialog if DLL cannot be loaded
289 if (pindex) *pindex = -1;
291 for (n = 0; fi[n].func_ptr_var; n++)
292 *(fi[n].func_ptr_var) = 0;
295 em = SetErrorMode(SEM_FAILCRITICALERRORS);
296 h = LoadLibrary(dll_name);
304 for (i = 0; (go_on || !error) && (i < n); i++)
306 void* p = (void*)GetProcAddress(h, fi[i].func_name);
312 *(fi[i].func_ptr_var) = p;
315 if (pindex) *pindex = last_i;
316 if (error && cleanup && !go_on) {
317 for (i = 0; i < n; i++) {
318 *(fi[i].func_ptr_var) = 0;
327 #if defined(_IA64_) || defined(_AMD64_)
328 #define KERB5DLL "krb5_64.dll"
330 #define KERB5DLL "krb5_32.dll"
335 static HINSTANCE hKrb5DLL = 0;
340 hKrb5DLL = LoadLibrary(KERB5DLL);
342 if (!LoadFuncs(KERB5DLL, krb5_fi, 0, 0, 1, 0, 0))
344 FreeLibrary(hKrb5DLL);
354 GetLSAPrincipalName(char * szUser, DWORD *dwSize)
356 krb5_context ctx = 0;
357 krb5_error_code code;
358 krb5_ccache mslsa_ccache=0;
359 krb5_principal princ = 0;
363 if (!IsKrb5Available())
366 if (code = pkrb5_init_context(&ctx))
369 if (code = pkrb5_cc_resolve(ctx, "MSLSA:", &mslsa_ccache))
372 if (code = pkrb5_cc_get_principal(ctx, mslsa_ccache, &princ))
375 if (code = pkrb5_unparse_name(ctx, princ, &pname))
378 if ( strlen(pname) < *dwSize ) {
379 strncpy(szUser, pname, *dwSize);
380 szUser[*dwSize-1] = '\0';
383 *dwSize = (DWORD)strlen(pname);
387 pkrb5_free_unparsed_name(ctx, pname);
390 pkrb5_free_principal(ctx, princ);
393 pkrb5_cc_close(ctx, mslsa_ccache);
396 pkrb5_free_context(ctx);
401 DriveIsMappedToAFS(char *drivestr, char *NetbiosName)
403 DWORD dwResult, dwResultEnum;
405 DWORD cbBuffer = 16384; // 16K is a good size
406 DWORD cEntries = -1; // enumerate all possible entries
407 LPNETRESOURCE lpnrLocal; // pointer to enumerated structures
412 // Call the WNetOpenEnum function to begin the enumeration.
414 dwResult = WNetOpenEnum(RESOURCE_CONNECTED,
417 NULL, // NULL first time the function is called
418 &hEnum); // handle to the resource
420 if (dwResult != NO_ERROR)
424 // Call the GlobalAlloc function to allocate resources.
426 lpnrLocal = (LPNETRESOURCE) GlobalAlloc(GPTR, cbBuffer);
427 if (lpnrLocal == NULL)
432 // Initialize the buffer.
434 ZeroMemory(lpnrLocal, cbBuffer);
436 // Call the WNetEnumResource function to continue
440 dwResultEnum = WNetEnumResource(hEnum, // resource handle
441 &cEntries, // defined locally as -1
442 lpnrLocal, // LPNETRESOURCE
443 &cbBuffer); // buffer size
445 // If the call succeeds, loop through the structures.
447 if (dwResultEnum == NO_ERROR) {
448 for (i = 0; i < cEntries; i++) {
449 if (toupper(lpnrLocal[i].lpLocalName[0]) == toupper(drivestr[0])) {
451 // Skip the two backslashes at the start of the UNC device name
453 if ( _strnicmp( &(lpnrLocal[i].lpRemoteName[2]), NetbiosName, strlen(NetbiosName)) == 0 )
463 else if (dwResultEnum != ERROR_NO_MORE_ITEMS)
466 while (dwResultEnum != ERROR_NO_MORE_ITEMS);
469 // Call the GlobalFree function to free the memory.
471 GlobalFree((HGLOBAL) lpnrLocal);
473 // Call WNetCloseEnum to end the enumeration.
475 dwResult = WNetCloseEnum(hEnum);
481 GetIoctlHandle(char *fileNamep, HANDLE * handlep)
484 char netbiosName[MAX_NB_NAME_LENGTH];
485 DWORD CurrentState = 0;
486 char HostName[64] = "";
487 char tbuffer[MAX_PATH]="";
490 char szUser[128] = "";
491 char szClient[MAX_PATH] = "";
492 char szPath[MAX_PATH] = "";
495 DWORD ioctlDebug = IoctlDebug();
497 DWORD dwSize = sizeof(szUser);
500 memset(HostName, '\0', sizeof(HostName));
501 gethostname(HostName, sizeof(HostName));
502 if (!DisableServiceManagerCheck() &&
503 GetServiceStatus(HostName, TEXT("TransarcAFSDaemon"), &CurrentState) == NOERROR &&
504 CurrentState != SERVICE_RUNNING)
507 // Populate the Netbios Name
508 lana_GetNetbiosName(netbiosName,LANA_NETBIOS_NAME_FULL);
511 drivep = strchr(fileNamep, ':');
512 if (drivep && (drivep - fileNamep) >= 1) {
514 tbuffer[0] = *(drivep - 1);
519 driveType = GetDriveType(tbuffer);
523 if (DriveIsMappedToAFS(tbuffer, netbiosName))
524 strcpy(&tbuffer[2], SMB_IOCTL_FILENAME);
531 } else if (fileNamep[0] == fileNamep[1] &&
532 (fileNamep[0] == '\\' || fileNamep[0] == '/'))
534 int count = 0, i = 0;
536 while (count < 4 && fileNamep[i]) {
537 tbuffer[i] = fileNamep[i];
538 if ( tbuffer[i] == '\\' ||
543 if (fileNamep[i] == 0)
546 strcat(tbuffer, SMB_IOCTL_FILENAME);
548 char curdir[MAX_PATH]="";
550 GetCurrentDirectory(sizeof(curdir), curdir);
551 if ( curdir[1] == ':' ) {
552 tbuffer[0] = curdir[0];
554 strcpy(tbuffer + 2, SMB_IOCTL_FILENAME);
555 } else if (curdir[0] == curdir[1] &&
556 (curdir[0] == '\\' || curdir[0] == '/'))
558 int count = 0, i = 0;
560 while (count < 4 && curdir[i]) {
561 tbuffer[i] = curdir[i];
562 if ( tbuffer[i] == '\\' ||
570 strcat(tbuffer, SMB_IOCTL_FILENAME_NOSLASH);
575 /* No file name starting with drive colon specified, use UNC name */
576 sprintf(tbuffer,"\\\\%s\\all%s",netbiosName,SMB_IOCTL_FILENAME);
580 /* now open the file */
581 fh = CreateFile(tbuffer, GENERIC_READ | GENERIC_WRITE,
582 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
583 FILE_FLAG_WRITE_THROUGH, NULL);
587 if (fh == INVALID_HANDLE_VALUE) {
590 gle = GetLastError();
591 if (gle && ioctlDebug ) {
595 if ( FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM,
598 MAKELANGID(LANG_ENGLISH,SUBLANG_ENGLISH_US),
604 fprintf(stderr,"pioctl CreateFile(%s) failed: 0x%X\r\n\t[%s]\r\n",
610 lana_GetNetbiosName(szClient, LANA_NETBIOS_NAME_FULL);
612 if (RegOpenKey (HKEY_CURRENT_USER,
613 TEXT("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer"), &hk) == 0)
615 DWORD dwType = REG_SZ;
616 RegQueryValueEx (hk, TEXT("Logon User Name"), NULL, &dwType, (PBYTE)szUser, &dwSize);
623 fprintf(stderr, "pioctl Explorer logon user: [%s]\r\n",szUser);
626 sprintf(szPath, "\\\\%s", szClient);
627 memset (&nr, 0x00, sizeof(NETRESOURCE));
628 nr.dwType=RESOURCETYPE_DISK;
630 nr.lpRemoteName=szPath;
631 res = WNetAddConnection2(&nr,NULL,szUser,0);
635 fprintf(stderr, "pioctl WNetAddConnection2(%s,%s) failed: 0x%X\r\n",
642 sprintf(szPath, "\\\\%s\\all", szClient);
643 res = WNetAddConnection2(&nr,NULL,szUser,0);
647 fprintf(stderr, "pioctl WNetAddConnection2(%s,%s) failed: 0x%X\r\n",
655 goto try_lsa_principal;
657 fh = CreateFile(tbuffer, GENERIC_READ | GENERIC_WRITE,
658 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
659 FILE_FLAG_WRITE_THROUGH, NULL);
661 if (fh == INVALID_HANDLE_VALUE) {
662 gle = GetLastError();
663 if (gle && ioctlDebug ) {
667 if ( FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM,
670 MAKELANGID(LANG_ENGLISH,SUBLANG_ENGLISH_US),
676 fprintf(stderr,"pioctl CreateFile(%s) failed: 0x%X\r\n\t[%s]\r\n",
686 if (fh == INVALID_HANDLE_VALUE) {
689 dwSize = sizeof(szUser);
690 if (GetLSAPrincipalName(szUser, &dwSize)) {
693 fprintf(stderr, "pioctl LSA Principal logon user: [%s]\r\n",szUser);
696 sprintf(szPath, "\\\\%s", szClient);
697 memset (&nr, 0x00, sizeof(NETRESOURCE));
698 nr.dwType=RESOURCETYPE_DISK;
700 nr.lpRemoteName=szPath;
701 res = WNetAddConnection2(&nr,NULL,szUser,0);
705 fprintf(stderr, "pioctl WNetAddConnection2(%s,%s) failed: 0x%X\r\n",
712 sprintf(szPath, "\\\\%s\\all", szClient);
713 res = WNetAddConnection2(&nr,NULL,szUser,0);
717 fprintf(stderr, "pioctl WNetAddConnection2(%s,%s) failed: 0x%X\r\n",
727 fh = CreateFile(tbuffer, GENERIC_READ | GENERIC_WRITE,
728 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
729 FILE_FLAG_WRITE_THROUGH, NULL);
731 if (fh == INVALID_HANDLE_VALUE) {
732 gle = GetLastError();
733 if (gle && ioctlDebug ) {
737 if ( FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM,
740 MAKELANGID(LANG_ENGLISH,SUBLANG_ENGLISH_US),
746 fprintf(stderr,"pioctl CreateFile(%s) failed: 0x%X\r\n\t[%s]\r\n",
757 if ( fh == INVALID_HANDLE_VALUE ) {
758 dwSize = sizeof(szUser);
759 if (GetUserNameEx(NameSamCompatible, szUser, &dwSize)) {
762 fprintf(stderr, "pioctl SamCompatible logon user: [%s]\r\n",szUser);
765 sprintf(szPath, "\\\\%s", szClient);
766 memset (&nr, 0x00, sizeof(NETRESOURCE));
767 nr.dwType=RESOURCETYPE_DISK;
769 nr.lpRemoteName=szPath;
770 res = WNetAddConnection2(&nr,NULL,szUser,0);
774 fprintf(stderr, "pioctl WNetAddConnection2(%s,%s) failed: 0x%X\r\n",
780 sprintf(szPath, "\\\\%s\\all", szClient);
781 res = WNetAddConnection2(&nr,NULL,szUser,0);
785 fprintf(stderr, "pioctl WNetAddConnection2(%s,%s) failed: 0x%X\r\n",
792 fh = CreateFile(tbuffer, GENERIC_READ | GENERIC_WRITE,
793 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
794 FILE_FLAG_WRITE_THROUGH, NULL);
796 if (fh == INVALID_HANDLE_VALUE) {
797 gle = GetLastError();
798 if (gle && ioctlDebug ) {
802 if ( FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM,
805 MAKELANGID(LANG_ENGLISH,SUBLANG_ENGLISH_US),
811 fprintf(stderr,"pioctl CreateFile(%s) failed: 0x%X\r\n\t[%s]\r\n",
819 fprintf(stderr, "GetUserNameEx(NameSamCompatible) failed: 0x%X\r\n", GetLastError());
824 /* return fh and success code */
830 Transceive(HANDLE handle, fs_ioctlRequest_t * reqp)
835 DWORD ioctlDebug = IoctlDebug();
838 rcount = (long)(reqp->mp - reqp->data);
842 fprintf(stderr, "pioctl Transceive rcount <= 0: %d\r\n",rcount);
845 return EINVAL; /* not supposed to happen */
848 if (!WriteFile(handle, reqp->data, rcount, &ioCount, NULL)) {
849 /* failed to write */
850 gle = GetLastError();
854 fprintf(stderr, "pioctl Transceive WriteFile failed: 0x%X\r\n",gle);
860 if (!ReadFile(handle, reqp->data, sizeof(reqp->data), &ioCount, NULL)) {
862 gle = GetLastError();
866 fprintf(stderr, "pioctl Transceive ReadFile failed: 0x%X\r\n",gle);
872 reqp->nbytes = ioCount; /* set # of bytes available */
873 reqp->mp = reqp->data; /* restart marshalling */
880 MarshallLong(fs_ioctlRequest_t * reqp, long val)
882 memcpy(reqp->mp, &val, 4);
888 UnmarshallLong(fs_ioctlRequest_t * reqp, long *valp)
892 /* not enough data left */
893 if (reqp->nbytes < 4) {
894 if ( IoctlDebug() ) {
896 fprintf(stderr, "pioctl UnmarshallLong reqp->nbytes < 4: %d\r\n",
903 memcpy(valp, reqp->mp, 4);
909 /* includes marshalling NULL pointer as a null (0 length) string */
911 MarshallString(fs_ioctlRequest_t * reqp, char *stringp, int is_utf8)
917 count = (int)strlen(stringp) + 1;/* space required including null */
922 count += utf8_prefix_size;
925 /* watch for buffer overflow */
926 if ((reqp->mp - reqp->data) + count > sizeof(reqp->data)) {
927 if ( IoctlDebug() ) {
929 fprintf(stderr, "pioctl MarshallString buffer overflow\r\n");
936 memcpy(reqp->mp, utf8_prefix, utf8_prefix_size);
937 reqp->mp += utf8_prefix_size;
938 count -= utf8_prefix_size;
942 memcpy(reqp->mp, stringp, count);
949 /* take a path with a drive letter, possibly relative, and return a full path
950 * without the drive letter. This is the full path relative to the working
951 * dir for that drive letter. The input and output paths can be the same.
954 fs_GetFullPath(char *pathp, char *outPathp, long outSize)
966 if (pathp[0] != 0 && pathp[1] == ':') {
967 /* there's a drive letter there */
975 if ( firstp[0] == '\\' && firstp[1] == '\\' ||
976 firstp[0] == '/' && firstp[1] == '/') {
977 /* UNC path - strip off the server and sharename */
979 for ( i=2,count=2; count < 4 && firstp[i]; i++ ) {
980 if ( firstp[i] == '\\' || firstp[i] == '/' ) {
984 if ( firstp[i] == 0 ) {
985 strcpy(outPathp,"\\");
987 strcpy(outPathp,&firstp[--i]);
989 for (p=outPathp ;*p; p++) {
994 } else if (firstp[0] == '\\' || firstp[0] == '/') {
995 /* already an absolute pathname, just copy it back */
996 strcpy(outPathp, firstp);
997 for (p=outPathp ;*p; p++) {
1004 GetCurrentDirectory(sizeof(origPath), origPath);
1007 if (pathHasDrive && (*pathp & ~0x20) != (origPath[0] & ~0x20)) {
1008 /* a drive has been specified and it isn't our current drive.
1009 * to get path, switch to it first. Must case-fold drive letters
1010 * for user convenience.
1013 newPath[0] = *pathp;
1016 if (!SetCurrentDirectory(newPath)) {
1017 code = GetLastError();
1019 if ( IoctlDebug() ) {
1021 fprintf(stderr, "pioctl fs_GetFullPath SetCurrentDirectory(%s) failed: 0x%X\r\n",
1029 /* now get the absolute path to the current wdir in this drive */
1030 GetCurrentDirectory(sizeof(tpath), tpath);
1031 if (tpath[1] == ':')
1032 strcpy(outPathp, tpath + 2); /* skip drive letter */
1033 else if ( tpath[0] == '\\' && tpath[1] == '\\'||
1034 tpath[0] == '/' && tpath[1] == '/') {
1035 /* UNC path - strip off the server and sharename */
1037 for ( i=2,count=2; count < 4 && tpath[i]; i++ ) {
1038 if ( tpath[i] == '\\' || tpath[i] == '/' ) {
1042 if ( tpath[i] == 0 ) {
1043 strcpy(outPathp,"\\");
1045 strcpy(outPathp,&tpath[--i]);
1048 /* this should never happen */
1049 strcpy(outPathp, tpath);
1052 /* if there is a non-null name after the drive, append it */
1054 int len = (int)strlen(outPathp);
1055 if (outPathp[len-1] != '\\' && outPathp[len-1] != '/')
1056 strcat(outPathp, "\\");
1057 strcat(outPathp, firstp);
1060 /* finally, if necessary, switch back to our home drive letter */
1062 SetCurrentDirectory(origPath);
1065 for (p=outPathp ;*p; p++) {
1073 pioctl_int(char *pathp, long opcode, struct ViceIoctl *blobp, int follow, int is_utf8)
1075 fs_ioctlRequest_t preq;
1078 char fullPath[1000];
1082 code = GetIoctlHandle(pathp, &reqHandle);
1091 /* init the request structure */
1092 InitFSRequest(&preq);
1094 /* marshall the opcode, the path name and the input parameters */
1095 MarshallLong(&preq, opcode);
1096 /* when marshalling the path, remove the drive letter, since we already
1097 * used the drive letter to find the AFS daemon; we don't need it any more.
1098 * Eventually we'll expand relative path names here, too, since again, only
1099 * we understand those.
1102 code = fs_GetFullPath(pathp, fullPath, sizeof(fullPath));
1104 CloseHandle(reqHandle);
1109 strcpy(fullPath, "");
1112 MarshallString(&preq, fullPath, is_utf8);
1113 if (blobp->in_size) {
1114 if (blobp->in_size > sizeof(preq.data) - (preq.mp - preq.data)*sizeof(char)) {
1118 memcpy(preq.mp, blobp->in, blobp->in_size);
1119 preq.mp += blobp->in_size;
1122 /* now make the call */
1123 code = Transceive(reqHandle, &preq);
1125 CloseHandle(reqHandle);
1129 /* now unmarshall the return value */
1130 if (UnmarshallLong(&preq, &temp) != 0) {
1131 CloseHandle(reqHandle);
1136 CloseHandle(reqHandle);
1137 errno = CMtoUNIXerror(temp);
1138 if ( IoctlDebug() ) {
1140 fprintf(stderr, "pioctl temp != 0: 0x%X\r\n",temp);
1146 /* otherwise, unmarshall the output parameters */
1147 if (blobp->out_size) {
1148 temp = blobp->out_size;
1149 if (preq.nbytes < temp)
1151 memcpy(blobp->out, preq.mp, temp);
1152 blobp->out_size = temp;
1155 /* and return success */
1156 CloseHandle(reqHandle);
1161 pioctl_utf8(char * pathp, long opcode, struct ViceIoctl * blobp, int follow)
1163 return pioctl_int(pathp, opcode, blobp, follow, TRUE);
1167 pioctl(char * pathp, long opcode, struct ViceIoctl * blobp, int follow)
1169 return pioctl_int(pathp, opcode, blobp, follow, FALSE);