📄 authinfo.cpp
字号:
/* * This file is part of the KDE libraries * Copyright (C) 2000-2001 Dawit Alemayehu <adawit@kde.org> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */#include <config.h>#include <stdio.h>#include <fcntl.h>#include <unistd.h>#include <sys/stat.h>#include <sys/types.h>#include <qdir.h>#include <qfile.h>#include <kdebug.h>#include <kstddirs.h>#include <ksavefile.h>#include <kstaticdeleter.h>#include "kio/authinfo.h"#define NETRC_READ_BUF_SIZE 4096using namespace KIO;AuthInfo::AuthInfo(){ modified = false; readOnly = false; verifyPath = false; keepPassword = false;}AuthInfo::AuthInfo( const AuthInfo& info ){ (*this) = info;}AuthInfo& AuthInfo::operator= ( const AuthInfo& info ){ url = info.url; username = info.username; password = info.password; prompt = info.prompt; caption = info.caption; comment = info.comment; commentLabel = info.commentLabel; realmValue = info.realmValue; digestInfo = info.digestInfo; verifyPath = info.verifyPath; readOnly = info.readOnly; keepPassword = info.keepPassword; modified = info.modified; return *this;}QDataStream& KIO::operator<< (QDataStream& s, const AuthInfo& a){ s << a.url << a.username << a.password << a.prompt << a.caption << a.comment << a.commentLabel << a.realmValue << a.digestInfo << Q_UINT8(a.verifyPath ? 1:0) << Q_UINT8(a.readOnly ? 1:0) << Q_UINT8(a.keepPassword ? 1:0) << Q_UINT8(a.modified ? 1:0); return s;}QDataStream& KIO::operator>> (QDataStream& s, AuthInfo& a){ Q_UINT8 verify = 0; Q_UINT8 ro = 0; Q_UINT8 keep = 0; Q_UINT8 mod = 0; s >> a.url >> a.username >> a.password >> a.prompt >> a.caption >> a.comment >> a.commentLabel >> a.realmValue >> a.digestInfo >> verify >> ro >> keep >> mod; a.verifyPath = (verify != 0); a.readOnly = (ro != 0); a.keepPassword = (keep != 0); a.modified = (mod != 0); return s;}NetRC* NetRC::instance = 0L;NetRC::NetRC(){ isDirty = false;}NetRC::~NetRC(){ delete instance; instance = 0L;}NetRC* NetRC::self(){ if ( !instance ) instance = new NetRC(); return instance;}bool NetRC::lookup( const KURL& url, AutoLogin& login, bool userealnetrc, QString type, int mode ){ // kdDebug() << "AutoLogin lookup for: " << url.host() << endl; if ( !url.isValid() ) return false; if ( type.isEmpty() ) type = url.protocol(); if ( loginMap.isEmpty() || isDirty ) { int fd; loginMap.clear(); QString filename = locateLocal("config", "kionetrc"); bool status=((fd=openf(filename)) != -1); if ( status ) parse( fd ); if ( userealnetrc ) { filename = QDir::homeDirPath()+ QDir::separator() + ".netrc"; bool hasnetrc = ((fd=openf(filename)) != -1); if ( hasnetrc ) parse( fd ); status |= hasnetrc; } close( fd ); if ( !status ) return false; } if ( !loginMap.contains( type ) ) return false; LoginList l = loginMap[type]; if ( l.isEmpty() ) return false; LoginList::Iterator it = l.begin(); for ( ; it != l.end(); ++it ) { AutoLogin &log = *it; if ( (mode & defaultOnly) == defaultOnly && log.machine == QString::fromLatin1("default") && (login.login.isEmpty() || login.login == log.login) ) { login.type = log.type; login.machine = log.machine; login.login = log.login; login.password = log.password; login.macdef = log.macdef; } if ( (mode & presetOnly) == presetOnly && log.machine == QString::fromLatin1("preset") && (login.login.isEmpty() || login.login == log.login) ) { login.type = log.type; login.machine = log.machine; login.login = log.login; login.password = log.password; login.macdef = log.macdef; } if ( (mode & exactOnly) == exactOnly && log.machine == url.host() && (login.login.isEmpty() || login.login == log.login) ) { login.type = log.type; login.machine = log.machine; login.login = log.login; login.password = log.password; login.macdef = log.macdef; break; } } return true;}/*bool NetRC::flush() const{ if ( loginMap.isEmpty() ) return false; KSaveFile saveFile ( locateLocal("config", "kionetrc"), 0600 ); if (saveFile.status() != 0) return false; FILE* f = saveFile.fstream(); fprintf(f, "#\n# kionetrc - non-protocol specific password storage" "\n# file. The format used is exactly the same as the" "\n# \".netrc\" file with some minor distinctions. kionetrc" "\n# does not support the \"macdef\" keyword and also adds" "\n# one extra keyword, type, which is used to determine the" "\n# protocol or type for whom the login information is stored!" "\n#\n"); LoginMap::ConstIterator it = loginMap.begin(); for ( ; it != loginMap.end() ; ++it ) { LoginList lst = it.data(); LoginList::ConstIterator itr = lst.begin(); for ( ; itr != lst.end(); ++itr ) { AutoLogin al = itr.data(); fprintf( f, "%-5s %-10s %-5s %10s %-5s %-10s %-5s %-10s", "machine", al.machine.local8Bit().data(), "login", al.login.local8Bit().data(), "password", al.password.local8Bit().data(), "type", it.key().local8Bit().data() ); } } return saveFile.close();}*/int NetRC::openf( const QString& f ){ struct stat sbuff; QCString ef = QFile::encodeName(f); if ( stat(ef, &sbuff) != 0 ) return -1; // Security check!! if ( sbuff.st_mode != (S_IFREG|S_IRUSR|S_IWUSR) || sbuff.st_uid != geteuid() ) return -1; return open( ef, O_RDONLY );}QString NetRC::extract( const char* buf, const char* key, int& pos ){ int idx = pos; int m_len = strlen(key); int b_len = strlen(buf); while( idx < b_len ) { while( buf[idx] == ' ' || buf[idx] == '\t' ) idx++; if ( strncasecmp( buf+idx, key, m_len ) == 0 ) { idx += m_len; while( buf[idx] == ' ' || buf[idx] == '\t' ) idx++; int start = idx; while( buf[idx] != ' ' && buf[idx] != '\t' && buf[idx] != '\n' && buf[idx] != '\r' ) idx++; if ( idx > start ) { pos = idx; return QString::fromLatin1( buf+start, idx-start); } } else idx++; } return QString::null;}void NetRC::parse( int fd ){ // kdDebug() << "Parsing config files..." << endl; uint index = 0; QString macro, type; bool isMacro = false; char* buf = new char[NETRC_READ_BUF_SIZE]; FILE* fstream = fdopen( fd,"rb" ); while ( fgets( buf, NETRC_READ_BUF_SIZE, fstream ) != 0L ) { int pos = 0; while ( buf[pos] == ' ' || buf[pos] == '\t' ) pos++; if ( buf[pos] == '#' || buf[pos] == '\n' || buf[pos] == '\r' || buf[pos] == '\0' ) { if ( buf[pos] != '#' && isMacro ) isMacro = false; continue; } if ( isMacro ) { int tail = strlen(buf); while( buf[tail-1] == '\n' || buf[tail-1] =='\r' ) tail--; QString mac = QString::fromLatin1(buf, tail).stripWhiteSpace(); if ( !mac.isEmpty() ) { loginMap[type][index].macdef[macro].append( mac ); // kdDebug() << mac << endl; } continue; } AutoLogin l; l.machine = extract( buf, "machine", pos ); if ( l.machine.isEmpty() ) { if (strncasecmp(buf+pos, "default", 7) == 0 ) { pos += 7; l.machine = QString::fromLatin1("default"); } else if (strncasecmp(buf+pos, "preset", 6) == 0 ) { pos += 6; l.machine = QString::fromLatin1("preset"); } } // kdDebug() << "Machine: " << l.machine << endl; l.login = extract( buf, "login", pos ); // kdDebug() << "Login: " << l.login << endl; l.password = extract( buf, "password", pos ); if ( l.password.isEmpty() ) l.password = extract( buf, "account", pos ); // kdDebug() << "Password: " << l.password << endl; type = l.type = extract( buf, "type", pos ); if ( l.type.isEmpty() && !l.machine.isEmpty() ) type = l.type = QString::fromLatin1("ftp"); // kdDebug() << "Type: " << l.type << endl; macro = extract( buf, "macdef", pos ); isMacro = !macro.isEmpty(); // kdDebug() << "Macro: " << macro << endl; loginMap[l.type].append(l); index = loginMap[l.type].count()-1; } delete [] buf;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -